diff --git a/CMakeLists.txt b/CMakeLists.txt index fc53c029..f2dd6725 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ ################################################################# # # -# Copyright 2012, 2014 Fidelity Information Services, Inc # +# Copyright (c) 2012-2016 Fidelity National Information # +# Services, Inc. and/or its subsidiaries. All rights reserved. # # # # This source code contains the intellectual property # # of its copyright holder(s), and is made available # @@ -26,7 +27,7 @@ foreach(lang ${languages}) endforeach() # Defaults -set(version V6.2-002A) +set(version V6.3-000) if("${version}" STREQUAL "") set(version V9.9-0) endif() @@ -36,12 +37,6 @@ if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE) endif() -if("${CMAKE_BUILD_TYPE}" STREQUAL "Release") - set(GTM_BUILD_TYPE "pro") -elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") - set(GTM_BUILD_TYPE "dbg") -endif() - # Enable GT.M debug options unless directed not to enable them. Added to build without whitebox tests. set(GTM_ENABLE_DEBUG 1 CACHE BOOL "Enable GT.M debug options") if(GTM_ENABLE_DEBUG) @@ -63,7 +58,7 @@ set(gen_xfer_desc 0) set(gtm_osarch_libs "") # Define these ahead of establishing platforms -set(gt_src_list) +set(gt_src_list gen) set(sources_used "") set(extralibs "") message("--> OS = ${CMAKE_SYSTEM_NAME} / ARCH = ${CMAKE_SYSTEM_PROCESSOR}") @@ -129,18 +124,18 @@ foreach(d ${gt_src_list}) file(GLOB sources_${d} RELATIVE ${source_dir_${d}} ${d}/*.c ${d}/*.s ${d}/*.si ${d}/*.txt) endforeach() +# Prefer generated sources over all other locations. +file(MAKE_DIRECTORY ${GTM_BINARY_DIR}/gen) +set(source_dir_gen ${GTM_BINARY_DIR}/gen) +# Hard-code list since we cannot glob files that do not exist. +set(sources_gen gtm_threadgbl_deftypes.h gtm_threadgbl_deftypes_asm.si) if(gen_bootstrap) - # Prefer generated sources over all other locations. - set(gt_src_list gen ${gt_src_list}) - set(source_dir_gen ${GTM_BINARY_DIR}/gen) - # Hard-code list since we cannot glob files that do not exist. - set(sources_gen cmerrors_ctl.c cmierrors_ctl.c gdeerrors_ctl.c merrors_ctl.c ttt.c - gtmthreadgblasm.m gtm_threadgbl_deftypes.h gtm_threadgbl_deftypes_asm.si) + set(sources_gen ${sources_gen} cmerrors_ctl.c cmierrors_ctl.c gdeerrors_ctl.c merrors_ctl.c ttt.c) endif() # The C preprocessor include search path consists of every source # directory ordered by 'gt_src_list'. -set(includes) +set(includes ${GTM_BINARY_DIR}/gen) foreach(d ${gt_src_list}) list(APPEND includes ${source_dir_${d}}) endforeach() @@ -236,7 +231,7 @@ set(source_used_dtgbldir.c 1) # exclude unused source set(libmumps_SOURCES "") foreach(d ${gt_src_list}) foreach(s ${sources_${d}}) - if(NOT source_used_${s}) + if(NOT source_used_${s} AND "${s}" MATCHES "\\.(c|s|si)$") list(APPEND libmumps_SOURCES ${d}/${s}) set(source_used_${s} 1) list(APPEND sources_used ${source_dir_${d}}/${s}) @@ -341,53 +336,31 @@ endif() add_executable(gtm_threadgbl_deftypes ${gtm_threadgbl_deftypes_SOURCES}) if(gen_xfer_desc) add_dependencies(gtm_threadgbl_deftypes gen_xfer_desc) -elseif(gen_bootstrap) - add_dependencies(gtm_threadgbl_deftypes gen_bootstrap) endif() -if(gen_bootstrap) - add_custom_command( - OUTPUT gen/gtm_threadgbl_deftypes.h - DEPENDS gtm_threadgbl_deftypes - COMMAND gtm_threadgbl_deftypes > gen/gtm_threadgbl_deftypes.h - ) - set(gtmthreadgblasmaccess "${gtmthreadgblasmaccessdir}/gtm_threadgbl_asm_access.txt") - select_file(gtmthreadgblasmaccess "gtm_threadgbl_asm_access.txt") - add_custom_command( - OUTPUT ${GTM_BINARY_DIR}/gen/gtmthreadgblasm.m - DEPENDS ${GTM_SOURCE_DIR}/sr_unix/gtmthreadgblasm.m - COMMAND ${CMAKE_COMMAND} -E copy ${GTM_SOURCE_DIR}/sr_unix/gtmthreadgblasm.m ${GTM_BINARY_DIR}/gen/gtmthreadgblasm.m - ) - add_custom_command( - OUTPUT ${GTM_BINARY_DIR}/gen/gtm_threadgbl_deftypes_asm_${GTM_BUILD_TYPE}.si - DEPENDS ${GTM_BINARY_DIR}/gen/gtmthreadgblasm.m gen/gtm_threadgbl_deftypes.h ${gtmthreadgblasmaccess} - ${GTM_SOURCE_DIR}/sr_unix/mumps.cmake ${gen_bootstrap_depend} - WORKING_DIRECTORY ${GTM_BINARY_DIR}/gen - COMMAND ${CMAKE_COMMAND} - -D gtm_dist=${gen_bootstrap_dist} - -D gtm_inc=${GTM_BINARY_DIR}/gen - -D gtmroutines=. - -D mumps=${gen_bootstrap_mumps} - -D "args=-r;gtmthreadgblasm;${gtmthreadgblasmaccess};gtm_threadgbl_deftypes.h;gtm_threadgbl_deftypes_asm_${GTM_BUILD_TYPE}.si" - -P ${GTM_SOURCE_DIR}/sr_unix/mumps.cmake - VERBATIM - ) - add_custom_command( - OUTPUT gen/gtm_threadgbl_deftypes_asm.si - DEPENDS gen/gtm_threadgbl_deftypes_asm_${GTM_BUILD_TYPE}.si - COMMAND ${CMAKE_COMMAND} -E copy gen/gtm_threadgbl_deftypes_asm_${GTM_BUILD_TYPE}.si gen/gtm_threadgbl_deftypes_asm.si - ) - add_custom_target(gen_gtm_threadgbl_deftypes - DEPENDS ${GTM_BINARY_DIR}/gen/gtm_threadgbl_deftypes.h ${GTM_BINARY_DIR}/gen/gtm_threadgbl_deftypes_asm.si) -else() - select_file(gtm_threadgbl_deftypes_asm "gtm_threadgbl_deftypes_asm_${GTM_BUILD_TYPE}.si") - add_custom_command( - OUTPUT gtm_threadgbl_deftypes_asm.si - DEPENDS ${gtm_threadgbl_deftypes_asm} - COMMAND ${CMAKE_COMMAND} -E copy ${gtm_threadgbl_deftypes_asm} gtm_threadgbl_deftypes_asm.si - ) - add_custom_target(gen_gtm_threadgbl_deftypes DEPENDS gtm_threadgbl_deftypes_asm.si) -endif() +# gtm_threadgbl_deftypes +set(gtmthreadgblasmhdr "gen/gtm_threadgbl_deftypes.h") +add_custom_command( + OUTPUT ${gtmthreadgblasmhdr} + DEPENDS gtm_threadgbl_deftypes + COMMAND gtm_threadgbl_deftypes > ${gtmthreadgblasmhdr} + ) +# gtm_threadgbl_deftypes_asm.si +set(gtmthreadgblasmfile "gen/gtm_threadgbl_deftypes_asm.si") +select_file(gtmthreadgblasmaccess "gtm_threadgbl_asm_access.txt") +add_custom_command( + OUTPUT ${gtmthreadgblasmfile} + DEPENDS ${gtmthreadgblasmhdr} + COMMAND ${CMAKE_COMMAND} + -D "gtmthreadgblasmfile=${gtmthreadgblasmfile}" + -D "gtmthreadgblasmhdr=${gtmthreadgblasmhdr}" + -D "gtmthreadgblasmaccess=${gtmthreadgblasmaccess}" + -P ${GTM_SOURCE_DIR}/${srdir}/gen_threadgbl_asm.cmake + VERBATIM + ) + +add_custom_target(gen_gtm_threadgbl_deftypes + DEPENDS ${GTM_BINARY_DIR}/${gtmthreadgblasmhdr} ${GTM_BINARY_DIR}/${gtmthreadgblasmfile}) foreach(exp exe shr) set(out gtm${exp}_symbols.export) @@ -664,13 +637,15 @@ set(m_files_sr_port gdetempl.m ) file(GLOB m_files_sr_unix RELATIVE ${GTM_SOURCE_DIR}/sr_unix ${GTM_SOURCE_DIR}/sr_unix/*.m) +file(GLOB m_files_sr_x86_64 RELATIVE ${GTM_SOURCE_DIR}/sr_x86_64 ${GTM_SOURCE_DIR}/sr_x86_64/*.m) +file(GLOB m_files_sr_i386 RELATIVE ${GTM_SOURCE_DIR}/sr_i386 ${GTM_SOURCE_DIR}/sr_i386/*.m) file(GLOB mpt_files_sr_port RELATIVE ${GTM_SOURCE_DIR}/sr_port ${GTM_SOURCE_DIR}/sr_port/*.mpt) file(GLOB mpt_files_sr_unix RELATIVE ${GTM_SOURCE_DIR}/sr_unix ${GTM_SOURCE_DIR}/sr_unix/*.mpt) set(gtm_chset_dir_ "") set(gtm_chset_dir_UTF-8 "/utf8") -foreach(d sr_port sr_unix) +foreach(d ${gt_src_list}) foreach(m ${m_files_${d}}) get_filename_component(m_name "${m}" NAME_WE) string(TOUPPER "${m_name}" m_upper) @@ -686,7 +661,12 @@ foreach(d sr_port sr_unix) list(APPEND gtm_chset_routines_${gtm_chset} "${m_out}") endforeach() else() - set(m_out "${GTM_BINARY_DIR}/${m_upper}.m") + if(";${m_name};" MATCHES ";GTMDefinedTypesInit[a-zA-Z]*;") + set(m_out "${GTM_BINARY_DIR}/${m_name}.m") + set(${m_name}_found 1) + else() + set(m_out "${GTM_BINARY_DIR}/${m_upper}.m") + endif() add_custom_command( OUTPUT "${m_out}" DEPENDS ${GTM_SOURCE_DIR}/${d}/${m} @@ -774,10 +754,31 @@ else() message(FATAL_ERROR "Unable to find 'icu-config'. Set ICUCONFIG in CMake cache.") endif() -if (gtm_icu_version GREATER 10) - message("libicu version ${gtm_icu_version} > 10") - string(REGEX REPLACE "([0-9])([0-9]).*" "\\1.\\2" gtm_icu_version "${gtm_icu_version}") - message("Fixing gtm_icu_version to ${gtm_icu_version}.\nThis had better be the default") +find_program(LOCALECFG NAMES locale) +if(LOCALECFG) + execute_process( + COMMAND ${LOCALECFG} -a + OUTPUT_VARIABLE locale_list + RESULT_VARIABLE locale_failed + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(locale_failed) + message(FATAL_ERROR "Command\n ${LOCALECFG} -a\nfailed (${locale_failed}).") + endif() + STRING(REGEX REPLACE "\n" ";" locale_list "${locale_list}") + foreach(lc ${locale_list}) + string(TOLOWER "${lc}" lc_lower) + if("x${lc_lower}" MATCHES "^xen_us\\.?utf-?8") + set(LC_ALL ${lc}) + message("-- Setting locale to ${LC_ALL}") + break() + endif() + endforeach(lc) + if("${LC_ALL}" STREQUAL "") + message("Locale undefined. Expect to see NONUTF8LOCALE during MUMPS routine compilation\n") + endif() +else() + message(FATAL_ERROR "Unable to find 'locale'. Set LOCALECFG in CMake cache.") endif() foreach(gtm_chset "" "UTF-8") @@ -792,6 +793,7 @@ foreach(gtm_chset "" "UTF-8") -D gtmroutines=. -D gtm_chset=${gtm_chset} -D gtm_icu_version=${gtm_icu_version} + -D LC_ALL=${LC_ALL} -D mumps=$ -D "args=${in}" -P ${GTM_SOURCE_DIR}/sr_unix/mumps.cmake @@ -850,6 +852,22 @@ Halt") install(FILES ${GTM_BINARY_DIR}/${help}help.dat DESTINATION ${GTM_INSTALL_DIR}) install(FILES ${GTM_BINARY_DIR}/${help}help.gld DESTINATION ${GTM_INSTALL_DIR}) endforeach() +if (GTMDefinedTypesInit${CMAKE_BUILD_TYPE}_found) +add_custom_command( + OUTPUT GTMDEFINEDTYPESTODB.o + DEPENDS gtmhelp.dat gtmhelp.gld GTMDefinedTypesInit${CMAKE_BUILD_TYPE}.m + COMMAND ${CMAKE_COMMAND} -E copy GTMDefinedTypesInit${CMAKE_BUILD_TYPE}.m ${GTM_BINARY_DIR}/GTMDefinedTypesInit.m + COMMAND ${CMAKE_COMMAND} + -D gtm_dist=${GTM_BINARY_DIR} + -D gtmroutines=. + -D gtmgbldir=${GTM_BINARY_DIR}/gtmhelp + -D mumps=$ + -D "args=-run;GTMDEFINEDTYPESTODB" + -P ${GTM_SOURCE_DIR}/sr_unix/mumps.cmake + VERBATIM + ) +list(APPEND files_to_place GTMDEFINEDTYPESTODB.o) +endif(GTMDefinedTypesInit${CMAKE_BUILD_TYPE}_found) #----------------------------------------------------------------------------- set(GTM_TOP "${GTM_BINARY_DIR}") diff --git a/LICENSE b/LICENSE index b60231fa..501a9c3d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -All software in this package is part of FIS GT.M (http://fis-gtm.com) which is Copyright 2015 Fidelity Information +All software in this package is part of FIS GT.M (http://fis-gtm.com) which is Copyright 2016 Fidelity Information Services, Inc., and provided to you under the terms of a license. If there is a COPYING file included in this package, it contains the terms of the license under which the package is provided to you. If there is not a COPYING file in the package, you must ensure that your use of FIS GT.M complies with the license under which it is provided. If you are diff --git a/README b/README index e5a803f8..1fce7562 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ All software in this package is part of FIS GT.M (http://fis-gtm.com) -which is Copyright 2015 Fidelity Information Services, Inc., and +which is Copyright 2016 Fidelity Information Services, Inc., and provided to you under the terms of a license. If there is a COPYING file included in this package, it contains the terms of the license under which the package is provided to you. If there is not a COPYING file in @@ -11,7 +11,7 @@ package. GT.M relies on CMake to generate the Makefiles to build GT.M from source. The prerequisites are CMake (at least 2.8.5), GNU make (at least 3.81), Linux (either x86 or x86_64), libraries and development files for libz, Unicode, -OpenSSL and GPG. Debian 6, Ubuntu 12.04/14.04 LTS and RHEL 6.0 were used to do +OpenSSL and GPG. Debian 7, Ubuntu 12.04/14.04 LTS and RHEL 6.0 were used to do the test builds for this distribution. The default ICU and GPG packages were taken from the distribution repositories. @@ -19,44 +19,21 @@ To build GT.M for Linux, do the following steps: 1. Fulfill the pre-requisites Install developement libraries libelf, zlib, libicu, libgpgme, libgpg-error, - libgcrypt, libssl, libconfig. - - Ensure that your locale settings are correct, otherwise you will see - GTM-E-NONUTF8LOCALE messages. Refer the Messages and Recovery Procedures - Manual if you do encounter these messages. The following should give you a - valid locale: - - $ locale -a | gawk 'BEGIN{IGNORECASE=1}/en_us.utf-*8/{print;exit}' - en_US.utf8 - $ export LANG=C LC_ALL= LC_CTYPE="" LC_COLLATE=C - - [optional] The GT.M source tarball includes pre-generated files. To generate - these files requires a binary distribution of GT.M. You can download GT.M - from http://sourceforge.net/projects/fis-gtm/ Unpack the tar file and run - the configure script as root. Note: the tar file unpacks everything into - your current working directory, not a new subdirectory. The Linux Standard - Base (LSB) install path for GT.M V6.2-002A is /opt/fis-gtm/V6.2-002A_i586 or - /opt/fis-gtm/V6.2-002A_x8664. These instructions are written using x8664, please - use i586 as necessary. - - $ tar xfz gtm_V62002A_linux_x8664_pro.tar.gz - - # Note down the installation path for use with cmake below - - $ sudo sh ./configure + libgcrypt, libssl, libconfig. There may be other library dependencies. If + CMake issues a NOTFOUND error, please see the FAQ below. 2. Unpack the GT.M sources The GT.M source tarball extracts to a directory with the version number in - the name, fis-gtm-V6.2-002A - $ tar xfz fis-gtm-V6.2-002A.tar.gz - $ cd fis-gtm-V6.2-002A + the name, fis-gtm-V6.3-000 + $ tar xfz fis-gtm-V6.3-000.tar.gz + $ cd fis-gtm-V6.3-000 You should find this README, LICENSE, COPYING and CMakeLists.txt file and sr_* source directories. 3. Building GT.M - can be a sub directory of the source directory, - fis-gtm-V6.2-002A, or any other valid path. + fis-gtm-V6.3-000, or any other valid path. $ mkdir $ cd @@ -75,16 +52,16 @@ To build GT.M for Linux, do the following steps: # # -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package # - $ cmake -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package /fis-gtm-V6.2-002A + $ cmake -D CMAKE_INSTALL_PREFIX:PATH=${PWD}/package /fis-gtm-V6.3-000 $ make $ make install - $ cd package/lib/fis-gtm/V6.2-002A_x86_64 + $ cd package/lib/fis-gtm/V6.3-000_x86_64 # Now you are ready to install GT.M. Answer a few questions and install it. - # The recommended installation path is /opt/fis-gtm/V6.2-002A_x86_64 + # The recommended installation path is /opt/fis-gtm/V6.3-000_x86_64 $ sudo ./configure diff --git a/sr_i386/GTMDefinedTypesInitDebug.m b/sr_i386/GTMDefinedTypesInitDebug.m new file mode 100644 index 00000000..362dce2c --- /dev/null +++ b/sr_i386/GTMDefinedTypesInitDebug.m @@ -0,0 +1,41580 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; ; +; Copyright (c) 2010-2016 Fidelity National Information ; +; Services, Inc. and/or its subsidiaries. All rights reserved. ; +; ; +; This source code contains the intellectual property ; +; of its copyright holder(s), and is made available ; +; under a license. If you do not know the terms of ; +; the license, please stop and do not read further. ; +; ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; +; Generated by scantypedefs.m at 15:37:46 on 2016-03-22 +; Build done with GT.M version: GT.M V6.2-002A Linux x86 +; +; Environment variables during run: +; $gtm_dist: /usr/library/V62002A/dbg +; $gtm_exe: /usr/library/V63000/dbg +; $gtm_src: /usr/library/V63000/src +; $gtm_inc: /usr/library/V63000/inc +; +; Note this file should not be manually invoked +; + Write "GTM-E-GTMSDFILE This routine (",$TEXT(+0),") should not be manually invoked",! + Quit +; +; Entry point used by gtmpcat and others to define GTM structure fields +; +Init + Set gtmsdver="1.1.0" + Set gtmsdtyp="dbg" + ; + ; GT.M structure and field definitions + ; + Set gtmtypes("ABS_TIME")="struct" + Set gtmtypes("ABS_TIME",0)=2 + Set gtmtypes("ABS_TIME","len")=8 + Set gtmtypes("ABS_TIME",1,"name")="ABS_TIME.at_sec" + Set gtmtypes("ABS_TIME",1,"off")=0 + Set gtmtypes("ABS_TIME",1,"len")=4 + Set gtmtypes("ABS_TIME",1,"type")="long" + Set gtmtypfldindx("ABS_TIME","at_sec")=1 + Set gtmtypes("ABS_TIME",2,"name")="ABS_TIME.at_usec" + Set gtmtypes("ABS_TIME",2,"off")=4 + Set gtmtypes("ABS_TIME",2,"len")=4 + Set gtmtypes("ABS_TIME",2,"type")="long" + Set gtmtypfldindx("ABS_TIME","at_usec")=2 + ; + Set gtmtypes("BFILE")="struct" + Set gtmtypes("BFILE",0)=10 + Set gtmtypes("BFILE","len")=40 + Set gtmtypes("BFILE",1,"name")="BFILE.fd" + Set gtmtypes("BFILE",1,"off")=0 + Set gtmtypes("BFILE",1,"len")=4 + Set gtmtypes("BFILE",1,"type")="int" + Set gtmtypfldindx("BFILE","fd")=1 + Set gtmtypes("BFILE",2,"name")="BFILE.path" + Set gtmtypes("BFILE",2,"off")=4 + Set gtmtypes("BFILE",2,"len")=4 + Set gtmtypes("BFILE",2,"type")="addr" + Set gtmtypfldindx("BFILE","path")=2 + Set gtmtypes("BFILE",3,"name")="BFILE.oflag" + Set gtmtypes("BFILE",3,"off")=8 + Set gtmtypes("BFILE",3,"len")=4 + Set gtmtypes("BFILE",3,"type")="int" + Set gtmtypfldindx("BFILE","oflag")=3 + Set gtmtypes("BFILE",4,"name")="BFILE.mode" + Set gtmtypes("BFILE",4,"off")=12 + Set gtmtypes("BFILE",4,"len")=4 + Set gtmtypes("BFILE",4,"type")="int" + Set gtmtypfldindx("BFILE","mode")=4 + Set gtmtypes("BFILE",5,"name")="BFILE.blksiz" + Set gtmtypes("BFILE",5,"off")=16 + Set gtmtypes("BFILE",5,"len")=4 + Set gtmtypes("BFILE",5,"type")="int" + Set gtmtypfldindx("BFILE","blksiz")=5 + Set gtmtypes("BFILE",6,"name")="BFILE.bufsiz" + Set gtmtypes("BFILE",6,"off")=20 + Set gtmtypes("BFILE",6,"len")=4 + Set gtmtypes("BFILE",6,"type")="int" + Set gtmtypfldindx("BFILE","bufsiz")=6 + Set gtmtypes("BFILE",7,"name")="BFILE.buf" + Set gtmtypes("BFILE",7,"off")=24 + Set gtmtypes("BFILE",7,"len")=4 + Set gtmtypes("BFILE",7,"type")="addr" + Set gtmtypfldindx("BFILE","buf")=7 + Set gtmtypes("BFILE",8,"name")="BFILE.bptr" + Set gtmtypes("BFILE",8,"off")=28 + Set gtmtypes("BFILE",8,"len")=4 + Set gtmtypes("BFILE",8,"type")="addr" + Set gtmtypfldindx("BFILE","bptr")=8 + Set gtmtypes("BFILE",9,"name")="BFILE.remaining" + Set gtmtypes("BFILE",9,"off")=32 + Set gtmtypes("BFILE",9,"len")=4 + Set gtmtypes("BFILE",9,"type")="int" + Set gtmtypfldindx("BFILE","remaining")=9 + Set gtmtypes("BFILE",10,"name")="BFILE.write_mode" + Set gtmtypes("BFILE",10,"off")=36 + Set gtmtypes("BFILE",10,"len")=4 + Set gtmtypes("BFILE",10,"type")="int" + Set gtmtypfldindx("BFILE","write_mode")=10 + ; + Set gtmtypes("CLI_ENTRY")="struct" + Set gtmtypes("CLI_ENTRY",0)=9 + Set gtmtypes("CLI_ENTRY","len")=64 + Set gtmtypes("CLI_ENTRY",1,"name")="CLI_ENTRY.name" + Set gtmtypes("CLI_ENTRY",1,"off")=0 + Set gtmtypes("CLI_ENTRY",1,"len")=25 + Set gtmtypes("CLI_ENTRY",1,"type")="char" + Set gtmtypfldindx("CLI_ENTRY","name")=1 + Set gtmtypes("CLI_ENTRY",2,"name")="CLI_ENTRY.func" + Set gtmtypes("CLI_ENTRY",2,"off")=28 + Set gtmtypes("CLI_ENTRY",2,"len")=4 + Set gtmtypes("CLI_ENTRY",2,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","func")=2 + Set gtmtypes("CLI_ENTRY",3,"name")="CLI_ENTRY.parms" + Set gtmtypes("CLI_ENTRY",3,"off")=32 + Set gtmtypes("CLI_ENTRY",3,"len")=4 + Set gtmtypes("CLI_ENTRY",3,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","parms")=3 + Set gtmtypes("CLI_ENTRY",4,"name")="CLI_ENTRY.parm_values" + Set gtmtypes("CLI_ENTRY",4,"off")=36 + Set gtmtypes("CLI_ENTRY",4,"len")=4 + Set gtmtypes("CLI_ENTRY",4,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","parm_values")=4 + Set gtmtypes("CLI_ENTRY",5,"name")="CLI_ENTRY.qual_vals" + Set gtmtypes("CLI_ENTRY",5,"off")=40 + Set gtmtypes("CLI_ENTRY",5,"len")=4 + Set gtmtypes("CLI_ENTRY",5,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","qual_vals")=5 + Set gtmtypes("CLI_ENTRY",6,"name")="CLI_ENTRY.disallow_func" + Set gtmtypes("CLI_ENTRY",6,"off")=44 + Set gtmtypes("CLI_ENTRY",6,"len")=4 + Set gtmtypes("CLI_ENTRY",6,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","disallow_func")=6 + Set gtmtypes("CLI_ENTRY",7,"name")="CLI_ENTRY.dfault_str" + Set gtmtypes("CLI_ENTRY",7,"off")=48 + Set gtmtypes("CLI_ENTRY",7,"len")=4 + Set gtmtypes("CLI_ENTRY",7,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","dfault_str")=7 + Set gtmtypes("CLI_ENTRY",8,"name")="CLI_ENTRY.max_parms" + Set gtmtypes("CLI_ENTRY",8,"off")=54 + Set gtmtypes("CLI_ENTRY",8,"len")=2 + Set gtmtypes("CLI_ENTRY",8,"type")="unsigned-short" + Set gtmtypfldindx("CLI_ENTRY","max_parms")=8 + Set gtmtypes("CLI_ENTRY",9,"name")="CLI_ENTRY.pval_str" + Set gtmtypes("CLI_ENTRY",9,"off")=60 + Set gtmtypes("CLI_ENTRY",9,"len")=4 + Set gtmtypes("CLI_ENTRY",9,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","pval_str")=9 + ; + Set gtmtypes("CLI_PARM")="struct" + Set gtmtypes("CLI_PARM",0)=3 + Set gtmtypes("CLI_PARM","len")=56 + Set gtmtypes("CLI_PARM",1,"name")="CLI_PARM.name" + Set gtmtypes("CLI_PARM",1,"off")=0 + Set gtmtypes("CLI_PARM",1,"len")=25 + Set gtmtypes("CLI_PARM",1,"type")="char" + Set gtmtypfldindx("CLI_PARM","name")=1 + Set gtmtypes("CLI_PARM",2,"name")="CLI_PARM.prompt" + Set gtmtypes("CLI_PARM",2,"off")=25 + Set gtmtypes("CLI_PARM",2,"len")=25 + Set gtmtypes("CLI_PARM",2,"type")="char" + Set gtmtypfldindx("CLI_PARM","prompt")=2 + Set gtmtypes("CLI_PARM",3,"name")="CLI_PARM.parm_required" + Set gtmtypes("CLI_PARM",3,"off")=52 + Set gtmtypes("CLI_PARM",3,"len")=4 + Set gtmtypes("CLI_PARM",3,"type")="boolean_t" + Set gtmtypfldindx("CLI_PARM","parm_required")=3 + ; + Set gtmtypes("Dev_param_pair")="struct" + Set gtmtypes("Dev_param_pair",0)=2 + Set gtmtypes("Dev_param_pair","len")=8 + Set gtmtypes("Dev_param_pair",1,"name")="Dev_param_pair.name" + Set gtmtypes("Dev_param_pair",1,"off")=0 + Set gtmtypes("Dev_param_pair",1,"len")=4 + Set gtmtypes("Dev_param_pair",1,"type")="addr" + Set gtmtypfldindx("Dev_param_pair","name")=1 + Set gtmtypes("Dev_param_pair",2,"name")="Dev_param_pair.definition" + Set gtmtypes("Dev_param_pair",2,"off")=4 + Set gtmtypes("Dev_param_pair",2,"len")=4 + Set gtmtypes("Dev_param_pair",2,"type")="addr" + Set gtmtypfldindx("Dev_param_pair","definition")=2 + ; + Set gtmtypes("Dev_param_pairs")="struct" + Set gtmtypes("Dev_param_pairs",0)=4 + Set gtmtypes("Dev_param_pairs","len")=28 + Set gtmtypes("Dev_param_pairs",1,"name")="Dev_param_pairs.num_pairs" + Set gtmtypes("Dev_param_pairs",1,"off")=0 + Set gtmtypes("Dev_param_pairs",1,"len")=4 + Set gtmtypes("Dev_param_pairs",1,"type")="int" + Set gtmtypfldindx("Dev_param_pairs","num_pairs")=1 + Set gtmtypes("Dev_param_pairs",2,"name")="Dev_param_pairs.pairs" + Set gtmtypes("Dev_param_pairs",2,"off")=4 + Set gtmtypes("Dev_param_pairs",2,"len")=24 + Set gtmtypes("Dev_param_pairs",2,"type")="Dev_param_pair" + Set gtmtypfldindx("Dev_param_pairs","pairs")=2 + Set gtmtypes("Dev_param_pairs",2,"dim")=3 + Set gtmtypes("Dev_param_pairs",3,"name")="Dev_param_pairs.pairs[0].name" + Set gtmtypes("Dev_param_pairs",3,"off")=4 + Set gtmtypes("Dev_param_pairs",3,"len")=4 + Set gtmtypes("Dev_param_pairs",3,"type")="addr" + Set gtmtypfldindx("Dev_param_pairs","pairs[0].name")=3 + Set gtmtypes("Dev_param_pairs",4,"name")="Dev_param_pairs.pairs[0].definition" + Set gtmtypes("Dev_param_pairs",4,"off")=8 + Set gtmtypes("Dev_param_pairs",4,"len")=4 + Set gtmtypes("Dev_param_pairs",4,"type")="addr" + Set gtmtypfldindx("Dev_param_pairs","pairs[0].definition")=4 + ; + Set gtmtypes("GT_TIMER")="struct" + Set gtmtypes("GT_TIMER",0)=13 + Set gtmtypes("GT_TIMER","len")=44 + Set gtmtypes("GT_TIMER",1,"name")="GT_TIMER.expir_time" + Set gtmtypes("GT_TIMER",1,"off")=0 + Set gtmtypes("GT_TIMER",1,"len")=8 + Set gtmtypes("GT_TIMER",1,"type")="ABS_TIME" + Set gtmtypfldindx("GT_TIMER","expir_time")=1 + Set gtmtypes("GT_TIMER",2,"name")="GT_TIMER.expir_time.at_sec" + Set gtmtypes("GT_TIMER",2,"off")=0 + Set gtmtypes("GT_TIMER",2,"len")=4 + Set gtmtypes("GT_TIMER",2,"type")="long" + Set gtmtypfldindx("GT_TIMER","expir_time.at_sec")=2 + Set gtmtypes("GT_TIMER",3,"name")="GT_TIMER.expir_time.at_usec" + Set gtmtypes("GT_TIMER",3,"off")=4 + Set gtmtypes("GT_TIMER",3,"len")=4 + Set gtmtypes("GT_TIMER",3,"type")="long" + Set gtmtypfldindx("GT_TIMER","expir_time.at_usec")=3 + Set gtmtypes("GT_TIMER",4,"name")="GT_TIMER.start_time" + Set gtmtypes("GT_TIMER",4,"off")=8 + Set gtmtypes("GT_TIMER",4,"len")=8 + Set gtmtypes("GT_TIMER",4,"type")="ABS_TIME" + Set gtmtypfldindx("GT_TIMER","start_time")=4 + Set gtmtypes("GT_TIMER",5,"name")="GT_TIMER.start_time.at_sec" + Set gtmtypes("GT_TIMER",5,"off")=8 + Set gtmtypes("GT_TIMER",5,"len")=4 + Set gtmtypes("GT_TIMER",5,"type")="long" + Set gtmtypfldindx("GT_TIMER","start_time.at_sec")=5 + Set gtmtypes("GT_TIMER",6,"name")="GT_TIMER.start_time.at_usec" + Set gtmtypes("GT_TIMER",6,"off")=12 + Set gtmtypes("GT_TIMER",6,"len")=4 + Set gtmtypes("GT_TIMER",6,"type")="long" + Set gtmtypfldindx("GT_TIMER","start_time.at_usec")=6 + Set gtmtypes("GT_TIMER",7,"name")="GT_TIMER.handler" + Set gtmtypes("GT_TIMER",7,"off")=16 + Set gtmtypes("GT_TIMER",7,"len")=4 + Set gtmtypes("GT_TIMER",7,"type")="addr" + Set gtmtypfldindx("GT_TIMER","handler")=7 + Set gtmtypes("GT_TIMER",8,"name")="GT_TIMER.next" + Set gtmtypes("GT_TIMER",8,"off")=20 + Set gtmtypes("GT_TIMER",8,"len")=4 + Set gtmtypes("GT_TIMER",8,"type")="addr" + Set gtmtypfldindx("GT_TIMER","next")=8 + Set gtmtypes("GT_TIMER",9,"name")="GT_TIMER.tid" + Set gtmtypes("GT_TIMER",9,"off")=24 + Set gtmtypes("GT_TIMER",9,"len")=4 + Set gtmtypes("GT_TIMER",9,"type")="intptr_t" + Set gtmtypfldindx("GT_TIMER","tid")=9 + Set gtmtypes("GT_TIMER",10,"name")="GT_TIMER.safe" + Set gtmtypes("GT_TIMER",10,"off")=28 + Set gtmtypes("GT_TIMER",10,"len")=4 + Set gtmtypes("GT_TIMER",10,"type")="int" + Set gtmtypfldindx("GT_TIMER","safe")=10 + Set gtmtypes("GT_TIMER",11,"name")="GT_TIMER.hd_len_max" + Set gtmtypes("GT_TIMER",11,"off")=32 + Set gtmtypes("GT_TIMER",11,"len")=4 + Set gtmtypes("GT_TIMER",11,"type")="int" + Set gtmtypfldindx("GT_TIMER","hd_len_max")=11 + Set gtmtypes("GT_TIMER",12,"name")="GT_TIMER.hd_len" + Set gtmtypes("GT_TIMER",12,"off")=36 + Set gtmtypes("GT_TIMER",12,"len")=4 + Set gtmtypes("GT_TIMER",12,"type")="int" + Set gtmtypfldindx("GT_TIMER","hd_len")=12 + Set gtmtypes("GT_TIMER",13,"name")="GT_TIMER.hd_data" + Set gtmtypes("GT_TIMER",13,"off")=40 + Set gtmtypes("GT_TIMER",13,"len")=1 + Set gtmtypes("GT_TIMER",13,"type")="char" + Set gtmtypfldindx("GT_TIMER","hd_data")=13 + ; + Set gtmtypes("IN_PARMS")="struct" + Set gtmtypes("IN_PARMS",0)=5 + Set gtmtypes("IN_PARMS","len")=20 + Set gtmtypes("IN_PARMS",1,"name")="IN_PARMS.argc" + Set gtmtypes("IN_PARMS",1,"off")=0 + Set gtmtypes("IN_PARMS",1,"len")=4 + Set gtmtypes("IN_PARMS",1,"type")="int" + Set gtmtypfldindx("IN_PARMS","argc")=1 + Set gtmtypes("IN_PARMS",2,"name")="IN_PARMS.argv" + Set gtmtypes("IN_PARMS",2,"off")=4 + Set gtmtypes("IN_PARMS",2,"len")=4 + Set gtmtypes("IN_PARMS",2,"type")="addr" + Set gtmtypfldindx("IN_PARMS","argv")=2 + Set gtmtypes("IN_PARMS",3,"name")="IN_PARMS.tp" + Set gtmtypes("IN_PARMS",3,"off")=8 + Set gtmtypes("IN_PARMS",3,"len")=4 + Set gtmtypes("IN_PARMS",3,"type")="addr" + Set gtmtypfldindx("IN_PARMS","tp")=3 + Set gtmtypes("IN_PARMS",4,"name")="IN_PARMS.buflen" + Set gtmtypes("IN_PARMS",4,"off")=12 + Set gtmtypes("IN_PARMS",4,"len")=4 + Set gtmtypes("IN_PARMS",4,"type")="int" + Set gtmtypfldindx("IN_PARMS","buflen")=4 + Set gtmtypes("IN_PARMS",5,"name")="IN_PARMS.in_str" + Set gtmtypes("IN_PARMS",5,"off")=16 + Set gtmtypes("IN_PARMS",5,"len")=1 + Set gtmtypes("IN_PARMS",5,"type")="char" + Set gtmtypfldindx("IN_PARMS","in_str")=5 + ; + Set gtmtypes("activelv_dbg_t")="struct" + Set gtmtypes("activelv_dbg_t",0)=8 + Set gtmtypes("activelv_dbg_t","len")=32 + Set gtmtypes("activelv_dbg_t",1,"name")="activelv_dbg_t.active_lv" + Set gtmtypes("activelv_dbg_t",1,"off")=0 + Set gtmtypes("activelv_dbg_t",1,"len")=4 + Set gtmtypes("activelv_dbg_t",1,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","active_lv")=1 + Set gtmtypes("activelv_dbg_t",2,"name")="activelv_dbg_t.newlv" + Set gtmtypes("activelv_dbg_t",2,"off")=4 + Set gtmtypes("activelv_dbg_t",2,"len")=4 + Set gtmtypes("activelv_dbg_t",2,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","newlv")=2 + Set gtmtypes("activelv_dbg_t",3,"name")="activelv_dbg_t.frame_pointer" + Set gtmtypes("activelv_dbg_t",3,"off")=8 + Set gtmtypes("activelv_dbg_t",3,"len")=4 + Set gtmtypes("activelv_dbg_t",3,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","frame_pointer")=3 + Set gtmtypes("activelv_dbg_t",4,"name")="activelv_dbg_t.curr_symval" + Set gtmtypes("activelv_dbg_t",4,"off")=12 + Set gtmtypes("activelv_dbg_t",4,"len")=4 + Set gtmtypes("activelv_dbg_t",4,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","curr_symval")=4 + Set gtmtypes("activelv_dbg_t",5,"name")="activelv_dbg_t.mpc" + Set gtmtypes("activelv_dbg_t",5,"off")=16 + Set gtmtypes("activelv_dbg_t",5,"len")=4 + Set gtmtypes("activelv_dbg_t",5,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","mpc")=5 + Set gtmtypes("activelv_dbg_t",6,"name")="activelv_dbg_t.ctxt" + Set gtmtypes("activelv_dbg_t",6,"off")=20 + Set gtmtypes("activelv_dbg_t",6,"len")=4 + Set gtmtypes("activelv_dbg_t",6,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","ctxt")=6 + Set gtmtypes("activelv_dbg_t",7,"name")="activelv_dbg_t.count" + Set gtmtypes("activelv_dbg_t",7,"off")=24 + Set gtmtypes("activelv_dbg_t",7,"len")=4 + Set gtmtypes("activelv_dbg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("activelv_dbg_t","count")=7 + Set gtmtypes("activelv_dbg_t",8,"name")="activelv_dbg_t.type" + Set gtmtypes("activelv_dbg_t",8,"off")=28 + Set gtmtypes("activelv_dbg_t",8,"len")=4 + Set gtmtypes("activelv_dbg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("activelv_dbg_t","type")=8 + ; + Set gtmtypes("backup_reg_list")="struct" + Set gtmtypes("backup_reg_list",0)=19 + Set gtmtypes("backup_reg_list","len")=328 + Set gtmtypes("backup_reg_list",1,"name")="backup_reg_list.fPtr" + Set gtmtypes("backup_reg_list",1,"off")=0 + Set gtmtypes("backup_reg_list",1,"len")=4 + Set gtmtypes("backup_reg_list",1,"type")="addr" + Set gtmtypfldindx("backup_reg_list","fPtr")=1 + Set gtmtypes("backup_reg_list",2,"name")="backup_reg_list.reg" + Set gtmtypes("backup_reg_list",2,"off")=4 + Set gtmtypes("backup_reg_list",2,"len")=4 + Set gtmtypes("backup_reg_list",2,"type")="addr" + Set gtmtypfldindx("backup_reg_list","reg")=2 + Set gtmtypes("backup_reg_list",3,"name")="backup_reg_list.unique_file_id" + Set gtmtypes("backup_reg_list",3,"off")=8 + Set gtmtypes("backup_reg_list",3,"len")=20 + Set gtmtypes("backup_reg_list",3,"type")="unix_file_id" + Set gtmtypfldindx("backup_reg_list","unique_file_id")=3 + Set gtmtypes("backup_reg_list",4,"name")="backup_reg_list.unique_file_id.inode" + Set gtmtypes("backup_reg_list",4,"off")=8 + Set gtmtypes("backup_reg_list",4,"len")=8 + Set gtmtypes("backup_reg_list",4,"type")="ino_t" + Set gtmtypfldindx("backup_reg_list","unique_file_id.inode")=4 + Set gtmtypes("backup_reg_list",5,"name")="backup_reg_list.unique_file_id.device" + Set gtmtypes("backup_reg_list",5,"off")=16 + Set gtmtypes("backup_reg_list",5,"len")=8 + Set gtmtypes("backup_reg_list",5,"type")="dev_t" + Set gtmtypfldindx("backup_reg_list","unique_file_id.device")=5 + Set gtmtypes("backup_reg_list",6,"name")="backup_reg_list.unique_file_id.st_gen" + Set gtmtypes("backup_reg_list",6,"off")=24 + Set gtmtypes("backup_reg_list",6,"len")=4 + Set gtmtypes("backup_reg_list",6,"type")="unsigned-int" + Set gtmtypfldindx("backup_reg_list","unique_file_id.st_gen")=6 + Set gtmtypes("backup_reg_list",7,"name")="backup_reg_list.backup_file" + Set gtmtypes("backup_reg_list",7,"off")=28 + Set gtmtypes("backup_reg_list",7,"len")=12 + Set gtmtypes("backup_reg_list",7,"type")="mstr" + Set gtmtypfldindx("backup_reg_list","backup_file")=7 + Set gtmtypes("backup_reg_list",8,"name")="backup_reg_list.backup_file.char_len" + Set gtmtypes("backup_reg_list",8,"off")=28 + Set gtmtypes("backup_reg_list",8,"len")=4 + Set gtmtypes("backup_reg_list",8,"type")="unsigned-int" + Set gtmtypfldindx("backup_reg_list","backup_file.char_len")=8 + Set gtmtypes("backup_reg_list",9,"name")="backup_reg_list.backup_file.len" + Set gtmtypes("backup_reg_list",9,"off")=32 + Set gtmtypes("backup_reg_list",9,"len")=4 + Set gtmtypes("backup_reg_list",9,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_file.len")=9 + Set gtmtypes("backup_reg_list",10,"name")="backup_reg_list.backup_file.addr" + Set gtmtypes("backup_reg_list",10,"off")=36 + Set gtmtypes("backup_reg_list",10,"len")=4 + Set gtmtypes("backup_reg_list",10,"type")="addr" + Set gtmtypfldindx("backup_reg_list","backup_file.addr")=10 + Set gtmtypes("backup_reg_list",11,"name")="backup_reg_list.crashcnt" + Set gtmtypes("backup_reg_list",11,"off")=40 + Set gtmtypes("backup_reg_list",11,"len")=2 + Set gtmtypes("backup_reg_list",11,"type")="short" + Set gtmtypfldindx("backup_reg_list","crashcnt")=11 + Set gtmtypes("backup_reg_list",12,"name")="backup_reg_list.filler" + Set gtmtypes("backup_reg_list",12,"off")=42 + Set gtmtypes("backup_reg_list",12,"len")=2 + Set gtmtypes("backup_reg_list",12,"type")="short" + Set gtmtypfldindx("backup_reg_list","filler")=12 + Set gtmtypes("backup_reg_list",13,"name")="backup_reg_list.not_this_time" + Set gtmtypes("backup_reg_list",13,"off")=44 + Set gtmtypes("backup_reg_list",13,"len")=4 + Set gtmtypes("backup_reg_list",13,"type")="int" + Set gtmtypfldindx("backup_reg_list","not_this_time")=13 + Set gtmtypes("backup_reg_list",14,"name")="backup_reg_list.backup_to" + Set gtmtypes("backup_reg_list",14,"off")=48 + Set gtmtypes("backup_reg_list",14,"len")=4 + Set gtmtypes("backup_reg_list",14,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_to")=14 + Set gtmtypes("backup_reg_list",15,"name")="backup_reg_list.backup_hdr" + Set gtmtypes("backup_reg_list",15,"off")=52 + Set gtmtypes("backup_reg_list",15,"len")=4 + Set gtmtypes("backup_reg_list",15,"type")="addr" + Set gtmtypfldindx("backup_reg_list","backup_hdr")=15 + Set gtmtypes("backup_reg_list",16,"name")="backup_reg_list.tn" + Set gtmtypes("backup_reg_list",16,"off")=56 + Set gtmtypes("backup_reg_list",16,"len")=8 + Set gtmtypes("backup_reg_list",16,"type")="uint64_t" + Set gtmtypfldindx("backup_reg_list","tn")=16 + Set gtmtypes("backup_reg_list",17,"name")="backup_reg_list.last_blk_at_last_bkup" + Set gtmtypes("backup_reg_list",17,"off")=64 + Set gtmtypes("backup_reg_list",17,"len")=4 + Set gtmtypes("backup_reg_list",17,"type")="int" + Set gtmtypfldindx("backup_reg_list","last_blk_at_last_bkup")=17 + Set gtmtypes("backup_reg_list",18,"name")="backup_reg_list.backup_fd" + Set gtmtypes("backup_reg_list",18,"off")=68 + Set gtmtypes("backup_reg_list",18,"len")=4 + Set gtmtypes("backup_reg_list",18,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_fd")=18 + Set gtmtypes("backup_reg_list",19,"name")="backup_reg_list.backup_tempfile" + Set gtmtypes("backup_reg_list",19,"off")=72 + Set gtmtypes("backup_reg_list",19,"len")=256 + Set gtmtypes("backup_reg_list",19,"type")="char" + Set gtmtypfldindx("backup_reg_list","backup_tempfile")=19 + ; + Set gtmtypes("blk_hdr")="struct" + Set gtmtypes("blk_hdr",0)=5 + Set gtmtypes("blk_hdr","len")=16 + Set gtmtypes("blk_hdr",1,"name")="blk_hdr.bver" + Set gtmtypes("blk_hdr",1,"off")=0 + Set gtmtypes("blk_hdr",1,"len")=2 + Set gtmtypes("blk_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("blk_hdr","bver")=1 + Set gtmtypes("blk_hdr",2,"name")="blk_hdr.filler" + Set gtmtypes("blk_hdr",2,"off")=2 + Set gtmtypes("blk_hdr",2,"len")=1 + Set gtmtypes("blk_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("blk_hdr","filler")=2 + Set gtmtypes("blk_hdr",3,"name")="blk_hdr.levl" + Set gtmtypes("blk_hdr",3,"off")=3 + Set gtmtypes("blk_hdr",3,"len")=1 + Set gtmtypes("blk_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("blk_hdr","levl")=3 + Set gtmtypes("blk_hdr",4,"name")="blk_hdr.bsiz" + Set gtmtypes("blk_hdr",4,"off")=4 + Set gtmtypes("blk_hdr",4,"len")=4 + Set gtmtypes("blk_hdr",4,"type")="unsigned-int" + Set gtmtypfldindx("blk_hdr","bsiz")=4 + Set gtmtypes("blk_hdr",5,"name")="blk_hdr.tn" + Set gtmtypes("blk_hdr",5,"off")=8 + Set gtmtypes("blk_hdr",5,"len")=8 + Set gtmtypes("blk_hdr",5,"type")="uint64_t" + Set gtmtypfldindx("blk_hdr","tn")=5 + ; + Set gtmtypes("blk_segment")="struct" + Set gtmtypes("blk_segment",0)=2 + Set gtmtypes("blk_segment","len")=8 + Set gtmtypes("blk_segment",1,"name")="blk_segment.addr" + Set gtmtypes("blk_segment",1,"off")=0 + Set gtmtypes("blk_segment",1,"len")=4 + Set gtmtypes("blk_segment",1,"type")="addr" + Set gtmtypfldindx("blk_segment","addr")=1 + Set gtmtypes("blk_segment",2,"name")="blk_segment.len" + Set gtmtypes("blk_segment",2,"off")=4 + Set gtmtypes("blk_segment",2,"len")=4 + Set gtmtypes("blk_segment",2,"type")="uintptr_t" + Set gtmtypfldindx("blk_segment","len")=2 + ; + Set gtmtypes("block_info")="struct" + Set gtmtypes("block_info",0)=20 + Set gtmtypes("block_info","len")=76 + Set gtmtypes("block_info",1,"name")="block_info.tn" + Set gtmtypes("block_info",1,"off")=0 + Set gtmtypes("block_info",1,"len")=4 + Set gtmtypes("block_info",1,"type")="v15_trans_num" + Set gtmtypfldindx("block_info","tn")=1 + Set gtmtypes("block_info",2,"name")="block_info.blk_num" + Set gtmtypes("block_info",2,"off")=4 + Set gtmtypes("block_info",2,"len")=4 + Set gtmtypes("block_info",2,"type")="int" + Set gtmtypfldindx("block_info","blk_num")=2 + Set gtmtypes("block_info",3,"name")="block_info.usage" + Set gtmtypes("block_info",3,"off")=8 + Set gtmtypes("block_info",3,"len")=4 + Set gtmtypes("block_info",3,"type")="int" + Set gtmtypfldindx("block_info","usage")=3 + Set gtmtypes("block_info",4,"name")="block_info.blk_type" + Set gtmtypes("block_info",4,"off")=12 + Set gtmtypes("block_info",4,"len")=4 + Set gtmtypes("block_info",4,"type")="int" + Set gtmtypfldindx("block_info","blk_type")=4 + Set gtmtypes("block_info",5,"name")="block_info.upd_addr" + Set gtmtypes("block_info",5,"off")=16 + Set gtmtypes("block_info",5,"len")=4 + Set gtmtypes("block_info",5,"type")="addr" + Set gtmtypfldindx("block_info","upd_addr")=5 + Set gtmtypes("block_info",6,"name")="block_info.found_in_cache" + Set gtmtypes("block_info",6,"off")=20 + Set gtmtypes("block_info",6,"len")=4 + Set gtmtypes("block_info",6,"type")="boolean_t" + Set gtmtypfldindx("block_info","found_in_cache")=6 + Set gtmtypes("block_info",7,"name")="block_info.old_buff" + Set gtmtypes("block_info",7,"off")=24 + Set gtmtypes("block_info",7,"len")=4 + Set gtmtypes("block_info",7,"type")="addr" + Set gtmtypfldindx("block_info","old_buff")=7 + Set gtmtypes("block_info",8,"name")="block_info.new_buff" + Set gtmtypes("block_info",8,"off")=28 + Set gtmtypes("block_info",8,"len")=4 + Set gtmtypes("block_info",8,"type")="addr" + Set gtmtypfldindx("block_info","new_buff")=8 + Set gtmtypes("block_info",9,"name")="block_info.prev_rec" + Set gtmtypes("block_info",9,"off")=32 + Set gtmtypes("block_info",9,"len")=4 + Set gtmtypes("block_info",9,"type")="addr" + Set gtmtypfldindx("block_info","prev_rec")=9 + Set gtmtypes("block_info",10,"name")="block_info.prev_match" + Set gtmtypes("block_info",10,"off")=36 + Set gtmtypes("block_info",10,"len")=4 + Set gtmtypes("block_info",10,"type")="unsigned-int" + Set gtmtypfldindx("block_info","prev_match")=10 + Set gtmtypes("block_info",11,"name")="block_info.curr_rec" + Set gtmtypes("block_info",11,"off")=40 + Set gtmtypes("block_info",11,"len")=4 + Set gtmtypes("block_info",11,"type")="addr" + Set gtmtypfldindx("block_info","curr_rec")=11 + Set gtmtypes("block_info",12,"name")="block_info.curr_match" + Set gtmtypes("block_info",12,"off")=44 + Set gtmtypes("block_info",12,"len")=4 + Set gtmtypes("block_info",12,"type")="unsigned-int" + Set gtmtypfldindx("block_info","curr_match")=12 + Set gtmtypes("block_info",13,"name")="block_info.curr_blk_key" + Set gtmtypes("block_info",13,"off")=48 + Set gtmtypes("block_info",13,"len")=4 + Set gtmtypes("block_info",13,"type")="addr" + Set gtmtypfldindx("block_info","curr_blk_key")=13 + Set gtmtypes("block_info",14,"name")="block_info.prev_blk_key" + Set gtmtypes("block_info",14,"off")=52 + Set gtmtypes("block_info",14,"len")=4 + Set gtmtypes("block_info",14,"type")="addr" + Set gtmtypfldindx("block_info","prev_blk_key")=14 + Set gtmtypes("block_info",15,"name")="block_info.ins_rec" + Set gtmtypes("block_info",15,"off")=56 + Set gtmtypes("block_info",15,"len")=8 + Set gtmtypes("block_info",15,"type")="dbc_inserted_rec" + Set gtmtypfldindx("block_info","ins_rec")=15 + Set gtmtypes("block_info",16,"name")="block_info.ins_rec.ins_key" + Set gtmtypes("block_info",16,"off")=56 + Set gtmtypes("block_info",16,"len")=4 + Set gtmtypes("block_info",16,"type")="addr" + Set gtmtypfldindx("block_info","ins_rec.ins_key")=16 + Set gtmtypes("block_info",17,"name")="block_info.ins_rec.blk_id" + Set gtmtypes("block_info",17,"off")=60 + Set gtmtypes("block_info",17,"len")=4 + Set gtmtypes("block_info",17,"type")="int" + Set gtmtypfldindx("block_info","ins_rec.blk_id")=17 + Set gtmtypes("block_info",18,"name")="block_info.blk_len" + Set gtmtypes("block_info",18,"off")=64 + Set gtmtypes("block_info",18,"len")=4 + Set gtmtypes("block_info",18,"type")="int" + Set gtmtypfldindx("block_info","blk_len")=18 + Set gtmtypes("block_info",19,"name")="block_info.blk_levl" + Set gtmtypes("block_info",19,"off")=68 + Set gtmtypes("block_info",19,"len")=4 + Set gtmtypes("block_info",19,"type")="int" + Set gtmtypfldindx("block_info","blk_levl")=19 + Set gtmtypes("block_info",20,"name")="block_info.ins_blk_id_p" + Set gtmtypes("block_info",20,"off")=72 + Set gtmtypes("block_info",20,"len")=4 + Set gtmtypes("block_info",20,"type")="addr" + Set gtmtypfldindx("block_info","ins_blk_id_p")=20 + ; + Set gtmtypes("bt_rec")="struct" + Set gtmtypes("bt_rec",0)=13 + Set gtmtypes("bt_rec","len")=48 + Set gtmtypes("bt_rec",1,"name")="bt_rec.blkque" + Set gtmtypes("bt_rec",1,"off")=0 + Set gtmtypes("bt_rec",1,"len")=8 + Set gtmtypes("bt_rec",1,"type")="struct" + Set gtmtypfldindx("bt_rec","blkque")=1 + Set gtmtypes("bt_rec",2,"name")="bt_rec.blkque.fl" + Set gtmtypes("bt_rec",2,"off")=0 + Set gtmtypes("bt_rec",2,"len")=4 + Set gtmtypes("bt_rec",2,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","blkque.fl")=2 + Set gtmtypes("bt_rec",3,"name")="bt_rec.blkque.bl" + Set gtmtypes("bt_rec",3,"off")=4 + Set gtmtypes("bt_rec",3,"len")=4 + Set gtmtypes("bt_rec",3,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","blkque.bl")=3 + Set gtmtypes("bt_rec",4,"name")="bt_rec.tnque" + Set gtmtypes("bt_rec",4,"off")=8 + Set gtmtypes("bt_rec",4,"len")=8 + Set gtmtypes("bt_rec",4,"type")="struct" + Set gtmtypfldindx("bt_rec","tnque")=4 + Set gtmtypes("bt_rec",5,"name")="bt_rec.tnque.fl" + Set gtmtypes("bt_rec",5,"off")=8 + Set gtmtypes("bt_rec",5,"len")=4 + Set gtmtypes("bt_rec",5,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","tnque.fl")=5 + Set gtmtypes("bt_rec",6,"name")="bt_rec.tnque.bl" + Set gtmtypes("bt_rec",6,"off")=12 + Set gtmtypes("bt_rec",6,"len")=4 + Set gtmtypes("bt_rec",6,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","tnque.bl")=6 + Set gtmtypes("bt_rec",7,"name")="bt_rec.tn" + Set gtmtypes("bt_rec",7,"off")=16 + Set gtmtypes("bt_rec",7,"len")=8 + Set gtmtypes("bt_rec",7,"type")="uint64_t" + Set gtmtypfldindx("bt_rec","tn")=7 + Set gtmtypes("bt_rec",8,"name")="bt_rec.killtn" + Set gtmtypes("bt_rec",8,"off")=24 + Set gtmtypes("bt_rec",8,"len")=8 + Set gtmtypes("bt_rec",8,"type")="uint64_t" + Set gtmtypfldindx("bt_rec","killtn")=8 + Set gtmtypes("bt_rec",9,"name")="bt_rec.blk" + Set gtmtypes("bt_rec",9,"off")=32 + Set gtmtypes("bt_rec",9,"len")=4 + Set gtmtypes("bt_rec",9,"type")="int" + Set gtmtypfldindx("bt_rec","blk")=9 + Set gtmtypes("bt_rec",10,"name")="bt_rec.cache_index" + Set gtmtypes("bt_rec",10,"off")=36 + Set gtmtypes("bt_rec",10,"len")=4 + Set gtmtypes("bt_rec",10,"type")="int" + Set gtmtypfldindx("bt_rec","cache_index")=10 + Set gtmtypes("bt_rec",11,"name")="bt_rec.flushing" + Set gtmtypes("bt_rec",11,"off")=40 + Set gtmtypes("bt_rec",11,"len")=1 + Set gtmtypes("bt_rec",11,"type")="char" + Set gtmtypfldindx("bt_rec","flushing")=11 + Set gtmtypes("bt_rec",12,"name")="bt_rec.filler" + Set gtmtypes("bt_rec",12,"off")=41 + Set gtmtypes("bt_rec",12,"len")=3 + Set gtmtypes("bt_rec",12,"type")="char" + Set gtmtypfldindx("bt_rec","filler")=12 + Set gtmtypes("bt_rec",13,"name")="bt_rec.filler_int4" + Set gtmtypes("bt_rec",13,"off")=44 + Set gtmtypes("bt_rec",13,"len")=4 + Set gtmtypes("bt_rec",13,"type")="int" + Set gtmtypfldindx("bt_rec","filler_int4")=13 + ; + Set gtmtypes("buddy_list")="struct" + Set gtmtypes("buddy_list",0)=12 + Set gtmtypes("buddy_list","len")=48 + Set gtmtypes("buddy_list",1,"name")="buddy_list.ptrArray" + Set gtmtypes("buddy_list",1,"off")=0 + Set gtmtypes("buddy_list",1,"len")=4 + Set gtmtypes("buddy_list",1,"type")="addr" + Set gtmtypfldindx("buddy_list","ptrArray")=1 + Set gtmtypes("buddy_list",2,"name")="buddy_list.elemSize" + Set gtmtypes("buddy_list",2,"off")=4 + Set gtmtypes("buddy_list",2,"len")=4 + Set gtmtypes("buddy_list",2,"type")="int" + Set gtmtypfldindx("buddy_list","elemSize")=2 + Set gtmtypes("buddy_list",3,"name")="buddy_list.initAlloc" + Set gtmtypes("buddy_list",3,"off")=8 + Set gtmtypes("buddy_list",3,"len")=4 + Set gtmtypes("buddy_list",3,"type")="int" + Set gtmtypfldindx("buddy_list","initAlloc")=3 + Set gtmtypes("buddy_list",4,"name")="buddy_list.initAllocBits" + Set gtmtypes("buddy_list",4,"off")=12 + Set gtmtypes("buddy_list",4,"len")=4 + Set gtmtypes("buddy_list",4,"type")="int" + Set gtmtypfldindx("buddy_list","initAllocBits")=4 + Set gtmtypes("buddy_list",5,"name")="buddy_list.nElems" + Set gtmtypes("buddy_list",5,"off")=16 + Set gtmtypes("buddy_list",5,"len")=4 + Set gtmtypes("buddy_list",5,"type")="int" + Set gtmtypfldindx("buddy_list","nElems")=5 + Set gtmtypes("buddy_list",6,"name")="buddy_list.cumulMaxElems" + Set gtmtypes("buddy_list",6,"off")=20 + Set gtmtypes("buddy_list",6,"len")=4 + Set gtmtypes("buddy_list",6,"type")="int" + Set gtmtypfldindx("buddy_list","cumulMaxElems")=6 + Set gtmtypes("buddy_list",7,"name")="buddy_list.ptrArrayCurr" + Set gtmtypes("buddy_list",7,"off")=24 + Set gtmtypes("buddy_list",7,"len")=4 + Set gtmtypes("buddy_list",7,"type")="addr" + Set gtmtypfldindx("buddy_list","ptrArrayCurr")=7 + Set gtmtypes("buddy_list",8,"name")="buddy_list.nextFreePtr" + Set gtmtypes("buddy_list",8,"off")=28 + Set gtmtypes("buddy_list",8,"len")=4 + Set gtmtypes("buddy_list",8,"type")="addr" + Set gtmtypfldindx("buddy_list","nextFreePtr")=8 + Set gtmtypes("buddy_list",9,"name")="buddy_list.free_que" + Set gtmtypes("buddy_list",9,"off")=32 + Set gtmtypes("buddy_list",9,"len")=4 + Set gtmtypes("buddy_list",9,"type")="addr" + Set gtmtypfldindx("buddy_list","free_que")=9 + Set gtmtypes("buddy_list",10,"name")="buddy_list.used_free_last_n_elements" + Set gtmtypes("buddy_list",10,"off")=36 + Set gtmtypes("buddy_list",10,"len")=4 + Set gtmtypes("buddy_list",10,"type")="boolean_t" + Set gtmtypfldindx("buddy_list","used_free_last_n_elements")=10 + Set gtmtypes("buddy_list",11,"name")="buddy_list.used_free_element" + Set gtmtypes("buddy_list",11,"off")=40 + Set gtmtypes("buddy_list",11,"len")=4 + Set gtmtypes("buddy_list",11,"type")="boolean_t" + Set gtmtypfldindx("buddy_list","used_free_element")=11 + Set gtmtypes("buddy_list",12,"name")="buddy_list.nElems_greater_than_one" + Set gtmtypes("buddy_list",12,"off")=44 + Set gtmtypes("buddy_list",12,"len")=4 + Set gtmtypes("buddy_list",12,"type")="boolean_t" + Set gtmtypfldindx("buddy_list","nElems_greater_than_one")=12 + ; + Set gtmtypes("cache_entry")="struct" + Set gtmtypes("cache_entry",0)=9 + Set gtmtypes("cache_entry","len")=36 + Set gtmtypes("cache_entry",1,"name")="cache_entry.obj" + Set gtmtypes("cache_entry",1,"off")=0 + Set gtmtypes("cache_entry",1,"len")=12 + Set gtmtypes("cache_entry",1,"type")="mstr" + Set gtmtypfldindx("cache_entry","obj")=1 + Set gtmtypes("cache_entry",2,"name")="cache_entry.obj.char_len" + Set gtmtypes("cache_entry",2,"off")=0 + Set gtmtypes("cache_entry",2,"len")=4 + Set gtmtypes("cache_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("cache_entry","obj.char_len")=2 + Set gtmtypes("cache_entry",3,"name")="cache_entry.obj.len" + Set gtmtypes("cache_entry",3,"off")=4 + Set gtmtypes("cache_entry",3,"len")=4 + Set gtmtypes("cache_entry",3,"type")="int" + Set gtmtypfldindx("cache_entry","obj.len")=3 + Set gtmtypes("cache_entry",4,"name")="cache_entry.obj.addr" + Set gtmtypes("cache_entry",4,"off")=8 + Set gtmtypes("cache_entry",4,"len")=4 + Set gtmtypes("cache_entry",4,"type")="addr" + Set gtmtypfldindx("cache_entry","obj.addr")=4 + Set gtmtypes("cache_entry",5,"name")="cache_entry.src" + Set gtmtypes("cache_entry",5,"off")=12 + Set gtmtypes("cache_entry",5,"len")=16 + Set gtmtypes("cache_entry",5,"type")="icode_str" + Set gtmtypfldindx("cache_entry","src")=5 + Set gtmtypes("cache_entry",6,"name")="cache_entry.src.str" + Set gtmtypes("cache_entry",6,"off")=12 + Set gtmtypes("cache_entry",6,"len")=12 + Set gtmtypes("cache_entry",6,"type")="mstr" + Set gtmtypfldindx("cache_entry","src.str")=6 + Set gtmtypes("cache_entry",7,"name")="cache_entry.src.code" + Set gtmtypes("cache_entry",7,"off")=24 + Set gtmtypes("cache_entry",7,"len")=4 + Set gtmtypes("cache_entry",7,"type")="unsigned-int" + Set gtmtypfldindx("cache_entry","src.code")=7 + Set gtmtypes("cache_entry",8,"name")="cache_entry.refcnt" + Set gtmtypes("cache_entry",8,"off")=28 + Set gtmtypes("cache_entry",8,"len")=4 + Set gtmtypes("cache_entry",8,"type")="int" + Set gtmtypfldindx("cache_entry","refcnt")=8 + Set gtmtypes("cache_entry",9,"name")="cache_entry.zb_refcnt" + Set gtmtypes("cache_entry",9,"off")=32 + Set gtmtypes("cache_entry",9,"len")=4 + Set gtmtypes("cache_entry",9,"type")="int" + Set gtmtypfldindx("cache_entry","zb_refcnt")=9 + ; + Set gtmtypes("cache_que_head")="struct" + Set gtmtypes("cache_que_head",0)=8 + Set gtmtypes("cache_que_head","len")=16 + Set gtmtypes("cache_que_head",1,"name")="cache_que_head.fl" + Set gtmtypes("cache_que_head",1,"off")=0 + Set gtmtypes("cache_que_head",1,"len")=4 + Set gtmtypes("cache_que_head",1,"type")="intptr_t" + Set gtmtypfldindx("cache_que_head","fl")=1 + Set gtmtypes("cache_que_head",2,"name")="cache_que_head.bl" + Set gtmtypes("cache_que_head",2,"off")=4 + Set gtmtypes("cache_que_head",2,"len")=4 + Set gtmtypes("cache_que_head",2,"type")="intptr_t" + Set gtmtypfldindx("cache_que_head","bl")=2 + Set gtmtypes("cache_que_head",3,"name")="cache_que_head.latch" + Set gtmtypes("cache_que_head",3,"off")=8 + Set gtmtypes("cache_que_head",3,"len")=8 + Set gtmtypes("cache_que_head",3,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_head","latch")=3 + Set gtmtypes("cache_que_head",4,"name")="cache_que_head.latch.u" + Set gtmtypes("cache_que_head",4,"off")=8 + Set gtmtypes("cache_que_head",4,"len")=8 + Set gtmtypes("cache_que_head",4,"type")="union" + Set gtmtypfldindx("cache_que_head","latch.u")=4 + Set gtmtypes("cache_que_head",5,"name")="cache_que_head.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_head",5,"off")=8 + Set gtmtypes("cache_que_head",5,"len")=8 + Set gtmtypes("cache_que_head",5,"type")="uint64_t" + Set gtmtypfldindx("cache_que_head","latch.u.pid_imgcnt")=5 + Set gtmtypes("cache_que_head",6,"name")="cache_que_head.latch.u.parts" + Set gtmtypes("cache_que_head",6,"off")=8 + Set gtmtypes("cache_que_head",6,"len")=8 + Set gtmtypes("cache_que_head",6,"type")="struct" + Set gtmtypfldindx("cache_que_head","latch.u.parts")=6 + Set gtmtypes("cache_que_head",7,"name")="cache_que_head.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_head",7,"off")=8 + Set gtmtypes("cache_que_head",7,"len")=4 + Set gtmtypes("cache_que_head",7,"type")="int" + Set gtmtypfldindx("cache_que_head","latch.u.parts.latch_pid")=7 + Set gtmtypes("cache_que_head",8,"name")="cache_que_head.latch.u.parts.latch_word" + Set gtmtypes("cache_que_head",8,"off")=12 + Set gtmtypes("cache_que_head",8,"len")=4 + Set gtmtypes("cache_que_head",8,"type")="int" + Set gtmtypfldindx("cache_que_head","latch.u.parts.latch_word")=8 + ; + Set gtmtypes("cache_que_heads")="struct" + Set gtmtypes("cache_que_heads",0)=49 + Set gtmtypes("cache_que_heads","len")=152 + Set gtmtypes("cache_que_heads",1,"name")="cache_que_heads.cacheq_wip" + Set gtmtypes("cache_que_heads",1,"off")=0 + Set gtmtypes("cache_que_heads",1,"len")=16 + Set gtmtypes("cache_que_heads",1,"type")="cache_que_head" + Set gtmtypfldindx("cache_que_heads","cacheq_wip")=1 + Set gtmtypes("cache_que_heads",2,"name")="cache_que_heads.cacheq_wip.fl" + Set gtmtypes("cache_que_heads",2,"off")=0 + Set gtmtypes("cache_que_heads",2,"len")=4 + Set gtmtypes("cache_que_heads",2,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.fl")=2 + Set gtmtypes("cache_que_heads",3,"name")="cache_que_heads.cacheq_wip.bl" + Set gtmtypes("cache_que_heads",3,"off")=4 + Set gtmtypes("cache_que_heads",3,"len")=4 + Set gtmtypes("cache_que_heads",3,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.bl")=3 + Set gtmtypes("cache_que_heads",4,"name")="cache_que_heads.cacheq_wip.latch" + Set gtmtypes("cache_que_heads",4,"off")=8 + Set gtmtypes("cache_que_heads",4,"len")=8 + Set gtmtypes("cache_que_heads",4,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch")=4 + Set gtmtypes("cache_que_heads",5,"name")="cache_que_heads.cacheq_wip.latch.u" + Set gtmtypes("cache_que_heads",5,"off")=8 + Set gtmtypes("cache_que_heads",5,"len")=8 + Set gtmtypes("cache_que_heads",5,"type")="union" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u")=5 + Set gtmtypes("cache_que_heads",6,"name")="cache_que_heads.cacheq_wip.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_heads",6,"off")=8 + Set gtmtypes("cache_que_heads",6,"len")=8 + Set gtmtypes("cache_que_heads",6,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.pid_imgcnt")=6 + Set gtmtypes("cache_que_heads",7,"name")="cache_que_heads.cacheq_wip.latch.u.parts" + Set gtmtypes("cache_que_heads",7,"off")=8 + Set gtmtypes("cache_que_heads",7,"len")=8 + Set gtmtypes("cache_que_heads",7,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts")=7 + Set gtmtypes("cache_que_heads",8,"name")="cache_que_heads.cacheq_wip.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_heads",8,"off")=8 + Set gtmtypes("cache_que_heads",8,"len")=4 + Set gtmtypes("cache_que_heads",8,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts.latch_pid")=8 + Set gtmtypes("cache_que_heads",9,"name")="cache_que_heads.cacheq_wip.latch.u.parts.latch_word" + Set gtmtypes("cache_que_heads",9,"off")=12 + Set gtmtypes("cache_que_heads",9,"len")=4 + Set gtmtypes("cache_que_heads",9,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts.latch_word")=9 + Set gtmtypes("cache_que_heads",10,"name")="cache_que_heads.cacheq_active" + Set gtmtypes("cache_que_heads",10,"off")=16 + Set gtmtypes("cache_que_heads",10,"len")=16 + Set gtmtypes("cache_que_heads",10,"type")="cache_que_head" + Set gtmtypfldindx("cache_que_heads","cacheq_active")=10 + Set gtmtypes("cache_que_heads",11,"name")="cache_que_heads.cacheq_active.fl" + Set gtmtypes("cache_que_heads",11,"off")=16 + Set gtmtypes("cache_que_heads",11,"len")=4 + Set gtmtypes("cache_que_heads",11,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.fl")=11 + Set gtmtypes("cache_que_heads",12,"name")="cache_que_heads.cacheq_active.bl" + Set gtmtypes("cache_que_heads",12,"off")=20 + Set gtmtypes("cache_que_heads",12,"len")=4 + Set gtmtypes("cache_que_heads",12,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.bl")=12 + Set gtmtypes("cache_que_heads",13,"name")="cache_que_heads.cacheq_active.latch" + Set gtmtypes("cache_que_heads",13,"off")=24 + Set gtmtypes("cache_que_heads",13,"len")=8 + Set gtmtypes("cache_que_heads",13,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch")=13 + Set gtmtypes("cache_que_heads",14,"name")="cache_que_heads.cacheq_active.latch.u" + Set gtmtypes("cache_que_heads",14,"off")=24 + Set gtmtypes("cache_que_heads",14,"len")=8 + Set gtmtypes("cache_que_heads",14,"type")="union" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u")=14 + Set gtmtypes("cache_que_heads",15,"name")="cache_que_heads.cacheq_active.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_heads",15,"off")=24 + Set gtmtypes("cache_que_heads",15,"len")=8 + Set gtmtypes("cache_que_heads",15,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.pid_imgcnt")=15 + Set gtmtypes("cache_que_heads",16,"name")="cache_que_heads.cacheq_active.latch.u.parts" + Set gtmtypes("cache_que_heads",16,"off")=24 + Set gtmtypes("cache_que_heads",16,"len")=8 + Set gtmtypes("cache_que_heads",16,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts")=16 + Set gtmtypes("cache_que_heads",17,"name")="cache_que_heads.cacheq_active.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_heads",17,"off")=24 + Set gtmtypes("cache_que_heads",17,"len")=4 + Set gtmtypes("cache_que_heads",17,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts.latch_pid")=17 + Set gtmtypes("cache_que_heads",18,"name")="cache_que_heads.cacheq_active.latch.u.parts.latch_word" + Set gtmtypes("cache_que_heads",18,"off")=28 + Set gtmtypes("cache_que_heads",18,"len")=4 + Set gtmtypes("cache_que_heads",18,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts.latch_word")=18 + Set gtmtypes("cache_que_heads",19,"name")="cache_que_heads.cache_array" + Set gtmtypes("cache_que_heads",19,"off")=32 + Set gtmtypes("cache_que_heads",19,"len")=120 + Set gtmtypes("cache_que_heads",19,"type")="cache_rec" + Set gtmtypfldindx("cache_que_heads","cache_array")=19 + Set gtmtypes("cache_que_heads",20,"name")="cache_que_heads.cache_array[0].blkque" + Set gtmtypes("cache_que_heads",20,"off")=32 + Set gtmtypes("cache_que_heads",20,"len")=8 + Set gtmtypes("cache_que_heads",20,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque")=20 + Set gtmtypes("cache_que_heads",21,"name")="cache_que_heads.cache_array[0].blkque.fl" + Set gtmtypes("cache_que_heads",21,"off")=32 + Set gtmtypes("cache_que_heads",21,"len")=4 + Set gtmtypes("cache_que_heads",21,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque.fl")=21 + Set gtmtypes("cache_que_heads",22,"name")="cache_que_heads.cache_array[0].blkque.bl" + Set gtmtypes("cache_que_heads",22,"off")=36 + Set gtmtypes("cache_que_heads",22,"len")=4 + Set gtmtypes("cache_que_heads",22,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque.bl")=22 + Set gtmtypes("cache_que_heads",23,"name")="cache_que_heads.cache_array[0].state_que" + Set gtmtypes("cache_que_heads",23,"off")=40 + Set gtmtypes("cache_que_heads",23,"len")=8 + Set gtmtypes("cache_que_heads",23,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que")=23 + Set gtmtypes("cache_que_heads",24,"name")="cache_que_heads.cache_array[0].state_que.fl" + Set gtmtypes("cache_que_heads",24,"off")=40 + Set gtmtypes("cache_que_heads",24,"len")=4 + Set gtmtypes("cache_que_heads",24,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que.fl")=24 + Set gtmtypes("cache_que_heads",25,"name")="cache_que_heads.cache_array[0].state_que.bl" + Set gtmtypes("cache_que_heads",25,"off")=44 + Set gtmtypes("cache_que_heads",25,"len")=4 + Set gtmtypes("cache_que_heads",25,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que.bl")=25 + Set gtmtypes("cache_que_heads",26,"name")="cache_que_heads.cache_array[0].interlock" + Set gtmtypes("cache_que_heads",26,"off")=48 + Set gtmtypes("cache_que_heads",26,"len")=4 + Set gtmtypes("cache_que_heads",26,"type")="union" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock")=26 + Set gtmtypes("cache_que_heads",27,"name")="cache_que_heads.cache_array[0].interlock.semaphore" + Set gtmtypes("cache_que_heads",27,"off")=48 + Set gtmtypes("cache_que_heads",27,"len")=2 + Set gtmtypes("cache_que_heads",27,"type")="short" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock.semaphore")=27 + Set gtmtypes("cache_que_heads",28,"name")="cache_que_heads.cache_array[0].interlock.latch" + Set gtmtypes("cache_que_heads",28,"off")=48 + Set gtmtypes("cache_que_heads",28,"len")=4 + Set gtmtypes("cache_que_heads",28,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock.latch")=28 + Set gtmtypes("cache_que_heads",29,"name")="cache_que_heads.cache_array[0].blk" + Set gtmtypes("cache_que_heads",29,"off")=52 + Set gtmtypes("cache_que_heads",29,"len")=4 + Set gtmtypes("cache_que_heads",29,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blk")=29 + Set gtmtypes("cache_que_heads",30,"name")="cache_que_heads.cache_array[0].refer" + Set gtmtypes("cache_que_heads",30,"off")=56 + Set gtmtypes("cache_que_heads",30,"len")=4 + Set gtmtypes("cache_que_heads",30,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].refer")=30 + Set gtmtypes("cache_que_heads",31,"name")="cache_que_heads.cache_array[0].ondsk_blkver" + Set gtmtypes("cache_que_heads",31,"off")=60 + Set gtmtypes("cache_que_heads",31,"len")=4 + Set gtmtypes("cache_que_heads",31,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].ondsk_blkver")=31 + Set gtmtypes("cache_que_heads",32,"name")="cache_que_heads.cache_array[0].dirty" + Set gtmtypes("cache_que_heads",32,"off")=64 + Set gtmtypes("cache_que_heads",32,"len")=8 + Set gtmtypes("cache_que_heads",32,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].dirty")=32 + Set gtmtypes("cache_que_heads",33,"name")="cache_que_heads.cache_array[0].flushed_dirty_tn" + Set gtmtypes("cache_que_heads",33,"off")=72 + Set gtmtypes("cache_que_heads",33,"len")=8 + Set gtmtypes("cache_que_heads",33,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].flushed_dirty_tn")=33 + Set gtmtypes("cache_que_heads",34,"name")="cache_que_heads.cache_array[0].tn" + Set gtmtypes("cache_que_heads",34,"off")=80 + Set gtmtypes("cache_que_heads",34,"len")=8 + Set gtmtypes("cache_que_heads",34,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].tn")=34 + Set gtmtypes("cache_que_heads",35,"name")="cache_que_heads.cache_array[0].bt_index" + Set gtmtypes("cache_que_heads",35,"off")=88 + Set gtmtypes("cache_que_heads",35,"len")=4 + Set gtmtypes("cache_que_heads",35,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].bt_index")=35 + Set gtmtypes("cache_que_heads",36,"name")="cache_que_heads.cache_array[0].buffaddr" + Set gtmtypes("cache_que_heads",36,"off")=92 + Set gtmtypes("cache_que_heads",36,"len")=4 + Set gtmtypes("cache_que_heads",36,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].buffaddr")=36 + Set gtmtypes("cache_que_heads",37,"name")="cache_que_heads.cache_array[0].twin" + Set gtmtypes("cache_que_heads",37,"off")=96 + Set gtmtypes("cache_que_heads",37,"len")=4 + Set gtmtypes("cache_que_heads",37,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].twin")=37 + Set gtmtypes("cache_que_heads",38,"name")="cache_que_heads.cache_array[0].jnl_addr" + Set gtmtypes("cache_que_heads",38,"off")=100 + Set gtmtypes("cache_que_heads",38,"len")=4 + Set gtmtypes("cache_que_heads",38,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].jnl_addr")=38 + Set gtmtypes("cache_que_heads",39,"name")="cache_que_heads.cache_array[0].rip_latch" + Set gtmtypes("cache_que_heads",39,"off")=104 + Set gtmtypes("cache_que_heads",39,"len")=8 + Set gtmtypes("cache_que_heads",39,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].rip_latch")=39 + Set gtmtypes("cache_que_heads",40,"name")="cache_que_heads.cache_array[0].image_count" + Set gtmtypes("cache_que_heads",40,"off")=112 + Set gtmtypes("cache_que_heads",40,"len")=4 + Set gtmtypes("cache_que_heads",40,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].image_count")=40 + Set gtmtypes("cache_que_heads",41,"name")="cache_que_heads.cache_array[0].epid" + Set gtmtypes("cache_que_heads",41,"off")=116 + Set gtmtypes("cache_que_heads",41,"len")=4 + Set gtmtypes("cache_que_heads",41,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].epid")=41 + Set gtmtypes("cache_que_heads",42,"name")="cache_que_heads.cache_array[0].cycle" + Set gtmtypes("cache_que_heads",42,"off")=120 + Set gtmtypes("cache_que_heads",42,"len")=4 + Set gtmtypes("cache_que_heads",42,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].cycle")=42 + Set gtmtypes("cache_que_heads",43,"name")="cache_que_heads.cache_array[0].r_epid" + Set gtmtypes("cache_que_heads",43,"off")=124 + Set gtmtypes("cache_que_heads",43,"len")=4 + Set gtmtypes("cache_que_heads",43,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].r_epid")=43 + Set gtmtypes("cache_que_heads",44,"name")="cache_que_heads.cache_array[0].read_in_progress" + Set gtmtypes("cache_que_heads",44,"off")=128 + Set gtmtypes("cache_que_heads",44,"len")=4 + Set gtmtypes("cache_que_heads",44,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].read_in_progress")=44 + Set gtmtypes("cache_que_heads",45,"name")="cache_que_heads.cache_array[0].in_tend" + Set gtmtypes("cache_que_heads",45,"off")=132 + Set gtmtypes("cache_que_heads",45,"len")=4 + Set gtmtypes("cache_que_heads",45,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].in_tend")=45 + Set gtmtypes("cache_que_heads",46,"name")="cache_que_heads.cache_array[0].in_cw_set" + Set gtmtypes("cache_que_heads",46,"off")=136 + Set gtmtypes("cache_que_heads",46,"len")=4 + Set gtmtypes("cache_que_heads",46,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].in_cw_set")=46 + Set gtmtypes("cache_que_heads",47,"name")="cache_que_heads.cache_array[0].data_invalid" + Set gtmtypes("cache_que_heads",47,"off")=140 + Set gtmtypes("cache_que_heads",47,"len")=4 + Set gtmtypes("cache_que_heads",47,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].data_invalid")=47 + Set gtmtypes("cache_que_heads",48,"name")="cache_que_heads.cache_array[0].stopped" + Set gtmtypes("cache_que_heads",48,"off")=144 + Set gtmtypes("cache_que_heads",48,"len")=4 + Set gtmtypes("cache_que_heads",48,"type")="boolean_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].stopped")=48 + Set gtmtypes("cache_que_heads",49,"name")="cache_que_heads.cache_array[0].wip_stopped" + Set gtmtypes("cache_que_heads",49,"off")=148 + Set gtmtypes("cache_que_heads",49,"len")=4 + Set gtmtypes("cache_que_heads",49,"type")="boolean_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].wip_stopped")=49 + ; + Set gtmtypes("cache_rec")="struct" + Set gtmtypes("cache_rec",0)=35 + Set gtmtypes("cache_rec","len")=120 + Set gtmtypes("cache_rec",1,"name")="cache_rec.blkque" + Set gtmtypes("cache_rec",1,"off")=0 + Set gtmtypes("cache_rec",1,"len")=8 + Set gtmtypes("cache_rec",1,"type")="struct" + Set gtmtypfldindx("cache_rec","blkque")=1 + Set gtmtypes("cache_rec",2,"name")="cache_rec.blkque.fl" + Set gtmtypes("cache_rec",2,"off")=0 + Set gtmtypes("cache_rec",2,"len")=4 + Set gtmtypes("cache_rec",2,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","blkque.fl")=2 + Set gtmtypes("cache_rec",3,"name")="cache_rec.blkque.bl" + Set gtmtypes("cache_rec",3,"off")=4 + Set gtmtypes("cache_rec",3,"len")=4 + Set gtmtypes("cache_rec",3,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","blkque.bl")=3 + Set gtmtypes("cache_rec",4,"name")="cache_rec.state_que" + Set gtmtypes("cache_rec",4,"off")=8 + Set gtmtypes("cache_rec",4,"len")=8 + Set gtmtypes("cache_rec",4,"type")="struct" + Set gtmtypfldindx("cache_rec","state_que")=4 + Set gtmtypes("cache_rec",5,"name")="cache_rec.state_que.fl" + Set gtmtypes("cache_rec",5,"off")=8 + Set gtmtypes("cache_rec",5,"len")=4 + Set gtmtypes("cache_rec",5,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","state_que.fl")=5 + Set gtmtypes("cache_rec",6,"name")="cache_rec.state_que.bl" + Set gtmtypes("cache_rec",6,"off")=12 + Set gtmtypes("cache_rec",6,"len")=4 + Set gtmtypes("cache_rec",6,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","state_que.bl")=6 + Set gtmtypes("cache_rec",7,"name")="cache_rec.interlock" + Set gtmtypes("cache_rec",7,"off")=16 + Set gtmtypes("cache_rec",7,"len")=4 + Set gtmtypes("cache_rec",7,"type")="union" + Set gtmtypfldindx("cache_rec","interlock")=7 + Set gtmtypes("cache_rec",8,"name")="cache_rec.interlock.semaphore" + Set gtmtypes("cache_rec",8,"off")=16 + Set gtmtypes("cache_rec",8,"len")=2 + Set gtmtypes("cache_rec",8,"type")="short" + Set gtmtypfldindx("cache_rec","interlock.semaphore")=8 + Set gtmtypes("cache_rec",9,"name")="cache_rec.interlock.latch" + Set gtmtypes("cache_rec",9,"off")=16 + Set gtmtypes("cache_rec",9,"len")=4 + Set gtmtypes("cache_rec",9,"type")="int" + Set gtmtypfldindx("cache_rec","interlock.latch")=9 + Set gtmtypes("cache_rec",10,"name")="cache_rec.blk" + Set gtmtypes("cache_rec",10,"off")=20 + Set gtmtypes("cache_rec",10,"len")=4 + Set gtmtypes("cache_rec",10,"type")="int" + Set gtmtypfldindx("cache_rec","blk")=10 + Set gtmtypes("cache_rec",11,"name")="cache_rec.refer" + Set gtmtypes("cache_rec",11,"off")=24 + Set gtmtypes("cache_rec",11,"len")=4 + Set gtmtypes("cache_rec",11,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","refer")=11 + Set gtmtypes("cache_rec",12,"name")="cache_rec.ondsk_blkver" + Set gtmtypes("cache_rec",12,"off")=28 + Set gtmtypes("cache_rec",12,"len")=4 + Set gtmtypes("cache_rec",12,"type")="int" + Set gtmtypfldindx("cache_rec","ondsk_blkver")=12 + Set gtmtypes("cache_rec",13,"name")="cache_rec.dirty" + Set gtmtypes("cache_rec",13,"off")=32 + Set gtmtypes("cache_rec",13,"len")=8 + Set gtmtypes("cache_rec",13,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","dirty")=13 + Set gtmtypes("cache_rec",14,"name")="cache_rec.flushed_dirty_tn" + Set gtmtypes("cache_rec",14,"off")=40 + Set gtmtypes("cache_rec",14,"len")=8 + Set gtmtypes("cache_rec",14,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","flushed_dirty_tn")=14 + Set gtmtypes("cache_rec",15,"name")="cache_rec.tn" + Set gtmtypes("cache_rec",15,"off")=48 + Set gtmtypes("cache_rec",15,"len")=8 + Set gtmtypes("cache_rec",15,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","tn")=15 + Set gtmtypes("cache_rec",16,"name")="cache_rec.bt_index" + Set gtmtypes("cache_rec",16,"off")=56 + Set gtmtypes("cache_rec",16,"len")=4 + Set gtmtypes("cache_rec",16,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","bt_index")=16 + Set gtmtypes("cache_rec",17,"name")="cache_rec.buffaddr" + Set gtmtypes("cache_rec",17,"off")=60 + Set gtmtypes("cache_rec",17,"len")=4 + Set gtmtypes("cache_rec",17,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","buffaddr")=17 + Set gtmtypes("cache_rec",18,"name")="cache_rec.twin" + Set gtmtypes("cache_rec",18,"off")=64 + Set gtmtypes("cache_rec",18,"len")=4 + Set gtmtypes("cache_rec",18,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","twin")=18 + Set gtmtypes("cache_rec",19,"name")="cache_rec.jnl_addr" + Set gtmtypes("cache_rec",19,"off")=68 + Set gtmtypes("cache_rec",19,"len")=4 + Set gtmtypes("cache_rec",19,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","jnl_addr")=19 + Set gtmtypes("cache_rec",20,"name")="cache_rec.rip_latch" + Set gtmtypes("cache_rec",20,"off")=72 + Set gtmtypes("cache_rec",20,"len")=8 + Set gtmtypes("cache_rec",20,"type")="global_latch_t" + Set gtmtypfldindx("cache_rec","rip_latch")=20 + Set gtmtypes("cache_rec",21,"name")="cache_rec.rip_latch.u" + Set gtmtypes("cache_rec",21,"off")=72 + Set gtmtypes("cache_rec",21,"len")=8 + Set gtmtypes("cache_rec",21,"type")="union" + Set gtmtypfldindx("cache_rec","rip_latch.u")=21 + Set gtmtypes("cache_rec",22,"name")="cache_rec.rip_latch.u.pid_imgcnt" + Set gtmtypes("cache_rec",22,"off")=72 + Set gtmtypes("cache_rec",22,"len")=8 + Set gtmtypes("cache_rec",22,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","rip_latch.u.pid_imgcnt")=22 + Set gtmtypes("cache_rec",23,"name")="cache_rec.rip_latch.u.parts" + Set gtmtypes("cache_rec",23,"off")=72 + Set gtmtypes("cache_rec",23,"len")=8 + Set gtmtypes("cache_rec",23,"type")="struct" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts")=23 + Set gtmtypes("cache_rec",24,"name")="cache_rec.rip_latch.u.parts.latch_pid" + Set gtmtypes("cache_rec",24,"off")=72 + Set gtmtypes("cache_rec",24,"len")=4 + Set gtmtypes("cache_rec",24,"type")="int" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts.latch_pid")=24 + Set gtmtypes("cache_rec",25,"name")="cache_rec.rip_latch.u.parts.latch_word" + Set gtmtypes("cache_rec",25,"off")=76 + Set gtmtypes("cache_rec",25,"len")=4 + Set gtmtypes("cache_rec",25,"type")="int" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts.latch_word")=25 + Set gtmtypes("cache_rec",26,"name")="cache_rec.image_count" + Set gtmtypes("cache_rec",26,"off")=80 + Set gtmtypes("cache_rec",26,"len")=4 + Set gtmtypes("cache_rec",26,"type")="int" + Set gtmtypfldindx("cache_rec","image_count")=26 + Set gtmtypes("cache_rec",27,"name")="cache_rec.epid" + Set gtmtypes("cache_rec",27,"off")=84 + Set gtmtypes("cache_rec",27,"len")=4 + Set gtmtypes("cache_rec",27,"type")="int" + Set gtmtypfldindx("cache_rec","epid")=27 + Set gtmtypes("cache_rec",28,"name")="cache_rec.cycle" + Set gtmtypes("cache_rec",28,"off")=88 + Set gtmtypes("cache_rec",28,"len")=4 + Set gtmtypes("cache_rec",28,"type")="int" + Set gtmtypfldindx("cache_rec","cycle")=28 + Set gtmtypes("cache_rec",29,"name")="cache_rec.r_epid" + Set gtmtypes("cache_rec",29,"off")=92 + Set gtmtypes("cache_rec",29,"len")=4 + Set gtmtypes("cache_rec",29,"type")="int" + Set gtmtypfldindx("cache_rec","r_epid")=29 + Set gtmtypes("cache_rec",30,"name")="cache_rec.read_in_progress" + Set gtmtypes("cache_rec",30,"off")=96 + Set gtmtypes("cache_rec",30,"len")=4 + Set gtmtypes("cache_rec",30,"type")="int" + Set gtmtypfldindx("cache_rec","read_in_progress")=30 + Set gtmtypes("cache_rec",31,"name")="cache_rec.in_tend" + Set gtmtypes("cache_rec",31,"off")=100 + Set gtmtypes("cache_rec",31,"len")=4 + Set gtmtypes("cache_rec",31,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","in_tend")=31 + Set gtmtypes("cache_rec",32,"name")="cache_rec.in_cw_set" + Set gtmtypes("cache_rec",32,"off")=104 + Set gtmtypes("cache_rec",32,"len")=4 + Set gtmtypes("cache_rec",32,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","in_cw_set")=32 + Set gtmtypes("cache_rec",33,"name")="cache_rec.data_invalid" + Set gtmtypes("cache_rec",33,"off")=108 + Set gtmtypes("cache_rec",33,"len")=4 + Set gtmtypes("cache_rec",33,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","data_invalid")=33 + Set gtmtypes("cache_rec",34,"name")="cache_rec.stopped" + Set gtmtypes("cache_rec",34,"off")=112 + Set gtmtypes("cache_rec",34,"len")=4 + Set gtmtypes("cache_rec",34,"type")="boolean_t" + Set gtmtypfldindx("cache_rec","stopped")=34 + Set gtmtypes("cache_rec",35,"name")="cache_rec.wip_stopped" + Set gtmtypes("cache_rec",35,"off")=116 + Set gtmtypes("cache_rec",35,"len")=4 + Set gtmtypes("cache_rec",35,"type")="boolean_t" + Set gtmtypfldindx("cache_rec","wip_stopped")=35 + ; + Set gtmtypes("cache_state_rec")="struct" + Set gtmtypes("cache_state_rec",0)=32 + Set gtmtypes("cache_state_rec","len")=112 + Set gtmtypes("cache_state_rec",1,"name")="cache_state_rec.state_que" + Set gtmtypes("cache_state_rec",1,"off")=0 + Set gtmtypes("cache_state_rec",1,"len")=8 + Set gtmtypes("cache_state_rec",1,"type")="struct" + Set gtmtypfldindx("cache_state_rec","state_que")=1 + Set gtmtypes("cache_state_rec",2,"name")="cache_state_rec.state_que.fl" + Set gtmtypes("cache_state_rec",2,"off")=0 + Set gtmtypes("cache_state_rec",2,"len")=4 + Set gtmtypes("cache_state_rec",2,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","state_que.fl")=2 + Set gtmtypes("cache_state_rec",3,"name")="cache_state_rec.state_que.bl" + Set gtmtypes("cache_state_rec",3,"off")=4 + Set gtmtypes("cache_state_rec",3,"len")=4 + Set gtmtypes("cache_state_rec",3,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","state_que.bl")=3 + Set gtmtypes("cache_state_rec",4,"name")="cache_state_rec.interlock" + Set gtmtypes("cache_state_rec",4,"off")=8 + Set gtmtypes("cache_state_rec",4,"len")=4 + Set gtmtypes("cache_state_rec",4,"type")="union" + Set gtmtypfldindx("cache_state_rec","interlock")=4 + Set gtmtypes("cache_state_rec",5,"name")="cache_state_rec.interlock.semaphore" + Set gtmtypes("cache_state_rec",5,"off")=8 + Set gtmtypes("cache_state_rec",5,"len")=2 + Set gtmtypes("cache_state_rec",5,"type")="short" + Set gtmtypfldindx("cache_state_rec","interlock.semaphore")=5 + Set gtmtypes("cache_state_rec",6,"name")="cache_state_rec.interlock.latch" + Set gtmtypes("cache_state_rec",6,"off")=8 + Set gtmtypes("cache_state_rec",6,"len")=4 + Set gtmtypes("cache_state_rec",6,"type")="int" + Set gtmtypfldindx("cache_state_rec","interlock.latch")=6 + Set gtmtypes("cache_state_rec",7,"name")="cache_state_rec.blk" + Set gtmtypes("cache_state_rec",7,"off")=12 + Set gtmtypes("cache_state_rec",7,"len")=4 + Set gtmtypes("cache_state_rec",7,"type")="int" + Set gtmtypfldindx("cache_state_rec","blk")=7 + Set gtmtypes("cache_state_rec",8,"name")="cache_state_rec.refer" + Set gtmtypes("cache_state_rec",8,"off")=16 + Set gtmtypes("cache_state_rec",8,"len")=4 + Set gtmtypes("cache_state_rec",8,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","refer")=8 + Set gtmtypes("cache_state_rec",9,"name")="cache_state_rec.ondsk_blkver" + Set gtmtypes("cache_state_rec",9,"off")=20 + Set gtmtypes("cache_state_rec",9,"len")=4 + Set gtmtypes("cache_state_rec",9,"type")="int" + Set gtmtypfldindx("cache_state_rec","ondsk_blkver")=9 + Set gtmtypes("cache_state_rec",10,"name")="cache_state_rec.dirty" + Set gtmtypes("cache_state_rec",10,"off")=24 + Set gtmtypes("cache_state_rec",10,"len")=8 + Set gtmtypes("cache_state_rec",10,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","dirty")=10 + Set gtmtypes("cache_state_rec",11,"name")="cache_state_rec.flushed_dirty_tn" + Set gtmtypes("cache_state_rec",11,"off")=32 + Set gtmtypes("cache_state_rec",11,"len")=8 + Set gtmtypes("cache_state_rec",11,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","flushed_dirty_tn")=11 + Set gtmtypes("cache_state_rec",12,"name")="cache_state_rec.tn" + Set gtmtypes("cache_state_rec",12,"off")=40 + Set gtmtypes("cache_state_rec",12,"len")=8 + Set gtmtypes("cache_state_rec",12,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","tn")=12 + Set gtmtypes("cache_state_rec",13,"name")="cache_state_rec.bt_index" + Set gtmtypes("cache_state_rec",13,"off")=48 + Set gtmtypes("cache_state_rec",13,"len")=4 + Set gtmtypes("cache_state_rec",13,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","bt_index")=13 + Set gtmtypes("cache_state_rec",14,"name")="cache_state_rec.buffaddr" + Set gtmtypes("cache_state_rec",14,"off")=52 + Set gtmtypes("cache_state_rec",14,"len")=4 + Set gtmtypes("cache_state_rec",14,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","buffaddr")=14 + Set gtmtypes("cache_state_rec",15,"name")="cache_state_rec.twin" + Set gtmtypes("cache_state_rec",15,"off")=56 + Set gtmtypes("cache_state_rec",15,"len")=4 + Set gtmtypes("cache_state_rec",15,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","twin")=15 + Set gtmtypes("cache_state_rec",16,"name")="cache_state_rec.jnl_addr" + Set gtmtypes("cache_state_rec",16,"off")=60 + Set gtmtypes("cache_state_rec",16,"len")=4 + Set gtmtypes("cache_state_rec",16,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","jnl_addr")=16 + Set gtmtypes("cache_state_rec",17,"name")="cache_state_rec.rip_latch" + Set gtmtypes("cache_state_rec",17,"off")=64 + Set gtmtypes("cache_state_rec",17,"len")=8 + Set gtmtypes("cache_state_rec",17,"type")="global_latch_t" + Set gtmtypfldindx("cache_state_rec","rip_latch")=17 + Set gtmtypes("cache_state_rec",18,"name")="cache_state_rec.rip_latch.u" + Set gtmtypes("cache_state_rec",18,"off")=64 + Set gtmtypes("cache_state_rec",18,"len")=8 + Set gtmtypes("cache_state_rec",18,"type")="union" + Set gtmtypfldindx("cache_state_rec","rip_latch.u")=18 + Set gtmtypes("cache_state_rec",19,"name")="cache_state_rec.rip_latch.u.pid_imgcnt" + Set gtmtypes("cache_state_rec",19,"off")=64 + Set gtmtypes("cache_state_rec",19,"len")=8 + Set gtmtypes("cache_state_rec",19,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.pid_imgcnt")=19 + Set gtmtypes("cache_state_rec",20,"name")="cache_state_rec.rip_latch.u.parts" + Set gtmtypes("cache_state_rec",20,"off")=64 + Set gtmtypes("cache_state_rec",20,"len")=8 + Set gtmtypes("cache_state_rec",20,"type")="struct" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts")=20 + Set gtmtypes("cache_state_rec",21,"name")="cache_state_rec.rip_latch.u.parts.latch_pid" + Set gtmtypes("cache_state_rec",21,"off")=64 + Set gtmtypes("cache_state_rec",21,"len")=4 + Set gtmtypes("cache_state_rec",21,"type")="int" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts.latch_pid")=21 + Set gtmtypes("cache_state_rec",22,"name")="cache_state_rec.rip_latch.u.parts.latch_word" + Set gtmtypes("cache_state_rec",22,"off")=68 + Set gtmtypes("cache_state_rec",22,"len")=4 + Set gtmtypes("cache_state_rec",22,"type")="int" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts.latch_word")=22 + Set gtmtypes("cache_state_rec",23,"name")="cache_state_rec.image_count" + Set gtmtypes("cache_state_rec",23,"off")=72 + Set gtmtypes("cache_state_rec",23,"len")=4 + Set gtmtypes("cache_state_rec",23,"type")="int" + Set gtmtypfldindx("cache_state_rec","image_count")=23 + Set gtmtypes("cache_state_rec",24,"name")="cache_state_rec.epid" + Set gtmtypes("cache_state_rec",24,"off")=76 + Set gtmtypes("cache_state_rec",24,"len")=4 + Set gtmtypes("cache_state_rec",24,"type")="int" + Set gtmtypfldindx("cache_state_rec","epid")=24 + Set gtmtypes("cache_state_rec",25,"name")="cache_state_rec.cycle" + Set gtmtypes("cache_state_rec",25,"off")=80 + Set gtmtypes("cache_state_rec",25,"len")=4 + Set gtmtypes("cache_state_rec",25,"type")="int" + Set gtmtypfldindx("cache_state_rec","cycle")=25 + Set gtmtypes("cache_state_rec",26,"name")="cache_state_rec.r_epid" + Set gtmtypes("cache_state_rec",26,"off")=84 + Set gtmtypes("cache_state_rec",26,"len")=4 + Set gtmtypes("cache_state_rec",26,"type")="int" + Set gtmtypfldindx("cache_state_rec","r_epid")=26 + Set gtmtypes("cache_state_rec",27,"name")="cache_state_rec.read_in_progress" + Set gtmtypes("cache_state_rec",27,"off")=88 + Set gtmtypes("cache_state_rec",27,"len")=4 + Set gtmtypes("cache_state_rec",27,"type")="int" + Set gtmtypfldindx("cache_state_rec","read_in_progress")=27 + Set gtmtypes("cache_state_rec",28,"name")="cache_state_rec.in_tend" + Set gtmtypes("cache_state_rec",28,"off")=92 + Set gtmtypes("cache_state_rec",28,"len")=4 + Set gtmtypes("cache_state_rec",28,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","in_tend")=28 + Set gtmtypes("cache_state_rec",29,"name")="cache_state_rec.in_cw_set" + Set gtmtypes("cache_state_rec",29,"off")=96 + Set gtmtypes("cache_state_rec",29,"len")=4 + Set gtmtypes("cache_state_rec",29,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","in_cw_set")=29 + Set gtmtypes("cache_state_rec",30,"name")="cache_state_rec.data_invalid" + Set gtmtypes("cache_state_rec",30,"off")=100 + Set gtmtypes("cache_state_rec",30,"len")=4 + Set gtmtypes("cache_state_rec",30,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","data_invalid")=30 + Set gtmtypes("cache_state_rec",31,"name")="cache_state_rec.stopped" + Set gtmtypes("cache_state_rec",31,"off")=104 + Set gtmtypes("cache_state_rec",31,"len")=4 + Set gtmtypes("cache_state_rec",31,"type")="boolean_t" + Set gtmtypfldindx("cache_state_rec","stopped")=31 + Set gtmtypes("cache_state_rec",32,"name")="cache_state_rec.wip_stopped" + Set gtmtypes("cache_state_rec",32,"off")=108 + Set gtmtypes("cache_state_rec",32,"len")=4 + Set gtmtypes("cache_state_rec",32,"type")="boolean_t" + Set gtmtypfldindx("cache_state_rec","wip_stopped")=32 + ; + Set gtmtypes("callin_entry_list")="struct" + Set gtmtypes("callin_entry_list",0)=14 + Set gtmtypes("callin_entry_list","len")=48 + Set gtmtypes("callin_entry_list",1,"name")="callin_entry_list.label_ref" + Set gtmtypes("callin_entry_list",1,"off")=0 + Set gtmtypes("callin_entry_list",1,"len")=12 + Set gtmtypes("callin_entry_list",1,"type")="mstr" + Set gtmtypfldindx("callin_entry_list","label_ref")=1 + Set gtmtypes("callin_entry_list",2,"name")="callin_entry_list.label_ref.char_len" + Set gtmtypes("callin_entry_list",2,"off")=0 + Set gtmtypes("callin_entry_list",2,"len")=4 + Set gtmtypes("callin_entry_list",2,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","label_ref.char_len")=2 + Set gtmtypes("callin_entry_list",3,"name")="callin_entry_list.label_ref.len" + Set gtmtypes("callin_entry_list",3,"off")=4 + Set gtmtypes("callin_entry_list",3,"len")=4 + Set gtmtypes("callin_entry_list",3,"type")="int" + Set gtmtypfldindx("callin_entry_list","label_ref.len")=3 + Set gtmtypes("callin_entry_list",4,"name")="callin_entry_list.label_ref.addr" + Set gtmtypes("callin_entry_list",4,"off")=8 + Set gtmtypes("callin_entry_list",4,"len")=4 + Set gtmtypes("callin_entry_list",4,"type")="addr" + Set gtmtypfldindx("callin_entry_list","label_ref.addr")=4 + Set gtmtypes("callin_entry_list",5,"name")="callin_entry_list.call_name" + Set gtmtypes("callin_entry_list",5,"off")=12 + Set gtmtypes("callin_entry_list",5,"len")=12 + Set gtmtypes("callin_entry_list",5,"type")="mstr" + Set gtmtypfldindx("callin_entry_list","call_name")=5 + Set gtmtypes("callin_entry_list",6,"name")="callin_entry_list.call_name.char_len" + Set gtmtypes("callin_entry_list",6,"off")=12 + Set gtmtypes("callin_entry_list",6,"len")=4 + Set gtmtypes("callin_entry_list",6,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","call_name.char_len")=6 + Set gtmtypes("callin_entry_list",7,"name")="callin_entry_list.call_name.len" + Set gtmtypes("callin_entry_list",7,"off")=16 + Set gtmtypes("callin_entry_list",7,"len")=4 + Set gtmtypes("callin_entry_list",7,"type")="int" + Set gtmtypfldindx("callin_entry_list","call_name.len")=7 + Set gtmtypes("callin_entry_list",8,"name")="callin_entry_list.call_name.addr" + Set gtmtypes("callin_entry_list",8,"off")=20 + Set gtmtypes("callin_entry_list",8,"len")=4 + Set gtmtypes("callin_entry_list",8,"type")="addr" + Set gtmtypfldindx("callin_entry_list","call_name.addr")=8 + Set gtmtypes("callin_entry_list",9,"name")="callin_entry_list.input_mask" + Set gtmtypes("callin_entry_list",9,"off")=24 + Set gtmtypes("callin_entry_list",9,"len")=4 + Set gtmtypes("callin_entry_list",9,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","input_mask")=9 + Set gtmtypes("callin_entry_list",10,"name")="callin_entry_list.output_mask" + Set gtmtypes("callin_entry_list",10,"off")=28 + Set gtmtypes("callin_entry_list",10,"len")=4 + Set gtmtypes("callin_entry_list",10,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","output_mask")=10 + Set gtmtypes("callin_entry_list",11,"name")="callin_entry_list.argcnt" + Set gtmtypes("callin_entry_list",11,"off")=32 + Set gtmtypes("callin_entry_list",11,"len")=2 + Set gtmtypes("callin_entry_list",11,"type")="unsigned-short" + Set gtmtypfldindx("callin_entry_list","argcnt")=11 + Set gtmtypes("callin_entry_list",12,"name")="callin_entry_list.return_type" + Set gtmtypes("callin_entry_list",12,"off")=36 + Set gtmtypes("callin_entry_list",12,"len")=4 + Set gtmtypes("callin_entry_list",12,"type")="int" + Set gtmtypfldindx("callin_entry_list","return_type")=12 + Set gtmtypes("callin_entry_list",13,"name")="callin_entry_list.parms" + Set gtmtypes("callin_entry_list",13,"off")=40 + Set gtmtypes("callin_entry_list",13,"len")=4 + Set gtmtypes("callin_entry_list",13,"type")="addr" + Set gtmtypfldindx("callin_entry_list","parms")=13 + Set gtmtypes("callin_entry_list",14,"name")="callin_entry_list.next_entry" + Set gtmtypes("callin_entry_list",14,"off")=44 + Set gtmtypes("callin_entry_list",14,"len")=4 + Set gtmtypes("callin_entry_list",14,"type")="addr" + Set gtmtypfldindx("callin_entry_list","next_entry")=14 + ; + Set gtmtypes("casemap_t")="struct" + Set gtmtypes("casemap_t",0)=3 + Set gtmtypes("casemap_t","len")=12 + Set gtmtypes("casemap_t",1,"name")="casemap_t.code" + Set gtmtypes("casemap_t",1,"off")=0 + Set gtmtypes("casemap_t",1,"len")=4 + Set gtmtypes("casemap_t",1,"type")="addr" + Set gtmtypfldindx("casemap_t","code")=1 + Set gtmtypes("casemap_t",2,"name")="casemap_t.m" + Set gtmtypes("casemap_t",2,"off")=4 + Set gtmtypes("casemap_t",2,"len")=4 + Set gtmtypes("casemap_t",2,"type")="void" + Set gtmtypfldindx("casemap_t","m")=2 + Set gtmtypes("casemap_t",3,"name")="casemap_t.u" + Set gtmtypes("casemap_t",3,"off")=8 + Set gtmtypes("casemap_t",3,"len")=4 + Set gtmtypes("casemap_t",3,"type")="int32_t" + Set gtmtypfldindx("casemap_t","u")=3 + ; + Set gtmtypes("ci_name_descriptor")="struct" + Set gtmtypes("ci_name_descriptor",0)=2 + Set gtmtypes("ci_name_descriptor","len")=12 + Set gtmtypes("ci_name_descriptor",1,"name")="ci_name_descriptor.rtn_name" + Set gtmtypes("ci_name_descriptor",1,"off")=0 + Set gtmtypes("ci_name_descriptor",1,"len")=8 + Set gtmtypes("ci_name_descriptor",1,"type")="gtm_string_t" + Set gtmtypfldindx("ci_name_descriptor","rtn_name")=1 + Set gtmtypes("ci_name_descriptor",2,"name")="ci_name_descriptor.handle" + Set gtmtypes("ci_name_descriptor",2,"off")=8 + Set gtmtypes("ci_name_descriptor",2,"len")=4 + Set gtmtypes("ci_name_descriptor",2,"type")="addr" + Set gtmtypfldindx("ci_name_descriptor","handle")=2 + ; + Set gtmtypes("clb_stat")="struct" + Set gtmtypes("clb_stat",0)=10 + Set gtmtypes("clb_stat","len")=32 + Set gtmtypes("clb_stat",1,"name")="clb_stat.read" + Set gtmtypes("clb_stat",1,"off")=0 + Set gtmtypes("clb_stat",1,"len")=16 + Set gtmtypes("clb_stat",1,"type")="struct" + Set gtmtypfldindx("clb_stat","read")=1 + Set gtmtypes("clb_stat",2,"name")="clb_stat.read.msgs" + Set gtmtypes("clb_stat",2,"off")=0 + Set gtmtypes("clb_stat",2,"len")=4 + Set gtmtypes("clb_stat",2,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.msgs")=2 + Set gtmtypes("clb_stat",3,"name")="clb_stat.read.errors" + Set gtmtypes("clb_stat",3,"off")=4 + Set gtmtypes("clb_stat",3,"len")=4 + Set gtmtypes("clb_stat",3,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.errors")=3 + Set gtmtypes("clb_stat",4,"name")="clb_stat.read.bytes" + Set gtmtypes("clb_stat",4,"off")=8 + Set gtmtypes("clb_stat",4,"len")=4 + Set gtmtypes("clb_stat",4,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.bytes")=4 + Set gtmtypes("clb_stat",5,"name")="clb_stat.read.last_error" + Set gtmtypes("clb_stat",5,"off")=12 + Set gtmtypes("clb_stat",5,"len")=4 + Set gtmtypes("clb_stat",5,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.last_error")=5 + Set gtmtypes("clb_stat",6,"name")="clb_stat.write" + Set gtmtypes("clb_stat",6,"off")=16 + Set gtmtypes("clb_stat",6,"len")=16 + Set gtmtypes("clb_stat",6,"type")="struct" + Set gtmtypfldindx("clb_stat","write")=6 + Set gtmtypes("clb_stat",7,"name")="clb_stat.write.msgs" + Set gtmtypes("clb_stat",7,"off")=16 + Set gtmtypes("clb_stat",7,"len")=4 + Set gtmtypes("clb_stat",7,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.msgs")=7 + Set gtmtypes("clb_stat",8,"name")="clb_stat.write.errors" + Set gtmtypes("clb_stat",8,"off")=20 + Set gtmtypes("clb_stat",8,"len")=4 + Set gtmtypes("clb_stat",8,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.errors")=8 + Set gtmtypes("clb_stat",9,"name")="clb_stat.write.bytes" + Set gtmtypes("clb_stat",9,"off")=24 + Set gtmtypes("clb_stat",9,"len")=4 + Set gtmtypes("clb_stat",9,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.bytes")=9 + Set gtmtypes("clb_stat",10,"name")="clb_stat.write.last_error" + Set gtmtypes("clb_stat",10,"off")=28 + Set gtmtypes("clb_stat",10,"len")=4 + Set gtmtypes("clb_stat",10,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.last_error")=10 + ; + Set gtmtypes("clear_confirm")="struct" + Set gtmtypes("clear_confirm",0)=2 + Set gtmtypes("clear_confirm","len")=2 + Set gtmtypes("clear_confirm",1,"name")="clear_confirm.code" + Set gtmtypes("clear_confirm",1,"off")=0 + Set gtmtypes("clear_confirm",1,"len")=1 + Set gtmtypes("clear_confirm",1,"type")="char" + Set gtmtypfldindx("clear_confirm","code")=1 + Set gtmtypes("clear_confirm",2,"name")="clear_confirm.clear" + Set gtmtypes("clear_confirm",2,"off")=1 + Set gtmtypes("clear_confirm",2,"len")=1 + Set gtmtypes("clear_confirm",2,"type")="char" + Set gtmtypfldindx("clear_confirm","clear")=2 + ; + Set gtmtypes("clear_reply")="struct" + Set gtmtypes("clear_reply",0)=5 + Set gtmtypes("clear_reply","len")=268 + Set gtmtypes("clear_reply",1,"name")="clear_reply.code" + Set gtmtypes("clear_reply",1,"off")=0 + Set gtmtypes("clear_reply",1,"len")=1 + Set gtmtypes("clear_reply",1,"type")="char" + Set gtmtypfldindx("clear_reply","code")=1 + Set gtmtypes("clear_reply",2,"name")="clear_reply.filler" + Set gtmtypes("clear_reply",2,"off")=1 + Set gtmtypes("clear_reply",2,"len")=3 + Set gtmtypes("clear_reply",2,"type")="char" + Set gtmtypfldindx("clear_reply","filler")=2 + Set gtmtypes("clear_reply",3,"name")="clear_reply.status" + Set gtmtypes("clear_reply",3,"off")=4 + Set gtmtypes("clear_reply",3,"len")=4 + Set gtmtypes("clear_reply",3,"type")="int" + Set gtmtypfldindx("clear_reply","status")=3 + Set gtmtypes("clear_reply",4,"name")="clear_reply.locknamelength" + Set gtmtypes("clear_reply",4,"off")=8 + Set gtmtypes("clear_reply",4,"len")=4 + Set gtmtypes("clear_reply",4,"type")="int" + Set gtmtypfldindx("clear_reply","locknamelength")=4 + Set gtmtypes("clear_reply",5,"name")="clear_reply.lockname" + Set gtmtypes("clear_reply",5,"off")=12 + Set gtmtypes("clear_reply",5,"len")=256 + Set gtmtypes("clear_reply",5,"type")="char" + Set gtmtypfldindx("clear_reply","lockname")=5 + ; + Set gtmtypes("clear_request")="struct" + Set gtmtypes("clear_request",0)=7 + Set gtmtypes("clear_request","len")=44 + Set gtmtypes("clear_request",1,"name")="clear_request.code" + Set gtmtypes("clear_request",1,"off")=0 + Set gtmtypes("clear_request",1,"len")=1 + Set gtmtypes("clear_request",1,"type")="char" + Set gtmtypfldindx("clear_request","code")=1 + Set gtmtypes("clear_request",2,"name")="clear_request.rnum" + Set gtmtypes("clear_request",2,"off")=1 + Set gtmtypes("clear_request",2,"len")=1 + Set gtmtypes("clear_request",2,"type")="char" + Set gtmtypfldindx("clear_request","rnum")=2 + Set gtmtypes("clear_request",3,"name")="clear_request.all" + Set gtmtypes("clear_request",3,"off")=2 + Set gtmtypes("clear_request",3,"len")=1 + Set gtmtypes("clear_request",3,"type")="char" + Set gtmtypfldindx("clear_request","all")=3 + Set gtmtypes("clear_request",4,"name")="clear_request.interactive" + Set gtmtypes("clear_request",4,"off")=3 + Set gtmtypes("clear_request",4,"len")=1 + Set gtmtypes("clear_request",4,"type")="char" + Set gtmtypfldindx("clear_request","interactive")=4 + Set gtmtypes("clear_request",5,"name")="clear_request.pid" + Set gtmtypes("clear_request",5,"off")=4 + Set gtmtypes("clear_request",5,"len")=4 + Set gtmtypes("clear_request",5,"type")="int" + Set gtmtypfldindx("clear_request","pid")=5 + Set gtmtypes("clear_request",6,"name")="clear_request.nodelength" + Set gtmtypes("clear_request",6,"off")=8 + Set gtmtypes("clear_request",6,"len")=1 + Set gtmtypes("clear_request",6,"type")="char" + Set gtmtypfldindx("clear_request","nodelength")=6 + Set gtmtypes("clear_request",7,"name")="clear_request.node" + Set gtmtypes("clear_request",7,"off")=9 + Set gtmtypes("clear_request",7,"len")=32 + Set gtmtypes("clear_request",7,"type")="char" + Set gtmtypfldindx("clear_request","node")=7 + ; + Set gtmtypes("cm_lckblklck")="struct" + Set gtmtypes("cm_lckblklck",0)=8 + Set gtmtypes("cm_lckblklck","len")=28 + Set gtmtypes("cm_lckblklck",1,"name")="cm_lckblklck.next" + Set gtmtypes("cm_lckblklck",1,"off")=0 + Set gtmtypes("cm_lckblklck",1,"len")=4 + Set gtmtypes("cm_lckblklck",1,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","next")=1 + Set gtmtypes("cm_lckblklck",2,"name")="cm_lckblklck.last" + Set gtmtypes("cm_lckblklck",2,"off")=4 + Set gtmtypes("cm_lckblklck",2,"len")=4 + Set gtmtypes("cm_lckblklck",2,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","last")=2 + Set gtmtypes("cm_lckblklck",3,"name")="cm_lckblklck.node" + Set gtmtypes("cm_lckblklck",3,"off")=8 + Set gtmtypes("cm_lckblklck",3,"len")=4 + Set gtmtypes("cm_lckblklck",3,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","node")=3 + Set gtmtypes("cm_lckblklck",4,"name")="cm_lckblklck.prc" + Set gtmtypes("cm_lckblklck",4,"off")=12 + Set gtmtypes("cm_lckblklck",4,"len")=4 + Set gtmtypes("cm_lckblklck",4,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","prc")=4 + Set gtmtypes("cm_lckblklck",5,"name")="cm_lckblklck.sequence" + Set gtmtypes("cm_lckblklck",5,"off")=16 + Set gtmtypes("cm_lckblklck",5,"len")=4 + Set gtmtypes("cm_lckblklck",5,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblklck","sequence")=5 + Set gtmtypes("cm_lckblklck",6,"name")="cm_lckblklck.blktime" + Set gtmtypes("cm_lckblklck",6,"off")=20 + Set gtmtypes("cm_lckblklck",6,"len")=8 + Set gtmtypes("cm_lckblklck",6,"type")="ABS_TIME" + Set gtmtypfldindx("cm_lckblklck","blktime")=6 + Set gtmtypes("cm_lckblklck",7,"name")="cm_lckblklck.blktime.at_sec" + Set gtmtypes("cm_lckblklck",7,"off")=20 + Set gtmtypes("cm_lckblklck",7,"len")=4 + Set gtmtypes("cm_lckblklck",7,"type")="long" + Set gtmtypfldindx("cm_lckblklck","blktime.at_sec")=7 + Set gtmtypes("cm_lckblklck",8,"name")="cm_lckblklck.blktime.at_usec" + Set gtmtypes("cm_lckblklck",8,"off")=24 + Set gtmtypes("cm_lckblklck",8,"len")=4 + Set gtmtypes("cm_lckblklck",8,"type")="long" + Set gtmtypfldindx("cm_lckblklck","blktime.at_usec")=8 + ; + Set gtmtypes("cm_lckblkprc")="struct" + Set gtmtypes("cm_lckblkprc",0)=5 + Set gtmtypes("cm_lckblkprc","len")=20 + Set gtmtypes("cm_lckblkprc",1,"name")="cm_lckblkprc.next" + Set gtmtypes("cm_lckblkprc",1,"off")=0 + Set gtmtypes("cm_lckblkprc",1,"len")=4 + Set gtmtypes("cm_lckblkprc",1,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","next")=1 + Set gtmtypes("cm_lckblkprc",2,"name")="cm_lckblkprc.last" + Set gtmtypes("cm_lckblkprc",2,"off")=4 + Set gtmtypes("cm_lckblkprc",2,"len")=4 + Set gtmtypes("cm_lckblkprc",2,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","last")=2 + Set gtmtypes("cm_lckblkprc",3,"name")="cm_lckblkprc.user" + Set gtmtypes("cm_lckblkprc",3,"off")=8 + Set gtmtypes("cm_lckblkprc",3,"len")=4 + Set gtmtypes("cm_lckblkprc",3,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","user")=3 + Set gtmtypes("cm_lckblkprc",4,"name")="cm_lckblkprc.blocked" + Set gtmtypes("cm_lckblkprc",4,"off")=12 + Set gtmtypes("cm_lckblkprc",4,"len")=4 + Set gtmtypes("cm_lckblkprc",4,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","blocked")=4 + Set gtmtypes("cm_lckblkprc",5,"name")="cm_lckblkprc.blk_sequence" + Set gtmtypes("cm_lckblkprc",5,"off")=16 + Set gtmtypes("cm_lckblkprc",5,"len")=4 + Set gtmtypes("cm_lckblkprc",5,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblkprc","blk_sequence")=5 + ; + Set gtmtypes("cm_lckblkreg")="struct" + Set gtmtypes("cm_lckblkreg",0)=4 + Set gtmtypes("cm_lckblkreg","len")=16 + Set gtmtypes("cm_lckblkreg",1,"name")="cm_lckblkreg.region" + Set gtmtypes("cm_lckblkreg",1,"off")=0 + Set gtmtypes("cm_lckblkreg",1,"len")=4 + Set gtmtypes("cm_lckblkreg",1,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","region")=1 + Set gtmtypes("cm_lckblkreg",2,"name")="cm_lckblkreg.next" + Set gtmtypes("cm_lckblkreg",2,"off")=4 + Set gtmtypes("cm_lckblkreg",2,"len")=4 + Set gtmtypes("cm_lckblkreg",2,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","next")=2 + Set gtmtypes("cm_lckblkreg",3,"name")="cm_lckblkreg.lock" + Set gtmtypes("cm_lckblkreg",3,"off")=8 + Set gtmtypes("cm_lckblkreg",3,"len")=4 + Set gtmtypes("cm_lckblkreg",3,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","lock")=3 + Set gtmtypes("cm_lckblkreg",4,"name")="cm_lckblkreg.pass" + Set gtmtypes("cm_lckblkreg",4,"off")=12 + Set gtmtypes("cm_lckblkreg",4,"len")=4 + Set gtmtypes("cm_lckblkreg",4,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblkreg","pass")=4 + ; + Set gtmtypes("cm_lk_response")="struct" + Set gtmtypes("cm_lk_response",0)=2 + Set gtmtypes("cm_lk_response","len")=8 + Set gtmtypes("cm_lk_response",1,"name")="cm_lk_response.next" + Set gtmtypes("cm_lk_response",1,"off")=0 + Set gtmtypes("cm_lk_response",1,"len")=4 + Set gtmtypes("cm_lk_response",1,"type")="addr" + Set gtmtypfldindx("cm_lk_response","next")=1 + Set gtmtypes("cm_lk_response",2,"name")="cm_lk_response.response" + Set gtmtypes("cm_lk_response",2,"off")=4 + Set gtmtypes("cm_lk_response",2,"len")=4 + Set gtmtypes("cm_lk_response",2,"type")="addr" + Set gtmtypfldindx("cm_lk_response","response")=2 + ; + Set gtmtypes("cm_region_head")="struct" + Set gtmtypes("cm_region_head",0)=11 + Set gtmtypes("cm_region_head","len")=44 + Set gtmtypes("cm_region_head",1,"name")="cm_region_head.head" + Set gtmtypes("cm_region_head",1,"off")=0 + Set gtmtypes("cm_region_head",1,"len")=16 + Set gtmtypes("cm_region_head",1,"type")="que_head" + Set gtmtypfldindx("cm_region_head","head")=1 + Set gtmtypes("cm_region_head",2,"name")="cm_region_head.head.fl" + Set gtmtypes("cm_region_head",2,"off")=0 + Set gtmtypes("cm_region_head",2,"len")=4 + Set gtmtypes("cm_region_head",2,"type")="intptr_t" + Set gtmtypfldindx("cm_region_head","head.fl")=2 + Set gtmtypes("cm_region_head",3,"name")="cm_region_head.head.bl" + Set gtmtypes("cm_region_head",3,"off")=4 + Set gtmtypes("cm_region_head",3,"len")=4 + Set gtmtypes("cm_region_head",3,"type")="intptr_t" + Set gtmtypfldindx("cm_region_head","head.bl")=3 + Set gtmtypes("cm_region_head",4,"name")="cm_region_head.head.latch" + Set gtmtypes("cm_region_head",4,"off")=8 + Set gtmtypes("cm_region_head",4,"len")=8 + Set gtmtypes("cm_region_head",4,"type")="global_latch_t" + Set gtmtypfldindx("cm_region_head","head.latch")=4 + Set gtmtypes("cm_region_head",5,"name")="cm_region_head.next" + Set gtmtypes("cm_region_head",5,"off")=16 + Set gtmtypes("cm_region_head",5,"len")=4 + Set gtmtypes("cm_region_head",5,"type")="addr" + Set gtmtypfldindx("cm_region_head","next")=5 + Set gtmtypes("cm_region_head",6,"name")="cm_region_head.last" + Set gtmtypes("cm_region_head",6,"off")=20 + Set gtmtypes("cm_region_head",6,"len")=4 + Set gtmtypes("cm_region_head",6,"type")="addr" + Set gtmtypfldindx("cm_region_head","last")=6 + Set gtmtypes("cm_region_head",7,"name")="cm_region_head.connect_ptr" + Set gtmtypes("cm_region_head",7,"off")=24 + Set gtmtypes("cm_region_head",7,"len")=4 + Set gtmtypes("cm_region_head",7,"type")="addr" + Set gtmtypfldindx("cm_region_head","connect_ptr")=7 + Set gtmtypes("cm_region_head",8,"name")="cm_region_head.reg" + Set gtmtypes("cm_region_head",8,"off")=28 + Set gtmtypes("cm_region_head",8,"len")=4 + Set gtmtypes("cm_region_head",8,"type")="addr" + Set gtmtypfldindx("cm_region_head","reg")=8 + Set gtmtypes("cm_region_head",9,"name")="cm_region_head.refcnt" + Set gtmtypes("cm_region_head",9,"off")=32 + Set gtmtypes("cm_region_head",9,"len")=4 + Set gtmtypes("cm_region_head",9,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_head","refcnt")=9 + Set gtmtypes("cm_region_head",10,"name")="cm_region_head.wakeup" + Set gtmtypes("cm_region_head",10,"off")=36 + Set gtmtypes("cm_region_head",10,"len")=4 + Set gtmtypes("cm_region_head",10,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_head","wakeup")=10 + Set gtmtypes("cm_region_head",11,"name")="cm_region_head.reg_hash" + Set gtmtypes("cm_region_head",11,"off")=40 + Set gtmtypes("cm_region_head",11,"len")=4 + Set gtmtypes("cm_region_head",11,"type")="addr" + Set gtmtypfldindx("cm_region_head","reg_hash")=11 + ; + Set gtmtypes("cm_region_list")="struct" + Set gtmtypes("cm_region_list",0)=14 + Set gtmtypes("cm_region_list","len")=40 + Set gtmtypes("cm_region_list",1,"name")="cm_region_list.regque" + Set gtmtypes("cm_region_list",1,"off")=0 + Set gtmtypes("cm_region_list",1,"len")=8 + Set gtmtypes("cm_region_list",1,"type")="que_ent" + Set gtmtypfldindx("cm_region_list","regque")=1 + Set gtmtypes("cm_region_list",2,"name")="cm_region_list.regque.fl" + Set gtmtypes("cm_region_list",2,"off")=0 + Set gtmtypes("cm_region_list",2,"len")=4 + Set gtmtypes("cm_region_list",2,"type")="intptr_t" + Set gtmtypfldindx("cm_region_list","regque.fl")=2 + Set gtmtypes("cm_region_list",3,"name")="cm_region_list.regque.bl" + Set gtmtypes("cm_region_list",3,"off")=4 + Set gtmtypes("cm_region_list",3,"len")=4 + Set gtmtypes("cm_region_list",3,"type")="intptr_t" + Set gtmtypfldindx("cm_region_list","regque.bl")=3 + Set gtmtypes("cm_region_list",4,"name")="cm_region_list.next" + Set gtmtypes("cm_region_list",4,"off")=8 + Set gtmtypes("cm_region_list",4,"len")=4 + Set gtmtypes("cm_region_list",4,"type")="addr" + Set gtmtypfldindx("cm_region_list","next")=4 + Set gtmtypes("cm_region_list",5,"name")="cm_region_list.regnum" + Set gtmtypes("cm_region_list",5,"off")=12 + Set gtmtypes("cm_region_list",5,"len")=1 + Set gtmtypes("cm_region_list",5,"type")="unsigned-char" + Set gtmtypfldindx("cm_region_list","regnum")=5 + Set gtmtypes("cm_region_list",6,"name")="cm_region_list.oper" + Set gtmtypes("cm_region_list",6,"off")=13 + Set gtmtypes("cm_region_list",6,"len")=1 + Set gtmtypes("cm_region_list",6,"type")="unsigned-char" + Set gtmtypfldindx("cm_region_list","oper")=6 + Set gtmtypes("cm_region_list",7,"name")="cm_region_list.lks_this_cmd" + Set gtmtypes("cm_region_list",7,"off")=14 + Set gtmtypes("cm_region_list",7,"len")=2 + Set gtmtypes("cm_region_list",7,"type")="unsigned-short" + Set gtmtypfldindx("cm_region_list","lks_this_cmd")=7 + Set gtmtypes("cm_region_list",8,"name")="cm_region_list.reqnode" + Set gtmtypes("cm_region_list",8,"off")=16 + Set gtmtypes("cm_region_list",8,"len")=1 + Set gtmtypes("cm_region_list",8,"type")="char" + Set gtmtypfldindx("cm_region_list","reqnode")=8 + Set gtmtypes("cm_region_list",9,"name")="cm_region_list.filler" + Set gtmtypes("cm_region_list",9,"off")=17 + Set gtmtypes("cm_region_list",9,"len")=3 + Set gtmtypes("cm_region_list",9,"type")="char" + Set gtmtypfldindx("cm_region_list","filler")=9 + Set gtmtypes("cm_region_list",10,"name")="cm_region_list.reghead" + Set gtmtypes("cm_region_list",10,"off")=20 + Set gtmtypes("cm_region_list",10,"len")=4 + Set gtmtypes("cm_region_list",10,"type")="addr" + Set gtmtypfldindx("cm_region_list","reghead")=10 + Set gtmtypes("cm_region_list",11,"name")="cm_region_list.cs" + Set gtmtypes("cm_region_list",11,"off")=24 + Set gtmtypes("cm_region_list",11,"len")=4 + Set gtmtypes("cm_region_list",11,"type")="addr" + Set gtmtypfldindx("cm_region_list","cs")=11 + Set gtmtypes("cm_region_list",12,"name")="cm_region_list.blkd" + Set gtmtypes("cm_region_list",12,"off")=28 + Set gtmtypes("cm_region_list",12,"len")=4 + Set gtmtypes("cm_region_list",12,"type")="addr" + Set gtmtypfldindx("cm_region_list","blkd")=12 + Set gtmtypes("cm_region_list",13,"name")="cm_region_list.lockdata" + Set gtmtypes("cm_region_list",13,"off")=32 + Set gtmtypes("cm_region_list",13,"len")=4 + Set gtmtypes("cm_region_list",13,"type")="addr" + Set gtmtypfldindx("cm_region_list","lockdata")=13 + Set gtmtypes("cm_region_list",14,"name")="cm_region_list.pini_addr" + Set gtmtypes("cm_region_list",14,"off")=36 + Set gtmtypes("cm_region_list",14,"len")=4 + Set gtmtypes("cm_region_list",14,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_list","pini_addr")=14 + ; + Set gtmtypes("coll_hdr")="struct" + Set gtmtypes("coll_hdr",0)=4 + Set gtmtypes("coll_hdr","len")=4 + Set gtmtypes("coll_hdr",1,"name")="coll_hdr.act" + Set gtmtypes("coll_hdr",1,"off")=0 + Set gtmtypes("coll_hdr",1,"len")=1 + Set gtmtypes("coll_hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","act")=1 + Set gtmtypes("coll_hdr",2,"name")="coll_hdr.nct" + Set gtmtypes("coll_hdr",2,"off")=1 + Set gtmtypes("coll_hdr",2,"len")=1 + Set gtmtypes("coll_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","nct")=2 + Set gtmtypes("coll_hdr",3,"name")="coll_hdr.ver" + Set gtmtypes("coll_hdr",3,"off")=2 + Set gtmtypes("coll_hdr",3,"len")=1 + Set gtmtypes("coll_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","ver")=3 + Set gtmtypes("coll_hdr",4,"name")="coll_hdr.pad" + Set gtmtypes("coll_hdr",4,"off")=3 + Set gtmtypes("coll_hdr",4,"len")=1 + Set gtmtypes("coll_hdr",4,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","pad")=4 + ; + Set gtmtypes("collseq")="struct" + Set gtmtypes("collseq",0)=7 + Set gtmtypes("collseq","len")=28 + Set gtmtypes("collseq",1,"name")="collseq.flink" + Set gtmtypes("collseq",1,"off")=0 + Set gtmtypes("collseq",1,"len")=4 + Set gtmtypes("collseq",1,"type")="addr" + Set gtmtypfldindx("collseq","flink")=1 + Set gtmtypes("collseq",2,"name")="collseq.act" + Set gtmtypes("collseq",2,"off")=4 + Set gtmtypes("collseq",2,"len")=4 + Set gtmtypes("collseq",2,"type")="int" + Set gtmtypfldindx("collseq","act")=2 + Set gtmtypes("collseq",3,"name")="collseq.xform" + Set gtmtypes("collseq",3,"off")=8 + Set gtmtypes("collseq",3,"len")=4 + Set gtmtypes("collseq",3,"type")="addr" + Set gtmtypfldindx("collseq","xform")=3 + Set gtmtypes("collseq",4,"name")="collseq.xback" + Set gtmtypes("collseq",4,"off")=12 + Set gtmtypes("collseq",4,"len")=4 + Set gtmtypes("collseq",4,"type")="addr" + Set gtmtypfldindx("collseq","xback")=4 + Set gtmtypes("collseq",5,"name")="collseq.version" + Set gtmtypes("collseq",5,"off")=16 + Set gtmtypes("collseq",5,"len")=4 + Set gtmtypes("collseq",5,"type")="addr" + Set gtmtypfldindx("collseq","version")=5 + Set gtmtypes("collseq",6,"name")="collseq.verify" + Set gtmtypes("collseq",6,"off")=20 + Set gtmtypes("collseq",6,"len")=4 + Set gtmtypes("collseq",6,"type")="addr" + Set gtmtypfldindx("collseq","verify")=6 + Set gtmtypes("collseq",7,"name")="collseq.argtype" + Set gtmtypes("collseq",7,"off")=24 + Set gtmtypes("collseq",7,"len")=4 + Set gtmtypes("collseq",7,"type")="int" + Set gtmtypfldindx("collseq","argtype")=7 + ; + Set gtmtypes("command_qualifier")="struct" + Set gtmtypes("command_qualifier",0)=29 + Set gtmtypes("command_qualifier","len")=132 + Set gtmtypes("command_qualifier",1,"name")="command_qualifier.qlf" + Set gtmtypes("command_qualifier",1,"off")=0 + Set gtmtypes("command_qualifier",1,"len")=4 + Set gtmtypes("command_qualifier",1,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","qlf")=1 + Set gtmtypes("command_qualifier",2,"name")="command_qualifier.object_file" + Set gtmtypes("command_qualifier",2,"off")=4 + Set gtmtypes("command_qualifier",2,"len")=32 + Set gtmtypes("command_qualifier",2,"type")="mval" + Set gtmtypfldindx("command_qualifier","object_file")=2 + Set gtmtypes("command_qualifier",3,"name")="command_qualifier.object_file.mvtype" + Set gtmtypes("command_qualifier",3,"off")=4 + Set gtmtypes("command_qualifier",3,"len")=2 + Set gtmtypes("command_qualifier",3,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","object_file.mvtype")=3 + Set gtmtypes("command_qualifier",4,"name")="command_qualifier.object_file.fnpc_indx" + Set gtmtypes("command_qualifier",4,"off")=7 + Set gtmtypes("command_qualifier",4,"len")=1 + Set gtmtypes("command_qualifier",4,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","object_file.fnpc_indx")=4 + Set gtmtypes("command_qualifier",5,"name")="command_qualifier.object_file.utfcgr_indx" + Set gtmtypes("command_qualifier",5,"off")=8 + Set gtmtypes("command_qualifier",5,"len")=4 + Set gtmtypes("command_qualifier",5,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","object_file.utfcgr_indx")=5 + Set gtmtypes("command_qualifier",6,"name")="command_qualifier.object_file.filler2" + Set gtmtypes("command_qualifier",6,"off")=12 + Set gtmtypes("command_qualifier",6,"len")=4 + Set gtmtypes("command_qualifier",6,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","object_file.filler2")=6 + Set gtmtypes("command_qualifier",7,"name")="command_qualifier.object_file.m" + Set gtmtypes("command_qualifier",7,"off")=16 + Set gtmtypes("command_qualifier",7,"len")=8 + Set gtmtypes("command_qualifier",7,"type")="int" + Set gtmtypfldindx("command_qualifier","object_file.m")=7 + Set gtmtypes("command_qualifier",7,"dim")=2 + Set gtmtypes("command_qualifier",8,"name")="command_qualifier.object_file.str" + Set gtmtypes("command_qualifier",8,"off")=24 + Set gtmtypes("command_qualifier",8,"len")=12 + Set gtmtypes("command_qualifier",8,"type")="mstr" + Set gtmtypfldindx("command_qualifier","object_file.str")=8 + Set gtmtypes("command_qualifier",9,"name")="command_qualifier.list_file" + Set gtmtypes("command_qualifier",9,"off")=36 + Set gtmtypes("command_qualifier",9,"len")=32 + Set gtmtypes("command_qualifier",9,"type")="mval" + Set gtmtypfldindx("command_qualifier","list_file")=9 + Set gtmtypes("command_qualifier",10,"name")="command_qualifier.list_file.mvtype" + Set gtmtypes("command_qualifier",10,"off")=36 + Set gtmtypes("command_qualifier",10,"len")=2 + Set gtmtypes("command_qualifier",10,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","list_file.mvtype")=10 + Set gtmtypes("command_qualifier",11,"name")="command_qualifier.list_file.fnpc_indx" + Set gtmtypes("command_qualifier",11,"off")=39 + Set gtmtypes("command_qualifier",11,"len")=1 + Set gtmtypes("command_qualifier",11,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","list_file.fnpc_indx")=11 + Set gtmtypes("command_qualifier",12,"name")="command_qualifier.list_file.utfcgr_indx" + Set gtmtypes("command_qualifier",12,"off")=40 + Set gtmtypes("command_qualifier",12,"len")=4 + Set gtmtypes("command_qualifier",12,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","list_file.utfcgr_indx")=12 + Set gtmtypes("command_qualifier",13,"name")="command_qualifier.list_file.filler2" + Set gtmtypes("command_qualifier",13,"off")=44 + Set gtmtypes("command_qualifier",13,"len")=4 + Set gtmtypes("command_qualifier",13,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","list_file.filler2")=13 + Set gtmtypes("command_qualifier",14,"name")="command_qualifier.list_file.m" + Set gtmtypes("command_qualifier",14,"off")=48 + Set gtmtypes("command_qualifier",14,"len")=8 + Set gtmtypes("command_qualifier",14,"type")="int" + Set gtmtypfldindx("command_qualifier","list_file.m")=14 + Set gtmtypes("command_qualifier",14,"dim")=2 + Set gtmtypes("command_qualifier",15,"name")="command_qualifier.list_file.str" + Set gtmtypes("command_qualifier",15,"off")=56 + Set gtmtypes("command_qualifier",15,"len")=12 + Set gtmtypes("command_qualifier",15,"type")="mstr" + Set gtmtypfldindx("command_qualifier","list_file.str")=15 + Set gtmtypes("command_qualifier",16,"name")="command_qualifier.ceprep_file" + Set gtmtypes("command_qualifier",16,"off")=68 + Set gtmtypes("command_qualifier",16,"len")=32 + Set gtmtypes("command_qualifier",16,"type")="mval" + Set gtmtypfldindx("command_qualifier","ceprep_file")=16 + Set gtmtypes("command_qualifier",17,"name")="command_qualifier.ceprep_file.mvtype" + Set gtmtypes("command_qualifier",17,"off")=68 + Set gtmtypes("command_qualifier",17,"len")=2 + Set gtmtypes("command_qualifier",17,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","ceprep_file.mvtype")=17 + Set gtmtypes("command_qualifier",18,"name")="command_qualifier.ceprep_file.fnpc_indx" + Set gtmtypes("command_qualifier",18,"off")=71 + Set gtmtypes("command_qualifier",18,"len")=1 + Set gtmtypes("command_qualifier",18,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","ceprep_file.fnpc_indx")=18 + Set gtmtypes("command_qualifier",19,"name")="command_qualifier.ceprep_file.utfcgr_indx" + Set gtmtypes("command_qualifier",19,"off")=72 + Set gtmtypes("command_qualifier",19,"len")=4 + Set gtmtypes("command_qualifier",19,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","ceprep_file.utfcgr_indx")=19 + Set gtmtypes("command_qualifier",20,"name")="command_qualifier.ceprep_file.filler2" + Set gtmtypes("command_qualifier",20,"off")=76 + Set gtmtypes("command_qualifier",20,"len")=4 + Set gtmtypes("command_qualifier",20,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","ceprep_file.filler2")=20 + Set gtmtypes("command_qualifier",21,"name")="command_qualifier.ceprep_file.m" + Set gtmtypes("command_qualifier",21,"off")=80 + Set gtmtypes("command_qualifier",21,"len")=8 + Set gtmtypes("command_qualifier",21,"type")="int" + Set gtmtypfldindx("command_qualifier","ceprep_file.m")=21 + Set gtmtypes("command_qualifier",21,"dim")=2 + Set gtmtypes("command_qualifier",22,"name")="command_qualifier.ceprep_file.str" + Set gtmtypes("command_qualifier",22,"off")=88 + Set gtmtypes("command_qualifier",22,"len")=12 + Set gtmtypes("command_qualifier",22,"type")="mstr" + Set gtmtypfldindx("command_qualifier","ceprep_file.str")=22 + Set gtmtypes("command_qualifier",23,"name")="command_qualifier.rtnname" + Set gtmtypes("command_qualifier",23,"off")=100 + Set gtmtypes("command_qualifier",23,"len")=32 + Set gtmtypes("command_qualifier",23,"type")="mval" + Set gtmtypfldindx("command_qualifier","rtnname")=23 + Set gtmtypes("command_qualifier",24,"name")="command_qualifier.rtnname.mvtype" + Set gtmtypes("command_qualifier",24,"off")=100 + Set gtmtypes("command_qualifier",24,"len")=2 + Set gtmtypes("command_qualifier",24,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","rtnname.mvtype")=24 + Set gtmtypes("command_qualifier",25,"name")="command_qualifier.rtnname.fnpc_indx" + Set gtmtypes("command_qualifier",25,"off")=103 + Set gtmtypes("command_qualifier",25,"len")=1 + Set gtmtypes("command_qualifier",25,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","rtnname.fnpc_indx")=25 + Set gtmtypes("command_qualifier",26,"name")="command_qualifier.rtnname.utfcgr_indx" + Set gtmtypes("command_qualifier",26,"off")=104 + Set gtmtypes("command_qualifier",26,"len")=4 + Set gtmtypes("command_qualifier",26,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","rtnname.utfcgr_indx")=26 + Set gtmtypes("command_qualifier",27,"name")="command_qualifier.rtnname.filler2" + Set gtmtypes("command_qualifier",27,"off")=108 + Set gtmtypes("command_qualifier",27,"len")=4 + Set gtmtypes("command_qualifier",27,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","rtnname.filler2")=27 + Set gtmtypes("command_qualifier",28,"name")="command_qualifier.rtnname.m" + Set gtmtypes("command_qualifier",28,"off")=112 + Set gtmtypes("command_qualifier",28,"len")=8 + Set gtmtypes("command_qualifier",28,"type")="int" + Set gtmtypfldindx("command_qualifier","rtnname.m")=28 + Set gtmtypes("command_qualifier",28,"dim")=2 + Set gtmtypes("command_qualifier",29,"name")="command_qualifier.rtnname.str" + Set gtmtypes("command_qualifier",29,"off")=120 + Set gtmtypes("command_qualifier",29,"len")=12 + Set gtmtypes("command_qualifier",29,"type")="mstr" + Set gtmtypfldindx("command_qualifier","rtnname.str")=29 + ; + Set gtmtypes("compswap_time_field")="struct" + Set gtmtypes("compswap_time_field",0)=7 + Set gtmtypes("compswap_time_field","len")=24 + Set gtmtypes("compswap_time_field",1,"name")="compswap_time_field.time_latch" + Set gtmtypes("compswap_time_field",1,"off")=0 + Set gtmtypes("compswap_time_field",1,"len")=8 + Set gtmtypes("compswap_time_field",1,"type")="global_latch_t" + Set gtmtypfldindx("compswap_time_field","time_latch")=1 + Set gtmtypes("compswap_time_field",2,"name")="compswap_time_field.time_latch.u" + Set gtmtypes("compswap_time_field",2,"off")=0 + Set gtmtypes("compswap_time_field",2,"len")=8 + Set gtmtypes("compswap_time_field",2,"type")="union" + Set gtmtypfldindx("compswap_time_field","time_latch.u")=2 + Set gtmtypes("compswap_time_field",3,"name")="compswap_time_field.time_latch.u.pid_imgcnt" + Set gtmtypes("compswap_time_field",3,"off")=0 + Set gtmtypes("compswap_time_field",3,"len")=8 + Set gtmtypes("compswap_time_field",3,"type")="uint64_t" + Set gtmtypfldindx("compswap_time_field","time_latch.u.pid_imgcnt")=3 + Set gtmtypes("compswap_time_field",4,"name")="compswap_time_field.time_latch.u.parts" + Set gtmtypes("compswap_time_field",4,"off")=0 + Set gtmtypes("compswap_time_field",4,"len")=8 + Set gtmtypes("compswap_time_field",4,"type")="struct" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts")=4 + Set gtmtypes("compswap_time_field",5,"name")="compswap_time_field.time_latch.u.parts.latch_pid" + Set gtmtypes("compswap_time_field",5,"off")=0 + Set gtmtypes("compswap_time_field",5,"len")=4 + Set gtmtypes("compswap_time_field",5,"type")="int" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts.latch_pid")=5 + Set gtmtypes("compswap_time_field",6,"name")="compswap_time_field.time_latch.u.parts.latch_word" + Set gtmtypes("compswap_time_field",6,"off")=4 + Set gtmtypes("compswap_time_field",6,"len")=4 + Set gtmtypes("compswap_time_field",6,"type")="int" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts.latch_word")=6 + Set gtmtypes("compswap_time_field",7,"name")="compswap_time_field.hp_latch_space" + Set gtmtypes("compswap_time_field",7,"off")=8 + Set gtmtypes("compswap_time_field",7,"len")=16 + Set gtmtypes("compswap_time_field",7,"type")="int" + Set gtmtypfldindx("compswap_time_field","hp_latch_space")=7 + Set gtmtypes("compswap_time_field",7,"dim")=4 + ; + Set gtmtypes("condition_handler")="struct" + Set gtmtypes("condition_handler",0)=6 + Set gtmtypes("condition_handler","len")=176 + Set gtmtypes("condition_handler",1,"name")="condition_handler.save_active_ch" + Set gtmtypes("condition_handler",1,"off")=0 + Set gtmtypes("condition_handler",1,"len")=4 + Set gtmtypes("condition_handler",1,"type")="addr" + Set gtmtypfldindx("condition_handler","save_active_ch")=1 + Set gtmtypes("condition_handler",2,"name")="condition_handler.ch_active" + Set gtmtypes("condition_handler",2,"off")=4 + Set gtmtypes("condition_handler",2,"len")=4 + Set gtmtypes("condition_handler",2,"type")="boolean_t" + Set gtmtypfldindx("condition_handler","ch_active")=2 + Set gtmtypes("condition_handler",3,"name")="condition_handler.dollar_tlevel" + Set gtmtypes("condition_handler",3,"off")=8 + Set gtmtypes("condition_handler",3,"len")=4 + Set gtmtypes("condition_handler",3,"type")="unsigned-int" + Set gtmtypfldindx("condition_handler","dollar_tlevel")=3 + Set gtmtypes("condition_handler",4,"name")="condition_handler.ch" + Set gtmtypes("condition_handler",4,"off")=12 + Set gtmtypes("condition_handler",4,"len")=4 + Set gtmtypes("condition_handler",4,"type")="addr" + Set gtmtypfldindx("condition_handler","ch")=4 + Set gtmtypes("condition_handler",5,"name")="condition_handler.jmp" + Set gtmtypes("condition_handler",5,"off")=16 + Set gtmtypes("condition_handler",5,"len")=156 + Set gtmtypes("condition_handler",5,"type")="jmp_buf" + Set gtmtypfldindx("condition_handler","jmp")=5 + Set gtmtypes("condition_handler",6,"name")="condition_handler.intrpt_ok_state" + Set gtmtypes("condition_handler",6,"off")=172 + Set gtmtypes("condition_handler",6,"len")=4 + Set gtmtypes("condition_handler",6,"type")="int" + Set gtmtypfldindx("condition_handler","intrpt_ok_state")=6 + ; + Set gtmtypes("connection_struct")="struct" + Set gtmtypes("connection_struct",0)=26 + Set gtmtypes("connection_struct","len")=1096 + Set gtmtypes("connection_struct",1,"name")="connection_struct.qent" + Set gtmtypes("connection_struct",1,"off")=0 + Set gtmtypes("connection_struct",1,"len")=8 + Set gtmtypes("connection_struct",1,"type")="que_ent" + Set gtmtypfldindx("connection_struct","qent")=1 + Set gtmtypes("connection_struct",2,"name")="connection_struct.qent.fl" + Set gtmtypes("connection_struct",2,"off")=0 + Set gtmtypes("connection_struct",2,"len")=4 + Set gtmtypes("connection_struct",2,"type")="intptr_t" + Set gtmtypfldindx("connection_struct","qent.fl")=2 + Set gtmtypes("connection_struct",3,"name")="connection_struct.qent.bl" + Set gtmtypes("connection_struct",3,"off")=4 + Set gtmtypes("connection_struct",3,"len")=4 + Set gtmtypes("connection_struct",3,"type")="intptr_t" + Set gtmtypfldindx("connection_struct","qent.bl")=3 + Set gtmtypes("connection_struct",4,"name")="connection_struct.region_root" + Set gtmtypes("connection_struct",4,"off")=8 + Set gtmtypes("connection_struct",4,"len")=4 + Set gtmtypes("connection_struct",4,"type")="addr" + Set gtmtypfldindx("connection_struct","region_root")=4 + Set gtmtypes("connection_struct",5,"name")="connection_struct.current_region" + Set gtmtypes("connection_struct",5,"off")=12 + Set gtmtypes("connection_struct",5,"len")=4 + Set gtmtypes("connection_struct",5,"type")="addr" + Set gtmtypfldindx("connection_struct","current_region")=5 + Set gtmtypes("connection_struct",6,"name")="connection_struct.clb_ptr" + Set gtmtypes("connection_struct",6,"off")=16 + Set gtmtypes("connection_struct",6,"len")=4 + Set gtmtypes("connection_struct",6,"type")="addr" + Set gtmtypfldindx("connection_struct","clb_ptr")=6 + Set gtmtypes("connection_struct",7,"name")="connection_struct.state" + Set gtmtypes("connection_struct",7,"off")=20 + Set gtmtypes("connection_struct",7,"len")=1 + Set gtmtypes("connection_struct",7,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","state")=7 + Set gtmtypes("connection_struct",8,"name")="connection_struct.new_msg" + Set gtmtypes("connection_struct",8,"off")=21 + Set gtmtypes("connection_struct",8,"len")=1 + Set gtmtypes("connection_struct",8,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","new_msg")=8 + Set gtmtypes("connection_struct",9,"name")="connection_struct.maxregnum" + Set gtmtypes("connection_struct",9,"off")=22 + Set gtmtypes("connection_struct",9,"len")=1 + Set gtmtypes("connection_struct",9,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","maxregnum")=9 + Set gtmtypes("connection_struct",10,"name")="connection_struct.waiting_in_queue" + Set gtmtypes("connection_struct",10,"off")=23 + Set gtmtypes("connection_struct",10,"len")=1 + Set gtmtypes("connection_struct",10,"type")="char" + Set gtmtypfldindx("connection_struct","waiting_in_queue")=10 + Set gtmtypes("connection_struct",11,"name")="connection_struct.connect" + Set gtmtypes("connection_struct",11,"off")=24 + Set gtmtypes("connection_struct",11,"len")=8 + Set gtmtypes("connection_struct",11,"type")="struct" + Set gtmtypfldindx("connection_struct","connect")=11 + Set gtmtypes("connection_struct",12,"name")="connection_struct.lastact" + Set gtmtypes("connection_struct",12,"off")=32 + Set gtmtypes("connection_struct",12,"len")=4 + Set gtmtypes("connection_struct",12,"type")="time_t" + Set gtmtypfldindx("connection_struct","lastact")=12 + Set gtmtypes("connection_struct",13,"name")="connection_struct.stats" + Set gtmtypes("connection_struct",13,"off")=36 + Set gtmtypes("connection_struct",13,"len")=4 + Set gtmtypes("connection_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("connection_struct","stats")=13 + Set gtmtypes("connection_struct",14,"name")="connection_struct.procnum" + Set gtmtypes("connection_struct",14,"off")=40 + Set gtmtypes("connection_struct",14,"len")=2 + Set gtmtypes("connection_struct",14,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","procnum")=14 + Set gtmtypes("connection_struct",15,"name")="connection_struct.transnum" + Set gtmtypes("connection_struct",15,"off")=42 + Set gtmtypes("connection_struct",15,"len")=2 + Set gtmtypes("connection_struct",15,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","transnum")=15 + Set gtmtypes("connection_struct",16,"name")="connection_struct.lk_cancel" + Set gtmtypes("connection_struct",16,"off")=44 + Set gtmtypes("connection_struct",16,"len")=2 + Set gtmtypes("connection_struct",16,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","lk_cancel")=16 + Set gtmtypes("connection_struct",17,"name")="connection_struct.last_cancelled" + Set gtmtypes("connection_struct",17,"off")=46 + Set gtmtypes("connection_struct",17,"len")=2 + Set gtmtypes("connection_struct",17,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","last_cancelled")=17 + Set gtmtypes("connection_struct",18,"name")="connection_struct.int_cancel" + Set gtmtypes("connection_struct",18,"off")=48 + Set gtmtypes("connection_struct",18,"len")=2 + Set gtmtypes("connection_struct",18,"type")="struct" + Set gtmtypfldindx("connection_struct","int_cancel")=18 + Set gtmtypes("connection_struct",19,"name")="connection_struct.int_cancel.laflag" + Set gtmtypes("connection_struct",19,"off")=48 + Set gtmtypes("connection_struct",19,"len")=1 + Set gtmtypes("connection_struct",19,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","int_cancel.laflag")=19 + Set gtmtypes("connection_struct",20,"name")="connection_struct.int_cancel.transnum" + Set gtmtypes("connection_struct",20,"off")=49 + Set gtmtypes("connection_struct",20,"len")=1 + Set gtmtypes("connection_struct",20,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","int_cancel.transnum")=20 + Set gtmtypes("connection_struct",21,"name")="connection_struct.pvec" + Set gtmtypes("connection_struct",21,"off")=52 + Set gtmtypes("connection_struct",21,"len")=4 + Set gtmtypes("connection_struct",21,"type")="addr" + Set gtmtypfldindx("connection_struct","pvec")=21 + Set gtmtypes("connection_struct",22,"name")="connection_struct.query_is_queryget" + Set gtmtypes("connection_struct",22,"off")=56 + Set gtmtypes("connection_struct",22,"len")=4 + Set gtmtypes("connection_struct",22,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","query_is_queryget")=22 + Set gtmtypes("connection_struct",23,"name")="connection_struct.err_compat" + Set gtmtypes("connection_struct",23,"off")=60 + Set gtmtypes("connection_struct",23,"len")=4 + Set gtmtypes("connection_struct",23,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","err_compat")=23 + Set gtmtypes("connection_struct",24,"name")="connection_struct.cli_supp_allowexisting_stdnullcoll" + Set gtmtypes("connection_struct",24,"off")=64 + Set gtmtypes("connection_struct",24,"len")=4 + Set gtmtypes("connection_struct",24,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","cli_supp_allowexisting_stdnullcoll")=24 + Set gtmtypes("connection_struct",25,"name")="connection_struct.client_supports_long_names" + Set gtmtypes("connection_struct",25,"off")=68 + Set gtmtypes("connection_struct",25,"len")=4 + Set gtmtypes("connection_struct",25,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","client_supports_long_names")=25 + Set gtmtypes("connection_struct",26,"name")="connection_struct.region_array" + Set gtmtypes("connection_struct",26,"off")=72 + Set gtmtypes("connection_struct",26,"len")=1024 + Set gtmtypes("connection_struct",26,"type")="addr" + Set gtmtypfldindx("connection_struct","region_array")=26 + Set gtmtypes("connection_struct",26,"dim")=256 + ; + Set gtmtypes("crit_trace")="struct" + Set gtmtypes("crit_trace",0)=4 + Set gtmtypes("crit_trace","len")=20 + Set gtmtypes("crit_trace",1,"name")="crit_trace.call_from" + Set gtmtypes("crit_trace",1,"off")=0 + Set gtmtypes("crit_trace",1,"len")=4 + Set gtmtypes("crit_trace",1,"type")="caddr_t" + Set gtmtypfldindx("crit_trace","call_from")=1 + Set gtmtypes("crit_trace",2,"name")="crit_trace.crit_act" + Set gtmtypes("crit_trace",2,"off")=4 + Set gtmtypes("crit_trace",2,"len")=4 + Set gtmtypes("crit_trace",2,"type")="int" + Set gtmtypfldindx("crit_trace","crit_act")=2 + Set gtmtypes("crit_trace",3,"name")="crit_trace.epid" + Set gtmtypes("crit_trace",3,"off")=8 + Set gtmtypes("crit_trace",3,"len")=4 + Set gtmtypes("crit_trace",3,"type")="int" + Set gtmtypfldindx("crit_trace","epid")=3 + Set gtmtypes("crit_trace",4,"name")="crit_trace.curr_tn" + Set gtmtypes("crit_trace",4,"off")=12 + Set gtmtypes("crit_trace",4,"len")=8 + Set gtmtypes("crit_trace",4,"type")="uint64_t" + Set gtmtypfldindx("crit_trace","curr_tn")=4 + ; + Set gtmtypes("cvs_MD5_CTX")="struct" + Set gtmtypes("cvs_MD5_CTX",0)=3 + Set gtmtypes("cvs_MD5_CTX","len")=88 + Set gtmtypes("cvs_MD5_CTX",1,"name")="cvs_MD5_CTX.buf" + Set gtmtypes("cvs_MD5_CTX",1,"off")=0 + Set gtmtypes("cvs_MD5_CTX",1,"len")=16 + Set gtmtypes("cvs_MD5_CTX",1,"type")="unsigned-long" + Set gtmtypfldindx("cvs_MD5_CTX","buf")=1 + Set gtmtypes("cvs_MD5_CTX",1,"dim")=4 + Set gtmtypes("cvs_MD5_CTX",2,"name")="cvs_MD5_CTX.bits" + Set gtmtypes("cvs_MD5_CTX",2,"off")=16 + Set gtmtypes("cvs_MD5_CTX",2,"len")=8 + Set gtmtypes("cvs_MD5_CTX",2,"type")="unsigned-long" + Set gtmtypfldindx("cvs_MD5_CTX","bits")=2 + Set gtmtypes("cvs_MD5_CTX",2,"dim")=2 + Set gtmtypes("cvs_MD5_CTX",3,"name")="cvs_MD5_CTX.in" + Set gtmtypes("cvs_MD5_CTX",3,"off")=24 + Set gtmtypes("cvs_MD5_CTX",3,"len")=64 + Set gtmtypes("cvs_MD5_CTX",3,"type")="unsigned-char" + Set gtmtypfldindx("cvs_MD5_CTX","in")=3 + ; + Set gtmtypes("cw_set_element")="struct" + Set gtmtypes("cw_set_element",0)=33 + Set gtmtypes("cw_set_element","len")=144 + Set gtmtypes("cw_set_element",1,"name")="cw_set_element.tn" + Set gtmtypes("cw_set_element",1,"off")=0 + Set gtmtypes("cw_set_element",1,"len")=8 + Set gtmtypes("cw_set_element",1,"type")="uint64_t" + Set gtmtypfldindx("cw_set_element","tn")=1 + Set gtmtypes("cw_set_element",2,"name")="cw_set_element.old_block" + Set gtmtypes("cw_set_element",2,"off")=8 + Set gtmtypes("cw_set_element",2,"len")=4 + Set gtmtypes("cw_set_element",2,"type")="addr" + Set gtmtypfldindx("cw_set_element","old_block")=2 + Set gtmtypes("cw_set_element",3,"name")="cw_set_element.cr" + Set gtmtypes("cw_set_element",3,"off")=12 + Set gtmtypes("cw_set_element",3,"len")=4 + Set gtmtypes("cw_set_element",3,"type")="addr" + Set gtmtypfldindx("cw_set_element","cr")=3 + Set gtmtypes("cw_set_element",4,"name")="cw_set_element.next_cw_set" + Set gtmtypes("cw_set_element",4,"off")=16 + Set gtmtypes("cw_set_element",4,"len")=4 + Set gtmtypes("cw_set_element",4,"type")="addr" + Set gtmtypfldindx("cw_set_element","next_cw_set")=4 + Set gtmtypes("cw_set_element",5,"name")="cw_set_element.prev_cw_set" + Set gtmtypes("cw_set_element",5,"off")=20 + Set gtmtypes("cw_set_element",5,"len")=4 + Set gtmtypes("cw_set_element",5,"type")="addr" + Set gtmtypfldindx("cw_set_element","prev_cw_set")=5 + Set gtmtypes("cw_set_element",6,"name")="cw_set_element.high_tlevel" + Set gtmtypes("cw_set_element",6,"off")=24 + Set gtmtypes("cw_set_element",6,"len")=4 + Set gtmtypes("cw_set_element",6,"type")="addr" + Set gtmtypfldindx("cw_set_element","high_tlevel")=6 + Set gtmtypes("cw_set_element",7,"name")="cw_set_element.low_tlevel" + Set gtmtypes("cw_set_element",7,"off")=28 + Set gtmtypes("cw_set_element",7,"len")=4 + Set gtmtypes("cw_set_element",7,"type")="addr" + Set gtmtypfldindx("cw_set_element","low_tlevel")=7 + Set gtmtypes("cw_set_element",8,"name")="cw_set_element.jnl_freeaddr" + Set gtmtypes("cw_set_element",8,"off")=32 + Set gtmtypes("cw_set_element",8,"len")=4 + Set gtmtypes("cw_set_element",8,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","jnl_freeaddr")=8 + Set gtmtypes("cw_set_element",9,"name")="cw_set_element.write_type" + Set gtmtypes("cw_set_element",9,"off")=36 + Set gtmtypes("cw_set_element",9,"len")=4 + Set gtmtypes("cw_set_element",9,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","write_type")=9 + Set gtmtypes("cw_set_element",10,"name")="cw_set_element.recompute_list_head" + Set gtmtypes("cw_set_element",10,"off")=40 + Set gtmtypes("cw_set_element",10,"len")=4 + Set gtmtypes("cw_set_element",10,"type")="addr" + Set gtmtypfldindx("cw_set_element","recompute_list_head")=10 + Set gtmtypes("cw_set_element",11,"name")="cw_set_element.recompute_list_tail" + Set gtmtypes("cw_set_element",11,"off")=44 + Set gtmtypes("cw_set_element",11,"len")=4 + Set gtmtypes("cw_set_element",11,"type")="addr" + Set gtmtypfldindx("cw_set_element","recompute_list_tail")=11 + Set gtmtypes("cw_set_element",12,"name")="cw_set_element.mode" + Set gtmtypes("cw_set_element",12,"off")=48 + Set gtmtypes("cw_set_element",12,"len")=4 + Set gtmtypes("cw_set_element",12,"type")="int" + Set gtmtypfldindx("cw_set_element","mode")=12 + Set gtmtypes("cw_set_element",13,"name")="cw_set_element.blk" + Set gtmtypes("cw_set_element",13,"off")=52 + Set gtmtypes("cw_set_element",13,"len")=4 + Set gtmtypes("cw_set_element",13,"type")="int" + Set gtmtypfldindx("cw_set_element","blk")=13 + Set gtmtypes("cw_set_element",14,"name")="cw_set_element.upd_addr" + Set gtmtypes("cw_set_element",14,"off")=56 + Set gtmtypes("cw_set_element",14,"len")=4 + Set gtmtypes("cw_set_element",14,"type")="addr" + Set gtmtypfldindx("cw_set_element","upd_addr")=14 + Set gtmtypes("cw_set_element",15,"name")="cw_set_element.new_buff" + Set gtmtypes("cw_set_element",15,"off")=60 + Set gtmtypes("cw_set_element",15,"len")=4 + Set gtmtypes("cw_set_element",15,"type")="addr" + Set gtmtypfldindx("cw_set_element","new_buff")=15 + Set gtmtypes("cw_set_element",16,"name")="cw_set_element.blk_target" + Set gtmtypes("cw_set_element",16,"off")=64 + Set gtmtypes("cw_set_element",16,"len")=4 + Set gtmtypes("cw_set_element",16,"type")="addr" + Set gtmtypfldindx("cw_set_element","blk_target")=16 + Set gtmtypes("cw_set_element",17,"name")="cw_set_element.cycle" + Set gtmtypes("cw_set_element",17,"off")=68 + Set gtmtypes("cw_set_element",17,"len")=4 + Set gtmtypes("cw_set_element",17,"type")="int" + Set gtmtypfldindx("cw_set_element","cycle")=17 + Set gtmtypes("cw_set_element",18,"name")="cw_set_element.first_off" + Set gtmtypes("cw_set_element",18,"off")=72 + Set gtmtypes("cw_set_element",18,"len")=4 + Set gtmtypes("cw_set_element",18,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","first_off")=18 + Set gtmtypes("cw_set_element",19,"name")="cw_set_element.ins_off" + Set gtmtypes("cw_set_element",19,"off")=76 + Set gtmtypes("cw_set_element",19,"len")=4 + Set gtmtypes("cw_set_element",19,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","ins_off")=19 + Set gtmtypes("cw_set_element",20,"name")="cw_set_element.next_off" + Set gtmtypes("cw_set_element",20,"off")=80 + Set gtmtypes("cw_set_element",20,"len")=4 + Set gtmtypes("cw_set_element",20,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","next_off")=20 + Set gtmtypes("cw_set_element",21,"name")="cw_set_element.index" + Set gtmtypes("cw_set_element",21,"off")=84 + Set gtmtypes("cw_set_element",21,"len")=4 + Set gtmtypes("cw_set_element",21,"type")="int" + Set gtmtypfldindx("cw_set_element","index")=21 + Set gtmtypes("cw_set_element",22,"name")="cw_set_element.reference_cnt" + Set gtmtypes("cw_set_element",22,"off")=88 + Set gtmtypes("cw_set_element",22,"len")=4 + Set gtmtypes("cw_set_element",22,"type")="int" + Set gtmtypfldindx("cw_set_element","reference_cnt")=22 + Set gtmtypes("cw_set_element",23,"name")="cw_set_element.level" + Set gtmtypes("cw_set_element",23,"off")=92 + Set gtmtypes("cw_set_element",23,"len")=4 + Set gtmtypes("cw_set_element",23,"type")="int" + Set gtmtypfldindx("cw_set_element","level")=23 + Set gtmtypes("cw_set_element",24,"name")="cw_set_element.done" + Set gtmtypes("cw_set_element",24,"off")=96 + Set gtmtypes("cw_set_element",24,"len")=4 + Set gtmtypes("cw_set_element",24,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","done")=24 + Set gtmtypes("cw_set_element",25,"name")="cw_set_element.first_copy" + Set gtmtypes("cw_set_element",25,"off")=100 + Set gtmtypes("cw_set_element",25,"len")=4 + Set gtmtypes("cw_set_element",25,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","first_copy")=25 + Set gtmtypes("cw_set_element",26,"name")="cw_set_element.forward_process" + Set gtmtypes("cw_set_element",26,"off")=104 + Set gtmtypes("cw_set_element",26,"len")=4 + Set gtmtypes("cw_set_element",26,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","forward_process")=26 + Set gtmtypes("cw_set_element",27,"name")="cw_set_element.t_level" + Set gtmtypes("cw_set_element",27,"off")=108 + Set gtmtypes("cw_set_element",27,"len")=4 + Set gtmtypes("cw_set_element",27,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","t_level")=27 + Set gtmtypes("cw_set_element",28,"name")="cw_set_element.ondsk_blkver" + Set gtmtypes("cw_set_element",28,"off")=112 + Set gtmtypes("cw_set_element",28,"len")=4 + Set gtmtypes("cw_set_element",28,"type")="int" + Set gtmtypfldindx("cw_set_element","ondsk_blkver")=28 + Set gtmtypes("cw_set_element",29,"name")="cw_set_element.old_mode" + Set gtmtypes("cw_set_element",29,"off")=116 + Set gtmtypes("cw_set_element",29,"len")=4 + Set gtmtypes("cw_set_element",29,"type")="int" + Set gtmtypfldindx("cw_set_element","old_mode")=29 + Set gtmtypes("cw_set_element",30,"name")="cw_set_element.undo_next_off" + Set gtmtypes("cw_set_element",30,"off")=120 + Set gtmtypes("cw_set_element",30,"len")=8 + Set gtmtypes("cw_set_element",30,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","undo_next_off")=30 + Set gtmtypes("cw_set_element",30,"dim")=2 + Set gtmtypes("cw_set_element",31,"name")="cw_set_element.undo_offset" + Set gtmtypes("cw_set_element",31,"off")=128 + Set gtmtypes("cw_set_element",31,"len")=8 + Set gtmtypes("cw_set_element",31,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","undo_offset")=31 + Set gtmtypes("cw_set_element",31,"dim")=2 + Set gtmtypes("cw_set_element",32,"name")="cw_set_element.blk_checksum" + Set gtmtypes("cw_set_element",32,"off")=136 + Set gtmtypes("cw_set_element",32,"len")=4 + Set gtmtypes("cw_set_element",32,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","blk_checksum")=32 + Set gtmtypes("cw_set_element",33,"name")="cw_set_element.blk_prior_state" + Set gtmtypes("cw_set_element",33,"off")=140 + Set gtmtypes("cw_set_element",33,"len")=4 + Set gtmtypes("cw_set_element",33,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","blk_prior_state")=33 + ; + Set gtmtypes("d_mt_struct")="struct" + Set gtmtypes("d_mt_struct",0)=32 + Set gtmtypes("d_mt_struct","len")=148 + Set gtmtypes("d_mt_struct",1,"name")="d_mt_struct.access_id" + Set gtmtypes("d_mt_struct",1,"off")=0 + Set gtmtypes("d_mt_struct",1,"len")=4 + Set gtmtypes("d_mt_struct",1,"type")="int" + Set gtmtypfldindx("d_mt_struct","access_id")=1 + Set gtmtypes("d_mt_struct",2,"name")="d_mt_struct.read_mask" + Set gtmtypes("d_mt_struct",2,"off")=4 + Set gtmtypes("d_mt_struct",2,"len")=4 + Set gtmtypes("d_mt_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","read_mask")=2 + Set gtmtypes("d_mt_struct",3,"name")="d_mt_struct.write_mask" + Set gtmtypes("d_mt_struct",3,"off")=8 + Set gtmtypes("d_mt_struct",3,"len")=4 + Set gtmtypes("d_mt_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","write_mask")=3 + Set gtmtypes("d_mt_struct",4,"name")="d_mt_struct.record_sz" + Set gtmtypes("d_mt_struct",4,"off")=12 + Set gtmtypes("d_mt_struct",4,"len")=4 + Set gtmtypes("d_mt_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","record_sz")=4 + Set gtmtypes("d_mt_struct",5,"name")="d_mt_struct.block_sz" + Set gtmtypes("d_mt_struct",5,"off")=16 + Set gtmtypes("d_mt_struct",5,"len")=4 + Set gtmtypes("d_mt_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","block_sz")=5 + Set gtmtypes("d_mt_struct",6,"name")="d_mt_struct.filepos" + Set gtmtypes("d_mt_struct",6,"off")=20 + Set gtmtypes("d_mt_struct",6,"len")=2 + Set gtmtypes("d_mt_struct",6,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","filepos")=6 + Set gtmtypes("d_mt_struct",7,"name")="d_mt_struct.recpos" + Set gtmtypes("d_mt_struct",7,"off")=22 + Set gtmtypes("d_mt_struct",7,"len")=2 + Set gtmtypes("d_mt_struct",7,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","recpos")=7 + Set gtmtypes("d_mt_struct",8,"name")="d_mt_struct.mode" + Set gtmtypes("d_mt_struct",8,"off")=24 + Set gtmtypes("d_mt_struct",8,"len")=2 + Set gtmtypes("d_mt_struct",8,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","mode")=8 + Set gtmtypes("d_mt_struct",9,"name")="d_mt_struct.filename" + Set gtmtypes("d_mt_struct",9,"off")=26 + Set gtmtypes("d_mt_struct",9,"len")=64 + Set gtmtypes("d_mt_struct",9,"type")="char" + Set gtmtypfldindx("d_mt_struct","filename")=9 + Set gtmtypes("d_mt_struct",10,"name")="d_mt_struct.buffer" + Set gtmtypes("d_mt_struct",10,"off")=92 + Set gtmtypes("d_mt_struct",10,"len")=4 + Set gtmtypes("d_mt_struct",10,"type")="addr" + Set gtmtypfldindx("d_mt_struct","buffer")=10 + Set gtmtypes("d_mt_struct",11,"name")="d_mt_struct.bufftop" + Set gtmtypes("d_mt_struct",11,"off")=96 + Set gtmtypes("d_mt_struct",11,"len")=4 + Set gtmtypes("d_mt_struct",11,"type")="addr" + Set gtmtypfldindx("d_mt_struct","bufftop")=11 + Set gtmtypes("d_mt_struct",12,"name")="d_mt_struct.buffptr" + Set gtmtypes("d_mt_struct",12,"off")=100 + Set gtmtypes("d_mt_struct",12,"len")=4 + Set gtmtypes("d_mt_struct",12,"type")="addr" + Set gtmtypfldindx("d_mt_struct","buffptr")=12 + Set gtmtypes("d_mt_struct",13,"name")="d_mt_struct.cap" + Set gtmtypes("d_mt_struct",13,"off")=104 + Set gtmtypes("d_mt_struct",13,"len")=12 + Set gtmtypes("d_mt_struct",13,"type")="m_cap" + Set gtmtypfldindx("d_mt_struct","cap")=13 + Set gtmtypes("d_mt_struct",14,"name")="d_mt_struct.cap.mt_type" + Set gtmtypes("d_mt_struct",14,"off")=104 + Set gtmtypes("d_mt_struct",14,"len")=4 + Set gtmtypes("d_mt_struct",14,"type")="int" + Set gtmtypfldindx("d_mt_struct","cap.mt_type")=14 + Set gtmtypes("d_mt_struct",15,"name")="d_mt_struct.cap.is_seekable" + Set gtmtypes("d_mt_struct",15,"off")=108 + Set gtmtypes("d_mt_struct",15,"len")=1 + Set gtmtypes("d_mt_struct",15,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.is_seekable")=15 + Set gtmtypes("d_mt_struct",16,"name")="d_mt_struct.cap.filemarks_supported" + Set gtmtypes("d_mt_struct",16,"off")=109 + Set gtmtypes("d_mt_struct",16,"len")=1 + Set gtmtypes("d_mt_struct",16,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.filemarks_supported")=16 + Set gtmtypes("d_mt_struct",17,"name")="d_mt_struct.cap.req_extra_filemark" + Set gtmtypes("d_mt_struct",17,"off")=110 + Set gtmtypes("d_mt_struct",17,"len")=1 + Set gtmtypes("d_mt_struct",17,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.req_extra_filemark")=17 + Set gtmtypes("d_mt_struct",18,"name")="d_mt_struct.cap.can_bksp_by_filemark" + Set gtmtypes("d_mt_struct",18,"off")=111 + Set gtmtypes("d_mt_struct",18,"len")=1 + Set gtmtypes("d_mt_struct",18,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.can_bksp_by_filemark")=18 + Set gtmtypes("d_mt_struct",19,"name")="d_mt_struct.cap.block_size" + Set gtmtypes("d_mt_struct",19,"off")=112 + Set gtmtypes("d_mt_struct",19,"len")=4 + Set gtmtypes("d_mt_struct",19,"type")="int" + Set gtmtypfldindx("d_mt_struct","cap.block_size")=19 + Set gtmtypes("d_mt_struct",20,"name")="d_mt_struct.bufftoggle" + Set gtmtypes("d_mt_struct",20,"off")=116 + Set gtmtypes("d_mt_struct",20,"len")=4 + Set gtmtypes("d_mt_struct",20,"type")="int" + Set gtmtypfldindx("d_mt_struct","bufftoggle")=20 + Set gtmtypes("d_mt_struct",21,"name")="d_mt_struct.ebcdic" + Set gtmtypes("d_mt_struct",21,"off")=120 + Set gtmtypes("d_mt_struct",21,"len")=1 + Set gtmtypes("d_mt_struct",21,"type")="char" + Set gtmtypfldindx("d_mt_struct","ebcdic")=21 + Set gtmtypes("d_mt_struct",22,"name")="d_mt_struct.labeled" + Set gtmtypes("d_mt_struct",22,"off")=121 + Set gtmtypes("d_mt_struct",22,"len")=1 + Set gtmtypes("d_mt_struct",22,"type")="unsigned-char" + Set gtmtypfldindx("d_mt_struct","labeled")=22 + Set gtmtypes("d_mt_struct",23,"name")="d_mt_struct.rec" + Set gtmtypes("d_mt_struct",23,"off")=124 + Set gtmtypes("d_mt_struct",23,"len")=12 + Set gtmtypes("d_mt_struct",23,"type")="mstr" + Set gtmtypfldindx("d_mt_struct","rec")=23 + Set gtmtypes("d_mt_struct",24,"name")="d_mt_struct.rec.char_len" + Set gtmtypes("d_mt_struct",24,"off")=124 + Set gtmtypes("d_mt_struct",24,"len")=4 + Set gtmtypes("d_mt_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","rec.char_len")=24 + Set gtmtypes("d_mt_struct",25,"name")="d_mt_struct.rec.len" + Set gtmtypes("d_mt_struct",25,"off")=128 + Set gtmtypes("d_mt_struct",25,"len")=4 + Set gtmtypes("d_mt_struct",25,"type")="int" + Set gtmtypfldindx("d_mt_struct","rec.len")=25 + Set gtmtypes("d_mt_struct",26,"name")="d_mt_struct.rec.addr" + Set gtmtypes("d_mt_struct",26,"off")=132 + Set gtmtypes("d_mt_struct",26,"len")=4 + Set gtmtypes("d_mt_struct",26,"type")="addr" + Set gtmtypfldindx("d_mt_struct","rec.addr")=26 + Set gtmtypes("d_mt_struct",27,"name")="d_mt_struct.last_op" + Set gtmtypes("d_mt_struct",27,"off")=136 + Set gtmtypes("d_mt_struct",27,"len")=4 + Set gtmtypes("d_mt_struct",27,"type")="int" + Set gtmtypfldindx("d_mt_struct","last_op")=27 + Set gtmtypes("d_mt_struct",28,"name")="d_mt_struct.newversion" + Set gtmtypes("d_mt_struct",28,"off")=140 + Set gtmtypes("d_mt_struct",28,"len")=1 + Set gtmtypes("d_mt_struct",28,"type")="char" + Set gtmtypfldindx("d_mt_struct","newversion")=28 + Set gtmtypes("d_mt_struct",29,"name")="d_mt_struct.read_only" + Set gtmtypes("d_mt_struct",29,"off")=141 + Set gtmtypes("d_mt_struct",29,"len")=1 + Set gtmtypes("d_mt_struct",29,"type")="char" + Set gtmtypfldindx("d_mt_struct","read_only")=29 + Set gtmtypes("d_mt_struct",30,"name")="d_mt_struct.wrap" + Set gtmtypes("d_mt_struct",30,"off")=142 + Set gtmtypes("d_mt_struct",30,"len")=1 + Set gtmtypes("d_mt_struct",30,"type")="char" + Set gtmtypfldindx("d_mt_struct","wrap")=30 + Set gtmtypes("d_mt_struct",31,"name")="d_mt_struct.fixed" + Set gtmtypes("d_mt_struct",31,"off")=143 + Set gtmtypes("d_mt_struct",31,"len")=1 + Set gtmtypes("d_mt_struct",31,"type")="char" + Set gtmtypfldindx("d_mt_struct","fixed")=31 + Set gtmtypes("d_mt_struct",32,"name")="d_mt_struct.stream" + Set gtmtypes("d_mt_struct",32,"off")=144 + Set gtmtypes("d_mt_struct",32,"len")=1 + Set gtmtypes("d_mt_struct",32,"type")="char" + Set gtmtypfldindx("d_mt_struct","stream")=32 + ; + Set gtmtypes("d_rm_struct")="struct" + Set gtmtypes("d_rm_struct",0)=88 + Set gtmtypes("d_rm_struct","len")=856 + Set gtmtypes("d_rm_struct",1,"name")="d_rm_struct.fixed" + Set gtmtypes("d_rm_struct",1,"off")=0 + Set gtmtypes("d_rm_struct",1,"len")=4 + Set gtmtypes("d_rm_struct",1,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","fixed")=1 + Set gtmtypes("d_rm_struct",2,"name")="d_rm_struct.read_only" + Set gtmtypes("d_rm_struct",2,"off")=4 + Set gtmtypes("d_rm_struct",2,"len")=4 + Set gtmtypes("d_rm_struct",2,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","read_only")=2 + Set gtmtypes("d_rm_struct",3,"name")="d_rm_struct.write_only" + Set gtmtypes("d_rm_struct",3,"off")=8 + Set gtmtypes("d_rm_struct",3,"len")=4 + Set gtmtypes("d_rm_struct",3,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","write_only")=3 + Set gtmtypes("d_rm_struct",4,"name")="d_rm_struct.stream" + Set gtmtypes("d_rm_struct",4,"off")=12 + Set gtmtypes("d_rm_struct",4,"len")=4 + Set gtmtypes("d_rm_struct",4,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","stream")=4 + Set gtmtypes("d_rm_struct",5,"name")="d_rm_struct.fifo" + Set gtmtypes("d_rm_struct",5,"off")=16 + Set gtmtypes("d_rm_struct",5,"len")=4 + Set gtmtypes("d_rm_struct",5,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","fifo")=5 + Set gtmtypes("d_rm_struct",6,"name")="d_rm_struct.gtm_pipe1" + Set gtmtypes("d_rm_struct",6,"off")=20 + Set gtmtypes("d_rm_struct",6,"len")=4 + Set gtmtypes("d_rm_struct",6,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","gtm_pipe1")=6 + Set gtmtypes("d_rm_struct",7,"name")="d_rm_struct.independent" + Set gtmtypes("d_rm_struct",7,"off")=24 + Set gtmtypes("d_rm_struct",7,"len")=4 + Set gtmtypes("d_rm_struct",7,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","independent")=7 + Set gtmtypes("d_rm_struct",8,"name")="d_rm_struct.parse" + Set gtmtypes("d_rm_struct",8,"off")=28 + Set gtmtypes("d_rm_struct",8,"len")=4 + Set gtmtypes("d_rm_struct",8,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","parse")=8 + Set gtmtypes("d_rm_struct",9,"name")="d_rm_struct.done_1st_read" + Set gtmtypes("d_rm_struct",9,"off")=32 + Set gtmtypes("d_rm_struct",9,"len")=4 + Set gtmtypes("d_rm_struct",9,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","done_1st_read")=9 + Set gtmtypes("d_rm_struct",10,"name")="d_rm_struct.done_1st_write" + Set gtmtypes("d_rm_struct",10,"off")=36 + Set gtmtypes("d_rm_struct",10,"len")=4 + Set gtmtypes("d_rm_struct",10,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","done_1st_write")=10 + Set gtmtypes("d_rm_struct",11,"name")="d_rm_struct.crlast" + Set gtmtypes("d_rm_struct",11,"off")=40 + Set gtmtypes("d_rm_struct",11,"len")=4 + Set gtmtypes("d_rm_struct",11,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","crlast")=11 + Set gtmtypes("d_rm_struct",12,"name")="d_rm_struct.def_width" + Set gtmtypes("d_rm_struct",12,"off")=44 + Set gtmtypes("d_rm_struct",12,"len")=4 + Set gtmtypes("d_rm_struct",12,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","def_width")=12 + Set gtmtypes("d_rm_struct",13,"name")="d_rm_struct.def_recsize" + Set gtmtypes("d_rm_struct",13,"off")=48 + Set gtmtypes("d_rm_struct",13,"len")=4 + Set gtmtypes("d_rm_struct",13,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","def_recsize")=13 + Set gtmtypes("d_rm_struct",14,"name")="d_rm_struct.bom_read_one_done" + Set gtmtypes("d_rm_struct",14,"off")=52 + Set gtmtypes("d_rm_struct",14,"len")=4 + Set gtmtypes("d_rm_struct",14,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","bom_read_one_done")=14 + Set gtmtypes("d_rm_struct",15,"name")="d_rm_struct.follow" + Set gtmtypes("d_rm_struct",15,"off")=56 + Set gtmtypes("d_rm_struct",15,"len")=4 + Set gtmtypes("d_rm_struct",15,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","follow")=15 + Set gtmtypes("d_rm_struct",16,"name")="d_rm_struct.no_destroy" + Set gtmtypes("d_rm_struct",16,"off")=60 + Set gtmtypes("d_rm_struct",16,"len")=4 + Set gtmtypes("d_rm_struct",16,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","no_destroy")=16 + Set gtmtypes("d_rm_struct",17,"name")="d_rm_struct.bom_checked" + Set gtmtypes("d_rm_struct",17,"off")=64 + Set gtmtypes("d_rm_struct",17,"len")=4 + Set gtmtypes("d_rm_struct",17,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","bom_checked")=17 + Set gtmtypes("d_rm_struct",18,"name")="d_rm_struct.pipe_save_state" + Set gtmtypes("d_rm_struct",18,"off")=68 + Set gtmtypes("d_rm_struct",18,"len")=44 + Set gtmtypes("d_rm_struct",18,"type")="pipe_interrupt" + Set gtmtypfldindx("d_rm_struct","pipe_save_state")=18 + Set gtmtypes("d_rm_struct",19,"name")="d_rm_struct.pipe_save_state.end_time" + Set gtmtypes("d_rm_struct",19,"off")=68 + Set gtmtypes("d_rm_struct",19,"len")=8 + Set gtmtypes("d_rm_struct",19,"type")="ABS_TIME" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.end_time")=19 + Set gtmtypes("d_rm_struct",20,"name")="d_rm_struct.pipe_save_state.who_saved" + Set gtmtypes("d_rm_struct",20,"off")=76 + Set gtmtypes("d_rm_struct",20,"len")=4 + Set gtmtypes("d_rm_struct",20,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.who_saved")=20 + Set gtmtypes("d_rm_struct",21,"name")="d_rm_struct.pipe_save_state.max_bufflen" + Set gtmtypes("d_rm_struct",21,"off")=80 + Set gtmtypes("d_rm_struct",21,"len")=4 + Set gtmtypes("d_rm_struct",21,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.max_bufflen")=21 + Set gtmtypes("d_rm_struct",22,"name")="d_rm_struct.pipe_save_state.bytes_read" + Set gtmtypes("d_rm_struct",22,"off")=84 + Set gtmtypes("d_rm_struct",22,"len")=4 + Set gtmtypes("d_rm_struct",22,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes_read")=22 + Set gtmtypes("d_rm_struct",23,"name")="d_rm_struct.pipe_save_state.bytes2read" + Set gtmtypes("d_rm_struct",23,"off")=88 + Set gtmtypes("d_rm_struct",23,"len")=4 + Set gtmtypes("d_rm_struct",23,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes2read")=23 + Set gtmtypes("d_rm_struct",24,"name")="d_rm_struct.pipe_save_state.char_count" + Set gtmtypes("d_rm_struct",24,"off")=92 + Set gtmtypes("d_rm_struct",24,"len")=4 + Set gtmtypes("d_rm_struct",24,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.char_count")=24 + Set gtmtypes("d_rm_struct",25,"name")="d_rm_struct.pipe_save_state.bytes_count" + Set gtmtypes("d_rm_struct",25,"off")=96 + Set gtmtypes("d_rm_struct",25,"len")=4 + Set gtmtypes("d_rm_struct",25,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes_count")=25 + Set gtmtypes("d_rm_struct",26,"name")="d_rm_struct.pipe_save_state.add_bytes" + Set gtmtypes("d_rm_struct",26,"off")=100 + Set gtmtypes("d_rm_struct",26,"len")=4 + Set gtmtypes("d_rm_struct",26,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.add_bytes")=26 + Set gtmtypes("d_rm_struct",27,"name")="d_rm_struct.pipe_save_state.end_time_valid" + Set gtmtypes("d_rm_struct",27,"off")=104 + Set gtmtypes("d_rm_struct",27,"len")=4 + Set gtmtypes("d_rm_struct",27,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.end_time_valid")=27 + Set gtmtypes("d_rm_struct",28,"name")="d_rm_struct.pipe_save_state.newpipe" + Set gtmtypes("d_rm_struct",28,"off")=108 + Set gtmtypes("d_rm_struct",28,"len")=4 + Set gtmtypes("d_rm_struct",28,"type")="addr" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.newpipe")=28 + Set gtmtypes("d_rm_struct",29,"name")="d_rm_struct.mupintr" + Set gtmtypes("d_rm_struct",29,"off")=112 + Set gtmtypes("d_rm_struct",29,"len")=4 + Set gtmtypes("d_rm_struct",29,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","mupintr")=29 + Set gtmtypes("d_rm_struct",30,"name")="d_rm_struct.lastop" + Set gtmtypes("d_rm_struct",30,"off")=116 + Set gtmtypes("d_rm_struct",30,"len")=4 + Set gtmtypes("d_rm_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","lastop")=30 + Set gtmtypes("d_rm_struct",31,"name")="d_rm_struct.fildes" + Set gtmtypes("d_rm_struct",31,"off")=120 + Set gtmtypes("d_rm_struct",31,"len")=4 + Set gtmtypes("d_rm_struct",31,"type")="int" + Set gtmtypfldindx("d_rm_struct","fildes")=31 + Set gtmtypes("d_rm_struct",32,"name")="d_rm_struct.read_fildes" + Set gtmtypes("d_rm_struct",32,"off")=124 + Set gtmtypes("d_rm_struct",32,"len")=4 + Set gtmtypes("d_rm_struct",32,"type")="int" + Set gtmtypfldindx("d_rm_struct","read_fildes")=32 + Set gtmtypes("d_rm_struct",33,"name")="d_rm_struct.read_filstr" + Set gtmtypes("d_rm_struct",33,"off")=128 + Set gtmtypes("d_rm_struct",33,"len")=4 + Set gtmtypes("d_rm_struct",33,"type")="addr" + Set gtmtypfldindx("d_rm_struct","read_filstr")=33 + Set gtmtypes("d_rm_struct",34,"name")="d_rm_struct.stderr_child" + Set gtmtypes("d_rm_struct",34,"off")=132 + Set gtmtypes("d_rm_struct",34,"len")=4 + Set gtmtypes("d_rm_struct",34,"type")="addr" + Set gtmtypfldindx("d_rm_struct","stderr_child")=34 + Set gtmtypes("d_rm_struct",35,"name")="d_rm_struct.stderr_parent" + Set gtmtypes("d_rm_struct",35,"off")=136 + Set gtmtypes("d_rm_struct",35,"len")=4 + Set gtmtypes("d_rm_struct",35,"type")="addr" + Set gtmtypfldindx("d_rm_struct","stderr_parent")=35 + Set gtmtypes("d_rm_struct",36,"name")="d_rm_struct.pipe_pid" + Set gtmtypes("d_rm_struct",36,"off")=140 + Set gtmtypes("d_rm_struct",36,"len")=4 + Set gtmtypes("d_rm_struct",36,"type")="pid_t" + Set gtmtypfldindx("d_rm_struct","pipe_pid")=36 + Set gtmtypes("d_rm_struct",37,"name")="d_rm_struct.dev_param_pairs" + Set gtmtypes("d_rm_struct",37,"off")=144 + Set gtmtypes("d_rm_struct",37,"len")=28 + Set gtmtypes("d_rm_struct",37,"type")="Dev_param_pairs" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs")=37 + Set gtmtypes("d_rm_struct",38,"name")="d_rm_struct.dev_param_pairs.num_pairs" + Set gtmtypes("d_rm_struct",38,"off")=144 + Set gtmtypes("d_rm_struct",38,"len")=4 + Set gtmtypes("d_rm_struct",38,"type")="int" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.num_pairs")=38 + Set gtmtypes("d_rm_struct",39,"name")="d_rm_struct.dev_param_pairs.pairs" + Set gtmtypes("d_rm_struct",39,"off")=148 + Set gtmtypes("d_rm_struct",39,"len")=24 + Set gtmtypes("d_rm_struct",39,"type")="Dev_param_pair" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs")=39 + Set gtmtypes("d_rm_struct",39,"dim")=3 + Set gtmtypes("d_rm_struct",40,"name")="d_rm_struct.dev_param_pairs.pairs[0].name" + Set gtmtypes("d_rm_struct",40,"off")=148 + Set gtmtypes("d_rm_struct",40,"len")=4 + Set gtmtypes("d_rm_struct",40,"type")="addr" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs[0].name")=40 + Set gtmtypes("d_rm_struct",41,"name")="d_rm_struct.dev_param_pairs.pairs[0].definition" + Set gtmtypes("d_rm_struct",41,"off")=152 + Set gtmtypes("d_rm_struct",41,"len")=4 + Set gtmtypes("d_rm_struct",41,"type")="addr" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs[0].definition")=41 + Set gtmtypes("d_rm_struct",42,"name")="d_rm_struct.bufsize" + Set gtmtypes("d_rm_struct",42,"off")=172 + Set gtmtypes("d_rm_struct",42,"len")=4 + Set gtmtypes("d_rm_struct",42,"type")="int" + Set gtmtypfldindx("d_rm_struct","bufsize")=42 + Set gtmtypes("d_rm_struct",43,"name")="d_rm_struct.outbufsize" + Set gtmtypes("d_rm_struct",43,"off")=176 + Set gtmtypes("d_rm_struct",43,"len")=4 + Set gtmtypes("d_rm_struct",43,"type")="int" + Set gtmtypfldindx("d_rm_struct","outbufsize")=43 + Set gtmtypes("d_rm_struct",44,"name")="d_rm_struct.recordsize" + Set gtmtypes("d_rm_struct",44,"off")=180 + Set gtmtypes("d_rm_struct",44,"len")=4 + Set gtmtypes("d_rm_struct",44,"type")="int" + Set gtmtypfldindx("d_rm_struct","recordsize")=44 + Set gtmtypes("d_rm_struct",45,"name")="d_rm_struct.padchar" + Set gtmtypes("d_rm_struct",45,"off")=184 + Set gtmtypes("d_rm_struct",45,"len")=4 + Set gtmtypes("d_rm_struct",45,"type")="int" + Set gtmtypfldindx("d_rm_struct","padchar")=45 + Set gtmtypes("d_rm_struct",46,"name")="d_rm_struct.fol_bytes_read" + Set gtmtypes("d_rm_struct",46,"off")=188 + Set gtmtypes("d_rm_struct",46,"len")=4 + Set gtmtypes("d_rm_struct",46,"type")="int" + Set gtmtypfldindx("d_rm_struct","fol_bytes_read")=46 + Set gtmtypes("d_rm_struct",47,"name")="d_rm_struct.last_was_timeout" + Set gtmtypes("d_rm_struct",47,"off")=192 + Set gtmtypes("d_rm_struct",47,"len")=4 + Set gtmtypes("d_rm_struct",47,"type")="int" + Set gtmtypfldindx("d_rm_struct","last_was_timeout")=47 + Set gtmtypes("d_rm_struct",48,"name")="d_rm_struct.orig_bytes_already_read" + Set gtmtypes("d_rm_struct",48,"off")=196 + Set gtmtypes("d_rm_struct",48,"len")=4 + Set gtmtypes("d_rm_struct",48,"type")="int" + Set gtmtypfldindx("d_rm_struct","orig_bytes_already_read")=48 + Set gtmtypes("d_rm_struct",49,"name")="d_rm_struct.out_bytes" + Set gtmtypes("d_rm_struct",49,"off")=200 + Set gtmtypes("d_rm_struct",49,"len")=4 + Set gtmtypes("d_rm_struct",49,"type")="int" + Set gtmtypfldindx("d_rm_struct","out_bytes")=49 + Set gtmtypes("d_rm_struct",50,"name")="d_rm_struct.bom_buf_cnt" + Set gtmtypes("d_rm_struct",50,"off")=204 + Set gtmtypes("d_rm_struct",50,"len")=4 + Set gtmtypes("d_rm_struct",50,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_buf_cnt")=50 + Set gtmtypes("d_rm_struct",51,"name")="d_rm_struct.bom_buf_off" + Set gtmtypes("d_rm_struct",51,"off")=208 + Set gtmtypes("d_rm_struct",51,"len")=4 + Set gtmtypes("d_rm_struct",51,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_buf_off")=51 + Set gtmtypes("d_rm_struct",52,"name")="d_rm_struct.bom_num_bytes" + Set gtmtypes("d_rm_struct",52,"off")=212 + Set gtmtypes("d_rm_struct",52,"len")=4 + Set gtmtypes("d_rm_struct",52,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_num_bytes")=52 + Set gtmtypes("d_rm_struct",53,"name")="d_rm_struct.bom_buf" + Set gtmtypes("d_rm_struct",53,"off")=216 + Set gtmtypes("d_rm_struct",53,"len")=4 + Set gtmtypes("d_rm_struct",53,"type")="unsigned-char" + Set gtmtypfldindx("d_rm_struct","bom_buf")=53 + Set gtmtypes("d_rm_struct",54,"name")="d_rm_struct.inbuf" + Set gtmtypes("d_rm_struct",54,"off")=220 + Set gtmtypes("d_rm_struct",54,"len")=4 + Set gtmtypes("d_rm_struct",54,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf")=54 + Set gtmtypes("d_rm_struct",55,"name")="d_rm_struct.inbuf_pos" + Set gtmtypes("d_rm_struct",55,"off")=224 + Set gtmtypes("d_rm_struct",55,"len")=4 + Set gtmtypes("d_rm_struct",55,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_pos")=55 + Set gtmtypes("d_rm_struct",56,"name")="d_rm_struct.inbuf_off" + Set gtmtypes("d_rm_struct",56,"off")=228 + Set gtmtypes("d_rm_struct",56,"len")=4 + Set gtmtypes("d_rm_struct",56,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_off")=56 + Set gtmtypes("d_rm_struct",57,"name")="d_rm_struct.inbuf_top" + Set gtmtypes("d_rm_struct",57,"off")=232 + Set gtmtypes("d_rm_struct",57,"len")=4 + Set gtmtypes("d_rm_struct",57,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_top")=57 + Set gtmtypes("d_rm_struct",58,"name")="d_rm_struct.outbuf" + Set gtmtypes("d_rm_struct",58,"off")=236 + Set gtmtypes("d_rm_struct",58,"len")=4 + Set gtmtypes("d_rm_struct",58,"type")="addr" + Set gtmtypfldindx("d_rm_struct","outbuf")=58 + Set gtmtypes("d_rm_struct",59,"name")="d_rm_struct.filstr" + Set gtmtypes("d_rm_struct",59,"off")=240 + Set gtmtypes("d_rm_struct",59,"len")=4 + Set gtmtypes("d_rm_struct",59,"type")="addr" + Set gtmtypfldindx("d_rm_struct","filstr")=59 + Set gtmtypes("d_rm_struct",60,"name")="d_rm_struct.file_pos" + Set gtmtypes("d_rm_struct",60,"off")=244 + Set gtmtypes("d_rm_struct",60,"len")=8 + Set gtmtypes("d_rm_struct",60,"type")="off_t" + Set gtmtypfldindx("d_rm_struct","file_pos")=60 + Set gtmtypes("d_rm_struct",61,"name")="d_rm_struct.pipe_buff_size" + Set gtmtypes("d_rm_struct",61,"off")=252 + Set gtmtypes("d_rm_struct",61,"len")=4 + Set gtmtypes("d_rm_struct",61,"type")="long" + Set gtmtypfldindx("d_rm_struct","pipe_buff_size")=61 + Set gtmtypes("d_rm_struct",62,"name")="d_rm_struct.utf_tmp_buffer" + Set gtmtypes("d_rm_struct",62,"off")=256 + Set gtmtypes("d_rm_struct",62,"len")=512 + Set gtmtypes("d_rm_struct",62,"type")="char" + Set gtmtypfldindx("d_rm_struct","utf_tmp_buffer")=62 + Set gtmtypes("d_rm_struct",63,"name")="d_rm_struct.utf_tot_bytes_in_buffer" + Set gtmtypes("d_rm_struct",63,"off")=768 + Set gtmtypes("d_rm_struct",63,"len")=4 + Set gtmtypes("d_rm_struct",63,"type")="int" + Set gtmtypfldindx("d_rm_struct","utf_tot_bytes_in_buffer")=63 + Set gtmtypes("d_rm_struct",64,"name")="d_rm_struct.utf_start_pos" + Set gtmtypes("d_rm_struct",64,"off")=772 + Set gtmtypes("d_rm_struct",64,"len")=4 + Set gtmtypes("d_rm_struct",64,"type")="int" + Set gtmtypfldindx("d_rm_struct","utf_start_pos")=64 + Set gtmtypes("d_rm_struct",65,"name")="d_rm_struct.write_occurred" + Set gtmtypes("d_rm_struct",65,"off")=776 + Set gtmtypes("d_rm_struct",65,"len")=4 + Set gtmtypes("d_rm_struct",65,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","write_occurred")=65 + Set gtmtypes("d_rm_struct",66,"name")="d_rm_struct.read_occurred" + Set gtmtypes("d_rm_struct",66,"off")=780 + Set gtmtypes("d_rm_struct",66,"len")=4 + Set gtmtypes("d_rm_struct",66,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","read_occurred")=66 + Set gtmtypes("d_rm_struct",67,"name")="d_rm_struct.input_encrypted" + Set gtmtypes("d_rm_struct",67,"off")=784 + Set gtmtypes("d_rm_struct",67,"len")=4 + Set gtmtypes("d_rm_struct",67,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","input_encrypted")=67 + Set gtmtypes("d_rm_struct",68,"name")="d_rm_struct.output_encrypted" + Set gtmtypes("d_rm_struct",68,"off")=788 + Set gtmtypes("d_rm_struct",68,"len")=4 + Set gtmtypes("d_rm_struct",68,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","output_encrypted")=68 + Set gtmtypes("d_rm_struct",69,"name")="d_rm_struct.input_iv" + Set gtmtypes("d_rm_struct",69,"off")=792 + Set gtmtypes("d_rm_struct",69,"len")=12 + Set gtmtypes("d_rm_struct",69,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","input_iv")=69 + Set gtmtypes("d_rm_struct",70,"name")="d_rm_struct.input_iv.char_len" + Set gtmtypes("d_rm_struct",70,"off")=792 + Set gtmtypes("d_rm_struct",70,"len")=4 + Set gtmtypes("d_rm_struct",70,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","input_iv.char_len")=70 + Set gtmtypes("d_rm_struct",71,"name")="d_rm_struct.input_iv.len" + Set gtmtypes("d_rm_struct",71,"off")=796 + Set gtmtypes("d_rm_struct",71,"len")=4 + Set gtmtypes("d_rm_struct",71,"type")="int" + Set gtmtypfldindx("d_rm_struct","input_iv.len")=71 + Set gtmtypes("d_rm_struct",72,"name")="d_rm_struct.input_iv.addr" + Set gtmtypes("d_rm_struct",72,"off")=800 + Set gtmtypes("d_rm_struct",72,"len")=4 + Set gtmtypes("d_rm_struct",72,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_iv.addr")=72 + Set gtmtypes("d_rm_struct",73,"name")="d_rm_struct.output_iv" + Set gtmtypes("d_rm_struct",73,"off")=804 + Set gtmtypes("d_rm_struct",73,"len")=12 + Set gtmtypes("d_rm_struct",73,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","output_iv")=73 + Set gtmtypes("d_rm_struct",74,"name")="d_rm_struct.output_iv.char_len" + Set gtmtypes("d_rm_struct",74,"off")=804 + Set gtmtypes("d_rm_struct",74,"len")=4 + Set gtmtypes("d_rm_struct",74,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","output_iv.char_len")=74 + Set gtmtypes("d_rm_struct",75,"name")="d_rm_struct.output_iv.len" + Set gtmtypes("d_rm_struct",75,"off")=808 + Set gtmtypes("d_rm_struct",75,"len")=4 + Set gtmtypes("d_rm_struct",75,"type")="int" + Set gtmtypfldindx("d_rm_struct","output_iv.len")=75 + Set gtmtypes("d_rm_struct",76,"name")="d_rm_struct.output_iv.addr" + Set gtmtypes("d_rm_struct",76,"off")=812 + Set gtmtypes("d_rm_struct",76,"len")=4 + Set gtmtypes("d_rm_struct",76,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_iv.addr")=76 + Set gtmtypes("d_rm_struct",77,"name")="d_rm_struct.input_key" + Set gtmtypes("d_rm_struct",77,"off")=816 + Set gtmtypes("d_rm_struct",77,"len")=12 + Set gtmtypes("d_rm_struct",77,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","input_key")=77 + Set gtmtypes("d_rm_struct",78,"name")="d_rm_struct.input_key.char_len" + Set gtmtypes("d_rm_struct",78,"off")=816 + Set gtmtypes("d_rm_struct",78,"len")=4 + Set gtmtypes("d_rm_struct",78,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","input_key.char_len")=78 + Set gtmtypes("d_rm_struct",79,"name")="d_rm_struct.input_key.len" + Set gtmtypes("d_rm_struct",79,"off")=820 + Set gtmtypes("d_rm_struct",79,"len")=4 + Set gtmtypes("d_rm_struct",79,"type")="int" + Set gtmtypfldindx("d_rm_struct","input_key.len")=79 + Set gtmtypes("d_rm_struct",80,"name")="d_rm_struct.input_key.addr" + Set gtmtypes("d_rm_struct",80,"off")=824 + Set gtmtypes("d_rm_struct",80,"len")=4 + Set gtmtypes("d_rm_struct",80,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_key.addr")=80 + Set gtmtypes("d_rm_struct",81,"name")="d_rm_struct.output_key" + Set gtmtypes("d_rm_struct",81,"off")=828 + Set gtmtypes("d_rm_struct",81,"len")=12 + Set gtmtypes("d_rm_struct",81,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","output_key")=81 + Set gtmtypes("d_rm_struct",82,"name")="d_rm_struct.output_key.char_len" + Set gtmtypes("d_rm_struct",82,"off")=828 + Set gtmtypes("d_rm_struct",82,"len")=4 + Set gtmtypes("d_rm_struct",82,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","output_key.char_len")=82 + Set gtmtypes("d_rm_struct",83,"name")="d_rm_struct.output_key.len" + Set gtmtypes("d_rm_struct",83,"off")=832 + Set gtmtypes("d_rm_struct",83,"len")=4 + Set gtmtypes("d_rm_struct",83,"type")="int" + Set gtmtypfldindx("d_rm_struct","output_key.len")=83 + Set gtmtypes("d_rm_struct",84,"name")="d_rm_struct.output_key.addr" + Set gtmtypes("d_rm_struct",84,"off")=836 + Set gtmtypes("d_rm_struct",84,"len")=4 + Set gtmtypes("d_rm_struct",84,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_key.addr")=84 + Set gtmtypes("d_rm_struct",85,"name")="d_rm_struct.input_cipher_handle" + Set gtmtypes("d_rm_struct",85,"off")=840 + Set gtmtypes("d_rm_struct",85,"len")=4 + Set gtmtypes("d_rm_struct",85,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_cipher_handle")=85 + Set gtmtypes("d_rm_struct",86,"name")="d_rm_struct.output_cipher_handle" + Set gtmtypes("d_rm_struct",86,"off")=844 + Set gtmtypes("d_rm_struct",86,"len")=4 + Set gtmtypes("d_rm_struct",86,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_cipher_handle")=86 + Set gtmtypes("d_rm_struct",87,"name")="d_rm_struct.fsblock_buffer_size" + Set gtmtypes("d_rm_struct",87,"off")=848 + Set gtmtypes("d_rm_struct",87,"len")=4 + Set gtmtypes("d_rm_struct",87,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","fsblock_buffer_size")=87 + Set gtmtypes("d_rm_struct",88,"name")="d_rm_struct.fsblock_buffer" + Set gtmtypes("d_rm_struct",88,"off")=852 + Set gtmtypes("d_rm_struct",88,"len")=4 + Set gtmtypes("d_rm_struct",88,"type")="addr" + Set gtmtypfldindx("d_rm_struct","fsblock_buffer")=88 + ; + Set gtmtypes("d_socket_struct")="struct" + Set gtmtypes("d_socket_struct",0)=17 + Set gtmtypes("d_socket_struct","len")=68 + Set gtmtypes("d_socket_struct",1,"name")="d_socket_struct.sock_save_state" + Set gtmtypes("d_socket_struct",1,"off")=0 + Set gtmtypes("d_socket_struct",1,"len")=36 + Set gtmtypes("d_socket_struct",1,"type")="socket_interrupt" + Set gtmtypfldindx("d_socket_struct","sock_save_state")=1 + Set gtmtypes("d_socket_struct",2,"name")="d_socket_struct.sock_save_state.end_time" + Set gtmtypes("d_socket_struct",2,"off")=0 + Set gtmtypes("d_socket_struct",2,"len")=8 + Set gtmtypes("d_socket_struct",2,"type")="ABS_TIME" + Set gtmtypfldindx("d_socket_struct","sock_save_state.end_time")=2 + Set gtmtypes("d_socket_struct",3,"name")="d_socket_struct.sock_save_state.who_saved" + Set gtmtypes("d_socket_struct",3,"off")=8 + Set gtmtypes("d_socket_struct",3,"len")=4 + Set gtmtypes("d_socket_struct",3,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.who_saved")=3 + Set gtmtypes("d_socket_struct",4,"name")="d_socket_struct.sock_save_state.max_bufflen" + Set gtmtypes("d_socket_struct",4,"off")=12 + Set gtmtypes("d_socket_struct",4,"len")=4 + Set gtmtypes("d_socket_struct",4,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.max_bufflen")=4 + Set gtmtypes("d_socket_struct",5,"name")="d_socket_struct.sock_save_state.bytes_read" + Set gtmtypes("d_socket_struct",5,"off")=16 + Set gtmtypes("d_socket_struct",5,"len")=4 + Set gtmtypes("d_socket_struct",5,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.bytes_read")=5 + Set gtmtypes("d_socket_struct",6,"name")="d_socket_struct.sock_save_state.chars_read" + Set gtmtypes("d_socket_struct",6,"off")=20 + Set gtmtypes("d_socket_struct",6,"len")=4 + Set gtmtypes("d_socket_struct",6,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.chars_read")=6 + Set gtmtypes("d_socket_struct",7,"name")="d_socket_struct.sock_save_state.end_time_valid" + Set gtmtypes("d_socket_struct",7,"off")=24 + Set gtmtypes("d_socket_struct",7,"len")=4 + Set gtmtypes("d_socket_struct",7,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","sock_save_state.end_time_valid")=7 + Set gtmtypes("d_socket_struct",8,"name")="d_socket_struct.sock_save_state.ibfsize_specified" + Set gtmtypes("d_socket_struct",8,"off")=28 + Set gtmtypes("d_socket_struct",8,"len")=4 + Set gtmtypes("d_socket_struct",8,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","sock_save_state.ibfsize_specified")=8 + Set gtmtypes("d_socket_struct",9,"name")="d_socket_struct.sock_save_state.newdsocket" + Set gtmtypes("d_socket_struct",9,"off")=32 + Set gtmtypes("d_socket_struct",9,"len")=4 + Set gtmtypes("d_socket_struct",9,"type")="addr" + Set gtmtypfldindx("d_socket_struct","sock_save_state.newdsocket")=9 + Set gtmtypes("d_socket_struct",10,"name")="d_socket_struct.mupintr" + Set gtmtypes("d_socket_struct",10,"off")=36 + Set gtmtypes("d_socket_struct",10,"len")=4 + Set gtmtypes("d_socket_struct",10,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","mupintr")=10 + Set gtmtypes("d_socket_struct",11,"name")="d_socket_struct.current_socket" + Set gtmtypes("d_socket_struct",11,"off")=40 + Set gtmtypes("d_socket_struct",11,"len")=4 + Set gtmtypes("d_socket_struct",11,"type")="int" + Set gtmtypfldindx("d_socket_struct","current_socket")=11 + Set gtmtypes("d_socket_struct",12,"name")="d_socket_struct.n_socket" + Set gtmtypes("d_socket_struct",12,"off")=44 + Set gtmtypes("d_socket_struct",12,"len")=4 + Set gtmtypes("d_socket_struct",12,"type")="int" + Set gtmtypfldindx("d_socket_struct","n_socket")=12 + Set gtmtypes("d_socket_struct",13,"name")="d_socket_struct.waitcycle" + Set gtmtypes("d_socket_struct",13,"off")=48 + Set gtmtypes("d_socket_struct",13,"len")=4 + Set gtmtypes("d_socket_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("d_socket_struct","waitcycle")=13 + Set gtmtypes("d_socket_struct",14,"name")="d_socket_struct.ichset_specified" + Set gtmtypes("d_socket_struct",14,"off")=52 + Set gtmtypes("d_socket_struct",14,"len")=4 + Set gtmtypes("d_socket_struct",14,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","ichset_specified")=14 + Set gtmtypes("d_socket_struct",15,"name")="d_socket_struct.ochset_specified" + Set gtmtypes("d_socket_struct",15,"off")=56 + Set gtmtypes("d_socket_struct",15,"len")=4 + Set gtmtypes("d_socket_struct",15,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","ochset_specified")=15 + Set gtmtypes("d_socket_struct",16,"name")="d_socket_struct.iod" + Set gtmtypes("d_socket_struct",16,"off")=60 + Set gtmtypes("d_socket_struct",16,"len")=4 + Set gtmtypes("d_socket_struct",16,"type")="addr" + Set gtmtypfldindx("d_socket_struct","iod")=16 + Set gtmtypes("d_socket_struct",17,"name")="d_socket_struct.gtm_socket" + Set gtmtypes("d_socket_struct",17,"off")=64 + Set gtmtypes("d_socket_struct",17,"len")=4 + Set gtmtypes("d_socket_struct",17,"type")="addr" + Set gtmtypfldindx("d_socket_struct","gtm_socket")=17 + ; + Set gtmtypes("d_tt_struct")="struct" + Set gtmtypes("d_tt_struct",0)=48 + Set gtmtypes("d_tt_struct","len")=220 + Set gtmtypes("d_tt_struct",1,"name")="d_tt_struct.in_buf_sz" + Set gtmtypes("d_tt_struct",1,"off")=0 + Set gtmtypes("d_tt_struct",1,"len")=4 + Set gtmtypes("d_tt_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","in_buf_sz")=1 + Set gtmtypes("d_tt_struct",2,"name")="d_tt_struct.ext_cap" + Set gtmtypes("d_tt_struct",2,"off")=4 + Set gtmtypes("d_tt_struct",2,"len")=4 + Set gtmtypes("d_tt_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","ext_cap")=2 + Set gtmtypes("d_tt_struct",3,"name")="d_tt_struct.enbld_outofbands" + Set gtmtypes("d_tt_struct",3,"off")=8 + Set gtmtypes("d_tt_struct",3,"len")=8 + Set gtmtypes("d_tt_struct",3,"type")="io_terminator" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands")=3 + Set gtmtypes("d_tt_struct",4,"name")="d_tt_struct.enbld_outofbands.x" + Set gtmtypes("d_tt_struct",4,"off")=8 + Set gtmtypes("d_tt_struct",4,"len")=4 + Set gtmtypes("d_tt_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands.x")=4 + Set gtmtypes("d_tt_struct",5,"name")="d_tt_struct.enbld_outofbands.mask" + Set gtmtypes("d_tt_struct",5,"off")=12 + Set gtmtypes("d_tt_struct",5,"len")=4 + Set gtmtypes("d_tt_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands.mask")=5 + Set gtmtypes("d_tt_struct",6,"name")="d_tt_struct.term_ctrl" + Set gtmtypes("d_tt_struct",6,"off")=16 + Set gtmtypes("d_tt_struct",6,"len")=4 + Set gtmtypes("d_tt_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","term_ctrl")=6 + Set gtmtypes("d_tt_struct",7,"name")="d_tt_struct.mask_term" + Set gtmtypes("d_tt_struct",7,"off")=20 + Set gtmtypes("d_tt_struct",7,"len")=32 + Set gtmtypes("d_tt_struct",7,"type")="io_termmask" + Set gtmtypfldindx("d_tt_struct","mask_term")=7 + Set gtmtypes("d_tt_struct",8,"name")="d_tt_struct.mask_term.mask" + Set gtmtypes("d_tt_struct",8,"off")=20 + Set gtmtypes("d_tt_struct",8,"len")=32 + Set gtmtypes("d_tt_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","mask_term.mask")=8 + Set gtmtypes("d_tt_struct",8,"dim")=8 + Set gtmtypes("d_tt_struct",9,"name")="d_tt_struct.fildes" + Set gtmtypes("d_tt_struct",9,"off")=52 + Set gtmtypes("d_tt_struct",9,"len")=4 + Set gtmtypes("d_tt_struct",9,"type")="int" + Set gtmtypfldindx("d_tt_struct","fildes")=9 + Set gtmtypes("d_tt_struct",10,"name")="d_tt_struct.ttio_struct" + Set gtmtypes("d_tt_struct",10,"off")=56 + Set gtmtypes("d_tt_struct",10,"len")=4 + Set gtmtypes("d_tt_struct",10,"type")="addr" + Set gtmtypfldindx("d_tt_struct","ttio_struct")=10 + Set gtmtypes("d_tt_struct",11,"name")="d_tt_struct.tt_state_save" + Set gtmtypes("d_tt_struct",11,"off")=60 + Set gtmtypes("d_tt_struct",11,"len")=104 + Set gtmtypes("d_tt_struct",11,"type")="tt_interrupt" + Set gtmtypfldindx("d_tt_struct","tt_state_save")=11 + Set gtmtypes("d_tt_struct",12,"name")="d_tt_struct.tt_state_save.who_saved" + Set gtmtypes("d_tt_struct",12,"off")=60 + Set gtmtypes("d_tt_struct",12,"len")=4 + Set gtmtypes("d_tt_struct",12,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.who_saved")=12 + Set gtmtypes("d_tt_struct",13,"name")="d_tt_struct.tt_state_save.buffer_start" + Set gtmtypes("d_tt_struct",13,"off")=64 + Set gtmtypes("d_tt_struct",13,"len")=4 + Set gtmtypes("d_tt_struct",13,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.buffer_start")=13 + Set gtmtypes("d_tt_struct",14,"name")="d_tt_struct.tt_state_save.buffer_32_start" + Set gtmtypes("d_tt_struct",14,"off")=68 + Set gtmtypes("d_tt_struct",14,"len")=4 + Set gtmtypes("d_tt_struct",14,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.buffer_32_start")=14 + Set gtmtypes("d_tt_struct",15,"name")="d_tt_struct.tt_state_save.utf8_more" + Set gtmtypes("d_tt_struct",15,"off")=72 + Set gtmtypes("d_tt_struct",15,"len")=4 + Set gtmtypes("d_tt_struct",15,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.utf8_more")=15 + Set gtmtypes("d_tt_struct",16,"name")="d_tt_struct.tt_state_save.dx" + Set gtmtypes("d_tt_struct",16,"off")=76 + Set gtmtypes("d_tt_struct",16,"len")=4 + Set gtmtypes("d_tt_struct",16,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx")=16 + Set gtmtypes("d_tt_struct",17,"name")="d_tt_struct.tt_state_save.dx_start" + Set gtmtypes("d_tt_struct",17,"off")=80 + Set gtmtypes("d_tt_struct",17,"len")=4 + Set gtmtypes("d_tt_struct",17,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_start")=17 + Set gtmtypes("d_tt_struct",18,"name")="d_tt_struct.tt_state_save.dx_instr" + Set gtmtypes("d_tt_struct",18,"off")=84 + Set gtmtypes("d_tt_struct",18,"len")=4 + Set gtmtypes("d_tt_struct",18,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_instr")=18 + Set gtmtypes("d_tt_struct",19,"name")="d_tt_struct.tt_state_save.dx_outlen" + Set gtmtypes("d_tt_struct",19,"off")=88 + Set gtmtypes("d_tt_struct",19,"len")=4 + Set gtmtypes("d_tt_struct",19,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_outlen")=19 + Set gtmtypes("d_tt_struct",20,"name")="d_tt_struct.tt_state_save.instr" + Set gtmtypes("d_tt_struct",20,"off")=92 + Set gtmtypes("d_tt_struct",20,"len")=4 + Set gtmtypes("d_tt_struct",20,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.instr")=20 + Set gtmtypes("d_tt_struct",21,"name")="d_tt_struct.tt_state_save.outlen" + Set gtmtypes("d_tt_struct",21,"off")=96 + Set gtmtypes("d_tt_struct",21,"len")=4 + Set gtmtypes("d_tt_struct",21,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.outlen")=21 + Set gtmtypes("d_tt_struct",22,"name")="d_tt_struct.tt_state_save.index" + Set gtmtypes("d_tt_struct",22,"off")=100 + Set gtmtypes("d_tt_struct",22,"len")=4 + Set gtmtypes("d_tt_struct",22,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.index")=22 + Set gtmtypes("d_tt_struct",23,"name")="d_tt_struct.tt_state_save.cl" + Set gtmtypes("d_tt_struct",23,"off")=104 + Set gtmtypes("d_tt_struct",23,"len")=4 + Set gtmtypes("d_tt_struct",23,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.cl")=23 + Set gtmtypes("d_tt_struct",24,"name")="d_tt_struct.tt_state_save.length" + Set gtmtypes("d_tt_struct",24,"off")=108 + Set gtmtypes("d_tt_struct",24,"len")=4 + Set gtmtypes("d_tt_struct",24,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.length")=24 + Set gtmtypes("d_tt_struct",25,"name")="d_tt_struct.tt_state_save.exp_length" + Set gtmtypes("d_tt_struct",25,"off")=112 + Set gtmtypes("d_tt_struct",25,"len")=4 + Set gtmtypes("d_tt_struct",25,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.exp_length")=25 + Set gtmtypes("d_tt_struct",26,"name")="d_tt_struct.tt_state_save.insert_mode" + Set gtmtypes("d_tt_struct",26,"off")=116 + Set gtmtypes("d_tt_struct",26,"len")=4 + Set gtmtypes("d_tt_struct",26,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","tt_state_save.insert_mode")=26 + Set gtmtypes("d_tt_struct",27,"name")="d_tt_struct.tt_state_save.end_time" + Set gtmtypes("d_tt_struct",27,"off")=120 + Set gtmtypes("d_tt_struct",27,"len")=8 + Set gtmtypes("d_tt_struct",27,"type")="ABS_TIME" + Set gtmtypfldindx("d_tt_struct","tt_state_save.end_time")=27 + Set gtmtypes("d_tt_struct",28,"name")="d_tt_struct.tt_state_save.more_ptr" + Set gtmtypes("d_tt_struct",28,"off")=128 + Set gtmtypes("d_tt_struct",28,"len")=4 + Set gtmtypes("d_tt_struct",28,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.more_ptr")=28 + Set gtmtypes("d_tt_struct",29,"name")="d_tt_struct.tt_state_save.zb_ptr" + Set gtmtypes("d_tt_struct",29,"off")=132 + Set gtmtypes("d_tt_struct",29,"len")=4 + Set gtmtypes("d_tt_struct",29,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.zb_ptr")=29 + Set gtmtypes("d_tt_struct",30,"name")="d_tt_struct.tt_state_save.zb_top" + Set gtmtypes("d_tt_struct",30,"off")=136 + Set gtmtypes("d_tt_struct",30,"len")=4 + Set gtmtypes("d_tt_struct",30,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.zb_top")=30 + Set gtmtypes("d_tt_struct",31,"name")="d_tt_struct.tt_state_save.escape_length" + Set gtmtypes("d_tt_struct",31,"off")=140 + Set gtmtypes("d_tt_struct",31,"len")=2 + Set gtmtypes("d_tt_struct",31,"type")="unsigned-short" + Set gtmtypfldindx("d_tt_struct","tt_state_save.escape_length")=31 + Set gtmtypes("d_tt_struct",32,"name")="d_tt_struct.tt_state_save.escape_sequence" + Set gtmtypes("d_tt_struct",32,"off")=142 + Set gtmtypes("d_tt_struct",32,"len")=16 + Set gtmtypes("d_tt_struct",32,"type")="unsigned-char" + Set gtmtypfldindx("d_tt_struct","tt_state_save.escape_sequence")=32 + Set gtmtypes("d_tt_struct",33,"name")="d_tt_struct.tt_state_save.more_buf" + Set gtmtypes("d_tt_struct",33,"off")=158 + Set gtmtypes("d_tt_struct",33,"len")=5 + Set gtmtypes("d_tt_struct",33,"type")="unsigned-char" + Set gtmtypfldindx("d_tt_struct","tt_state_save.more_buf")=33 + Set gtmtypes("d_tt_struct",34,"name")="d_tt_struct.mupintr" + Set gtmtypes("d_tt_struct",34,"off")=164 + Set gtmtypes("d_tt_struct",34,"len")=4 + Set gtmtypes("d_tt_struct",34,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","mupintr")=34 + Set gtmtypes("d_tt_struct",35,"name")="d_tt_struct.ttybuff" + Set gtmtypes("d_tt_struct",35,"off")=168 + Set gtmtypes("d_tt_struct",35,"len")=4 + Set gtmtypes("d_tt_struct",35,"type")="addr" + Set gtmtypfldindx("d_tt_struct","ttybuff")=35 + Set gtmtypes("d_tt_struct",36,"name")="d_tt_struct.tbuffp" + Set gtmtypes("d_tt_struct",36,"off")=172 + Set gtmtypes("d_tt_struct",36,"len")=4 + Set gtmtypes("d_tt_struct",36,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tbuffp")=36 + Set gtmtypes("d_tt_struct",37,"name")="d_tt_struct.timer_set" + Set gtmtypes("d_tt_struct",37,"off")=176 + Set gtmtypes("d_tt_struct",37,"len")=4 + Set gtmtypes("d_tt_struct",37,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","timer_set")=37 + Set gtmtypes("d_tt_struct",38,"name")="d_tt_struct.write_active" + Set gtmtypes("d_tt_struct",38,"off")=180 + Set gtmtypes("d_tt_struct",38,"len")=4 + Set gtmtypes("d_tt_struct",38,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","write_active")=38 + Set gtmtypes("d_tt_struct",39,"name")="d_tt_struct.canonical" + Set gtmtypes("d_tt_struct",39,"off")=184 + Set gtmtypes("d_tt_struct",39,"len")=4 + Set gtmtypes("d_tt_struct",39,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","canonical")=39 + Set gtmtypes("d_tt_struct",40,"name")="d_tt_struct.recall_buff" + Set gtmtypes("d_tt_struct",40,"off")=188 + Set gtmtypes("d_tt_struct",40,"len")=12 + Set gtmtypes("d_tt_struct",40,"type")="mstr" + Set gtmtypfldindx("d_tt_struct","recall_buff")=40 + Set gtmtypes("d_tt_struct",41,"name")="d_tt_struct.recall_buff.char_len" + Set gtmtypes("d_tt_struct",41,"off")=188 + Set gtmtypes("d_tt_struct",41,"len")=4 + Set gtmtypes("d_tt_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","recall_buff.char_len")=41 + Set gtmtypes("d_tt_struct",42,"name")="d_tt_struct.recall_buff.len" + Set gtmtypes("d_tt_struct",42,"off")=192 + Set gtmtypes("d_tt_struct",42,"len")=4 + Set gtmtypes("d_tt_struct",42,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_buff.len")=42 + Set gtmtypes("d_tt_struct",43,"name")="d_tt_struct.recall_buff.addr" + Set gtmtypes("d_tt_struct",43,"off")=196 + Set gtmtypes("d_tt_struct",43,"len")=4 + Set gtmtypes("d_tt_struct",43,"type")="addr" + Set gtmtypfldindx("d_tt_struct","recall_buff.addr")=43 + Set gtmtypes("d_tt_struct",44,"name")="d_tt_struct.recall_size" + Set gtmtypes("d_tt_struct",44,"off")=200 + Set gtmtypes("d_tt_struct",44,"len")=4 + Set gtmtypes("d_tt_struct",44,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_size")=44 + Set gtmtypes("d_tt_struct",45,"name")="d_tt_struct.recall_width" + Set gtmtypes("d_tt_struct",45,"off")=204 + Set gtmtypes("d_tt_struct",45,"len")=4 + Set gtmtypes("d_tt_struct",45,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_width")=45 + Set gtmtypes("d_tt_struct",46,"name")="d_tt_struct.discard_lf" + Set gtmtypes("d_tt_struct",46,"off")=208 + Set gtmtypes("d_tt_struct",46,"len")=4 + Set gtmtypes("d_tt_struct",46,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","discard_lf")=46 + Set gtmtypes("d_tt_struct",47,"name")="d_tt_struct.default_mask_term" + Set gtmtypes("d_tt_struct",47,"off")=212 + Set gtmtypes("d_tt_struct",47,"len")=4 + Set gtmtypes("d_tt_struct",47,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","default_mask_term")=47 + Set gtmtypes("d_tt_struct",48,"name")="d_tt_struct.done_1st_read" + Set gtmtypes("d_tt_struct",48,"off")=216 + Set gtmtypes("d_tt_struct",48,"len")=4 + Set gtmtypes("d_tt_struct",48,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","done_1st_read")=48 + ; + Set gtmtypes("d_us_struct")="struct" + Set gtmtypes("d_us_struct",0)=1 + Set gtmtypes("d_us_struct","len")=4 + Set gtmtypes("d_us_struct",1,"name")="d_us_struct.disp" + Set gtmtypes("d_us_struct",1,"off")=0 + Set gtmtypes("d_us_struct",1,"len")=4 + Set gtmtypes("d_us_struct",1,"type")="addr" + Set gtmtypfldindx("d_us_struct","disp")=1 + ; + Set gtmtypes("date_time")="struct" + Set gtmtypes("date_time",0)=2 + Set gtmtypes("date_time","len")=8 + Set gtmtypes("date_time",1,"name")="date_time.low" + Set gtmtypes("date_time",1,"off")=0 + Set gtmtypes("date_time",1,"len")=4 + Set gtmtypes("date_time",1,"type")="unsigned-int" + Set gtmtypfldindx("date_time","low")=1 + Set gtmtypes("date_time",2,"name")="date_time.high" + Set gtmtypes("date_time",2,"off")=4 + Set gtmtypes("date_time",2,"len")=4 + Set gtmtypes("date_time",2,"type")="unsigned-int" + Set gtmtypfldindx("date_time","high")=2 + ; + Set gtmtypes("db_csh_acct_rec")="struct" + Set gtmtypes("db_csh_acct_rec",0)=2 + Set gtmtypes("db_csh_acct_rec","len")=8 + Set gtmtypes("db_csh_acct_rec",1,"name")="db_csh_acct_rec.curr_count" + Set gtmtypes("db_csh_acct_rec",1,"off")=0 + Set gtmtypes("db_csh_acct_rec",1,"len")=4 + Set gtmtypes("db_csh_acct_rec",1,"type")="int" + Set gtmtypfldindx("db_csh_acct_rec","curr_count")=1 + Set gtmtypes("db_csh_acct_rec",2,"name")="db_csh_acct_rec.cumul_count" + Set gtmtypes("db_csh_acct_rec",2,"off")=4 + Set gtmtypes("db_csh_acct_rec",2,"len")=4 + Set gtmtypes("db_csh_acct_rec",2,"type")="int" + Set gtmtypfldindx("db_csh_acct_rec","cumul_count")=2 + ; + Set gtmtypes("dbc_gv_key")="struct" + Set gtmtypes("dbc_gv_key",0)=4 + Set gtmtypes("dbc_gv_key","len")=16 + Set gtmtypes("dbc_gv_key",1,"name")="dbc_gv_key.top" + Set gtmtypes("dbc_gv_key",1,"off")=0 + Set gtmtypes("dbc_gv_key",1,"len")=4 + Set gtmtypes("dbc_gv_key",1,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","top")=1 + Set gtmtypes("dbc_gv_key",2,"name")="dbc_gv_key.end" + Set gtmtypes("dbc_gv_key",2,"off")=4 + Set gtmtypes("dbc_gv_key",2,"len")=4 + Set gtmtypes("dbc_gv_key",2,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","end")=2 + Set gtmtypes("dbc_gv_key",3,"name")="dbc_gv_key.gvn_len" + Set gtmtypes("dbc_gv_key",3,"off")=8 + Set gtmtypes("dbc_gv_key",3,"len")=4 + Set gtmtypes("dbc_gv_key",3,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","gvn_len")=3 + Set gtmtypes("dbc_gv_key",4,"name")="dbc_gv_key.base" + Set gtmtypes("dbc_gv_key",4,"off")=12 + Set gtmtypes("dbc_gv_key",4,"len")=1 + Set gtmtypes("dbc_gv_key",4,"type")="unsigned-char" + Set gtmtypfldindx("dbc_gv_key","base")=4 + ; + Set gtmtypes("dbc_inserted_rec")="struct" + Set gtmtypes("dbc_inserted_rec",0)=2 + Set gtmtypes("dbc_inserted_rec","len")=8 + Set gtmtypes("dbc_inserted_rec",1,"name")="dbc_inserted_rec.ins_key" + Set gtmtypes("dbc_inserted_rec",1,"off")=0 + Set gtmtypes("dbc_inserted_rec",1,"len")=4 + Set gtmtypes("dbc_inserted_rec",1,"type")="addr" + Set gtmtypfldindx("dbc_inserted_rec","ins_key")=1 + Set gtmtypes("dbc_inserted_rec",2,"name")="dbc_inserted_rec.blk_id" + Set gtmtypes("dbc_inserted_rec",2,"off")=4 + Set gtmtypes("dbc_inserted_rec",2,"len")=4 + Set gtmtypes("dbc_inserted_rec",2,"type")="int" + Set gtmtypfldindx("dbc_inserted_rec","blk_id")=2 + ; + Set gtmtypes("ddp_announce_msg_t")="struct" + Set gtmtypes("ddp_announce_msg_t",0)=19 + Set gtmtypes("ddp_announce_msg_t","len")=106 + Set gtmtypes("ddp_announce_msg_t",1,"name")="ddp_announce_msg_t.filler0" + Set gtmtypes("ddp_announce_msg_t",1,"off")=0 + Set gtmtypes("ddp_announce_msg_t",1,"len")=2 + Set gtmtypes("ddp_announce_msg_t",1,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler0")=1 + Set gtmtypes("ddp_announce_msg_t",2,"name")="ddp_announce_msg_t.code" + Set gtmtypes("ddp_announce_msg_t",2,"off")=2 + Set gtmtypes("ddp_announce_msg_t",2,"len")=2 + Set gtmtypes("ddp_announce_msg_t",2,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","code")=2 + Set gtmtypes("ddp_announce_msg_t",3,"name")="ddp_announce_msg_t.ether_addr" + Set gtmtypes("ddp_announce_msg_t",3,"off")=4 + Set gtmtypes("ddp_announce_msg_t",3,"len")=6 + Set gtmtypes("ddp_announce_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","ether_addr")=3 + Set gtmtypes("ddp_announce_msg_t",4,"name")="ddp_announce_msg_t.circuit_name" + Set gtmtypes("ddp_announce_msg_t",4,"off")=10 + Set gtmtypes("ddp_announce_msg_t",4,"len")=2 + Set gtmtypes("ddp_announce_msg_t",4,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","circuit_name")=4 + Set gtmtypes("ddp_announce_msg_t",5,"name")="ddp_announce_msg_t.filler1" + Set gtmtypes("ddp_announce_msg_t",5,"off")=12 + Set gtmtypes("ddp_announce_msg_t",5,"len")=2 + Set gtmtypes("ddp_announce_msg_t",5,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler1")=5 + Set gtmtypes("ddp_announce_msg_t",6,"name")="ddp_announce_msg_t.filler2" + Set gtmtypes("ddp_announce_msg_t",6,"off")=14 + Set gtmtypes("ddp_announce_msg_t",6,"len")=2 + Set gtmtypes("ddp_announce_msg_t",6,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler2")=6 + Set gtmtypes("ddp_announce_msg_t",7,"name")="ddp_announce_msg_t.max_job_no" + Set gtmtypes("ddp_announce_msg_t",7,"off")=16 + Set gtmtypes("ddp_announce_msg_t",7,"len")=2 + Set gtmtypes("ddp_announce_msg_t",7,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","max_job_no")=7 + Set gtmtypes("ddp_announce_msg_t",8,"name")="ddp_announce_msg_t.group_mask" + Set gtmtypes("ddp_announce_msg_t",8,"off")=18 + Set gtmtypes("ddp_announce_msg_t",8,"len")=2 + Set gtmtypes("ddp_announce_msg_t",8,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","group_mask")=8 + Set gtmtypes("ddp_announce_msg_t",9,"name")="ddp_announce_msg_t.advertise_interval" + Set gtmtypes("ddp_announce_msg_t",9,"off")=20 + Set gtmtypes("ddp_announce_msg_t",9,"len")=1 + Set gtmtypes("ddp_announce_msg_t",9,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","advertise_interval")=9 + Set gtmtypes("ddp_announce_msg_t",10,"name")="ddp_announce_msg_t.max_request_credits" + Set gtmtypes("ddp_announce_msg_t",10,"off")=21 + Set gtmtypes("ddp_announce_msg_t",10,"len")=1 + Set gtmtypes("ddp_announce_msg_t",10,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","max_request_credits")=10 + Set gtmtypes("ddp_announce_msg_t",11,"name")="ddp_announce_msg_t.cpu_type" + Set gtmtypes("ddp_announce_msg_t",11,"off")=22 + Set gtmtypes("ddp_announce_msg_t",11,"len")=1 + Set gtmtypes("ddp_announce_msg_t",11,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","cpu_type")=11 + Set gtmtypes("ddp_announce_msg_t",12,"name")="ddp_announce_msg_t.version" + Set gtmtypes("ddp_announce_msg_t",12,"off")=23 + Set gtmtypes("ddp_announce_msg_t",12,"len")=1 + Set gtmtypes("ddp_announce_msg_t",12,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","version")=12 + Set gtmtypes("ddp_announce_msg_t",13,"name")="ddp_announce_msg_t.cpu_load_rating" + Set gtmtypes("ddp_announce_msg_t",13,"off")=24 + Set gtmtypes("ddp_announce_msg_t",13,"len")=1 + Set gtmtypes("ddp_announce_msg_t",13,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","cpu_load_rating")=13 + Set gtmtypes("ddp_announce_msg_t",14,"name")="ddp_announce_msg_t.proto_version" + Set gtmtypes("ddp_announce_msg_t",14,"off")=25 + Set gtmtypes("ddp_announce_msg_t",14,"len")=1 + Set gtmtypes("ddp_announce_msg_t",14,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","proto_version")=14 + Set gtmtypes("ddp_announce_msg_t",15,"name")="ddp_announce_msg_t.node_status" + Set gtmtypes("ddp_announce_msg_t",15,"off")=26 + Set gtmtypes("ddp_announce_msg_t",15,"len")=1 + Set gtmtypes("ddp_announce_msg_t",15,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","node_status")=15 + Set gtmtypes("ddp_announce_msg_t",16,"name")="ddp_announce_msg_t.autoconfigure_version" + Set gtmtypes("ddp_announce_msg_t",16,"off")=27 + Set gtmtypes("ddp_announce_msg_t",16,"len")=1 + Set gtmtypes("ddp_announce_msg_t",16,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","autoconfigure_version")=16 + Set gtmtypes("ddp_announce_msg_t",17,"name")="ddp_announce_msg_t.volset" + Set gtmtypes("ddp_announce_msg_t",17,"off")=28 + Set gtmtypes("ddp_announce_msg_t",17,"len")=32 + Set gtmtypes("ddp_announce_msg_t",17,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","volset")=17 + Set gtmtypes("ddp_announce_msg_t",17,"dim")=16 + Set gtmtypes("ddp_announce_msg_t",18,"name")="ddp_announce_msg_t.filler3" + Set gtmtypes("ddp_announce_msg_t",18,"off")=60 + Set gtmtypes("ddp_announce_msg_t",18,"len")=44 + Set gtmtypes("ddp_announce_msg_t",18,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","filler3")=18 + Set gtmtypes("ddp_announce_msg_t",19,"name")="ddp_announce_msg_t.terminator" + Set gtmtypes("ddp_announce_msg_t",19,"off")=104 + Set gtmtypes("ddp_announce_msg_t",19,"len")=1 + Set gtmtypes("ddp_announce_msg_t",19,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","terminator")=19 + ; + Set gtmtypes("ddp_global_request_t")="struct" + Set gtmtypes("ddp_global_request_t",0)=6 + Set gtmtypes("ddp_global_request_t","len")=10 + Set gtmtypes("ddp_global_request_t",1,"name")="ddp_global_request_t.naked_size" + Set gtmtypes("ddp_global_request_t",1,"off")=0 + Set gtmtypes("ddp_global_request_t",1,"len")=1 + Set gtmtypes("ddp_global_request_t",1,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","naked_size")=1 + Set gtmtypes("ddp_global_request_t",2,"name")="ddp_global_request_t.uci" + Set gtmtypes("ddp_global_request_t",2,"off")=2 + Set gtmtypes("ddp_global_request_t",2,"len")=2 + Set gtmtypes("ddp_global_request_t",2,"type")="unsigned-short" + Set gtmtypfldindx("ddp_global_request_t","uci")=2 + Set gtmtypes("ddp_global_request_t",3,"name")="ddp_global_request_t.vol" + Set gtmtypes("ddp_global_request_t",3,"off")=4 + Set gtmtypes("ddp_global_request_t",3,"len")=2 + Set gtmtypes("ddp_global_request_t",3,"type")="unsigned-short" + Set gtmtypfldindx("ddp_global_request_t","vol")=3 + Set gtmtypes("ddp_global_request_t",4,"name")="ddp_global_request_t.global_type" + Set gtmtypes("ddp_global_request_t",4,"off")=6 + Set gtmtypes("ddp_global_request_t",4,"len")=1 + Set gtmtypes("ddp_global_request_t",4,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global_type")=4 + Set gtmtypes("ddp_global_request_t",5,"name")="ddp_global_request_t.global_len" + Set gtmtypes("ddp_global_request_t",5,"off")=7 + Set gtmtypes("ddp_global_request_t",5,"len")=1 + Set gtmtypes("ddp_global_request_t",5,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global_len")=5 + Set gtmtypes("ddp_global_request_t",6,"name")="ddp_global_request_t.global" + Set gtmtypes("ddp_global_request_t",6,"off")=8 + Set gtmtypes("ddp_global_request_t",6,"len")=1 + Set gtmtypes("ddp_global_request_t",6,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global")=6 + ; + Set gtmtypes("ddp_hdr_t")="struct" + Set gtmtypes("ddp_hdr_t",0)=11 + Set gtmtypes("ddp_hdr_t","len")=16 + Set gtmtypes("ddp_hdr_t",1,"name")="ddp_hdr_t.trancode" + Set gtmtypes("ddp_hdr_t",1,"off")=0 + Set gtmtypes("ddp_hdr_t",1,"len")=1 + Set gtmtypes("ddp_hdr_t",1,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","trancode")=1 + Set gtmtypes("ddp_hdr_t",2,"name")="ddp_hdr_t.proto" + Set gtmtypes("ddp_hdr_t",2,"off")=1 + Set gtmtypes("ddp_hdr_t",2,"len")=1 + Set gtmtypes("ddp_hdr_t",2,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","proto")=2 + Set gtmtypes("ddp_hdr_t",3,"name")="ddp_hdr_t.source_circuit_name" + Set gtmtypes("ddp_hdr_t",3,"off")=2 + Set gtmtypes("ddp_hdr_t",3,"len")=2 + Set gtmtypes("ddp_hdr_t",3,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","source_circuit_name")=3 + Set gtmtypes("ddp_hdr_t",4,"name")="ddp_hdr_t.source_job_number" + Set gtmtypes("ddp_hdr_t",4,"off")=4 + Set gtmtypes("ddp_hdr_t",4,"len")=2 + Set gtmtypes("ddp_hdr_t",4,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","source_job_number")=4 + Set gtmtypes("ddp_hdr_t",5,"name")="ddp_hdr_t.remote_circuit_name" + Set gtmtypes("ddp_hdr_t",5,"off")=6 + Set gtmtypes("ddp_hdr_t",5,"len")=2 + Set gtmtypes("ddp_hdr_t",5,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","remote_circuit_name")=5 + Set gtmtypes("ddp_hdr_t",6,"name")="ddp_hdr_t.remote_job_number" + Set gtmtypes("ddp_hdr_t",6,"off")=8 + Set gtmtypes("ddp_hdr_t",6,"len")=2 + Set gtmtypes("ddp_hdr_t",6,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","remote_job_number")=6 + Set gtmtypes("ddp_hdr_t",7,"name")="ddp_hdr_t.message_number" + Set gtmtypes("ddp_hdr_t",7,"off")=10 + Set gtmtypes("ddp_hdr_t",7,"len")=1 + Set gtmtypes("ddp_hdr_t",7,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","message_number")=7 + Set gtmtypes("ddp_hdr_t",8,"name")="ddp_hdr_t.filler1" + Set gtmtypes("ddp_hdr_t",8,"off")=11 + Set gtmtypes("ddp_hdr_t",8,"len")=1 + Set gtmtypes("ddp_hdr_t",8,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","filler1")=8 + Set gtmtypes("ddp_hdr_t",9,"name")="ddp_hdr_t.message_length" + Set gtmtypes("ddp_hdr_t",9,"off")=12 + Set gtmtypes("ddp_hdr_t",9,"len")=2 + Set gtmtypes("ddp_hdr_t",9,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","message_length")=9 + Set gtmtypes("ddp_hdr_t",10,"name")="ddp_hdr_t.hdrlen" + Set gtmtypes("ddp_hdr_t",10,"off")=14 + Set gtmtypes("ddp_hdr_t",10,"len")=1 + Set gtmtypes("ddp_hdr_t",10,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","hdrlen")=10 + Set gtmtypes("ddp_hdr_t",11,"name")="ddp_hdr_t.txt" + Set gtmtypes("ddp_hdr_t",11,"off")=15 + Set gtmtypes("ddp_hdr_t",11,"len")=1 + Set gtmtypes("ddp_hdr_t",11,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","txt")=11 + ; + Set gtmtypes("ddp_info")="struct" + Set gtmtypes("ddp_info",0)=2 + Set gtmtypes("ddp_info","len")=4 + Set gtmtypes("ddp_info",1,"name")="ddp_info.uci" + Set gtmtypes("ddp_info",1,"off")=0 + Set gtmtypes("ddp_info",1,"len")=2 + Set gtmtypes("ddp_info",1,"type")="unsigned-short" + Set gtmtypfldindx("ddp_info","uci")=1 + Set gtmtypes("ddp_info",2,"name")="ddp_info.volset" + Set gtmtypes("ddp_info",2,"off")=2 + Set gtmtypes("ddp_info",2,"len")=2 + Set gtmtypes("ddp_info",2,"type")="unsigned-short" + Set gtmtypfldindx("ddp_info","volset")=2 + ; + Set gtmtypes("delimfmt")="union" + Set gtmtypes("delimfmt",0)=2 + Set gtmtypes("delimfmt","len")=4 + Set gtmtypes("delimfmt",1,"name")="delimfmt.unichar_val" + Set gtmtypes("delimfmt",1,"off")=0 + Set gtmtypes("delimfmt",1,"len")=4 + Set gtmtypes("delimfmt",1,"type")="int" + Set gtmtypfldindx("delimfmt","unichar_val")=1 + Set gtmtypes("delimfmt",2,"name")="delimfmt.unibytes_val" + Set gtmtypes("delimfmt",2,"off")=0 + Set gtmtypes("delimfmt",2,"len")=4 + Set gtmtypes("delimfmt",2,"type")="unsigned-char" + Set gtmtypfldindx("delimfmt","unibytes_val")=2 + ; + Set gtmtypes("desc_struct")="struct" + Set gtmtypes("desc_struct",0)=4 + Set gtmtypes("desc_struct","len")=8 + Set gtmtypes("desc_struct",1,"name")="desc_struct.len" + Set gtmtypes("desc_struct",1,"off")=0 + Set gtmtypes("desc_struct",1,"len")=2 + Set gtmtypes("desc_struct",1,"type")="unsigned-short" + Set gtmtypfldindx("desc_struct","len")=1 + Set gtmtypes("desc_struct",2,"name")="desc_struct.fill1" + Set gtmtypes("desc_struct",2,"off")=2 + Set gtmtypes("desc_struct",2,"len")=1 + Set gtmtypes("desc_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("desc_struct","fill1")=2 + Set gtmtypes("desc_struct",3,"name")="desc_struct.fill2" + Set gtmtypes("desc_struct",3,"off")=3 + Set gtmtypes("desc_struct",3,"len")=1 + Set gtmtypes("desc_struct",3,"type")="unsigned-char" + Set gtmtypfldindx("desc_struct","fill2")=3 + Set gtmtypes("desc_struct",4,"name")="desc_struct.addr" + Set gtmtypes("desc_struct",4,"off")=4 + Set gtmtypes("desc_struct",4,"len")=4 + Set gtmtypes("desc_struct",4,"type")="addr" + Set gtmtypfldindx("desc_struct","addr")=4 + ; + Set gtmtypes("dev_ctl_struct")="struct" + Set gtmtypes("dev_ctl_struct",0)=2 + Set gtmtypes("dev_ctl_struct","len")=2 + Set gtmtypes("dev_ctl_struct",1,"name")="dev_ctl_struct.valid_with" + Set gtmtypes("dev_ctl_struct",1,"off")=0 + Set gtmtypes("dev_ctl_struct",1,"len")=1 + Set gtmtypes("dev_ctl_struct",1,"type")="unsigned-char" + Set gtmtypfldindx("dev_ctl_struct","valid_with")=1 + Set gtmtypes("dev_ctl_struct",2,"name")="dev_ctl_struct.source_type" + Set gtmtypes("dev_ctl_struct",2,"off")=1 + Set gtmtypes("dev_ctl_struct",2,"len")=1 + Set gtmtypes("dev_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("dev_ctl_struct","source_type")=2 + ; + Set gtmtypes("dev_dispatch_struct")="struct" + Set gtmtypes("dev_dispatch_struct",0)=16 + Set gtmtypes("dev_dispatch_struct","len")=64 + Set gtmtypes("dev_dispatch_struct",1,"name")="dev_dispatch_struct.open" + Set gtmtypes("dev_dispatch_struct",1,"off")=0 + Set gtmtypes("dev_dispatch_struct",1,"len")=4 + Set gtmtypes("dev_dispatch_struct",1,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","open")=1 + Set gtmtypes("dev_dispatch_struct",2,"name")="dev_dispatch_struct.gtm_close" + Set gtmtypes("dev_dispatch_struct",2,"off")=4 + Set gtmtypes("dev_dispatch_struct",2,"len")=4 + Set gtmtypes("dev_dispatch_struct",2,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","gtm_close")=2 + Set gtmtypes("dev_dispatch_struct",3,"name")="dev_dispatch_struct.use" + Set gtmtypes("dev_dispatch_struct",3,"off")=8 + Set gtmtypes("dev_dispatch_struct",3,"len")=4 + Set gtmtypes("dev_dispatch_struct",3,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","use")=3 + Set gtmtypes("dev_dispatch_struct",4,"name")="dev_dispatch_struct.read" + Set gtmtypes("dev_dispatch_struct",4,"off")=12 + Set gtmtypes("dev_dispatch_struct",4,"len")=4 + Set gtmtypes("dev_dispatch_struct",4,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","read")=4 + Set gtmtypes("dev_dispatch_struct",5,"name")="dev_dispatch_struct.rdone" + Set gtmtypes("dev_dispatch_struct",5,"off")=16 + Set gtmtypes("dev_dispatch_struct",5,"len")=4 + Set gtmtypes("dev_dispatch_struct",5,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","rdone")=5 + Set gtmtypes("dev_dispatch_struct",6,"name")="dev_dispatch_struct.write" + Set gtmtypes("dev_dispatch_struct",6,"off")=20 + Set gtmtypes("dev_dispatch_struct",6,"len")=4 + Set gtmtypes("dev_dispatch_struct",6,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","write")=6 + Set gtmtypes("dev_dispatch_struct",7,"name")="dev_dispatch_struct.wtone" + Set gtmtypes("dev_dispatch_struct",7,"off")=24 + Set gtmtypes("dev_dispatch_struct",7,"len")=4 + Set gtmtypes("dev_dispatch_struct",7,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wtone")=7 + Set gtmtypes("dev_dispatch_struct",8,"name")="dev_dispatch_struct.wteol" + Set gtmtypes("dev_dispatch_struct",8,"off")=28 + Set gtmtypes("dev_dispatch_struct",8,"len")=4 + Set gtmtypes("dev_dispatch_struct",8,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wteol")=8 + Set gtmtypes("dev_dispatch_struct",9,"name")="dev_dispatch_struct.wtff" + Set gtmtypes("dev_dispatch_struct",9,"off")=32 + Set gtmtypes("dev_dispatch_struct",9,"len")=4 + Set gtmtypes("dev_dispatch_struct",9,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wtff")=9 + Set gtmtypes("dev_dispatch_struct",10,"name")="dev_dispatch_struct.wttab" + Set gtmtypes("dev_dispatch_struct",10,"off")=36 + Set gtmtypes("dev_dispatch_struct",10,"len")=4 + Set gtmtypes("dev_dispatch_struct",10,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wttab")=10 + Set gtmtypes("dev_dispatch_struct",11,"name")="dev_dispatch_struct.flush" + Set gtmtypes("dev_dispatch_struct",11,"off")=40 + Set gtmtypes("dev_dispatch_struct",11,"len")=4 + Set gtmtypes("dev_dispatch_struct",11,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","flush")=11 + Set gtmtypes("dev_dispatch_struct",12,"name")="dev_dispatch_struct.readfl" + Set gtmtypes("dev_dispatch_struct",12,"off")=44 + Set gtmtypes("dev_dispatch_struct",12,"len")=4 + Set gtmtypes("dev_dispatch_struct",12,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","readfl")=12 + Set gtmtypes("dev_dispatch_struct",13,"name")="dev_dispatch_struct.iocontrol" + Set gtmtypes("dev_dispatch_struct",13,"off")=48 + Set gtmtypes("dev_dispatch_struct",13,"len")=4 + Set gtmtypes("dev_dispatch_struct",13,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","iocontrol")=13 + Set gtmtypes("dev_dispatch_struct",14,"name")="dev_dispatch_struct.dlr_device" + Set gtmtypes("dev_dispatch_struct",14,"off")=52 + Set gtmtypes("dev_dispatch_struct",14,"len")=4 + Set gtmtypes("dev_dispatch_struct",14,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_device")=14 + Set gtmtypes("dev_dispatch_struct",15,"name")="dev_dispatch_struct.dlr_key" + Set gtmtypes("dev_dispatch_struct",15,"off")=56 + Set gtmtypes("dev_dispatch_struct",15,"len")=4 + Set gtmtypes("dev_dispatch_struct",15,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_key")=15 + Set gtmtypes("dev_dispatch_struct",16,"name")="dev_dispatch_struct.dlr_zkey" + Set gtmtypes("dev_dispatch_struct",16,"off")=60 + Set gtmtypes("dev_dispatch_struct",16,"len")=4 + Set gtmtypes("dev_dispatch_struct",16,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_zkey")=16 + ; + Set gtmtypes("dollar_ecode_struct")="struct" + Set gtmtypes("dollar_ecode_struct",0)=4 + Set gtmtypes("dollar_ecode_struct","len")=12 + Set gtmtypes("dollar_ecode_struct",1,"name")="dollar_ecode_struct.ecode_str" + Set gtmtypes("dollar_ecode_struct",1,"off")=0 + Set gtmtypes("dollar_ecode_struct",1,"len")=12 + Set gtmtypes("dollar_ecode_struct",1,"type")="mstr" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str")=1 + Set gtmtypes("dollar_ecode_struct",2,"name")="dollar_ecode_struct.ecode_str.char_len" + Set gtmtypes("dollar_ecode_struct",2,"off")=0 + Set gtmtypes("dollar_ecode_struct",2,"len")=4 + Set gtmtypes("dollar_ecode_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.char_len")=2 + Set gtmtypes("dollar_ecode_struct",3,"name")="dollar_ecode_struct.ecode_str.len" + Set gtmtypes("dollar_ecode_struct",3,"off")=4 + Set gtmtypes("dollar_ecode_struct",3,"len")=4 + Set gtmtypes("dollar_ecode_struct",3,"type")="int" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.len")=3 + Set gtmtypes("dollar_ecode_struct",4,"name")="dollar_ecode_struct.ecode_str.addr" + Set gtmtypes("dollar_ecode_struct",4,"off")=8 + Set gtmtypes("dollar_ecode_struct",4,"len")=4 + Set gtmtypes("dollar_ecode_struct",4,"type")="addr" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.addr")=4 + ; + Set gtmtypes("dollar_ecode_type")="struct" + Set gtmtypes("dollar_ecode_type",0)=11 + Set gtmtypes("dollar_ecode_type","len")=44 + Set gtmtypes("dollar_ecode_type",1,"name")="dollar_ecode_type.begin" + Set gtmtypes("dollar_ecode_type",1,"off")=0 + Set gtmtypes("dollar_ecode_type",1,"len")=4 + Set gtmtypes("dollar_ecode_type",1,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","begin")=1 + Set gtmtypes("dollar_ecode_type",2,"name")="dollar_ecode_type.end" + Set gtmtypes("dollar_ecode_type",2,"off")=4 + Set gtmtypes("dollar_ecode_type",2,"len")=4 + Set gtmtypes("dollar_ecode_type",2,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","end")=2 + Set gtmtypes("dollar_ecode_type",3,"name")="dollar_ecode_type.top" + Set gtmtypes("dollar_ecode_type",3,"off")=8 + Set gtmtypes("dollar_ecode_type",3,"len")=4 + Set gtmtypes("dollar_ecode_type",3,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","top")=3 + Set gtmtypes("dollar_ecode_type",4,"name")="dollar_ecode_type.array" + Set gtmtypes("dollar_ecode_type",4,"off")=12 + Set gtmtypes("dollar_ecode_type",4,"len")=4 + Set gtmtypes("dollar_ecode_type",4,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","array")=4 + Set gtmtypes("dollar_ecode_type",5,"name")="dollar_ecode_type.index" + Set gtmtypes("dollar_ecode_type",5,"off")=16 + Set gtmtypes("dollar_ecode_type",5,"len")=4 + Set gtmtypes("dollar_ecode_type",5,"type")="unsigned-int" + Set gtmtypfldindx("dollar_ecode_type","index")=5 + Set gtmtypes("dollar_ecode_type",6,"name")="dollar_ecode_type.error_last_ecode" + Set gtmtypes("dollar_ecode_type",6,"off")=20 + Set gtmtypes("dollar_ecode_type",6,"len")=4 + Set gtmtypes("dollar_ecode_type",6,"type")="int" + Set gtmtypfldindx("dollar_ecode_type","error_last_ecode")=6 + Set gtmtypes("dollar_ecode_type",7,"name")="dollar_ecode_type.error_last_b_line" + Set gtmtypes("dollar_ecode_type",7,"off")=24 + Set gtmtypes("dollar_ecode_type",7,"len")=4 + Set gtmtypes("dollar_ecode_type",7,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_last_b_line")=7 + Set gtmtypes("dollar_ecode_type",8,"name")="dollar_ecode_type.first_ecode_error_frame" + Set gtmtypes("dollar_ecode_type",8,"off")=28 + Set gtmtypes("dollar_ecode_type",8,"len")=4 + Set gtmtypes("dollar_ecode_type",8,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","first_ecode_error_frame")=8 + Set gtmtypes("dollar_ecode_type",9,"name")="dollar_ecode_type.error_rtn_addr" + Set gtmtypes("dollar_ecode_type",9,"off")=32 + Set gtmtypes("dollar_ecode_type",9,"len")=4 + Set gtmtypes("dollar_ecode_type",9,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_rtn_addr")=9 + Set gtmtypes("dollar_ecode_type",10,"name")="dollar_ecode_type.error_rtn_ctxt" + Set gtmtypes("dollar_ecode_type",10,"off")=36 + Set gtmtypes("dollar_ecode_type",10,"len")=4 + Set gtmtypes("dollar_ecode_type",10,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_rtn_ctxt")=10 + Set gtmtypes("dollar_ecode_type",11,"name")="dollar_ecode_type.error_return_addr" + Set gtmtypes("dollar_ecode_type",11,"off")=40 + Set gtmtypes("dollar_ecode_type",11,"len")=4 + Set gtmtypes("dollar_ecode_type",11,"type")="void" + Set gtmtypfldindx("dollar_ecode_type","error_return_addr")=11 + ; + Set gtmtypes("dollar_stack_struct")="struct" + Set gtmtypes("dollar_stack_struct",0)=13 + Set gtmtypes("dollar_stack_struct","len")=40 + Set gtmtypes("dollar_stack_struct",1,"name")="dollar_stack_struct.mode_str" + Set gtmtypes("dollar_stack_struct",1,"off")=0 + Set gtmtypes("dollar_stack_struct",1,"len")=12 + Set gtmtypes("dollar_stack_struct",1,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","mode_str")=1 + Set gtmtypes("dollar_stack_struct",2,"name")="dollar_stack_struct.mode_str.char_len" + Set gtmtypes("dollar_stack_struct",2,"off")=0 + Set gtmtypes("dollar_stack_struct",2,"len")=4 + Set gtmtypes("dollar_stack_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","mode_str.char_len")=2 + Set gtmtypes("dollar_stack_struct",3,"name")="dollar_stack_struct.mode_str.len" + Set gtmtypes("dollar_stack_struct",3,"off")=4 + Set gtmtypes("dollar_stack_struct",3,"len")=4 + Set gtmtypes("dollar_stack_struct",3,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","mode_str.len")=3 + Set gtmtypes("dollar_stack_struct",4,"name")="dollar_stack_struct.mode_str.addr" + Set gtmtypes("dollar_stack_struct",4,"off")=8 + Set gtmtypes("dollar_stack_struct",4,"len")=4 + Set gtmtypes("dollar_stack_struct",4,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","mode_str.addr")=4 + Set gtmtypes("dollar_stack_struct",5,"name")="dollar_stack_struct.ecode_ptr" + Set gtmtypes("dollar_stack_struct",5,"off")=12 + Set gtmtypes("dollar_stack_struct",5,"len")=4 + Set gtmtypes("dollar_stack_struct",5,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","ecode_ptr")=5 + Set gtmtypes("dollar_stack_struct",6,"name")="dollar_stack_struct.mcode_str" + Set gtmtypes("dollar_stack_struct",6,"off")=16 + Set gtmtypes("dollar_stack_struct",6,"len")=12 + Set gtmtypes("dollar_stack_struct",6,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","mcode_str")=6 + Set gtmtypes("dollar_stack_struct",7,"name")="dollar_stack_struct.mcode_str.char_len" + Set gtmtypes("dollar_stack_struct",7,"off")=16 + Set gtmtypes("dollar_stack_struct",7,"len")=4 + Set gtmtypes("dollar_stack_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.char_len")=7 + Set gtmtypes("dollar_stack_struct",8,"name")="dollar_stack_struct.mcode_str.len" + Set gtmtypes("dollar_stack_struct",8,"off")=20 + Set gtmtypes("dollar_stack_struct",8,"len")=4 + Set gtmtypes("dollar_stack_struct",8,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.len")=8 + Set gtmtypes("dollar_stack_struct",9,"name")="dollar_stack_struct.mcode_str.addr" + Set gtmtypes("dollar_stack_struct",9,"off")=24 + Set gtmtypes("dollar_stack_struct",9,"len")=4 + Set gtmtypes("dollar_stack_struct",9,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.addr")=9 + Set gtmtypes("dollar_stack_struct",10,"name")="dollar_stack_struct.place_str" + Set gtmtypes("dollar_stack_struct",10,"off")=28 + Set gtmtypes("dollar_stack_struct",10,"len")=12 + Set gtmtypes("dollar_stack_struct",10,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","place_str")=10 + Set gtmtypes("dollar_stack_struct",11,"name")="dollar_stack_struct.place_str.char_len" + Set gtmtypes("dollar_stack_struct",11,"off")=28 + Set gtmtypes("dollar_stack_struct",11,"len")=4 + Set gtmtypes("dollar_stack_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","place_str.char_len")=11 + Set gtmtypes("dollar_stack_struct",12,"name")="dollar_stack_struct.place_str.len" + Set gtmtypes("dollar_stack_struct",12,"off")=32 + Set gtmtypes("dollar_stack_struct",12,"len")=4 + Set gtmtypes("dollar_stack_struct",12,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","place_str.len")=12 + Set gtmtypes("dollar_stack_struct",13,"name")="dollar_stack_struct.place_str.addr" + Set gtmtypes("dollar_stack_struct",13,"off")=36 + Set gtmtypes("dollar_stack_struct",13,"len")=4 + Set gtmtypes("dollar_stack_struct",13,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","place_str.addr")=13 + ; + Set gtmtypes("dollar_stack_type")="struct" + Set gtmtypes("dollar_stack_type",0)=6 + Set gtmtypes("dollar_stack_type","len")=24 + Set gtmtypes("dollar_stack_type",1,"name")="dollar_stack_type.begin" + Set gtmtypes("dollar_stack_type",1,"off")=0 + Set gtmtypes("dollar_stack_type",1,"len")=4 + Set gtmtypes("dollar_stack_type",1,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","begin")=1 + Set gtmtypes("dollar_stack_type",2,"name")="dollar_stack_type.end" + Set gtmtypes("dollar_stack_type",2,"off")=4 + Set gtmtypes("dollar_stack_type",2,"len")=4 + Set gtmtypes("dollar_stack_type",2,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","end")=2 + Set gtmtypes("dollar_stack_type",3,"name")="dollar_stack_type.top" + Set gtmtypes("dollar_stack_type",3,"off")=8 + Set gtmtypes("dollar_stack_type",3,"len")=4 + Set gtmtypes("dollar_stack_type",3,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","top")=3 + Set gtmtypes("dollar_stack_type",4,"name")="dollar_stack_type.array" + Set gtmtypes("dollar_stack_type",4,"off")=12 + Set gtmtypes("dollar_stack_type",4,"len")=4 + Set gtmtypes("dollar_stack_type",4,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","array")=4 + Set gtmtypes("dollar_stack_type",5,"name")="dollar_stack_type.index" + Set gtmtypes("dollar_stack_type",5,"off")=16 + Set gtmtypes("dollar_stack_type",5,"len")=4 + Set gtmtypes("dollar_stack_type",5,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_type","index")=5 + Set gtmtypes("dollar_stack_type",6,"name")="dollar_stack_type.incomplete" + Set gtmtypes("dollar_stack_type",6,"off")=20 + Set gtmtypes("dollar_stack_type",6,"len")=4 + Set gtmtypes("dollar_stack_type",6,"type")="boolean_t" + Set gtmtypfldindx("dollar_stack_type","incomplete")=6 + ; + Set gtmtypes("dskread_trace")="struct" + Set gtmtypes("dskread_trace",0)=5 + Set gtmtypes("dskread_trace","len")=24 + Set gtmtypes("dskread_trace",1,"name")="dskread_trace.cr_off" + Set gtmtypes("dskread_trace",1,"off")=0 + Set gtmtypes("dskread_trace",1,"len")=4 + Set gtmtypes("dskread_trace",1,"type")="intptr_t" + Set gtmtypfldindx("dskread_trace","cr_off")=1 + Set gtmtypes("dskread_trace",2,"name")="dskread_trace.cr_tn" + Set gtmtypes("dskread_trace",2,"off")=4 + Set gtmtypes("dskread_trace",2,"len")=8 + Set gtmtypes("dskread_trace",2,"type")="uint64_t" + Set gtmtypfldindx("dskread_trace","cr_tn")=2 + Set gtmtypes("dskread_trace",3,"name")="dskread_trace.process_id" + Set gtmtypes("dskread_trace",3,"off")=12 + Set gtmtypes("dskread_trace",3,"len")=4 + Set gtmtypes("dskread_trace",3,"type")="unsigned-int" + Set gtmtypfldindx("dskread_trace","process_id")=3 + Set gtmtypes("dskread_trace",4,"name")="dskread_trace.blk" + Set gtmtypes("dskread_trace",4,"off")=16 + Set gtmtypes("dskread_trace",4,"len")=4 + Set gtmtypes("dskread_trace",4,"type")="int" + Set gtmtypfldindx("dskread_trace","blk")=4 + Set gtmtypes("dskread_trace",5,"name")="dskread_trace.cycle" + Set gtmtypes("dskread_trace",5,"off")=20 + Set gtmtypes("dskread_trace",5,"len")=4 + Set gtmtypes("dskread_trace",5,"type")="unsigned-int" + Set gtmtypfldindx("dskread_trace","cycle")=5 + ; + Set gtmtypes("enc_handles")="struct" + Set gtmtypes("enc_handles",0)=2 + Set gtmtypes("enc_handles","len")=8 + Set gtmtypes("enc_handles",1,"name")="enc_handles.encr_key_handle" + Set gtmtypes("enc_handles",1,"off")=0 + Set gtmtypes("enc_handles",1,"len")=4 + Set gtmtypes("enc_handles",1,"type")="addr" + Set gtmtypfldindx("enc_handles","encr_key_handle")=1 + Set gtmtypes("enc_handles",2,"name")="enc_handles.encr_key_handle2" + Set gtmtypes("enc_handles",2,"off")=4 + Set gtmtypes("enc_handles",2,"len")=4 + Set gtmtypes("enc_handles",2,"type")="addr" + Set gtmtypfldindx("enc_handles","encr_key_handle2")=2 + ; + Set gtmtypes("enc_info_t")="struct" + Set gtmtypes("enc_info_t",0)=9 + Set gtmtypes("enc_info_t","len")=160 + Set gtmtypes("enc_info_t",1,"name")="enc_info_t.reorg_encrypt_cycle" + Set gtmtypes("enc_info_t",1,"off")=0 + Set gtmtypes("enc_info_t",1,"len")=4 + Set gtmtypes("enc_info_t",1,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","reorg_encrypt_cycle")=1 + Set gtmtypes("enc_info_t",2,"name")="enc_info_t.is_encrypted" + Set gtmtypes("enc_info_t",2,"off")=4 + Set gtmtypes("enc_info_t",2,"len")=4 + Set gtmtypes("enc_info_t",2,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","is_encrypted")=2 + Set gtmtypes("enc_info_t",3,"name")="enc_info_t.non_null_iv" + Set gtmtypes("enc_info_t",3,"off")=8 + Set gtmtypes("enc_info_t",3,"len")=4 + Set gtmtypes("enc_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("enc_info_t","non_null_iv")=3 + Set gtmtypes("enc_info_t",4,"name")="enc_info_t.encryption_hash_cutoff" + Set gtmtypes("enc_info_t",4,"off")=12 + Set gtmtypes("enc_info_t",4,"len")=4 + Set gtmtypes("enc_info_t",4,"type")="int" + Set gtmtypfldindx("enc_info_t","encryption_hash_cutoff")=4 + Set gtmtypes("enc_info_t",5,"name")="enc_info_t.encryption_hash2_start_tn" + Set gtmtypes("enc_info_t",5,"off")=16 + Set gtmtypes("enc_info_t",5,"len")=8 + Set gtmtypes("enc_info_t",5,"type")="uint64_t" + Set gtmtypfldindx("enc_info_t","encryption_hash2_start_tn")=5 + Set gtmtypes("enc_info_t",6,"name")="enc_info_t.encryption_hash" + Set gtmtypes("enc_info_t",6,"off")=24 + Set gtmtypes("enc_info_t",6,"len")=64 + Set gtmtypes("enc_info_t",6,"type")="char" + Set gtmtypfldindx("enc_info_t","encryption_hash")=6 + Set gtmtypes("enc_info_t",7,"name")="enc_info_t.encryption_hash2" + Set gtmtypes("enc_info_t",7,"off")=88 + Set gtmtypes("enc_info_t",7,"len")=64 + Set gtmtypes("enc_info_t",7,"type")="char" + Set gtmtypfldindx("enc_info_t","encryption_hash2")=7 + Set gtmtypes("enc_info_t",8,"name")="enc_info_t.issued_db_init_crypt_warning" + Set gtmtypes("enc_info_t",8,"off")=152 + Set gtmtypes("enc_info_t",8,"len")=4 + Set gtmtypes("enc_info_t",8,"type")="boolean_t" + Set gtmtypfldindx("enc_info_t","issued_db_init_crypt_warning")=8 + Set gtmtypes("enc_info_t",9,"name")="enc_info_t.filler" + Set gtmtypes("enc_info_t",9,"off")=156 + Set gtmtypes("enc_info_t",9,"len")=4 + Set gtmtypes("enc_info_t",9,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","filler")=9 + ; + Set gtmtypes("endian32_struct")="union" + Set gtmtypes("endian32_struct",0)=4 + Set gtmtypes("endian32_struct","len")=4 + Set gtmtypes("endian32_struct",1,"name")="endian32_struct.shorts" + Set gtmtypes("endian32_struct",1,"off")=0 + Set gtmtypes("endian32_struct",1,"len")=4 + Set gtmtypes("endian32_struct",1,"type")="struct" + Set gtmtypfldindx("endian32_struct","shorts")=1 + Set gtmtypes("endian32_struct",2,"name")="endian32_struct.shorts.little_endian" + Set gtmtypes("endian32_struct",2,"off")=0 + Set gtmtypes("endian32_struct",2,"len")=2 + Set gtmtypes("endian32_struct",2,"type")="unsigned-short" + Set gtmtypfldindx("endian32_struct","shorts.little_endian")=2 + Set gtmtypes("endian32_struct",3,"name")="endian32_struct.shorts.big_endian" + Set gtmtypes("endian32_struct",3,"off")=2 + Set gtmtypes("endian32_struct",3,"len")=2 + Set gtmtypes("endian32_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("endian32_struct","shorts.big_endian")=3 + Set gtmtypes("endian32_struct",4,"name")="endian32_struct.word32" + Set gtmtypes("endian32_struct",4,"off")=0 + Set gtmtypes("endian32_struct",4,"len")=4 + Set gtmtypes("endian32_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("endian32_struct","word32")=4 + ; + Set gtmtypes("err_ctl")="struct" + Set gtmtypes("err_ctl",0)=4 + Set gtmtypes("err_ctl","len")=16 + Set gtmtypes("err_ctl",1,"name")="err_ctl.facnum" + Set gtmtypes("err_ctl",1,"off")=0 + Set gtmtypes("err_ctl",1,"len")=4 + Set gtmtypes("err_ctl",1,"type")="int" + Set gtmtypfldindx("err_ctl","facnum")=1 + Set gtmtypes("err_ctl",2,"name")="err_ctl.facname" + Set gtmtypes("err_ctl",2,"off")=4 + Set gtmtypes("err_ctl",2,"len")=4 + Set gtmtypes("err_ctl",2,"type")="addr" + Set gtmtypfldindx("err_ctl","facname")=2 + Set gtmtypes("err_ctl",3,"name")="err_ctl.fst_msg" + Set gtmtypes("err_ctl",3,"off")=8 + Set gtmtypes("err_ctl",3,"len")=4 + Set gtmtypes("err_ctl",3,"type")="addr" + Set gtmtypfldindx("err_ctl","fst_msg")=3 + Set gtmtypes("err_ctl",4,"name")="err_ctl.msg_cnt" + Set gtmtypes("err_ctl",4,"off")=12 + Set gtmtypes("err_ctl",4,"len")=4 + Set gtmtypes("err_ctl",4,"type")="int" + Set gtmtypfldindx("err_ctl","msg_cnt")=4 + ; + Set gtmtypes("err_msg")="struct" + Set gtmtypes("err_msg",0)=3 + Set gtmtypes("err_msg","len")=12 + Set gtmtypes("err_msg",1,"name")="err_msg.tag" + Set gtmtypes("err_msg",1,"off")=0 + Set gtmtypes("err_msg",1,"len")=4 + Set gtmtypes("err_msg",1,"type")="addr" + Set gtmtypfldindx("err_msg","tag")=1 + Set gtmtypes("err_msg",2,"name")="err_msg.msg" + Set gtmtypes("err_msg",2,"off")=4 + Set gtmtypes("err_msg",2,"len")=4 + Set gtmtypes("err_msg",2,"type")="addr" + Set gtmtypfldindx("err_msg","msg")=2 + Set gtmtypes("err_msg",3,"name")="err_msg.parm_count" + Set gtmtypes("err_msg",3,"off")=8 + Set gtmtypes("err_msg",3,"len")=4 + Set gtmtypes("err_msg",3,"type")="int" + Set gtmtypfldindx("err_msg","parm_count")=3 + ; + Set gtmtypes("ext_tms")="struct" + Set gtmtypes("ext_tms",0)=3 + Set gtmtypes("ext_tms","len")=24 + Set gtmtypes("ext_tms",1,"name")="ext_tms.tms_utime" + Set gtmtypes("ext_tms",1,"off")=0 + Set gtmtypes("ext_tms",1,"len")=8 + Set gtmtypes("ext_tms",1,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_utime")=1 + Set gtmtypes("ext_tms",2,"name")="ext_tms.tms_stime" + Set gtmtypes("ext_tms",2,"off")=8 + Set gtmtypes("ext_tms",2,"len")=8 + Set gtmtypes("ext_tms",2,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_stime")=2 + Set gtmtypes("ext_tms",3,"name")="ext_tms.tms_etime" + Set gtmtypes("ext_tms",3,"off")=16 + Set gtmtypes("ext_tms",3,"len")=8 + Set gtmtypes("ext_tms",3,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_etime")=3 + ; + Set gtmtypes("extr_fn_t")="struct" + Set gtmtypes("extr_fn_t",0)=1 + Set gtmtypes("extr_fn_t","len")=256 + Set gtmtypes("extr_fn_t",1,"name")="extr_fn_t.fn" + Set gtmtypes("extr_fn_t",1,"off")=0 + Set gtmtypes("extr_fn_t",1,"len")=256 + Set gtmtypes("extr_fn_t",1,"type")="char" + Set gtmtypfldindx("extr_fn_t","fn")=1 + ; + Set gtmtypes("fdinfo_t")="struct" + Set gtmtypes("fdinfo_t",0)=2 + Set gtmtypes("fdinfo_t","len")=8 + Set gtmtypes("fdinfo_t",1,"name")="fdinfo_t.reg" + Set gtmtypes("fdinfo_t",1,"off")=0 + Set gtmtypes("fdinfo_t",1,"len")=4 + Set gtmtypes("fdinfo_t",1,"type")="addr" + Set gtmtypfldindx("fdinfo_t","reg")=1 + Set gtmtypes("fdinfo_t",2,"name")="fdinfo_t.is_db" + Set gtmtypes("fdinfo_t",2,"off")=4 + Set gtmtypes("fdinfo_t",2,"len")=4 + Set gtmtypes("fdinfo_t",2,"type")="boolean_t" + Set gtmtypfldindx("fdinfo_t","is_db")=2 + ; + Set gtmtypes("file_control")="struct" + Set gtmtypes("file_control",0)=6 + Set gtmtypes("file_control","len")=24 + Set gtmtypes("file_control",1,"name")="file_control.op_buff" + Set gtmtypes("file_control",1,"off")=0 + Set gtmtypes("file_control",1,"len")=4 + Set gtmtypes("file_control",1,"type")="addr" + Set gtmtypfldindx("file_control","op_buff")=1 + Set gtmtypes("file_control",2,"name")="file_control.op_pos" + Set gtmtypes("file_control",2,"off")=4 + Set gtmtypes("file_control",2,"len")=8 + Set gtmtypes("file_control",2,"type")="int64_t" + Set gtmtypfldindx("file_control","op_pos")=2 + Set gtmtypes("file_control",3,"name")="file_control.op_len" + Set gtmtypes("file_control",3,"off")=12 + Set gtmtypes("file_control",3,"len")=4 + Set gtmtypes("file_control",3,"type")="int" + Set gtmtypfldindx("file_control","op_len")=3 + Set gtmtypes("file_control",4,"name")="file_control.file_info" + Set gtmtypes("file_control",4,"off")=16 + Set gtmtypes("file_control",4,"len")=4 + Set gtmtypes("file_control",4,"type")="addr" + Set gtmtypfldindx("file_control","file_info")=4 + Set gtmtypes("file_control",5,"name")="file_control.file_type" + Set gtmtypes("file_control",5,"off")=20 + Set gtmtypes("file_control",5,"len")=1 + Set gtmtypes("file_control",5,"type")="char" + Set gtmtypfldindx("file_control","file_type")=5 + Set gtmtypes("file_control",6,"name")="file_control.op" + Set gtmtypes("file_control",6,"off")=21 + Set gtmtypes("file_control",6,"len")=1 + Set gtmtypes("file_control",6,"type")="char" + Set gtmtypfldindx("file_control","op")=6 + ; + Set gtmtypes("file_info")="struct" + Set gtmtypes("file_info",0)=5 + Set gtmtypes("file_info","len")=52 + Set gtmtypes("file_info",1,"name")="file_info.fac" + Set gtmtypes("file_info",1,"off")=0 + Set gtmtypes("file_info",1,"len")=4 + Set gtmtypes("file_info",1,"type")="int" + Set gtmtypfldindx("file_info","fac")=1 + Set gtmtypes("file_info",2,"name")="file_info.dat" + Set gtmtypes("file_info",2,"off")=4 + Set gtmtypes("file_info",2,"len")=8 + Set gtmtypes("file_info",2,"type")="short" + Set gtmtypfldindx("file_info","dat")=2 + Set gtmtypes("file_info",2,"dim")=4 + Set gtmtypes("file_info",3,"name")="file_info.usr" + Set gtmtypes("file_info",3,"off")=12 + Set gtmtypes("file_info",3,"len")=31 + Set gtmtypes("file_info",3,"type")="char" + Set gtmtypfldindx("file_info","usr")=3 + Set gtmtypes("file_info",4,"name")="file_info.trm" + Set gtmtypes("file_info",4,"off")=43 + Set gtmtypes("file_info",4,"len")=7 + Set gtmtypes("file_info",4,"type")="char" + Set gtmtypfldindx("file_info","trm")=4 + Set gtmtypes("file_info",5,"name")="file_info.filler" + Set gtmtypes("file_info",5,"off")=50 + Set gtmtypes("file_info",5,"len")=2 + Set gtmtypes("file_info",5,"type")="char" + Set gtmtypfldindx("file_info","filler")=5 + ; + Set gtmtypes("file_log")="struct" + Set gtmtypes("file_log",0)=7 + Set gtmtypes("file_log","len")=264 + Set gtmtypes("file_log",1,"name")="file_log.cnt" + Set gtmtypes("file_log",1,"off")=0 + Set gtmtypes("file_log",1,"len")=4 + Set gtmtypes("file_log",1,"type")="int" + Set gtmtypfldindx("file_log","cnt")=1 + Set gtmtypes("file_log",2,"name")="file_log.ent" + Set gtmtypes("file_log",2,"off")=4 + Set gtmtypes("file_log",2,"len")=260 + Set gtmtypes("file_log",2,"type")="file_info" + Set gtmtypfldindx("file_log","ent")=2 + Set gtmtypes("file_log",2,"dim")=5 + Set gtmtypes("file_log",3,"name")="file_log.ent[0].fac" + Set gtmtypes("file_log",3,"off")=4 + Set gtmtypes("file_log",3,"len")=4 + Set gtmtypes("file_log",3,"type")="int" + Set gtmtypfldindx("file_log","ent[0].fac")=3 + Set gtmtypes("file_log",4,"name")="file_log.ent[0].dat" + Set gtmtypes("file_log",4,"off")=8 + Set gtmtypes("file_log",4,"len")=8 + Set gtmtypes("file_log",4,"type")="short" + Set gtmtypfldindx("file_log","ent[0].dat")=4 + Set gtmtypes("file_log",4,"dim")=4 + Set gtmtypes("file_log",5,"name")="file_log.ent[0].usr" + Set gtmtypes("file_log",5,"off")=16 + Set gtmtypes("file_log",5,"len")=31 + Set gtmtypes("file_log",5,"type")="char" + Set gtmtypfldindx("file_log","ent[0].usr")=5 + Set gtmtypes("file_log",6,"name")="file_log.ent[0].trm" + Set gtmtypes("file_log",6,"off")=47 + Set gtmtypes("file_log",6,"len")=7 + Set gtmtypes("file_log",6,"type")="char" + Set gtmtypfldindx("file_log","ent[0].trm")=6 + Set gtmtypes("file_log",7,"name")="file_log.ent[0].filler" + Set gtmtypes("file_log",7,"off")=54 + Set gtmtypes("file_log",7,"len")=2 + Set gtmtypes("file_log",7,"type")="char" + Set gtmtypfldindx("file_log","ent[0].filler")=7 + ; + Set gtmtypes("file_pointer")="struct" + Set gtmtypes("file_pointer",0)=5 + Set gtmtypes("file_pointer","len")=16 + Set gtmtypes("file_pointer",1,"name")="file_pointer.fd" + Set gtmtypes("file_pointer",1,"off")=0 + Set gtmtypes("file_pointer",1,"len")=4 + Set gtmtypes("file_pointer",1,"type")="int" + Set gtmtypfldindx("file_pointer","fd")=1 + Set gtmtypes("file_pointer",2,"name")="file_pointer.v" + Set gtmtypes("file_pointer",2,"off")=4 + Set gtmtypes("file_pointer",2,"len")=12 + Set gtmtypes("file_pointer",2,"type")="mstr" + Set gtmtypfldindx("file_pointer","v")=2 + Set gtmtypes("file_pointer",3,"name")="file_pointer.v.char_len" + Set gtmtypes("file_pointer",3,"off")=4 + Set gtmtypes("file_pointer",3,"len")=4 + Set gtmtypes("file_pointer",3,"type")="unsigned-int" + Set gtmtypfldindx("file_pointer","v.char_len")=3 + Set gtmtypes("file_pointer",4,"name")="file_pointer.v.len" + Set gtmtypes("file_pointer",4,"off")=8 + Set gtmtypes("file_pointer",4,"len")=4 + Set gtmtypes("file_pointer",4,"type")="int" + Set gtmtypfldindx("file_pointer","v.len")=4 + Set gtmtypes("file_pointer",5,"name")="file_pointer.v.addr" + Set gtmtypes("file_pointer",5,"off")=12 + Set gtmtypes("file_pointer",5,"len")=4 + Set gtmtypes("file_pointer",5,"type")="addr" + Set gtmtypfldindx("file_pointer","v.addr")=5 + ; + Set gtmtypes("fnpc")="struct" + Set gtmtypes("fnpc",0)=9 + Set gtmtypes("fnpc","len")=356 + Set gtmtypes("fnpc",1,"name")="fnpc.last_str" + Set gtmtypes("fnpc",1,"off")=0 + Set gtmtypes("fnpc",1,"len")=12 + Set gtmtypes("fnpc",1,"type")="mstr" + Set gtmtypfldindx("fnpc","last_str")=1 + Set gtmtypes("fnpc",2,"name")="fnpc.last_str.char_len" + Set gtmtypes("fnpc",2,"off")=0 + Set gtmtypes("fnpc",2,"len")=4 + Set gtmtypes("fnpc",2,"type")="unsigned-int" + Set gtmtypfldindx("fnpc","last_str.char_len")=2 + Set gtmtypes("fnpc",3,"name")="fnpc.last_str.len" + Set gtmtypes("fnpc",3,"off")=4 + Set gtmtypes("fnpc",3,"len")=4 + Set gtmtypes("fnpc",3,"type")="int" + Set gtmtypfldindx("fnpc","last_str.len")=3 + Set gtmtypes("fnpc",4,"name")="fnpc.last_str.addr" + Set gtmtypes("fnpc",4,"off")=8 + Set gtmtypes("fnpc",4,"len")=4 + Set gtmtypes("fnpc",4,"type")="addr" + Set gtmtypfldindx("fnpc","last_str.addr")=4 + Set gtmtypes("fnpc",5,"name")="fnpc.delim" + Set gtmtypes("fnpc",5,"off")=12 + Set gtmtypes("fnpc",5,"len")=4 + Set gtmtypes("fnpc",5,"type")="int" + Set gtmtypfldindx("fnpc","delim")=5 + Set gtmtypes("fnpc",6,"name")="fnpc.npcs" + Set gtmtypes("fnpc",6,"off")=16 + Set gtmtypes("fnpc",6,"len")=4 + Set gtmtypes("fnpc",6,"type")="int" + Set gtmtypfldindx("fnpc","npcs")=6 + Set gtmtypes("fnpc",7,"name")="fnpc.indx" + Set gtmtypes("fnpc",7,"off")=20 + Set gtmtypes("fnpc",7,"len")=4 + Set gtmtypes("fnpc",7,"type")="int" + Set gtmtypfldindx("fnpc","indx")=7 + Set gtmtypes("fnpc",8,"name")="fnpc.byte_oriented" + Set gtmtypes("fnpc",8,"off")=24 + Set gtmtypes("fnpc",8,"len")=4 + Set gtmtypes("fnpc",8,"type")="boolean_t" + Set gtmtypfldindx("fnpc","byte_oriented")=8 + Set gtmtypes("fnpc",9,"name")="fnpc.pstart" + Set gtmtypes("fnpc",9,"off")=28 + Set gtmtypes("fnpc",9,"len")=328 + Set gtmtypes("fnpc",9,"type")="unsigned-int" + Set gtmtypfldindx("fnpc","pstart")=9 + Set gtmtypes("fnpc",9,"dim")=82 + ; + Set gtmtypes("fnpc_area")="struct" + Set gtmtypes("fnpc_area",0)=12 + Set gtmtypes("fnpc_area","len")=17808 + Set gtmtypes("fnpc_area",1,"name")="fnpc_area.fnpcsteal" + Set gtmtypes("fnpc_area",1,"off")=0 + Set gtmtypes("fnpc_area",1,"len")=4 + Set gtmtypes("fnpc_area",1,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcsteal")=1 + Set gtmtypes("fnpc_area",2,"name")="fnpc_area.fnpcmax" + Set gtmtypes("fnpc_area",2,"off")=4 + Set gtmtypes("fnpc_area",2,"len")=4 + Set gtmtypes("fnpc_area",2,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcmax")=2 + Set gtmtypes("fnpc_area",3,"name")="fnpc_area.fnpcs" + Set gtmtypes("fnpc_area",3,"off")=8 + Set gtmtypes("fnpc_area",3,"len")=17800 + Set gtmtypes("fnpc_area",3,"type")="fnpc" + Set gtmtypfldindx("fnpc_area","fnpcs")=3 + Set gtmtypes("fnpc_area",3,"dim")=50 + Set gtmtypes("fnpc_area",4,"name")="fnpc_area.fnpcs[0].last_str" + Set gtmtypes("fnpc_area",4,"off")=8 + Set gtmtypes("fnpc_area",4,"len")=12 + Set gtmtypes("fnpc_area",4,"type")="mstr" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str")=4 + Set gtmtypes("fnpc_area",5,"name")="fnpc_area.fnpcs[0].last_str.char_len" + Set gtmtypes("fnpc_area",5,"off")=8 + Set gtmtypes("fnpc_area",5,"len")=4 + Set gtmtypes("fnpc_area",5,"type")="unsigned-int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.char_len")=5 + Set gtmtypes("fnpc_area",6,"name")="fnpc_area.fnpcs[0].last_str.len" + Set gtmtypes("fnpc_area",6,"off")=12 + Set gtmtypes("fnpc_area",6,"len")=4 + Set gtmtypes("fnpc_area",6,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.len")=6 + Set gtmtypes("fnpc_area",7,"name")="fnpc_area.fnpcs[0].last_str.addr" + Set gtmtypes("fnpc_area",7,"off")=16 + Set gtmtypes("fnpc_area",7,"len")=4 + Set gtmtypes("fnpc_area",7,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.addr")=7 + Set gtmtypes("fnpc_area",8,"name")="fnpc_area.fnpcs[0].delim" + Set gtmtypes("fnpc_area",8,"off")=20 + Set gtmtypes("fnpc_area",8,"len")=4 + Set gtmtypes("fnpc_area",8,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].delim")=8 + Set gtmtypes("fnpc_area",9,"name")="fnpc_area.fnpcs[0].npcs" + Set gtmtypes("fnpc_area",9,"off")=24 + Set gtmtypes("fnpc_area",9,"len")=4 + Set gtmtypes("fnpc_area",9,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].npcs")=9 + Set gtmtypes("fnpc_area",10,"name")="fnpc_area.fnpcs[0].indx" + Set gtmtypes("fnpc_area",10,"off")=28 + Set gtmtypes("fnpc_area",10,"len")=4 + Set gtmtypes("fnpc_area",10,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].indx")=10 + Set gtmtypes("fnpc_area",11,"name")="fnpc_area.fnpcs[0].byte_oriented" + Set gtmtypes("fnpc_area",11,"off")=32 + Set gtmtypes("fnpc_area",11,"len")=4 + Set gtmtypes("fnpc_area",11,"type")="boolean_t" + Set gtmtypfldindx("fnpc_area","fnpcs[0].byte_oriented")=11 + Set gtmtypes("fnpc_area",12,"name")="fnpc_area.fnpcs[0].pstart" + Set gtmtypes("fnpc_area",12,"off")=36 + Set gtmtypes("fnpc_area",12,"len")=328 + Set gtmtypes("fnpc_area",12,"type")="unsigned-int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].pstart")=12 + Set gtmtypes("fnpc_area",12,"dim")=82 + ; + Set gtmtypes("forw_multi_struct")="struct" + Set gtmtypes("forw_multi_struct",0)=16 + Set gtmtypes("forw_multi_struct","len")=56 + Set gtmtypes("forw_multi_struct",1,"name")="forw_multi_struct.u" + Set gtmtypes("forw_multi_struct",1,"off")=0 + Set gtmtypes("forw_multi_struct",1,"len")=8 + Set gtmtypes("forw_multi_struct",1,"type")="union" + Set gtmtypfldindx("forw_multi_struct","u")=1 + Set gtmtypes("forw_multi_struct",2,"name")="forw_multi_struct.u.tabent" + Set gtmtypes("forw_multi_struct",2,"off")=0 + Set gtmtypes("forw_multi_struct",2,"len")=4 + Set gtmtypes("forw_multi_struct",2,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","u.tabent")=2 + Set gtmtypes("forw_multi_struct",3,"name")="forw_multi_struct.u.free_que" + Set gtmtypes("forw_multi_struct",3,"off")=0 + Set gtmtypes("forw_multi_struct",3,"len")=8 + Set gtmtypes("forw_multi_struct",3,"type")="que_ent" + Set gtmtypfldindx("forw_multi_struct","u.free_que")=3 + Set gtmtypes("forw_multi_struct",4,"name")="forw_multi_struct.u.free_que.fl" + Set gtmtypes("forw_multi_struct",4,"off")=0 + Set gtmtypes("forw_multi_struct",4,"len")=4 + Set gtmtypes("forw_multi_struct",4,"type")="intptr_t" + Set gtmtypfldindx("forw_multi_struct","u.free_que.fl")=4 + Set gtmtypes("forw_multi_struct",5,"name")="forw_multi_struct.u.free_que.bl" + Set gtmtypes("forw_multi_struct",5,"off")=4 + Set gtmtypes("forw_multi_struct",5,"len")=4 + Set gtmtypes("forw_multi_struct",5,"type")="intptr_t" + Set gtmtypfldindx("forw_multi_struct","u.free_que.bl")=5 + Set gtmtypes("forw_multi_struct",6,"name")="forw_multi_struct.token" + Set gtmtypes("forw_multi_struct",6,"off")=8 + Set gtmtypes("forw_multi_struct",6,"len")=8 + Set gtmtypes("forw_multi_struct",6,"type")="uint64_t" + Set gtmtypfldindx("forw_multi_struct","token")=6 + Set gtmtypes("forw_multi_struct",7,"name")="forw_multi_struct.first_tp_rctl" + Set gtmtypes("forw_multi_struct",7,"off")=16 + Set gtmtypes("forw_multi_struct",7,"len")=4 + Set gtmtypes("forw_multi_struct",7,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","first_tp_rctl")=7 + Set gtmtypes("forw_multi_struct",8,"name")="forw_multi_struct.next" + Set gtmtypes("forw_multi_struct",8,"off")=20 + Set gtmtypes("forw_multi_struct",8,"len")=4 + Set gtmtypes("forw_multi_struct",8,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","next")=8 + Set gtmtypes("forw_multi_struct",9,"name")="forw_multi_struct.shm_forw_multi" + Set gtmtypes("forw_multi_struct",9,"off")=24 + Set gtmtypes("forw_multi_struct",9,"len")=4 + Set gtmtypes("forw_multi_struct",9,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","shm_forw_multi")=9 + Set gtmtypes("forw_multi_struct",10,"name")="forw_multi_struct.multi" + Set gtmtypes("forw_multi_struct",10,"off")=28 + Set gtmtypes("forw_multi_struct",10,"len")=4 + Set gtmtypes("forw_multi_struct",10,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","multi")=10 + Set gtmtypes("forw_multi_struct",11,"name")="forw_multi_struct.time" + Set gtmtypes("forw_multi_struct",11,"off")=32 + Set gtmtypes("forw_multi_struct",11,"len")=4 + Set gtmtypes("forw_multi_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","time")=11 + Set gtmtypes("forw_multi_struct",12,"name")="forw_multi_struct.recstat" + Set gtmtypes("forw_multi_struct",12,"off")=36 + Set gtmtypes("forw_multi_struct",12,"len")=4 + Set gtmtypes("forw_multi_struct",12,"type")="int" + Set gtmtypfldindx("forw_multi_struct","recstat")=12 + Set gtmtypes("forw_multi_struct",13,"name")="forw_multi_struct.num_reg_total" + Set gtmtypes("forw_multi_struct",13,"off")=40 + Set gtmtypes("forw_multi_struct",13,"len")=4 + Set gtmtypes("forw_multi_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_total")=13 + Set gtmtypes("forw_multi_struct",14,"name")="forw_multi_struct.num_reg_seen_backward" + Set gtmtypes("forw_multi_struct",14,"off")=44 + Set gtmtypes("forw_multi_struct",14,"len")=4 + Set gtmtypes("forw_multi_struct",14,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_seen_backward")=14 + Set gtmtypes("forw_multi_struct",15,"name")="forw_multi_struct.num_reg_seen_forward" + Set gtmtypes("forw_multi_struct",15,"off")=48 + Set gtmtypes("forw_multi_struct",15,"len")=4 + Set gtmtypes("forw_multi_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_seen_forward")=15 + Set gtmtypes("forw_multi_struct",16,"name")="forw_multi_struct.no_longer_stuck" + Set gtmtypes("forw_multi_struct",16,"off")=52 + Set gtmtypes("forw_multi_struct",16,"len")=4 + Set gtmtypes("forw_multi_struct",16,"type")="boolean_t" + Set gtmtypfldindx("forw_multi_struct","no_longer_stuck")=16 + ; + Set gtmtypes("ftokhist")="struct" + Set gtmtypes("ftokhist",0)=3 + Set gtmtypes("ftokhist","len")=16 + Set gtmtypes("ftokhist",1,"name")="ftokhist.ftok_oper" + Set gtmtypes("ftokhist",1,"off")=0 + Set gtmtypes("ftokhist",1,"len")=4 + Set gtmtypes("ftokhist",1,"type")="int" + Set gtmtypfldindx("ftokhist","ftok_oper")=1 + Set gtmtypes("ftokhist",2,"name")="ftokhist.process_id" + Set gtmtypes("ftokhist",2,"off")=4 + Set gtmtypes("ftokhist",2,"len")=4 + Set gtmtypes("ftokhist",2,"type")="unsigned-int" + Set gtmtypfldindx("ftokhist","process_id")=2 + Set gtmtypes("ftokhist",3,"name")="ftokhist.cr_tn" + Set gtmtypes("ftokhist",3,"off")=8 + Set gtmtypes("ftokhist",3,"len")=8 + Set gtmtypes("ftokhist",3,"type")="uint64_t" + Set gtmtypfldindx("ftokhist","cr_tn")=3 + ; + Set gtmtypes("fun_data_type")="struct" + Set gtmtypes("fun_data_type",0)=2 + Set gtmtypes("fun_data_type","len")=8 + Set gtmtypes("fun_data_type",1,"name")="fun_data_type.opcode" + Set gtmtypes("fun_data_type",1,"off")=0 + Set gtmtypes("fun_data_type",1,"len")=4 + Set gtmtypes("fun_data_type",1,"type")="unsigned-int" + Set gtmtypfldindx("fun_data_type","opcode")=1 + Set gtmtypes("fun_data_type",2,"name")="fun_data_type.os_syst" + Set gtmtypes("fun_data_type",2,"off")=4 + Set gtmtypes("fun_data_type",2,"len")=1 + Set gtmtypes("fun_data_type",2,"type")="char" + Set gtmtypfldindx("fun_data_type","os_syst")=2 + ; + Set gtmtypes("gcall_args")="struct" + Set gtmtypes("gcall_args",0)=6 + Set gtmtypes("gcall_args","len")=148 + Set gtmtypes("gcall_args",1,"name")="gcall_args.callargs" + Set gtmtypes("gcall_args",1,"off")=0 + Set gtmtypes("gcall_args",1,"len")=4 + Set gtmtypes("gcall_args",1,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","callargs")=1 + Set gtmtypes("gcall_args",2,"name")="gcall_args.truth" + Set gtmtypes("gcall_args",2,"off")=4 + Set gtmtypes("gcall_args",2,"len")=4 + Set gtmtypes("gcall_args",2,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","truth")=2 + Set gtmtypes("gcall_args",3,"name")="gcall_args.retval" + Set gtmtypes("gcall_args",3,"off")=8 + Set gtmtypes("gcall_args",3,"len")=4 + Set gtmtypes("gcall_args",3,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","retval")=3 + Set gtmtypes("gcall_args",4,"name")="gcall_args.mask" + Set gtmtypes("gcall_args",4,"off")=12 + Set gtmtypes("gcall_args",4,"len")=4 + Set gtmtypes("gcall_args",4,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","mask")=4 + Set gtmtypes("gcall_args",5,"name")="gcall_args.argcnt" + Set gtmtypes("gcall_args",5,"off")=16 + Set gtmtypes("gcall_args",5,"len")=4 + Set gtmtypes("gcall_args",5,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","argcnt")=5 + Set gtmtypes("gcall_args",6,"name")="gcall_args.argval" + Set gtmtypes("gcall_args",6,"off")=20 + Set gtmtypes("gcall_args",6,"len")=128 + Set gtmtypes("gcall_args",6,"type")="addr" + Set gtmtypfldindx("gcall_args","argval")=6 + Set gtmtypes("gcall_args",6,"dim")=32 + ; + Set gtmtypes("gd_addr")="struct" + Set gtmtypes("gd_addr",0)=17 + Set gtmtypes("gd_addr","len")=76 + Set gtmtypes("gd_addr",1,"name")="gd_addr.local_locks" + Set gtmtypes("gd_addr",1,"off")=0 + Set gtmtypes("gd_addr",1,"len")=4 + Set gtmtypes("gd_addr",1,"type")="addr" + Set gtmtypfldindx("gd_addr","local_locks")=1 + Set gtmtypes("gd_addr",2,"name")="gd_addr.max_rec_size" + Set gtmtypes("gd_addr",2,"off")=4 + Set gtmtypes("gd_addr",2,"len")=4 + Set gtmtypes("gd_addr",2,"type")="int" + Set gtmtypfldindx("gd_addr","max_rec_size")=2 + Set gtmtypes("gd_addr",3,"name")="gd_addr.n_maps" + Set gtmtypes("gd_addr",3,"off")=8 + Set gtmtypes("gd_addr",3,"len")=4 + Set gtmtypes("gd_addr",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_maps")=3 + Set gtmtypes("gd_addr",4,"name")="gd_addr.n_regions" + Set gtmtypes("gd_addr",4,"off")=12 + Set gtmtypes("gd_addr",4,"len")=4 + Set gtmtypes("gd_addr",4,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_regions")=4 + Set gtmtypes("gd_addr",5,"name")="gd_addr.n_segments" + Set gtmtypes("gd_addr",5,"off")=16 + Set gtmtypes("gd_addr",5,"len")=4 + Set gtmtypes("gd_addr",5,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_segments")=5 + Set gtmtypes("gd_addr",6,"name")="gd_addr.n_gblnames" + Set gtmtypes("gd_addr",6,"off")=20 + Set gtmtypes("gd_addr",6,"len")=4 + Set gtmtypes("gd_addr",6,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_gblnames")=6 + Set gtmtypes("gd_addr",7,"name")="gd_addr.var_maps_len" + Set gtmtypes("gd_addr",7,"off")=24 + Set gtmtypes("gd_addr",7,"len")=4 + Set gtmtypes("gd_addr",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","var_maps_len")=7 + Set gtmtypes("gd_addr",8,"name")="gd_addr.maps" + Set gtmtypes("gd_addr",8,"off")=28 + Set gtmtypes("gd_addr",8,"len")=4 + Set gtmtypes("gd_addr",8,"type")="addr" + Set gtmtypfldindx("gd_addr","maps")=8 + Set gtmtypes("gd_addr",9,"name")="gd_addr.regions" + Set gtmtypes("gd_addr",9,"off")=32 + Set gtmtypes("gd_addr",9,"len")=4 + Set gtmtypes("gd_addr",9,"type")="addr" + Set gtmtypfldindx("gd_addr","regions")=9 + Set gtmtypes("gd_addr",10,"name")="gd_addr.segments" + Set gtmtypes("gd_addr",10,"off")=36 + Set gtmtypes("gd_addr",10,"len")=4 + Set gtmtypes("gd_addr",10,"type")="addr" + Set gtmtypfldindx("gd_addr","segments")=10 + Set gtmtypes("gd_addr",11,"name")="gd_addr.gblnames" + Set gtmtypes("gd_addr",11,"off")=40 + Set gtmtypes("gd_addr",11,"len")=4 + Set gtmtypes("gd_addr",11,"type")="addr" + Set gtmtypfldindx("gd_addr","gblnames")=11 + Set gtmtypes("gd_addr",12,"name")="gd_addr.link" + Set gtmtypes("gd_addr",12,"off")=44 + Set gtmtypes("gd_addr",12,"len")=4 + Set gtmtypes("gd_addr",12,"type")="addr" + Set gtmtypfldindx("gd_addr","link")=12 + Set gtmtypes("gd_addr",13,"name")="gd_addr.tab_ptr" + Set gtmtypes("gd_addr",13,"off")=48 + Set gtmtypes("gd_addr",13,"len")=4 + Set gtmtypes("gd_addr",13,"type")="addr" + Set gtmtypfldindx("gd_addr","tab_ptr")=13 + Set gtmtypes("gd_addr",14,"name")="gd_addr.id" + Set gtmtypes("gd_addr",14,"off")=52 + Set gtmtypes("gd_addr",14,"len")=4 + Set gtmtypes("gd_addr",14,"type")="addr" + Set gtmtypfldindx("gd_addr","id")=14 + Set gtmtypes("gd_addr",15,"name")="gd_addr.end" + Set gtmtypes("gd_addr",15,"off")=56 + Set gtmtypes("gd_addr",15,"len")=4 + Set gtmtypes("gd_addr",15,"type")="uintptr_t" + Set gtmtypfldindx("gd_addr","end")=15 + Set gtmtypes("gd_addr",16,"name")="gd_addr.has_span_gbls" + Set gtmtypes("gd_addr",16,"off")=60 + Set gtmtypes("gd_addr",16,"len")=4 + Set gtmtypes("gd_addr",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","has_span_gbls")=16 + Set gtmtypes("gd_addr",17,"name")="gd_addr.filler" + Set gtmtypes("gd_addr",17,"off")=64 + Set gtmtypes("gd_addr",17,"len")=12 + Set gtmtypes("gd_addr",17,"type")="char" + Set gtmtypfldindx("gd_addr","filler")=17 + ; + Set gtmtypes("gd_binding")="struct" + Set gtmtypes("gd_binding",0)=8 + Set gtmtypes("gd_binding","len")=16 + Set gtmtypes("gd_binding",1,"name")="gd_binding.gvkey" + Set gtmtypes("gd_binding",1,"off")=0 + Set gtmtypes("gd_binding",1,"len")=4 + Set gtmtypes("gd_binding",1,"type")="union" + Set gtmtypfldindx("gd_binding","gvkey")=1 + Set gtmtypes("gd_binding",2,"name")="gd_binding.gvkey.addr" + Set gtmtypes("gd_binding",2,"off")=0 + Set gtmtypes("gd_binding",2,"len")=4 + Set gtmtypes("gd_binding",2,"type")="addr" + Set gtmtypfldindx("gd_binding","gvkey.addr")=2 + Set gtmtypes("gd_binding",3,"name")="gd_binding.gvkey.offset" + Set gtmtypes("gd_binding",3,"off")=0 + Set gtmtypes("gd_binding",3,"len")=4 + Set gtmtypes("gd_binding",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvkey.offset")=3 + Set gtmtypes("gd_binding",4,"name")="gd_binding.reg" + Set gtmtypes("gd_binding",4,"off")=4 + Set gtmtypes("gd_binding",4,"len")=4 + Set gtmtypes("gd_binding",4,"type")="union" + Set gtmtypfldindx("gd_binding","reg")=4 + Set gtmtypes("gd_binding",5,"name")="gd_binding.reg.addr" + Set gtmtypes("gd_binding",5,"off")=4 + Set gtmtypes("gd_binding",5,"len")=4 + Set gtmtypes("gd_binding",5,"type")="addr" + Set gtmtypfldindx("gd_binding","reg.addr")=5 + Set gtmtypes("gd_binding",6,"name")="gd_binding.reg.offset" + Set gtmtypes("gd_binding",6,"off")=4 + Set gtmtypes("gd_binding",6,"len")=4 + Set gtmtypes("gd_binding",6,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","reg.offset")=6 + Set gtmtypes("gd_binding",7,"name")="gd_binding.gvname_len" + Set gtmtypes("gd_binding",7,"off")=8 + Set gtmtypes("gd_binding",7,"len")=4 + Set gtmtypes("gd_binding",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvname_len")=7 + Set gtmtypes("gd_binding",8,"name")="gd_binding.gvkey_len" + Set gtmtypes("gd_binding",8,"off")=12 + Set gtmtypes("gd_binding",8,"len")=4 + Set gtmtypes("gd_binding",8,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvkey_len")=8 + ; + Set gtmtypes("gd_gblname")="struct" + Set gtmtypes("gd_gblname",0)=3 + Set gtmtypes("gd_gblname","len")=40 + Set gtmtypes("gd_gblname",1,"name")="gd_gblname.gblname" + Set gtmtypes("gd_gblname",1,"off")=0 + Set gtmtypes("gd_gblname",1,"len")=32 + Set gtmtypes("gd_gblname",1,"type")="unsigned-char" + Set gtmtypfldindx("gd_gblname","gblname")=1 + Set gtmtypes("gd_gblname",2,"name")="gd_gblname.act" + Set gtmtypes("gd_gblname",2,"off")=32 + Set gtmtypes("gd_gblname",2,"len")=4 + Set gtmtypes("gd_gblname",2,"type")="unsigned-int" + Set gtmtypfldindx("gd_gblname","act")=2 + Set gtmtypes("gd_gblname",3,"name")="gd_gblname.ver" + Set gtmtypes("gd_gblname",3,"off")=36 + Set gtmtypes("gd_gblname",3,"len")=4 + Set gtmtypes("gd_gblname",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_gblname","ver")=3 + ; + Set gtmtypes("gd_region")="struct" + Set gtmtypes("gd_region",0)=38 + Set gtmtypes("gd_region","len")=372 + Set gtmtypes("gd_region",1,"name")="gd_region.rname_len" + Set gtmtypes("gd_region",1,"off")=0 + Set gtmtypes("gd_region",1,"len")=2 + Set gtmtypes("gd_region",1,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","rname_len")=1 + Set gtmtypes("gd_region",2,"name")="gd_region.rname" + Set gtmtypes("gd_region",2,"off")=2 + Set gtmtypes("gd_region",2,"len")=32 + Set gtmtypes("gd_region",2,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","rname")=2 + Set gtmtypes("gd_region",3,"name")="gd_region.max_key_size" + Set gtmtypes("gd_region",3,"off")=34 + Set gtmtypes("gd_region",3,"len")=2 + Set gtmtypes("gd_region",3,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","max_key_size")=3 + Set gtmtypes("gd_region",4,"name")="gd_region.max_rec_size" + Set gtmtypes("gd_region",4,"off")=36 + Set gtmtypes("gd_region",4,"len")=4 + Set gtmtypes("gd_region",4,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","max_rec_size")=4 + Set gtmtypes("gd_region",5,"name")="gd_region.dyn" + Set gtmtypes("gd_region",5,"off")=40 + Set gtmtypes("gd_region",5,"len")=4 + Set gtmtypes("gd_region",5,"type")="gd_seg_addr" + Set gtmtypfldindx("gd_region","dyn")=5 + Set gtmtypes("gd_region",6,"name")="gd_region.dyn.offset" + Set gtmtypes("gd_region",6,"off")=40 + Set gtmtypes("gd_region",6,"len")=4 + Set gtmtypes("gd_region",6,"type")="int" + Set gtmtypfldindx("gd_region","dyn.offset")=6 + Set gtmtypes("gd_region",7,"name")="gd_region.dyn.addr" + Set gtmtypes("gd_region",7,"off")=40 + Set gtmtypes("gd_region",7,"len")=4 + Set gtmtypes("gd_region",7,"type")="addr" + Set gtmtypfldindx("gd_region","dyn.addr")=7 + Set gtmtypes("gd_region",8,"name")="gd_region.stat" + Set gtmtypes("gd_region",8,"off")=44 + Set gtmtypes("gd_region",8,"len")=4 + Set gtmtypes("gd_region",8,"type")="gd_seg_addr" + Set gtmtypfldindx("gd_region","stat")=8 + Set gtmtypes("gd_region",9,"name")="gd_region.stat.offset" + Set gtmtypes("gd_region",9,"off")=44 + Set gtmtypes("gd_region",9,"len")=4 + Set gtmtypes("gd_region",9,"type")="int" + Set gtmtypfldindx("gd_region","stat.offset")=9 + Set gtmtypes("gd_region",10,"name")="gd_region.stat.addr" + Set gtmtypes("gd_region",10,"off")=44 + Set gtmtypes("gd_region",10,"len")=4 + Set gtmtypes("gd_region",10,"type")="addr" + Set gtmtypfldindx("gd_region","stat.addr")=10 + Set gtmtypes("gd_region",11,"name")="gd_region.open" + Set gtmtypes("gd_region",11,"off")=48 + Set gtmtypes("gd_region",11,"len")=1 + Set gtmtypes("gd_region",11,"type")="char" + Set gtmtypfldindx("gd_region","open")=11 + Set gtmtypes("gd_region",12,"name")="gd_region.lock_write" + Set gtmtypes("gd_region",12,"off")=49 + Set gtmtypes("gd_region",12,"len")=1 + Set gtmtypes("gd_region",12,"type")="char" + Set gtmtypfldindx("gd_region","lock_write")=12 + Set gtmtypes("gd_region",13,"name")="gd_region.null_subs" + Set gtmtypes("gd_region",13,"off")=50 + Set gtmtypes("gd_region",13,"len")=1 + Set gtmtypes("gd_region",13,"type")="char" + Set gtmtypfldindx("gd_region","null_subs")=13 + Set gtmtypes("gd_region",14,"name")="gd_region.jnl_state" + Set gtmtypes("gd_region",14,"off")=51 + Set gtmtypes("gd_region",14,"len")=1 + Set gtmtypes("gd_region",14,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_state")=14 + Set gtmtypes("gd_region",15,"name")="gd_region.jnl_alq" + Set gtmtypes("gd_region",15,"off")=52 + Set gtmtypes("gd_region",15,"len")=4 + Set gtmtypes("gd_region",15,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_alq")=15 + Set gtmtypes("gd_region",16,"name")="gd_region.jnl_deq" + Set gtmtypes("gd_region",16,"off")=56 + Set gtmtypes("gd_region",16,"len")=4 + Set gtmtypes("gd_region",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_deq")=16 + Set gtmtypes("gd_region",17,"name")="gd_region.jnl_autoswitchlimit" + Set gtmtypes("gd_region",17,"off")=60 + Set gtmtypes("gd_region",17,"len")=4 + Set gtmtypes("gd_region",17,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_autoswitchlimit")=17 + Set gtmtypes("gd_region",18,"name")="gd_region.jnl_alignsize" + Set gtmtypes("gd_region",18,"off")=64 + Set gtmtypes("gd_region",18,"len")=4 + Set gtmtypes("gd_region",18,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_alignsize")=18 + Set gtmtypes("gd_region",19,"name")="gd_region.jnl_epoch_interval" + Set gtmtypes("gd_region",19,"off")=68 + Set gtmtypes("gd_region",19,"len")=4 + Set gtmtypes("gd_region",19,"type")="int" + Set gtmtypfldindx("gd_region","jnl_epoch_interval")=19 + Set gtmtypes("gd_region",20,"name")="gd_region.jnl_sync_io" + Set gtmtypes("gd_region",20,"off")=72 + Set gtmtypes("gd_region",20,"len")=4 + Set gtmtypes("gd_region",20,"type")="int" + Set gtmtypfldindx("gd_region","jnl_sync_io")=20 + Set gtmtypes("gd_region",21,"name")="gd_region.jnl_yield_lmt" + Set gtmtypes("gd_region",21,"off")=76 + Set gtmtypes("gd_region",21,"len")=4 + Set gtmtypes("gd_region",21,"type")="int" + Set gtmtypfldindx("gd_region","jnl_yield_lmt")=21 + Set gtmtypes("gd_region",22,"name")="gd_region.jnl_buffer_size" + Set gtmtypes("gd_region",22,"off")=80 + Set gtmtypes("gd_region",22,"len")=2 + Set gtmtypes("gd_region",22,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","jnl_buffer_size")=22 + Set gtmtypes("gd_region",23,"name")="gd_region.jnl_before_image" + Set gtmtypes("gd_region",23,"off")=82 + Set gtmtypes("gd_region",23,"len")=1 + Set gtmtypes("gd_region",23,"type")="char" + Set gtmtypfldindx("gd_region","jnl_before_image")=23 + Set gtmtypes("gd_region",24,"name")="gd_region.opening" + Set gtmtypes("gd_region",24,"off")=83 + Set gtmtypes("gd_region",24,"len")=1 + Set gtmtypes("gd_region",24,"type")="char" + Set gtmtypfldindx("gd_region","opening")=24 + Set gtmtypes("gd_region",25,"name")="gd_region.read_only" + Set gtmtypes("gd_region",25,"off")=84 + Set gtmtypes("gd_region",25,"len")=1 + Set gtmtypes("gd_region",25,"type")="char" + Set gtmtypfldindx("gd_region","read_only")=25 + Set gtmtypes("gd_region",26,"name")="gd_region.was_open" + Set gtmtypes("gd_region",26,"off")=85 + Set gtmtypes("gd_region",26,"len")=1 + Set gtmtypes("gd_region",26,"type")="char" + Set gtmtypfldindx("gd_region","was_open")=26 + Set gtmtypes("gd_region",27,"name")="gd_region.cmx_regnum" + Set gtmtypes("gd_region",27,"off")=86 + Set gtmtypes("gd_region",27,"len")=1 + Set gtmtypes("gd_region",27,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","cmx_regnum")=27 + Set gtmtypes("gd_region",28,"name")="gd_region.def_coll" + Set gtmtypes("gd_region",28,"off")=87 + Set gtmtypes("gd_region",28,"len")=1 + Set gtmtypes("gd_region",28,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","def_coll")=28 + Set gtmtypes("gd_region",29,"name")="gd_region.std_null_coll" + Set gtmtypes("gd_region",29,"off")=88 + Set gtmtypes("gd_region",29,"len")=1 + Set gtmtypes("gd_region",29,"type")="char" + Set gtmtypfldindx("gd_region","std_null_coll")=29 + Set gtmtypes("gd_region",30,"name")="gd_region.freeze_on_fail" + Set gtmtypes("gd_region",30,"off")=89 + Set gtmtypes("gd_region",30,"len")=1 + Set gtmtypes("gd_region",30,"type")="char" + Set gtmtypfldindx("gd_region","freeze_on_fail")=30 + Set gtmtypes("gd_region",31,"name")="gd_region.mumps_can_bypass" + Set gtmtypes("gd_region",31,"off")=90 + Set gtmtypes("gd_region",31,"len")=1 + Set gtmtypes("gd_region",31,"type")="char" + Set gtmtypfldindx("gd_region","mumps_can_bypass")=31 + Set gtmtypes("gd_region",32,"name")="gd_region.jnl_file_len" + Set gtmtypes("gd_region",32,"off")=91 + Set gtmtypes("gd_region",32,"len")=1 + Set gtmtypes("gd_region",32,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_file_len")=32 + Set gtmtypes("gd_region",33,"name")="gd_region.jnl_file_name" + Set gtmtypes("gd_region",33,"off")=92 + Set gtmtypes("gd_region",33,"len")=256 + Set gtmtypes("gd_region",33,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_file_name")=33 + Set gtmtypes("gd_region",34,"name")="gd_region.node" + Set gtmtypes("gd_region",34,"off")=348 + Set gtmtypes("gd_region",34,"len")=4 + Set gtmtypes("gd_region",34,"type")="int" + Set gtmtypfldindx("gd_region","node")=34 + Set gtmtypes("gd_region",35,"name")="gd_region.sec_size" + Set gtmtypes("gd_region",35,"off")=352 + Set gtmtypes("gd_region",35,"len")=4 + Set gtmtypes("gd_region",35,"type")="int" + Set gtmtypfldindx("gd_region","sec_size")=35 + Set gtmtypes("gd_region",36,"name")="gd_region.is_spanned" + Set gtmtypes("gd_region",36,"off")=356 + Set gtmtypes("gd_region",36,"len")=4 + Set gtmtypes("gd_region",36,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","is_spanned")=36 + Set gtmtypes("gd_region",37,"name")="gd_region.epoch_taper" + Set gtmtypes("gd_region",37,"off")=360 + Set gtmtypes("gd_region",37,"len")=1 + Set gtmtypes("gd_region",37,"type")="char" + Set gtmtypfldindx("gd_region","epoch_taper")=37 + Set gtmtypes("gd_region",38,"name")="gd_region.filler" + Set gtmtypes("gd_region",38,"off")=361 + Set gtmtypes("gd_region",38,"len")=11 + Set gtmtypes("gd_region",38,"type")="char" + Set gtmtypfldindx("gd_region","filler")=38 + ; + Set gtmtypes("gd_seg_addr")="union" + Set gtmtypes("gd_seg_addr",0)=2 + Set gtmtypes("gd_seg_addr","len")=4 + Set gtmtypes("gd_seg_addr",1,"name")="gd_seg_addr.offset" + Set gtmtypes("gd_seg_addr",1,"off")=0 + Set gtmtypes("gd_seg_addr",1,"len")=4 + Set gtmtypes("gd_seg_addr",1,"type")="int" + Set gtmtypfldindx("gd_seg_addr","offset")=1 + Set gtmtypes("gd_seg_addr",2,"name")="gd_seg_addr.addr" + Set gtmtypes("gd_seg_addr",2,"off")=0 + Set gtmtypes("gd_seg_addr",2,"len")=4 + Set gtmtypes("gd_seg_addr",2,"type")="addr" + Set gtmtypfldindx("gd_seg_addr","addr")=2 + ; + Set gtmtypes("gd_segment")="struct" + Set gtmtypes("gd_segment",0)=23 + Set gtmtypes("gd_segment","len")=364 + Set gtmtypes("gd_segment",1,"name")="gd_segment.sname_len" + Set gtmtypes("gd_segment",1,"off")=0 + Set gtmtypes("gd_segment",1,"len")=2 + Set gtmtypes("gd_segment",1,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","sname_len")=1 + Set gtmtypes("gd_segment",2,"name")="gd_segment.sname" + Set gtmtypes("gd_segment",2,"off")=2 + Set gtmtypes("gd_segment",2,"len")=32 + Set gtmtypes("gd_segment",2,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","sname")=2 + Set gtmtypes("gd_segment",3,"name")="gd_segment.fname_len" + Set gtmtypes("gd_segment",3,"off")=34 + Set gtmtypes("gd_segment",3,"len")=2 + Set gtmtypes("gd_segment",3,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","fname_len")=3 + Set gtmtypes("gd_segment",4,"name")="gd_segment.fname" + Set gtmtypes("gd_segment",4,"off")=36 + Set gtmtypes("gd_segment",4,"len")=256 + Set gtmtypes("gd_segment",4,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","fname")=4 + Set gtmtypes("gd_segment",5,"name")="gd_segment.blk_size" + Set gtmtypes("gd_segment",5,"off")=292 + Set gtmtypes("gd_segment",5,"len")=2 + Set gtmtypes("gd_segment",5,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","blk_size")=5 + Set gtmtypes("gd_segment",6,"name")="gd_segment.ext_blk_count" + Set gtmtypes("gd_segment",6,"off")=294 + Set gtmtypes("gd_segment",6,"len")=2 + Set gtmtypes("gd_segment",6,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","ext_blk_count")=6 + Set gtmtypes("gd_segment",7,"name")="gd_segment.allocation" + Set gtmtypes("gd_segment",7,"off")=296 + Set gtmtypes("gd_segment",7,"len")=4 + Set gtmtypes("gd_segment",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","allocation")=7 + Set gtmtypes("gd_segment",8,"name")="gd_segment.cm_blk" + Set gtmtypes("gd_segment",8,"off")=300 + Set gtmtypes("gd_segment",8,"len")=4 + Set gtmtypes("gd_segment",8,"type")="addr" + Set gtmtypfldindx("gd_segment","cm_blk")=8 + Set gtmtypes("gd_segment",9,"name")="gd_segment.defext" + Set gtmtypes("gd_segment",9,"off")=304 + Set gtmtypes("gd_segment",9,"len")=4 + Set gtmtypes("gd_segment",9,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","defext")=9 + Set gtmtypes("gd_segment",10,"name")="gd_segment.defer_time" + Set gtmtypes("gd_segment",10,"off")=308 + Set gtmtypes("gd_segment",10,"len")=1 + Set gtmtypes("gd_segment",10,"type")="char" + Set gtmtypfldindx("gd_segment","defer_time")=10 + Set gtmtypes("gd_segment",11,"name")="gd_segment.file_type" + Set gtmtypes("gd_segment",11,"off")=309 + Set gtmtypes("gd_segment",11,"len")=1 + Set gtmtypes("gd_segment",11,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","file_type")=11 + Set gtmtypes("gd_segment",12,"name")="gd_segment.buckets" + Set gtmtypes("gd_segment",12,"off")=310 + Set gtmtypes("gd_segment",12,"len")=1 + Set gtmtypes("gd_segment",12,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","buckets")=12 + Set gtmtypes("gd_segment",13,"name")="gd_segment.windows" + Set gtmtypes("gd_segment",13,"off")=311 + Set gtmtypes("gd_segment",13,"len")=1 + Set gtmtypes("gd_segment",13,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","windows")=13 + Set gtmtypes("gd_segment",14,"name")="gd_segment.lock_space" + Set gtmtypes("gd_segment",14,"off")=312 + Set gtmtypes("gd_segment",14,"len")=4 + Set gtmtypes("gd_segment",14,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","lock_space")=14 + Set gtmtypes("gd_segment",15,"name")="gd_segment.global_buffers" + Set gtmtypes("gd_segment",15,"off")=316 + Set gtmtypes("gd_segment",15,"len")=4 + Set gtmtypes("gd_segment",15,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","global_buffers")=15 + Set gtmtypes("gd_segment",16,"name")="gd_segment.reserved_bytes" + Set gtmtypes("gd_segment",16,"off")=320 + Set gtmtypes("gd_segment",16,"len")=4 + Set gtmtypes("gd_segment",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","reserved_bytes")=16 + Set gtmtypes("gd_segment",17,"name")="gd_segment.mutex_slots" + Set gtmtypes("gd_segment",17,"off")=324 + Set gtmtypes("gd_segment",17,"len")=4 + Set gtmtypes("gd_segment",17,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","mutex_slots")=17 + Set gtmtypes("gd_segment",18,"name")="gd_segment.defer_allocate" + Set gtmtypes("gd_segment",18,"off")=328 + Set gtmtypes("gd_segment",18,"len")=4 + Set gtmtypes("gd_segment",18,"type")="boolean_t" + Set gtmtypfldindx("gd_segment","defer_allocate")=18 + Set gtmtypes("gd_segment",19,"name")="gd_segment.acc_meth" + Set gtmtypes("gd_segment",19,"off")=332 + Set gtmtypes("gd_segment",19,"len")=4 + Set gtmtypes("gd_segment",19,"type")="int" + Set gtmtypfldindx("gd_segment","acc_meth")=19 + Set gtmtypes("gd_segment",20,"name")="gd_segment.file_cntl" + Set gtmtypes("gd_segment",20,"off")=336 + Set gtmtypes("gd_segment",20,"len")=4 + Set gtmtypes("gd_segment",20,"type")="addr" + Set gtmtypfldindx("gd_segment","file_cntl")=20 + Set gtmtypes("gd_segment",21,"name")="gd_segment.repl_list" + Set gtmtypes("gd_segment",21,"off")=340 + Set gtmtypes("gd_segment",21,"len")=4 + Set gtmtypes("gd_segment",21,"type")="addr" + Set gtmtypfldindx("gd_segment","repl_list")=21 + Set gtmtypes("gd_segment",22,"name")="gd_segment.is_encrypted" + Set gtmtypes("gd_segment",22,"off")=344 + Set gtmtypes("gd_segment",22,"len")=4 + Set gtmtypes("gd_segment",22,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","is_encrypted")=22 + Set gtmtypes("gd_segment",23,"name")="gd_segment.filler" + Set gtmtypes("gd_segment",23,"off")=348 + Set gtmtypes("gd_segment",23,"len")=16 + Set gtmtypes("gd_segment",23,"type")="char" + Set gtmtypfldindx("gd_segment","filler")=23 + ; + Set gtmtypes("gdr_name")="struct" + Set gtmtypes("gdr_name",0)=10 + Set gtmtypes("gdr_name","len")=32 + Set gtmtypes("gdr_name",1,"name")="gdr_name.name" + Set gtmtypes("gdr_name",1,"off")=0 + Set gtmtypes("gdr_name",1,"len")=12 + Set gtmtypes("gdr_name",1,"type")="mstr" + Set gtmtypfldindx("gdr_name","name")=1 + Set gtmtypes("gdr_name",2,"name")="gdr_name.name.char_len" + Set gtmtypes("gdr_name",2,"off")=0 + Set gtmtypes("gdr_name",2,"len")=4 + Set gtmtypes("gdr_name",2,"type")="unsigned-int" + Set gtmtypfldindx("gdr_name","name.char_len")=2 + Set gtmtypes("gdr_name",3,"name")="gdr_name.name.len" + Set gtmtypes("gdr_name",3,"off")=4 + Set gtmtypes("gdr_name",3,"len")=4 + Set gtmtypes("gdr_name",3,"type")="int" + Set gtmtypfldindx("gdr_name","name.len")=3 + Set gtmtypes("gdr_name",4,"name")="gdr_name.name.addr" + Set gtmtypes("gdr_name",4,"off")=8 + Set gtmtypes("gdr_name",4,"len")=4 + Set gtmtypes("gdr_name",4,"type")="addr" + Set gtmtypfldindx("gdr_name","name.addr")=4 + Set gtmtypes("gdr_name",5,"name")="gdr_name.exp_name" + Set gtmtypes("gdr_name",5,"off")=12 + Set gtmtypes("gdr_name",5,"len")=12 + Set gtmtypes("gdr_name",5,"type")="mstr" + Set gtmtypfldindx("gdr_name","exp_name")=5 + Set gtmtypes("gdr_name",6,"name")="gdr_name.exp_name.char_len" + Set gtmtypes("gdr_name",6,"off")=12 + Set gtmtypes("gdr_name",6,"len")=4 + Set gtmtypes("gdr_name",6,"type")="unsigned-int" + Set gtmtypfldindx("gdr_name","exp_name.char_len")=6 + Set gtmtypes("gdr_name",7,"name")="gdr_name.exp_name.len" + Set gtmtypes("gdr_name",7,"off")=16 + Set gtmtypes("gdr_name",7,"len")=4 + Set gtmtypes("gdr_name",7,"type")="int" + Set gtmtypfldindx("gdr_name","exp_name.len")=7 + Set gtmtypes("gdr_name",8,"name")="gdr_name.exp_name.addr" + Set gtmtypes("gdr_name",8,"off")=20 + Set gtmtypes("gdr_name",8,"len")=4 + Set gtmtypes("gdr_name",8,"type")="addr" + Set gtmtypfldindx("gdr_name","exp_name.addr")=8 + Set gtmtypes("gdr_name",9,"name")="gdr_name.link" + Set gtmtypes("gdr_name",9,"off")=24 + Set gtmtypes("gdr_name",9,"len")=4 + Set gtmtypes("gdr_name",9,"type")="addr" + Set gtmtypfldindx("gdr_name","link")=9 + Set gtmtypes("gdr_name",10,"name")="gdr_name.gd_ptr" + Set gtmtypes("gdr_name",10,"off")=28 + Set gtmtypes("gdr_name",10,"len")=4 + Set gtmtypes("gdr_name",10,"type")="addr" + Set gtmtypfldindx("gdr_name","gd_ptr")=10 + ; + Set gtmtypes("gds_file_id")="struct" + Set gtmtypes("gds_file_id",0)=3 + Set gtmtypes("gds_file_id","len")=28 + Set gtmtypes("gds_file_id",1,"name")="gds_file_id.dvi" + Set gtmtypes("gds_file_id",1,"off")=0 + Set gtmtypes("gds_file_id",1,"len")=16 + Set gtmtypes("gds_file_id",1,"type")="char" + Set gtmtypfldindx("gds_file_id","dvi")=1 + Set gtmtypes("gds_file_id",2,"name")="gds_file_id.did" + Set gtmtypes("gds_file_id",2,"off")=16 + Set gtmtypes("gds_file_id",2,"len")=6 + Set gtmtypes("gds_file_id",2,"type")="unsigned-short" + Set gtmtypfldindx("gds_file_id","did")=2 + Set gtmtypes("gds_file_id",2,"dim")=3 + Set gtmtypes("gds_file_id",3,"name")="gds_file_id.fid" + Set gtmtypes("gds_file_id",3,"off")=22 + Set gtmtypes("gds_file_id",3,"len")=6 + Set gtmtypes("gds_file_id",3,"type")="unsigned-short" + Set gtmtypfldindx("gds_file_id","fid")=3 + Set gtmtypes("gds_file_id",3,"dim")=3 + ; + Set gtmtypes("gld_dbname_list")="struct" + Set gtmtypes("gld_dbname_list",0)=3 + Set gtmtypes("gld_dbname_list","len")=12 + Set gtmtypes("gld_dbname_list",1,"name")="gld_dbname_list.next" + Set gtmtypes("gld_dbname_list",1,"off")=0 + Set gtmtypes("gld_dbname_list",1,"len")=4 + Set gtmtypes("gld_dbname_list",1,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","next")=1 + Set gtmtypes("gld_dbname_list",2,"name")="gld_dbname_list.db_ctl" + Set gtmtypes("gld_dbname_list",2,"off")=4 + Set gtmtypes("gld_dbname_list",2,"len")=4 + Set gtmtypes("gld_dbname_list",2,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","db_ctl")=2 + Set gtmtypes("gld_dbname_list",3,"name")="gld_dbname_list.gd" + Set gtmtypes("gld_dbname_list",3,"off")=8 + Set gtmtypes("gld_dbname_list",3,"len")=4 + Set gtmtypes("gld_dbname_list",3,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","gd")=3 + ; + Set gtmtypes("glist")="struct" + Set gtmtypes("glist",0)=4 + Set gtmtypes("glist","len")=16 + Set gtmtypes("glist",1,"name")="glist.next" + Set gtmtypes("glist",1,"off")=0 + Set gtmtypes("glist",1,"len")=4 + Set gtmtypes("glist",1,"type")="addr" + Set gtmtypfldindx("glist","next")=1 + Set gtmtypes("glist",2,"name")="glist.reg" + Set gtmtypes("glist",2,"off")=4 + Set gtmtypes("glist",2,"len")=4 + Set gtmtypes("glist",2,"type")="addr" + Set gtmtypfldindx("glist","reg")=2 + Set gtmtypes("glist",3,"name")="glist.gvt" + Set gtmtypes("glist",3,"off")=8 + Set gtmtypes("glist",3,"len")=4 + Set gtmtypes("glist",3,"type")="addr" + Set gtmtypfldindx("glist","gvt")=3 + Set gtmtypes("glist",4,"name")="glist.gvnh_reg" + Set gtmtypes("glist",4,"off")=12 + Set gtmtypes("glist",4,"len")=4 + Set gtmtypes("glist",4,"type")="addr" + Set gtmtypfldindx("glist","gvnh_reg")=4 + ; + Set gtmtypes("global_dir_path")="struct" + Set gtmtypes("global_dir_path",0)=3 + Set gtmtypes("global_dir_path","len")=12 + Set gtmtypes("global_dir_path",1,"name")="global_dir_path.block" + Set gtmtypes("global_dir_path",1,"off")=0 + Set gtmtypes("global_dir_path",1,"len")=4 + Set gtmtypes("global_dir_path",1,"type")="int" + Set gtmtypfldindx("global_dir_path","block")=1 + Set gtmtypes("global_dir_path",2,"name")="global_dir_path.offset" + Set gtmtypes("global_dir_path",2,"off")=4 + Set gtmtypes("global_dir_path",2,"len")=4 + Set gtmtypes("global_dir_path",2,"type")="int" + Set gtmtypfldindx("global_dir_path","offset")=2 + Set gtmtypes("global_dir_path",3,"name")="global_dir_path.next" + Set gtmtypes("global_dir_path",3,"off")=8 + Set gtmtypes("global_dir_path",3,"len")=4 + Set gtmtypes("global_dir_path",3,"type")="addr" + Set gtmtypfldindx("global_dir_path","next")=3 + ; + Set gtmtypes("global_latch_t")="struct" + Set gtmtypes("global_latch_t",0)=5 + Set gtmtypes("global_latch_t","len")=8 + Set gtmtypes("global_latch_t",1,"name")="global_latch_t.u" + Set gtmtypes("global_latch_t",1,"off")=0 + Set gtmtypes("global_latch_t",1,"len")=8 + Set gtmtypes("global_latch_t",1,"type")="union" + Set gtmtypfldindx("global_latch_t","u")=1 + Set gtmtypes("global_latch_t",2,"name")="global_latch_t.u.pid_imgcnt" + Set gtmtypes("global_latch_t",2,"off")=0 + Set gtmtypes("global_latch_t",2,"len")=8 + Set gtmtypes("global_latch_t",2,"type")="uint64_t" + Set gtmtypfldindx("global_latch_t","u.pid_imgcnt")=2 + Set gtmtypes("global_latch_t",3,"name")="global_latch_t.u.parts" + Set gtmtypes("global_latch_t",3,"off")=0 + Set gtmtypes("global_latch_t",3,"len")=8 + Set gtmtypes("global_latch_t",3,"type")="struct" + Set gtmtypfldindx("global_latch_t","u.parts")=3 + Set gtmtypes("global_latch_t",4,"name")="global_latch_t.u.parts.latch_pid" + Set gtmtypes("global_latch_t",4,"off")=0 + Set gtmtypes("global_latch_t",4,"len")=4 + Set gtmtypes("global_latch_t",4,"type")="int" + Set gtmtypfldindx("global_latch_t","u.parts.latch_pid")=4 + Set gtmtypes("global_latch_t",5,"name")="global_latch_t.u.parts.latch_word" + Set gtmtypes("global_latch_t",5,"off")=4 + Set gtmtypes("global_latch_t",5,"len")=4 + Set gtmtypes("global_latch_t",5,"type")="int" + Set gtmtypfldindx("global_latch_t","u.parts.latch_word")=5 + ; + Set gtmtypes("global_list")="struct" + Set gtmtypes("global_list",0)=9 + Set gtmtypes("global_list","len")=112 + Set gtmtypes("global_list",1,"name")="global_list.root" + Set gtmtypes("global_list",1,"off")=0 + Set gtmtypes("global_list",1,"len")=4 + Set gtmtypes("global_list",1,"type")="int" + Set gtmtypfldindx("global_list","root")=1 + Set gtmtypes("global_list",2,"name")="global_list.link" + Set gtmtypes("global_list",2,"off")=4 + Set gtmtypes("global_list",2,"len")=4 + Set gtmtypes("global_list",2,"type")="addr" + Set gtmtypfldindx("global_list","link")=2 + Set gtmtypes("global_list",3,"name")="global_list.path" + Set gtmtypes("global_list",3,"off")=8 + Set gtmtypes("global_list",3,"len")=32 + Set gtmtypes("global_list",3,"type")="int" + Set gtmtypfldindx("global_list","path")=3 + Set gtmtypes("global_list",3,"dim")=8 + Set gtmtypes("global_list",4,"name")="global_list.offset" + Set gtmtypes("global_list",4,"off")=40 + Set gtmtypes("global_list",4,"len")=32 + Set gtmtypes("global_list",4,"type")="unsigned-int" + Set gtmtypfldindx("global_list","offset")=4 + Set gtmtypes("global_list",4,"dim")=8 + Set gtmtypes("global_list",5,"name")="global_list.nct" + Set gtmtypes("global_list",5,"off")=72 + Set gtmtypes("global_list",5,"len")=1 + Set gtmtypes("global_list",5,"type")="unsigned-char" + Set gtmtypfldindx("global_list","nct")=5 + Set gtmtypes("global_list",6,"name")="global_list.act" + Set gtmtypes("global_list",6,"off")=73 + Set gtmtypes("global_list",6,"len")=1 + Set gtmtypes("global_list",6,"type")="unsigned-char" + Set gtmtypfldindx("global_list","act")=6 + Set gtmtypes("global_list",7,"name")="global_list.ver" + Set gtmtypes("global_list",7,"off")=74 + Set gtmtypes("global_list",7,"len")=1 + Set gtmtypes("global_list",7,"type")="unsigned-char" + Set gtmtypfldindx("global_list","ver")=7 + Set gtmtypes("global_list",8,"name")="global_list.key" + Set gtmtypes("global_list",8,"off")=75 + Set gtmtypes("global_list",8,"len")=32 + Set gtmtypes("global_list",8,"type")="char" + Set gtmtypfldindx("global_list","key")=8 + Set gtmtypes("global_list",9,"name")="global_list.keysize" + Set gtmtypes("global_list",9,"off")=108 + Set gtmtypes("global_list",9,"len")=4 + Set gtmtypes("global_list",9,"type")="int" + Set gtmtypfldindx("global_list","keysize")=9 + ; + Set gtmtypes("global_root_list")="struct" + Set gtmtypes("global_root_list",0)=3 + Set gtmtypes("global_root_list","len")=12 + Set gtmtypes("global_root_list",1,"name")="global_root_list.root" + Set gtmtypes("global_root_list",1,"off")=0 + Set gtmtypes("global_root_list",1,"len")=4 + Set gtmtypes("global_root_list",1,"type")="int" + Set gtmtypfldindx("global_root_list","root")=1 + Set gtmtypes("global_root_list",2,"name")="global_root_list.dir_path" + Set gtmtypes("global_root_list",2,"off")=4 + Set gtmtypes("global_root_list",2,"len")=4 + Set gtmtypes("global_root_list",2,"type")="addr" + Set gtmtypfldindx("global_root_list","dir_path")=2 + Set gtmtypes("global_root_list",3,"name")="global_root_list.link" + Set gtmtypes("global_root_list",3,"off")=8 + Set gtmtypes("global_root_list",3,"len")=4 + Set gtmtypes("global_root_list",3,"type")="addr" + Set gtmtypfldindx("global_root_list","link")=3 + ; + Set gtmtypes("global_tlvl_info")="struct" + Set gtmtypes("global_tlvl_info",0)=10 + Set gtmtypes("global_tlvl_info","len")=40 + Set gtmtypes("global_tlvl_info",1,"name")="global_tlvl_info.next_global_tlvl_info" + Set gtmtypes("global_tlvl_info",1,"off")=0 + Set gtmtypes("global_tlvl_info",1,"len")=4 + Set gtmtypes("global_tlvl_info",1,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","next_global_tlvl_info")=1 + Set gtmtypes("global_tlvl_info",2,"name")="global_tlvl_info.global_tlvl_fence_info" + Set gtmtypes("global_tlvl_info",2,"off")=4 + Set gtmtypes("global_tlvl_info",2,"len")=4 + Set gtmtypes("global_tlvl_info",2,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","global_tlvl_fence_info")=2 + Set gtmtypes("global_tlvl_info",3,"name")="global_tlvl_info.t_level" + Set gtmtypes("global_tlvl_info",3,"off")=8 + Set gtmtypes("global_tlvl_info",3,"len")=4 + Set gtmtypes("global_tlvl_info",3,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","t_level")=3 + Set gtmtypes("global_tlvl_info",4,"name")="global_tlvl_info.tlvl_cumul_jrec_len" + Set gtmtypes("global_tlvl_info",4,"off")=12 + Set gtmtypes("global_tlvl_info",4,"len")=4 + Set gtmtypes("global_tlvl_info",4,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","tlvl_cumul_jrec_len")=4 + Set gtmtypes("global_tlvl_info",5,"name")="global_tlvl_info.tlvl_cumul_index" + Set gtmtypes("global_tlvl_info",5,"off")=16 + Set gtmtypes("global_tlvl_info",5,"len")=4 + Set gtmtypes("global_tlvl_info",5,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","tlvl_cumul_index")=5 + Set gtmtypes("global_tlvl_info",6,"name")="global_tlvl_info.tlvl_tp_ztp_jnl_upd_num" + Set gtmtypes("global_tlvl_info",6,"off")=20 + Set gtmtypes("global_tlvl_info",6,"len")=4 + Set gtmtypes("global_tlvl_info",6,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","tlvl_tp_ztp_jnl_upd_num")=6 + Set gtmtypes("global_tlvl_info",7,"name")="global_tlvl_info.tlvl_prev_ztworm_ptr" + Set gtmtypes("global_tlvl_info",7,"off")=24 + Set gtmtypes("global_tlvl_info",7,"len")=4 + Set gtmtypes("global_tlvl_info",7,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","tlvl_prev_ztworm_ptr")=7 + Set gtmtypes("global_tlvl_info",8,"name")="global_tlvl_info.curr_ua" + Set gtmtypes("global_tlvl_info",8,"off")=28 + Set gtmtypes("global_tlvl_info",8,"len")=4 + Set gtmtypes("global_tlvl_info",8,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","curr_ua")=8 + Set gtmtypes("global_tlvl_info",9,"name")="global_tlvl_info.upd_array_ptr" + Set gtmtypes("global_tlvl_info",9,"off")=32 + Set gtmtypes("global_tlvl_info",9,"len")=4 + Set gtmtypes("global_tlvl_info",9,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","upd_array_ptr")=9 + Set gtmtypes("global_tlvl_info",10,"name")="global_tlvl_info.ztrigbuffLen" + Set gtmtypes("global_tlvl_info",10,"off")=36 + Set gtmtypes("global_tlvl_info",10,"len")=4 + Set gtmtypes("global_tlvl_info",10,"type")="int" + Set gtmtypfldindx("global_tlvl_info","ztrigbuffLen")=10 + ; + Set gtmtypes("glvn_pool")="struct" + Set gtmtypes("glvn_pool",0)=14 + Set gtmtypes("glvn_pool","len")=324 + Set gtmtypes("glvn_pool",1,"name")="glvn_pool.capacity" + Set gtmtypes("glvn_pool",1,"off")=0 + Set gtmtypes("glvn_pool",1,"len")=4 + Set gtmtypes("glvn_pool",1,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","capacity")=1 + Set gtmtypes("glvn_pool",2,"name")="glvn_pool.top" + Set gtmtypes("glvn_pool",2,"off")=4 + Set gtmtypes("glvn_pool",2,"len")=4 + Set gtmtypes("glvn_pool",2,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","top")=2 + Set gtmtypes("glvn_pool",3,"name")="glvn_pool.for_slot" + Set gtmtypes("glvn_pool",3,"off")=8 + Set gtmtypes("glvn_pool",3,"len")=132 + Set gtmtypes("glvn_pool",3,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","for_slot")=3 + Set gtmtypes("glvn_pool",3,"dim")=33 + Set gtmtypes("glvn_pool",4,"name")="glvn_pool.share_slot" + Set gtmtypes("glvn_pool",4,"off")=140 + Set gtmtypes("glvn_pool",4,"len")=4 + Set gtmtypes("glvn_pool",4,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","share_slot")=4 + Set gtmtypes("glvn_pool",5,"name")="glvn_pool.share_opcode" + Set gtmtypes("glvn_pool",5,"off")=144 + Set gtmtypes("glvn_pool",5,"len")=4 + Set gtmtypes("glvn_pool",5,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","share_opcode")=5 + Set gtmtypes("glvn_pool",6,"name")="glvn_pool.mval_capacity" + Set gtmtypes("glvn_pool",6,"off")=148 + Set gtmtypes("glvn_pool",6,"len")=4 + Set gtmtypes("glvn_pool",6,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","mval_capacity")=6 + Set gtmtypes("glvn_pool",7,"name")="glvn_pool.mval_top" + Set gtmtypes("glvn_pool",7,"off")=152 + Set gtmtypes("glvn_pool",7,"len")=4 + Set gtmtypes("glvn_pool",7,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","mval_top")=7 + Set gtmtypes("glvn_pool",8,"name")="glvn_pool.mval_stack" + Set gtmtypes("glvn_pool",8,"off")=156 + Set gtmtypes("glvn_pool",8,"len")=4 + Set gtmtypes("glvn_pool",8,"type")="addr" + Set gtmtypfldindx("glvn_pool","mval_stack")=8 + Set gtmtypes("glvn_pool",9,"name")="glvn_pool.slot" + Set gtmtypes("glvn_pool",9,"off")=160 + Set gtmtypes("glvn_pool",9,"len")=164 + Set gtmtypes("glvn_pool",9,"type")="glvn_pool_entry" + Set gtmtypfldindx("glvn_pool","slot")=9 + Set gtmtypes("glvn_pool",10,"name")="glvn_pool.slot[0].sav_opcode" + Set gtmtypes("glvn_pool",10,"off")=160 + Set gtmtypes("glvn_pool",10,"len")=4 + Set gtmtypes("glvn_pool",10,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].sav_opcode")=10 + Set gtmtypes("glvn_pool",11,"name")="glvn_pool.slot[0].mval_top" + Set gtmtypes("glvn_pool",11,"off")=164 + Set gtmtypes("glvn_pool",11,"len")=4 + Set gtmtypes("glvn_pool",11,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].mval_top")=11 + Set gtmtypes("glvn_pool",12,"name")="glvn_pool.slot[0].precursor" + Set gtmtypes("glvn_pool",12,"off")=168 + Set gtmtypes("glvn_pool",12,"len")=4 + Set gtmtypes("glvn_pool",12,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].precursor")=12 + Set gtmtypes("glvn_pool",13,"name")="glvn_pool.slot[0].lvname" + Set gtmtypes("glvn_pool",13,"off")=172 + Set gtmtypes("glvn_pool",13,"len")=4 + Set gtmtypes("glvn_pool",13,"type")="addr" + Set gtmtypfldindx("glvn_pool","slot[0].lvname")=13 + Set gtmtypes("glvn_pool",14,"name")="glvn_pool.slot[0].glvn_info" + Set gtmtypes("glvn_pool",14,"off")=176 + Set gtmtypes("glvn_pool",14,"len")=148 + Set gtmtypes("glvn_pool",14,"type")="gparam_list" + Set gtmtypfldindx("glvn_pool","slot[0].glvn_info")=14 + ; + Set gtmtypes("glvn_pool_entry")="struct" + Set gtmtypes("glvn_pool_entry",0)=7 + Set gtmtypes("glvn_pool_entry","len")=164 + Set gtmtypes("glvn_pool_entry",1,"name")="glvn_pool_entry.sav_opcode" + Set gtmtypes("glvn_pool_entry",1,"off")=0 + Set gtmtypes("glvn_pool_entry",1,"len")=4 + Set gtmtypes("glvn_pool_entry",1,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","sav_opcode")=1 + Set gtmtypes("glvn_pool_entry",2,"name")="glvn_pool_entry.mval_top" + Set gtmtypes("glvn_pool_entry",2,"off")=4 + Set gtmtypes("glvn_pool_entry",2,"len")=4 + Set gtmtypes("glvn_pool_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","mval_top")=2 + Set gtmtypes("glvn_pool_entry",3,"name")="glvn_pool_entry.precursor" + Set gtmtypes("glvn_pool_entry",3,"off")=8 + Set gtmtypes("glvn_pool_entry",3,"len")=4 + Set gtmtypes("glvn_pool_entry",3,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","precursor")=3 + Set gtmtypes("glvn_pool_entry",4,"name")="glvn_pool_entry.lvname" + Set gtmtypes("glvn_pool_entry",4,"off")=12 + Set gtmtypes("glvn_pool_entry",4,"len")=4 + Set gtmtypes("glvn_pool_entry",4,"type")="addr" + Set gtmtypfldindx("glvn_pool_entry","lvname")=4 + Set gtmtypes("glvn_pool_entry",5,"name")="glvn_pool_entry.glvn_info" + Set gtmtypes("glvn_pool_entry",5,"off")=16 + Set gtmtypes("glvn_pool_entry",5,"len")=148 + Set gtmtypes("glvn_pool_entry",5,"type")="gparam_list" + Set gtmtypfldindx("glvn_pool_entry","glvn_info")=5 + Set gtmtypes("glvn_pool_entry",6,"name")="glvn_pool_entry.glvn_info.n" + Set gtmtypes("glvn_pool_entry",6,"off")=16 + Set gtmtypes("glvn_pool_entry",6,"len")=4 + Set gtmtypes("glvn_pool_entry",6,"type")="intptr_t" + Set gtmtypfldindx("glvn_pool_entry","glvn_info.n")=6 + Set gtmtypes("glvn_pool_entry",7,"name")="glvn_pool_entry.glvn_info.arg" + Set gtmtypes("glvn_pool_entry",7,"off")=20 + Set gtmtypes("glvn_pool_entry",7,"len")=144 + Set gtmtypes("glvn_pool_entry",7,"type")="addr" + Set gtmtypfldindx("glvn_pool_entry","glvn_info.arg")=7 + Set gtmtypes("glvn_pool_entry",7,"dim")=36 + ; + Set gtmtypes("gparam_list")="struct" + Set gtmtypes("gparam_list",0)=2 + Set gtmtypes("gparam_list","len")=148 + Set gtmtypes("gparam_list",1,"name")="gparam_list.n" + Set gtmtypes("gparam_list",1,"off")=0 + Set gtmtypes("gparam_list",1,"len")=4 + Set gtmtypes("gparam_list",1,"type")="intptr_t" + Set gtmtypfldindx("gparam_list","n")=1 + Set gtmtypes("gparam_list",2,"name")="gparam_list.arg" + Set gtmtypes("gparam_list",2,"off")=4 + Set gtmtypes("gparam_list",2,"len")=144 + Set gtmtypes("gparam_list",2,"type")="addr" + Set gtmtypfldindx("gparam_list","arg")=2 + Set gtmtypes("gparam_list",2,"dim")=36 + ; + Set gtmtypes("gtcm_proto_cpu_info_t")="struct" + Set gtmtypes("gtcm_proto_cpu_info_t",0)=3 + Set gtmtypes("gtcm_proto_cpu_info_t","len")=12 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"name")="gtcm_proto_cpu_info_t.cpu_in_rel_str" + Set gtmtypes("gtcm_proto_cpu_info_t",1,"off")=0 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"type")="addr" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","cpu_in_rel_str")=1 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"name")="gtcm_proto_cpu_info_t.size_of_cpu_in_rel_str" + Set gtmtypes("gtcm_proto_cpu_info_t",2,"off")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"type")="int" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","size_of_cpu_in_rel_str")=2 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"name")="gtcm_proto_cpu_info_t.proto_cpu" + Set gtmtypes("gtcm_proto_cpu_info_t",3,"off")=8 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"type")="addr" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","proto_cpu")=3 + ; + Set gtmtypes("gtcm_proto_os_info_t")="struct" + Set gtmtypes("gtcm_proto_os_info_t",0)=3 + Set gtmtypes("gtcm_proto_os_info_t","len")=12 + Set gtmtypes("gtcm_proto_os_info_t",1,"name")="gtcm_proto_os_info_t.os_in_rel_str" + Set gtmtypes("gtcm_proto_os_info_t",1,"off")=0 + Set gtmtypes("gtcm_proto_os_info_t",1,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",1,"type")="addr" + Set gtmtypfldindx("gtcm_proto_os_info_t","os_in_rel_str")=1 + Set gtmtypes("gtcm_proto_os_info_t",2,"name")="gtcm_proto_os_info_t.size_of_os_in_rel_str" + Set gtmtypes("gtcm_proto_os_info_t",2,"off")=4 + Set gtmtypes("gtcm_proto_os_info_t",2,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",2,"type")="int" + Set gtmtypfldindx("gtcm_proto_os_info_t","size_of_os_in_rel_str")=2 + Set gtmtypes("gtcm_proto_os_info_t",3,"name")="gtcm_proto_os_info_t.proto_os" + Set gtmtypes("gtcm_proto_os_info_t",3,"off")=8 + Set gtmtypes("gtcm_proto_os_info_t",3,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",3,"type")="addr" + Set gtmtypfldindx("gtcm_proto_os_info_t","proto_os")=3 + ; + Set gtmtypes("gtm32_descriptor")="struct" + Set gtmtypes("gtm32_descriptor",0)=3 + Set gtmtypes("gtm32_descriptor","len")=12 + Set gtmtypes("gtm32_descriptor",1,"name")="gtm32_descriptor.len" + Set gtmtypes("gtm32_descriptor",1,"off")=0 + Set gtmtypes("gtm32_descriptor",1,"len")=4 + Set gtmtypes("gtm32_descriptor",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm32_descriptor","len")=1 + Set gtmtypes("gtm32_descriptor",2,"name")="gtm32_descriptor.type" + Set gtmtypes("gtm32_descriptor",2,"off")=4 + Set gtmtypes("gtm32_descriptor",2,"len")=4 + Set gtmtypes("gtm32_descriptor",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm32_descriptor","type")=2 + Set gtmtypes("gtm32_descriptor",3,"name")="gtm32_descriptor.val" + Set gtmtypes("gtm32_descriptor",3,"off")=8 + Set gtmtypes("gtm32_descriptor",3,"len")=4 + Set gtmtypes("gtm32_descriptor",3,"type")="addr" + Set gtmtypfldindx("gtm32_descriptor","val")=3 + ; + Set gtmtypes("gtmImageName")="struct" + Set gtmtypes("gtmImageName",0)=2 + Set gtmtypes("gtmImageName","len")=8 + Set gtmtypes("gtmImageName",1,"name")="gtmImageName.imageName" + Set gtmtypes("gtmImageName",1,"off")=0 + Set gtmtypes("gtmImageName",1,"len")=4 + Set gtmtypes("gtmImageName",1,"type")="addr" + Set gtmtypfldindx("gtmImageName","imageName")=1 + Set gtmtypes("gtmImageName",2,"name")="gtmImageName.imageNameLen" + Set gtmtypes("gtmImageName",2,"off")=4 + Set gtmtypes("gtmImageName",2,"len")=4 + Set gtmtypes("gtmImageName",2,"type")="int" + Set gtmtypfldindx("gtmImageName","imageNameLen")=2 + ; + Set gtmtypes("gtm_descriptor")="struct" + Set gtmtypes("gtm_descriptor",0)=3 + Set gtmtypes("gtm_descriptor","len")=8 + Set gtmtypes("gtm_descriptor",1,"name")="gtm_descriptor.len" + Set gtmtypes("gtm_descriptor",1,"off")=0 + Set gtmtypes("gtm_descriptor",1,"len")=2 + Set gtmtypes("gtm_descriptor",1,"type")="short" + Set gtmtypfldindx("gtm_descriptor","len")=1 + Set gtmtypes("gtm_descriptor",2,"name")="gtm_descriptor.type" + Set gtmtypes("gtm_descriptor",2,"off")=2 + Set gtmtypes("gtm_descriptor",2,"len")=2 + Set gtmtypes("gtm_descriptor",2,"type")="short" + Set gtmtypfldindx("gtm_descriptor","type")=2 + Set gtmtypes("gtm_descriptor",3,"name")="gtm_descriptor.val" + Set gtmtypes("gtm_descriptor",3,"off")=4 + Set gtmtypes("gtm_descriptor",3,"len")=4 + Set gtmtypes("gtm_descriptor",3,"type")="addr" + Set gtmtypfldindx("gtm_descriptor","val")=3 + ; + Set gtmtypes("gtm_id_block")="struct" + Set gtmtypes("gtm_id_block",0)=3 + Set gtmtypes("gtm_id_block","len")=76 + Set gtmtypes("gtm_id_block",1,"name")="gtm_id_block.sid" + Set gtmtypes("gtm_id_block",1,"off")=0 + Set gtmtypes("gtm_id_block",1,"len")=64 + Set gtmtypes("gtm_id_block",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_block","sid")=1 + Set gtmtypes("gtm_id_block",1,"dim")=16 + Set gtmtypes("gtm_id_block",2,"name")="gtm_id_block.exp_date" + Set gtmtypes("gtm_id_block",2,"off")=64 + Set gtmtypes("gtm_id_block",2,"len")=4 + Set gtmtypes("gtm_id_block",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_block","exp_date")=2 + Set gtmtypes("gtm_id_block",3,"name")="gtm_id_block.gtm_serial" + Set gtmtypes("gtm_id_block",3,"off")=68 + Set gtmtypes("gtm_id_block",3,"len")=8 + Set gtmtypes("gtm_id_block",3,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_block","gtm_serial")=3 + ; + Set gtmtypes("gtm_id_struct")="struct" + Set gtmtypes("gtm_id_struct",0)=9 + Set gtmtypes("gtm_id_struct","len")=228 + Set gtmtypes("gtm_id_struct",1,"name")="gtm_id_struct.plaintext" + Set gtmtypes("gtm_id_struct",1,"off")=0 + Set gtmtypes("gtm_id_struct",1,"len")=76 + Set gtmtypes("gtm_id_struct",1,"type")="gtm_id_block" + Set gtmtypfldindx("gtm_id_struct","plaintext")=1 + Set gtmtypes("gtm_id_struct",2,"name")="gtm_id_struct.plaintext.sid" + Set gtmtypes("gtm_id_struct",2,"off")=0 + Set gtmtypes("gtm_id_struct",2,"len")=64 + Set gtmtypes("gtm_id_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","plaintext.sid")=2 + Set gtmtypes("gtm_id_struct",2,"dim")=16 + Set gtmtypes("gtm_id_struct",3,"name")="gtm_id_struct.plaintext.exp_date" + Set gtmtypes("gtm_id_struct",3,"off")=64 + Set gtmtypes("gtm_id_struct",3,"len")=4 + Set gtmtypes("gtm_id_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","plaintext.exp_date")=3 + Set gtmtypes("gtm_id_struct",4,"name")="gtm_id_struct.plaintext.gtm_serial" + Set gtmtypes("gtm_id_struct",4,"off")=68 + Set gtmtypes("gtm_id_struct",4,"len")=8 + Set gtmtypes("gtm_id_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","plaintext.gtm_serial")=4 + Set gtmtypes("gtm_id_struct",5,"name")="gtm_id_struct.key" + Set gtmtypes("gtm_id_struct",5,"off")=76 + Set gtmtypes("gtm_id_struct",5,"len")=76 + Set gtmtypes("gtm_id_struct",5,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","key")=5 + Set gtmtypes("gtm_id_struct",6,"name")="gtm_id_struct.cryptext" + Set gtmtypes("gtm_id_struct",6,"off")=152 + Set gtmtypes("gtm_id_struct",6,"len")=76 + Set gtmtypes("gtm_id_struct",6,"type")="gtm_id_block" + Set gtmtypfldindx("gtm_id_struct","cryptext")=6 + Set gtmtypes("gtm_id_struct",7,"name")="gtm_id_struct.cryptext.sid" + Set gtmtypes("gtm_id_struct",7,"off")=152 + Set gtmtypes("gtm_id_struct",7,"len")=64 + Set gtmtypes("gtm_id_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","cryptext.sid")=7 + Set gtmtypes("gtm_id_struct",7,"dim")=16 + Set gtmtypes("gtm_id_struct",8,"name")="gtm_id_struct.cryptext.exp_date" + Set gtmtypes("gtm_id_struct",8,"off")=216 + Set gtmtypes("gtm_id_struct",8,"len")=4 + Set gtmtypes("gtm_id_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","cryptext.exp_date")=8 + Set gtmtypes("gtm_id_struct",9,"name")="gtm_id_struct.cryptext.gtm_serial" + Set gtmtypes("gtm_id_struct",9,"off")=220 + Set gtmtypes("gtm_id_struct",9,"len")=8 + Set gtmtypes("gtm_id_struct",9,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","cryptext.gtm_serial")=9 + ; + Set gtmtypes("gtm_num_range_t")="struct" + Set gtmtypes("gtm_num_range_t",0)=2 + Set gtmtypes("gtm_num_range_t","len")=8 + Set gtmtypes("gtm_num_range_t",1,"name")="gtm_num_range_t.min" + Set gtmtypes("gtm_num_range_t",1,"off")=0 + Set gtmtypes("gtm_num_range_t",1,"len")=4 + Set gtmtypes("gtm_num_range_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm_num_range_t","min")=1 + Set gtmtypes("gtm_num_range_t",2,"name")="gtm_num_range_t.max" + Set gtmtypes("gtm_num_range_t",2,"off")=4 + Set gtmtypes("gtm_num_range_t",2,"len")=4 + Set gtmtypes("gtm_num_range_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_num_range_t","max")=2 + ; + Set gtmtypes("gtm_rtn_src_chksum_ctx")="struct" + Set gtmtypes("gtm_rtn_src_chksum_ctx",0)=6 + Set gtmtypes("gtm_rtn_src_chksum_ctx","len")=56 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"name")="gtm_rtn_src_chksum_ctx.hash_state" + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"off")=0 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"len")=36 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"type")="hash128_state_t" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state")=1 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"name")="gtm_rtn_src_chksum_ctx.hash_state.h" + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"off")=0 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"type")="gtm_uint16" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.h")=2 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"name")="gtm_rtn_src_chksum_ctx.hash_state.c" + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"off")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"type")="gtm_uint16" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.c")=3 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"name")="gtm_rtn_src_chksum_ctx.hash_state.carry_bytes" + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"off")=32 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"len")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"type")="int" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.carry_bytes")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"name")="gtm_rtn_src_chksum_ctx.total_size" + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"off")=36 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"len")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"type")="unsigned-int" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","total_size")=5 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"name")="gtm_rtn_src_chksum_ctx.digest" + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"off")=40 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"type")="unsigned-char" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","digest")=6 + ; + Set gtmtypes("gtm_time8")="union" + Set gtmtypes("gtm_time8",0)=2 + Set gtmtypes("gtm_time8","len")=8 + Set gtmtypes("gtm_time8",1,"name")="gtm_time8.ctime" + Set gtmtypes("gtm_time8",1,"off")=0 + Set gtmtypes("gtm_time8",1,"len")=4 + Set gtmtypes("gtm_time8",1,"type")="time_t" + Set gtmtypfldindx("gtm_time8","ctime")=1 + Set gtmtypes("gtm_time8",2,"name")="gtm_time8.filler" + Set gtmtypes("gtm_time8",2,"off")=0 + Set gtmtypes("gtm_time8",2,"len")=8 + Set gtmtypes("gtm_time8",2,"type")="int" + Set gtmtypfldindx("gtm_time8","filler")=2 + Set gtmtypes("gtm_time8",2,"dim")=2 + ; + Set gtmtypes("gtm_tls_conn_info")="struct" + Set gtmtypes("gtm_tls_conn_info",0)=17 + Set gtmtypes("gtm_tls_conn_info","len")=872 + Set gtmtypes("gtm_tls_conn_info",1,"name")="gtm_tls_conn_info.protocol" + Set gtmtypes("gtm_tls_conn_info",1,"off")=0 + Set gtmtypes("gtm_tls_conn_info",1,"len")=64 + Set gtmtypes("gtm_tls_conn_info",1,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","protocol")=1 + Set gtmtypes("gtm_tls_conn_info",2,"name")="gtm_tls_conn_info.session_algo" + Set gtmtypes("gtm_tls_conn_info",2,"off")=64 + Set gtmtypes("gtm_tls_conn_info",2,"len")=64 + Set gtmtypes("gtm_tls_conn_info",2,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","session_algo")=2 + Set gtmtypes("gtm_tls_conn_info",3,"name")="gtm_tls_conn_info.session_id" + Set gtmtypes("gtm_tls_conn_info",3,"off")=128 + Set gtmtypes("gtm_tls_conn_info",3,"len")=65 + Set gtmtypes("gtm_tls_conn_info",3,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","session_id")=3 + Set gtmtypes("gtm_tls_conn_info",4,"name")="gtm_tls_conn_info.compression" + Set gtmtypes("gtm_tls_conn_info",4,"off")=196 + Set gtmtypes("gtm_tls_conn_info",4,"len")=4 + Set gtmtypes("gtm_tls_conn_info",4,"type")="addr" + Set gtmtypfldindx("gtm_tls_conn_info","compression")=4 + Set gtmtypes("gtm_tls_conn_info",5,"name")="gtm_tls_conn_info.secure_renegotiation" + Set gtmtypes("gtm_tls_conn_info",5,"off")=200 + Set gtmtypes("gtm_tls_conn_info",5,"len")=4 + Set gtmtypes("gtm_tls_conn_info",5,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","secure_renegotiation")=5 + Set gtmtypes("gtm_tls_conn_info",6,"name")="gtm_tls_conn_info.reused" + Set gtmtypes("gtm_tls_conn_info",6,"off")=204 + Set gtmtypes("gtm_tls_conn_info",6,"len")=4 + Set gtmtypes("gtm_tls_conn_info",6,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","reused")=6 + Set gtmtypes("gtm_tls_conn_info",7,"name")="gtm_tls_conn_info.session_expiry_timeout" + Set gtmtypes("gtm_tls_conn_info",7,"off")=208 + Set gtmtypes("gtm_tls_conn_info",7,"len")=4 + Set gtmtypes("gtm_tls_conn_info",7,"type")="long" + Set gtmtypfldindx("gtm_tls_conn_info","session_expiry_timeout")=7 + Set gtmtypes("gtm_tls_conn_info",8,"name")="gtm_tls_conn_info.cert_algo" + Set gtmtypes("gtm_tls_conn_info",8,"off")=212 + Set gtmtypes("gtm_tls_conn_info",8,"len")=64 + Set gtmtypes("gtm_tls_conn_info",8,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","cert_algo")=8 + Set gtmtypes("gtm_tls_conn_info",9,"name")="gtm_tls_conn_info.cert_nbits" + Set gtmtypes("gtm_tls_conn_info",9,"off")=276 + Set gtmtypes("gtm_tls_conn_info",9,"len")=4 + Set gtmtypes("gtm_tls_conn_info",9,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","cert_nbits")=9 + Set gtmtypes("gtm_tls_conn_info",10,"name")="gtm_tls_conn_info.subject" + Set gtmtypes("gtm_tls_conn_info",10,"off")=280 + Set gtmtypes("gtm_tls_conn_info",10,"len")=256 + Set gtmtypes("gtm_tls_conn_info",10,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","subject")=10 + Set gtmtypes("gtm_tls_conn_info",11,"name")="gtm_tls_conn_info.issuer" + Set gtmtypes("gtm_tls_conn_info",11,"off")=536 + Set gtmtypes("gtm_tls_conn_info",11,"len")=256 + Set gtmtypes("gtm_tls_conn_info",11,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","issuer")=11 + Set gtmtypes("gtm_tls_conn_info",12,"name")="gtm_tls_conn_info.not_before" + Set gtmtypes("gtm_tls_conn_info",12,"off")=792 + Set gtmtypes("gtm_tls_conn_info",12,"len")=32 + Set gtmtypes("gtm_tls_conn_info",12,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","not_before")=12 + Set gtmtypes("gtm_tls_conn_info",13,"name")="gtm_tls_conn_info.not_after" + Set gtmtypes("gtm_tls_conn_info",13,"off")=824 + Set gtmtypes("gtm_tls_conn_info",13,"len")=32 + Set gtmtypes("gtm_tls_conn_info",13,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","not_after")=13 + Set gtmtypes("gtm_tls_conn_info",14,"name")="gtm_tls_conn_info.options" + Set gtmtypes("gtm_tls_conn_info",14,"off")=856 + Set gtmtypes("gtm_tls_conn_info",14,"len")=4 + Set gtmtypes("gtm_tls_conn_info",14,"type")="long" + Set gtmtypfldindx("gtm_tls_conn_info","options")=14 + Set gtmtypes("gtm_tls_conn_info",15,"name")="gtm_tls_conn_info.renegotiation_pending" + Set gtmtypes("gtm_tls_conn_info",15,"off")=860 + Set gtmtypes("gtm_tls_conn_info",15,"len")=4 + Set gtmtypes("gtm_tls_conn_info",15,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","renegotiation_pending")=15 + Set gtmtypes("gtm_tls_conn_info",16,"name")="gtm_tls_conn_info.total_renegotiations" + Set gtmtypes("gtm_tls_conn_info",16,"off")=864 + Set gtmtypes("gtm_tls_conn_info",16,"len")=4 + Set gtmtypes("gtm_tls_conn_info",16,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","total_renegotiations")=16 + Set gtmtypes("gtm_tls_conn_info",17,"name")="gtm_tls_conn_info.verify_mode" + Set gtmtypes("gtm_tls_conn_info",17,"off")=868 + Set gtmtypes("gtm_tls_conn_info",17,"len")=4 + Set gtmtypes("gtm_tls_conn_info",17,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","verify_mode")=17 + ; + Set gtmtypes("gtm_tls_ctx_t")="struct" + Set gtmtypes("gtm_tls_ctx_t",0)=6 + Set gtmtypes("gtm_tls_ctx_t","len")=24 + Set gtmtypes("gtm_tls_ctx_t",1,"name")="gtm_tls_ctx_t.flags" + Set gtmtypes("gtm_tls_ctx_t",1,"off")=0 + Set gtmtypes("gtm_tls_ctx_t",1,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",1,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","flags")=1 + Set gtmtypes("gtm_tls_ctx_t",2,"name")="gtm_tls_ctx_t.fips_mode" + Set gtmtypes("gtm_tls_ctx_t",2,"off")=4 + Set gtmtypes("gtm_tls_ctx_t",2,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",2,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","fips_mode")=2 + Set gtmtypes("gtm_tls_ctx_t",3,"name")="gtm_tls_ctx_t.compile_time_version" + Set gtmtypes("gtm_tls_ctx_t",3,"off")=8 + Set gtmtypes("gtm_tls_ctx_t",3,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",3,"type")="unsigned-long" + Set gtmtypfldindx("gtm_tls_ctx_t","compile_time_version")=3 + Set gtmtypes("gtm_tls_ctx_t",4,"name")="gtm_tls_ctx_t.runtime_version" + Set gtmtypes("gtm_tls_ctx_t",4,"off")=12 + Set gtmtypes("gtm_tls_ctx_t",4,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",4,"type")="unsigned-long" + Set gtmtypfldindx("gtm_tls_ctx_t","runtime_version")=4 + Set gtmtypes("gtm_tls_ctx_t",5,"name")="gtm_tls_ctx_t.ctx" + Set gtmtypes("gtm_tls_ctx_t",5,"off")=16 + Set gtmtypes("gtm_tls_ctx_t",5,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",5,"type")="addr" + Set gtmtypfldindx("gtm_tls_ctx_t","ctx")=5 + Set gtmtypes("gtm_tls_ctx_t",6,"name")="gtm_tls_ctx_t.version" + Set gtmtypes("gtm_tls_ctx_t",6,"off")=20 + Set gtmtypes("gtm_tls_ctx_t",6,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",6,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","version")=6 + ; + Set gtmtypes("gtm_tls_socket_t")="struct" + Set gtmtypes("gtm_tls_socket_t",0)=5 + Set gtmtypes("gtm_tls_socket_t","len")=52 + Set gtmtypes("gtm_tls_socket_t",1,"name")="gtm_tls_socket_t.flags" + Set gtmtypes("gtm_tls_socket_t",1,"off")=0 + Set gtmtypes("gtm_tls_socket_t",1,"len")=4 + Set gtmtypes("gtm_tls_socket_t",1,"type")="int" + Set gtmtypfldindx("gtm_tls_socket_t","flags")=1 + Set gtmtypes("gtm_tls_socket_t",2,"name")="gtm_tls_socket_t.ssl" + Set gtmtypes("gtm_tls_socket_t",2,"off")=4 + Set gtmtypes("gtm_tls_socket_t",2,"len")=4 + Set gtmtypes("gtm_tls_socket_t",2,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","ssl")=2 + Set gtmtypes("gtm_tls_socket_t",3,"name")="gtm_tls_socket_t.session" + Set gtmtypes("gtm_tls_socket_t",3,"off")=8 + Set gtmtypes("gtm_tls_socket_t",3,"len")=4 + Set gtmtypes("gtm_tls_socket_t",3,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","session")=3 + Set gtmtypes("gtm_tls_socket_t",4,"name")="gtm_tls_socket_t.tlsid" + Set gtmtypes("gtm_tls_socket_t",4,"off")=12 + Set gtmtypes("gtm_tls_socket_t",4,"len")=33 + Set gtmtypes("gtm_tls_socket_t",4,"type")="char" + Set gtmtypfldindx("gtm_tls_socket_t","tlsid")=4 + Set gtmtypes("gtm_tls_socket_t",5,"name")="gtm_tls_socket_t.gtm_ctx" + Set gtmtypes("gtm_tls_socket_t",5,"off")=48 + Set gtmtypes("gtm_tls_socket_t",5,"len")=4 + Set gtmtypes("gtm_tls_socket_t",5,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","gtm_ctx")=5 + ; + Set gtmtypes("gtm_trigger_parms")="struct" + Set gtmtypes("gtm_trigger_parms",0)=8 + Set gtmtypes("gtm_trigger_parms","len")=32 + Set gtmtypes("gtm_trigger_parms",1,"name")="gtm_trigger_parms.ztoldval_new" + Set gtmtypes("gtm_trigger_parms",1,"off")=0 + Set gtmtypes("gtm_trigger_parms",1,"len")=4 + Set gtmtypes("gtm_trigger_parms",1,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztoldval_new")=1 + Set gtmtypes("gtm_trigger_parms",2,"name")="gtm_trigger_parms.ztvalue_new" + Set gtmtypes("gtm_trigger_parms",2,"off")=4 + Set gtmtypes("gtm_trigger_parms",2,"len")=4 + Set gtmtypes("gtm_trigger_parms",2,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztvalue_new")=2 + Set gtmtypes("gtm_trigger_parms",3,"name")="gtm_trigger_parms.ztdata_new" + Set gtmtypes("gtm_trigger_parms",3,"off")=8 + Set gtmtypes("gtm_trigger_parms",3,"len")=4 + Set gtmtypes("gtm_trigger_parms",3,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztdata_new")=3 + Set gtmtypes("gtm_trigger_parms",4,"name")="gtm_trigger_parms.ztdelim_new" + Set gtmtypes("gtm_trigger_parms",4,"off")=12 + Set gtmtypes("gtm_trigger_parms",4,"len")=4 + Set gtmtypes("gtm_trigger_parms",4,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztdelim_new")=4 + Set gtmtypes("gtm_trigger_parms",5,"name")="gtm_trigger_parms.ztriggerop_new" + Set gtmtypes("gtm_trigger_parms",5,"off")=16 + Set gtmtypes("gtm_trigger_parms",5,"len")=4 + Set gtmtypes("gtm_trigger_parms",5,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztriggerop_new")=5 + Set gtmtypes("gtm_trigger_parms",6,"name")="gtm_trigger_parms.ztupdate_new" + Set gtmtypes("gtm_trigger_parms",6,"off")=20 + Set gtmtypes("gtm_trigger_parms",6,"len")=4 + Set gtmtypes("gtm_trigger_parms",6,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztupdate_new")=6 + Set gtmtypes("gtm_trigger_parms",7,"name")="gtm_trigger_parms.lvvalarray" + Set gtmtypes("gtm_trigger_parms",7,"off")=24 + Set gtmtypes("gtm_trigger_parms",7,"len")=4 + Set gtmtypes("gtm_trigger_parms",7,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","lvvalarray")=7 + Set gtmtypes("gtm_trigger_parms",8,"name")="gtm_trigger_parms.ztvalue_changed" + Set gtmtypes("gtm_trigger_parms",8,"off")=28 + Set gtmtypes("gtm_trigger_parms",8,"len")=4 + Set gtmtypes("gtm_trigger_parms",8,"type")="boolean_t" + Set gtmtypfldindx("gtm_trigger_parms","ztvalue_changed")=8 + ; + Set gtmtypes("gtm_uint16")="struct" + Set gtmtypes("gtm_uint16",0)=2 + Set gtmtypes("gtm_uint16","len")=16 + Set gtmtypes("gtm_uint16",1,"name")="gtm_uint16.one" + Set gtmtypes("gtm_uint16",1,"off")=0 + Set gtmtypes("gtm_uint16",1,"len")=8 + Set gtmtypes("gtm_uint16",1,"type")="gtm_uint8" + Set gtmtypfldindx("gtm_uint16","one")=1 + Set gtmtypes("gtm_uint16",2,"name")="gtm_uint16.two" + Set gtmtypes("gtm_uint16",2,"off")=8 + Set gtmtypes("gtm_uint16",2,"len")=8 + Set gtmtypes("gtm_uint16",2,"type")="gtm_uint8" + Set gtmtypfldindx("gtm_uint16","two")=2 + ; + Set gtmtypes("gtmrecv_local_struct")="struct" + Set gtmtypes("gtmrecv_local_struct",0)=41 + Set gtmtypes("gtmrecv_local_struct","len")=1284 + Set gtmtypes("gtmrecv_local_struct",1,"name")="gtmrecv_local_struct.recv_serv_pid" + Set gtmtypes("gtmrecv_local_struct",1,"off")=0 + Set gtmtypes("gtmrecv_local_struct",1,"len")=4 + Set gtmtypes("gtmrecv_local_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","recv_serv_pid")=1 + Set gtmtypes("gtmrecv_local_struct",2,"name")="gtmrecv_local_struct.lastrecvd_time" + Set gtmtypes("gtmrecv_local_struct",2,"off")=4 + Set gtmtypes("gtmrecv_local_struct",2,"len")=4 + Set gtmtypes("gtmrecv_local_struct",2,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","lastrecvd_time")=2 + Set gtmtypes("gtmrecv_local_struct",3,"name")="gtmrecv_local_struct.statslog" + Set gtmtypes("gtmrecv_local_struct",3,"off")=8 + Set gtmtypes("gtmrecv_local_struct",3,"len")=4 + Set gtmtypes("gtmrecv_local_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","statslog")=3 + Set gtmtypes("gtmrecv_local_struct",4,"name")="gtmrecv_local_struct.shutdown" + Set gtmtypes("gtmrecv_local_struct",4,"off")=12 + Set gtmtypes("gtmrecv_local_struct",4,"len")=4 + Set gtmtypes("gtmrecv_local_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","shutdown")=4 + Set gtmtypes("gtmrecv_local_struct",5,"name")="gtmrecv_local_struct.shutdown_time" + Set gtmtypes("gtmrecv_local_struct",5,"off")=16 + Set gtmtypes("gtmrecv_local_struct",5,"len")=4 + Set gtmtypes("gtmrecv_local_struct",5,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","shutdown_time")=5 + Set gtmtypes("gtmrecv_local_struct",6,"name")="gtmrecv_local_struct.listen_port" + Set gtmtypes("gtmrecv_local_struct",6,"off")=20 + Set gtmtypes("gtmrecv_local_struct",6,"len")=4 + Set gtmtypes("gtmrecv_local_struct",6,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","listen_port")=6 + Set gtmtypes("gtmrecv_local_struct",7,"name")="gtmrecv_local_struct.restart" + Set gtmtypes("gtmrecv_local_struct",7,"off")=24 + Set gtmtypes("gtmrecv_local_struct",7,"len")=4 + Set gtmtypes("gtmrecv_local_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","restart")=7 + Set gtmtypes("gtmrecv_local_struct",8,"name")="gtmrecv_local_struct.changelog" + Set gtmtypes("gtmrecv_local_struct",8,"off")=28 + Set gtmtypes("gtmrecv_local_struct",8,"len")=4 + Set gtmtypes("gtmrecv_local_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","changelog")=8 + Set gtmtypes("gtmrecv_local_struct",9,"name")="gtmrecv_local_struct.log_interval" + Set gtmtypes("gtmrecv_local_struct",9,"off")=32 + Set gtmtypes("gtmrecv_local_struct",9,"len")=4 + Set gtmtypes("gtmrecv_local_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","log_interval")=9 + Set gtmtypes("gtmrecv_local_struct",10,"name")="gtmrecv_local_struct.filter_cmd" + Set gtmtypes("gtmrecv_local_struct",10,"off")=36 + Set gtmtypes("gtmrecv_local_struct",10,"len")=512 + Set gtmtypes("gtmrecv_local_struct",10,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","filter_cmd")=10 + Set gtmtypes("gtmrecv_local_struct",11,"name")="gtmrecv_local_struct.log_file" + Set gtmtypes("gtmrecv_local_struct",11,"off")=548 + Set gtmtypes("gtmrecv_local_struct",11,"len")=256 + Set gtmtypes("gtmrecv_local_struct",11,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","log_file")=11 + Set gtmtypes("gtmrecv_local_struct",12,"name")="gtmrecv_local_struct.statslog_file" + Set gtmtypes("gtmrecv_local_struct",12,"off")=804 + Set gtmtypes("gtmrecv_local_struct",12,"len")=256 + Set gtmtypes("gtmrecv_local_struct",12,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","statslog_file")=12 + Set gtmtypes("gtmrecv_local_struct",13,"name")="gtmrecv_local_struct.remote_side" + Set gtmtypes("gtmrecv_local_struct",13,"off")=1060 + Set gtmtypes("gtmrecv_local_struct",13,"len")=48 + Set gtmtypes("gtmrecv_local_struct",13,"type")="repl_conn_info_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side")=13 + Set gtmtypes("gtmrecv_local_struct",14,"name")="gtmrecv_local_struct.remote_side.proto_ver" + Set gtmtypes("gtmrecv_local_struct",14,"off")=1060 + Set gtmtypes("gtmrecv_local_struct",14,"len")=4 + Set gtmtypes("gtmrecv_local_struct",14,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.proto_ver")=14 + Set gtmtypes("gtmrecv_local_struct",15,"name")="gtmrecv_local_struct.remote_side.jnl_ver" + Set gtmtypes("gtmrecv_local_struct",15,"off")=1064 + Set gtmtypes("gtmrecv_local_struct",15,"len")=4 + Set gtmtypes("gtmrecv_local_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.jnl_ver")=15 + Set gtmtypes("gtmrecv_local_struct",16,"name")="gtmrecv_local_struct.remote_side.is_std_null_coll" + Set gtmtypes("gtmrecv_local_struct",16,"off")=1068 + Set gtmtypes("gtmrecv_local_struct",16,"len")=4 + Set gtmtypes("gtmrecv_local_struct",16,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.is_std_null_coll")=16 + Set gtmtypes("gtmrecv_local_struct",17,"name")="gtmrecv_local_struct.remote_side.trigger_supported" + Set gtmtypes("gtmrecv_local_struct",17,"off")=1072 + Set gtmtypes("gtmrecv_local_struct",17,"len")=4 + Set gtmtypes("gtmrecv_local_struct",17,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.trigger_supported")=17 + Set gtmtypes("gtmrecv_local_struct",18,"name")="gtmrecv_local_struct.remote_side.cross_endian" + Set gtmtypes("gtmrecv_local_struct",18,"off")=1076 + Set gtmtypes("gtmrecv_local_struct",18,"len")=4 + Set gtmtypes("gtmrecv_local_struct",18,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.cross_endian")=18 + Set gtmtypes("gtmrecv_local_struct",19,"name")="gtmrecv_local_struct.remote_side.endianness_known" + Set gtmtypes("gtmrecv_local_struct",19,"off")=1080 + Set gtmtypes("gtmrecv_local_struct",19,"len")=4 + Set gtmtypes("gtmrecv_local_struct",19,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.endianness_known")=19 + Set gtmtypes("gtmrecv_local_struct",20,"name")="gtmrecv_local_struct.remote_side.null_subs_xform" + Set gtmtypes("gtmrecv_local_struct",20,"off")=1084 + Set gtmtypes("gtmrecv_local_struct",20,"len")=4 + Set gtmtypes("gtmrecv_local_struct",20,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.null_subs_xform")=20 + Set gtmtypes("gtmrecv_local_struct",21,"name")="gtmrecv_local_struct.remote_side.is_supplementary" + Set gtmtypes("gtmrecv_local_struct",21,"off")=1088 + Set gtmtypes("gtmrecv_local_struct",21,"len")=4 + Set gtmtypes("gtmrecv_local_struct",21,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.is_supplementary")=21 + Set gtmtypes("gtmrecv_local_struct",22,"name")="gtmrecv_local_struct.remote_side.tls_requested" + Set gtmtypes("gtmrecv_local_struct",22,"off")=1092 + Set gtmtypes("gtmrecv_local_struct",22,"len")=4 + Set gtmtypes("gtmrecv_local_struct",22,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.tls_requested")=22 + Set gtmtypes("gtmrecv_local_struct",23,"name")="gtmrecv_local_struct.remote_side.filler_16" + Set gtmtypes("gtmrecv_local_struct",23,"off")=1096 + Set gtmtypes("gtmrecv_local_struct",23,"len")=12 + Set gtmtypes("gtmrecv_local_struct",23,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.filler_16")=23 + Set gtmtypes("gtmrecv_local_struct",24,"name")="gtmrecv_local_struct.strm_index" + Set gtmtypes("gtmrecv_local_struct",24,"off")=1108 + Set gtmtypes("gtmrecv_local_struct",24,"len")=4 + Set gtmtypes("gtmrecv_local_struct",24,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","strm_index")=24 + Set gtmtypes("gtmrecv_local_struct",25,"name")="gtmrecv_local_struct.updateresync" + Set gtmtypes("gtmrecv_local_struct",25,"off")=1112 + Set gtmtypes("gtmrecv_local_struct",25,"len")=4 + Set gtmtypes("gtmrecv_local_struct",25,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","updateresync")=25 + Set gtmtypes("gtmrecv_local_struct",26,"name")="gtmrecv_local_struct.noresync" + Set gtmtypes("gtmrecv_local_struct",26,"off")=1116 + Set gtmtypes("gtmrecv_local_struct",26,"len")=4 + Set gtmtypes("gtmrecv_local_struct",26,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","noresync")=26 + Set gtmtypes("gtmrecv_local_struct",27,"name")="gtmrecv_local_struct.updresync_instfile_fd" + Set gtmtypes("gtmrecv_local_struct",27,"off")=1120 + Set gtmtypes("gtmrecv_local_struct",27,"len")=4 + Set gtmtypes("gtmrecv_local_struct",27,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_instfile_fd")=27 + Set gtmtypes("gtmrecv_local_struct",28,"name")="gtmrecv_local_struct.updresync_num_histinfo" + Set gtmtypes("gtmrecv_local_struct",28,"off")=1124 + Set gtmtypes("gtmrecv_local_struct",28,"len")=4 + Set gtmtypes("gtmrecv_local_struct",28,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_num_histinfo")=28 + Set gtmtypes("gtmrecv_local_struct",29,"name")="gtmrecv_local_struct.updresync_cross_endian" + Set gtmtypes("gtmrecv_local_struct",29,"off")=1128 + Set gtmtypes("gtmrecv_local_struct",29,"len")=4 + Set gtmtypes("gtmrecv_local_struct",29,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_cross_endian")=29 + Set gtmtypes("gtmrecv_local_struct",30,"name")="gtmrecv_local_struct.updresync_num_histinfo_strm" + Set gtmtypes("gtmrecv_local_struct",30,"off")=1132 + Set gtmtypes("gtmrecv_local_struct",30,"len")=64 + Set gtmtypes("gtmrecv_local_struct",30,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_num_histinfo_strm")=30 + Set gtmtypes("gtmrecv_local_struct",30,"dim")=16 + Set gtmtypes("gtmrecv_local_struct",31,"name")="gtmrecv_local_struct.updresync_lms_group" + Set gtmtypes("gtmrecv_local_struct",31,"off")=1196 + Set gtmtypes("gtmrecv_local_struct",31,"len")=40 + Set gtmtypes("gtmrecv_local_struct",31,"type")="repl_inst_uuid" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group")=31 + Set gtmtypes("gtmrecv_local_struct",32,"name")="gtmrecv_local_struct.updresync_lms_group.created_nodename" + Set gtmtypes("gtmrecv_local_struct",32,"off")=1196 + Set gtmtypes("gtmrecv_local_struct",32,"len")=16 + Set gtmtypes("gtmrecv_local_struct",32,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.created_nodename")=32 + Set gtmtypes("gtmrecv_local_struct",33,"name")="gtmrecv_local_struct.updresync_lms_group.this_instname" + Set gtmtypes("gtmrecv_local_struct",33,"off")=1212 + Set gtmtypes("gtmrecv_local_struct",33,"len")=16 + Set gtmtypes("gtmrecv_local_struct",33,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.this_instname")=33 + Set gtmtypes("gtmrecv_local_struct",34,"name")="gtmrecv_local_struct.updresync_lms_group.created_time" + Set gtmtypes("gtmrecv_local_struct",34,"off")=1228 + Set gtmtypes("gtmrecv_local_struct",34,"len")=4 + Set gtmtypes("gtmrecv_local_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.created_time")=34 + Set gtmtypes("gtmrecv_local_struct",35,"name")="gtmrecv_local_struct.updresync_lms_group.creator_pid" + Set gtmtypes("gtmrecv_local_struct",35,"off")=1232 + Set gtmtypes("gtmrecv_local_struct",35,"len")=4 + Set gtmtypes("gtmrecv_local_struct",35,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.creator_pid")=35 + Set gtmtypes("gtmrecv_local_struct",36,"name")="gtmrecv_local_struct.updresync_jnl_seqno" + Set gtmtypes("gtmrecv_local_struct",36,"off")=1236 + Set gtmtypes("gtmrecv_local_struct",36,"len")=8 + Set gtmtypes("gtmrecv_local_struct",36,"type")="uint64_t" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_jnl_seqno")=36 + Set gtmtypes("gtmrecv_local_struct",37,"name")="gtmrecv_local_struct.remote_lms_group" + Set gtmtypes("gtmrecv_local_struct",37,"off")=1244 + Set gtmtypes("gtmrecv_local_struct",37,"len")=40 + Set gtmtypes("gtmrecv_local_struct",37,"type")="repl_inst_uuid" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group")=37 + Set gtmtypes("gtmrecv_local_struct",38,"name")="gtmrecv_local_struct.remote_lms_group.created_nodename" + Set gtmtypes("gtmrecv_local_struct",38,"off")=1244 + Set gtmtypes("gtmrecv_local_struct",38,"len")=16 + Set gtmtypes("gtmrecv_local_struct",38,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.created_nodename")=38 + Set gtmtypes("gtmrecv_local_struct",39,"name")="gtmrecv_local_struct.remote_lms_group.this_instname" + Set gtmtypes("gtmrecv_local_struct",39,"off")=1260 + Set gtmtypes("gtmrecv_local_struct",39,"len")=16 + Set gtmtypes("gtmrecv_local_struct",39,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.this_instname")=39 + Set gtmtypes("gtmrecv_local_struct",40,"name")="gtmrecv_local_struct.remote_lms_group.created_time" + Set gtmtypes("gtmrecv_local_struct",40,"off")=1276 + Set gtmtypes("gtmrecv_local_struct",40,"len")=4 + Set gtmtypes("gtmrecv_local_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.created_time")=40 + Set gtmtypes("gtmrecv_local_struct",41,"name")="gtmrecv_local_struct.remote_lms_group.creator_pid" + Set gtmtypes("gtmrecv_local_struct",41,"off")=1280 + Set gtmtypes("gtmrecv_local_struct",41,"len")=4 + Set gtmtypes("gtmrecv_local_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.creator_pid")=41 + ; + Set gtmtypes("gtmrecv_options_t")="struct" + Set gtmtypes("gtmrecv_options_t",0)=29 + Set gtmtypes("gtmrecv_options_t","len")=1140 + Set gtmtypes("gtmrecv_options_t",1,"name")="gtmrecv_options_t.start" + Set gtmtypes("gtmrecv_options_t",1,"off")=0 + Set gtmtypes("gtmrecv_options_t",1,"len")=4 + Set gtmtypes("gtmrecv_options_t",1,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","start")=1 + Set gtmtypes("gtmrecv_options_t",2,"name")="gtmrecv_options_t.shut_down" + Set gtmtypes("gtmrecv_options_t",2,"off")=4 + Set gtmtypes("gtmrecv_options_t",2,"len")=4 + Set gtmtypes("gtmrecv_options_t",2,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","shut_down")=2 + Set gtmtypes("gtmrecv_options_t",3,"name")="gtmrecv_options_t.checkhealth" + Set gtmtypes("gtmrecv_options_t",3,"off")=8 + Set gtmtypes("gtmrecv_options_t",3,"len")=4 + Set gtmtypes("gtmrecv_options_t",3,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","checkhealth")=3 + Set gtmtypes("gtmrecv_options_t",4,"name")="gtmrecv_options_t.statslog" + Set gtmtypes("gtmrecv_options_t",4,"off")=12 + Set gtmtypes("gtmrecv_options_t",4,"len")=4 + Set gtmtypes("gtmrecv_options_t",4,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","statslog")=4 + Set gtmtypes("gtmrecv_options_t",5,"name")="gtmrecv_options_t.showbacklog" + Set gtmtypes("gtmrecv_options_t",5,"off")=16 + Set gtmtypes("gtmrecv_options_t",5,"len")=4 + Set gtmtypes("gtmrecv_options_t",5,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","showbacklog")=5 + Set gtmtypes("gtmrecv_options_t",6,"name")="gtmrecv_options_t.updateonly" + Set gtmtypes("gtmrecv_options_t",6,"off")=20 + Set gtmtypes("gtmrecv_options_t",6,"len")=4 + Set gtmtypes("gtmrecv_options_t",6,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","updateonly")=6 + Set gtmtypes("gtmrecv_options_t",7,"name")="gtmrecv_options_t.stopsourcefilter" + Set gtmtypes("gtmrecv_options_t",7,"off")=24 + Set gtmtypes("gtmrecv_options_t",7,"len")=4 + Set gtmtypes("gtmrecv_options_t",7,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","stopsourcefilter")=7 + Set gtmtypes("gtmrecv_options_t",8,"name")="gtmrecv_options_t.changelog" + Set gtmtypes("gtmrecv_options_t",8,"off")=28 + Set gtmtypes("gtmrecv_options_t",8,"len")=4 + Set gtmtypes("gtmrecv_options_t",8,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","changelog")=8 + Set gtmtypes("gtmrecv_options_t",9,"name")="gtmrecv_options_t.buffsize" + Set gtmtypes("gtmrecv_options_t",9,"off")=32 + Set gtmtypes("gtmrecv_options_t",9,"len")=4 + Set gtmtypes("gtmrecv_options_t",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","buffsize")=9 + Set gtmtypes("gtmrecv_options_t",10,"name")="gtmrecv_options_t.shutdown_time" + Set gtmtypes("gtmrecv_options_t",10,"off")=36 + Set gtmtypes("gtmrecv_options_t",10,"len")=4 + Set gtmtypes("gtmrecv_options_t",10,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","shutdown_time")=10 + Set gtmtypes("gtmrecv_options_t",11,"name")="gtmrecv_options_t.listen_port" + Set gtmtypes("gtmrecv_options_t",11,"off")=40 + Set gtmtypes("gtmrecv_options_t",11,"len")=4 + Set gtmtypes("gtmrecv_options_t",11,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","listen_port")=11 + Set gtmtypes("gtmrecv_options_t",12,"name")="gtmrecv_options_t.updateresync" + Set gtmtypes("gtmrecv_options_t",12,"off")=44 + Set gtmtypes("gtmrecv_options_t",12,"len")=4 + Set gtmtypes("gtmrecv_options_t",12,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","updateresync")=12 + Set gtmtypes("gtmrecv_options_t",13,"name")="gtmrecv_options_t.noresync" + Set gtmtypes("gtmrecv_options_t",13,"off")=48 + Set gtmtypes("gtmrecv_options_t",13,"len")=4 + Set gtmtypes("gtmrecv_options_t",13,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","noresync")=13 + Set gtmtypes("gtmrecv_options_t",14,"name")="gtmrecv_options_t.rcvr_log_interval" + Set gtmtypes("gtmrecv_options_t",14,"off")=52 + Set gtmtypes("gtmrecv_options_t",14,"len")=4 + Set gtmtypes("gtmrecv_options_t",14,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","rcvr_log_interval")=14 + Set gtmtypes("gtmrecv_options_t",15,"name")="gtmrecv_options_t.upd_log_interval" + Set gtmtypes("gtmrecv_options_t",15,"off")=56 + Set gtmtypes("gtmrecv_options_t",15,"len")=4 + Set gtmtypes("gtmrecv_options_t",15,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","upd_log_interval")=15 + Set gtmtypes("gtmrecv_options_t",16,"name")="gtmrecv_options_t.helpers" + Set gtmtypes("gtmrecv_options_t",16,"off")=60 + Set gtmtypes("gtmrecv_options_t",16,"len")=4 + Set gtmtypes("gtmrecv_options_t",16,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","helpers")=16 + Set gtmtypes("gtmrecv_options_t",17,"name")="gtmrecv_options_t.reuse_specified" + Set gtmtypes("gtmrecv_options_t",17,"off")=64 + Set gtmtypes("gtmrecv_options_t",17,"len")=4 + Set gtmtypes("gtmrecv_options_t",17,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","reuse_specified")=17 + Set gtmtypes("gtmrecv_options_t",18,"name")="gtmrecv_options_t.resume_specified" + Set gtmtypes("gtmrecv_options_t",18,"off")=68 + Set gtmtypes("gtmrecv_options_t",18,"len")=4 + Set gtmtypes("gtmrecv_options_t",18,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","resume_specified")=18 + Set gtmtypes("gtmrecv_options_t",19,"name")="gtmrecv_options_t.initialize_specified" + Set gtmtypes("gtmrecv_options_t",19,"off")=72 + Set gtmtypes("gtmrecv_options_t",19,"len")=4 + Set gtmtypes("gtmrecv_options_t",19,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","initialize_specified")=19 + Set gtmtypes("gtmrecv_options_t",20,"name")="gtmrecv_options_t.resume_strm_num" + Set gtmtypes("gtmrecv_options_t",20,"off")=76 + Set gtmtypes("gtmrecv_options_t",20,"len")=4 + Set gtmtypes("gtmrecv_options_t",20,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","resume_strm_num")=20 + Set gtmtypes("gtmrecv_options_t",21,"name")="gtmrecv_options_t.n_readers" + Set gtmtypes("gtmrecv_options_t",21,"off")=80 + Set gtmtypes("gtmrecv_options_t",21,"len")=4 + Set gtmtypes("gtmrecv_options_t",21,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","n_readers")=21 + Set gtmtypes("gtmrecv_options_t",22,"name")="gtmrecv_options_t.n_writers" + Set gtmtypes("gtmrecv_options_t",22,"off")=84 + Set gtmtypes("gtmrecv_options_t",22,"len")=4 + Set gtmtypes("gtmrecv_options_t",22,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","n_writers")=22 + Set gtmtypes("gtmrecv_options_t",23,"name")="gtmrecv_options_t.cmplvl" + Set gtmtypes("gtmrecv_options_t",23,"off")=88 + Set gtmtypes("gtmrecv_options_t",23,"len")=4 + Set gtmtypes("gtmrecv_options_t",23,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","cmplvl")=23 + Set gtmtypes("gtmrecv_options_t",24,"name")="gtmrecv_options_t.log_file" + Set gtmtypes("gtmrecv_options_t",24,"off")=92 + Set gtmtypes("gtmrecv_options_t",24,"len")=256 + Set gtmtypes("gtmrecv_options_t",24,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","log_file")=24 + Set gtmtypes("gtmrecv_options_t",25,"name")="gtmrecv_options_t.updresync_instfilename" + Set gtmtypes("gtmrecv_options_t",25,"off")=348 + Set gtmtypes("gtmrecv_options_t",25,"len")=256 + Set gtmtypes("gtmrecv_options_t",25,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","updresync_instfilename")=25 + Set gtmtypes("gtmrecv_options_t",26,"name")="gtmrecv_options_t.filter_cmd" + Set gtmtypes("gtmrecv_options_t",26,"off")=604 + Set gtmtypes("gtmrecv_options_t",26,"len")=512 + Set gtmtypes("gtmrecv_options_t",26,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","filter_cmd")=26 + Set gtmtypes("gtmrecv_options_t",27,"name")="gtmrecv_options_t.reuse_instname" + Set gtmtypes("gtmrecv_options_t",27,"off")=1116 + Set gtmtypes("gtmrecv_options_t",27,"len")=16 + Set gtmtypes("gtmrecv_options_t",27,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","reuse_instname")=27 + Set gtmtypes("gtmrecv_options_t",28,"name")="gtmrecv_options_t.autorollback" + Set gtmtypes("gtmrecv_options_t",28,"off")=1132 + Set gtmtypes("gtmrecv_options_t",28,"len")=4 + Set gtmtypes("gtmrecv_options_t",28,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","autorollback")=28 + Set gtmtypes("gtmrecv_options_t",29,"name")="gtmrecv_options_t.autorollback_verbose" + Set gtmtypes("gtmrecv_options_t",29,"off")=1136 + Set gtmtypes("gtmrecv_options_t",29,"len")=4 + Set gtmtypes("gtmrecv_options_t",29,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","autorollback_verbose")=29 + ; + Set gtmtypes("gtmsecshr_mesg")="struct" + Set gtmtypes("gtmsecshr_mesg",0)=15 + Set gtmtypes("gtmsecshr_mesg","len")=4140 + Set gtmtypes("gtmsecshr_mesg",1,"name")="gtmsecshr_mesg.code" + Set gtmtypes("gtmsecshr_mesg",1,"off")=0 + Set gtmtypes("gtmsecshr_mesg",1,"len")=4 + Set gtmtypes("gtmsecshr_mesg",1,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","code")=1 + Set gtmtypes("gtmsecshr_mesg",2,"name")="gtmsecshr_mesg.comkey" + Set gtmtypes("gtmsecshr_mesg",2,"off")=4 + Set gtmtypes("gtmsecshr_mesg",2,"len")=4 + Set gtmtypes("gtmsecshr_mesg",2,"type")="unsigned-int" + Set gtmtypfldindx("gtmsecshr_mesg","comkey")=2 + Set gtmtypes("gtmsecshr_mesg",3,"name")="gtmsecshr_mesg.usesecshr" + Set gtmtypes("gtmsecshr_mesg",3,"off")=8 + Set gtmtypes("gtmsecshr_mesg",3,"len")=4 + Set gtmtypes("gtmsecshr_mesg",3,"type")="boolean_t" + Set gtmtypfldindx("gtmsecshr_mesg","usesecshr")=3 + Set gtmtypes("gtmsecshr_mesg",4,"name")="gtmsecshr_mesg.pid" + Set gtmtypes("gtmsecshr_mesg",4,"off")=12 + Set gtmtypes("gtmsecshr_mesg",4,"len")=4 + Set gtmtypes("gtmsecshr_mesg",4,"type")="pid_t" + Set gtmtypfldindx("gtmsecshr_mesg","pid")=4 + Set gtmtypes("gtmsecshr_mesg",5,"name")="gtmsecshr_mesg.seqno" + Set gtmtypes("gtmsecshr_mesg",5,"off")=16 + Set gtmtypes("gtmsecshr_mesg",5,"len")=4 + Set gtmtypes("gtmsecshr_mesg",5,"type")="unsigned-long" + Set gtmtypfldindx("gtmsecshr_mesg","seqno")=5 + Set gtmtypes("gtmsecshr_mesg",6,"name")="gtmsecshr_mesg.mesg" + Set gtmtypes("gtmsecshr_mesg",6,"off")=20 + Set gtmtypes("gtmsecshr_mesg",6,"len")=4120 + Set gtmtypes("gtmsecshr_mesg",6,"type")="union" + Set gtmtypfldindx("gtmsecshr_mesg","mesg")=6 + Set gtmtypes("gtmsecshr_mesg",7,"name")="gtmsecshr_mesg.mesg.id" + Set gtmtypes("gtmsecshr_mesg",7,"off")=20 + Set gtmtypes("gtmsecshr_mesg",7,"len")=4 + Set gtmtypes("gtmsecshr_mesg",7,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.id")=7 + Set gtmtypes("gtmsecshr_mesg",8,"name")="gtmsecshr_mesg.mesg.path" + Set gtmtypes("gtmsecshr_mesg",8,"off")=20 + Set gtmtypes("gtmsecshr_mesg",8,"len")=4097 + Set gtmtypes("gtmsecshr_mesg",8,"type")="char" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.path")=8 + Set gtmtypes("gtmsecshr_mesg",9,"name")="gtmsecshr_mesg.mesg.db_ipcs" + Set gtmtypes("gtmsecshr_mesg",9,"off")=20 + Set gtmtypes("gtmsecshr_mesg",9,"len")=4120 + Set gtmtypes("gtmsecshr_mesg",9,"type")="ipcs_mesg" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs")=9 + Set gtmtypes("gtmsecshr_mesg",10,"name")="gtmsecshr_mesg.mesg.db_ipcs.semid" + Set gtmtypes("gtmsecshr_mesg",10,"off")=20 + Set gtmtypes("gtmsecshr_mesg",10,"len")=4 + Set gtmtypes("gtmsecshr_mesg",10,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.semid")=10 + Set gtmtypes("gtmsecshr_mesg",11,"name")="gtmsecshr_mesg.mesg.db_ipcs.shmid" + Set gtmtypes("gtmsecshr_mesg",11,"off")=24 + Set gtmtypes("gtmsecshr_mesg",11,"len")=4 + Set gtmtypes("gtmsecshr_mesg",11,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.shmid")=11 + Set gtmtypes("gtmsecshr_mesg",12,"name")="gtmsecshr_mesg.mesg.db_ipcs.gt_sem_ctime" + Set gtmtypes("gtmsecshr_mesg",12,"off")=28 + Set gtmtypes("gtmsecshr_mesg",12,"len")=4 + Set gtmtypes("gtmsecshr_mesg",12,"type")="time_t" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.gt_sem_ctime")=12 + Set gtmtypes("gtmsecshr_mesg",13,"name")="gtmsecshr_mesg.mesg.db_ipcs.gt_shm_ctime" + Set gtmtypes("gtmsecshr_mesg",13,"off")=32 + Set gtmtypes("gtmsecshr_mesg",13,"len")=4 + Set gtmtypes("gtmsecshr_mesg",13,"type")="time_t" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.gt_shm_ctime")=13 + Set gtmtypes("gtmsecshr_mesg",14,"name")="gtmsecshr_mesg.mesg.db_ipcs.fn_len" + Set gtmtypes("gtmsecshr_mesg",14,"off")=36 + Set gtmtypes("gtmsecshr_mesg",14,"len")=4 + Set gtmtypes("gtmsecshr_mesg",14,"type")="unsigned-int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.fn_len")=14 + Set gtmtypes("gtmsecshr_mesg",15,"name")="gtmsecshr_mesg.mesg.db_ipcs.fn" + Set gtmtypes("gtmsecshr_mesg",15,"off")=40 + Set gtmtypes("gtmsecshr_mesg",15,"len")=4097 + Set gtmtypes("gtmsecshr_mesg",15,"type")="char" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.fn")=15 + ; + Set gtmtypes("gtmsiginfo_t")="struct" + Set gtmtypes("gtmsiginfo_t",0)=8 + Set gtmtypes("gtmsiginfo_t","len")=32 + Set gtmtypes("gtmsiginfo_t",1,"name")="gtmsiginfo_t.int_iadr" + Set gtmtypes("gtmsiginfo_t",1,"off")=0 + Set gtmtypes("gtmsiginfo_t",1,"len")=4 + Set gtmtypes("gtmsiginfo_t",1,"type")="caddr_t" + Set gtmtypfldindx("gtmsiginfo_t","int_iadr")=1 + Set gtmtypes("gtmsiginfo_t",2,"name")="gtmsiginfo_t.bad_vadr" + Set gtmtypes("gtmsiginfo_t",2,"off")=4 + Set gtmtypes("gtmsiginfo_t",2,"len")=4 + Set gtmtypes("gtmsiginfo_t",2,"type")="caddr_t" + Set gtmtypfldindx("gtmsiginfo_t","bad_vadr")=2 + Set gtmtypes("gtmsiginfo_t",3,"name")="gtmsiginfo_t.sig_err" + Set gtmtypes("gtmsiginfo_t",3,"off")=8 + Set gtmtypes("gtmsiginfo_t",3,"len")=4 + Set gtmtypes("gtmsiginfo_t",3,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","sig_err")=3 + Set gtmtypes("gtmsiginfo_t",4,"name")="gtmsiginfo_t.send_pid" + Set gtmtypes("gtmsiginfo_t",4,"off")=12 + Set gtmtypes("gtmsiginfo_t",4,"len")=4 + Set gtmtypes("gtmsiginfo_t",4,"type")="pid_t" + Set gtmtypfldindx("gtmsiginfo_t","send_pid")=4 + Set gtmtypes("gtmsiginfo_t",5,"name")="gtmsiginfo_t.send_uid" + Set gtmtypes("gtmsiginfo_t",5,"off")=16 + Set gtmtypes("gtmsiginfo_t",5,"len")=4 + Set gtmtypes("gtmsiginfo_t",5,"type")="uid_t" + Set gtmtypfldindx("gtmsiginfo_t","send_uid")=5 + Set gtmtypes("gtmsiginfo_t",6,"name")="gtmsiginfo_t.subcode" + Set gtmtypes("gtmsiginfo_t",6,"off")=20 + Set gtmtypes("gtmsiginfo_t",6,"len")=4 + Set gtmtypes("gtmsiginfo_t",6,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","subcode")=6 + Set gtmtypes("gtmsiginfo_t",7,"name")="gtmsiginfo_t.infotype" + Set gtmtypes("gtmsiginfo_t",7,"off")=24 + Set gtmtypes("gtmsiginfo_t",7,"len")=4 + Set gtmtypes("gtmsiginfo_t",7,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","infotype")=7 + Set gtmtypes("gtmsiginfo_t",8,"name")="gtmsiginfo_t.signal" + Set gtmtypes("gtmsiginfo_t",8,"off")=28 + Set gtmtypes("gtmsiginfo_t",8,"len")=4 + Set gtmtypes("gtmsiginfo_t",8,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","signal")=8 + ; + Set gtmtypes("gtmsource_local_struct")="struct" + Set gtmtypes("gtmsource_local_struct",0)=54 + Set gtmtypes("gtmsource_local_struct","len")=1544 + Set gtmtypes("gtmsource_local_struct",1,"name")="gtmsource_local_struct.secondary_instname" + Set gtmtypes("gtmsource_local_struct",1,"off")=0 + Set gtmtypes("gtmsource_local_struct",1,"len")=16 + Set gtmtypes("gtmsource_local_struct",1,"type")="unsigned-char" + Set gtmtypfldindx("gtmsource_local_struct","secondary_instname")=1 + Set gtmtypes("gtmsource_local_struct",2,"name")="gtmsource_local_struct.gtmsource_pid" + Set gtmtypes("gtmsource_local_struct",2,"off")=16 + Set gtmtypes("gtmsource_local_struct",2,"len")=4 + Set gtmtypes("gtmsource_local_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_pid")=2 + Set gtmtypes("gtmsource_local_struct",3,"name")="gtmsource_local_struct.mode" + Set gtmtypes("gtmsource_local_struct",3,"off")=20 + Set gtmtypes("gtmsource_local_struct",3,"len")=4 + Set gtmtypes("gtmsource_local_struct",3,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","mode")=3 + Set gtmtypes("gtmsource_local_struct",4,"name")="gtmsource_local_struct.gtmsource_state" + Set gtmtypes("gtmsource_local_struct",4,"off")=24 + Set gtmtypes("gtmsource_local_struct",4,"len")=4 + Set gtmtypes("gtmsource_local_struct",4,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_state")=4 + Set gtmtypes("gtmsource_local_struct",5,"name")="gtmsource_local_struct.gtmsrc_lcl_array_index" + Set gtmtypes("gtmsource_local_struct",5,"off")=28 + Set gtmtypes("gtmsource_local_struct",5,"len")=4 + Set gtmtypes("gtmsource_local_struct",5,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsrc_lcl_array_index")=5 + Set gtmtypes("gtmsource_local_struct",6,"name")="gtmsource_local_struct.repl_zlib_cmp_level" + Set gtmtypes("gtmsource_local_struct",6,"off")=32 + Set gtmtypes("gtmsource_local_struct",6,"len")=4 + Set gtmtypes("gtmsource_local_struct",6,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","repl_zlib_cmp_level")=6 + Set gtmtypes("gtmsource_local_struct",7,"name")="gtmsource_local_struct.filler1_align_8" + Set gtmtypes("gtmsource_local_struct",7,"off")=36 + Set gtmtypes("gtmsource_local_struct",7,"len")=4 + Set gtmtypes("gtmsource_local_struct",7,"type")="unsigned-char" + Set gtmtypfldindx("gtmsource_local_struct","filler1_align_8")=7 + Set gtmtypes("gtmsource_local_struct",8,"name")="gtmsource_local_struct.read_state" + Set gtmtypes("gtmsource_local_struct",8,"off")=40 + Set gtmtypes("gtmsource_local_struct",8,"len")=4 + Set gtmtypes("gtmsource_local_struct",8,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","read_state")=8 + Set gtmtypes("gtmsource_local_struct",9,"name")="gtmsource_local_struct.read" + Set gtmtypes("gtmsource_local_struct",9,"off")=44 + Set gtmtypes("gtmsource_local_struct",9,"len")=4 + Set gtmtypes("gtmsource_local_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","read")=9 + Set gtmtypes("gtmsource_local_struct",10,"name")="gtmsource_local_struct.remote_side" + Set gtmtypes("gtmsource_local_struct",10,"off")=48 + Set gtmtypes("gtmsource_local_struct",10,"len")=48 + Set gtmtypes("gtmsource_local_struct",10,"type")="repl_conn_info_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side")=10 + Set gtmtypes("gtmsource_local_struct",11,"name")="gtmsource_local_struct.remote_side.proto_ver" + Set gtmtypes("gtmsource_local_struct",11,"off")=48 + Set gtmtypes("gtmsource_local_struct",11,"len")=4 + Set gtmtypes("gtmsource_local_struct",11,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.proto_ver")=11 + Set gtmtypes("gtmsource_local_struct",12,"name")="gtmsource_local_struct.remote_side.jnl_ver" + Set gtmtypes("gtmsource_local_struct",12,"off")=52 + Set gtmtypes("gtmsource_local_struct",12,"len")=4 + Set gtmtypes("gtmsource_local_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.jnl_ver")=12 + Set gtmtypes("gtmsource_local_struct",13,"name")="gtmsource_local_struct.remote_side.is_std_null_coll" + Set gtmtypes("gtmsource_local_struct",13,"off")=56 + Set gtmtypes("gtmsource_local_struct",13,"len")=4 + Set gtmtypes("gtmsource_local_struct",13,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.is_std_null_coll")=13 + Set gtmtypes("gtmsource_local_struct",14,"name")="gtmsource_local_struct.remote_side.trigger_supported" + Set gtmtypes("gtmsource_local_struct",14,"off")=60 + Set gtmtypes("gtmsource_local_struct",14,"len")=4 + Set gtmtypes("gtmsource_local_struct",14,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.trigger_supported")=14 + Set gtmtypes("gtmsource_local_struct",15,"name")="gtmsource_local_struct.remote_side.cross_endian" + Set gtmtypes("gtmsource_local_struct",15,"off")=64 + Set gtmtypes("gtmsource_local_struct",15,"len")=4 + Set gtmtypes("gtmsource_local_struct",15,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.cross_endian")=15 + Set gtmtypes("gtmsource_local_struct",16,"name")="gtmsource_local_struct.remote_side.endianness_known" + Set gtmtypes("gtmsource_local_struct",16,"off")=68 + Set gtmtypes("gtmsource_local_struct",16,"len")=4 + Set gtmtypes("gtmsource_local_struct",16,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.endianness_known")=16 + Set gtmtypes("gtmsource_local_struct",17,"name")="gtmsource_local_struct.remote_side.null_subs_xform" + Set gtmtypes("gtmsource_local_struct",17,"off")=72 + Set gtmtypes("gtmsource_local_struct",17,"len")=4 + Set gtmtypes("gtmsource_local_struct",17,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.null_subs_xform")=17 + Set gtmtypes("gtmsource_local_struct",18,"name")="gtmsource_local_struct.remote_side.is_supplementary" + Set gtmtypes("gtmsource_local_struct",18,"off")=76 + Set gtmtypes("gtmsource_local_struct",18,"len")=4 + Set gtmtypes("gtmsource_local_struct",18,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.is_supplementary")=18 + Set gtmtypes("gtmsource_local_struct",19,"name")="gtmsource_local_struct.remote_side.tls_requested" + Set gtmtypes("gtmsource_local_struct",19,"off")=80 + Set gtmtypes("gtmsource_local_struct",19,"len")=4 + Set gtmtypes("gtmsource_local_struct",19,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.tls_requested")=19 + Set gtmtypes("gtmsource_local_struct",20,"name")="gtmsource_local_struct.remote_side.filler_16" + Set gtmtypes("gtmsource_local_struct",20,"off")=84 + Set gtmtypes("gtmsource_local_struct",20,"len")=12 + Set gtmtypes("gtmsource_local_struct",20,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.filler_16")=20 + Set gtmtypes("gtmsource_local_struct",21,"name")="gtmsource_local_struct.read_addr" + Set gtmtypes("gtmsource_local_struct",21,"off")=96 + Set gtmtypes("gtmsource_local_struct",21,"len")=8 + Set gtmtypes("gtmsource_local_struct",21,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","read_addr")=21 + Set gtmtypes("gtmsource_local_struct",22,"name")="gtmsource_local_struct.read_jnl_seqno" + Set gtmtypes("gtmsource_local_struct",22,"off")=104 + Set gtmtypes("gtmsource_local_struct",22,"len")=8 + Set gtmtypes("gtmsource_local_struct",22,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","read_jnl_seqno")=22 + Set gtmtypes("gtmsource_local_struct",23,"name")="gtmsource_local_struct.connect_jnl_seqno" + Set gtmtypes("gtmsource_local_struct",23,"off")=112 + Set gtmtypes("gtmsource_local_struct",23,"len")=8 + Set gtmtypes("gtmsource_local_struct",23,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","connect_jnl_seqno")=23 + Set gtmtypes("gtmsource_local_struct",24,"name")="gtmsource_local_struct.num_histinfo" + Set gtmtypes("gtmsource_local_struct",24,"off")=120 + Set gtmtypes("gtmsource_local_struct",24,"len")=4 + Set gtmtypes("gtmsource_local_struct",24,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","num_histinfo")=24 + Set gtmtypes("gtmsource_local_struct",25,"name")="gtmsource_local_struct.next_histinfo_num" + Set gtmtypes("gtmsource_local_struct",25,"off")=124 + Set gtmtypes("gtmsource_local_struct",25,"len")=4 + Set gtmtypes("gtmsource_local_struct",25,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","next_histinfo_num")=25 + Set gtmtypes("gtmsource_local_struct",26,"name")="gtmsource_local_struct.next_histinfo_seqno" + Set gtmtypes("gtmsource_local_struct",26,"off")=128 + Set gtmtypes("gtmsource_local_struct",26,"len")=8 + Set gtmtypes("gtmsource_local_struct",26,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","next_histinfo_seqno")=26 + Set gtmtypes("gtmsource_local_struct",27,"name")="gtmsource_local_struct.last_flush_resync_seqno" + Set gtmtypes("gtmsource_local_struct",27,"off")=136 + Set gtmtypes("gtmsource_local_struct",27,"len")=8 + Set gtmtypes("gtmsource_local_struct",27,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","last_flush_resync_seqno")=27 + Set gtmtypes("gtmsource_local_struct",28,"name")="gtmsource_local_struct.send_new_histrec" + Set gtmtypes("gtmsource_local_struct",28,"off")=144 + Set gtmtypes("gtmsource_local_struct",28,"len")=4 + Set gtmtypes("gtmsource_local_struct",28,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","send_new_histrec")=28 + Set gtmtypes("gtmsource_local_struct",29,"name")="gtmsource_local_struct.send_losttn_complete" + Set gtmtypes("gtmsource_local_struct",29,"off")=148 + Set gtmtypes("gtmsource_local_struct",29,"len")=4 + Set gtmtypes("gtmsource_local_struct",29,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","send_losttn_complete")=29 + Set gtmtypes("gtmsource_local_struct",30,"name")="gtmsource_local_struct.secondary_host" + Set gtmtypes("gtmsource_local_struct",30,"off")=152 + Set gtmtypes("gtmsource_local_struct",30,"len")=256 + Set gtmtypes("gtmsource_local_struct",30,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","secondary_host")=30 + Set gtmtypes("gtmsource_local_struct",31,"name")="gtmsource_local_struct.secondary_inet_addr" + Set gtmtypes("gtmsource_local_struct",31,"off")=408 + Set gtmtypes("gtmsource_local_struct",31,"len")=28 + Set gtmtypes("gtmsource_local_struct",31,"type")="union" + Set gtmtypfldindx("gtmsource_local_struct","secondary_inet_addr")=31 + Set gtmtypes("gtmsource_local_struct",32,"name")="gtmsource_local_struct.secondary_af" + Set gtmtypes("gtmsource_local_struct",32,"off")=436 + Set gtmtypes("gtmsource_local_struct",32,"len")=4 + Set gtmtypes("gtmsource_local_struct",32,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_af")=32 + Set gtmtypes("gtmsource_local_struct",33,"name")="gtmsource_local_struct.secondary_addrlen" + Set gtmtypes("gtmsource_local_struct",33,"off")=440 + Set gtmtypes("gtmsource_local_struct",33,"len")=4 + Set gtmtypes("gtmsource_local_struct",33,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_addrlen")=33 + Set gtmtypes("gtmsource_local_struct",34,"name")="gtmsource_local_struct.secondary_port" + Set gtmtypes("gtmsource_local_struct",34,"off")=444 + Set gtmtypes("gtmsource_local_struct",34,"len")=4 + Set gtmtypes("gtmsource_local_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_port")=34 + Set gtmtypes("gtmsource_local_struct",35,"name")="gtmsource_local_struct.child_server_running" + Set gtmtypes("gtmsource_local_struct",35,"off")=448 + Set gtmtypes("gtmsource_local_struct",35,"len")=4 + Set gtmtypes("gtmsource_local_struct",35,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","child_server_running")=35 + Set gtmtypes("gtmsource_local_struct",36,"name")="gtmsource_local_struct.log_interval" + Set gtmtypes("gtmsource_local_struct",36,"off")=452 + Set gtmtypes("gtmsource_local_struct",36,"len")=4 + Set gtmtypes("gtmsource_local_struct",36,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","log_interval")=36 + Set gtmtypes("gtmsource_local_struct",37,"name")="gtmsource_local_struct.log_file" + Set gtmtypes("gtmsource_local_struct",37,"off")=456 + Set gtmtypes("gtmsource_local_struct",37,"len")=256 + Set gtmtypes("gtmsource_local_struct",37,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","log_file")=37 + Set gtmtypes("gtmsource_local_struct",38,"name")="gtmsource_local_struct.changelog" + Set gtmtypes("gtmsource_local_struct",38,"off")=712 + Set gtmtypes("gtmsource_local_struct",38,"len")=4 + Set gtmtypes("gtmsource_local_struct",38,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","changelog")=38 + Set gtmtypes("gtmsource_local_struct",39,"name")="gtmsource_local_struct.statslog" + Set gtmtypes("gtmsource_local_struct",39,"off")=716 + Set gtmtypes("gtmsource_local_struct",39,"len")=4 + Set gtmtypes("gtmsource_local_struct",39,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","statslog")=39 + Set gtmtypes("gtmsource_local_struct",40,"name")="gtmsource_local_struct.statslog_file" + Set gtmtypes("gtmsource_local_struct",40,"off")=720 + Set gtmtypes("gtmsource_local_struct",40,"len")=256 + Set gtmtypes("gtmsource_local_struct",40,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","statslog_file")=40 + Set gtmtypes("gtmsource_local_struct",41,"name")="gtmsource_local_struct.connect_parms" + Set gtmtypes("gtmsource_local_struct",41,"off")=976 + Set gtmtypes("gtmsource_local_struct",41,"len")=24 + Set gtmtypes("gtmsource_local_struct",41,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","connect_parms")=41 + Set gtmtypes("gtmsource_local_struct",41,"dim")=6 + Set gtmtypes("gtmsource_local_struct",42,"name")="gtmsource_local_struct.shutdown" + Set gtmtypes("gtmsource_local_struct",42,"off")=1000 + Set gtmtypes("gtmsource_local_struct",42,"len")=4 + Set gtmtypes("gtmsource_local_struct",42,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","shutdown")=42 + Set gtmtypes("gtmsource_local_struct",43,"name")="gtmsource_local_struct.shutdown_time" + Set gtmtypes("gtmsource_local_struct",43,"off")=1004 + Set gtmtypes("gtmsource_local_struct",43,"len")=4 + Set gtmtypes("gtmsource_local_struct",43,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","shutdown_time")=43 + Set gtmtypes("gtmsource_local_struct",44,"name")="gtmsource_local_struct.filter_cmd" + Set gtmtypes("gtmsource_local_struct",44,"off")=1008 + Set gtmtypes("gtmsource_local_struct",44,"len")=512 + Set gtmtypes("gtmsource_local_struct",44,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","filter_cmd")=44 + Set gtmtypes("gtmsource_local_struct",45,"name")="gtmsource_local_struct.gtmsource_srv_latch" + Set gtmtypes("gtmsource_local_struct",45,"off")=1520 + Set gtmtypes("gtmsource_local_struct",45,"len")=8 + Set gtmtypes("gtmsource_local_struct",45,"type")="global_latch_t" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch")=45 + Set gtmtypes("gtmsource_local_struct",46,"name")="gtmsource_local_struct.gtmsource_srv_latch.u" + Set gtmtypes("gtmsource_local_struct",46,"off")=1520 + Set gtmtypes("gtmsource_local_struct",46,"len")=8 + Set gtmtypes("gtmsource_local_struct",46,"type")="union" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u")=46 + Set gtmtypes("gtmsource_local_struct",47,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.pid_imgcnt" + Set gtmtypes("gtmsource_local_struct",47,"off")=1520 + Set gtmtypes("gtmsource_local_struct",47,"len")=8 + Set gtmtypes("gtmsource_local_struct",47,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.pid_imgcnt")=47 + Set gtmtypes("gtmsource_local_struct",48,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts" + Set gtmtypes("gtmsource_local_struct",48,"off")=1520 + Set gtmtypes("gtmsource_local_struct",48,"len")=8 + Set gtmtypes("gtmsource_local_struct",48,"type")="struct" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts")=48 + Set gtmtypes("gtmsource_local_struct",49,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts.latch_pid" + Set gtmtypes("gtmsource_local_struct",49,"off")=1520 + Set gtmtypes("gtmsource_local_struct",49,"len")=4 + Set gtmtypes("gtmsource_local_struct",49,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts.latch_pid")=49 + Set gtmtypes("gtmsource_local_struct",50,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts.latch_word" + Set gtmtypes("gtmsource_local_struct",50,"off")=1524 + Set gtmtypes("gtmsource_local_struct",50,"len")=4 + Set gtmtypes("gtmsource_local_struct",50,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts.latch_word")=50 + Set gtmtypes("gtmsource_local_struct",51,"name")="gtmsource_local_struct.jnlfileonly" + Set gtmtypes("gtmsource_local_struct",51,"off")=1528 + Set gtmtypes("gtmsource_local_struct",51,"len")=4 + Set gtmtypes("gtmsource_local_struct",51,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","jnlfileonly")=51 + Set gtmtypes("gtmsource_local_struct",52,"name")="gtmsource_local_struct.next_renegotiate_time" + Set gtmtypes("gtmsource_local_struct",52,"off")=1532 + Set gtmtypes("gtmsource_local_struct",52,"len")=4 + Set gtmtypes("gtmsource_local_struct",52,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","next_renegotiate_time")=52 + Set gtmtypes("gtmsource_local_struct",53,"name")="gtmsource_local_struct.num_renegotiations" + Set gtmtypes("gtmsource_local_struct",53,"off")=1536 + Set gtmtypes("gtmsource_local_struct",53,"len")=4 + Set gtmtypes("gtmsource_local_struct",53,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","num_renegotiations")=53 + Set gtmtypes("gtmsource_local_struct",54,"name")="gtmsource_local_struct.padding" + Set gtmtypes("gtmsource_local_struct",54,"off")=1540 + Set gtmtypes("gtmsource_local_struct",54,"len")=4 + Set gtmtypes("gtmsource_local_struct",54,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","padding")=54 + ; + Set gtmtypes("gtmsource_options_t")="struct" + Set gtmtypes("gtmsource_options_t",0)=34 + Set gtmtypes("gtmsource_options_t","len")=2228 + Set gtmtypes("gtmsource_options_t",1,"name")="gtmsource_options_t.start" + Set gtmtypes("gtmsource_options_t",1,"off")=0 + Set gtmtypes("gtmsource_options_t",1,"len")=4 + Set gtmtypes("gtmsource_options_t",1,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","start")=1 + Set gtmtypes("gtmsource_options_t",2,"name")="gtmsource_options_t.shut_down" + Set gtmtypes("gtmsource_options_t",2,"off")=4 + Set gtmtypes("gtmsource_options_t",2,"len")=4 + Set gtmtypes("gtmsource_options_t",2,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","shut_down")=2 + Set gtmtypes("gtmsource_options_t",3,"name")="gtmsource_options_t.activate" + Set gtmtypes("gtmsource_options_t",3,"off")=8 + Set gtmtypes("gtmsource_options_t",3,"len")=4 + Set gtmtypes("gtmsource_options_t",3,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","activate")=3 + Set gtmtypes("gtmsource_options_t",4,"name")="gtmsource_options_t.changelog" + Set gtmtypes("gtmsource_options_t",4,"off")=12 + Set gtmtypes("gtmsource_options_t",4,"len")=4 + Set gtmtypes("gtmsource_options_t",4,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","changelog")=4 + Set gtmtypes("gtmsource_options_t",5,"name")="gtmsource_options_t.checkhealth" + Set gtmtypes("gtmsource_options_t",5,"off")=16 + Set gtmtypes("gtmsource_options_t",5,"len")=4 + Set gtmtypes("gtmsource_options_t",5,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","checkhealth")=5 + Set gtmtypes("gtmsource_options_t",6,"name")="gtmsource_options_t.deactivate" + Set gtmtypes("gtmsource_options_t",6,"off")=20 + Set gtmtypes("gtmsource_options_t",6,"len")=4 + Set gtmtypes("gtmsource_options_t",6,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","deactivate")=6 + Set gtmtypes("gtmsource_options_t",7,"name")="gtmsource_options_t.jnlpool" + Set gtmtypes("gtmsource_options_t",7,"off")=24 + Set gtmtypes("gtmsource_options_t",7,"len")=4 + Set gtmtypes("gtmsource_options_t",7,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","jnlpool")=7 + Set gtmtypes("gtmsource_options_t",8,"name")="gtmsource_options_t.showbacklog" + Set gtmtypes("gtmsource_options_t",8,"off")=28 + Set gtmtypes("gtmsource_options_t",8,"len")=4 + Set gtmtypes("gtmsource_options_t",8,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","showbacklog")=8 + Set gtmtypes("gtmsource_options_t",9,"name")="gtmsource_options_t.statslog" + Set gtmtypes("gtmsource_options_t",9,"off")=32 + Set gtmtypes("gtmsource_options_t",9,"len")=4 + Set gtmtypes("gtmsource_options_t",9,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","statslog")=9 + Set gtmtypes("gtmsource_options_t",10,"name")="gtmsource_options_t.stopsourcefilter" + Set gtmtypes("gtmsource_options_t",10,"off")=36 + Set gtmtypes("gtmsource_options_t",10,"len")=4 + Set gtmtypes("gtmsource_options_t",10,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","stopsourcefilter")=10 + Set gtmtypes("gtmsource_options_t",11,"name")="gtmsource_options_t.rootprimary" + Set gtmtypes("gtmsource_options_t",11,"off")=40 + Set gtmtypes("gtmsource_options_t",11,"len")=4 + Set gtmtypes("gtmsource_options_t",11,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","rootprimary")=11 + Set gtmtypes("gtmsource_options_t",12,"name")="gtmsource_options_t.instsecondary" + Set gtmtypes("gtmsource_options_t",12,"off")=44 + Set gtmtypes("gtmsource_options_t",12,"len")=4 + Set gtmtypes("gtmsource_options_t",12,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","instsecondary")=12 + Set gtmtypes("gtmsource_options_t",13,"name")="gtmsource_options_t.needrestart" + Set gtmtypes("gtmsource_options_t",13,"off")=48 + Set gtmtypes("gtmsource_options_t",13,"len")=4 + Set gtmtypes("gtmsource_options_t",13,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","needrestart")=13 + Set gtmtypes("gtmsource_options_t",14,"name")="gtmsource_options_t.losttncomplete" + Set gtmtypes("gtmsource_options_t",14,"off")=52 + Set gtmtypes("gtmsource_options_t",14,"len")=4 + Set gtmtypes("gtmsource_options_t",14,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","losttncomplete")=14 + Set gtmtypes("gtmsource_options_t",15,"name")="gtmsource_options_t.showfreeze" + Set gtmtypes("gtmsource_options_t",15,"off")=56 + Set gtmtypes("gtmsource_options_t",15,"len")=4 + Set gtmtypes("gtmsource_options_t",15,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","showfreeze")=15 + Set gtmtypes("gtmsource_options_t",16,"name")="gtmsource_options_t.setfreeze" + Set gtmtypes("gtmsource_options_t",16,"off")=60 + Set gtmtypes("gtmsource_options_t",16,"len")=4 + Set gtmtypes("gtmsource_options_t",16,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","setfreeze")=16 + Set gtmtypes("gtmsource_options_t",17,"name")="gtmsource_options_t.freezeval" + Set gtmtypes("gtmsource_options_t",17,"off")=64 + Set gtmtypes("gtmsource_options_t",17,"len")=4 + Set gtmtypes("gtmsource_options_t",17,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","freezeval")=17 + Set gtmtypes("gtmsource_options_t",18,"name")="gtmsource_options_t.setcomment" + Set gtmtypes("gtmsource_options_t",18,"off")=68 + Set gtmtypes("gtmsource_options_t",18,"len")=4 + Set gtmtypes("gtmsource_options_t",18,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","setcomment")=18 + Set gtmtypes("gtmsource_options_t",19,"name")="gtmsource_options_t.jnlfileonly" + Set gtmtypes("gtmsource_options_t",19,"off")=72 + Set gtmtypes("gtmsource_options_t",19,"len")=4 + Set gtmtypes("gtmsource_options_t",19,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","jnlfileonly")=19 + Set gtmtypes("gtmsource_options_t",20,"name")="gtmsource_options_t.zerobacklog" + Set gtmtypes("gtmsource_options_t",20,"off")=76 + Set gtmtypes("gtmsource_options_t",20,"len")=4 + Set gtmtypes("gtmsource_options_t",20,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","zerobacklog")=20 + Set gtmtypes("gtmsource_options_t",21,"name")="gtmsource_options_t.cmplvl" + Set gtmtypes("gtmsource_options_t",21,"off")=80 + Set gtmtypes("gtmsource_options_t",21,"len")=4 + Set gtmtypes("gtmsource_options_t",21,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","cmplvl")=21 + Set gtmtypes("gtmsource_options_t",22,"name")="gtmsource_options_t.shutdown_time" + Set gtmtypes("gtmsource_options_t",22,"off")=84 + Set gtmtypes("gtmsource_options_t",22,"len")=4 + Set gtmtypes("gtmsource_options_t",22,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","shutdown_time")=22 + Set gtmtypes("gtmsource_options_t",23,"name")="gtmsource_options_t.buffsize" + Set gtmtypes("gtmsource_options_t",23,"off")=88 + Set gtmtypes("gtmsource_options_t",23,"len")=4 + Set gtmtypes("gtmsource_options_t",23,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_options_t","buffsize")=23 + Set gtmtypes("gtmsource_options_t",24,"name")="gtmsource_options_t.mode" + Set gtmtypes("gtmsource_options_t",24,"off")=92 + Set gtmtypes("gtmsource_options_t",24,"len")=4 + Set gtmtypes("gtmsource_options_t",24,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","mode")=24 + Set gtmtypes("gtmsource_options_t",25,"name")="gtmsource_options_t.secondary_port" + Set gtmtypes("gtmsource_options_t",25,"off")=96 + Set gtmtypes("gtmsource_options_t",25,"len")=4 + Set gtmtypes("gtmsource_options_t",25,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","secondary_port")=25 + Set gtmtypes("gtmsource_options_t",26,"name")="gtmsource_options_t.src_log_interval" + Set gtmtypes("gtmsource_options_t",26,"off")=100 + Set gtmtypes("gtmsource_options_t",26,"len")=4 + Set gtmtypes("gtmsource_options_t",26,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_options_t","src_log_interval")=26 + Set gtmtypes("gtmsource_options_t",27,"name")="gtmsource_options_t.connect_parms" + Set gtmtypes("gtmsource_options_t",27,"off")=104 + Set gtmtypes("gtmsource_options_t",27,"len")=24 + Set gtmtypes("gtmsource_options_t",27,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","connect_parms")=27 + Set gtmtypes("gtmsource_options_t",27,"dim")=6 + Set gtmtypes("gtmsource_options_t",28,"name")="gtmsource_options_t.filter_cmd" + Set gtmtypes("gtmsource_options_t",28,"off")=128 + Set gtmtypes("gtmsource_options_t",28,"len")=512 + Set gtmtypes("gtmsource_options_t",28,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","filter_cmd")=28 + Set gtmtypes("gtmsource_options_t",29,"name")="gtmsource_options_t.secondary_host" + Set gtmtypes("gtmsource_options_t",29,"off")=640 + Set gtmtypes("gtmsource_options_t",29,"len")=256 + Set gtmtypes("gtmsource_options_t",29,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","secondary_host")=29 + Set gtmtypes("gtmsource_options_t",30,"name")="gtmsource_options_t.log_file" + Set gtmtypes("gtmsource_options_t",30,"off")=896 + Set gtmtypes("gtmsource_options_t",30,"len")=256 + Set gtmtypes("gtmsource_options_t",30,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","log_file")=30 + Set gtmtypes("gtmsource_options_t",31,"name")="gtmsource_options_t.secondary_instname" + Set gtmtypes("gtmsource_options_t",31,"off")=1152 + Set gtmtypes("gtmsource_options_t",31,"len")=16 + Set gtmtypes("gtmsource_options_t",31,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","secondary_instname")=31 + Set gtmtypes("gtmsource_options_t",32,"name")="gtmsource_options_t.freeze_comment" + Set gtmtypes("gtmsource_options_t",32,"off")=1168 + Set gtmtypes("gtmsource_options_t",32,"len")=1024 + Set gtmtypes("gtmsource_options_t",32,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","freeze_comment")=32 + Set gtmtypes("gtmsource_options_t",33,"name")="gtmsource_options_t.tlsid" + Set gtmtypes("gtmsource_options_t",33,"off")=2192 + Set gtmtypes("gtmsource_options_t",33,"len")=32 + Set gtmtypes("gtmsource_options_t",33,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","tlsid")=33 + Set gtmtypes("gtmsource_options_t",34,"name")="gtmsource_options_t.renegotiate_interval" + Set gtmtypes("gtmsource_options_t",34,"off")=2224 + Set gtmtypes("gtmsource_options_t",34,"len")=4 + Set gtmtypes("gtmsource_options_t",34,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","renegotiate_interval")=34 + ; + Set gtmtypes("gtmsrc_lcl")="struct" + Set gtmtypes("gtmsrc_lcl",0)=4 + Set gtmtypes("gtmsrc_lcl","len")=64 + Set gtmtypes("gtmsrc_lcl",1,"name")="gtmsrc_lcl.secondary_instname" + Set gtmtypes("gtmsrc_lcl",1,"off")=0 + Set gtmtypes("gtmsrc_lcl",1,"len")=16 + Set gtmtypes("gtmsrc_lcl",1,"type")="unsigned-char" + Set gtmtypfldindx("gtmsrc_lcl","secondary_instname")=1 + Set gtmtypes("gtmsrc_lcl",2,"name")="gtmsrc_lcl.resync_seqno" + Set gtmtypes("gtmsrc_lcl",2,"off")=16 + Set gtmtypes("gtmsrc_lcl",2,"len")=8 + Set gtmtypes("gtmsrc_lcl",2,"type")="uint64_t" + Set gtmtypfldindx("gtmsrc_lcl","resync_seqno")=2 + Set gtmtypes("gtmsrc_lcl",3,"name")="gtmsrc_lcl.connect_jnl_seqno" + Set gtmtypes("gtmsrc_lcl",3,"off")=24 + Set gtmtypes("gtmsrc_lcl",3,"len")=8 + Set gtmtypes("gtmsrc_lcl",3,"type")="uint64_t" + Set gtmtypfldindx("gtmsrc_lcl","connect_jnl_seqno")=3 + Set gtmtypes("gtmsrc_lcl",4,"name")="gtmsrc_lcl.filler_64" + Set gtmtypes("gtmsrc_lcl",4,"off")=32 + Set gtmtypes("gtmsrc_lcl",4,"len")=32 + Set gtmtypes("gtmsrc_lcl",4,"type")="unsigned-char" + Set gtmtypfldindx("gtmsrc_lcl","filler_64")=4 + ; + Set gtmtypes("gv_key")="struct" + Set gtmtypes("gv_key",0)=4 + Set gtmtypes("gv_key","len")=8 + Set gtmtypes("gv_key",1,"name")="gv_key.top" + Set gtmtypes("gv_key",1,"off")=0 + Set gtmtypes("gv_key",1,"len")=2 + Set gtmtypes("gv_key",1,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","top")=1 + Set gtmtypes("gv_key",2,"name")="gv_key.end" + Set gtmtypes("gv_key",2,"off")=2 + Set gtmtypes("gv_key",2,"len")=2 + Set gtmtypes("gv_key",2,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","end")=2 + Set gtmtypes("gv_key",3,"name")="gv_key.prev" + Set gtmtypes("gv_key",3,"off")=4 + Set gtmtypes("gv_key",3,"len")=2 + Set gtmtypes("gv_key",3,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","prev")=3 + Set gtmtypes("gv_key",4,"name")="gv_key.base" + Set gtmtypes("gv_key",4,"off")=6 + Set gtmtypes("gv_key",4,"len")=1 + Set gtmtypes("gv_key",4,"type")="unsigned-char" + Set gtmtypfldindx("gv_key","base")=4 + ; + Set gtmtypes("gv_namehead")="struct" + Set gtmtypes("gv_namehead",0)=41 + Set gtmtypes("gv_namehead","len")=568 + Set gtmtypes("gv_namehead",1,"name")="gv_namehead.first_rec" + Set gtmtypes("gv_namehead",1,"off")=0 + Set gtmtypes("gv_namehead",1,"len")=4 + Set gtmtypes("gv_namehead",1,"type")="addr" + Set gtmtypfldindx("gv_namehead","first_rec")=1 + Set gtmtypes("gv_namehead",2,"name")="gv_namehead.last_rec" + Set gtmtypes("gv_namehead",2,"off")=4 + Set gtmtypes("gv_namehead",2,"len")=4 + Set gtmtypes("gv_namehead",2,"type")="addr" + Set gtmtypfldindx("gv_namehead","last_rec")=2 + Set gtmtypes("gv_namehead",3,"name")="gv_namehead.next_gvnh" + Set gtmtypes("gv_namehead",3,"off")=8 + Set gtmtypes("gv_namehead",3,"len")=4 + Set gtmtypes("gv_namehead",3,"type")="addr" + Set gtmtypfldindx("gv_namehead","next_gvnh")=3 + Set gtmtypes("gv_namehead",4,"name")="gv_namehead.prev_gvnh" + Set gtmtypes("gv_namehead",4,"off")=12 + Set gtmtypes("gv_namehead",4,"len")=4 + Set gtmtypes("gv_namehead",4,"type")="addr" + Set gtmtypfldindx("gv_namehead","prev_gvnh")=4 + Set gtmtypes("gv_namehead",5,"name")="gv_namehead.next_tp_gvnh" + Set gtmtypes("gv_namehead",5,"off")=16 + Set gtmtypes("gv_namehead",5,"len")=4 + Set gtmtypes("gv_namehead",5,"type")="addr" + Set gtmtypfldindx("gv_namehead","next_tp_gvnh")=5 + Set gtmtypes("gv_namehead",6,"name")="gv_namehead.gd_csa" + Set gtmtypes("gv_namehead",6,"off")=20 + Set gtmtypes("gv_namehead",6,"len")=4 + Set gtmtypes("gv_namehead",6,"type")="addr" + Set gtmtypfldindx("gv_namehead","gd_csa")=6 + Set gtmtypes("gv_namehead",7,"name")="gv_namehead.alt_hist" + Set gtmtypes("gv_namehead",7,"off")=24 + Set gtmtypes("gv_namehead",7,"len")=4 + Set gtmtypes("gv_namehead",7,"type")="addr" + Set gtmtypfldindx("gv_namehead","alt_hist")=7 + Set gtmtypes("gv_namehead",8,"name")="gv_namehead.collseq" + Set gtmtypes("gv_namehead",8,"off")=28 + Set gtmtypes("gv_namehead",8,"len")=4 + Set gtmtypes("gv_namehead",8,"type")="addr" + Set gtmtypfldindx("gv_namehead","collseq")=8 + Set gtmtypes("gv_namehead",9,"name")="gv_namehead.read_local_tn" + Set gtmtypes("gv_namehead",9,"off")=32 + Set gtmtypes("gv_namehead",9,"len")=8 + Set gtmtypes("gv_namehead",9,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","read_local_tn")=9 + Set gtmtypes("gv_namehead",10,"name")="gv_namehead.trig_local_tn" + Set gtmtypes("gv_namehead",10,"off")=40 + Set gtmtypes("gv_namehead",10,"len")=8 + Set gtmtypes("gv_namehead",10,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","trig_local_tn")=10 + Set gtmtypes("gv_namehead",11,"name")="gv_namehead.trig_read_tn" + Set gtmtypes("gv_namehead",11,"off")=48 + Set gtmtypes("gv_namehead",11,"len")=8 + Set gtmtypes("gv_namehead",11,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","trig_read_tn")=11 + Set gtmtypes("gv_namehead",12,"name")="gv_namehead.prev_key" + Set gtmtypes("gv_namehead",12,"off")=56 + Set gtmtypes("gv_namehead",12,"len")=4 + Set gtmtypes("gv_namehead",12,"type")="addr" + Set gtmtypfldindx("gv_namehead","prev_key")=12 + Set gtmtypes("gv_namehead",13,"name")="gv_namehead.noisolation" + Set gtmtypes("gv_namehead",13,"off")=60 + Set gtmtypes("gv_namehead",13,"len")=4 + Set gtmtypes("gv_namehead",13,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","noisolation")=13 + Set gtmtypes("gv_namehead",14,"name")="gv_namehead.root" + Set gtmtypes("gv_namehead",14,"off")=64 + Set gtmtypes("gv_namehead",14,"len")=4 + Set gtmtypes("gv_namehead",14,"type")="int" + Set gtmtypfldindx("gv_namehead","root")=14 + Set gtmtypes("gv_namehead",15,"name")="gv_namehead.gvname" + Set gtmtypes("gv_namehead",15,"off")=68 + Set gtmtypes("gv_namehead",15,"len")=20 + Set gtmtypes("gv_namehead",15,"type")="mname_entry" + Set gtmtypfldindx("gv_namehead","gvname")=15 + Set gtmtypes("gv_namehead",16,"name")="gv_namehead.gvname.var_name" + Set gtmtypes("gv_namehead",16,"off")=68 + Set gtmtypes("gv_namehead",16,"len")=12 + Set gtmtypes("gv_namehead",16,"type")="mstr" + Set gtmtypfldindx("gv_namehead","gvname.var_name")=16 + Set gtmtypes("gv_namehead",17,"name")="gv_namehead.gvname.hash_code" + Set gtmtypes("gv_namehead",17,"off")=80 + Set gtmtypes("gv_namehead",17,"len")=4 + Set gtmtypes("gv_namehead",17,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","gvname.hash_code")=17 + Set gtmtypes("gv_namehead",18,"name")="gv_namehead.gvname.marked" + Set gtmtypes("gv_namehead",18,"off")=84 + Set gtmtypes("gv_namehead",18,"len")=4 + Set gtmtypes("gv_namehead",18,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","gvname.marked")=18 + Set gtmtypes("gv_namehead",19,"name")="gv_namehead.hist" + Set gtmtypes("gv_namehead",19,"off")=88 + Set gtmtypes("gv_namehead",19,"len")=392 + Set gtmtypes("gv_namehead",19,"type")="srch_hist" + Set gtmtypfldindx("gv_namehead","hist")=19 + Set gtmtypes("gv_namehead",20,"name")="gv_namehead.hist.depth" + Set gtmtypes("gv_namehead",20,"off")=88 + Set gtmtypes("gv_namehead",20,"len")=4 + Set gtmtypes("gv_namehead",20,"type")="int" + Set gtmtypfldindx("gv_namehead","hist.depth")=20 + Set gtmtypes("gv_namehead",21,"name")="gv_namehead.hist.filler" + Set gtmtypes("gv_namehead",21,"off")=92 + Set gtmtypes("gv_namehead",21,"len")=4 + Set gtmtypes("gv_namehead",21,"type")="int" + Set gtmtypfldindx("gv_namehead","hist.filler")=21 + Set gtmtypes("gv_namehead",22,"name")="gv_namehead.hist.h" + Set gtmtypes("gv_namehead",22,"off")=96 + Set gtmtypes("gv_namehead",22,"len")=384 + Set gtmtypes("gv_namehead",22,"type")="srch_blk_status" + Set gtmtypfldindx("gv_namehead","hist.h")=22 + Set gtmtypes("gv_namehead",22,"dim")=8 + Set gtmtypes("gv_namehead",23,"name")="gv_namehead.regcnt" + Set gtmtypes("gv_namehead",23,"off")=480 + Set gtmtypes("gv_namehead",23,"len")=4 + Set gtmtypes("gv_namehead",23,"type")="int" + Set gtmtypfldindx("gv_namehead","regcnt")=23 + Set gtmtypes("gv_namehead",24,"name")="gv_namehead.nct" + Set gtmtypes("gv_namehead",24,"off")=484 + Set gtmtypes("gv_namehead",24,"len")=4 + Set gtmtypes("gv_namehead",24,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","nct")=24 + Set gtmtypes("gv_namehead",25,"name")="gv_namehead.act" + Set gtmtypes("gv_namehead",25,"off")=488 + Set gtmtypes("gv_namehead",25,"len")=4 + Set gtmtypes("gv_namehead",25,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","act")=25 + Set gtmtypes("gv_namehead",26,"name")="gv_namehead.ver" + Set gtmtypes("gv_namehead",26,"off")=492 + Set gtmtypes("gv_namehead",26,"len")=4 + Set gtmtypes("gv_namehead",26,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","ver")=26 + Set gtmtypes("gv_namehead",27,"name")="gv_namehead.act_specified_in_gld" + Set gtmtypes("gv_namehead",27,"off")=496 + Set gtmtypes("gv_namehead",27,"len")=4 + Set gtmtypes("gv_namehead",27,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","act_specified_in_gld")=27 + Set gtmtypes("gv_namehead",28,"name")="gv_namehead.nct_must_be_zero" + Set gtmtypes("gv_namehead",28,"off")=500 + Set gtmtypes("gv_namehead",28,"len")=4 + Set gtmtypes("gv_namehead",28,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","nct_must_be_zero")=28 + Set gtmtypes("gv_namehead",29,"name")="gv_namehead.split_cleanup_needed" + Set gtmtypes("gv_namehead",29,"off")=504 + Set gtmtypes("gv_namehead",29,"len")=4 + Set gtmtypes("gv_namehead",29,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","split_cleanup_needed")=29 + Set gtmtypes("gv_namehead",30,"name")="gv_namehead.last_split_direction" + Set gtmtypes("gv_namehead",30,"off")=508 + Set gtmtypes("gv_namehead",30,"len")=6 + Set gtmtypes("gv_namehead",30,"type")="char" + Set gtmtypfldindx("gv_namehead","last_split_direction")=30 + Set gtmtypes("gv_namehead",31,"name")="gv_namehead.filler_8byte_align1" + Set gtmtypes("gv_namehead",31,"off")=514 + Set gtmtypes("gv_namehead",31,"len")=6 + Set gtmtypes("gv_namehead",31,"type")="char" + Set gtmtypfldindx("gv_namehead","filler_8byte_align1")=31 + Set gtmtypes("gv_namehead",32,"name")="gv_namehead.last_split_blk_num" + Set gtmtypes("gv_namehead",32,"off")=520 + Set gtmtypes("gv_namehead",32,"len")=24 + Set gtmtypes("gv_namehead",32,"type")="int" + Set gtmtypfldindx("gv_namehead","last_split_blk_num")=32 + Set gtmtypes("gv_namehead",32,"dim")=6 + Set gtmtypes("gv_namehead",33,"name")="gv_namehead.gvt_trigger" + Set gtmtypes("gv_namehead",33,"off")=544 + Set gtmtypes("gv_namehead",33,"len")=4 + Set gtmtypes("gv_namehead",33,"type")="addr" + Set gtmtypfldindx("gv_namehead","gvt_trigger")=33 + Set gtmtypes("gv_namehead",34,"name")="gv_namehead.db_trigger_cycle" + Set gtmtypes("gv_namehead",34,"off")=548 + Set gtmtypes("gv_namehead",34,"len")=4 + Set gtmtypes("gv_namehead",34,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","db_trigger_cycle")=34 + Set gtmtypes("gv_namehead",35,"name")="gv_namehead.db_dztrigger_cycle" + Set gtmtypes("gv_namehead",35,"off")=552 + Set gtmtypes("gv_namehead",35,"len")=4 + Set gtmtypes("gv_namehead",35,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","db_dztrigger_cycle")=35 + Set gtmtypes("gv_namehead",36,"name")="gv_namehead.trig_mismatch_test_done" + Set gtmtypes("gv_namehead",36,"off")=556 + Set gtmtypes("gv_namehead",36,"len")=4 + Set gtmtypes("gv_namehead",36,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","trig_mismatch_test_done")=36 + Set gtmtypes("gv_namehead",37,"name")="gv_namehead.clue" + Set gtmtypes("gv_namehead",37,"off")=560 + Set gtmtypes("gv_namehead",37,"len")=8 + Set gtmtypes("gv_namehead",37,"type")="gv_key" + Set gtmtypfldindx("gv_namehead","clue")=37 + Set gtmtypes("gv_namehead",38,"name")="gv_namehead.clue.top" + Set gtmtypes("gv_namehead",38,"off")=560 + Set gtmtypes("gv_namehead",38,"len")=2 + Set gtmtypes("gv_namehead",38,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.top")=38 + Set gtmtypes("gv_namehead",39,"name")="gv_namehead.clue.end" + Set gtmtypes("gv_namehead",39,"off")=562 + Set gtmtypes("gv_namehead",39,"len")=2 + Set gtmtypes("gv_namehead",39,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.end")=39 + Set gtmtypes("gv_namehead",40,"name")="gv_namehead.clue.prev" + Set gtmtypes("gv_namehead",40,"off")=564 + Set gtmtypes("gv_namehead",40,"len")=2 + Set gtmtypes("gv_namehead",40,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.prev")=40 + Set gtmtypes("gv_namehead",41,"name")="gv_namehead.clue.base" + Set gtmtypes("gv_namehead",41,"off")=566 + Set gtmtypes("gv_namehead",41,"len")=1 + Set gtmtypes("gv_namehead",41,"type")="unsigned-char" + Set gtmtypfldindx("gv_namehead","clue.base")=41 + ; + Set gtmtypes("gv_trigger_t")="struct" + Set gtmtypes("gv_trigger_t",0)=34 + Set gtmtypes("gv_trigger_t","len")=144 + Set gtmtypes("gv_trigger_t",1,"name")="gv_trigger_t.next_set" + Set gtmtypes("gv_trigger_t",1,"off")=0 + Set gtmtypes("gv_trigger_t",1,"len")=4 + Set gtmtypes("gv_trigger_t",1,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_set")=1 + Set gtmtypes("gv_trigger_t",2,"name")="gv_trigger_t.next_kill" + Set gtmtypes("gv_trigger_t",2,"off")=4 + Set gtmtypes("gv_trigger_t",2,"len")=4 + Set gtmtypes("gv_trigger_t",2,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_kill")=2 + Set gtmtypes("gv_trigger_t",3,"name")="gv_trigger_t.next_ztrig" + Set gtmtypes("gv_trigger_t",3,"off")=8 + Set gtmtypes("gv_trigger_t",3,"len")=4 + Set gtmtypes("gv_trigger_t",3,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_ztrig")=3 + Set gtmtypes("gv_trigger_t",4,"name")="gv_trigger_t.cmdmask" + Set gtmtypes("gv_trigger_t",4,"off")=12 + Set gtmtypes("gv_trigger_t",4,"len")=4 + Set gtmtypes("gv_trigger_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","cmdmask")=4 + Set gtmtypes("gv_trigger_t",5,"name")="gv_trigger_t.numsubs" + Set gtmtypes("gv_trigger_t",5,"off")=16 + Set gtmtypes("gv_trigger_t",5,"len")=4 + Set gtmtypes("gv_trigger_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numsubs")=5 + Set gtmtypes("gv_trigger_t",6,"name")="gv_trigger_t.numlvsubs" + Set gtmtypes("gv_trigger_t",6,"off")=20 + Set gtmtypes("gv_trigger_t",6,"len")=4 + Set gtmtypes("gv_trigger_t",6,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numlvsubs")=6 + Set gtmtypes("gv_trigger_t",7,"name")="gv_trigger_t.numpieces" + Set gtmtypes("gv_trigger_t",7,"off")=24 + Set gtmtypes("gv_trigger_t",7,"len")=4 + Set gtmtypes("gv_trigger_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numpieces")=7 + Set gtmtypes("gv_trigger_t",8,"name")="gv_trigger_t.subsarray" + Set gtmtypes("gv_trigger_t",8,"off")=28 + Set gtmtypes("gv_trigger_t",8,"len")=4 + Set gtmtypes("gv_trigger_t",8,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","subsarray")=8 + Set gtmtypes("gv_trigger_t",9,"name")="gv_trigger_t.lvindexarray" + Set gtmtypes("gv_trigger_t",9,"off")=32 + Set gtmtypes("gv_trigger_t",9,"len")=4 + Set gtmtypes("gv_trigger_t",9,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","lvindexarray")=9 + Set gtmtypes("gv_trigger_t",10,"name")="gv_trigger_t.lvnamearray" + Set gtmtypes("gv_trigger_t",10,"off")=36 + Set gtmtypes("gv_trigger_t",10,"len")=4 + Set gtmtypes("gv_trigger_t",10,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","lvnamearray")=10 + Set gtmtypes("gv_trigger_t",11,"name")="gv_trigger_t.piecearray" + Set gtmtypes("gv_trigger_t",11,"off")=40 + Set gtmtypes("gv_trigger_t",11,"len")=4 + Set gtmtypes("gv_trigger_t",11,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","piecearray")=11 + Set gtmtypes("gv_trigger_t",12,"name")="gv_trigger_t.rtn_desc" + Set gtmtypes("gv_trigger_t",12,"off")=44 + Set gtmtypes("gv_trigger_t",12,"len")=16 + Set gtmtypes("gv_trigger_t",12,"type")="rtn_tabent" + Set gtmtypfldindx("gv_trigger_t","rtn_desc")=12 + Set gtmtypes("gv_trigger_t",13,"name")="gv_trigger_t.rtn_desc.rt_name" + Set gtmtypes("gv_trigger_t",13,"off")=44 + Set gtmtypes("gv_trigger_t",13,"len")=12 + Set gtmtypes("gv_trigger_t",13,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","rtn_desc.rt_name")=13 + Set gtmtypes("gv_trigger_t",14,"name")="gv_trigger_t.rtn_desc.rt_adr" + Set gtmtypes("gv_trigger_t",14,"off")=56 + Set gtmtypes("gv_trigger_t",14,"len")=4 + Set gtmtypes("gv_trigger_t",14,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","rtn_desc.rt_adr")=14 + Set gtmtypes("gv_trigger_t",15,"name")="gv_trigger_t.is_zdelim" + Set gtmtypes("gv_trigger_t",15,"off")=60 + Set gtmtypes("gv_trigger_t",15,"len")=4 + Set gtmtypes("gv_trigger_t",15,"type")="boolean_t" + Set gtmtypfldindx("gv_trigger_t","is_zdelim")=15 + Set gtmtypes("gv_trigger_t",16,"name")="gv_trigger_t.delimiter" + Set gtmtypes("gv_trigger_t",16,"off")=64 + Set gtmtypes("gv_trigger_t",16,"len")=32 + Set gtmtypes("gv_trigger_t",16,"type")="mval" + Set gtmtypfldindx("gv_trigger_t","delimiter")=16 + Set gtmtypes("gv_trigger_t",17,"name")="gv_trigger_t.delimiter.mvtype" + Set gtmtypes("gv_trigger_t",17,"off")=64 + Set gtmtypes("gv_trigger_t",17,"len")=2 + Set gtmtypes("gv_trigger_t",17,"type")="unsigned-short" + Set gtmtypfldindx("gv_trigger_t","delimiter.mvtype")=17 + Set gtmtypes("gv_trigger_t",18,"name")="gv_trigger_t.delimiter.fnpc_indx" + Set gtmtypes("gv_trigger_t",18,"off")=67 + Set gtmtypes("gv_trigger_t",18,"len")=1 + Set gtmtypes("gv_trigger_t",18,"type")="unsigned-char" + Set gtmtypfldindx("gv_trigger_t","delimiter.fnpc_indx")=18 + Set gtmtypes("gv_trigger_t",19,"name")="gv_trigger_t.delimiter.utfcgr_indx" + Set gtmtypes("gv_trigger_t",19,"off")=68 + Set gtmtypes("gv_trigger_t",19,"len")=4 + Set gtmtypes("gv_trigger_t",19,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","delimiter.utfcgr_indx")=19 + Set gtmtypes("gv_trigger_t",20,"name")="gv_trigger_t.delimiter.filler2" + Set gtmtypes("gv_trigger_t",20,"off")=72 + Set gtmtypes("gv_trigger_t",20,"len")=4 + Set gtmtypes("gv_trigger_t",20,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","delimiter.filler2")=20 + Set gtmtypes("gv_trigger_t",21,"name")="gv_trigger_t.delimiter.m" + Set gtmtypes("gv_trigger_t",21,"off")=76 + Set gtmtypes("gv_trigger_t",21,"len")=8 + Set gtmtypes("gv_trigger_t",21,"type")="int" + Set gtmtypfldindx("gv_trigger_t","delimiter.m")=21 + Set gtmtypes("gv_trigger_t",21,"dim")=2 + Set gtmtypes("gv_trigger_t",22,"name")="gv_trigger_t.delimiter.str" + Set gtmtypes("gv_trigger_t",22,"off")=84 + Set gtmtypes("gv_trigger_t",22,"len")=12 + Set gtmtypes("gv_trigger_t",22,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","delimiter.str")=22 + Set gtmtypes("gv_trigger_t",23,"name")="gv_trigger_t.options" + Set gtmtypes("gv_trigger_t",23,"off")=96 + Set gtmtypes("gv_trigger_t",23,"len")=12 + Set gtmtypes("gv_trigger_t",23,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","options")=23 + Set gtmtypes("gv_trigger_t",24,"name")="gv_trigger_t.options.char_len" + Set gtmtypes("gv_trigger_t",24,"off")=96 + Set gtmtypes("gv_trigger_t",24,"len")=4 + Set gtmtypes("gv_trigger_t",24,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","options.char_len")=24 + Set gtmtypes("gv_trigger_t",25,"name")="gv_trigger_t.options.len" + Set gtmtypes("gv_trigger_t",25,"off")=100 + Set gtmtypes("gv_trigger_t",25,"len")=4 + Set gtmtypes("gv_trigger_t",25,"type")="int" + Set gtmtypfldindx("gv_trigger_t","options.len")=25 + Set gtmtypes("gv_trigger_t",26,"name")="gv_trigger_t.options.addr" + Set gtmtypes("gv_trigger_t",26,"off")=104 + Set gtmtypes("gv_trigger_t",26,"len")=4 + Set gtmtypes("gv_trigger_t",26,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","options.addr")=26 + Set gtmtypes("gv_trigger_t",27,"name")="gv_trigger_t.xecute_str" + Set gtmtypes("gv_trigger_t",27,"off")=108 + Set gtmtypes("gv_trigger_t",27,"len")=32 + Set gtmtypes("gv_trigger_t",27,"type")="mval" + Set gtmtypfldindx("gv_trigger_t","xecute_str")=27 + Set gtmtypes("gv_trigger_t",28,"name")="gv_trigger_t.xecute_str.mvtype" + Set gtmtypes("gv_trigger_t",28,"off")=108 + Set gtmtypes("gv_trigger_t",28,"len")=2 + Set gtmtypes("gv_trigger_t",28,"type")="unsigned-short" + Set gtmtypfldindx("gv_trigger_t","xecute_str.mvtype")=28 + Set gtmtypes("gv_trigger_t",29,"name")="gv_trigger_t.xecute_str.fnpc_indx" + Set gtmtypes("gv_trigger_t",29,"off")=111 + Set gtmtypes("gv_trigger_t",29,"len")=1 + Set gtmtypes("gv_trigger_t",29,"type")="unsigned-char" + Set gtmtypfldindx("gv_trigger_t","xecute_str.fnpc_indx")=29 + Set gtmtypes("gv_trigger_t",30,"name")="gv_trigger_t.xecute_str.utfcgr_indx" + Set gtmtypes("gv_trigger_t",30,"off")=112 + Set gtmtypes("gv_trigger_t",30,"len")=4 + Set gtmtypes("gv_trigger_t",30,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.utfcgr_indx")=30 + Set gtmtypes("gv_trigger_t",31,"name")="gv_trigger_t.xecute_str.filler2" + Set gtmtypes("gv_trigger_t",31,"off")=116 + Set gtmtypes("gv_trigger_t",31,"len")=4 + Set gtmtypes("gv_trigger_t",31,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.filler2")=31 + Set gtmtypes("gv_trigger_t",32,"name")="gv_trigger_t.xecute_str.m" + Set gtmtypes("gv_trigger_t",32,"off")=120 + Set gtmtypes("gv_trigger_t",32,"len")=8 + Set gtmtypes("gv_trigger_t",32,"type")="int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.m")=32 + Set gtmtypes("gv_trigger_t",32,"dim")=2 + Set gtmtypes("gv_trigger_t",33,"name")="gv_trigger_t.xecute_str.str" + Set gtmtypes("gv_trigger_t",33,"off")=128 + Set gtmtypes("gv_trigger_t",33,"len")=12 + Set gtmtypes("gv_trigger_t",33,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","xecute_str.str")=33 + Set gtmtypes("gv_trigger_t",34,"name")="gv_trigger_t.gvt_trigger" + Set gtmtypes("gv_trigger_t",34,"off")=140 + Set gtmtypes("gv_trigger_t",34,"len")=4 + Set gtmtypes("gv_trigger_t",34,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","gvt_trigger")=34 + ; + Set gtmtypes("gvargs_t")="struct" + Set gtmtypes("gvargs_t",0)=2 + Set gtmtypes("gvargs_t","len")=136 + Set gtmtypes("gvargs_t",1,"name")="gvargs_t.count" + Set gtmtypes("gvargs_t",1,"off")=0 + Set gtmtypes("gvargs_t",1,"len")=4 + Set gtmtypes("gvargs_t",1,"type")="ssize_t" + Set gtmtypfldindx("gvargs_t","count")=1 + Set gtmtypes("gvargs_t",2,"name")="gvargs_t.args" + Set gtmtypes("gvargs_t",2,"off")=4 + Set gtmtypes("gvargs_t",2,"len")=132 + Set gtmtypes("gvargs_t",2,"type")="addr" + Set gtmtypfldindx("gvargs_t","args")=2 + Set gtmtypes("gvargs_t",2,"dim")=33 + ; + Set gtmtypes("gvname_info")="struct" + Set gtmtypes("gvname_info",0)=9 + Set gtmtypes("gvname_info","len")=36 + Set gtmtypes("gvname_info",1,"name")="gvname_info.s_gv_currkey" + Set gtmtypes("gvname_info",1,"off")=0 + Set gtmtypes("gvname_info",1,"len")=4 + Set gtmtypes("gvname_info",1,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_currkey")=1 + Set gtmtypes("gvname_info",2,"name")="gvname_info.s_gv_target" + Set gtmtypes("gvname_info",2,"off")=4 + Set gtmtypes("gvname_info",2,"len")=4 + Set gtmtypes("gvname_info",2,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_target")=2 + Set gtmtypes("gvname_info",3,"name")="gvname_info.s_gv_cur_region" + Set gtmtypes("gvname_info",3,"off")=8 + Set gtmtypes("gvname_info",3,"len")=4 + Set gtmtypes("gvname_info",3,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_cur_region")=3 + Set gtmtypes("gvname_info",4,"name")="gvname_info.s_cs_addrs" + Set gtmtypes("gvname_info",4,"off")=12 + Set gtmtypes("gvname_info",4,"len")=4 + Set gtmtypes("gvname_info",4,"type")="addr" + Set gtmtypfldindx("gvname_info","s_cs_addrs")=4 + Set gtmtypes("gvname_info",5,"name")="gvname_info.s_sgm_info_ptr" + Set gtmtypes("gvname_info",5,"off")=16 + Set gtmtypes("gvname_info",5,"len")=4 + Set gtmtypes("gvname_info",5,"type")="addr" + Set gtmtypfldindx("gvname_info","s_sgm_info_ptr")=5 + Set gtmtypes("gvname_info",6,"name")="gvname_info.s_gd_targ_gvnh_reg" + Set gtmtypes("gvname_info",6,"off")=20 + Set gtmtypes("gvname_info",6,"len")=4 + Set gtmtypes("gvname_info",6,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_gvnh_reg")=6 + Set gtmtypes("gvname_info",7,"name")="gvname_info.s_gd_targ_map" + Set gtmtypes("gvname_info",7,"off")=24 + Set gtmtypes("gvname_info",7,"len")=4 + Set gtmtypes("gvname_info",7,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_map")=7 + Set gtmtypes("gvname_info",8,"name")="gvname_info.s_gd_targ_addr" + Set gtmtypes("gvname_info",8,"off")=28 + Set gtmtypes("gvname_info",8,"len")=4 + Set gtmtypes("gvname_info",8,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_addr")=8 + Set gtmtypes("gvname_info",9,"name")="gvname_info.gvkey_nsubs" + Set gtmtypes("gvname_info",9,"off")=32 + Set gtmtypes("gvname_info",9,"len")=4 + Set gtmtypes("gvname_info",9,"type")="int" + Set gtmtypfldindx("gvname_info","gvkey_nsubs")=9 + ; + Set gtmtypes("gvnh_reg_t")="struct" + Set gtmtypes("gvnh_reg_t",0)=5 + Set gtmtypes("gvnh_reg_t","len")=20 + Set gtmtypes("gvnh_reg_t",1,"name")="gvnh_reg_t.gvt" + Set gtmtypes("gvnh_reg_t",1,"off")=0 + Set gtmtypes("gvnh_reg_t",1,"len")=4 + Set gtmtypes("gvnh_reg_t",1,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gvt")=1 + Set gtmtypes("gvnh_reg_t",2,"name")="gvnh_reg_t.gd_reg" + Set gtmtypes("gvnh_reg_t",2,"off")=4 + Set gtmtypes("gvnh_reg_t",2,"len")=4 + Set gtmtypes("gvnh_reg_t",2,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gd_reg")=2 + Set gtmtypes("gvnh_reg_t",3,"name")="gvnh_reg_t.gvspan" + Set gtmtypes("gvnh_reg_t",3,"off")=8 + Set gtmtypes("gvnh_reg_t",3,"len")=4 + Set gtmtypes("gvnh_reg_t",3,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gvspan")=3 + Set gtmtypes("gvnh_reg_t",4,"name")="gvnh_reg_t.act" + Set gtmtypes("gvnh_reg_t",4,"off")=12 + Set gtmtypes("gvnh_reg_t",4,"len")=4 + Set gtmtypes("gvnh_reg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gvnh_reg_t","act")=4 + Set gtmtypes("gvnh_reg_t",5,"name")="gvnh_reg_t.ver" + Set gtmtypes("gvnh_reg_t",5,"off")=16 + Set gtmtypes("gvnh_reg_t",5,"len")=4 + Set gtmtypes("gvnh_reg_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gvnh_reg_t","ver")=5 + ; + Set gtmtypes("gvnh_spanreg_t")="struct" + Set gtmtypes("gvnh_spanreg_t",0)=5 + Set gtmtypes("gvnh_spanreg_t","len")=20 + Set gtmtypes("gvnh_spanreg_t",1,"name")="gvnh_spanreg_t.start_map_index" + Set gtmtypes("gvnh_spanreg_t",1,"off")=0 + Set gtmtypes("gvnh_spanreg_t",1,"len")=4 + Set gtmtypes("gvnh_spanreg_t",1,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","start_map_index")=1 + Set gtmtypes("gvnh_spanreg_t",2,"name")="gvnh_spanreg_t.end_map_index" + Set gtmtypes("gvnh_spanreg_t",2,"off")=4 + Set gtmtypes("gvnh_spanreg_t",2,"len")=4 + Set gtmtypes("gvnh_spanreg_t",2,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","end_map_index")=2 + Set gtmtypes("gvnh_spanreg_t",3,"name")="gvnh_spanreg_t.min_reg_index" + Set gtmtypes("gvnh_spanreg_t",3,"off")=8 + Set gtmtypes("gvnh_spanreg_t",3,"len")=4 + Set gtmtypes("gvnh_spanreg_t",3,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","min_reg_index")=3 + Set gtmtypes("gvnh_spanreg_t",4,"name")="gvnh_spanreg_t.max_reg_index" + Set gtmtypes("gvnh_spanreg_t",4,"off")=12 + Set gtmtypes("gvnh_spanreg_t",4,"len")=4 + Set gtmtypes("gvnh_spanreg_t",4,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","max_reg_index")=4 + Set gtmtypes("gvnh_spanreg_t",5,"name")="gvnh_spanreg_t.gvt_array" + Set gtmtypes("gvnh_spanreg_t",5,"off")=16 + Set gtmtypes("gvnh_spanreg_t",5,"len")=4 + Set gtmtypes("gvnh_spanreg_t",5,"type")="addr" + Set gtmtypfldindx("gvnh_spanreg_t","gvt_array")=5 + ; + Set gtmtypes("gvsavtarg_t")="struct" + Set gtmtypes("gvsavtarg_t",0)=8 + Set gtmtypes("gvsavtarg_t","len")=32 + Set gtmtypes("gvsavtarg_t",1,"name")="gvsavtarg_t.gv_cur_region" + Set gtmtypes("gvsavtarg_t",1,"off")=0 + Set gtmtypes("gvsavtarg_t",1,"len")=4 + Set gtmtypes("gvsavtarg_t",1,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gv_cur_region")=1 + Set gtmtypes("gvsavtarg_t",2,"name")="gvsavtarg_t.gv_target" + Set gtmtypes("gvsavtarg_t",2,"off")=4 + Set gtmtypes("gvsavtarg_t",2,"len")=4 + Set gtmtypes("gvsavtarg_t",2,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gv_target")=2 + Set gtmtypes("gvsavtarg_t",3,"name")="gvsavtarg_t.gd_targ_gvnh_reg" + Set gtmtypes("gvsavtarg_t",3,"off")=8 + Set gtmtypes("gvsavtarg_t",3,"len")=4 + Set gtmtypes("gvsavtarg_t",3,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gd_targ_gvnh_reg")=3 + Set gtmtypes("gvsavtarg_t",4,"name")="gvsavtarg_t.gd_targ_map" + Set gtmtypes("gvsavtarg_t",4,"off")=12 + Set gtmtypes("gvsavtarg_t",4,"len")=4 + Set gtmtypes("gvsavtarg_t",4,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gd_targ_map")=4 + Set gtmtypes("gvsavtarg_t",5,"name")="gvsavtarg_t.gv_last_subsc_null" + Set gtmtypes("gvsavtarg_t",5,"off")=16 + Set gtmtypes("gvsavtarg_t",5,"len")=4 + Set gtmtypes("gvsavtarg_t",5,"type")="boolean_t" + Set gtmtypfldindx("gvsavtarg_t","gv_last_subsc_null")=5 + Set gtmtypes("gvsavtarg_t",6,"name")="gvsavtarg_t.gv_some_subsc_null" + Set gtmtypes("gvsavtarg_t",6,"off")=20 + Set gtmtypes("gvsavtarg_t",6,"len")=4 + Set gtmtypes("gvsavtarg_t",6,"type")="boolean_t" + Set gtmtypfldindx("gvsavtarg_t","gv_some_subsc_null")=6 + Set gtmtypes("gvsavtarg_t",7,"name")="gvsavtarg_t.prev" + Set gtmtypes("gvsavtarg_t",7,"off")=24 + Set gtmtypes("gvsavtarg_t",7,"len")=4 + Set gtmtypes("gvsavtarg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvsavtarg_t","prev")=7 + Set gtmtypes("gvsavtarg_t",8,"name")="gvsavtarg_t.end" + Set gtmtypes("gvsavtarg_t",8,"off")=28 + Set gtmtypes("gvsavtarg_t",8,"len")=4 + Set gtmtypes("gvsavtarg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvsavtarg_t","end")=8 + ; + Set gtmtypes("gvstats_rec_t")="struct" + Set gtmtypes("gvstats_rec_t",0)=58 + Set gtmtypes("gvstats_rec_t","len")=464 + Set gtmtypes("gvstats_rec_t",1,"name")="gvstats_rec_t.n_set" + Set gtmtypes("gvstats_rec_t",1,"off")=0 + Set gtmtypes("gvstats_rec_t",1,"len")=8 + Set gtmtypes("gvstats_rec_t",1,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_set")=1 + Set gtmtypes("gvstats_rec_t",2,"name")="gvstats_rec_t.n_kill" + Set gtmtypes("gvstats_rec_t",2,"off")=8 + Set gtmtypes("gvstats_rec_t",2,"len")=8 + Set gtmtypes("gvstats_rec_t",2,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_kill")=2 + Set gtmtypes("gvstats_rec_t",3,"name")="gvstats_rec_t.n_get" + Set gtmtypes("gvstats_rec_t",3,"off")=16 + Set gtmtypes("gvstats_rec_t",3,"len")=8 + Set gtmtypes("gvstats_rec_t",3,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_get")=3 + Set gtmtypes("gvstats_rec_t",4,"name")="gvstats_rec_t.n_data" + Set gtmtypes("gvstats_rec_t",4,"off")=24 + Set gtmtypes("gvstats_rec_t",4,"len")=8 + Set gtmtypes("gvstats_rec_t",4,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_data")=4 + Set gtmtypes("gvstats_rec_t",5,"name")="gvstats_rec_t.n_order" + Set gtmtypes("gvstats_rec_t",5,"off")=32 + Set gtmtypes("gvstats_rec_t",5,"len")=8 + Set gtmtypes("gvstats_rec_t",5,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_order")=5 + Set gtmtypes("gvstats_rec_t",6,"name")="gvstats_rec_t.n_zprev" + Set gtmtypes("gvstats_rec_t",6,"off")=40 + Set gtmtypes("gvstats_rec_t",6,"len")=8 + Set gtmtypes("gvstats_rec_t",6,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_zprev")=6 + Set gtmtypes("gvstats_rec_t",7,"name")="gvstats_rec_t.n_query" + Set gtmtypes("gvstats_rec_t",7,"off")=48 + Set gtmtypes("gvstats_rec_t",7,"len")=8 + Set gtmtypes("gvstats_rec_t",7,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_query")=7 + Set gtmtypes("gvstats_rec_t",8,"name")="gvstats_rec_t.n_lock_success" + Set gtmtypes("gvstats_rec_t",8,"off")=56 + Set gtmtypes("gvstats_rec_t",8,"len")=8 + Set gtmtypes("gvstats_rec_t",8,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_lock_success")=8 + Set gtmtypes("gvstats_rec_t",9,"name")="gvstats_rec_t.n_lock_fail" + Set gtmtypes("gvstats_rec_t",9,"off")=64 + Set gtmtypes("gvstats_rec_t",9,"len")=8 + Set gtmtypes("gvstats_rec_t",9,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_lock_fail")=9 + Set gtmtypes("gvstats_rec_t",10,"name")="gvstats_rec_t.db_curr_tn" + Set gtmtypes("gvstats_rec_t",10,"off")=72 + Set gtmtypes("gvstats_rec_t",10,"len")=8 + Set gtmtypes("gvstats_rec_t",10,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","db_curr_tn")=10 + Set gtmtypes("gvstats_rec_t",11,"name")="gvstats_rec_t.n_dsk_read" + Set gtmtypes("gvstats_rec_t",11,"off")=80 + Set gtmtypes("gvstats_rec_t",11,"len")=8 + Set gtmtypes("gvstats_rec_t",11,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_dsk_read")=11 + Set gtmtypes("gvstats_rec_t",12,"name")="gvstats_rec_t.n_dsk_write" + Set gtmtypes("gvstats_rec_t",12,"off")=88 + Set gtmtypes("gvstats_rec_t",12,"len")=8 + Set gtmtypes("gvstats_rec_t",12,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_dsk_write")=12 + Set gtmtypes("gvstats_rec_t",13,"name")="gvstats_rec_t.n_nontp_readwrite" + Set gtmtypes("gvstats_rec_t",13,"off")=96 + Set gtmtypes("gvstats_rec_t",13,"len")=8 + Set gtmtypes("gvstats_rec_t",13,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_readwrite")=13 + Set gtmtypes("gvstats_rec_t",14,"name")="gvstats_rec_t.n_nontp_readonly" + Set gtmtypes("gvstats_rec_t",14,"off")=104 + Set gtmtypes("gvstats_rec_t",14,"len")=8 + Set gtmtypes("gvstats_rec_t",14,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_readonly")=14 + Set gtmtypes("gvstats_rec_t",15,"name")="gvstats_rec_t.n_nontp_blkwrite" + Set gtmtypes("gvstats_rec_t",15,"off")=112 + Set gtmtypes("gvstats_rec_t",15,"len")=8 + Set gtmtypes("gvstats_rec_t",15,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_blkwrite")=15 + Set gtmtypes("gvstats_rec_t",16,"name")="gvstats_rec_t.n_nontp_blkread" + Set gtmtypes("gvstats_rec_t",16,"off")=120 + Set gtmtypes("gvstats_rec_t",16,"len")=8 + Set gtmtypes("gvstats_rec_t",16,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_blkread")=16 + Set gtmtypes("gvstats_rec_t",17,"name")="gvstats_rec_t.n_nontp_retries_0" + Set gtmtypes("gvstats_rec_t",17,"off")=128 + Set gtmtypes("gvstats_rec_t",17,"len")=8 + Set gtmtypes("gvstats_rec_t",17,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_0")=17 + Set gtmtypes("gvstats_rec_t",18,"name")="gvstats_rec_t.n_nontp_retries_1" + Set gtmtypes("gvstats_rec_t",18,"off")=136 + Set gtmtypes("gvstats_rec_t",18,"len")=8 + Set gtmtypes("gvstats_rec_t",18,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_1")=18 + Set gtmtypes("gvstats_rec_t",19,"name")="gvstats_rec_t.n_nontp_retries_2" + Set gtmtypes("gvstats_rec_t",19,"off")=144 + Set gtmtypes("gvstats_rec_t",19,"len")=8 + Set gtmtypes("gvstats_rec_t",19,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_2")=19 + Set gtmtypes("gvstats_rec_t",20,"name")="gvstats_rec_t.n_nontp_retries_3" + Set gtmtypes("gvstats_rec_t",20,"off")=152 + Set gtmtypes("gvstats_rec_t",20,"len")=8 + Set gtmtypes("gvstats_rec_t",20,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_3")=20 + Set gtmtypes("gvstats_rec_t",21,"name")="gvstats_rec_t.n_tp_readwrite" + Set gtmtypes("gvstats_rec_t",21,"off")=160 + Set gtmtypes("gvstats_rec_t",21,"len")=8 + Set gtmtypes("gvstats_rec_t",21,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_readwrite")=21 + Set gtmtypes("gvstats_rec_t",22,"name")="gvstats_rec_t.n_tp_readonly" + Set gtmtypes("gvstats_rec_t",22,"off")=168 + Set gtmtypes("gvstats_rec_t",22,"len")=8 + Set gtmtypes("gvstats_rec_t",22,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_readonly")=22 + Set gtmtypes("gvstats_rec_t",23,"name")="gvstats_rec_t.n_tp_rolledback" + Set gtmtypes("gvstats_rec_t",23,"off")=176 + Set gtmtypes("gvstats_rec_t",23,"len")=8 + Set gtmtypes("gvstats_rec_t",23,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_rolledback")=23 + Set gtmtypes("gvstats_rec_t",24,"name")="gvstats_rec_t.n_tp_blkwrite" + Set gtmtypes("gvstats_rec_t",24,"off")=184 + Set gtmtypes("gvstats_rec_t",24,"len")=8 + Set gtmtypes("gvstats_rec_t",24,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_blkwrite")=24 + Set gtmtypes("gvstats_rec_t",25,"name")="gvstats_rec_t.n_tp_blkread" + Set gtmtypes("gvstats_rec_t",25,"off")=192 + Set gtmtypes("gvstats_rec_t",25,"len")=8 + Set gtmtypes("gvstats_rec_t",25,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_blkread")=25 + Set gtmtypes("gvstats_rec_t",26,"name")="gvstats_rec_t.n_tp_tot_retries_0" + Set gtmtypes("gvstats_rec_t",26,"off")=200 + Set gtmtypes("gvstats_rec_t",26,"len")=8 + Set gtmtypes("gvstats_rec_t",26,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_0")=26 + Set gtmtypes("gvstats_rec_t",27,"name")="gvstats_rec_t.n_tp_tot_retries_1" + Set gtmtypes("gvstats_rec_t",27,"off")=208 + Set gtmtypes("gvstats_rec_t",27,"len")=8 + Set gtmtypes("gvstats_rec_t",27,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_1")=27 + Set gtmtypes("gvstats_rec_t",28,"name")="gvstats_rec_t.n_tp_tot_retries_2" + Set gtmtypes("gvstats_rec_t",28,"off")=216 + Set gtmtypes("gvstats_rec_t",28,"len")=8 + Set gtmtypes("gvstats_rec_t",28,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_2")=28 + Set gtmtypes("gvstats_rec_t",29,"name")="gvstats_rec_t.n_tp_tot_retries_3" + Set gtmtypes("gvstats_rec_t",29,"off")=224 + Set gtmtypes("gvstats_rec_t",29,"len")=8 + Set gtmtypes("gvstats_rec_t",29,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_3")=29 + Set gtmtypes("gvstats_rec_t",30,"name")="gvstats_rec_t.n_tp_tot_retries_4" + Set gtmtypes("gvstats_rec_t",30,"off")=232 + Set gtmtypes("gvstats_rec_t",30,"len")=8 + Set gtmtypes("gvstats_rec_t",30,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_4")=30 + Set gtmtypes("gvstats_rec_t",31,"name")="gvstats_rec_t.n_tp_cnflct_retries_0" + Set gtmtypes("gvstats_rec_t",31,"off")=240 + Set gtmtypes("gvstats_rec_t",31,"len")=8 + Set gtmtypes("gvstats_rec_t",31,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_0")=31 + Set gtmtypes("gvstats_rec_t",32,"name")="gvstats_rec_t.n_tp_cnflct_retries_1" + Set gtmtypes("gvstats_rec_t",32,"off")=248 + Set gtmtypes("gvstats_rec_t",32,"len")=8 + Set gtmtypes("gvstats_rec_t",32,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_1")=32 + Set gtmtypes("gvstats_rec_t",33,"name")="gvstats_rec_t.n_tp_cnflct_retries_2" + Set gtmtypes("gvstats_rec_t",33,"off")=256 + Set gtmtypes("gvstats_rec_t",33,"len")=8 + Set gtmtypes("gvstats_rec_t",33,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_2")=33 + Set gtmtypes("gvstats_rec_t",34,"name")="gvstats_rec_t.n_tp_cnflct_retries_3" + Set gtmtypes("gvstats_rec_t",34,"off")=264 + Set gtmtypes("gvstats_rec_t",34,"len")=8 + Set gtmtypes("gvstats_rec_t",34,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_3")=34 + Set gtmtypes("gvstats_rec_t",35,"name")="gvstats_rec_t.n_tp_cnflct_retries_4" + Set gtmtypes("gvstats_rec_t",35,"off")=272 + Set gtmtypes("gvstats_rec_t",35,"len")=8 + Set gtmtypes("gvstats_rec_t",35,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_4")=35 + Set gtmtypes("gvstats_rec_t",36,"name")="gvstats_rec_t.n_ztrigger" + Set gtmtypes("gvstats_rec_t",36,"off")=280 + Set gtmtypes("gvstats_rec_t",36,"len")=8 + Set gtmtypes("gvstats_rec_t",36,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_ztrigger")=36 + Set gtmtypes("gvstats_rec_t",37,"name")="gvstats_rec_t.n_db_flush" + Set gtmtypes("gvstats_rec_t",37,"off")=288 + Set gtmtypes("gvstats_rec_t",37,"len")=8 + Set gtmtypes("gvstats_rec_t",37,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_flush")=37 + Set gtmtypes("gvstats_rec_t",38,"name")="gvstats_rec_t.n_db_fsync" + Set gtmtypes("gvstats_rec_t",38,"off")=296 + Set gtmtypes("gvstats_rec_t",38,"len")=8 + Set gtmtypes("gvstats_rec_t",38,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_fsync")=38 + Set gtmtypes("gvstats_rec_t",39,"name")="gvstats_rec_t.n_jnl_flush" + Set gtmtypes("gvstats_rec_t",39,"off")=304 + Set gtmtypes("gvstats_rec_t",39,"len")=8 + Set gtmtypes("gvstats_rec_t",39,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_flush")=39 + Set gtmtypes("gvstats_rec_t",40,"name")="gvstats_rec_t.n_jnl_fsync" + Set gtmtypes("gvstats_rec_t",40,"off")=312 + Set gtmtypes("gvstats_rec_t",40,"len")=8 + Set gtmtypes("gvstats_rec_t",40,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_fsync")=40 + Set gtmtypes("gvstats_rec_t",41,"name")="gvstats_rec_t.n_jbuff_bytes" + Set gtmtypes("gvstats_rec_t",41,"off")=320 + Set gtmtypes("gvstats_rec_t",41,"len")=8 + Set gtmtypes("gvstats_rec_t",41,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jbuff_bytes")=41 + Set gtmtypes("gvstats_rec_t",42,"name")="gvstats_rec_t.n_jfile_bytes" + Set gtmtypes("gvstats_rec_t",42,"off")=328 + Set gtmtypes("gvstats_rec_t",42,"len")=8 + Set gtmtypes("gvstats_rec_t",42,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jfile_bytes")=42 + Set gtmtypes("gvstats_rec_t",43,"name")="gvstats_rec_t.n_jfile_writes" + Set gtmtypes("gvstats_rec_t",43,"off")=336 + Set gtmtypes("gvstats_rec_t",43,"len")=8 + Set gtmtypes("gvstats_rec_t",43,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jfile_writes")=43 + Set gtmtypes("gvstats_rec_t",44,"name")="gvstats_rec_t.n_jrec_logical" + Set gtmtypes("gvstats_rec_t",44,"off")=344 + Set gtmtypes("gvstats_rec_t",44,"len")=8 + Set gtmtypes("gvstats_rec_t",44,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_logical")=44 + Set gtmtypes("gvstats_rec_t",45,"name")="gvstats_rec_t.n_jrec_pblk" + Set gtmtypes("gvstats_rec_t",45,"off")=352 + Set gtmtypes("gvstats_rec_t",45,"len")=8 + Set gtmtypes("gvstats_rec_t",45,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_pblk")=45 + Set gtmtypes("gvstats_rec_t",46,"name")="gvstats_rec_t.n_jrec_epoch_regular" + Set gtmtypes("gvstats_rec_t",46,"off")=360 + Set gtmtypes("gvstats_rec_t",46,"len")=8 + Set gtmtypes("gvstats_rec_t",46,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_epoch_regular")=46 + Set gtmtypes("gvstats_rec_t",47,"name")="gvstats_rec_t.n_jrec_epoch_idle" + Set gtmtypes("gvstats_rec_t",47,"off")=368 + Set gtmtypes("gvstats_rec_t",47,"len")=8 + Set gtmtypes("gvstats_rec_t",47,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_epoch_idle")=47 + Set gtmtypes("gvstats_rec_t",48,"name")="gvstats_rec_t.n_jrec_other" + Set gtmtypes("gvstats_rec_t",48,"off")=376 + Set gtmtypes("gvstats_rec_t",48,"len")=8 + Set gtmtypes("gvstats_rec_t",48,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_other")=48 + Set gtmtypes("gvstats_rec_t",49,"name")="gvstats_rec_t.n_jnl_extends" + Set gtmtypes("gvstats_rec_t",49,"off")=384 + Set gtmtypes("gvstats_rec_t",49,"len")=8 + Set gtmtypes("gvstats_rec_t",49,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_extends")=49 + Set gtmtypes("gvstats_rec_t",50,"name")="gvstats_rec_t.n_db_extends" + Set gtmtypes("gvstats_rec_t",50,"off")=392 + Set gtmtypes("gvstats_rec_t",50,"len")=8 + Set gtmtypes("gvstats_rec_t",50,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_extends")=50 + Set gtmtypes("gvstats_rec_t",51,"name")="gvstats_rec_t.n_crit_success" + Set gtmtypes("gvstats_rec_t",51,"off")=400 + Set gtmtypes("gvstats_rec_t",51,"len")=8 + Set gtmtypes("gvstats_rec_t",51,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_success")=51 + Set gtmtypes("gvstats_rec_t",52,"name")="gvstats_rec_t.n_crits_in_epch" + Set gtmtypes("gvstats_rec_t",52,"off")=408 + Set gtmtypes("gvstats_rec_t",52,"len")=8 + Set gtmtypes("gvstats_rec_t",52,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crits_in_epch")=52 + Set gtmtypes("gvstats_rec_t",53,"name")="gvstats_rec_t.sq_crit_failed" + Set gtmtypes("gvstats_rec_t",53,"off")=416 + Set gtmtypes("gvstats_rec_t",53,"len")=8 + Set gtmtypes("gvstats_rec_t",53,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_failed")=53 + Set gtmtypes("gvstats_rec_t",54,"name")="gvstats_rec_t.n_crit_failed" + Set gtmtypes("gvstats_rec_t",54,"off")=424 + Set gtmtypes("gvstats_rec_t",54,"len")=8 + Set gtmtypes("gvstats_rec_t",54,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_failed")=54 + Set gtmtypes("gvstats_rec_t",55,"name")="gvstats_rec_t.sq_crit_que_slps" + Set gtmtypes("gvstats_rec_t",55,"off")=432 + Set gtmtypes("gvstats_rec_t",55,"len")=8 + Set gtmtypes("gvstats_rec_t",55,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_que_slps")=55 + Set gtmtypes("gvstats_rec_t",56,"name")="gvstats_rec_t.n_crit_que_slps" + Set gtmtypes("gvstats_rec_t",56,"off")=440 + Set gtmtypes("gvstats_rec_t",56,"len")=8 + Set gtmtypes("gvstats_rec_t",56,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_que_slps")=56 + Set gtmtypes("gvstats_rec_t",57,"name")="gvstats_rec_t.sq_crit_yields" + Set gtmtypes("gvstats_rec_t",57,"off")=448 + Set gtmtypes("gvstats_rec_t",57,"len")=8 + Set gtmtypes("gvstats_rec_t",57,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_yields")=57 + Set gtmtypes("gvstats_rec_t",58,"name")="gvstats_rec_t.n_crit_yields" + Set gtmtypes("gvstats_rec_t",58,"off")=456 + Set gtmtypes("gvstats_rec_t",58,"len")=8 + Set gtmtypes("gvstats_rec_t",58,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_yields")=58 + ; + Set gtmtypes("gvt_container")="struct" + Set gtmtypes("gvt_container",0)=4 + Set gtmtypes("gvt_container","len")=16 + Set gtmtypes("gvt_container",1,"name")="gvt_container.gvt_ptr" + Set gtmtypes("gvt_container",1,"off")=0 + Set gtmtypes("gvt_container",1,"len")=4 + Set gtmtypes("gvt_container",1,"type")="addr" + Set gtmtypfldindx("gvt_container","gvt_ptr")=1 + Set gtmtypes("gvt_container",2,"name")="gvt_container.gvt_ptr2" + Set gtmtypes("gvt_container",2,"off")=4 + Set gtmtypes("gvt_container",2,"len")=4 + Set gtmtypes("gvt_container",2,"type")="addr" + Set gtmtypfldindx("gvt_container","gvt_ptr2")=2 + Set gtmtypes("gvt_container",3,"name")="gvt_container.gd_reg" + Set gtmtypes("gvt_container",3,"off")=8 + Set gtmtypes("gvt_container",3,"len")=4 + Set gtmtypes("gvt_container",3,"type")="addr" + Set gtmtypfldindx("gvt_container","gd_reg")=3 + Set gtmtypes("gvt_container",4,"name")="gvt_container.next_gvtc" + Set gtmtypes("gvt_container",4,"off")=12 + Set gtmtypes("gvt_container",4,"len")=4 + Set gtmtypes("gvt_container",4,"type")="addr" + Set gtmtypfldindx("gvt_container","next_gvtc")=4 + ; + Set gtmtypes("gvt_trigger_t")="struct" + Set gtmtypes("gvt_trigger_t",0)=9 + Set gtmtypes("gvt_trigger_t","len")=36 + Set gtmtypes("gvt_trigger_t",1,"name")="gvt_trigger_t.gv_trigger_cycle" + Set gtmtypes("gvt_trigger_t",1,"off")=0 + Set gtmtypes("gvt_trigger_t",1,"len")=4 + Set gtmtypes("gvt_trigger_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvt_trigger_t","gv_trigger_cycle")=1 + Set gtmtypes("gvt_trigger_t",2,"name")="gvt_trigger_t.num_gv_triggers" + Set gtmtypes("gvt_trigger_t",2,"off")=4 + Set gtmtypes("gvt_trigger_t",2,"len")=4 + Set gtmtypes("gvt_trigger_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvt_trigger_t","num_gv_triggers")=2 + Set gtmtypes("gvt_trigger_t",3,"name")="gvt_trigger_t.set_triglist" + Set gtmtypes("gvt_trigger_t",3,"off")=8 + Set gtmtypes("gvt_trigger_t",3,"len")=4 + Set gtmtypes("gvt_trigger_t",3,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","set_triglist")=3 + Set gtmtypes("gvt_trigger_t",4,"name")="gvt_trigger_t.kill_triglist" + Set gtmtypes("gvt_trigger_t",4,"off")=12 + Set gtmtypes("gvt_trigger_t",4,"len")=4 + Set gtmtypes("gvt_trigger_t",4,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","kill_triglist")=4 + Set gtmtypes("gvt_trigger_t",5,"name")="gvt_trigger_t.ztrig_triglist" + Set gtmtypes("gvt_trigger_t",5,"off")=16 + Set gtmtypes("gvt_trigger_t",5,"len")=4 + Set gtmtypes("gvt_trigger_t",5,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","ztrig_triglist")=5 + Set gtmtypes("gvt_trigger_t",6,"name")="gvt_trigger_t.gv_target" + Set gtmtypes("gvt_trigger_t",6,"off")=20 + Set gtmtypes("gvt_trigger_t",6,"len")=4 + Set gtmtypes("gvt_trigger_t",6,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_target")=6 + Set gtmtypes("gvt_trigger_t",7,"name")="gvt_trigger_t.gv_trig_top" + Set gtmtypes("gvt_trigger_t",7,"off")=24 + Set gtmtypes("gvt_trigger_t",7,"len")=4 + Set gtmtypes("gvt_trigger_t",7,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_top")=7 + Set gtmtypes("gvt_trigger_t",8,"name")="gvt_trigger_t.gv_trig_list" + Set gtmtypes("gvt_trigger_t",8,"off")=28 + Set gtmtypes("gvt_trigger_t",8,"len")=4 + Set gtmtypes("gvt_trigger_t",8,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_list")=8 + Set gtmtypes("gvt_trigger_t",9,"name")="gvt_trigger_t.gv_trig_array" + Set gtmtypes("gvt_trigger_t",9,"off")=32 + Set gtmtypes("gvt_trigger_t",9,"len")=4 + Set gtmtypes("gvt_trigger_t",9,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_array")=9 + ; + Set gtmtypes("gvtr_invoke_parms_t")="struct" + Set gtmtypes("gvtr_invoke_parms_t",0)=3 + Set gtmtypes("gvtr_invoke_parms_t","len")=12 + Set gtmtypes("gvtr_invoke_parms_t",1,"name")="gvtr_invoke_parms_t.gvt_trigger" + Set gtmtypes("gvtr_invoke_parms_t",1,"off")=0 + Set gtmtypes("gvtr_invoke_parms_t",1,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",1,"type")="addr" + Set gtmtypfldindx("gvtr_invoke_parms_t","gvt_trigger")=1 + Set gtmtypes("gvtr_invoke_parms_t",2,"name")="gvtr_invoke_parms_t.gvtr_cmd" + Set gtmtypes("gvtr_invoke_parms_t",2,"off")=4 + Set gtmtypes("gvtr_invoke_parms_t",2,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",2,"type")="int" + Set gtmtypfldindx("gvtr_invoke_parms_t","gvtr_cmd")=2 + Set gtmtypes("gvtr_invoke_parms_t",3,"name")="gvtr_invoke_parms_t.num_triggers_invoked" + Set gtmtypes("gvtr_invoke_parms_t",3,"off")=8 + Set gtmtypes("gvtr_invoke_parms_t",3,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",3,"type")="int" + Set gtmtypfldindx("gvtr_invoke_parms_t","num_triggers_invoked")=3 + ; + Set gtmtypes("gvtr_subs_pattern_t")="struct" + Set gtmtypes("gvtr_subs_pattern_t",0)=10 + Set gtmtypes("gvtr_subs_pattern_t","len")=44 + Set gtmtypes("gvtr_subs_pattern_t",1,"name")="gvtr_subs_pattern_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_pattern_t",1,"off")=0 + Set gtmtypes("gvtr_subs_pattern_t",1,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_pattern_t",2,"name")="gvtr_subs_pattern_t.filler_8byte_align" + Set gtmtypes("gvtr_subs_pattern_t",2,"off")=4 + Set gtmtypes("gvtr_subs_pattern_t",2,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","filler_8byte_align")=2 + Set gtmtypes("gvtr_subs_pattern_t",3,"name")="gvtr_subs_pattern_t.next_range" + Set gtmtypes("gvtr_subs_pattern_t",3,"off")=8 + Set gtmtypes("gvtr_subs_pattern_t",3,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_pattern_t","next_range")=3 + Set gtmtypes("gvtr_subs_pattern_t",4,"name")="gvtr_subs_pattern_t.pat_mval" + Set gtmtypes("gvtr_subs_pattern_t",4,"off")=12 + Set gtmtypes("gvtr_subs_pattern_t",4,"len")=32 + Set gtmtypes("gvtr_subs_pattern_t",4,"type")="mval" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval")=4 + Set gtmtypes("gvtr_subs_pattern_t",5,"name")="gvtr_subs_pattern_t.pat_mval.mvtype" + Set gtmtypes("gvtr_subs_pattern_t",5,"off")=12 + Set gtmtypes("gvtr_subs_pattern_t",5,"len")=2 + Set gtmtypes("gvtr_subs_pattern_t",5,"type")="unsigned-short" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.mvtype")=5 + Set gtmtypes("gvtr_subs_pattern_t",6,"name")="gvtr_subs_pattern_t.pat_mval.fnpc_indx" + Set gtmtypes("gvtr_subs_pattern_t",6,"off")=15 + Set gtmtypes("gvtr_subs_pattern_t",6,"len")=1 + Set gtmtypes("gvtr_subs_pattern_t",6,"type")="unsigned-char" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.fnpc_indx")=6 + Set gtmtypes("gvtr_subs_pattern_t",7,"name")="gvtr_subs_pattern_t.pat_mval.utfcgr_indx" + Set gtmtypes("gvtr_subs_pattern_t",7,"off")=16 + Set gtmtypes("gvtr_subs_pattern_t",7,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.utfcgr_indx")=7 + Set gtmtypes("gvtr_subs_pattern_t",8,"name")="gvtr_subs_pattern_t.pat_mval.filler2" + Set gtmtypes("gvtr_subs_pattern_t",8,"off")=20 + Set gtmtypes("gvtr_subs_pattern_t",8,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.filler2")=8 + Set gtmtypes("gvtr_subs_pattern_t",9,"name")="gvtr_subs_pattern_t.pat_mval.m" + Set gtmtypes("gvtr_subs_pattern_t",9,"off")=24 + Set gtmtypes("gvtr_subs_pattern_t",9,"len")=8 + Set gtmtypes("gvtr_subs_pattern_t",9,"type")="int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.m")=9 + Set gtmtypes("gvtr_subs_pattern_t",9,"dim")=2 + Set gtmtypes("gvtr_subs_pattern_t",10,"name")="gvtr_subs_pattern_t.pat_mval.str" + Set gtmtypes("gvtr_subs_pattern_t",10,"off")=32 + Set gtmtypes("gvtr_subs_pattern_t",10,"len")=12 + Set gtmtypes("gvtr_subs_pattern_t",10,"type")="mstr" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.str")=10 + ; + Set gtmtypes("gvtr_subs_point_t")="struct" + Set gtmtypes("gvtr_subs_point_t",0)=4 + Set gtmtypes("gvtr_subs_point_t","len")=16 + Set gtmtypes("gvtr_subs_point_t",1,"name")="gvtr_subs_point_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_point_t",1,"off")=0 + Set gtmtypes("gvtr_subs_point_t",1,"len")=4 + Set gtmtypes("gvtr_subs_point_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_point_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_point_t",2,"name")="gvtr_subs_point_t.len" + Set gtmtypes("gvtr_subs_point_t",2,"off")=4 + Set gtmtypes("gvtr_subs_point_t",2,"len")=4 + Set gtmtypes("gvtr_subs_point_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_point_t","len")=2 + Set gtmtypes("gvtr_subs_point_t",3,"name")="gvtr_subs_point_t.next_range" + Set gtmtypes("gvtr_subs_point_t",3,"off")=8 + Set gtmtypes("gvtr_subs_point_t",3,"len")=4 + Set gtmtypes("gvtr_subs_point_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_point_t","next_range")=3 + Set gtmtypes("gvtr_subs_point_t",4,"name")="gvtr_subs_point_t.subs_key" + Set gtmtypes("gvtr_subs_point_t",4,"off")=12 + Set gtmtypes("gvtr_subs_point_t",4,"len")=4 + Set gtmtypes("gvtr_subs_point_t",4,"type")="addr" + Set gtmtypfldindx("gvtr_subs_point_t","subs_key")=4 + ; + Set gtmtypes("gvtr_subs_range_t")="struct" + Set gtmtypes("gvtr_subs_range_t",0)=6 + Set gtmtypes("gvtr_subs_range_t","len")=24 + Set gtmtypes("gvtr_subs_range_t",1,"name")="gvtr_subs_range_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_range_t",1,"off")=0 + Set gtmtypes("gvtr_subs_range_t",1,"len")=4 + Set gtmtypes("gvtr_subs_range_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_range_t",2,"name")="gvtr_subs_range_t.len1" + Set gtmtypes("gvtr_subs_range_t",2,"off")=4 + Set gtmtypes("gvtr_subs_range_t",2,"len")=4 + Set gtmtypes("gvtr_subs_range_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","len1")=2 + Set gtmtypes("gvtr_subs_range_t",3,"name")="gvtr_subs_range_t.next_range" + Set gtmtypes("gvtr_subs_range_t",3,"off")=8 + Set gtmtypes("gvtr_subs_range_t",3,"len")=4 + Set gtmtypes("gvtr_subs_range_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","next_range")=3 + Set gtmtypes("gvtr_subs_range_t",4,"name")="gvtr_subs_range_t.subs_key1" + Set gtmtypes("gvtr_subs_range_t",4,"off")=12 + Set gtmtypes("gvtr_subs_range_t",4,"len")=4 + Set gtmtypes("gvtr_subs_range_t",4,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","subs_key1")=4 + Set gtmtypes("gvtr_subs_range_t",5,"name")="gvtr_subs_range_t.len2" + Set gtmtypes("gvtr_subs_range_t",5,"off")=16 + Set gtmtypes("gvtr_subs_range_t",5,"len")=4 + Set gtmtypes("gvtr_subs_range_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","len2")=5 + Set gtmtypes("gvtr_subs_range_t",6,"name")="gvtr_subs_range_t.subs_key2" + Set gtmtypes("gvtr_subs_range_t",6,"off")=20 + Set gtmtypes("gvtr_subs_range_t",6,"len")=4 + Set gtmtypes("gvtr_subs_range_t",6,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","subs_key2")=6 + ; + Set gtmtypes("gvtr_subs_star_t")="struct" + Set gtmtypes("gvtr_subs_star_t",0)=3 + Set gtmtypes("gvtr_subs_star_t","len")=12 + Set gtmtypes("gvtr_subs_star_t",1,"name")="gvtr_subs_star_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_star_t",1,"off")=0 + Set gtmtypes("gvtr_subs_star_t",1,"len")=4 + Set gtmtypes("gvtr_subs_star_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_star_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_star_t",2,"name")="gvtr_subs_star_t.filler_8byte_align" + Set gtmtypes("gvtr_subs_star_t",2,"off")=4 + Set gtmtypes("gvtr_subs_star_t",2,"len")=4 + Set gtmtypes("gvtr_subs_star_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_star_t","filler_8byte_align")=2 + Set gtmtypes("gvtr_subs_star_t",3,"name")="gvtr_subs_star_t.next_range" + Set gtmtypes("gvtr_subs_star_t",3,"off")=8 + Set gtmtypes("gvtr_subs_star_t",3,"len")=4 + Set gtmtypes("gvtr_subs_star_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_star_t","next_range")=3 + ; + Set gtmtypes("gvtr_subs_t")="union" + Set gtmtypes("gvtr_subs_t",0)=28 + Set gtmtypes("gvtr_subs_t","len")=44 + Set gtmtypes("gvtr_subs_t",1,"name")="gvtr_subs_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",1,"off")=0 + Set gtmtypes("gvtr_subs_t",1,"len")=4 + Set gtmtypes("gvtr_subs_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_t",2,"name")="gvtr_subs_t.gvtr_subs_star" + Set gtmtypes("gvtr_subs_t",2,"off")=0 + Set gtmtypes("gvtr_subs_t",2,"len")=12 + Set gtmtypes("gvtr_subs_t",2,"type")="gvtr_subs_star_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star")=2 + Set gtmtypes("gvtr_subs_t",3,"name")="gvtr_subs_t.gvtr_subs_star.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",3,"off")=0 + Set gtmtypes("gvtr_subs_t",3,"len")=4 + Set gtmtypes("gvtr_subs_t",3,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.gvtr_subs_type")=3 + Set gtmtypes("gvtr_subs_t",4,"name")="gvtr_subs_t.gvtr_subs_star.filler_8byte_align" + Set gtmtypes("gvtr_subs_t",4,"off")=4 + Set gtmtypes("gvtr_subs_t",4,"len")=4 + Set gtmtypes("gvtr_subs_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.filler_8byte_align")=4 + Set gtmtypes("gvtr_subs_t",5,"name")="gvtr_subs_t.gvtr_subs_star.next_range" + Set gtmtypes("gvtr_subs_t",5,"off")=8 + Set gtmtypes("gvtr_subs_t",5,"len")=4 + Set gtmtypes("gvtr_subs_t",5,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.next_range")=5 + Set gtmtypes("gvtr_subs_t",6,"name")="gvtr_subs_t.gvtr_subs_point" + Set gtmtypes("gvtr_subs_t",6,"off")=0 + Set gtmtypes("gvtr_subs_t",6,"len")=16 + Set gtmtypes("gvtr_subs_t",6,"type")="gvtr_subs_point_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point")=6 + Set gtmtypes("gvtr_subs_t",7,"name")="gvtr_subs_t.gvtr_subs_point.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",7,"off")=0 + Set gtmtypes("gvtr_subs_t",7,"len")=4 + Set gtmtypes("gvtr_subs_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.gvtr_subs_type")=7 + Set gtmtypes("gvtr_subs_t",8,"name")="gvtr_subs_t.gvtr_subs_point.len" + Set gtmtypes("gvtr_subs_t",8,"off")=4 + Set gtmtypes("gvtr_subs_t",8,"len")=4 + Set gtmtypes("gvtr_subs_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.len")=8 + Set gtmtypes("gvtr_subs_t",9,"name")="gvtr_subs_t.gvtr_subs_point.next_range" + Set gtmtypes("gvtr_subs_t",9,"off")=8 + Set gtmtypes("gvtr_subs_t",9,"len")=4 + Set gtmtypes("gvtr_subs_t",9,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.next_range")=9 + Set gtmtypes("gvtr_subs_t",10,"name")="gvtr_subs_t.gvtr_subs_point.subs_key" + Set gtmtypes("gvtr_subs_t",10,"off")=12 + Set gtmtypes("gvtr_subs_t",10,"len")=4 + Set gtmtypes("gvtr_subs_t",10,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.subs_key")=10 + Set gtmtypes("gvtr_subs_t",11,"name")="gvtr_subs_t.gvtr_subs_range" + Set gtmtypes("gvtr_subs_t",11,"off")=0 + Set gtmtypes("gvtr_subs_t",11,"len")=24 + Set gtmtypes("gvtr_subs_t",11,"type")="gvtr_subs_range_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range")=11 + Set gtmtypes("gvtr_subs_t",12,"name")="gvtr_subs_t.gvtr_subs_range.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",12,"off")=0 + Set gtmtypes("gvtr_subs_t",12,"len")=4 + Set gtmtypes("gvtr_subs_t",12,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.gvtr_subs_type")=12 + Set gtmtypes("gvtr_subs_t",13,"name")="gvtr_subs_t.gvtr_subs_range.len1" + Set gtmtypes("gvtr_subs_t",13,"off")=4 + Set gtmtypes("gvtr_subs_t",13,"len")=4 + Set gtmtypes("gvtr_subs_t",13,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.len1")=13 + Set gtmtypes("gvtr_subs_t",14,"name")="gvtr_subs_t.gvtr_subs_range.next_range" + Set gtmtypes("gvtr_subs_t",14,"off")=8 + Set gtmtypes("gvtr_subs_t",14,"len")=4 + Set gtmtypes("gvtr_subs_t",14,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.next_range")=14 + Set gtmtypes("gvtr_subs_t",15,"name")="gvtr_subs_t.gvtr_subs_range.subs_key1" + Set gtmtypes("gvtr_subs_t",15,"off")=12 + Set gtmtypes("gvtr_subs_t",15,"len")=4 + Set gtmtypes("gvtr_subs_t",15,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.subs_key1")=15 + Set gtmtypes("gvtr_subs_t",16,"name")="gvtr_subs_t.gvtr_subs_range.len2" + Set gtmtypes("gvtr_subs_t",16,"off")=16 + Set gtmtypes("gvtr_subs_t",16,"len")=4 + Set gtmtypes("gvtr_subs_t",16,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.len2")=16 + Set gtmtypes("gvtr_subs_t",17,"name")="gvtr_subs_t.gvtr_subs_range.subs_key2" + Set gtmtypes("gvtr_subs_t",17,"off")=20 + Set gtmtypes("gvtr_subs_t",17,"len")=4 + Set gtmtypes("gvtr_subs_t",17,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.subs_key2")=17 + Set gtmtypes("gvtr_subs_t",18,"name")="gvtr_subs_t.gvtr_subs_pattern" + Set gtmtypes("gvtr_subs_t",18,"off")=0 + Set gtmtypes("gvtr_subs_t",18,"len")=44 + Set gtmtypes("gvtr_subs_t",18,"type")="gvtr_subs_pattern_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern")=18 + Set gtmtypes("gvtr_subs_t",19,"name")="gvtr_subs_t.gvtr_subs_pattern.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",19,"off")=0 + Set gtmtypes("gvtr_subs_t",19,"len")=4 + Set gtmtypes("gvtr_subs_t",19,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.gvtr_subs_type")=19 + Set gtmtypes("gvtr_subs_t",20,"name")="gvtr_subs_t.gvtr_subs_pattern.filler_8byte_align" + Set gtmtypes("gvtr_subs_t",20,"off")=4 + Set gtmtypes("gvtr_subs_t",20,"len")=4 + Set gtmtypes("gvtr_subs_t",20,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.filler_8byte_align")=20 + Set gtmtypes("gvtr_subs_t",21,"name")="gvtr_subs_t.gvtr_subs_pattern.next_range" + Set gtmtypes("gvtr_subs_t",21,"off")=8 + Set gtmtypes("gvtr_subs_t",21,"len")=4 + Set gtmtypes("gvtr_subs_t",21,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.next_range")=21 + Set gtmtypes("gvtr_subs_t",22,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval" + Set gtmtypes("gvtr_subs_t",22,"off")=12 + Set gtmtypes("gvtr_subs_t",22,"len")=32 + Set gtmtypes("gvtr_subs_t",22,"type")="mval" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval")=22 + Set gtmtypes("gvtr_subs_t",23,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.mvtype" + Set gtmtypes("gvtr_subs_t",23,"off")=12 + Set gtmtypes("gvtr_subs_t",23,"len")=2 + Set gtmtypes("gvtr_subs_t",23,"type")="unsigned-short" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.mvtype")=23 + Set gtmtypes("gvtr_subs_t",24,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.fnpc_indx" + Set gtmtypes("gvtr_subs_t",24,"off")=15 + Set gtmtypes("gvtr_subs_t",24,"len")=1 + Set gtmtypes("gvtr_subs_t",24,"type")="unsigned-char" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.fnpc_indx")=24 + Set gtmtypes("gvtr_subs_t",25,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.utfcgr_indx" + Set gtmtypes("gvtr_subs_t",25,"off")=16 + Set gtmtypes("gvtr_subs_t",25,"len")=4 + Set gtmtypes("gvtr_subs_t",25,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.utfcgr_indx")=25 + Set gtmtypes("gvtr_subs_t",26,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.filler2" + Set gtmtypes("gvtr_subs_t",26,"off")=20 + Set gtmtypes("gvtr_subs_t",26,"len")=4 + Set gtmtypes("gvtr_subs_t",26,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.filler2")=26 + Set gtmtypes("gvtr_subs_t",27,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.m" + Set gtmtypes("gvtr_subs_t",27,"off")=24 + Set gtmtypes("gvtr_subs_t",27,"len")=8 + Set gtmtypes("gvtr_subs_t",27,"type")="int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.m")=27 + Set gtmtypes("gvtr_subs_t",27,"dim")=2 + Set gtmtypes("gvtr_subs_t",28,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.str" + Set gtmtypes("gvtr_subs_t",28,"off")=32 + Set gtmtypes("gvtr_subs_t",28,"len")=12 + Set gtmtypes("gvtr_subs_t",28,"type")="mstr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.str")=28 + ; + Set gtmtypes("gvzwrite_datablk")="struct" + Set gtmtypes("gvzwrite_datablk",0)=12 + Set gtmtypes("gvzwrite_datablk","len")=44 + Set gtmtypes("gvzwrite_datablk",1,"name")="gvzwrite_datablk.type" + Set gtmtypes("gvzwrite_datablk",1,"off")=0 + Set gtmtypes("gvzwrite_datablk",1,"len")=4 + Set gtmtypes("gvzwrite_datablk",1,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","type")=1 + Set gtmtypes("gvzwrite_datablk",2,"name")="gvzwrite_datablk.subsc_count" + Set gtmtypes("gvzwrite_datablk",2,"off")=4 + Set gtmtypes("gvzwrite_datablk",2,"len")=2 + Set gtmtypes("gvzwrite_datablk",2,"type")="unsigned-short" + Set gtmtypfldindx("gvzwrite_datablk","subsc_count")=2 + Set gtmtypes("gvzwrite_datablk",3,"name")="gvzwrite_datablk.curr_subsc" + Set gtmtypes("gvzwrite_datablk",3,"off")=6 + Set gtmtypes("gvzwrite_datablk",3,"len")=2 + Set gtmtypes("gvzwrite_datablk",3,"type")="unsigned-short" + Set gtmtypfldindx("gvzwrite_datablk","curr_subsc")=3 + Set gtmtypes("gvzwrite_datablk",4,"name")="gvzwrite_datablk.fixed" + Set gtmtypes("gvzwrite_datablk",4,"off")=8 + Set gtmtypes("gvzwrite_datablk",4,"len")=4 + Set gtmtypes("gvzwrite_datablk",4,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","fixed")=4 + Set gtmtypes("gvzwrite_datablk",5,"name")="gvzwrite_datablk.mask" + Set gtmtypes("gvzwrite_datablk",5,"off")=12 + Set gtmtypes("gvzwrite_datablk",5,"len")=4 + Set gtmtypes("gvzwrite_datablk",5,"type")="unsigned-int" + Set gtmtypfldindx("gvzwrite_datablk","mask")=5 + Set gtmtypes("gvzwrite_datablk",6,"name")="gvzwrite_datablk.pat" + Set gtmtypes("gvzwrite_datablk",6,"off")=16 + Set gtmtypes("gvzwrite_datablk",6,"len")=4 + Set gtmtypes("gvzwrite_datablk",6,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","pat")=6 + Set gtmtypes("gvzwrite_datablk",7,"name")="gvzwrite_datablk.old_key" + Set gtmtypes("gvzwrite_datablk",7,"off")=20 + Set gtmtypes("gvzwrite_datablk",7,"len")=4 + Set gtmtypes("gvzwrite_datablk",7,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","old_key")=7 + Set gtmtypes("gvzwrite_datablk",8,"name")="gvzwrite_datablk.old_targ" + Set gtmtypes("gvzwrite_datablk",8,"off")=24 + Set gtmtypes("gvzwrite_datablk",8,"len")=4 + Set gtmtypes("gvzwrite_datablk",8,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","old_targ")=8 + Set gtmtypes("gvzwrite_datablk",9,"name")="gvzwrite_datablk.sub" + Set gtmtypes("gvzwrite_datablk",9,"off")=28 + Set gtmtypes("gvzwrite_datablk",9,"len")=4 + Set gtmtypes("gvzwrite_datablk",9,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","sub")=9 + Set gtmtypes("gvzwrite_datablk",10,"name")="gvzwrite_datablk.gd_reg" + Set gtmtypes("gvzwrite_datablk",10,"off")=32 + Set gtmtypes("gvzwrite_datablk",10,"len")=4 + Set gtmtypes("gvzwrite_datablk",10,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","gd_reg")=10 + Set gtmtypes("gvzwrite_datablk",11,"name")="gvzwrite_datablk.gv_last_subsc_null" + Set gtmtypes("gvzwrite_datablk",11,"off")=36 + Set gtmtypes("gvzwrite_datablk",11,"len")=4 + Set gtmtypes("gvzwrite_datablk",11,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","gv_last_subsc_null")=11 + Set gtmtypes("gvzwrite_datablk",12,"name")="gvzwrite_datablk.gv_some_subsc_null" + Set gtmtypes("gvzwrite_datablk",12,"off")=40 + Set gtmtypes("gvzwrite_datablk",12,"len")=4 + Set gtmtypes("gvzwrite_datablk",12,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","gv_some_subsc_null")=12 + ; + Set gtmtypes("hash128_state_t")="struct" + Set gtmtypes("hash128_state_t",0)=7 + Set gtmtypes("hash128_state_t","len")=36 + Set gtmtypes("hash128_state_t",1,"name")="hash128_state_t.h" + Set gtmtypes("hash128_state_t",1,"off")=0 + Set gtmtypes("hash128_state_t",1,"len")=16 + Set gtmtypes("hash128_state_t",1,"type")="gtm_uint16" + Set gtmtypfldindx("hash128_state_t","h")=1 + Set gtmtypes("hash128_state_t",2,"name")="hash128_state_t.h.one" + Set gtmtypes("hash128_state_t",2,"off")=0 + Set gtmtypes("hash128_state_t",2,"len")=8 + Set gtmtypes("hash128_state_t",2,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","h.one")=2 + Set gtmtypes("hash128_state_t",3,"name")="hash128_state_t.h.two" + Set gtmtypes("hash128_state_t",3,"off")=8 + Set gtmtypes("hash128_state_t",3,"len")=8 + Set gtmtypes("hash128_state_t",3,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","h.two")=3 + Set gtmtypes("hash128_state_t",4,"name")="hash128_state_t.c" + Set gtmtypes("hash128_state_t",4,"off")=16 + Set gtmtypes("hash128_state_t",4,"len")=16 + Set gtmtypes("hash128_state_t",4,"type")="gtm_uint16" + Set gtmtypfldindx("hash128_state_t","c")=4 + Set gtmtypes("hash128_state_t",5,"name")="hash128_state_t.c.one" + Set gtmtypes("hash128_state_t",5,"off")=16 + Set gtmtypes("hash128_state_t",5,"len")=8 + Set gtmtypes("hash128_state_t",5,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","c.one")=5 + Set gtmtypes("hash128_state_t",6,"name")="hash128_state_t.c.two" + Set gtmtypes("hash128_state_t",6,"off")=24 + Set gtmtypes("hash128_state_t",6,"len")=8 + Set gtmtypes("hash128_state_t",6,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","c.two")=6 + Set gtmtypes("hash128_state_t",7,"name")="hash128_state_t.carry_bytes" + Set gtmtypes("hash128_state_t",7,"off")=32 + Set gtmtypes("hash128_state_t",7,"len")=4 + Set gtmtypes("hash128_state_t",7,"type")="int" + Set gtmtypfldindx("hash128_state_t","carry_bytes")=7 + ; + Set gtmtypes("hash_table_addr")="struct" + Set gtmtypes("hash_table_addr",0)=14 + Set gtmtypes("hash_table_addr","len")=56 + Set gtmtypes("hash_table_addr",1,"name")="hash_table_addr.base" + Set gtmtypes("hash_table_addr",1,"off")=0 + Set gtmtypes("hash_table_addr",1,"len")=4 + Set gtmtypes("hash_table_addr",1,"type")="addr" + Set gtmtypfldindx("hash_table_addr","base")=1 + Set gtmtypes("hash_table_addr",2,"name")="hash_table_addr.top" + Set gtmtypes("hash_table_addr",2,"off")=4 + Set gtmtypes("hash_table_addr",2,"len")=4 + Set gtmtypes("hash_table_addr",2,"type")="addr" + Set gtmtypfldindx("hash_table_addr","top")=2 + Set gtmtypes("hash_table_addr",3,"name")="hash_table_addr.size" + Set gtmtypes("hash_table_addr",3,"off")=8 + Set gtmtypes("hash_table_addr",3,"len")=4 + Set gtmtypes("hash_table_addr",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","size")=3 + Set gtmtypes("hash_table_addr",4,"name")="hash_table_addr.initial_size" + Set gtmtypes("hash_table_addr",4,"off")=12 + Set gtmtypes("hash_table_addr",4,"len")=4 + Set gtmtypes("hash_table_addr",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","initial_size")=4 + Set gtmtypes("hash_table_addr",5,"name")="hash_table_addr.spare_base" + Set gtmtypes("hash_table_addr",5,"off")=16 + Set gtmtypes("hash_table_addr",5,"len")=4 + Set gtmtypes("hash_table_addr",5,"type")="addr" + Set gtmtypfldindx("hash_table_addr","spare_base")=5 + Set gtmtypes("hash_table_addr",6,"name")="hash_table_addr.spare_base_size" + Set gtmtypes("hash_table_addr",6,"off")=20 + Set gtmtypes("hash_table_addr",6,"len")=4 + Set gtmtypes("hash_table_addr",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","spare_base_size")=6 + Set gtmtypes("hash_table_addr",7,"name")="hash_table_addr.dont_compact" + Set gtmtypes("hash_table_addr",7,"off")=24 + Set gtmtypes("hash_table_addr",7,"len")=4 + Set gtmtypes("hash_table_addr",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","dont_compact")=7 + Set gtmtypes("hash_table_addr",8,"name")="hash_table_addr.dont_keep_spare_table" + Set gtmtypes("hash_table_addr",8,"off")=28 + Set gtmtypes("hash_table_addr",8,"len")=4 + Set gtmtypes("hash_table_addr",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_addr",9,"name")="hash_table_addr.defer_base_release" + Set gtmtypes("hash_table_addr",9,"off")=32 + Set gtmtypes("hash_table_addr",9,"len")=4 + Set gtmtypes("hash_table_addr",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","defer_base_release")=9 + Set gtmtypes("hash_table_addr",10,"name")="hash_table_addr.count" + Set gtmtypes("hash_table_addr",10,"off")=36 + Set gtmtypes("hash_table_addr",10,"len")=4 + Set gtmtypes("hash_table_addr",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","count")=10 + Set gtmtypes("hash_table_addr",11,"name")="hash_table_addr.del_count" + Set gtmtypes("hash_table_addr",11,"off")=40 + Set gtmtypes("hash_table_addr",11,"len")=4 + Set gtmtypes("hash_table_addr",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","del_count")=11 + Set gtmtypes("hash_table_addr",12,"name")="hash_table_addr.exp_trigger_size" + Set gtmtypes("hash_table_addr",12,"off")=44 + Set gtmtypes("hash_table_addr",12,"len")=4 + Set gtmtypes("hash_table_addr",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","exp_trigger_size")=12 + Set gtmtypes("hash_table_addr",13,"name")="hash_table_addr.cmp_trigger_size" + Set gtmtypes("hash_table_addr",13,"off")=48 + Set gtmtypes("hash_table_addr",13,"len")=4 + Set gtmtypes("hash_table_addr",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","cmp_trigger_size")=13 + Set gtmtypes("hash_table_addr",14,"name")="hash_table_addr.entry_passed_thru" + Set gtmtypes("hash_table_addr",14,"off")=52 + Set gtmtypes("hash_table_addr",14,"len")=4 + Set gtmtypes("hash_table_addr",14,"type")="addr" + Set gtmtypfldindx("hash_table_addr","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_int4")="struct" + Set gtmtypes("hash_table_int4",0)=14 + Set gtmtypes("hash_table_int4","len")=56 + Set gtmtypes("hash_table_int4",1,"name")="hash_table_int4.base" + Set gtmtypes("hash_table_int4",1,"off")=0 + Set gtmtypes("hash_table_int4",1,"len")=4 + Set gtmtypes("hash_table_int4",1,"type")="addr" + Set gtmtypfldindx("hash_table_int4","base")=1 + Set gtmtypes("hash_table_int4",2,"name")="hash_table_int4.top" + Set gtmtypes("hash_table_int4",2,"off")=4 + Set gtmtypes("hash_table_int4",2,"len")=4 + Set gtmtypes("hash_table_int4",2,"type")="addr" + Set gtmtypfldindx("hash_table_int4","top")=2 + Set gtmtypes("hash_table_int4",3,"name")="hash_table_int4.size" + Set gtmtypes("hash_table_int4",3,"off")=8 + Set gtmtypes("hash_table_int4",3,"len")=4 + Set gtmtypes("hash_table_int4",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","size")=3 + Set gtmtypes("hash_table_int4",4,"name")="hash_table_int4.initial_size" + Set gtmtypes("hash_table_int4",4,"off")=12 + Set gtmtypes("hash_table_int4",4,"len")=4 + Set gtmtypes("hash_table_int4",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","initial_size")=4 + Set gtmtypes("hash_table_int4",5,"name")="hash_table_int4.spare_base" + Set gtmtypes("hash_table_int4",5,"off")=16 + Set gtmtypes("hash_table_int4",5,"len")=4 + Set gtmtypes("hash_table_int4",5,"type")="addr" + Set gtmtypfldindx("hash_table_int4","spare_base")=5 + Set gtmtypes("hash_table_int4",6,"name")="hash_table_int4.spare_base_size" + Set gtmtypes("hash_table_int4",6,"off")=20 + Set gtmtypes("hash_table_int4",6,"len")=4 + Set gtmtypes("hash_table_int4",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","spare_base_size")=6 + Set gtmtypes("hash_table_int4",7,"name")="hash_table_int4.dont_compact" + Set gtmtypes("hash_table_int4",7,"off")=24 + Set gtmtypes("hash_table_int4",7,"len")=4 + Set gtmtypes("hash_table_int4",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","dont_compact")=7 + Set gtmtypes("hash_table_int4",8,"name")="hash_table_int4.dont_keep_spare_table" + Set gtmtypes("hash_table_int4",8,"off")=28 + Set gtmtypes("hash_table_int4",8,"len")=4 + Set gtmtypes("hash_table_int4",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_int4",9,"name")="hash_table_int4.defer_base_release" + Set gtmtypes("hash_table_int4",9,"off")=32 + Set gtmtypes("hash_table_int4",9,"len")=4 + Set gtmtypes("hash_table_int4",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","defer_base_release")=9 + Set gtmtypes("hash_table_int4",10,"name")="hash_table_int4.count" + Set gtmtypes("hash_table_int4",10,"off")=36 + Set gtmtypes("hash_table_int4",10,"len")=4 + Set gtmtypes("hash_table_int4",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","count")=10 + Set gtmtypes("hash_table_int4",11,"name")="hash_table_int4.del_count" + Set gtmtypes("hash_table_int4",11,"off")=40 + Set gtmtypes("hash_table_int4",11,"len")=4 + Set gtmtypes("hash_table_int4",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","del_count")=11 + Set gtmtypes("hash_table_int4",12,"name")="hash_table_int4.exp_trigger_size" + Set gtmtypes("hash_table_int4",12,"off")=44 + Set gtmtypes("hash_table_int4",12,"len")=4 + Set gtmtypes("hash_table_int4",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","exp_trigger_size")=12 + Set gtmtypes("hash_table_int4",13,"name")="hash_table_int4.cmp_trigger_size" + Set gtmtypes("hash_table_int4",13,"off")=48 + Set gtmtypes("hash_table_int4",13,"len")=4 + Set gtmtypes("hash_table_int4",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","cmp_trigger_size")=13 + Set gtmtypes("hash_table_int4",14,"name")="hash_table_int4.entry_passed_thru" + Set gtmtypes("hash_table_int4",14,"off")=52 + Set gtmtypes("hash_table_int4",14,"len")=4 + Set gtmtypes("hash_table_int4",14,"type")="addr" + Set gtmtypfldindx("hash_table_int4","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_int8")="struct" + Set gtmtypes("hash_table_int8",0)=14 + Set gtmtypes("hash_table_int8","len")=56 + Set gtmtypes("hash_table_int8",1,"name")="hash_table_int8.base" + Set gtmtypes("hash_table_int8",1,"off")=0 + Set gtmtypes("hash_table_int8",1,"len")=4 + Set gtmtypes("hash_table_int8",1,"type")="addr" + Set gtmtypfldindx("hash_table_int8","base")=1 + Set gtmtypes("hash_table_int8",2,"name")="hash_table_int8.top" + Set gtmtypes("hash_table_int8",2,"off")=4 + Set gtmtypes("hash_table_int8",2,"len")=4 + Set gtmtypes("hash_table_int8",2,"type")="addr" + Set gtmtypfldindx("hash_table_int8","top")=2 + Set gtmtypes("hash_table_int8",3,"name")="hash_table_int8.size" + Set gtmtypes("hash_table_int8",3,"off")=8 + Set gtmtypes("hash_table_int8",3,"len")=4 + Set gtmtypes("hash_table_int8",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","size")=3 + Set gtmtypes("hash_table_int8",4,"name")="hash_table_int8.initial_size" + Set gtmtypes("hash_table_int8",4,"off")=12 + Set gtmtypes("hash_table_int8",4,"len")=4 + Set gtmtypes("hash_table_int8",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","initial_size")=4 + Set gtmtypes("hash_table_int8",5,"name")="hash_table_int8.spare_base" + Set gtmtypes("hash_table_int8",5,"off")=16 + Set gtmtypes("hash_table_int8",5,"len")=4 + Set gtmtypes("hash_table_int8",5,"type")="addr" + Set gtmtypfldindx("hash_table_int8","spare_base")=5 + Set gtmtypes("hash_table_int8",6,"name")="hash_table_int8.spare_base_size" + Set gtmtypes("hash_table_int8",6,"off")=20 + Set gtmtypes("hash_table_int8",6,"len")=4 + Set gtmtypes("hash_table_int8",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","spare_base_size")=6 + Set gtmtypes("hash_table_int8",7,"name")="hash_table_int8.dont_compact" + Set gtmtypes("hash_table_int8",7,"off")=24 + Set gtmtypes("hash_table_int8",7,"len")=4 + Set gtmtypes("hash_table_int8",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","dont_compact")=7 + Set gtmtypes("hash_table_int8",8,"name")="hash_table_int8.dont_keep_spare_table" + Set gtmtypes("hash_table_int8",8,"off")=28 + Set gtmtypes("hash_table_int8",8,"len")=4 + Set gtmtypes("hash_table_int8",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_int8",9,"name")="hash_table_int8.defer_base_release" + Set gtmtypes("hash_table_int8",9,"off")=32 + Set gtmtypes("hash_table_int8",9,"len")=4 + Set gtmtypes("hash_table_int8",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","defer_base_release")=9 + Set gtmtypes("hash_table_int8",10,"name")="hash_table_int8.count" + Set gtmtypes("hash_table_int8",10,"off")=36 + Set gtmtypes("hash_table_int8",10,"len")=4 + Set gtmtypes("hash_table_int8",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","count")=10 + Set gtmtypes("hash_table_int8",11,"name")="hash_table_int8.del_count" + Set gtmtypes("hash_table_int8",11,"off")=40 + Set gtmtypes("hash_table_int8",11,"len")=4 + Set gtmtypes("hash_table_int8",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","del_count")=11 + Set gtmtypes("hash_table_int8",12,"name")="hash_table_int8.exp_trigger_size" + Set gtmtypes("hash_table_int8",12,"off")=44 + Set gtmtypes("hash_table_int8",12,"len")=4 + Set gtmtypes("hash_table_int8",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","exp_trigger_size")=12 + Set gtmtypes("hash_table_int8",13,"name")="hash_table_int8.cmp_trigger_size" + Set gtmtypes("hash_table_int8",13,"off")=48 + Set gtmtypes("hash_table_int8",13,"len")=4 + Set gtmtypes("hash_table_int8",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","cmp_trigger_size")=13 + Set gtmtypes("hash_table_int8",14,"name")="hash_table_int8.entry_passed_thru" + Set gtmtypes("hash_table_int8",14,"off")=52 + Set gtmtypes("hash_table_int8",14,"len")=4 + Set gtmtypes("hash_table_int8",14,"type")="addr" + Set gtmtypfldindx("hash_table_int8","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_mname")="struct" + Set gtmtypes("hash_table_mname",0)=14 + Set gtmtypes("hash_table_mname","len")=56 + Set gtmtypes("hash_table_mname",1,"name")="hash_table_mname.base" + Set gtmtypes("hash_table_mname",1,"off")=0 + Set gtmtypes("hash_table_mname",1,"len")=4 + Set gtmtypes("hash_table_mname",1,"type")="addr" + Set gtmtypfldindx("hash_table_mname","base")=1 + Set gtmtypes("hash_table_mname",2,"name")="hash_table_mname.top" + Set gtmtypes("hash_table_mname",2,"off")=4 + Set gtmtypes("hash_table_mname",2,"len")=4 + Set gtmtypes("hash_table_mname",2,"type")="addr" + Set gtmtypfldindx("hash_table_mname","top")=2 + Set gtmtypes("hash_table_mname",3,"name")="hash_table_mname.size" + Set gtmtypes("hash_table_mname",3,"off")=8 + Set gtmtypes("hash_table_mname",3,"len")=4 + Set gtmtypes("hash_table_mname",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","size")=3 + Set gtmtypes("hash_table_mname",4,"name")="hash_table_mname.initial_size" + Set gtmtypes("hash_table_mname",4,"off")=12 + Set gtmtypes("hash_table_mname",4,"len")=4 + Set gtmtypes("hash_table_mname",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","initial_size")=4 + Set gtmtypes("hash_table_mname",5,"name")="hash_table_mname.spare_base" + Set gtmtypes("hash_table_mname",5,"off")=16 + Set gtmtypes("hash_table_mname",5,"len")=4 + Set gtmtypes("hash_table_mname",5,"type")="addr" + Set gtmtypfldindx("hash_table_mname","spare_base")=5 + Set gtmtypes("hash_table_mname",6,"name")="hash_table_mname.spare_base_size" + Set gtmtypes("hash_table_mname",6,"off")=20 + Set gtmtypes("hash_table_mname",6,"len")=4 + Set gtmtypes("hash_table_mname",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","spare_base_size")=6 + Set gtmtypes("hash_table_mname",7,"name")="hash_table_mname.dont_compact" + Set gtmtypes("hash_table_mname",7,"off")=24 + Set gtmtypes("hash_table_mname",7,"len")=4 + Set gtmtypes("hash_table_mname",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","dont_compact")=7 + Set gtmtypes("hash_table_mname",8,"name")="hash_table_mname.dont_keep_spare_table" + Set gtmtypes("hash_table_mname",8,"off")=28 + Set gtmtypes("hash_table_mname",8,"len")=4 + Set gtmtypes("hash_table_mname",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_mname",9,"name")="hash_table_mname.defer_base_release" + Set gtmtypes("hash_table_mname",9,"off")=32 + Set gtmtypes("hash_table_mname",9,"len")=4 + Set gtmtypes("hash_table_mname",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","defer_base_release")=9 + Set gtmtypes("hash_table_mname",10,"name")="hash_table_mname.count" + Set gtmtypes("hash_table_mname",10,"off")=36 + Set gtmtypes("hash_table_mname",10,"len")=4 + Set gtmtypes("hash_table_mname",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","count")=10 + Set gtmtypes("hash_table_mname",11,"name")="hash_table_mname.del_count" + Set gtmtypes("hash_table_mname",11,"off")=40 + Set gtmtypes("hash_table_mname",11,"len")=4 + Set gtmtypes("hash_table_mname",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","del_count")=11 + Set gtmtypes("hash_table_mname",12,"name")="hash_table_mname.exp_trigger_size" + Set gtmtypes("hash_table_mname",12,"off")=44 + Set gtmtypes("hash_table_mname",12,"len")=4 + Set gtmtypes("hash_table_mname",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","exp_trigger_size")=12 + Set gtmtypes("hash_table_mname",13,"name")="hash_table_mname.cmp_trigger_size" + Set gtmtypes("hash_table_mname",13,"off")=48 + Set gtmtypes("hash_table_mname",13,"len")=4 + Set gtmtypes("hash_table_mname",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","cmp_trigger_size")=13 + Set gtmtypes("hash_table_mname",14,"name")="hash_table_mname.entry_passed_thru" + Set gtmtypes("hash_table_mname",14,"off")=52 + Set gtmtypes("hash_table_mname",14,"len")=4 + Set gtmtypes("hash_table_mname",14,"type")="addr" + Set gtmtypfldindx("hash_table_mname","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_objcode")="struct" + Set gtmtypes("hash_table_objcode",0)=14 + Set gtmtypes("hash_table_objcode","len")=56 + Set gtmtypes("hash_table_objcode",1,"name")="hash_table_objcode.base" + Set gtmtypes("hash_table_objcode",1,"off")=0 + Set gtmtypes("hash_table_objcode",1,"len")=4 + Set gtmtypes("hash_table_objcode",1,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","base")=1 + Set gtmtypes("hash_table_objcode",2,"name")="hash_table_objcode.top" + Set gtmtypes("hash_table_objcode",2,"off")=4 + Set gtmtypes("hash_table_objcode",2,"len")=4 + Set gtmtypes("hash_table_objcode",2,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","top")=2 + Set gtmtypes("hash_table_objcode",3,"name")="hash_table_objcode.size" + Set gtmtypes("hash_table_objcode",3,"off")=8 + Set gtmtypes("hash_table_objcode",3,"len")=4 + Set gtmtypes("hash_table_objcode",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","size")=3 + Set gtmtypes("hash_table_objcode",4,"name")="hash_table_objcode.initial_size" + Set gtmtypes("hash_table_objcode",4,"off")=12 + Set gtmtypes("hash_table_objcode",4,"len")=4 + Set gtmtypes("hash_table_objcode",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","initial_size")=4 + Set gtmtypes("hash_table_objcode",5,"name")="hash_table_objcode.spare_base" + Set gtmtypes("hash_table_objcode",5,"off")=16 + Set gtmtypes("hash_table_objcode",5,"len")=4 + Set gtmtypes("hash_table_objcode",5,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","spare_base")=5 + Set gtmtypes("hash_table_objcode",6,"name")="hash_table_objcode.spare_base_size" + Set gtmtypes("hash_table_objcode",6,"off")=20 + Set gtmtypes("hash_table_objcode",6,"len")=4 + Set gtmtypes("hash_table_objcode",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","spare_base_size")=6 + Set gtmtypes("hash_table_objcode",7,"name")="hash_table_objcode.dont_compact" + Set gtmtypes("hash_table_objcode",7,"off")=24 + Set gtmtypes("hash_table_objcode",7,"len")=4 + Set gtmtypes("hash_table_objcode",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","dont_compact")=7 + Set gtmtypes("hash_table_objcode",8,"name")="hash_table_objcode.dont_keep_spare_table" + Set gtmtypes("hash_table_objcode",8,"off")=28 + Set gtmtypes("hash_table_objcode",8,"len")=4 + Set gtmtypes("hash_table_objcode",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_objcode",9,"name")="hash_table_objcode.defer_base_release" + Set gtmtypes("hash_table_objcode",9,"off")=32 + Set gtmtypes("hash_table_objcode",9,"len")=4 + Set gtmtypes("hash_table_objcode",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","defer_base_release")=9 + Set gtmtypes("hash_table_objcode",10,"name")="hash_table_objcode.count" + Set gtmtypes("hash_table_objcode",10,"off")=36 + Set gtmtypes("hash_table_objcode",10,"len")=4 + Set gtmtypes("hash_table_objcode",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","count")=10 + Set gtmtypes("hash_table_objcode",11,"name")="hash_table_objcode.del_count" + Set gtmtypes("hash_table_objcode",11,"off")=40 + Set gtmtypes("hash_table_objcode",11,"len")=4 + Set gtmtypes("hash_table_objcode",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","del_count")=11 + Set gtmtypes("hash_table_objcode",12,"name")="hash_table_objcode.exp_trigger_size" + Set gtmtypes("hash_table_objcode",12,"off")=44 + Set gtmtypes("hash_table_objcode",12,"len")=4 + Set gtmtypes("hash_table_objcode",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","exp_trigger_size")=12 + Set gtmtypes("hash_table_objcode",13,"name")="hash_table_objcode.cmp_trigger_size" + Set gtmtypes("hash_table_objcode",13,"off")=48 + Set gtmtypes("hash_table_objcode",13,"len")=4 + Set gtmtypes("hash_table_objcode",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","cmp_trigger_size")=13 + Set gtmtypes("hash_table_objcode",14,"name")="hash_table_objcode.entry_passed_thru" + Set gtmtypes("hash_table_objcode",14,"off")=52 + Set gtmtypes("hash_table_objcode",14,"len")=4 + Set gtmtypes("hash_table_objcode",14,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_str")="struct" + Set gtmtypes("hash_table_str",0)=14 + Set gtmtypes("hash_table_str","len")=56 + Set gtmtypes("hash_table_str",1,"name")="hash_table_str.base" + Set gtmtypes("hash_table_str",1,"off")=0 + Set gtmtypes("hash_table_str",1,"len")=4 + Set gtmtypes("hash_table_str",1,"type")="addr" + Set gtmtypfldindx("hash_table_str","base")=1 + Set gtmtypes("hash_table_str",2,"name")="hash_table_str.top" + Set gtmtypes("hash_table_str",2,"off")=4 + Set gtmtypes("hash_table_str",2,"len")=4 + Set gtmtypes("hash_table_str",2,"type")="addr" + Set gtmtypfldindx("hash_table_str","top")=2 + Set gtmtypes("hash_table_str",3,"name")="hash_table_str.size" + Set gtmtypes("hash_table_str",3,"off")=8 + Set gtmtypes("hash_table_str",3,"len")=4 + Set gtmtypes("hash_table_str",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","size")=3 + Set gtmtypes("hash_table_str",4,"name")="hash_table_str.initial_size" + Set gtmtypes("hash_table_str",4,"off")=12 + Set gtmtypes("hash_table_str",4,"len")=4 + Set gtmtypes("hash_table_str",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","initial_size")=4 + Set gtmtypes("hash_table_str",5,"name")="hash_table_str.spare_base" + Set gtmtypes("hash_table_str",5,"off")=16 + Set gtmtypes("hash_table_str",5,"len")=4 + Set gtmtypes("hash_table_str",5,"type")="addr" + Set gtmtypfldindx("hash_table_str","spare_base")=5 + Set gtmtypes("hash_table_str",6,"name")="hash_table_str.spare_base_size" + Set gtmtypes("hash_table_str",6,"off")=20 + Set gtmtypes("hash_table_str",6,"len")=4 + Set gtmtypes("hash_table_str",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","spare_base_size")=6 + Set gtmtypes("hash_table_str",7,"name")="hash_table_str.dont_compact" + Set gtmtypes("hash_table_str",7,"off")=24 + Set gtmtypes("hash_table_str",7,"len")=4 + Set gtmtypes("hash_table_str",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","dont_compact")=7 + Set gtmtypes("hash_table_str",8,"name")="hash_table_str.dont_keep_spare_table" + Set gtmtypes("hash_table_str",8,"off")=28 + Set gtmtypes("hash_table_str",8,"len")=4 + Set gtmtypes("hash_table_str",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_str",9,"name")="hash_table_str.defer_base_release" + Set gtmtypes("hash_table_str",9,"off")=32 + Set gtmtypes("hash_table_str",9,"len")=4 + Set gtmtypes("hash_table_str",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","defer_base_release")=9 + Set gtmtypes("hash_table_str",10,"name")="hash_table_str.count" + Set gtmtypes("hash_table_str",10,"off")=36 + Set gtmtypes("hash_table_str",10,"len")=4 + Set gtmtypes("hash_table_str",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","count")=10 + Set gtmtypes("hash_table_str",11,"name")="hash_table_str.del_count" + Set gtmtypes("hash_table_str",11,"off")=40 + Set gtmtypes("hash_table_str",11,"len")=4 + Set gtmtypes("hash_table_str",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","del_count")=11 + Set gtmtypes("hash_table_str",12,"name")="hash_table_str.exp_trigger_size" + Set gtmtypes("hash_table_str",12,"off")=44 + Set gtmtypes("hash_table_str",12,"len")=4 + Set gtmtypes("hash_table_str",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","exp_trigger_size")=12 + Set gtmtypes("hash_table_str",13,"name")="hash_table_str.cmp_trigger_size" + Set gtmtypes("hash_table_str",13,"off")=48 + Set gtmtypes("hash_table_str",13,"len")=4 + Set gtmtypes("hash_table_str",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","cmp_trigger_size")=13 + Set gtmtypes("hash_table_str",14,"name")="hash_table_str.entry_passed_thru" + Set gtmtypes("hash_table_str",14,"off")=52 + Set gtmtypes("hash_table_str",14,"len")=4 + Set gtmtypes("hash_table_str",14,"type")="addr" + Set gtmtypfldindx("hash_table_str","entry_passed_thru")=14 + ; + Set gtmtypes("header_struct")="struct" + Set gtmtypes("header_struct",0)=2 + Set gtmtypes("header_struct","len")=16 + Set gtmtypes("header_struct",1,"name")="header_struct.label" + Set gtmtypes("header_struct",1,"off")=0 + Set gtmtypes("header_struct",1,"len")=12 + Set gtmtypes("header_struct",1,"type")="char" + Set gtmtypfldindx("header_struct","label")=1 + Set gtmtypes("header_struct",2,"name")="header_struct.filesize" + Set gtmtypes("header_struct",2,"off")=12 + Set gtmtypes("header_struct",2,"len")=4 + Set gtmtypes("header_struct",2,"type")="unsigned" + Set gtmtypfldindx("header_struct","filesize")=2 + ; + Set gtmtypes("ht_ent_addr")="struct" + Set gtmtypes("ht_ent_addr",0)=2 + Set gtmtypes("ht_ent_addr","len")=8 + Set gtmtypes("ht_ent_addr",1,"name")="ht_ent_addr.key" + Set gtmtypes("ht_ent_addr",1,"off")=0 + Set gtmtypes("ht_ent_addr",1,"len")=4 + Set gtmtypes("ht_ent_addr",1,"type")="addr" + Set gtmtypfldindx("ht_ent_addr","key")=1 + Set gtmtypes("ht_ent_addr",2,"name")="ht_ent_addr.value" + Set gtmtypes("ht_ent_addr",2,"off")=4 + Set gtmtypes("ht_ent_addr",2,"len")=4 + Set gtmtypes("ht_ent_addr",2,"type")="addr" + Set gtmtypfldindx("ht_ent_addr","value")=2 + ; + Set gtmtypes("ht_ent_int4")="struct" + Set gtmtypes("ht_ent_int4",0)=2 + Set gtmtypes("ht_ent_int4","len")=8 + Set gtmtypes("ht_ent_int4",1,"name")="ht_ent_int4.key" + Set gtmtypes("ht_ent_int4",1,"off")=0 + Set gtmtypes("ht_ent_int4",1,"len")=4 + Set gtmtypes("ht_ent_int4",1,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_int4","key")=1 + Set gtmtypes("ht_ent_int4",2,"name")="ht_ent_int4.value" + Set gtmtypes("ht_ent_int4",2,"off")=4 + Set gtmtypes("ht_ent_int4",2,"len")=4 + Set gtmtypes("ht_ent_int4",2,"type")="addr" + Set gtmtypfldindx("ht_ent_int4","value")=2 + ; + Set gtmtypes("ht_ent_int8")="struct" + Set gtmtypes("ht_ent_int8",0)=3 + Set gtmtypes("ht_ent_int8","len")=16 + Set gtmtypes("ht_ent_int8",1,"name")="ht_ent_int8.key" + Set gtmtypes("ht_ent_int8",1,"off")=0 + Set gtmtypes("ht_ent_int8",1,"len")=8 + Set gtmtypes("ht_ent_int8",1,"type")="uint64_t" + Set gtmtypfldindx("ht_ent_int8","key")=1 + Set gtmtypes("ht_ent_int8",2,"name")="ht_ent_int8.value" + Set gtmtypes("ht_ent_int8",2,"off")=8 + Set gtmtypes("ht_ent_int8",2,"len")=4 + Set gtmtypes("ht_ent_int8",2,"type")="addr" + Set gtmtypfldindx("ht_ent_int8","value")=2 + Set gtmtypes("ht_ent_int8",3,"name")="ht_ent_int8.filler" + Set gtmtypes("ht_ent_int8",3,"off")=12 + Set gtmtypes("ht_ent_int8",3,"len")=4 + Set gtmtypes("ht_ent_int8",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_int8","filler")=3 + ; + Set gtmtypes("ht_ent_mname")="struct" + Set gtmtypes("ht_ent_mname",0)=5 + Set gtmtypes("ht_ent_mname","len")=24 + Set gtmtypes("ht_ent_mname",1,"name")="ht_ent_mname.key" + Set gtmtypes("ht_ent_mname",1,"off")=0 + Set gtmtypes("ht_ent_mname",1,"len")=20 + Set gtmtypes("ht_ent_mname",1,"type")="mname_entry" + Set gtmtypfldindx("ht_ent_mname","key")=1 + Set gtmtypes("ht_ent_mname",2,"name")="ht_ent_mname.key.var_name" + Set gtmtypes("ht_ent_mname",2,"off")=0 + Set gtmtypes("ht_ent_mname",2,"len")=12 + Set gtmtypes("ht_ent_mname",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_mname","key.var_name")=2 + Set gtmtypes("ht_ent_mname",3,"name")="ht_ent_mname.key.hash_code" + Set gtmtypes("ht_ent_mname",3,"off")=12 + Set gtmtypes("ht_ent_mname",3,"len")=4 + Set gtmtypes("ht_ent_mname",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_mname","key.hash_code")=3 + Set gtmtypes("ht_ent_mname",4,"name")="ht_ent_mname.key.marked" + Set gtmtypes("ht_ent_mname",4,"off")=16 + Set gtmtypes("ht_ent_mname",4,"len")=4 + Set gtmtypes("ht_ent_mname",4,"type")="boolean_t" + Set gtmtypfldindx("ht_ent_mname","key.marked")=4 + Set gtmtypes("ht_ent_mname",5,"name")="ht_ent_mname.value" + Set gtmtypes("ht_ent_mname",5,"off")=20 + Set gtmtypes("ht_ent_mname",5,"len")=4 + Set gtmtypes("ht_ent_mname",5,"type")="addr" + Set gtmtypfldindx("ht_ent_mname","value")=5 + ; + Set gtmtypes("ht_ent_objcode")="struct" + Set gtmtypes("ht_ent_objcode",0)=4 + Set gtmtypes("ht_ent_objcode","len")=20 + Set gtmtypes("ht_ent_objcode",1,"name")="ht_ent_objcode.key" + Set gtmtypes("ht_ent_objcode",1,"off")=0 + Set gtmtypes("ht_ent_objcode",1,"len")=16 + Set gtmtypes("ht_ent_objcode",1,"type")="icode_str" + Set gtmtypfldindx("ht_ent_objcode","key")=1 + Set gtmtypes("ht_ent_objcode",2,"name")="ht_ent_objcode.key.str" + Set gtmtypes("ht_ent_objcode",2,"off")=0 + Set gtmtypes("ht_ent_objcode",2,"len")=12 + Set gtmtypes("ht_ent_objcode",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_objcode","key.str")=2 + Set gtmtypes("ht_ent_objcode",3,"name")="ht_ent_objcode.key.code" + Set gtmtypes("ht_ent_objcode",3,"off")=12 + Set gtmtypes("ht_ent_objcode",3,"len")=4 + Set gtmtypes("ht_ent_objcode",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_objcode","key.code")=3 + Set gtmtypes("ht_ent_objcode",4,"name")="ht_ent_objcode.value" + Set gtmtypes("ht_ent_objcode",4,"off")=16 + Set gtmtypes("ht_ent_objcode",4,"len")=4 + Set gtmtypes("ht_ent_objcode",4,"type")="addr" + Set gtmtypfldindx("ht_ent_objcode","value")=4 + ; + Set gtmtypes("ht_ent_str")="struct" + Set gtmtypes("ht_ent_str",0)=4 + Set gtmtypes("ht_ent_str","len")=20 + Set gtmtypes("ht_ent_str",1,"name")="ht_ent_str.key" + Set gtmtypes("ht_ent_str",1,"off")=0 + Set gtmtypes("ht_ent_str",1,"len")=16 + Set gtmtypes("ht_ent_str",1,"type")="stringkey" + Set gtmtypfldindx("ht_ent_str","key")=1 + Set gtmtypes("ht_ent_str",2,"name")="ht_ent_str.key.str" + Set gtmtypes("ht_ent_str",2,"off")=0 + Set gtmtypes("ht_ent_str",2,"len")=12 + Set gtmtypes("ht_ent_str",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_str","key.str")=2 + Set gtmtypes("ht_ent_str",3,"name")="ht_ent_str.key.hash_code" + Set gtmtypes("ht_ent_str",3,"off")=12 + Set gtmtypes("ht_ent_str",3,"len")=4 + Set gtmtypes("ht_ent_str",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_str","key.hash_code")=3 + Set gtmtypes("ht_ent_str",4,"name")="ht_ent_str.value" + Set gtmtypes("ht_ent_str",4,"off")=16 + Set gtmtypes("ht_ent_str",4,"len")=4 + Set gtmtypes("ht_ent_str",4,"type")="addr" + Set gtmtypfldindx("ht_ent_str","value")=4 + ; + Set gtmtypes("icode_str")="struct" + Set gtmtypes("icode_str",0)=5 + Set gtmtypes("icode_str","len")=16 + Set gtmtypes("icode_str",1,"name")="icode_str.str" + Set gtmtypes("icode_str",1,"off")=0 + Set gtmtypes("icode_str",1,"len")=12 + Set gtmtypes("icode_str",1,"type")="mstr" + Set gtmtypfldindx("icode_str","str")=1 + Set gtmtypes("icode_str",2,"name")="icode_str.str.char_len" + Set gtmtypes("icode_str",2,"off")=0 + Set gtmtypes("icode_str",2,"len")=4 + Set gtmtypes("icode_str",2,"type")="unsigned-int" + Set gtmtypfldindx("icode_str","str.char_len")=2 + Set gtmtypes("icode_str",3,"name")="icode_str.str.len" + Set gtmtypes("icode_str",3,"off")=4 + Set gtmtypes("icode_str",3,"len")=4 + Set gtmtypes("icode_str",3,"type")="int" + Set gtmtypfldindx("icode_str","str.len")=3 + Set gtmtypes("icode_str",4,"name")="icode_str.str.addr" + Set gtmtypes("icode_str",4,"off")=8 + Set gtmtypes("icode_str",4,"len")=4 + Set gtmtypes("icode_str",4,"type")="addr" + Set gtmtypfldindx("icode_str","str.addr")=4 + Set gtmtypes("icode_str",5,"name")="icode_str.code" + Set gtmtypes("icode_str",5,"off")=12 + Set gtmtypes("icode_str",5,"len")=4 + Set gtmtypes("icode_str",5,"type")="unsigned-int" + Set gtmtypfldindx("icode_str","code")=5 + ; + Set gtmtypes("ihdtyp")="struct" + Set gtmtypes("ihdtyp",0)=7 + Set gtmtypes("ihdtyp","len")=28 + Set gtmtypes("ihdtyp",1,"name")="ihdtyp.indce" + Set gtmtypes("ihdtyp",1,"off")=0 + Set gtmtypes("ihdtyp",1,"len")=4 + Set gtmtypes("ihdtyp",1,"type")="addr" + Set gtmtypfldindx("ihdtyp","indce")=1 + Set gtmtypes("ihdtyp",2,"name")="ihdtyp.vartab_off" + Set gtmtypes("ihdtyp",2,"off")=4 + Set gtmtypes("ihdtyp",2,"len")=4 + Set gtmtypes("ihdtyp",2,"type")="int" + Set gtmtypfldindx("ihdtyp","vartab_off")=2 + Set gtmtypes("ihdtyp",3,"name")="ihdtyp.vartab_len" + Set gtmtypes("ihdtyp",3,"off")=8 + Set gtmtypes("ihdtyp",3,"len")=4 + Set gtmtypes("ihdtyp",3,"type")="int" + Set gtmtypfldindx("ihdtyp","vartab_len")=3 + Set gtmtypes("ihdtyp",4,"name")="ihdtyp.temp_mvals" + Set gtmtypes("ihdtyp",4,"off")=12 + Set gtmtypes("ihdtyp",4,"len")=4 + Set gtmtypes("ihdtyp",4,"type")="int" + Set gtmtypfldindx("ihdtyp","temp_mvals")=4 + Set gtmtypes("ihdtyp",5,"name")="ihdtyp.temp_size" + Set gtmtypes("ihdtyp",5,"off")=16 + Set gtmtypes("ihdtyp",5,"len")=4 + Set gtmtypes("ihdtyp",5,"type")="int" + Set gtmtypfldindx("ihdtyp","temp_size")=5 + Set gtmtypes("ihdtyp",6,"name")="ihdtyp.fixup_vals_off" + Set gtmtypes("ihdtyp",6,"off")=20 + Set gtmtypes("ihdtyp",6,"len")=4 + Set gtmtypes("ihdtyp",6,"type")="int" + Set gtmtypfldindx("ihdtyp","fixup_vals_off")=6 + Set gtmtypes("ihdtyp",7,"name")="ihdtyp.fixup_vals_num" + Set gtmtypes("ihdtyp",7,"off")=24 + Set gtmtypes("ihdtyp",7,"len")=4 + Set gtmtypes("ihdtyp",7,"type")="int" + Set gtmtypfldindx("ihdtyp","fixup_vals_num")=7 + ; + Set gtmtypes("inc_header")="struct" + Set gtmtypes("inc_header",0)=14 + Set gtmtypes("inc_header","len")=280 + Set gtmtypes("inc_header",1,"name")="inc_header.label" + Set gtmtypes("inc_header",1,"off")=0 + Set gtmtypes("inc_header",1,"len")=26 + Set gtmtypes("inc_header",1,"type")="char" + Set gtmtypfldindx("inc_header","label")=1 + Set gtmtypes("inc_header",2,"name")="inc_header.date" + Set gtmtypes("inc_header",2,"off")=26 + Set gtmtypes("inc_header",2,"len")=14 + Set gtmtypes("inc_header",2,"type")="char" + Set gtmtypfldindx("inc_header","date")=2 + Set gtmtypes("inc_header",3,"name")="inc_header.reg" + Set gtmtypes("inc_header",3,"off")=40 + Set gtmtypes("inc_header",3,"len")=31 + Set gtmtypes("inc_header",3,"type")="char" + Set gtmtypfldindx("inc_header","reg")=3 + Set gtmtypes("inc_header",4,"name")="inc_header.start_tn" + Set gtmtypes("inc_header",4,"off")=72 + Set gtmtypes("inc_header",4,"len")=8 + Set gtmtypes("inc_header",4,"type")="uint64_t" + Set gtmtypfldindx("inc_header","start_tn")=4 + Set gtmtypes("inc_header",5,"name")="inc_header.end_tn" + Set gtmtypes("inc_header",5,"off")=80 + Set gtmtypes("inc_header",5,"len")=8 + Set gtmtypes("inc_header",5,"type")="uint64_t" + Set gtmtypfldindx("inc_header","end_tn")=5 + Set gtmtypes("inc_header",6,"name")="inc_header.db_total_blks" + Set gtmtypes("inc_header",6,"off")=88 + Set gtmtypes("inc_header",6,"len")=4 + Set gtmtypes("inc_header",6,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","db_total_blks")=6 + Set gtmtypes("inc_header",7,"name")="inc_header.blk_size" + Set gtmtypes("inc_header",7,"off")=92 + Set gtmtypes("inc_header",7,"len")=4 + Set gtmtypes("inc_header",7,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","blk_size")=7 + Set gtmtypes("inc_header",8,"name")="inc_header.blks_to_upgrd" + Set gtmtypes("inc_header",8,"off")=96 + Set gtmtypes("inc_header",8,"len")=4 + Set gtmtypes("inc_header",8,"type")="int" + Set gtmtypfldindx("inc_header","blks_to_upgrd")=8 + Set gtmtypes("inc_header",9,"name")="inc_header.is_encrypted" + Set gtmtypes("inc_header",9,"off")=100 + Set gtmtypes("inc_header",9,"len")=4 + Set gtmtypes("inc_header",9,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","is_encrypted")=9 + Set gtmtypes("inc_header",10,"name")="inc_header.encryption_hash" + Set gtmtypes("inc_header",10,"off")=104 + Set gtmtypes("inc_header",10,"len")=80 + Set gtmtypes("inc_header",10,"type")="char" + Set gtmtypfldindx("inc_header","encryption_hash")=10 + Set gtmtypes("inc_header",11,"name")="inc_header.encryption_hash2" + Set gtmtypes("inc_header",11,"off")=184 + Set gtmtypes("inc_header",11,"len")=80 + Set gtmtypes("inc_header",11,"type")="char" + Set gtmtypfldindx("inc_header","encryption_hash2")=11 + Set gtmtypes("inc_header",12,"name")="inc_header.non_null_iv" + Set gtmtypes("inc_header",12,"off")=264 + Set gtmtypes("inc_header",12,"len")=4 + Set gtmtypes("inc_header",12,"type")="boolean_t" + Set gtmtypfldindx("inc_header","non_null_iv")=12 + Set gtmtypes("inc_header",13,"name")="inc_header.encryption_hash_cutoff" + Set gtmtypes("inc_header",13,"off")=268 + Set gtmtypes("inc_header",13,"len")=4 + Set gtmtypes("inc_header",13,"type")="int" + Set gtmtypfldindx("inc_header","encryption_hash_cutoff")=13 + Set gtmtypes("inc_header",14,"name")="inc_header.encryption_hash2_start_tn" + Set gtmtypes("inc_header",14,"off")=272 + Set gtmtypes("inc_header",14,"len")=8 + Set gtmtypes("inc_header",14,"type")="uint64_t" + Set gtmtypfldindx("inc_header","encryption_hash2_start_tn")=14 + ; + Set gtmtypes("inc_list_struct")="struct" + Set gtmtypes("inc_list_struct",0)=5 + Set gtmtypes("inc_list_struct","len")=16 + Set gtmtypes("inc_list_struct",1,"name")="inc_list_struct.input_file" + Set gtmtypes("inc_list_struct",1,"off")=0 + Set gtmtypes("inc_list_struct",1,"len")=12 + Set gtmtypes("inc_list_struct",1,"type")="mstr" + Set gtmtypfldindx("inc_list_struct","input_file")=1 + Set gtmtypes("inc_list_struct",2,"name")="inc_list_struct.input_file.char_len" + Set gtmtypes("inc_list_struct",2,"off")=0 + Set gtmtypes("inc_list_struct",2,"len")=4 + Set gtmtypes("inc_list_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("inc_list_struct","input_file.char_len")=2 + Set gtmtypes("inc_list_struct",3,"name")="inc_list_struct.input_file.len" + Set gtmtypes("inc_list_struct",3,"off")=4 + Set gtmtypes("inc_list_struct",3,"len")=4 + Set gtmtypes("inc_list_struct",3,"type")="int" + Set gtmtypfldindx("inc_list_struct","input_file.len")=3 + Set gtmtypes("inc_list_struct",4,"name")="inc_list_struct.input_file.addr" + Set gtmtypes("inc_list_struct",4,"off")=8 + Set gtmtypes("inc_list_struct",4,"len")=4 + Set gtmtypes("inc_list_struct",4,"type")="addr" + Set gtmtypfldindx("inc_list_struct","input_file.addr")=4 + Set gtmtypes("inc_list_struct",5,"name")="inc_list_struct.next" + Set gtmtypes("inc_list_struct",5,"off")=12 + Set gtmtypes("inc_list_struct",5,"len")=4 + Set gtmtypes("inc_list_struct",5,"type")="addr" + Set gtmtypfldindx("inc_list_struct","next")=5 + ; + Set gtmtypes("inctn_detail_blknum_t")="struct" + Set gtmtypes("inctn_detail_blknum_t",0)=5 + Set gtmtypes("inctn_detail_blknum_t","len")=16 + Set gtmtypes("inctn_detail_blknum_t",1,"name")="inctn_detail_blknum_t.blknum" + Set gtmtypes("inctn_detail_blknum_t",1,"off")=0 + Set gtmtypes("inctn_detail_blknum_t",1,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",1,"type")="int" + Set gtmtypfldindx("inctn_detail_blknum_t","blknum")=1 + Set gtmtypes("inctn_detail_blknum_t",2,"name")="inctn_detail_blknum_t.filler_uint4" + Set gtmtypes("inctn_detail_blknum_t",2,"off")=4 + Set gtmtypes("inctn_detail_blknum_t",2,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",2,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_blknum_t","filler_uint4")=2 + Set gtmtypes("inctn_detail_blknum_t",3,"name")="inctn_detail_blknum_t.filler_short" + Set gtmtypes("inctn_detail_blknum_t",3,"off")=8 + Set gtmtypes("inctn_detail_blknum_t",3,"len")=2 + Set gtmtypes("inctn_detail_blknum_t",3,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blknum_t","filler_short")=3 + Set gtmtypes("inctn_detail_blknum_t",4,"name")="inctn_detail_blknum_t.opcode" + Set gtmtypes("inctn_detail_blknum_t",4,"off")=10 + Set gtmtypes("inctn_detail_blknum_t",4,"len")=2 + Set gtmtypes("inctn_detail_blknum_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blknum_t","opcode")=4 + Set gtmtypes("inctn_detail_blknum_t",5,"name")="inctn_detail_blknum_t.suffix" + Set gtmtypes("inctn_detail_blknum_t",5,"off")=12 + Set gtmtypes("inctn_detail_blknum_t",5,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",5,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_blknum_t","suffix")=5 + ; + Set gtmtypes("inctn_detail_blks2upgrd_t")="struct" + Set gtmtypes("inctn_detail_blks2upgrd_t",0)=5 + Set gtmtypes("inctn_detail_blks2upgrd_t","len")=16 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"name")="inctn_detail_blks2upgrd_t.blks_to_upgrd_delta" + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"off")=0 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"type")="int" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","blks_to_upgrd_delta")=1 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"name")="inctn_detail_blks2upgrd_t.filler_uint4" + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"off")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","filler_uint4")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"name")="inctn_detail_blks2upgrd_t.filler_short" + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"off")=8 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"len")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","filler_short")=3 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"name")="inctn_detail_blks2upgrd_t.opcode" + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"off")=10 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"len")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","opcode")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"name")="inctn_detail_blks2upgrd_t.suffix" + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"off")=12 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","suffix")=5 + ; + Set gtmtypes("inctn_detail_t")="union" + Set gtmtypes("inctn_detail_t",0)=12 + Set gtmtypes("inctn_detail_t","len")=16 + Set gtmtypes("inctn_detail_t",1,"name")="inctn_detail_t.blknum_struct" + Set gtmtypes("inctn_detail_t",1,"off")=0 + Set gtmtypes("inctn_detail_t",1,"len")=16 + Set gtmtypes("inctn_detail_t",1,"type")="inctn_detail_blknum_t" + Set gtmtypfldindx("inctn_detail_t","blknum_struct")=1 + Set gtmtypes("inctn_detail_t",2,"name")="inctn_detail_t.blknum_struct.blknum" + Set gtmtypes("inctn_detail_t",2,"off")=0 + Set gtmtypes("inctn_detail_t",2,"len")=4 + Set gtmtypes("inctn_detail_t",2,"type")="int" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.blknum")=2 + Set gtmtypes("inctn_detail_t",3,"name")="inctn_detail_t.blknum_struct.filler_uint4" + Set gtmtypes("inctn_detail_t",3,"off")=4 + Set gtmtypes("inctn_detail_t",3,"len")=4 + Set gtmtypes("inctn_detail_t",3,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.filler_uint4")=3 + Set gtmtypes("inctn_detail_t",4,"name")="inctn_detail_t.blknum_struct.filler_short" + Set gtmtypes("inctn_detail_t",4,"off")=8 + Set gtmtypes("inctn_detail_t",4,"len")=2 + Set gtmtypes("inctn_detail_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.filler_short")=4 + Set gtmtypes("inctn_detail_t",5,"name")="inctn_detail_t.blknum_struct.opcode" + Set gtmtypes("inctn_detail_t",5,"off")=10 + Set gtmtypes("inctn_detail_t",5,"len")=2 + Set gtmtypes("inctn_detail_t",5,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.opcode")=5 + Set gtmtypes("inctn_detail_t",6,"name")="inctn_detail_t.blknum_struct.suffix" + Set gtmtypes("inctn_detail_t",6,"off")=12 + Set gtmtypes("inctn_detail_t",6,"len")=4 + Set gtmtypes("inctn_detail_t",6,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.suffix")=6 + Set gtmtypes("inctn_detail_t",7,"name")="inctn_detail_t.blks2upgrd_struct" + Set gtmtypes("inctn_detail_t",7,"off")=0 + Set gtmtypes("inctn_detail_t",7,"len")=16 + Set gtmtypes("inctn_detail_t",7,"type")="inctn_detail_blks2upgrd_t" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct")=7 + Set gtmtypes("inctn_detail_t",8,"name")="inctn_detail_t.blks2upgrd_struct.blks_to_upgrd_delta" + Set gtmtypes("inctn_detail_t",8,"off")=0 + Set gtmtypes("inctn_detail_t",8,"len")=4 + Set gtmtypes("inctn_detail_t",8,"type")="int" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.blks_to_upgrd_delta")=8 + Set gtmtypes("inctn_detail_t",9,"name")="inctn_detail_t.blks2upgrd_struct.filler_uint4" + Set gtmtypes("inctn_detail_t",9,"off")=4 + Set gtmtypes("inctn_detail_t",9,"len")=4 + Set gtmtypes("inctn_detail_t",9,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.filler_uint4")=9 + Set gtmtypes("inctn_detail_t",10,"name")="inctn_detail_t.blks2upgrd_struct.filler_short" + Set gtmtypes("inctn_detail_t",10,"off")=8 + Set gtmtypes("inctn_detail_t",10,"len")=2 + Set gtmtypes("inctn_detail_t",10,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.filler_short")=10 + Set gtmtypes("inctn_detail_t",11,"name")="inctn_detail_t.blks2upgrd_struct.opcode" + Set gtmtypes("inctn_detail_t",11,"off")=10 + Set gtmtypes("inctn_detail_t",11,"len")=2 + Set gtmtypes("inctn_detail_t",11,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.opcode")=11 + Set gtmtypes("inctn_detail_t",12,"name")="inctn_detail_t.blks2upgrd_struct.suffix" + Set gtmtypes("inctn_detail_t",12,"off")=12 + Set gtmtypes("inctn_detail_t",12,"len")=4 + Set gtmtypes("inctn_detail_t",12,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.suffix")=12 + ; + Set gtmtypes("integ_error_blk_list")="struct" + Set gtmtypes("integ_error_blk_list",0)=3 + Set gtmtypes("integ_error_blk_list","len")=48 + Set gtmtypes("integ_error_blk_list",1,"name")="integ_error_blk_list.next" + Set gtmtypes("integ_error_blk_list",1,"off")=0 + Set gtmtypes("integ_error_blk_list",1,"len")=4 + Set gtmtypes("integ_error_blk_list",1,"type")="addr" + Set gtmtypfldindx("integ_error_blk_list","next")=1 + Set gtmtypes("integ_error_blk_list",2,"name")="integ_error_blk_list.blk_cnt" + Set gtmtypes("integ_error_blk_list",2,"off")=4 + Set gtmtypes("integ_error_blk_list",2,"len")=4 + Set gtmtypes("integ_error_blk_list",2,"type")="int" + Set gtmtypfldindx("integ_error_blk_list","blk_cnt")=2 + Set gtmtypes("integ_error_blk_list",3,"name")="integ_error_blk_list.blk_list" + Set gtmtypes("integ_error_blk_list",3,"off")=8 + Set gtmtypes("integ_error_blk_list",3,"len")=40 + Set gtmtypes("integ_error_blk_list",3,"type")="int" + Set gtmtypfldindx("integ_error_blk_list","blk_list")=3 + Set gtmtypes("integ_error_blk_list",3,"dim")=10 + ; + Set gtmtypes("io_desc")="struct" + Set gtmtypes("io_desc",0)=30 + Set gtmtypes("io_desc","len")=264 + Set gtmtypes("io_desc",1,"name")="io_desc.pair" + Set gtmtypes("io_desc",1,"off")=0 + Set gtmtypes("io_desc",1,"len")=8 + Set gtmtypes("io_desc",1,"type")="io_pair" + Set gtmtypfldindx("io_desc","pair")=1 + Set gtmtypes("io_desc",2,"name")="io_desc.pair.in" + Set gtmtypes("io_desc",2,"off")=0 + Set gtmtypes("io_desc",2,"len")=4 + Set gtmtypes("io_desc",2,"type")="addr" + Set gtmtypfldindx("io_desc","pair.in")=2 + Set gtmtypes("io_desc",3,"name")="io_desc.pair.out" + Set gtmtypes("io_desc",3,"off")=4 + Set gtmtypes("io_desc",3,"len")=4 + Set gtmtypes("io_desc",3,"type")="addr" + Set gtmtypfldindx("io_desc","pair.out")=3 + Set gtmtypes("io_desc",4,"name")="io_desc.trans_name" + Set gtmtypes("io_desc",4,"off")=8 + Set gtmtypes("io_desc",4,"len")=4 + Set gtmtypes("io_desc",4,"type")="addr" + Set gtmtypfldindx("io_desc","trans_name")=4 + Set gtmtypes("io_desc",5,"name")="io_desc.name" + Set gtmtypes("io_desc",5,"off")=12 + Set gtmtypes("io_desc",5,"len")=4 + Set gtmtypes("io_desc",5,"type")="addr" + Set gtmtypfldindx("io_desc","name")=5 + Set gtmtypes("io_desc",6,"name")="io_desc.error_handler" + Set gtmtypes("io_desc",6,"off")=16 + Set gtmtypes("io_desc",6,"len")=12 + Set gtmtypes("io_desc",6,"type")="mstr" + Set gtmtypfldindx("io_desc","error_handler")=6 + Set gtmtypes("io_desc",7,"name")="io_desc.error_handler.char_len" + Set gtmtypes("io_desc",7,"off")=16 + Set gtmtypes("io_desc",7,"len")=4 + Set gtmtypes("io_desc",7,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","error_handler.char_len")=7 + Set gtmtypes("io_desc",8,"name")="io_desc.error_handler.len" + Set gtmtypes("io_desc",8,"off")=20 + Set gtmtypes("io_desc",8,"len")=4 + Set gtmtypes("io_desc",8,"type")="int" + Set gtmtypfldindx("io_desc","error_handler.len")=8 + Set gtmtypes("io_desc",9,"name")="io_desc.error_handler.addr" + Set gtmtypes("io_desc",9,"off")=24 + Set gtmtypes("io_desc",9,"len")=4 + Set gtmtypes("io_desc",9,"type")="addr" + Set gtmtypfldindx("io_desc","error_handler.addr")=9 + Set gtmtypes("io_desc",10,"name")="io_desc.length" + Set gtmtypes("io_desc",10,"off")=28 + Set gtmtypes("io_desc",10,"len")=4 + Set gtmtypes("io_desc",10,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","length")=10 + Set gtmtypes("io_desc",11,"name")="io_desc.width" + Set gtmtypes("io_desc",11,"off")=32 + Set gtmtypes("io_desc",11,"len")=4 + Set gtmtypes("io_desc",11,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","width")=11 + Set gtmtypes("io_desc",12,"name")="io_desc.perm" + Set gtmtypes("io_desc",12,"off")=36 + Set gtmtypes("io_desc",12,"len")=1 + Set gtmtypes("io_desc",12,"type")="char" + Set gtmtypfldindx("io_desc","perm")=12 + Set gtmtypes("io_desc",13,"name")="io_desc.wrap" + Set gtmtypes("io_desc",13,"off")=37 + Set gtmtypes("io_desc",13,"len")=1 + Set gtmtypes("io_desc",13,"type")="char" + Set gtmtypfldindx("io_desc","wrap")=13 + Set gtmtypes("io_desc",14,"name")="io_desc.type" + Set gtmtypes("io_desc",14,"off")=40 + Set gtmtypes("io_desc",14,"len")=4 + Set gtmtypes("io_desc",14,"type")="int" + Set gtmtypfldindx("io_desc","type")=14 + Set gtmtypes("io_desc",15,"name")="io_desc.state" + Set gtmtypes("io_desc",15,"off")=44 + Set gtmtypes("io_desc",15,"len")=4 + Set gtmtypes("io_desc",15,"type")="int" + Set gtmtypfldindx("io_desc","state")=15 + Set gtmtypes("io_desc",16,"name")="io_desc.dollar" + Set gtmtypes("io_desc",16,"off")=48 + Set gtmtypes("io_desc",16,"len")=188 + Set gtmtypes("io_desc",16,"type")="struct" + Set gtmtypfldindx("io_desc","dollar")=16 + Set gtmtypes("io_desc",17,"name")="io_desc.dollar.x" + Set gtmtypes("io_desc",17,"off")=48 + Set gtmtypes("io_desc",17,"len")=4 + Set gtmtypes("io_desc",17,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","dollar.x")=17 + Set gtmtypes("io_desc",18,"name")="io_desc.dollar.y" + Set gtmtypes("io_desc",18,"off")=52 + Set gtmtypes("io_desc",18,"len")=4 + Set gtmtypes("io_desc",18,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","dollar.y")=18 + Set gtmtypes("io_desc",19,"name")="io_desc.dollar.zeof" + Set gtmtypes("io_desc",19,"off")=56 + Set gtmtypes("io_desc",19,"len")=2 + Set gtmtypes("io_desc",19,"type")="unsigned-short" + Set gtmtypfldindx("io_desc","dollar.zeof")=19 + Set gtmtypes("io_desc",20,"name")="io_desc.dollar.za" + Set gtmtypes("io_desc",20,"off")=58 + Set gtmtypes("io_desc",20,"len")=2 + Set gtmtypes("io_desc",20,"type")="unsigned-short" + Set gtmtypfldindx("io_desc","dollar.za")=20 + Set gtmtypes("io_desc",21,"name")="io_desc.dollar.zb" + Set gtmtypes("io_desc",21,"off")=60 + Set gtmtypes("io_desc",21,"len")=16 + Set gtmtypes("io_desc",21,"type")="unsigned-char" + Set gtmtypfldindx("io_desc","dollar.zb")=21 + Set gtmtypes("io_desc",22,"name")="io_desc.dollar.key" + Set gtmtypes("io_desc",22,"off")=76 + Set gtmtypes("io_desc",22,"len")=80 + Set gtmtypes("io_desc",22,"type")="char" + Set gtmtypfldindx("io_desc","dollar.key")=22 + Set gtmtypes("io_desc",23,"name")="io_desc.dollar.device" + Set gtmtypes("io_desc",23,"off")=156 + Set gtmtypes("io_desc",23,"len")=80 + Set gtmtypes("io_desc",23,"type")="char" + Set gtmtypfldindx("io_desc","dollar.device")=23 + Set gtmtypes("io_desc",24,"name")="io_desc.esc_state" + Set gtmtypes("io_desc",24,"off")=236 + Set gtmtypes("io_desc",24,"len")=1 + Set gtmtypes("io_desc",24,"type")="unsigned-char" + Set gtmtypfldindx("io_desc","esc_state")=24 + Set gtmtypes("io_desc",25,"name")="io_desc.dev_sp" + Set gtmtypes("io_desc",25,"off")=240 + Set gtmtypes("io_desc",25,"len")=4 + Set gtmtypes("io_desc",25,"type")="addr" + Set gtmtypfldindx("io_desc","dev_sp")=25 + Set gtmtypes("io_desc",26,"name")="io_desc.disp_ptr" + Set gtmtypes("io_desc",26,"off")=244 + Set gtmtypes("io_desc",26,"len")=4 + Set gtmtypes("io_desc",26,"type")="addr" + Set gtmtypfldindx("io_desc","disp_ptr")=26 + Set gtmtypes("io_desc",27,"name")="io_desc.newly_created" + Set gtmtypes("io_desc",27,"off")=248 + Set gtmtypes("io_desc",27,"len")=4 + Set gtmtypes("io_desc",27,"type")="boolean_t" + Set gtmtypfldindx("io_desc","newly_created")=27 + Set gtmtypes("io_desc",28,"name")="io_desc.ichset" + Set gtmtypes("io_desc",28,"off")=252 + Set gtmtypes("io_desc",28,"len")=4 + Set gtmtypes("io_desc",28,"type")="int" + Set gtmtypfldindx("io_desc","ichset")=28 + Set gtmtypes("io_desc",29,"name")="io_desc.ochset" + Set gtmtypes("io_desc",29,"off")=256 + Set gtmtypes("io_desc",29,"len")=4 + Set gtmtypes("io_desc",29,"type")="int" + Set gtmtypfldindx("io_desc","ochset")=29 + Set gtmtypes("io_desc",30,"name")="io_desc.write_filter" + Set gtmtypes("io_desc",30,"off")=260 + Set gtmtypes("io_desc",30,"len")=4 + Set gtmtypes("io_desc",30,"type")="int" + Set gtmtypfldindx("io_desc","write_filter")=30 + ; + Set gtmtypes("io_log_name")="struct" + Set gtmtypes("io_log_name",0)=4 + Set gtmtypes("io_log_name","len")=12 + Set gtmtypes("io_log_name",1,"name")="io_log_name.iod" + Set gtmtypes("io_log_name",1,"off")=0 + Set gtmtypes("io_log_name",1,"len")=4 + Set gtmtypes("io_log_name",1,"type")="addr" + Set gtmtypfldindx("io_log_name","iod")=1 + Set gtmtypes("io_log_name",2,"name")="io_log_name.next" + Set gtmtypes("io_log_name",2,"off")=4 + Set gtmtypes("io_log_name",2,"len")=4 + Set gtmtypes("io_log_name",2,"type")="addr" + Set gtmtypfldindx("io_log_name","next")=2 + Set gtmtypes("io_log_name",3,"name")="io_log_name.len" + Set gtmtypes("io_log_name",3,"off")=8 + Set gtmtypes("io_log_name",3,"len")=1 + Set gtmtypes("io_log_name",3,"type")="unsigned-char" + Set gtmtypfldindx("io_log_name","len")=3 + Set gtmtypes("io_log_name",4,"name")="io_log_name.dollar_io" + Set gtmtypes("io_log_name",4,"off")=9 + Set gtmtypes("io_log_name",4,"len")=1 + Set gtmtypes("io_log_name",4,"type")="char" + Set gtmtypfldindx("io_log_name","dollar_io")=4 + ; + Set gtmtypes("io_pair")="struct" + Set gtmtypes("io_pair",0)=2 + Set gtmtypes("io_pair","len")=8 + Set gtmtypes("io_pair",1,"name")="io_pair.in" + Set gtmtypes("io_pair",1,"off")=0 + Set gtmtypes("io_pair",1,"len")=4 + Set gtmtypes("io_pair",1,"type")="addr" + Set gtmtypfldindx("io_pair","in")=1 + Set gtmtypes("io_pair",2,"name")="io_pair.out" + Set gtmtypes("io_pair",2,"off")=4 + Set gtmtypes("io_pair",2,"len")=4 + Set gtmtypes("io_pair",2,"type")="addr" + Set gtmtypfldindx("io_pair","out")=2 + ; + Set gtmtypes("io_terminator")="struct" + Set gtmtypes("io_terminator",0)=2 + Set gtmtypes("io_terminator","len")=8 + Set gtmtypes("io_terminator",1,"name")="io_terminator.x" + Set gtmtypes("io_terminator",1,"off")=0 + Set gtmtypes("io_terminator",1,"len")=4 + Set gtmtypes("io_terminator",1,"type")="unsigned-int" + Set gtmtypfldindx("io_terminator","x")=1 + Set gtmtypes("io_terminator",2,"name")="io_terminator.mask" + Set gtmtypes("io_terminator",2,"off")=4 + Set gtmtypes("io_terminator",2,"len")=4 + Set gtmtypes("io_terminator",2,"type")="unsigned-int" + Set gtmtypfldindx("io_terminator","mask")=2 + ; + Set gtmtypes("io_termmask")="struct" + Set gtmtypes("io_termmask",0)=1 + Set gtmtypes("io_termmask","len")=32 + Set gtmtypes("io_termmask",1,"name")="io_termmask.mask" + Set gtmtypes("io_termmask",1,"off")=0 + Set gtmtypes("io_termmask",1,"len")=32 + Set gtmtypes("io_termmask",1,"type")="unsigned-int" + Set gtmtypfldindx("io_termmask","mask")=1 + Set gtmtypes("io_termmask",1,"dim")=8 + ; + Set gtmtypes("iosb")="struct" + Set gtmtypes("iosb",0)=3 + Set gtmtypes("iosb","len")=8 + Set gtmtypes("iosb",1,"name")="iosb.status" + Set gtmtypes("iosb",1,"off")=0 + Set gtmtypes("iosb",1,"len")=2 + Set gtmtypes("iosb",1,"type")="unsigned-short" + Set gtmtypfldindx("iosb","status")=1 + Set gtmtypes("iosb",2,"name")="iosb.char_ct" + Set gtmtypes("iosb",2,"off")=2 + Set gtmtypes("iosb",2,"len")=2 + Set gtmtypes("iosb",2,"type")="unsigned-short" + Set gtmtypfldindx("iosb","char_ct")=2 + Set gtmtypes("iosb",3,"name")="iosb.dev_dep_info" + Set gtmtypes("iosb",3,"off")=4 + Set gtmtypes("iosb",3,"len")=4 + Set gtmtypes("iosb",3,"type")="unsigned-int" + Set gtmtypfldindx("iosb","dev_dep_info")=3 + ; + Set gtmtypes("ipcs_mesg")="struct" + Set gtmtypes("ipcs_mesg",0)=6 + Set gtmtypes("ipcs_mesg","len")=4120 + Set gtmtypes("ipcs_mesg",1,"name")="ipcs_mesg.semid" + Set gtmtypes("ipcs_mesg",1,"off")=0 + Set gtmtypes("ipcs_mesg",1,"len")=4 + Set gtmtypes("ipcs_mesg",1,"type")="int" + Set gtmtypfldindx("ipcs_mesg","semid")=1 + Set gtmtypes("ipcs_mesg",2,"name")="ipcs_mesg.shmid" + Set gtmtypes("ipcs_mesg",2,"off")=4 + Set gtmtypes("ipcs_mesg",2,"len")=4 + Set gtmtypes("ipcs_mesg",2,"type")="int" + Set gtmtypfldindx("ipcs_mesg","shmid")=2 + Set gtmtypes("ipcs_mesg",3,"name")="ipcs_mesg.gt_sem_ctime" + Set gtmtypes("ipcs_mesg",3,"off")=8 + Set gtmtypes("ipcs_mesg",3,"len")=4 + Set gtmtypes("ipcs_mesg",3,"type")="time_t" + Set gtmtypfldindx("ipcs_mesg","gt_sem_ctime")=3 + Set gtmtypes("ipcs_mesg",4,"name")="ipcs_mesg.gt_shm_ctime" + Set gtmtypes("ipcs_mesg",4,"off")=12 + Set gtmtypes("ipcs_mesg",4,"len")=4 + Set gtmtypes("ipcs_mesg",4,"type")="time_t" + Set gtmtypfldindx("ipcs_mesg","gt_shm_ctime")=4 + Set gtmtypes("ipcs_mesg",5,"name")="ipcs_mesg.fn_len" + Set gtmtypes("ipcs_mesg",5,"off")=16 + Set gtmtypes("ipcs_mesg",5,"len")=4 + Set gtmtypes("ipcs_mesg",5,"type")="unsigned-int" + Set gtmtypfldindx("ipcs_mesg","fn_len")=5 + Set gtmtypes("ipcs_mesg",6,"name")="ipcs_mesg.fn" + Set gtmtypes("ipcs_mesg",6,"off")=20 + Set gtmtypes("ipcs_mesg",6,"len")=4097 + Set gtmtypes("ipcs_mesg",6,"type")="char" + Set gtmtypfldindx("ipcs_mesg","fn")=6 + ; + Set gtmtypes("jext_heap_elem_t")="struct" + Set gtmtypes("jext_heap_elem_t",0)=2 + Set gtmtypes("jext_heap_elem_t","len")=8 + Set gtmtypes("jext_heap_elem_t",1,"name")="jext_heap_elem_t.rctl_index" + Set gtmtypes("jext_heap_elem_t",1,"off")=0 + Set gtmtypes("jext_heap_elem_t",1,"len")=4 + Set gtmtypes("jext_heap_elem_t",1,"type")="int" + Set gtmtypfldindx("jext_heap_elem_t","rctl_index")=1 + Set gtmtypes("jext_heap_elem_t",2,"name")="jext_heap_elem_t.jext_rec" + Set gtmtypes("jext_heap_elem_t",2,"off")=4 + Set gtmtypes("jext_heap_elem_t",2,"len")=4 + Set gtmtypes("jext_heap_elem_t",2,"type")="addr" + Set gtmtypfldindx("jext_heap_elem_t","jext_rec")=2 + ; + Set gtmtypes("jnl_action")="struct" + Set gtmtypes("jnl_action",0)=2 + Set gtmtypes("jnl_action","len")=8 + Set gtmtypes("jnl_action",1,"name")="jnl_action.operation" + Set gtmtypes("jnl_action",1,"off")=0 + Set gtmtypes("jnl_action",1,"len")=4 + Set gtmtypes("jnl_action",1,"type")="int" + Set gtmtypfldindx("jnl_action","operation")=1 + Set gtmtypes("jnl_action",2,"name")="jnl_action.nodeflags" + Set gtmtypes("jnl_action",2,"off")=4 + Set gtmtypes("jnl_action",2,"len")=4 + Set gtmtypes("jnl_action",2,"type")="unsigned-int" + Set gtmtypfldindx("jnl_action","nodeflags")=2 + ; + Set gtmtypes("jnl_buffer")="struct" + Set gtmtypes("jnl_buffer",0)=60 + Set gtmtypes("jnl_buffer","len")=536 + Set gtmtypes("jnl_buffer",1,"name")="jnl_buffer.eov_tn" + Set gtmtypes("jnl_buffer",1,"off")=0 + Set gtmtypes("jnl_buffer",1,"len")=8 + Set gtmtypes("jnl_buffer",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","eov_tn")=1 + Set gtmtypes("jnl_buffer",2,"name")="jnl_buffer.epoch_tn" + Set gtmtypes("jnl_buffer",2,"off")=8 + Set gtmtypes("jnl_buffer",2,"len")=8 + Set gtmtypes("jnl_buffer",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","epoch_tn")=2 + Set gtmtypes("jnl_buffer",3,"name")="jnl_buffer.end_seqno" + Set gtmtypes("jnl_buffer",3,"off")=16 + Set gtmtypes("jnl_buffer",3,"len")=8 + Set gtmtypes("jnl_buffer",3,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","end_seqno")=3 + Set gtmtypes("jnl_buffer",4,"name")="jnl_buffer.strm_end_seqno" + Set gtmtypes("jnl_buffer",4,"off")=24 + Set gtmtypes("jnl_buffer",4,"len")=128 + Set gtmtypes("jnl_buffer",4,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","strm_end_seqno")=4 + Set gtmtypes("jnl_buffer",4,"dim")=16 + Set gtmtypes("jnl_buffer",5,"name")="jnl_buffer.min_write_size" + Set gtmtypes("jnl_buffer",5,"off")=152 + Set gtmtypes("jnl_buffer",5,"len")=4 + Set gtmtypes("jnl_buffer",5,"type")="int" + Set gtmtypfldindx("jnl_buffer","min_write_size")=5 + Set gtmtypes("jnl_buffer",6,"name")="jnl_buffer.max_write_size" + Set gtmtypes("jnl_buffer",6,"off")=156 + Set gtmtypes("jnl_buffer",6,"len")=4 + Set gtmtypes("jnl_buffer",6,"type")="int" + Set gtmtypfldindx("jnl_buffer","max_write_size")=6 + Set gtmtypes("jnl_buffer",7,"name")="jnl_buffer.size" + Set gtmtypes("jnl_buffer",7,"off")=160 + Set gtmtypes("jnl_buffer",7,"len")=4 + Set gtmtypes("jnl_buffer",7,"type")="int" + Set gtmtypfldindx("jnl_buffer","size")=7 + Set gtmtypes("jnl_buffer",8,"name")="jnl_buffer.epoch_interval" + Set gtmtypes("jnl_buffer",8,"off")=164 + Set gtmtypes("jnl_buffer",8,"len")=4 + Set gtmtypes("jnl_buffer",8,"type")="int" + Set gtmtypfldindx("jnl_buffer","epoch_interval")=8 + Set gtmtypes("jnl_buffer",9,"name")="jnl_buffer.before_images" + Set gtmtypes("jnl_buffer",9,"off")=168 + Set gtmtypes("jnl_buffer",9,"len")=4 + Set gtmtypes("jnl_buffer",9,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","before_images")=9 + Set gtmtypes("jnl_buffer",10,"name")="jnl_buffer.buff_off" + Set gtmtypes("jnl_buffer",10,"off")=172 + Set gtmtypes("jnl_buffer",10,"len")=4 + Set gtmtypes("jnl_buffer",10,"type")="uintptr_t" + Set gtmtypfldindx("jnl_buffer","buff_off")=10 + Set gtmtypes("jnl_buffer",11,"name")="jnl_buffer.gtm_free" + Set gtmtypes("jnl_buffer",11,"off")=176 + Set gtmtypes("jnl_buffer",11,"len")=4 + Set gtmtypes("jnl_buffer",11,"type")="int" + Set gtmtypfldindx("jnl_buffer","gtm_free")=11 + Set gtmtypes("jnl_buffer",12,"name")="jnl_buffer.freeaddr" + Set gtmtypes("jnl_buffer",12,"off")=180 + Set gtmtypes("jnl_buffer",12,"len")=4 + Set gtmtypes("jnl_buffer",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","freeaddr")=12 + Set gtmtypes("jnl_buffer",13,"name")="jnl_buffer.end_of_data" + Set gtmtypes("jnl_buffer",13,"off")=184 + Set gtmtypes("jnl_buffer",13,"len")=4 + Set gtmtypes("jnl_buffer",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","end_of_data")=13 + Set gtmtypes("jnl_buffer",14,"name")="jnl_buffer.filesize" + Set gtmtypes("jnl_buffer",14,"off")=188 + Set gtmtypes("jnl_buffer",14,"len")=4 + Set gtmtypes("jnl_buffer",14,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","filesize")=14 + Set gtmtypes("jnl_buffer",15,"name")="jnl_buffer.blocked" + Set gtmtypes("jnl_buffer",15,"off")=192 + Set gtmtypes("jnl_buffer",15,"len")=4 + Set gtmtypes("jnl_buffer",15,"type")="int" + Set gtmtypfldindx("jnl_buffer","blocked")=15 + Set gtmtypes("jnl_buffer",16,"name")="jnl_buffer.fsync_dskaddr" + Set gtmtypes("jnl_buffer",16,"off")=196 + Set gtmtypes("jnl_buffer",16,"len")=4 + Set gtmtypes("jnl_buffer",16,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","fsync_dskaddr")=16 + Set gtmtypes("jnl_buffer",17,"name")="jnl_buffer.dsk" + Set gtmtypes("jnl_buffer",17,"off")=200 + Set gtmtypes("jnl_buffer",17,"len")=4 + Set gtmtypes("jnl_buffer",17,"type")="int" + Set gtmtypfldindx("jnl_buffer","dsk")=17 + Set gtmtypes("jnl_buffer",18,"name")="jnl_buffer.wrtsize" + Set gtmtypes("jnl_buffer",18,"off")=204 + Set gtmtypes("jnl_buffer",18,"len")=4 + Set gtmtypes("jnl_buffer",18,"type")="int" + Set gtmtypfldindx("jnl_buffer","wrtsize")=18 + Set gtmtypes("jnl_buffer",19,"name")="jnl_buffer.dskaddr" + Set gtmtypes("jnl_buffer",19,"off")=208 + Set gtmtypes("jnl_buffer",19,"len")=4 + Set gtmtypes("jnl_buffer",19,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","dskaddr")=19 + Set gtmtypes("jnl_buffer",20,"name")="jnl_buffer.now_writer" + Set gtmtypes("jnl_buffer",20,"off")=212 + Set gtmtypes("jnl_buffer",20,"len")=4 + Set gtmtypes("jnl_buffer",20,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","now_writer")=20 + Set gtmtypes("jnl_buffer",21,"name")="jnl_buffer.image_count" + Set gtmtypes("jnl_buffer",21,"off")=216 + Set gtmtypes("jnl_buffer",21,"len")=4 + Set gtmtypes("jnl_buffer",21,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","image_count")=21 + Set gtmtypes("jnl_buffer",22,"name")="jnl_buffer.iosb" + Set gtmtypes("jnl_buffer",22,"off")=220 + Set gtmtypes("jnl_buffer",22,"len")=8 + Set gtmtypes("jnl_buffer",22,"type")="struct" + Set gtmtypfldindx("jnl_buffer","iosb")=22 + Set gtmtypes("jnl_buffer",23,"name")="jnl_buffer.iosb.cond" + Set gtmtypes("jnl_buffer",23,"off")=220 + Set gtmtypes("jnl_buffer",23,"len")=2 + Set gtmtypes("jnl_buffer",23,"type")="short" + Set gtmtypfldindx("jnl_buffer","iosb.cond")=23 + Set gtmtypes("jnl_buffer",24,"name")="jnl_buffer.iosb.length" + Set gtmtypes("jnl_buffer",24,"off")=222 + Set gtmtypes("jnl_buffer",24,"len")=2 + Set gtmtypes("jnl_buffer",24,"type")="unsigned-short" + Set gtmtypfldindx("jnl_buffer","iosb.length")=24 + Set gtmtypes("jnl_buffer",25,"name")="jnl_buffer.iosb.dev_specific" + Set gtmtypes("jnl_buffer",25,"off")=224 + Set gtmtypes("jnl_buffer",25,"len")=4 + Set gtmtypes("jnl_buffer",25,"type")="int" + Set gtmtypfldindx("jnl_buffer","iosb.dev_specific")=25 + Set gtmtypes("jnl_buffer",26,"name")="jnl_buffer.log2_of_alignsize" + Set gtmtypes("jnl_buffer",26,"off")=228 + Set gtmtypes("jnl_buffer",26,"len")=4 + Set gtmtypes("jnl_buffer",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","log2_of_alignsize")=26 + Set gtmtypes("jnl_buffer",27,"name")="jnl_buffer.eov_timestamp" + Set gtmtypes("jnl_buffer",27,"off")=232 + Set gtmtypes("jnl_buffer",27,"len")=4 + Set gtmtypes("jnl_buffer",27,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","eov_timestamp")=27 + Set gtmtypes("jnl_buffer",28,"name")="jnl_buffer.cycle" + Set gtmtypes("jnl_buffer",28,"off")=236 + Set gtmtypes("jnl_buffer",28,"len")=4 + Set gtmtypes("jnl_buffer",28,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","cycle")=28 + Set gtmtypes("jnl_buffer",29,"name")="jnl_buffer.qiocnt" + Set gtmtypes("jnl_buffer",29,"off")=240 + Set gtmtypes("jnl_buffer",29,"len")=4 + Set gtmtypes("jnl_buffer",29,"type")="int" + Set gtmtypfldindx("jnl_buffer","qiocnt")=29 + Set gtmtypes("jnl_buffer",30,"name")="jnl_buffer.bytcnt" + Set gtmtypes("jnl_buffer",30,"off")=244 + Set gtmtypes("jnl_buffer",30,"len")=4 + Set gtmtypes("jnl_buffer",30,"type")="int" + Set gtmtypfldindx("jnl_buffer","bytcnt")=30 + Set gtmtypes("jnl_buffer",31,"name")="jnl_buffer.errcnt" + Set gtmtypes("jnl_buffer",31,"off")=248 + Set gtmtypes("jnl_buffer",31,"len")=4 + Set gtmtypes("jnl_buffer",31,"type")="int" + Set gtmtypfldindx("jnl_buffer","errcnt")=31 + Set gtmtypes("jnl_buffer",32,"name")="jnl_buffer.reccnt" + Set gtmtypes("jnl_buffer",32,"off")=252 + Set gtmtypes("jnl_buffer",32,"len")=144 + Set gtmtypes("jnl_buffer",32,"type")="int" + Set gtmtypfldindx("jnl_buffer","reccnt")=32 + Set gtmtypes("jnl_buffer",32,"dim")=36 + Set gtmtypes("jnl_buffer",33,"name")="jnl_buffer.filler_align" + Set gtmtypes("jnl_buffer",33,"off")=396 + Set gtmtypes("jnl_buffer",33,"len")=4 + Set gtmtypes("jnl_buffer",33,"type")="int" + Set gtmtypfldindx("jnl_buffer","filler_align")=33 + Set gtmtypes("jnl_buffer",34,"name")="jnl_buffer.prev_jrec_time" + Set gtmtypes("jnl_buffer",34,"off")=400 + Set gtmtypes("jnl_buffer",34,"len")=4 + Set gtmtypes("jnl_buffer",34,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","prev_jrec_time")=34 + Set gtmtypes("jnl_buffer",35,"name")="jnl_buffer.free_update_pid" + Set gtmtypes("jnl_buffer",35,"off")=404 + Set gtmtypes("jnl_buffer",35,"len")=4 + Set gtmtypes("jnl_buffer",35,"type")="int" + Set gtmtypfldindx("jnl_buffer","free_update_pid")=35 + Set gtmtypes("jnl_buffer",36,"name")="jnl_buffer.next_epoch_time" + Set gtmtypes("jnl_buffer",36,"off")=408 + Set gtmtypes("jnl_buffer",36,"len")=4 + Set gtmtypes("jnl_buffer",36,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","next_epoch_time")=36 + Set gtmtypes("jnl_buffer",37,"name")="jnl_buffer.need_db_fsync" + Set gtmtypes("jnl_buffer",37,"off")=412 + Set gtmtypes("jnl_buffer",37,"len")=4 + Set gtmtypes("jnl_buffer",37,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","need_db_fsync")=37 + Set gtmtypes("jnl_buffer",38,"name")="jnl_buffer.io_in_prog" + Set gtmtypes("jnl_buffer",38,"off")=416 + Set gtmtypes("jnl_buffer",38,"len")=4 + Set gtmtypes("jnl_buffer",38,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog")=38 + Set gtmtypes("jnl_buffer",39,"name")="jnl_buffer.enospc_errcnt" + Set gtmtypes("jnl_buffer",39,"off")=420 + Set gtmtypes("jnl_buffer",39,"len")=4 + Set gtmtypes("jnl_buffer",39,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","enospc_errcnt")=39 + Set gtmtypes("jnl_buffer",40,"name")="jnl_buffer.max_jrec_len" + Set gtmtypes("jnl_buffer",40,"off")=424 + Set gtmtypes("jnl_buffer",40,"len")=4 + Set gtmtypes("jnl_buffer",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","max_jrec_len")=40 + Set gtmtypes("jnl_buffer",41,"name")="jnl_buffer.fs_block_size" + Set gtmtypes("jnl_buffer",41,"off")=428 + Set gtmtypes("jnl_buffer",41,"len")=4 + Set gtmtypes("jnl_buffer",41,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","fs_block_size")=41 + Set gtmtypes("jnl_buffer",42,"name")="jnl_buffer.post_epoch_freeaddr" + Set gtmtypes("jnl_buffer",42,"off")=432 + Set gtmtypes("jnl_buffer",42,"len")=4 + Set gtmtypes("jnl_buffer",42,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","post_epoch_freeaddr")=42 + Set gtmtypes("jnl_buffer",43,"name")="jnl_buffer.last_eof_written" + Set gtmtypes("jnl_buffer",43,"off")=436 + Set gtmtypes("jnl_buffer",43,"len")=4 + Set gtmtypes("jnl_buffer",43,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","last_eof_written")=43 + Set gtmtypes("jnl_buffer",44,"name")="jnl_buffer.end_of_data_at_open" + Set gtmtypes("jnl_buffer",44,"off")=440 + Set gtmtypes("jnl_buffer",44,"len")=4 + Set gtmtypes("jnl_buffer",44,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","end_of_data_at_open")=44 + Set gtmtypes("jnl_buffer",45,"name")="jnl_buffer.fill_cacheline0" + Set gtmtypes("jnl_buffer",45,"off")=444 + Set gtmtypes("jnl_buffer",45,"len")=24 + Set gtmtypes("jnl_buffer",45,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline0")=45 + Set gtmtypes("jnl_buffer",46,"name")="jnl_buffer.io_in_prog_latch" + Set gtmtypes("jnl_buffer",46,"off")=468 + Set gtmtypes("jnl_buffer",46,"len")=8 + Set gtmtypes("jnl_buffer",46,"type")="global_latch_t" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch")=46 + Set gtmtypes("jnl_buffer",47,"name")="jnl_buffer.io_in_prog_latch.u" + Set gtmtypes("jnl_buffer",47,"off")=468 + Set gtmtypes("jnl_buffer",47,"len")=8 + Set gtmtypes("jnl_buffer",47,"type")="union" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u")=47 + Set gtmtypes("jnl_buffer",48,"name")="jnl_buffer.io_in_prog_latch.u.pid_imgcnt" + Set gtmtypes("jnl_buffer",48,"off")=468 + Set gtmtypes("jnl_buffer",48,"len")=8 + Set gtmtypes("jnl_buffer",48,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.pid_imgcnt")=48 + Set gtmtypes("jnl_buffer",49,"name")="jnl_buffer.io_in_prog_latch.u.parts" + Set gtmtypes("jnl_buffer",49,"off")=468 + Set gtmtypes("jnl_buffer",49,"len")=8 + Set gtmtypes("jnl_buffer",49,"type")="struct" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts")=49 + Set gtmtypes("jnl_buffer",50,"name")="jnl_buffer.io_in_prog_latch.u.parts.latch_pid" + Set gtmtypes("jnl_buffer",50,"off")=468 + Set gtmtypes("jnl_buffer",50,"len")=4 + Set gtmtypes("jnl_buffer",50,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts.latch_pid")=50 + Set gtmtypes("jnl_buffer",51,"name")="jnl_buffer.io_in_prog_latch.u.parts.latch_word" + Set gtmtypes("jnl_buffer",51,"off")=472 + Set gtmtypes("jnl_buffer",51,"len")=4 + Set gtmtypes("jnl_buffer",51,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts.latch_word")=51 + Set gtmtypes("jnl_buffer",52,"name")="jnl_buffer.fill_cacheline1" + Set gtmtypes("jnl_buffer",52,"off")=476 + Set gtmtypes("jnl_buffer",52,"len")=24 + Set gtmtypes("jnl_buffer",52,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline1")=52 + Set gtmtypes("jnl_buffer",53,"name")="jnl_buffer.fsync_in_prog_latch" + Set gtmtypes("jnl_buffer",53,"off")=500 + Set gtmtypes("jnl_buffer",53,"len")=8 + Set gtmtypes("jnl_buffer",53,"type")="global_latch_t" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch")=53 + Set gtmtypes("jnl_buffer",54,"name")="jnl_buffer.fsync_in_prog_latch.u" + Set gtmtypes("jnl_buffer",54,"off")=500 + Set gtmtypes("jnl_buffer",54,"len")=8 + Set gtmtypes("jnl_buffer",54,"type")="union" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u")=54 + Set gtmtypes("jnl_buffer",55,"name")="jnl_buffer.fsync_in_prog_latch.u.pid_imgcnt" + Set gtmtypes("jnl_buffer",55,"off")=500 + Set gtmtypes("jnl_buffer",55,"len")=8 + Set gtmtypes("jnl_buffer",55,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.pid_imgcnt")=55 + Set gtmtypes("jnl_buffer",56,"name")="jnl_buffer.fsync_in_prog_latch.u.parts" + Set gtmtypes("jnl_buffer",56,"off")=500 + Set gtmtypes("jnl_buffer",56,"len")=8 + Set gtmtypes("jnl_buffer",56,"type")="struct" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts")=56 + Set gtmtypes("jnl_buffer",57,"name")="jnl_buffer.fsync_in_prog_latch.u.parts.latch_pid" + Set gtmtypes("jnl_buffer",57,"off")=500 + Set gtmtypes("jnl_buffer",57,"len")=4 + Set gtmtypes("jnl_buffer",57,"type")="int" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts.latch_pid")=57 + Set gtmtypes("jnl_buffer",58,"name")="jnl_buffer.fsync_in_prog_latch.u.parts.latch_word" + Set gtmtypes("jnl_buffer",58,"off")=504 + Set gtmtypes("jnl_buffer",58,"len")=4 + Set gtmtypes("jnl_buffer",58,"type")="int" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts.latch_word")=58 + Set gtmtypes("jnl_buffer",59,"name")="jnl_buffer.fill_cacheline2" + Set gtmtypes("jnl_buffer",59,"off")=508 + Set gtmtypes("jnl_buffer",59,"len")=24 + Set gtmtypes("jnl_buffer",59,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline2")=59 + Set gtmtypes("jnl_buffer",60,"name")="jnl_buffer.buff" + Set gtmtypes("jnl_buffer",60,"off")=532 + Set gtmtypes("jnl_buffer",60,"len")=1 + Set gtmtypes("jnl_buffer",60,"type")="unsigned-char" + Set gtmtypfldindx("jnl_buffer","buff")=60 + ; + Set gtmtypes("jnl_create_info")="struct" + Set gtmtypes("jnl_create_info",0)=35 + Set gtmtypes("jnl_create_info","len")=540 + Set gtmtypes("jnl_create_info",1,"name")="jnl_create_info.status" + Set gtmtypes("jnl_create_info",1,"off")=0 + Set gtmtypes("jnl_create_info",1,"len")=4 + Set gtmtypes("jnl_create_info",1,"type")="int" + Set gtmtypfldindx("jnl_create_info","status")=1 + Set gtmtypes("jnl_create_info",2,"name")="jnl_create_info.alloc" + Set gtmtypes("jnl_create_info",2,"off")=4 + Set gtmtypes("jnl_create_info",2,"len")=4 + Set gtmtypes("jnl_create_info",2,"type")="int" + Set gtmtypfldindx("jnl_create_info","alloc")=2 + Set gtmtypes("jnl_create_info",3,"name")="jnl_create_info.extend" + Set gtmtypes("jnl_create_info",3,"off")=8 + Set gtmtypes("jnl_create_info",3,"len")=4 + Set gtmtypes("jnl_create_info",3,"type")="int" + Set gtmtypfldindx("jnl_create_info","extend")=3 + Set gtmtypes("jnl_create_info",4,"name")="jnl_create_info.buffer" + Set gtmtypes("jnl_create_info",4,"off")=12 + Set gtmtypes("jnl_create_info",4,"len")=4 + Set gtmtypes("jnl_create_info",4,"type")="int" + Set gtmtypfldindx("jnl_create_info","buffer")=4 + Set gtmtypes("jnl_create_info",5,"name")="jnl_create_info.csd" + Set gtmtypes("jnl_create_info",5,"off")=16 + Set gtmtypes("jnl_create_info",5,"len")=4 + Set gtmtypes("jnl_create_info",5,"type")="addr" + Set gtmtypfldindx("jnl_create_info","csd")=5 + Set gtmtypes("jnl_create_info",6,"name")="jnl_create_info.reg_seqno" + Set gtmtypes("jnl_create_info",6,"off")=20 + Set gtmtypes("jnl_create_info",6,"len")=8 + Set gtmtypes("jnl_create_info",6,"type")="uint64_t" + Set gtmtypfldindx("jnl_create_info","reg_seqno")=6 + Set gtmtypes("jnl_create_info",7,"name")="jnl_create_info.jnl" + Set gtmtypes("jnl_create_info",7,"off")=28 + Set gtmtypes("jnl_create_info",7,"len")=256 + Set gtmtypes("jnl_create_info",7,"type")="unsigned-char" + Set gtmtypfldindx("jnl_create_info","jnl")=7 + Set gtmtypes("jnl_create_info",8,"name")="jnl_create_info.fn" + Set gtmtypes("jnl_create_info",8,"off")=284 + Set gtmtypes("jnl_create_info",8,"len")=4 + Set gtmtypes("jnl_create_info",8,"type")="addr" + Set gtmtypfldindx("jnl_create_info","fn")=8 + Set gtmtypes("jnl_create_info",9,"name")="jnl_create_info.max_jrec_len" + Set gtmtypes("jnl_create_info",9,"off")=288 + Set gtmtypes("jnl_create_info",9,"len")=4 + Set gtmtypes("jnl_create_info",9,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","max_jrec_len")=9 + Set gtmtypes("jnl_create_info",10,"name")="jnl_create_info.fn_len" + Set gtmtypes("jnl_create_info",10,"off")=292 + Set gtmtypes("jnl_create_info",10,"len")=2 + Set gtmtypes("jnl_create_info",10,"type")="short" + Set gtmtypfldindx("jnl_create_info","fn_len")=10 + Set gtmtypes("jnl_create_info",11,"name")="jnl_create_info.jnl_len" + Set gtmtypes("jnl_create_info",11,"off")=294 + Set gtmtypes("jnl_create_info",11,"len")=2 + Set gtmtypes("jnl_create_info",11,"type")="short" + Set gtmtypfldindx("jnl_create_info","jnl_len")=11 + Set gtmtypes("jnl_create_info",12,"name")="jnl_create_info.jnl_def_len" + Set gtmtypes("jnl_create_info",12,"off")=296 + Set gtmtypes("jnl_create_info",12,"len")=2 + Set gtmtypes("jnl_create_info",12,"type")="short" + Set gtmtypfldindx("jnl_create_info","jnl_def_len")=12 + Set gtmtypes("jnl_create_info",13,"name")="jnl_create_info.before_images" + Set gtmtypes("jnl_create_info",13,"off")=298 + Set gtmtypes("jnl_create_info",13,"len")=1 + Set gtmtypes("jnl_create_info",13,"type")="char" + Set gtmtypfldindx("jnl_create_info","before_images")=13 + Set gtmtypes("jnl_create_info",14,"name")="jnl_create_info.filler_bool" + Set gtmtypes("jnl_create_info",14,"off")=299 + Set gtmtypes("jnl_create_info",14,"len")=1 + Set gtmtypes("jnl_create_info",14,"type")="char" + Set gtmtypfldindx("jnl_create_info","filler_bool")=14 + Set gtmtypes("jnl_create_info",15,"name")="jnl_create_info.alignsize" + Set gtmtypes("jnl_create_info",15,"off")=300 + Set gtmtypes("jnl_create_info",15,"len")=4 + Set gtmtypes("jnl_create_info",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","alignsize")=15 + Set gtmtypes("jnl_create_info",16,"name")="jnl_create_info.autoswitchlimit" + Set gtmtypes("jnl_create_info",16,"off")=304 + Set gtmtypes("jnl_create_info",16,"len")=4 + Set gtmtypes("jnl_create_info",16,"type")="int" + Set gtmtypfldindx("jnl_create_info","autoswitchlimit")=16 + Set gtmtypes("jnl_create_info",17,"name")="jnl_create_info.epoch_interval" + Set gtmtypes("jnl_create_info",17,"off")=308 + Set gtmtypes("jnl_create_info",17,"len")=4 + Set gtmtypes("jnl_create_info",17,"type")="int" + Set gtmtypfldindx("jnl_create_info","epoch_interval")=17 + Set gtmtypes("jnl_create_info",18,"name")="jnl_create_info.prev_jnl" + Set gtmtypes("jnl_create_info",18,"off")=312 + Set gtmtypes("jnl_create_info",18,"len")=4 + Set gtmtypes("jnl_create_info",18,"type")="addr" + Set gtmtypfldindx("jnl_create_info","prev_jnl")=18 + Set gtmtypes("jnl_create_info",19,"name")="jnl_create_info.prev_jnl_len" + Set gtmtypes("jnl_create_info",19,"off")=316 + Set gtmtypes("jnl_create_info",19,"len")=4 + Set gtmtypes("jnl_create_info",19,"type")="int" + Set gtmtypfldindx("jnl_create_info","prev_jnl_len")=19 + Set gtmtypes("jnl_create_info",20,"name")="jnl_create_info.jnl_state" + Set gtmtypes("jnl_create_info",20,"off")=320 + Set gtmtypes("jnl_create_info",20,"len")=4 + Set gtmtypes("jnl_create_info",20,"type")="int" + Set gtmtypfldindx("jnl_create_info","jnl_state")=20 + Set gtmtypes("jnl_create_info",21,"name")="jnl_create_info.repl_state" + Set gtmtypes("jnl_create_info",21,"off")=324 + Set gtmtypes("jnl_create_info",21,"len")=4 + Set gtmtypes("jnl_create_info",21,"type")="int" + Set gtmtypfldindx("jnl_create_info","repl_state")=21 + Set gtmtypes("jnl_create_info",22,"name")="jnl_create_info.status2" + Set gtmtypes("jnl_create_info",22,"off")=328 + Set gtmtypes("jnl_create_info",22,"len")=4 + Set gtmtypes("jnl_create_info",22,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","status2")=22 + Set gtmtypes("jnl_create_info",23,"name")="jnl_create_info.no_rename" + Set gtmtypes("jnl_create_info",23,"off")=332 + Set gtmtypes("jnl_create_info",23,"len")=4 + Set gtmtypes("jnl_create_info",23,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","no_rename")=23 + Set gtmtypes("jnl_create_info",24,"name")="jnl_create_info.no_prev_link" + Set gtmtypes("jnl_create_info",24,"off")=336 + Set gtmtypes("jnl_create_info",24,"len")=4 + Set gtmtypes("jnl_create_info",24,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","no_prev_link")=24 + Set gtmtypes("jnl_create_info",25,"name")="jnl_create_info.blks_to_upgrd" + Set gtmtypes("jnl_create_info",25,"off")=340 + Set gtmtypes("jnl_create_info",25,"len")=4 + Set gtmtypes("jnl_create_info",25,"type")="int" + Set gtmtypfldindx("jnl_create_info","blks_to_upgrd")=25 + Set gtmtypes("jnl_create_info",26,"name")="jnl_create_info.checksum" + Set gtmtypes("jnl_create_info",26,"off")=344 + Set gtmtypes("jnl_create_info",26,"len")=4 + Set gtmtypes("jnl_create_info",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","checksum")=26 + Set gtmtypes("jnl_create_info",27,"name")="jnl_create_info.free_blocks" + Set gtmtypes("jnl_create_info",27,"off")=348 + Set gtmtypes("jnl_create_info",27,"len")=4 + Set gtmtypes("jnl_create_info",27,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","free_blocks")=27 + Set gtmtypes("jnl_create_info",28,"name")="jnl_create_info.total_blks" + Set gtmtypes("jnl_create_info",28,"off")=352 + Set gtmtypes("jnl_create_info",28,"len")=4 + Set gtmtypes("jnl_create_info",28,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","total_blks")=28 + Set gtmtypes("jnl_create_info",29,"name")="jnl_create_info.is_encrypted" + Set gtmtypes("jnl_create_info",29,"off")=356 + Set gtmtypes("jnl_create_info",29,"len")=4 + Set gtmtypes("jnl_create_info",29,"type")="int" + Set gtmtypfldindx("jnl_create_info","is_encrypted")=29 + Set gtmtypes("jnl_create_info",30,"name")="jnl_create_info.encryption_hash" + Set gtmtypes("jnl_create_info",30,"off")=360 + Set gtmtypes("jnl_create_info",30,"len")=80 + Set gtmtypes("jnl_create_info",30,"type")="char" + Set gtmtypfldindx("jnl_create_info","encryption_hash")=30 + Set gtmtypes("jnl_create_info",31,"name")="jnl_create_info.encryption_hash2" + Set gtmtypes("jnl_create_info",31,"off")=440 + Set gtmtypes("jnl_create_info",31,"len")=80 + Set gtmtypes("jnl_create_info",31,"type")="char" + Set gtmtypfldindx("jnl_create_info","encryption_hash2")=31 + Set gtmtypes("jnl_create_info",32,"name")="jnl_create_info.non_null_iv" + Set gtmtypes("jnl_create_info",32,"off")=520 + Set gtmtypes("jnl_create_info",32,"len")=4 + Set gtmtypes("jnl_create_info",32,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","non_null_iv")=32 + Set gtmtypes("jnl_create_info",33,"name")="jnl_create_info.encryption_hash_cutoff" + Set gtmtypes("jnl_create_info",33,"off")=524 + Set gtmtypes("jnl_create_info",33,"len")=4 + Set gtmtypes("jnl_create_info",33,"type")="int" + Set gtmtypfldindx("jnl_create_info","encryption_hash_cutoff")=33 + Set gtmtypes("jnl_create_info",34,"name")="jnl_create_info.encryption_hash2_start_tn" + Set gtmtypes("jnl_create_info",34,"off")=528 + Set gtmtypes("jnl_create_info",34,"len")=8 + Set gtmtypes("jnl_create_info",34,"type")="uint64_t" + Set gtmtypfldindx("jnl_create_info","encryption_hash2_start_tn")=34 + Set gtmtypes("jnl_create_info",35,"name")="jnl_create_info.csa" + Set gtmtypes("jnl_create_info",35,"off")=536 + Set gtmtypes("jnl_create_info",35,"len")=4 + Set gtmtypes("jnl_create_info",35,"type")="addr" + Set gtmtypfldindx("jnl_create_info","csa")=35 + ; + Set gtmtypes("jnl_ctl_list")="struct" + Set gtmtypes("jnl_ctl_list",0)=47 + Set gtmtypes("jnl_ctl_list","len")=588 + Set gtmtypes("jnl_ctl_list",1,"name")="jnl_ctl_list.turn_around_tn" + Set gtmtypes("jnl_ctl_list",1,"off")=0 + Set gtmtypes("jnl_ctl_list",1,"len")=8 + Set gtmtypes("jnl_ctl_list",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_tn")=1 + Set gtmtypes("jnl_ctl_list",2,"name")="jnl_ctl_list.turn_around_seqno" + Set gtmtypes("jnl_ctl_list",2,"off")=8 + Set gtmtypes("jnl_ctl_list",2,"len")=8 + Set gtmtypes("jnl_ctl_list",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_seqno")=2 + Set gtmtypes("jnl_ctl_list",3,"name")="jnl_ctl_list.jnl_fn" + Set gtmtypes("jnl_ctl_list",3,"off")=16 + Set gtmtypes("jnl_ctl_list",3,"len")=256 + Set gtmtypes("jnl_ctl_list",3,"type")="unsigned-char" + Set gtmtypfldindx("jnl_ctl_list","jnl_fn")=3 + Set gtmtypes("jnl_ctl_list",4,"name")="jnl_ctl_list.jnl_fn_len" + Set gtmtypes("jnl_ctl_list",4,"off")=272 + Set gtmtypes("jnl_ctl_list",4,"len")=4 + Set gtmtypes("jnl_ctl_list",4,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","jnl_fn_len")=4 + Set gtmtypes("jnl_ctl_list",5,"name")="jnl_ctl_list.jfh" + Set gtmtypes("jnl_ctl_list",5,"off")=276 + Set gtmtypes("jnl_ctl_list",5,"len")=4 + Set gtmtypes("jnl_ctl_list",5,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","jfh")=5 + Set gtmtypes("jnl_ctl_list",6,"name")="jnl_ctl_list.lvrec_time" + Set gtmtypes("jnl_ctl_list",6,"off")=280 + Set gtmtypes("jnl_ctl_list",6,"len")=4 + Set gtmtypes("jnl_ctl_list",6,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","lvrec_time")=6 + Set gtmtypes("jnl_ctl_list",7,"name")="jnl_ctl_list.lvrec_off" + Set gtmtypes("jnl_ctl_list",7,"off")=284 + Set gtmtypes("jnl_ctl_list",7,"len")=4 + Set gtmtypes("jnl_ctl_list",7,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","lvrec_off")=7 + Set gtmtypes("jnl_ctl_list",8,"name")="jnl_ctl_list.rec_offset" + Set gtmtypes("jnl_ctl_list",8,"off")=288 + Set gtmtypes("jnl_ctl_list",8,"len")=4 + Set gtmtypes("jnl_ctl_list",8,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","rec_offset")=8 + Set gtmtypes("jnl_ctl_list",9,"name")="jnl_ctl_list.os_filesize" + Set gtmtypes("jnl_ctl_list",9,"off")=292 + Set gtmtypes("jnl_ctl_list",9,"len")=4 + Set gtmtypes("jnl_ctl_list",9,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","os_filesize")=9 + Set gtmtypes("jnl_ctl_list",10,"name")="jnl_ctl_list.eof_addr" + Set gtmtypes("jnl_ctl_list",10,"off")=296 + Set gtmtypes("jnl_ctl_list",10,"len")=4 + Set gtmtypes("jnl_ctl_list",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","eof_addr")=10 + Set gtmtypes("jnl_ctl_list",11,"name")="jnl_ctl_list.apply_pblk_stop_offset" + Set gtmtypes("jnl_ctl_list",11,"off")=300 + Set gtmtypes("jnl_ctl_list",11,"len")=4 + Set gtmtypes("jnl_ctl_list",11,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","apply_pblk_stop_offset")=11 + Set gtmtypes("jnl_ctl_list",12,"name")="jnl_ctl_list.turn_around_offset" + Set gtmtypes("jnl_ctl_list",12,"off")=304 + Set gtmtypes("jnl_ctl_list",12,"len")=4 + Set gtmtypes("jnl_ctl_list",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","turn_around_offset")=12 + Set gtmtypes("jnl_ctl_list",13,"name")="jnl_ctl_list.turn_around_time" + Set gtmtypes("jnl_ctl_list",13,"off")=308 + Set gtmtypes("jnl_ctl_list",13,"len")=4 + Set gtmtypes("jnl_ctl_list",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","turn_around_time")=13 + Set gtmtypes("jnl_ctl_list",14,"name")="jnl_ctl_list.properly_closed" + Set gtmtypes("jnl_ctl_list",14,"off")=312 + Set gtmtypes("jnl_ctl_list",14,"len")=4 + Set gtmtypes("jnl_ctl_list",14,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","properly_closed")=14 + Set gtmtypes("jnl_ctl_list",15,"name")="jnl_ctl_list.tail_analysis" + Set gtmtypes("jnl_ctl_list",15,"off")=316 + Set gtmtypes("jnl_ctl_list",15,"len")=4 + Set gtmtypes("jnl_ctl_list",15,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","tail_analysis")=15 + Set gtmtypes("jnl_ctl_list",16,"name")="jnl_ctl_list.after_end_of_data" + Set gtmtypes("jnl_ctl_list",16,"off")=320 + Set gtmtypes("jnl_ctl_list",16,"len")=4 + Set gtmtypes("jnl_ctl_list",16,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","after_end_of_data")=16 + Set gtmtypes("jnl_ctl_list",17,"name")="jnl_ctl_list.read_only" + Set gtmtypes("jnl_ctl_list",17,"off")=324 + Set gtmtypes("jnl_ctl_list",17,"len")=4 + Set gtmtypes("jnl_ctl_list",17,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","read_only")=17 + Set gtmtypes("jnl_ctl_list",18,"name")="jnl_ctl_list.jnlrec_cnt" + Set gtmtypes("jnl_ctl_list",18,"off")=328 + Set gtmtypes("jnl_ctl_list",18,"len")=144 + Set gtmtypes("jnl_ctl_list",18,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","jnlrec_cnt")=18 + Set gtmtypes("jnl_ctl_list",18,"dim")=36 + Set gtmtypes("jnl_ctl_list",19,"name")="jnl_ctl_list.status" + Set gtmtypes("jnl_ctl_list",19,"off")=472 + Set gtmtypes("jnl_ctl_list",19,"len")=4 + Set gtmtypes("jnl_ctl_list",19,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","status")=19 + Set gtmtypes("jnl_ctl_list",20,"name")="jnl_ctl_list.status2" + Set gtmtypes("jnl_ctl_list",20,"off")=476 + Set gtmtypes("jnl_ctl_list",20,"len")=4 + Set gtmtypes("jnl_ctl_list",20,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","status2")=20 + Set gtmtypes("jnl_ctl_list",21,"name")="jnl_ctl_list.channel" + Set gtmtypes("jnl_ctl_list",21,"off")=480 + Set gtmtypes("jnl_ctl_list",21,"len")=4 + Set gtmtypes("jnl_ctl_list",21,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","channel")=21 + Set gtmtypes("jnl_ctl_list",22,"name")="jnl_ctl_list.fid" + Set gtmtypes("jnl_ctl_list",22,"off")=484 + Set gtmtypes("jnl_ctl_list",22,"len")=20 + Set gtmtypes("jnl_ctl_list",22,"type")="unix_file_id" + Set gtmtypfldindx("jnl_ctl_list","fid")=22 + Set gtmtypes("jnl_ctl_list",23,"name")="jnl_ctl_list.fid.inode" + Set gtmtypes("jnl_ctl_list",23,"off")=484 + Set gtmtypes("jnl_ctl_list",23,"len")=8 + Set gtmtypes("jnl_ctl_list",23,"type")="ino_t" + Set gtmtypfldindx("jnl_ctl_list","fid.inode")=23 + Set gtmtypes("jnl_ctl_list",24,"name")="jnl_ctl_list.fid.device" + Set gtmtypes("jnl_ctl_list",24,"off")=492 + Set gtmtypes("jnl_ctl_list",24,"len")=8 + Set gtmtypes("jnl_ctl_list",24,"type")="dev_t" + Set gtmtypfldindx("jnl_ctl_list","fid.device")=24 + Set gtmtypes("jnl_ctl_list",25,"name")="jnl_ctl_list.fid.st_gen" + Set gtmtypes("jnl_ctl_list",25,"off")=500 + Set gtmtypes("jnl_ctl_list",25,"len")=4 + Set gtmtypes("jnl_ctl_list",25,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","fid.st_gen")=25 + Set gtmtypes("jnl_ctl_list",26,"name")="jnl_ctl_list.pini_list" + Set gtmtypes("jnl_ctl_list",26,"off")=504 + Set gtmtypes("jnl_ctl_list",26,"len")=56 + Set gtmtypes("jnl_ctl_list",26,"type")="hash_table_int4" + Set gtmtypfldindx("jnl_ctl_list","pini_list")=26 + Set gtmtypes("jnl_ctl_list",27,"name")="jnl_ctl_list.pini_list.base" + Set gtmtypes("jnl_ctl_list",27,"off")=504 + Set gtmtypes("jnl_ctl_list",27,"len")=4 + Set gtmtypes("jnl_ctl_list",27,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.base")=27 + Set gtmtypes("jnl_ctl_list",28,"name")="jnl_ctl_list.pini_list.top" + Set gtmtypes("jnl_ctl_list",28,"off")=508 + Set gtmtypes("jnl_ctl_list",28,"len")=4 + Set gtmtypes("jnl_ctl_list",28,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.top")=28 + Set gtmtypes("jnl_ctl_list",29,"name")="jnl_ctl_list.pini_list.size" + Set gtmtypes("jnl_ctl_list",29,"off")=512 + Set gtmtypes("jnl_ctl_list",29,"len")=4 + Set gtmtypes("jnl_ctl_list",29,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.size")=29 + Set gtmtypes("jnl_ctl_list",30,"name")="jnl_ctl_list.pini_list.initial_size" + Set gtmtypes("jnl_ctl_list",30,"off")=516 + Set gtmtypes("jnl_ctl_list",30,"len")=4 + Set gtmtypes("jnl_ctl_list",30,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.initial_size")=30 + Set gtmtypes("jnl_ctl_list",31,"name")="jnl_ctl_list.pini_list.spare_base" + Set gtmtypes("jnl_ctl_list",31,"off")=520 + Set gtmtypes("jnl_ctl_list",31,"len")=4 + Set gtmtypes("jnl_ctl_list",31,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.spare_base")=31 + Set gtmtypes("jnl_ctl_list",32,"name")="jnl_ctl_list.pini_list.spare_base_size" + Set gtmtypes("jnl_ctl_list",32,"off")=524 + Set gtmtypes("jnl_ctl_list",32,"len")=4 + Set gtmtypes("jnl_ctl_list",32,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.spare_base_size")=32 + Set gtmtypes("jnl_ctl_list",33,"name")="jnl_ctl_list.pini_list.dont_compact" + Set gtmtypes("jnl_ctl_list",33,"off")=528 + Set gtmtypes("jnl_ctl_list",33,"len")=4 + Set gtmtypes("jnl_ctl_list",33,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.dont_compact")=33 + Set gtmtypes("jnl_ctl_list",34,"name")="jnl_ctl_list.pini_list.dont_keep_spare_table" + Set gtmtypes("jnl_ctl_list",34,"off")=532 + Set gtmtypes("jnl_ctl_list",34,"len")=4 + Set gtmtypes("jnl_ctl_list",34,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.dont_keep_spare_table")=34 + Set gtmtypes("jnl_ctl_list",35,"name")="jnl_ctl_list.pini_list.defer_base_release" + Set gtmtypes("jnl_ctl_list",35,"off")=536 + Set gtmtypes("jnl_ctl_list",35,"len")=4 + Set gtmtypes("jnl_ctl_list",35,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.defer_base_release")=35 + Set gtmtypes("jnl_ctl_list",36,"name")="jnl_ctl_list.pini_list.count" + Set gtmtypes("jnl_ctl_list",36,"off")=540 + Set gtmtypes("jnl_ctl_list",36,"len")=4 + Set gtmtypes("jnl_ctl_list",36,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.count")=36 + Set gtmtypes("jnl_ctl_list",37,"name")="jnl_ctl_list.pini_list.del_count" + Set gtmtypes("jnl_ctl_list",37,"off")=544 + Set gtmtypes("jnl_ctl_list",37,"len")=4 + Set gtmtypes("jnl_ctl_list",37,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.del_count")=37 + Set gtmtypes("jnl_ctl_list",38,"name")="jnl_ctl_list.pini_list.exp_trigger_size" + Set gtmtypes("jnl_ctl_list",38,"off")=548 + Set gtmtypes("jnl_ctl_list",38,"len")=4 + Set gtmtypes("jnl_ctl_list",38,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.exp_trigger_size")=38 + Set gtmtypes("jnl_ctl_list",39,"name")="jnl_ctl_list.pini_list.cmp_trigger_size" + Set gtmtypes("jnl_ctl_list",39,"off")=552 + Set gtmtypes("jnl_ctl_list",39,"len")=4 + Set gtmtypes("jnl_ctl_list",39,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.cmp_trigger_size")=39 + Set gtmtypes("jnl_ctl_list",40,"name")="jnl_ctl_list.pini_list.entry_passed_thru" + Set gtmtypes("jnl_ctl_list",40,"off")=556 + Set gtmtypes("jnl_ctl_list",40,"len")=4 + Set gtmtypes("jnl_ctl_list",40,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.entry_passed_thru")=40 + Set gtmtypes("jnl_ctl_list",41,"name")="jnl_ctl_list.reg_ctl" + Set gtmtypes("jnl_ctl_list",41,"off")=560 + Set gtmtypes("jnl_ctl_list",41,"len")=4 + Set gtmtypes("jnl_ctl_list",41,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","reg_ctl")=41 + Set gtmtypes("jnl_ctl_list",42,"name")="jnl_ctl_list.next_gen" + Set gtmtypes("jnl_ctl_list",42,"off")=564 + Set gtmtypes("jnl_ctl_list",42,"len")=4 + Set gtmtypes("jnl_ctl_list",42,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","next_gen")=42 + Set gtmtypes("jnl_ctl_list",43,"name")="jnl_ctl_list.prev_gen" + Set gtmtypes("jnl_ctl_list",43,"off")=568 + Set gtmtypes("jnl_ctl_list",43,"len")=4 + Set gtmtypes("jnl_ctl_list",43,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","prev_gen")=43 + Set gtmtypes("jnl_ctl_list",44,"name")="jnl_ctl_list.encr_key_handle" + Set gtmtypes("jnl_ctl_list",44,"off")=572 + Set gtmtypes("jnl_ctl_list",44,"len")=4 + Set gtmtypes("jnl_ctl_list",44,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","encr_key_handle")=44 + Set gtmtypes("jnl_ctl_list",45,"name")="jnl_ctl_list.encr_key_handle2" + Set gtmtypes("jnl_ctl_list",45,"off")=576 + Set gtmtypes("jnl_ctl_list",45,"len")=4 + Set gtmtypes("jnl_ctl_list",45,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","encr_key_handle2")=45 + Set gtmtypes("jnl_ctl_list",46,"name")="jnl_ctl_list.same_encryption_settings" + Set gtmtypes("jnl_ctl_list",46,"off")=580 + Set gtmtypes("jnl_ctl_list",46,"len")=4 + Set gtmtypes("jnl_ctl_list",46,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","same_encryption_settings")=46 + Set gtmtypes("jnl_ctl_list",47,"name")="jnl_ctl_list.turn_around_fullyupgraded" + Set gtmtypes("jnl_ctl_list",47,"off")=584 + Set gtmtypes("jnl_ctl_list",47,"len")=4 + Set gtmtypes("jnl_ctl_list",47,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_fullyupgraded")=47 + ; + Set gtmtypes("jnl_fence_control")="struct" + Set gtmtypes("jnl_fence_control",0)=4 + Set gtmtypes("jnl_fence_control","len")=24 + Set gtmtypes("jnl_fence_control",1,"name")="jnl_fence_control.fence_list" + Set gtmtypes("jnl_fence_control",1,"off")=0 + Set gtmtypes("jnl_fence_control",1,"len")=4 + Set gtmtypes("jnl_fence_control",1,"type")="addr" + Set gtmtypfldindx("jnl_fence_control","fence_list")=1 + Set gtmtypes("jnl_fence_control",2,"name")="jnl_fence_control.level" + Set gtmtypes("jnl_fence_control",2,"off")=4 + Set gtmtypes("jnl_fence_control",2,"len")=4 + Set gtmtypes("jnl_fence_control",2,"type")="int" + Set gtmtypfldindx("jnl_fence_control","level")=2 + Set gtmtypes("jnl_fence_control",3,"name")="jnl_fence_control.token" + Set gtmtypes("jnl_fence_control",3,"off")=8 + Set gtmtypes("jnl_fence_control",3,"len")=8 + Set gtmtypes("jnl_fence_control",3,"type")="uint64_t" + Set gtmtypfldindx("jnl_fence_control","token")=3 + Set gtmtypes("jnl_fence_control",4,"name")="jnl_fence_control.strm_seqno" + Set gtmtypes("jnl_fence_control",4,"off")=16 + Set gtmtypes("jnl_fence_control",4,"len")=8 + Set gtmtypes("jnl_fence_control",4,"type")="uint64_t" + Set gtmtypfldindx("jnl_fence_control","strm_seqno")=4 + ; + Set gtmtypes("jnl_file_header")="struct" + Set gtmtypes("jnl_file_header",0)=66 + Set gtmtypes("jnl_file_header","len")=2048 + Set gtmtypes("jnl_file_header",1,"name")="jnl_file_header.label" + Set gtmtypes("jnl_file_header",1,"off")=0 + Set gtmtypes("jnl_file_header",1,"len")=8 + Set gtmtypes("jnl_file_header",1,"type")="char" + Set gtmtypfldindx("jnl_file_header","label")=1 + Set gtmtypes("jnl_file_header",2,"name")="jnl_file_header.is_little_endian" + Set gtmtypes("jnl_file_header",2,"off")=8 + Set gtmtypes("jnl_file_header",2,"len")=1 + Set gtmtypes("jnl_file_header",2,"type")="char" + Set gtmtypfldindx("jnl_file_header","is_little_endian")=2 + Set gtmtypes("jnl_file_header",3,"name")="jnl_file_header.filler_align8" + Set gtmtypes("jnl_file_header",3,"off")=9 + Set gtmtypes("jnl_file_header",3,"len")=7 + Set gtmtypes("jnl_file_header",3,"type")="char" + Set gtmtypfldindx("jnl_file_header","filler_align8")=3 + Set gtmtypes("jnl_file_header",4,"name")="jnl_file_header.who_created" + Set gtmtypes("jnl_file_header",4,"off")=16 + Set gtmtypes("jnl_file_header",4,"len")=88 + Set gtmtypes("jnl_file_header",4,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_file_header","who_created")=4 + Set gtmtypes("jnl_file_header",5,"name")="jnl_file_header.who_created.jpv_pid" + Set gtmtypes("jnl_file_header",5,"off")=16 + Set gtmtypes("jnl_file_header",5,"len")=4 + Set gtmtypes("jnl_file_header",5,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_pid")=5 + Set gtmtypes("jnl_file_header",6,"name")="jnl_file_header.who_created.jpv_image_count" + Set gtmtypes("jnl_file_header",6,"off")=20 + Set gtmtypes("jnl_file_header",6,"len")=4 + Set gtmtypes("jnl_file_header",6,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_image_count")=6 + Set gtmtypes("jnl_file_header",7,"name")="jnl_file_header.who_created.jpv_time" + Set gtmtypes("jnl_file_header",7,"off")=24 + Set gtmtypes("jnl_file_header",7,"len")=8 + Set gtmtypes("jnl_file_header",7,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_time")=7 + Set gtmtypes("jnl_file_header",8,"name")="jnl_file_header.who_created.jpv_login_time" + Set gtmtypes("jnl_file_header",8,"off")=32 + Set gtmtypes("jnl_file_header",8,"len")=8 + Set gtmtypes("jnl_file_header",8,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_login_time")=8 + Set gtmtypes("jnl_file_header",9,"name")="jnl_file_header.who_created.jpv_node" + Set gtmtypes("jnl_file_header",9,"off")=40 + Set gtmtypes("jnl_file_header",9,"len")=16 + Set gtmtypes("jnl_file_header",9,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_node")=9 + Set gtmtypes("jnl_file_header",10,"name")="jnl_file_header.who_created.jpv_user" + Set gtmtypes("jnl_file_header",10,"off")=56 + Set gtmtypes("jnl_file_header",10,"len")=12 + Set gtmtypes("jnl_file_header",10,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_user")=10 + Set gtmtypes("jnl_file_header",11,"name")="jnl_file_header.who_created.jpv_prcnam" + Set gtmtypes("jnl_file_header",11,"off")=68 + Set gtmtypes("jnl_file_header",11,"len")=16 + Set gtmtypes("jnl_file_header",11,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_prcnam")=11 + Set gtmtypes("jnl_file_header",12,"name")="jnl_file_header.who_created.jpv_terminal" + Set gtmtypes("jnl_file_header",12,"off")=84 + Set gtmtypes("jnl_file_header",12,"len")=15 + Set gtmtypes("jnl_file_header",12,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_terminal")=12 + Set gtmtypes("jnl_file_header",13,"name")="jnl_file_header.who_created.jpv_mode" + Set gtmtypes("jnl_file_header",13,"off")=99 + Set gtmtypes("jnl_file_header",13,"len")=1 + Set gtmtypes("jnl_file_header",13,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_mode")=13 + Set gtmtypes("jnl_file_header",14,"name")="jnl_file_header.who_created.filler" + Set gtmtypes("jnl_file_header",14,"off")=100 + Set gtmtypes("jnl_file_header",14,"len")=4 + Set gtmtypes("jnl_file_header",14,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_created.filler")=14 + Set gtmtypes("jnl_file_header",15,"name")="jnl_file_header.who_opened" + Set gtmtypes("jnl_file_header",15,"off")=104 + Set gtmtypes("jnl_file_header",15,"len")=88 + Set gtmtypes("jnl_file_header",15,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_file_header","who_opened")=15 + Set gtmtypes("jnl_file_header",16,"name")="jnl_file_header.who_opened.jpv_pid" + Set gtmtypes("jnl_file_header",16,"off")=104 + Set gtmtypes("jnl_file_header",16,"len")=4 + Set gtmtypes("jnl_file_header",16,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_pid")=16 + Set gtmtypes("jnl_file_header",17,"name")="jnl_file_header.who_opened.jpv_image_count" + Set gtmtypes("jnl_file_header",17,"off")=108 + Set gtmtypes("jnl_file_header",17,"len")=4 + Set gtmtypes("jnl_file_header",17,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_image_count")=17 + Set gtmtypes("jnl_file_header",18,"name")="jnl_file_header.who_opened.jpv_time" + Set gtmtypes("jnl_file_header",18,"off")=112 + Set gtmtypes("jnl_file_header",18,"len")=8 + Set gtmtypes("jnl_file_header",18,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_time")=18 + Set gtmtypes("jnl_file_header",19,"name")="jnl_file_header.who_opened.jpv_login_time" + Set gtmtypes("jnl_file_header",19,"off")=120 + Set gtmtypes("jnl_file_header",19,"len")=8 + Set gtmtypes("jnl_file_header",19,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_login_time")=19 + Set gtmtypes("jnl_file_header",20,"name")="jnl_file_header.who_opened.jpv_node" + Set gtmtypes("jnl_file_header",20,"off")=128 + Set gtmtypes("jnl_file_header",20,"len")=16 + Set gtmtypes("jnl_file_header",20,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_node")=20 + Set gtmtypes("jnl_file_header",21,"name")="jnl_file_header.who_opened.jpv_user" + Set gtmtypes("jnl_file_header",21,"off")=144 + Set gtmtypes("jnl_file_header",21,"len")=12 + Set gtmtypes("jnl_file_header",21,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_user")=21 + Set gtmtypes("jnl_file_header",22,"name")="jnl_file_header.who_opened.jpv_prcnam" + Set gtmtypes("jnl_file_header",22,"off")=156 + Set gtmtypes("jnl_file_header",22,"len")=16 + Set gtmtypes("jnl_file_header",22,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_prcnam")=22 + Set gtmtypes("jnl_file_header",23,"name")="jnl_file_header.who_opened.jpv_terminal" + Set gtmtypes("jnl_file_header",23,"off")=172 + Set gtmtypes("jnl_file_header",23,"len")=15 + Set gtmtypes("jnl_file_header",23,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_terminal")=23 + Set gtmtypes("jnl_file_header",24,"name")="jnl_file_header.who_opened.jpv_mode" + Set gtmtypes("jnl_file_header",24,"off")=187 + Set gtmtypes("jnl_file_header",24,"len")=1 + Set gtmtypes("jnl_file_header",24,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_mode")=24 + Set gtmtypes("jnl_file_header",25,"name")="jnl_file_header.who_opened.filler" + Set gtmtypes("jnl_file_header",25,"off")=188 + Set gtmtypes("jnl_file_header",25,"len")=4 + Set gtmtypes("jnl_file_header",25,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_opened.filler")=25 + Set gtmtypes("jnl_file_header",26,"name")="jnl_file_header.bov_timestamp" + Set gtmtypes("jnl_file_header",26,"off")=192 + Set gtmtypes("jnl_file_header",26,"len")=8 + Set gtmtypes("jnl_file_header",26,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","bov_timestamp")=26 + Set gtmtypes("jnl_file_header",27,"name")="jnl_file_header.eov_timestamp" + Set gtmtypes("jnl_file_header",27,"off")=200 + Set gtmtypes("jnl_file_header",27,"len")=8 + Set gtmtypes("jnl_file_header",27,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","eov_timestamp")=27 + Set gtmtypes("jnl_file_header",28,"name")="jnl_file_header.bov_tn" + Set gtmtypes("jnl_file_header",28,"off")=208 + Set gtmtypes("jnl_file_header",28,"len")=8 + Set gtmtypes("jnl_file_header",28,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","bov_tn")=28 + Set gtmtypes("jnl_file_header",29,"name")="jnl_file_header.eov_tn" + Set gtmtypes("jnl_file_header",29,"off")=216 + Set gtmtypes("jnl_file_header",29,"len")=8 + Set gtmtypes("jnl_file_header",29,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","eov_tn")=29 + Set gtmtypes("jnl_file_header",30,"name")="jnl_file_header.start_seqno" + Set gtmtypes("jnl_file_header",30,"off")=224 + Set gtmtypes("jnl_file_header",30,"len")=8 + Set gtmtypes("jnl_file_header",30,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","start_seqno")=30 + Set gtmtypes("jnl_file_header",31,"name")="jnl_file_header.end_seqno" + Set gtmtypes("jnl_file_header",31,"off")=232 + Set gtmtypes("jnl_file_header",31,"len")=8 + Set gtmtypes("jnl_file_header",31,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","end_seqno")=31 + Set gtmtypes("jnl_file_header",32,"name")="jnl_file_header.end_of_data" + Set gtmtypes("jnl_file_header",32,"off")=240 + Set gtmtypes("jnl_file_header",32,"len")=4 + Set gtmtypes("jnl_file_header",32,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","end_of_data")=32 + Set gtmtypes("jnl_file_header",33,"name")="jnl_file_header.prev_recov_end_of_data" + Set gtmtypes("jnl_file_header",33,"off")=244 + Set gtmtypes("jnl_file_header",33,"len")=4 + Set gtmtypes("jnl_file_header",33,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_recov_end_of_data")=33 + Set gtmtypes("jnl_file_header",34,"name")="jnl_file_header.virtual_size" + Set gtmtypes("jnl_file_header",34,"off")=248 + Set gtmtypes("jnl_file_header",34,"len")=4 + Set gtmtypes("jnl_file_header",34,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","virtual_size")=34 + Set gtmtypes("jnl_file_header",35,"name")="jnl_file_header.crash" + Set gtmtypes("jnl_file_header",35,"off")=252 + Set gtmtypes("jnl_file_header",35,"len")=4 + Set gtmtypes("jnl_file_header",35,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","crash")=35 + Set gtmtypes("jnl_file_header",36,"name")="jnl_file_header.recover_interrupted" + Set gtmtypes("jnl_file_header",36,"off")=256 + Set gtmtypes("jnl_file_header",36,"len")=4 + Set gtmtypes("jnl_file_header",36,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","recover_interrupted")=36 + Set gtmtypes("jnl_file_header",37,"name")="jnl_file_header.turn_around_offset" + Set gtmtypes("jnl_file_header",37,"off")=260 + Set gtmtypes("jnl_file_header",37,"len")=4 + Set gtmtypes("jnl_file_header",37,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","turn_around_offset")=37 + Set gtmtypes("jnl_file_header",38,"name")="jnl_file_header.turn_around_time" + Set gtmtypes("jnl_file_header",38,"off")=264 + Set gtmtypes("jnl_file_header",38,"len")=4 + Set gtmtypes("jnl_file_header",38,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","turn_around_time")=38 + Set gtmtypes("jnl_file_header",39,"name")="jnl_file_header.before_images" + Set gtmtypes("jnl_file_header",39,"off")=268 + Set gtmtypes("jnl_file_header",39,"len")=4 + Set gtmtypes("jnl_file_header",39,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","before_images")=39 + Set gtmtypes("jnl_file_header",40,"name")="jnl_file_header.alignsize" + Set gtmtypes("jnl_file_header",40,"off")=272 + Set gtmtypes("jnl_file_header",40,"len")=4 + Set gtmtypes("jnl_file_header",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","alignsize")=40 + Set gtmtypes("jnl_file_header",41,"name")="jnl_file_header.epoch_interval" + Set gtmtypes("jnl_file_header",41,"off")=276 + Set gtmtypes("jnl_file_header",41,"len")=4 + Set gtmtypes("jnl_file_header",41,"type")="int" + Set gtmtypfldindx("jnl_file_header","epoch_interval")=41 + Set gtmtypes("jnl_file_header",42,"name")="jnl_file_header.repl_state" + Set gtmtypes("jnl_file_header",42,"off")=280 + Set gtmtypes("jnl_file_header",42,"len")=4 + Set gtmtypes("jnl_file_header",42,"type")="int" + Set gtmtypfldindx("jnl_file_header","repl_state")=42 + Set gtmtypes("jnl_file_header",43,"name")="jnl_file_header.autoswitchlimit" + Set gtmtypes("jnl_file_header",43,"off")=284 + Set gtmtypes("jnl_file_header",43,"len")=4 + Set gtmtypes("jnl_file_header",43,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","autoswitchlimit")=43 + Set gtmtypes("jnl_file_header",44,"name")="jnl_file_header.jnl_alq" + Set gtmtypes("jnl_file_header",44,"off")=288 + Set gtmtypes("jnl_file_header",44,"len")=4 + Set gtmtypes("jnl_file_header",44,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","jnl_alq")=44 + Set gtmtypes("jnl_file_header",45,"name")="jnl_file_header.jnl_deq" + Set gtmtypes("jnl_file_header",45,"off")=292 + Set gtmtypes("jnl_file_header",45,"len")=4 + Set gtmtypes("jnl_file_header",45,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","jnl_deq")=45 + Set gtmtypes("jnl_file_header",46,"name")="jnl_file_header.filler_update_disabled" + Set gtmtypes("jnl_file_header",46,"off")=296 + Set gtmtypes("jnl_file_header",46,"len")=4 + Set gtmtypes("jnl_file_header",46,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","filler_update_disabled")=46 + Set gtmtypes("jnl_file_header",47,"name")="jnl_file_header.max_jrec_len" + Set gtmtypes("jnl_file_header",47,"off")=300 + Set gtmtypes("jnl_file_header",47,"len")=4 + Set gtmtypes("jnl_file_header",47,"type")="int" + Set gtmtypfldindx("jnl_file_header","max_jrec_len")=47 + Set gtmtypes("jnl_file_header",48,"name")="jnl_file_header.data_file_name_length" + Set gtmtypes("jnl_file_header",48,"off")=304 + Set gtmtypes("jnl_file_header",48,"len")=4 + Set gtmtypes("jnl_file_header",48,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","data_file_name_length")=48 + Set gtmtypes("jnl_file_header",49,"name")="jnl_file_header.prev_jnl_file_name_length" + Set gtmtypes("jnl_file_header",49,"off")=308 + Set gtmtypes("jnl_file_header",49,"len")=4 + Set gtmtypes("jnl_file_header",49,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_jnl_file_name_length")=49 + Set gtmtypes("jnl_file_header",50,"name")="jnl_file_header.next_jnl_file_name_length" + Set gtmtypes("jnl_file_header",50,"off")=312 + Set gtmtypes("jnl_file_header",50,"len")=4 + Set gtmtypes("jnl_file_header",50,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","next_jnl_file_name_length")=50 + Set gtmtypes("jnl_file_header",51,"name")="jnl_file_header.checksum" + Set gtmtypes("jnl_file_header",51,"off")=316 + Set gtmtypes("jnl_file_header",51,"len")=4 + Set gtmtypes("jnl_file_header",51,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","checksum")=51 + Set gtmtypes("jnl_file_header",52,"name")="jnl_file_header.prev_recov_blks_to_upgrd_adjust" + Set gtmtypes("jnl_file_header",52,"off")=320 + Set gtmtypes("jnl_file_header",52,"len")=4 + Set gtmtypes("jnl_file_header",52,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_recov_blks_to_upgrd_adjust")=52 + Set gtmtypes("jnl_file_header",53,"name")="jnl_file_header.data_file_name" + Set gtmtypes("jnl_file_header",53,"off")=324 + Set gtmtypes("jnl_file_header",53,"len")=256 + Set gtmtypes("jnl_file_header",53,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","data_file_name")=53 + Set gtmtypes("jnl_file_header",54,"name")="jnl_file_header.prev_jnl_file_name" + Set gtmtypes("jnl_file_header",54,"off")=580 + Set gtmtypes("jnl_file_header",54,"len")=256 + Set gtmtypes("jnl_file_header",54,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","prev_jnl_file_name")=54 + Set gtmtypes("jnl_file_header",55,"name")="jnl_file_header.next_jnl_file_name" + Set gtmtypes("jnl_file_header",55,"off")=836 + Set gtmtypes("jnl_file_header",55,"len")=256 + Set gtmtypes("jnl_file_header",55,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","next_jnl_file_name")=55 + Set gtmtypes("jnl_file_header",56,"name")="jnl_file_header.is_encrypted" + Set gtmtypes("jnl_file_header",56,"off")=1092 + Set gtmtypes("jnl_file_header",56,"len")=4 + Set gtmtypes("jnl_file_header",56,"type")="int" + Set gtmtypfldindx("jnl_file_header","is_encrypted")=56 + Set gtmtypes("jnl_file_header",57,"name")="jnl_file_header.encryption_hash" + Set gtmtypes("jnl_file_header",57,"off")=1096 + Set gtmtypes("jnl_file_header",57,"len")=80 + Set gtmtypes("jnl_file_header",57,"type")="char" + Set gtmtypfldindx("jnl_file_header","encryption_hash")=57 + Set gtmtypes("jnl_file_header",58,"name")="jnl_file_header.encryption_hash2" + Set gtmtypes("jnl_file_header",58,"off")=1176 + Set gtmtypes("jnl_file_header",58,"len")=80 + Set gtmtypes("jnl_file_header",58,"type")="char" + Set gtmtypfldindx("jnl_file_header","encryption_hash2")=58 + Set gtmtypes("jnl_file_header",59,"name")="jnl_file_header.non_null_iv" + Set gtmtypes("jnl_file_header",59,"off")=1256 + Set gtmtypes("jnl_file_header",59,"len")=4 + Set gtmtypes("jnl_file_header",59,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","non_null_iv")=59 + Set gtmtypes("jnl_file_header",60,"name")="jnl_file_header.encryption_hash_cutoff" + Set gtmtypes("jnl_file_header",60,"off")=1260 + Set gtmtypes("jnl_file_header",60,"len")=4 + Set gtmtypes("jnl_file_header",60,"type")="int" + Set gtmtypfldindx("jnl_file_header","encryption_hash_cutoff")=60 + Set gtmtypes("jnl_file_header",61,"name")="jnl_file_header.encryption_hash2_start_tn" + Set gtmtypes("jnl_file_header",61,"off")=1264 + Set gtmtypes("jnl_file_header",61,"len")=8 + Set gtmtypes("jnl_file_header",61,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","encryption_hash2_start_tn")=61 + Set gtmtypes("jnl_file_header",62,"name")="jnl_file_header.encr_filler" + Set gtmtypes("jnl_file_header",62,"off")=1272 + Set gtmtypes("jnl_file_header",62,"len")=80 + Set gtmtypes("jnl_file_header",62,"type")="char" + Set gtmtypfldindx("jnl_file_header","encr_filler")=62 + Set gtmtypes("jnl_file_header",63,"name")="jnl_file_header.strm_start_seqno" + Set gtmtypes("jnl_file_header",63,"off")=1352 + Set gtmtypes("jnl_file_header",63,"len")=128 + Set gtmtypes("jnl_file_header",63,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","strm_start_seqno")=63 + Set gtmtypes("jnl_file_header",63,"dim")=16 + Set gtmtypes("jnl_file_header",64,"name")="jnl_file_header.strm_end_seqno" + Set gtmtypes("jnl_file_header",64,"off")=1480 + Set gtmtypes("jnl_file_header",64,"len")=128 + Set gtmtypes("jnl_file_header",64,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","strm_end_seqno")=64 + Set gtmtypes("jnl_file_header",64,"dim")=16 + Set gtmtypes("jnl_file_header",65,"name")="jnl_file_header.last_eof_written" + Set gtmtypes("jnl_file_header",65,"off")=1608 + Set gtmtypes("jnl_file_header",65,"len")=4 + Set gtmtypes("jnl_file_header",65,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","last_eof_written")=65 + Set gtmtypes("jnl_file_header",66,"name")="jnl_file_header.filler" + Set gtmtypes("jnl_file_header",66,"off")=1612 + Set gtmtypes("jnl_file_header",66,"len")=436 + Set gtmtypes("jnl_file_header",66,"type")="char" + Set gtmtypfldindx("jnl_file_header","filler")=66 + ; + Set gtmtypes("jnl_format_buffer")="struct" + Set gtmtypes("jnl_format_buffer",0)=14 + Set gtmtypes("jnl_format_buffer","len")=48 + Set gtmtypes("jnl_format_buffer",1,"name")="jnl_format_buffer.free_que" + Set gtmtypes("jnl_format_buffer",1,"off")=0 + Set gtmtypes("jnl_format_buffer",1,"len")=8 + Set gtmtypes("jnl_format_buffer",1,"type")="que_ent" + Set gtmtypfldindx("jnl_format_buffer","free_que")=1 + Set gtmtypes("jnl_format_buffer",2,"name")="jnl_format_buffer.free_que.fl" + Set gtmtypes("jnl_format_buffer",2,"off")=0 + Set gtmtypes("jnl_format_buffer",2,"len")=4 + Set gtmtypes("jnl_format_buffer",2,"type")="intptr_t" + Set gtmtypfldindx("jnl_format_buffer","free_que.fl")=2 + Set gtmtypes("jnl_format_buffer",3,"name")="jnl_format_buffer.free_que.bl" + Set gtmtypes("jnl_format_buffer",3,"off")=4 + Set gtmtypes("jnl_format_buffer",3,"len")=4 + Set gtmtypes("jnl_format_buffer",3,"type")="intptr_t" + Set gtmtypfldindx("jnl_format_buffer","free_que.bl")=3 + Set gtmtypes("jnl_format_buffer",4,"name")="jnl_format_buffer.next" + Set gtmtypes("jnl_format_buffer",4,"off")=8 + Set gtmtypes("jnl_format_buffer",4,"len")=4 + Set gtmtypes("jnl_format_buffer",4,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","next")=4 + Set gtmtypes("jnl_format_buffer",5,"name")="jnl_format_buffer.prev" + Set gtmtypes("jnl_format_buffer",5,"off")=12 + Set gtmtypes("jnl_format_buffer",5,"len")=4 + Set gtmtypes("jnl_format_buffer",5,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","prev")=5 + Set gtmtypes("jnl_format_buffer",6,"name")="jnl_format_buffer.rectype" + Set gtmtypes("jnl_format_buffer",6,"off")=16 + Set gtmtypes("jnl_format_buffer",6,"len")=4 + Set gtmtypes("jnl_format_buffer",6,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","rectype")=6 + Set gtmtypes("jnl_format_buffer",7,"name")="jnl_format_buffer.record_size" + Set gtmtypes("jnl_format_buffer",7,"off")=20 + Set gtmtypes("jnl_format_buffer",7,"len")=4 + Set gtmtypes("jnl_format_buffer",7,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","record_size")=7 + Set gtmtypes("jnl_format_buffer",8,"name")="jnl_format_buffer.hi_water_bsize" + Set gtmtypes("jnl_format_buffer",8,"off")=24 + Set gtmtypes("jnl_format_buffer",8,"len")=4 + Set gtmtypes("jnl_format_buffer",8,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","hi_water_bsize")=8 + Set gtmtypes("jnl_format_buffer",9,"name")="jnl_format_buffer.buff" + Set gtmtypes("jnl_format_buffer",9,"off")=28 + Set gtmtypes("jnl_format_buffer",9,"len")=4 + Set gtmtypes("jnl_format_buffer",9,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","buff")=9 + Set gtmtypes("jnl_format_buffer",10,"name")="jnl_format_buffer.checksum" + Set gtmtypes("jnl_format_buffer",10,"off")=32 + Set gtmtypes("jnl_format_buffer",10,"len")=4 + Set gtmtypes("jnl_format_buffer",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_format_buffer","checksum")=10 + Set gtmtypes("jnl_format_buffer",11,"name")="jnl_format_buffer.ja" + Set gtmtypes("jnl_format_buffer",11,"off")=36 + Set gtmtypes("jnl_format_buffer",11,"len")=8 + Set gtmtypes("jnl_format_buffer",11,"type")="jnl_action" + Set gtmtypfldindx("jnl_format_buffer","ja")=11 + Set gtmtypes("jnl_format_buffer",12,"name")="jnl_format_buffer.ja.operation" + Set gtmtypes("jnl_format_buffer",12,"off")=36 + Set gtmtypes("jnl_format_buffer",12,"len")=4 + Set gtmtypes("jnl_format_buffer",12,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","ja.operation")=12 + Set gtmtypes("jnl_format_buffer",13,"name")="jnl_format_buffer.ja.nodeflags" + Set gtmtypes("jnl_format_buffer",13,"off")=40 + Set gtmtypes("jnl_format_buffer",13,"len")=4 + Set gtmtypes("jnl_format_buffer",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_format_buffer","ja.nodeflags")=13 + Set gtmtypes("jnl_format_buffer",14,"name")="jnl_format_buffer.alt_buff" + Set gtmtypes("jnl_format_buffer",14,"off")=44 + Set gtmtypes("jnl_format_buffer",14,"len")=4 + Set gtmtypes("jnl_format_buffer",14,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","alt_buff")=14 + ; + Set gtmtypes("jnl_gbls_t")="struct" + Set gtmtypes("jnl_gbls_t",0)=26 + Set gtmtypes("jnl_gbls_t","len")=108 + Set gtmtypes("jnl_gbls_t",1,"name")="jnl_gbls_t.mur_jrec_seqno" + Set gtmtypes("jnl_gbls_t",1,"off")=0 + Set gtmtypes("jnl_gbls_t",1,"len")=8 + Set gtmtypes("jnl_gbls_t",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_seqno")=1 + Set gtmtypes("jnl_gbls_t",2,"name")="jnl_gbls_t.mur_jrec_strm_seqno" + Set gtmtypes("jnl_gbls_t",2,"off")=8 + Set gtmtypes("jnl_gbls_t",2,"len")=8 + Set gtmtypes("jnl_gbls_t",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_strm_seqno")=2 + Set gtmtypes("jnl_gbls_t",3,"name")="jnl_gbls_t.filler_short" + Set gtmtypes("jnl_gbls_t",3,"off")=16 + Set gtmtypes("jnl_gbls_t",3,"len")=2 + Set gtmtypes("jnl_gbls_t",3,"type")="unsigned-short" + Set gtmtypfldindx("jnl_gbls_t","filler_short")=3 + Set gtmtypes("jnl_gbls_t",4,"name")="jnl_gbls_t.mur_jrec_participants" + Set gtmtypes("jnl_gbls_t",4,"off")=18 + Set gtmtypes("jnl_gbls_t",4,"len")=2 + Set gtmtypes("jnl_gbls_t",4,"type")="unsigned-short" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_participants")=4 + Set gtmtypes("jnl_gbls_t",5,"name")="jnl_gbls_t.gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",5,"off")=20 + Set gtmtypes("jnl_gbls_t",5,"len")=4 + Set gtmtypes("jnl_gbls_t",5,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","gbl_jrec_time")=5 + Set gtmtypes("jnl_gbls_t",6,"name")="jnl_gbls_t.mur_tp_resolve_time" + Set gtmtypes("jnl_gbls_t",6,"off")=24 + Set gtmtypes("jnl_gbls_t",6,"len")=4 + Set gtmtypes("jnl_gbls_t",6,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","mur_tp_resolve_time")=6 + Set gtmtypes("jnl_gbls_t",7,"name")="jnl_gbls_t.forw_phase_recovery" + Set gtmtypes("jnl_gbls_t",7,"off")=28 + Set gtmtypes("jnl_gbls_t",7,"len")=4 + Set gtmtypes("jnl_gbls_t",7,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","forw_phase_recovery")=7 + Set gtmtypes("jnl_gbls_t",8,"name")="jnl_gbls_t.mur_rollback" + Set gtmtypes("jnl_gbls_t",8,"off")=32 + Set gtmtypes("jnl_gbls_t",8,"len")=4 + Set gtmtypes("jnl_gbls_t",8,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_rollback")=8 + Set gtmtypes("jnl_gbls_t",9,"name")="jnl_gbls_t.mupip_journal" + Set gtmtypes("jnl_gbls_t",9,"off")=36 + Set gtmtypes("jnl_gbls_t",9,"len")=4 + Set gtmtypes("jnl_gbls_t",9,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mupip_journal")=9 + Set gtmtypes("jnl_gbls_t",10,"name")="jnl_gbls_t.dont_reset_gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",10,"off")=40 + Set gtmtypes("jnl_gbls_t",10,"len")=4 + Set gtmtypes("jnl_gbls_t",10,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","dont_reset_gbl_jrec_time")=10 + Set gtmtypes("jnl_gbls_t",11,"name")="jnl_gbls_t.mur_pini_addr_reset_fnptr" + Set gtmtypes("jnl_gbls_t",11,"off")=44 + Set gtmtypes("jnl_gbls_t",11,"len")=4 + Set gtmtypes("jnl_gbls_t",11,"type")="void" + Set gtmtypfldindx("jnl_gbls_t","mur_pini_addr_reset_fnptr")=11 + Set gtmtypes("jnl_gbls_t",12,"name")="jnl_gbls_t.cumul_jnl_rec_len" + Set gtmtypes("jnl_gbls_t",12,"off")=48 + Set gtmtypes("jnl_gbls_t",12,"len")=4 + Set gtmtypes("jnl_gbls_t",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","cumul_jnl_rec_len")=12 + Set gtmtypes("jnl_gbls_t",13,"name")="jnl_gbls_t.wait_for_jnl_hard" + Set gtmtypes("jnl_gbls_t",13,"off")=52 + Set gtmtypes("jnl_gbls_t",13,"len")=4 + Set gtmtypes("jnl_gbls_t",13,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","wait_for_jnl_hard")=13 + Set gtmtypes("jnl_gbls_t",14,"name")="jnl_gbls_t.tp_ztp_jnl_upd_num" + Set gtmtypes("jnl_gbls_t",14,"off")=56 + Set gtmtypes("jnl_gbls_t",14,"len")=4 + Set gtmtypes("jnl_gbls_t",14,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","tp_ztp_jnl_upd_num")=14 + Set gtmtypes("jnl_gbls_t",15,"name")="jnl_gbls_t.mur_jrec_nodeflags" + Set gtmtypes("jnl_gbls_t",15,"off")=60 + Set gtmtypes("jnl_gbls_t",15,"len")=4 + Set gtmtypes("jnl_gbls_t",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_nodeflags")=15 + Set gtmtypes("jnl_gbls_t",16,"name")="jnl_gbls_t.prev_ztworm_ptr" + Set gtmtypes("jnl_gbls_t",16,"off")=64 + Set gtmtypes("jnl_gbls_t",16,"len")=4 + Set gtmtypes("jnl_gbls_t",16,"type")="addr" + Set gtmtypfldindx("jnl_gbls_t","prev_ztworm_ptr")=16 + Set gtmtypes("jnl_gbls_t",17,"name")="jnl_gbls_t.save_ztworm_ptr" + Set gtmtypes("jnl_gbls_t",17,"off")=68 + Set gtmtypes("jnl_gbls_t",17,"len")=4 + Set gtmtypes("jnl_gbls_t",17,"type")="addr" + Set gtmtypfldindx("jnl_gbls_t","save_ztworm_ptr")=17 + Set gtmtypes("jnl_gbls_t",18,"name")="jnl_gbls_t.mur_fences_none" + Set gtmtypes("jnl_gbls_t",18,"off")=72 + Set gtmtypes("jnl_gbls_t",18,"len")=4 + Set gtmtypes("jnl_gbls_t",18,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_fences_none")=18 + Set gtmtypes("jnl_gbls_t",19,"name")="jnl_gbls_t.cumul_index" + Set gtmtypes("jnl_gbls_t",19,"off")=76 + Set gtmtypes("jnl_gbls_t",19,"len")=4 + Set gtmtypes("jnl_gbls_t",19,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","cumul_index")=19 + Set gtmtypes("jnl_gbls_t",20,"name")="jnl_gbls_t.cu_jnl_index" + Set gtmtypes("jnl_gbls_t",20,"off")=80 + Set gtmtypes("jnl_gbls_t",20,"len")=4 + Set gtmtypes("jnl_gbls_t",20,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","cu_jnl_index")=20 + Set gtmtypes("jnl_gbls_t",21,"name")="jnl_gbls_t.max_tp_ztp_jnl_upd_num" + Set gtmtypes("jnl_gbls_t",21,"off")=84 + Set gtmtypes("jnl_gbls_t",21,"len")=4 + Set gtmtypes("jnl_gbls_t",21,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","max_tp_ztp_jnl_upd_num")=21 + Set gtmtypes("jnl_gbls_t",22,"name")="jnl_gbls_t.mur_options_forward" + Set gtmtypes("jnl_gbls_t",22,"off")=88 + Set gtmtypes("jnl_gbls_t",22,"len")=4 + Set gtmtypes("jnl_gbls_t",22,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_options_forward")=22 + Set gtmtypes("jnl_gbls_t",23,"name")="jnl_gbls_t.onlnrlbk" + Set gtmtypes("jnl_gbls_t",23,"off")=92 + Set gtmtypes("jnl_gbls_t",23,"len")=4 + Set gtmtypes("jnl_gbls_t",23,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","onlnrlbk")=23 + Set gtmtypes("jnl_gbls_t",24,"name")="jnl_gbls_t.mur_extract" + Set gtmtypes("jnl_gbls_t",24,"off")=96 + Set gtmtypes("jnl_gbls_t",24,"len")=4 + Set gtmtypes("jnl_gbls_t",24,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_extract")=24 + Set gtmtypes("jnl_gbls_t",25,"name")="jnl_gbls_t.save_dont_reset_gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",25,"off")=100 + Set gtmtypes("jnl_gbls_t",25,"len")=4 + Set gtmtypes("jnl_gbls_t",25,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","save_dont_reset_gbl_jrec_time")=25 + Set gtmtypes("jnl_gbls_t",26,"name")="jnl_gbls_t.mur_update" + Set gtmtypes("jnl_gbls_t",26,"off")=104 + Set gtmtypes("jnl_gbls_t",26,"len")=4 + Set gtmtypes("jnl_gbls_t",26,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_update")=26 + ; + Set gtmtypes("jnl_private_control")="struct" + Set gtmtypes("jnl_private_control",0)=23 + Set gtmtypes("jnl_private_control","len")=100 + Set gtmtypes("jnl_private_control",1,"name")="jnl_private_control.jnl_buff" + Set gtmtypes("jnl_private_control",1,"off")=0 + Set gtmtypes("jnl_private_control",1,"len")=4 + Set gtmtypes("jnl_private_control",1,"type")="addr" + Set gtmtypfldindx("jnl_private_control","jnl_buff")=1 + Set gtmtypes("jnl_private_control",2,"name")="jnl_private_control.region" + Set gtmtypes("jnl_private_control",2,"off")=4 + Set gtmtypes("jnl_private_control",2,"len")=4 + Set gtmtypes("jnl_private_control",2,"type")="addr" + Set gtmtypfldindx("jnl_private_control","region")=2 + Set gtmtypes("jnl_private_control",3,"name")="jnl_private_control.channel" + Set gtmtypes("jnl_private_control",3,"off")=8 + Set gtmtypes("jnl_private_control",3,"len")=4 + Set gtmtypes("jnl_private_control",3,"type")="int" + Set gtmtypfldindx("jnl_private_control","channel")=3 + Set gtmtypes("jnl_private_control",4,"name")="jnl_private_control.old_channel" + Set gtmtypes("jnl_private_control",4,"off")=12 + Set gtmtypes("jnl_private_control",4,"len")=4 + Set gtmtypes("jnl_private_control",4,"type")="int" + Set gtmtypfldindx("jnl_private_control","old_channel")=4 + Set gtmtypes("jnl_private_control",5,"name")="jnl_private_control.fileid" + Set gtmtypes("jnl_private_control",5,"off")=16 + Set gtmtypes("jnl_private_control",5,"len")=20 + Set gtmtypes("jnl_private_control",5,"type")="unix_file_id" + Set gtmtypfldindx("jnl_private_control","fileid")=5 + Set gtmtypes("jnl_private_control",6,"name")="jnl_private_control.fileid.inode" + Set gtmtypes("jnl_private_control",6,"off")=16 + Set gtmtypes("jnl_private_control",6,"len")=8 + Set gtmtypes("jnl_private_control",6,"type")="ino_t" + Set gtmtypfldindx("jnl_private_control","fileid.inode")=6 + Set gtmtypes("jnl_private_control",7,"name")="jnl_private_control.fileid.device" + Set gtmtypes("jnl_private_control",7,"off")=24 + Set gtmtypes("jnl_private_control",7,"len")=8 + Set gtmtypes("jnl_private_control",7,"type")="dev_t" + Set gtmtypfldindx("jnl_private_control","fileid.device")=7 + Set gtmtypes("jnl_private_control",8,"name")="jnl_private_control.fileid.st_gen" + Set gtmtypes("jnl_private_control",8,"off")=32 + Set gtmtypes("jnl_private_control",8,"len")=4 + Set gtmtypes("jnl_private_control",8,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","fileid.st_gen")=8 + Set gtmtypes("jnl_private_control",9,"name")="jnl_private_control.jnllsb" + Set gtmtypes("jnl_private_control",9,"off")=36 + Set gtmtypes("jnl_private_control",9,"len")=4 + Set gtmtypes("jnl_private_control",9,"type")="addr" + Set gtmtypfldindx("jnl_private_control","jnllsb")=9 + Set gtmtypes("jnl_private_control",10,"name")="jnl_private_control.pini_addr" + Set gtmtypes("jnl_private_control",10,"off")=40 + Set gtmtypes("jnl_private_control",10,"len")=4 + Set gtmtypes("jnl_private_control",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","pini_addr")=10 + Set gtmtypes("jnl_private_control",11,"name")="jnl_private_control.new_freeaddr" + Set gtmtypes("jnl_private_control",11,"off")=44 + Set gtmtypes("jnl_private_control",11,"len")=4 + Set gtmtypes("jnl_private_control",11,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","new_freeaddr")=11 + Set gtmtypes("jnl_private_control",12,"name")="jnl_private_control.temp_free" + Set gtmtypes("jnl_private_control",12,"off")=48 + Set gtmtypes("jnl_private_control",12,"len")=4 + Set gtmtypes("jnl_private_control",12,"type")="int" + Set gtmtypfldindx("jnl_private_control","temp_free")=12 + Set gtmtypes("jnl_private_control",13,"name")="jnl_private_control.filler_q0" + Set gtmtypes("jnl_private_control",13,"off")=52 + Set gtmtypes("jnl_private_control",13,"len")=8 + Set gtmtypes("jnl_private_control",13,"type")="double" + Set gtmtypfldindx("jnl_private_control","filler_q0")=13 + Set gtmtypes("jnl_private_control",14,"name")="jnl_private_control.new_dsk" + Set gtmtypes("jnl_private_control",14,"off")=60 + Set gtmtypes("jnl_private_control",14,"len")=4 + Set gtmtypes("jnl_private_control",14,"type")="int" + Set gtmtypfldindx("jnl_private_control","new_dsk")=14 + Set gtmtypes("jnl_private_control",15,"name")="jnl_private_control.new_dskaddr" + Set gtmtypes("jnl_private_control",15,"off")=64 + Set gtmtypes("jnl_private_control",15,"len")=4 + Set gtmtypes("jnl_private_control",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","new_dskaddr")=15 + Set gtmtypes("jnl_private_control",16,"name")="jnl_private_control.status" + Set gtmtypes("jnl_private_control",16,"off")=68 + Set gtmtypes("jnl_private_control",16,"len")=4 + Set gtmtypes("jnl_private_control",16,"type")="int" + Set gtmtypfldindx("jnl_private_control","status")=16 + Set gtmtypes("jnl_private_control",17,"name")="jnl_private_control.dsk_update_inprog" + Set gtmtypes("jnl_private_control",17,"off")=72 + Set gtmtypes("jnl_private_control",17,"len")=4 + Set gtmtypes("jnl_private_control",17,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","dsk_update_inprog")=17 + Set gtmtypes("jnl_private_control",18,"name")="jnl_private_control.qio_active" + Set gtmtypes("jnl_private_control",18,"off")=76 + Set gtmtypes("jnl_private_control",18,"len")=4 + Set gtmtypes("jnl_private_control",18,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","qio_active")=18 + Set gtmtypes("jnl_private_control",19,"name")="jnl_private_control.fd_mismatch" + Set gtmtypes("jnl_private_control",19,"off")=80 + Set gtmtypes("jnl_private_control",19,"len")=4 + Set gtmtypes("jnl_private_control",19,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","fd_mismatch")=19 + Set gtmtypes("jnl_private_control",20,"name")="jnl_private_control.sync_io" + Set gtmtypes("jnl_private_control",20,"off")=84 + Set gtmtypes("jnl_private_control",20,"len")=4 + Set gtmtypes("jnl_private_control",20,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","sync_io")=20 + Set gtmtypes("jnl_private_control",21,"name")="jnl_private_control.error_reported" + Set gtmtypes("jnl_private_control",21,"off")=88 + Set gtmtypes("jnl_private_control",21,"len")=4 + Set gtmtypes("jnl_private_control",21,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","error_reported")=21 + Set gtmtypes("jnl_private_control",22,"name")="jnl_private_control.status2" + Set gtmtypes("jnl_private_control",22,"off")=92 + Set gtmtypes("jnl_private_control",22,"len")=4 + Set gtmtypes("jnl_private_control",22,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","status2")=22 + Set gtmtypes("jnl_private_control",23,"name")="jnl_private_control.cycle" + Set gtmtypes("jnl_private_control",23,"off")=96 + Set gtmtypes("jnl_private_control",23,"len")=4 + Set gtmtypes("jnl_private_control",23,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","cycle")=23 + ; + Set gtmtypes("jnl_process_vector")="struct" + Set gtmtypes("jnl_process_vector",0)=10 + Set gtmtypes("jnl_process_vector","len")=88 + Set gtmtypes("jnl_process_vector",1,"name")="jnl_process_vector.jpv_pid" + Set gtmtypes("jnl_process_vector",1,"off")=0 + Set gtmtypes("jnl_process_vector",1,"len")=4 + Set gtmtypes("jnl_process_vector",1,"type")="unsigned-int" + Set gtmtypfldindx("jnl_process_vector","jpv_pid")=1 + Set gtmtypes("jnl_process_vector",2,"name")="jnl_process_vector.jpv_image_count" + Set gtmtypes("jnl_process_vector",2,"off")=4 + Set gtmtypes("jnl_process_vector",2,"len")=4 + Set gtmtypes("jnl_process_vector",2,"type")="int" + Set gtmtypfldindx("jnl_process_vector","jpv_image_count")=2 + Set gtmtypes("jnl_process_vector",3,"name")="jnl_process_vector.jpv_time" + Set gtmtypes("jnl_process_vector",3,"off")=8 + Set gtmtypes("jnl_process_vector",3,"len")=8 + Set gtmtypes("jnl_process_vector",3,"type")="int64_t" + Set gtmtypfldindx("jnl_process_vector","jpv_time")=3 + Set gtmtypes("jnl_process_vector",4,"name")="jnl_process_vector.jpv_login_time" + Set gtmtypes("jnl_process_vector",4,"off")=16 + Set gtmtypes("jnl_process_vector",4,"len")=8 + Set gtmtypes("jnl_process_vector",4,"type")="int64_t" + Set gtmtypfldindx("jnl_process_vector","jpv_login_time")=4 + Set gtmtypes("jnl_process_vector",5,"name")="jnl_process_vector.jpv_node" + Set gtmtypes("jnl_process_vector",5,"off")=24 + Set gtmtypes("jnl_process_vector",5,"len")=16 + Set gtmtypes("jnl_process_vector",5,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_node")=5 + Set gtmtypes("jnl_process_vector",6,"name")="jnl_process_vector.jpv_user" + Set gtmtypes("jnl_process_vector",6,"off")=40 + Set gtmtypes("jnl_process_vector",6,"len")=12 + Set gtmtypes("jnl_process_vector",6,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_user")=6 + Set gtmtypes("jnl_process_vector",7,"name")="jnl_process_vector.jpv_prcnam" + Set gtmtypes("jnl_process_vector",7,"off")=52 + Set gtmtypes("jnl_process_vector",7,"len")=16 + Set gtmtypes("jnl_process_vector",7,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_prcnam")=7 + Set gtmtypes("jnl_process_vector",8,"name")="jnl_process_vector.jpv_terminal" + Set gtmtypes("jnl_process_vector",8,"off")=68 + Set gtmtypes("jnl_process_vector",8,"len")=15 + Set gtmtypes("jnl_process_vector",8,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_terminal")=8 + Set gtmtypes("jnl_process_vector",9,"name")="jnl_process_vector.jpv_mode" + Set gtmtypes("jnl_process_vector",9,"off")=83 + Set gtmtypes("jnl_process_vector",9,"len")=1 + Set gtmtypes("jnl_process_vector",9,"type")="unsigned-char" + Set gtmtypfldindx("jnl_process_vector","jpv_mode")=9 + Set gtmtypes("jnl_process_vector",10,"name")="jnl_process_vector.filler" + Set gtmtypes("jnl_process_vector",10,"off")=84 + Set gtmtypes("jnl_process_vector",10,"len")=4 + Set gtmtypes("jnl_process_vector",10,"type")="int" + Set gtmtypfldindx("jnl_process_vector","filler")=10 + ; + Set gtmtypes("jnl_record")="union" + Set gtmtypes("jnl_record",0)=100 + Set gtmtypes("jnl_record","len")=208 + Set gtmtypes("jnl_record",1,"name")="jnl_record.prefix" + Set gtmtypes("jnl_record",1,"off")=0 + Set gtmtypes("jnl_record",1,"len")=24 + Set gtmtypes("jnl_record",1,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","prefix")=1 + Set gtmtypes("jnl_record",2,"name")="jnl_record.prefix.pini_addr" + Set gtmtypes("jnl_record",2,"off")=4 + Set gtmtypes("jnl_record",2,"len")=4 + Set gtmtypes("jnl_record",2,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.pini_addr")=2 + Set gtmtypes("jnl_record",3,"name")="jnl_record.prefix.time" + Set gtmtypes("jnl_record",3,"off")=8 + Set gtmtypes("jnl_record",3,"len")=4 + Set gtmtypes("jnl_record",3,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.time")=3 + Set gtmtypes("jnl_record",4,"name")="jnl_record.prefix.checksum" + Set gtmtypes("jnl_record",4,"off")=12 + Set gtmtypes("jnl_record",4,"len")=4 + Set gtmtypes("jnl_record",4,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.checksum")=4 + Set gtmtypes("jnl_record",5,"name")="jnl_record.prefix.tn" + Set gtmtypes("jnl_record",5,"off")=16 + Set gtmtypes("jnl_record",5,"len")=8 + Set gtmtypes("jnl_record",5,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","prefix.tn")=5 + Set gtmtypes("jnl_record",6,"name")="jnl_record.jrec_set_kill" + Set gtmtypes("jnl_record",6,"off")=0 + Set gtmtypes("jnl_record",6,"len")=56 + Set gtmtypes("jnl_record",6,"type")="struct_jrec_upd" + Set gtmtypfldindx("jnl_record","jrec_set_kill")=6 + Set gtmtypes("jnl_record",7,"name")="jnl_record.jrec_set_kill.prefix" + Set gtmtypes("jnl_record",7,"off")=0 + Set gtmtypes("jnl_record",7,"len")=24 + Set gtmtypes("jnl_record",7,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_set_kill.prefix")=7 + Set gtmtypes("jnl_record",8,"name")="jnl_record.jrec_set_kill.token_seq" + Set gtmtypes("jnl_record",8,"off")=24 + Set gtmtypes("jnl_record",8,"len")=8 + Set gtmtypes("jnl_record",8,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_set_kill.token_seq")=8 + Set gtmtypes("jnl_record",9,"name")="jnl_record.jrec_set_kill.strm_seqno" + Set gtmtypes("jnl_record",9,"off")=32 + Set gtmtypes("jnl_record",9,"len")=8 + Set gtmtypes("jnl_record",9,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_set_kill.strm_seqno")=9 + Set gtmtypes("jnl_record",10,"name")="jnl_record.jrec_set_kill.update_num" + Set gtmtypes("jnl_record",10,"off")=40 + Set gtmtypes("jnl_record",10,"len")=4 + Set gtmtypes("jnl_record",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_set_kill.update_num")=10 + Set gtmtypes("jnl_record",11,"name")="jnl_record.jrec_set_kill.filler_short" + Set gtmtypes("jnl_record",11,"off")=44 + Set gtmtypes("jnl_record",11,"len")=2 + Set gtmtypes("jnl_record",11,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_set_kill.filler_short")=11 + Set gtmtypes("jnl_record",12,"name")="jnl_record.jrec_set_kill.num_participants" + Set gtmtypes("jnl_record",12,"off")=46 + Set gtmtypes("jnl_record",12,"len")=2 + Set gtmtypes("jnl_record",12,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_set_kill.num_participants")=12 + Set gtmtypes("jnl_record",13,"name")="jnl_record.jrec_set_kill.mumps_node" + Set gtmtypes("jnl_record",13,"off")=48 + Set gtmtypes("jnl_record",13,"len")=8 + Set gtmtypes("jnl_record",13,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_set_kill.mumps_node")=13 + Set gtmtypes("jnl_record",14,"name")="jnl_record.jrec_ztworm" + Set gtmtypes("jnl_record",14,"off")=0 + Set gtmtypes("jnl_record",14,"len")=56 + Set gtmtypes("jnl_record",14,"type")="struct_jrec_ztworm" + Set gtmtypfldindx("jnl_record","jrec_ztworm")=14 + Set gtmtypes("jnl_record",15,"name")="jnl_record.jrec_ztworm.prefix" + Set gtmtypes("jnl_record",15,"off")=0 + Set gtmtypes("jnl_record",15,"len")=24 + Set gtmtypes("jnl_record",15,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_ztworm.prefix")=15 + Set gtmtypes("jnl_record",16,"name")="jnl_record.jrec_ztworm.token_seq" + Set gtmtypes("jnl_record",16,"off")=24 + Set gtmtypes("jnl_record",16,"len")=8 + Set gtmtypes("jnl_record",16,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_ztworm.token_seq")=16 + Set gtmtypes("jnl_record",17,"name")="jnl_record.jrec_ztworm.strm_seqno" + Set gtmtypes("jnl_record",17,"off")=32 + Set gtmtypes("jnl_record",17,"len")=8 + Set gtmtypes("jnl_record",17,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztworm.strm_seqno")=17 + Set gtmtypes("jnl_record",18,"name")="jnl_record.jrec_ztworm.update_num" + Set gtmtypes("jnl_record",18,"off")=40 + Set gtmtypes("jnl_record",18,"len")=4 + Set gtmtypes("jnl_record",18,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_ztworm.update_num")=18 + Set gtmtypes("jnl_record",19,"name")="jnl_record.jrec_ztworm.filler_short" + Set gtmtypes("jnl_record",19,"off")=44 + Set gtmtypes("jnl_record",19,"len")=2 + Set gtmtypes("jnl_record",19,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztworm.filler_short")=19 + Set gtmtypes("jnl_record",20,"name")="jnl_record.jrec_ztworm.num_participants" + Set gtmtypes("jnl_record",20,"off")=46 + Set gtmtypes("jnl_record",20,"len")=2 + Set gtmtypes("jnl_record",20,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztworm.num_participants")=20 + Set gtmtypes("jnl_record",21,"name")="jnl_record.jrec_ztworm.ztworm_str" + Set gtmtypes("jnl_record",21,"off")=48 + Set gtmtypes("jnl_record",21,"len")=8 + Set gtmtypes("jnl_record",21,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_ztworm.ztworm_str")=21 + Set gtmtypes("jnl_record",22,"name")="jnl_record.jrec_lgtrig" + Set gtmtypes("jnl_record",22,"off")=0 + Set gtmtypes("jnl_record",22,"len")=56 + Set gtmtypes("jnl_record",22,"type")="struct_jrec_lgtrig" + Set gtmtypfldindx("jnl_record","jrec_lgtrig")=22 + Set gtmtypes("jnl_record",23,"name")="jnl_record.jrec_lgtrig.prefix" + Set gtmtypes("jnl_record",23,"off")=0 + Set gtmtypes("jnl_record",23,"len")=24 + Set gtmtypes("jnl_record",23,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.prefix")=23 + Set gtmtypes("jnl_record",24,"name")="jnl_record.jrec_lgtrig.token_seq" + Set gtmtypes("jnl_record",24,"off")=24 + Set gtmtypes("jnl_record",24,"len")=8 + Set gtmtypes("jnl_record",24,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.token_seq")=24 + Set gtmtypes("jnl_record",25,"name")="jnl_record.jrec_lgtrig.strm_seqno" + Set gtmtypes("jnl_record",25,"off")=32 + Set gtmtypes("jnl_record",25,"len")=8 + Set gtmtypes("jnl_record",25,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.strm_seqno")=25 + Set gtmtypes("jnl_record",26,"name")="jnl_record.jrec_lgtrig.update_num" + Set gtmtypes("jnl_record",26,"off")=40 + Set gtmtypes("jnl_record",26,"len")=4 + Set gtmtypes("jnl_record",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.update_num")=26 + Set gtmtypes("jnl_record",27,"name")="jnl_record.jrec_lgtrig.filler_short" + Set gtmtypes("jnl_record",27,"off")=44 + Set gtmtypes("jnl_record",27,"len")=2 + Set gtmtypes("jnl_record",27,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.filler_short")=27 + Set gtmtypes("jnl_record",28,"name")="jnl_record.jrec_lgtrig.num_participants" + Set gtmtypes("jnl_record",28,"off")=46 + Set gtmtypes("jnl_record",28,"len")=2 + Set gtmtypes("jnl_record",28,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.num_participants")=28 + Set gtmtypes("jnl_record",29,"name")="jnl_record.jrec_lgtrig.lgtrig_str" + Set gtmtypes("jnl_record",29,"off")=48 + Set gtmtypes("jnl_record",29,"len")=8 + Set gtmtypes("jnl_record",29,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.lgtrig_str")=29 + Set gtmtypes("jnl_record",30,"name")="jnl_record.jrec_pblk" + Set gtmtypes("jnl_record",30,"off")=0 + Set gtmtypes("jnl_record",30,"len")=44 + Set gtmtypes("jnl_record",30,"type")="struct_jrec_blk" + Set gtmtypfldindx("jnl_record","jrec_pblk")=30 + Set gtmtypes("jnl_record",31,"name")="jnl_record.jrec_pblk.prefix" + Set gtmtypes("jnl_record",31,"off")=0 + Set gtmtypes("jnl_record",31,"len")=24 + Set gtmtypes("jnl_record",31,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pblk.prefix")=31 + Set gtmtypes("jnl_record",32,"name")="jnl_record.jrec_pblk.blknum" + Set gtmtypes("jnl_record",32,"off")=24 + Set gtmtypes("jnl_record",32,"len")=4 + Set gtmtypes("jnl_record",32,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.blknum")=32 + Set gtmtypes("jnl_record",33,"name")="jnl_record.jrec_pblk.bsiz" + Set gtmtypes("jnl_record",33,"off")=28 + Set gtmtypes("jnl_record",33,"len")=4 + Set gtmtypes("jnl_record",33,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_pblk.bsiz")=33 + Set gtmtypes("jnl_record",34,"name")="jnl_record.jrec_pblk.ondsk_blkver" + Set gtmtypes("jnl_record",34,"off")=32 + Set gtmtypes("jnl_record",34,"len")=4 + Set gtmtypes("jnl_record",34,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.ondsk_blkver")=34 + Set gtmtypes("jnl_record",35,"name")="jnl_record.jrec_pblk.filler" + Set gtmtypes("jnl_record",35,"off")=36 + Set gtmtypes("jnl_record",35,"len")=4 + Set gtmtypes("jnl_record",35,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.filler")=35 + Set gtmtypes("jnl_record",36,"name")="jnl_record.jrec_pblk.blk_contents" + Set gtmtypes("jnl_record",36,"off")=40 + Set gtmtypes("jnl_record",36,"len")=1 + Set gtmtypes("jnl_record",36,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_pblk.blk_contents")=36 + Set gtmtypes("jnl_record",37,"name")="jnl_record.jrec_aimg" + Set gtmtypes("jnl_record",37,"off")=0 + Set gtmtypes("jnl_record",37,"len")=44 + Set gtmtypes("jnl_record",37,"type")="struct_jrec_blk" + Set gtmtypfldindx("jnl_record","jrec_aimg")=37 + Set gtmtypes("jnl_record",38,"name")="jnl_record.jrec_aimg.prefix" + Set gtmtypes("jnl_record",38,"off")=0 + Set gtmtypes("jnl_record",38,"len")=24 + Set gtmtypes("jnl_record",38,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_aimg.prefix")=38 + Set gtmtypes("jnl_record",39,"name")="jnl_record.jrec_aimg.blknum" + Set gtmtypes("jnl_record",39,"off")=24 + Set gtmtypes("jnl_record",39,"len")=4 + Set gtmtypes("jnl_record",39,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.blknum")=39 + Set gtmtypes("jnl_record",40,"name")="jnl_record.jrec_aimg.bsiz" + Set gtmtypes("jnl_record",40,"off")=28 + Set gtmtypes("jnl_record",40,"len")=4 + Set gtmtypes("jnl_record",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_aimg.bsiz")=40 + Set gtmtypes("jnl_record",41,"name")="jnl_record.jrec_aimg.ondsk_blkver" + Set gtmtypes("jnl_record",41,"off")=32 + Set gtmtypes("jnl_record",41,"len")=4 + Set gtmtypes("jnl_record",41,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.ondsk_blkver")=41 + Set gtmtypes("jnl_record",42,"name")="jnl_record.jrec_aimg.filler" + Set gtmtypes("jnl_record",42,"off")=36 + Set gtmtypes("jnl_record",42,"len")=4 + Set gtmtypes("jnl_record",42,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.filler")=42 + Set gtmtypes("jnl_record",43,"name")="jnl_record.jrec_aimg.blk_contents" + Set gtmtypes("jnl_record",43,"off")=40 + Set gtmtypes("jnl_record",43,"len")=1 + Set gtmtypes("jnl_record",43,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_aimg.blk_contents")=43 + Set gtmtypes("jnl_record",44,"name")="jnl_record.jrec_align" + Set gtmtypes("jnl_record",44,"off")=0 + Set gtmtypes("jnl_record",44,"len")=32 + Set gtmtypes("jnl_record",44,"type")="struct_jrec_align" + Set gtmtypfldindx("jnl_record","jrec_align")=44 + Set gtmtypes("jnl_record",45,"name")="jnl_record.jrec_align.prefix" + Set gtmtypes("jnl_record",45,"off")=0 + Set gtmtypes("jnl_record",45,"len")=24 + Set gtmtypes("jnl_record",45,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_align.prefix")=45 + Set gtmtypes("jnl_record",46,"name")="jnl_record.jrec_align.align_str" + Set gtmtypes("jnl_record",46,"off")=24 + Set gtmtypes("jnl_record",46,"len")=8 + Set gtmtypes("jnl_record",46,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_align.align_str")=46 + Set gtmtypes("jnl_record",47,"name")="jnl_record.jrec_tcom" + Set gtmtypes("jnl_record",47,"off")=0 + Set gtmtypes("jnl_record",47,"len")=56 + Set gtmtypes("jnl_record",47,"type")="struct_jrec_tcom" + Set gtmtypfldindx("jnl_record","jrec_tcom")=47 + Set gtmtypes("jnl_record",48,"name")="jnl_record.jrec_tcom.prefix" + Set gtmtypes("jnl_record",48,"off")=0 + Set gtmtypes("jnl_record",48,"len")=24 + Set gtmtypes("jnl_record",48,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_tcom.prefix")=48 + Set gtmtypes("jnl_record",49,"name")="jnl_record.jrec_tcom.token_seq" + Set gtmtypes("jnl_record",49,"off")=24 + Set gtmtypes("jnl_record",49,"len")=8 + Set gtmtypes("jnl_record",49,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_tcom.token_seq")=49 + Set gtmtypes("jnl_record",50,"name")="jnl_record.jrec_tcom.strm_seqno" + Set gtmtypes("jnl_record",50,"off")=32 + Set gtmtypes("jnl_record",50,"len")=8 + Set gtmtypes("jnl_record",50,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_tcom.strm_seqno")=50 + Set gtmtypes("jnl_record",51,"name")="jnl_record.jrec_tcom.filler_short" + Set gtmtypes("jnl_record",51,"off")=40 + Set gtmtypes("jnl_record",51,"len")=2 + Set gtmtypes("jnl_record",51,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_tcom.filler_short")=51 + Set gtmtypes("jnl_record",52,"name")="jnl_record.jrec_tcom.num_participants" + Set gtmtypes("jnl_record",52,"off")=42 + Set gtmtypes("jnl_record",52,"len")=2 + Set gtmtypes("jnl_record",52,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_tcom.num_participants")=52 + Set gtmtypes("jnl_record",53,"name")="jnl_record.jrec_tcom.jnl_tid" + Set gtmtypes("jnl_record",53,"off")=44 + Set gtmtypes("jnl_record",53,"len")=8 + Set gtmtypes("jnl_record",53,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_tcom.jnl_tid")=53 + Set gtmtypes("jnl_record",54,"name")="jnl_record.jrec_tcom.suffix" + Set gtmtypes("jnl_record",54,"off")=52 + Set gtmtypes("jnl_record",54,"len")=4 + Set gtmtypes("jnl_record",54,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_tcom.suffix")=54 + Set gtmtypes("jnl_record",55,"name")="jnl_record.jrec_ztcom" + Set gtmtypes("jnl_record",55,"off")=0 + Set gtmtypes("jnl_record",55,"len")=48 + Set gtmtypes("jnl_record",55,"type")="struct_jrec_ztcom" + Set gtmtypfldindx("jnl_record","jrec_ztcom")=55 + Set gtmtypes("jnl_record",56,"name")="jnl_record.jrec_ztcom.prefix" + Set gtmtypes("jnl_record",56,"off")=0 + Set gtmtypes("jnl_record",56,"len")=24 + Set gtmtypes("jnl_record",56,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_ztcom.prefix")=56 + Set gtmtypes("jnl_record",57,"name")="jnl_record.jrec_ztcom.token" + Set gtmtypes("jnl_record",57,"off")=24 + Set gtmtypes("jnl_record",57,"len")=8 + Set gtmtypes("jnl_record",57,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztcom.token")=57 + Set gtmtypes("jnl_record",58,"name")="jnl_record.jrec_ztcom.filler_8bytes" + Set gtmtypes("jnl_record",58,"off")=32 + Set gtmtypes("jnl_record",58,"len")=8 + Set gtmtypes("jnl_record",58,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztcom.filler_8bytes")=58 + Set gtmtypes("jnl_record",59,"name")="jnl_record.jrec_ztcom.filler_short" + Set gtmtypes("jnl_record",59,"off")=40 + Set gtmtypes("jnl_record",59,"len")=2 + Set gtmtypes("jnl_record",59,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztcom.filler_short")=59 + Set gtmtypes("jnl_record",60,"name")="jnl_record.jrec_ztcom.participants" + Set gtmtypes("jnl_record",60,"off")=42 + Set gtmtypes("jnl_record",60,"len")=2 + Set gtmtypes("jnl_record",60,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztcom.participants")=60 + Set gtmtypes("jnl_record",61,"name")="jnl_record.jrec_ztcom.suffix" + Set gtmtypes("jnl_record",61,"off")=44 + Set gtmtypes("jnl_record",61,"len")=4 + Set gtmtypes("jnl_record",61,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_ztcom.suffix")=61 + Set gtmtypes("jnl_record",62,"name")="jnl_record.jrec_inctn" + Set gtmtypes("jnl_record",62,"off")=0 + Set gtmtypes("jnl_record",62,"len")=40 + Set gtmtypes("jnl_record",62,"type")="struct_jrec_inctn" + Set gtmtypfldindx("jnl_record","jrec_inctn")=62 + Set gtmtypes("jnl_record",63,"name")="jnl_record.jrec_inctn.prefix" + Set gtmtypes("jnl_record",63,"off")=0 + Set gtmtypes("jnl_record",63,"len")=24 + Set gtmtypes("jnl_record",63,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_inctn.prefix")=63 + Set gtmtypes("jnl_record",64,"name")="jnl_record.jrec_inctn.detail" + Set gtmtypes("jnl_record",64,"off")=24 + Set gtmtypes("jnl_record",64,"len")=16 + Set gtmtypes("jnl_record",64,"type")="inctn_detail_t" + Set gtmtypfldindx("jnl_record","jrec_inctn.detail")=64 + Set gtmtypes("jnl_record",65,"name")="jnl_record.jrec_pini" + Set gtmtypes("jnl_record",65,"off")=0 + Set gtmtypes("jnl_record",65,"len")=208 + Set gtmtypes("jnl_record",65,"type")="struct_jrec_pini" + Set gtmtypfldindx("jnl_record","jrec_pini")=65 + Set gtmtypes("jnl_record",66,"name")="jnl_record.jrec_pini.prefix" + Set gtmtypes("jnl_record",66,"off")=0 + Set gtmtypes("jnl_record",66,"len")=24 + Set gtmtypes("jnl_record",66,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pini.prefix")=66 + Set gtmtypes("jnl_record",67,"name")="jnl_record.jrec_pini.process_vector" + Set gtmtypes("jnl_record",67,"off")=24 + Set gtmtypes("jnl_record",67,"len")=176 + Set gtmtypes("jnl_record",67,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_record","jrec_pini.process_vector")=67 + Set gtmtypes("jnl_record",67,"dim")=2 + Set gtmtypes("jnl_record",68,"name")="jnl_record.jrec_pini.filler" + Set gtmtypes("jnl_record",68,"off")=200 + Set gtmtypes("jnl_record",68,"len")=4 + Set gtmtypes("jnl_record",68,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pini.filler")=68 + Set gtmtypes("jnl_record",69,"name")="jnl_record.jrec_pini.suffix" + Set gtmtypes("jnl_record",69,"off")=204 + Set gtmtypes("jnl_record",69,"len")=4 + Set gtmtypes("jnl_record",69,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_pini.suffix")=69 + Set gtmtypes("jnl_record",70,"name")="jnl_record.jrec_pfin" + Set gtmtypes("jnl_record",70,"off")=0 + Set gtmtypes("jnl_record",70,"len")=32 + Set gtmtypes("jnl_record",70,"type")="struct_jrec_pfin" + Set gtmtypfldindx("jnl_record","jrec_pfin")=70 + Set gtmtypes("jnl_record",71,"name")="jnl_record.jrec_pfin.prefix" + Set gtmtypes("jnl_record",71,"off")=0 + Set gtmtypes("jnl_record",71,"len")=24 + Set gtmtypes("jnl_record",71,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pfin.prefix")=71 + Set gtmtypes("jnl_record",72,"name")="jnl_record.jrec_pfin.filler" + Set gtmtypes("jnl_record",72,"off")=24 + Set gtmtypes("jnl_record",72,"len")=4 + Set gtmtypes("jnl_record",72,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_pfin.filler")=72 + Set gtmtypes("jnl_record",73,"name")="jnl_record.jrec_pfin.suffix" + Set gtmtypes("jnl_record",73,"off")=28 + Set gtmtypes("jnl_record",73,"len")=4 + Set gtmtypes("jnl_record",73,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_pfin.suffix")=73 + Set gtmtypes("jnl_record",74,"name")="jnl_record.jrec_null" + Set gtmtypes("jnl_record",74,"off")=0 + Set gtmtypes("jnl_record",74,"len")=48 + Set gtmtypes("jnl_record",74,"type")="struct_jrec_null" + Set gtmtypfldindx("jnl_record","jrec_null")=74 + Set gtmtypes("jnl_record",75,"name")="jnl_record.jrec_null.prefix" + Set gtmtypes("jnl_record",75,"off")=0 + Set gtmtypes("jnl_record",75,"len")=24 + Set gtmtypes("jnl_record",75,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_null.prefix")=75 + Set gtmtypes("jnl_record",76,"name")="jnl_record.jrec_null.jnl_seqno" + Set gtmtypes("jnl_record",76,"off")=24 + Set gtmtypes("jnl_record",76,"len")=8 + Set gtmtypes("jnl_record",76,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_null.jnl_seqno")=76 + Set gtmtypes("jnl_record",77,"name")="jnl_record.jrec_null.strm_seqno" + Set gtmtypes("jnl_record",77,"off")=32 + Set gtmtypes("jnl_record",77,"len")=8 + Set gtmtypes("jnl_record",77,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_null.strm_seqno")=77 + Set gtmtypes("jnl_record",78,"name")="jnl_record.jrec_null.filler" + Set gtmtypes("jnl_record",78,"off")=40 + Set gtmtypes("jnl_record",78,"len")=4 + Set gtmtypes("jnl_record",78,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_null.filler")=78 + Set gtmtypes("jnl_record",79,"name")="jnl_record.jrec_null.suffix" + Set gtmtypes("jnl_record",79,"off")=44 + Set gtmtypes("jnl_record",79,"len")=4 + Set gtmtypes("jnl_record",79,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_null.suffix")=79 + Set gtmtypes("jnl_record",80,"name")="jnl_record.jrec_epoch" + Set gtmtypes("jnl_record",80,"off")=0 + Set gtmtypes("jnl_record",80,"len")=184 + Set gtmtypes("jnl_record",80,"type")="struct_jrec_epoch" + Set gtmtypfldindx("jnl_record","jrec_epoch")=80 + Set gtmtypes("jnl_record",81,"name")="jnl_record.jrec_epoch.prefix" + Set gtmtypes("jnl_record",81,"off")=0 + Set gtmtypes("jnl_record",81,"len")=24 + Set gtmtypes("jnl_record",81,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_epoch.prefix")=81 + Set gtmtypes("jnl_record",82,"name")="jnl_record.jrec_epoch.jnl_seqno" + Set gtmtypes("jnl_record",82,"off")=24 + Set gtmtypes("jnl_record",82,"len")=8 + Set gtmtypes("jnl_record",82,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.jnl_seqno")=82 + Set gtmtypes("jnl_record",83,"name")="jnl_record.jrec_epoch.blks_to_upgrd" + Set gtmtypes("jnl_record",83,"off")=32 + Set gtmtypes("jnl_record",83,"len")=4 + Set gtmtypes("jnl_record",83,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.blks_to_upgrd")=83 + Set gtmtypes("jnl_record",84,"name")="jnl_record.jrec_epoch.free_blocks" + Set gtmtypes("jnl_record",84,"off")=36 + Set gtmtypes("jnl_record",84,"len")=4 + Set gtmtypes("jnl_record",84,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.free_blocks")=84 + Set gtmtypes("jnl_record",85,"name")="jnl_record.jrec_epoch.total_blks" + Set gtmtypes("jnl_record",85,"off")=40 + Set gtmtypes("jnl_record",85,"len")=4 + Set gtmtypes("jnl_record",85,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.total_blks")=85 + Set gtmtypes("jnl_record",86,"name")="jnl_record.jrec_epoch.fully_upgraded" + Set gtmtypes("jnl_record",86,"off")=44 + Set gtmtypes("jnl_record",86,"len")=4 + Set gtmtypes("jnl_record",86,"type")="boolean_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.fully_upgraded")=86 + Set gtmtypes("jnl_record",87,"name")="jnl_record.jrec_epoch.strm_seqno" + Set gtmtypes("jnl_record",87,"off")=48 + Set gtmtypes("jnl_record",87,"len")=128 + Set gtmtypes("jnl_record",87,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.strm_seqno")=87 + Set gtmtypes("jnl_record",87,"dim")=16 + Set gtmtypes("jnl_record",88,"name")="jnl_record.jrec_epoch.filler" + Set gtmtypes("jnl_record",88,"off")=176 + Set gtmtypes("jnl_record",88,"len")=4 + Set gtmtypes("jnl_record",88,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.filler")=88 + Set gtmtypes("jnl_record",89,"name")="jnl_record.jrec_epoch.suffix" + Set gtmtypes("jnl_record",89,"off")=180 + Set gtmtypes("jnl_record",89,"len")=4 + Set gtmtypes("jnl_record",89,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_epoch.suffix")=89 + Set gtmtypes("jnl_record",90,"name")="jnl_record.jrec_eof" + Set gtmtypes("jnl_record",90,"off")=0 + Set gtmtypes("jnl_record",90,"len")=40 + Set gtmtypes("jnl_record",90,"type")="struct_jrec_eof" + Set gtmtypfldindx("jnl_record","jrec_eof")=90 + Set gtmtypes("jnl_record",91,"name")="jnl_record.jrec_eof.prefix" + Set gtmtypes("jnl_record",91,"off")=0 + Set gtmtypes("jnl_record",91,"len")=24 + Set gtmtypes("jnl_record",91,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_eof.prefix")=91 + Set gtmtypes("jnl_record",92,"name")="jnl_record.jrec_eof.jnl_seqno" + Set gtmtypes("jnl_record",92,"off")=24 + Set gtmtypes("jnl_record",92,"len")=8 + Set gtmtypes("jnl_record",92,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_eof.jnl_seqno")=92 + Set gtmtypes("jnl_record",93,"name")="jnl_record.jrec_eof.filler" + Set gtmtypes("jnl_record",93,"off")=32 + Set gtmtypes("jnl_record",93,"len")=4 + Set gtmtypes("jnl_record",93,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_eof.filler")=93 + Set gtmtypes("jnl_record",94,"name")="jnl_record.jrec_eof.suffix" + Set gtmtypes("jnl_record",94,"off")=36 + Set gtmtypes("jnl_record",94,"len")=4 + Set gtmtypes("jnl_record",94,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_eof.suffix")=94 + Set gtmtypes("jnl_record",95,"name")="jnl_record.jrec_trunc" + Set gtmtypes("jnl_record",95,"off")=0 + Set gtmtypes("jnl_record",95,"len")=40 + Set gtmtypes("jnl_record",95,"type")="struct_jrec_trunc" + Set gtmtypfldindx("jnl_record","jrec_trunc")=95 + Set gtmtypes("jnl_record",96,"name")="jnl_record.jrec_trunc.prefix" + Set gtmtypes("jnl_record",96,"off")=0 + Set gtmtypes("jnl_record",96,"len")=24 + Set gtmtypes("jnl_record",96,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_trunc.prefix")=96 + Set gtmtypes("jnl_record",97,"name")="jnl_record.jrec_trunc.orig_total_blks" + Set gtmtypes("jnl_record",97,"off")=24 + Set gtmtypes("jnl_record",97,"len")=4 + Set gtmtypes("jnl_record",97,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.orig_total_blks")=97 + Set gtmtypes("jnl_record",98,"name")="jnl_record.jrec_trunc.orig_free_blocks" + Set gtmtypes("jnl_record",98,"off")=28 + Set gtmtypes("jnl_record",98,"len")=4 + Set gtmtypes("jnl_record",98,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.orig_free_blocks")=98 + Set gtmtypes("jnl_record",99,"name")="jnl_record.jrec_trunc.total_blks_after_trunc" + Set gtmtypes("jnl_record",99,"off")=32 + Set gtmtypes("jnl_record",99,"len")=4 + Set gtmtypes("jnl_record",99,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.total_blks_after_trunc")=99 + Set gtmtypes("jnl_record",100,"name")="jnl_record.jrec_trunc.suffix" + Set gtmtypes("jnl_record",100,"off")=36 + Set gtmtypes("jnl_record",100,"len")=4 + Set gtmtypes("jnl_record",100,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_trunc.suffix")=100 + ; + Set gtmtypes("jnl_string")="struct" + Set gtmtypes("jnl_string",0)=1 + Set gtmtypes("jnl_string","len")=8 + Set gtmtypes("jnl_string",1,"name")="jnl_string.text" + Set gtmtypes("jnl_string",1,"off")=4 + Set gtmtypes("jnl_string",1,"len")=1 + Set gtmtypes("jnl_string",1,"type")="char" + Set gtmtypfldindx("jnl_string","text")=1 + ; + Set gtmtypes("jnldata_hdr_struct")="struct" + Set gtmtypes("jnldata_hdr_struct",0)=2 + Set gtmtypes("jnldata_hdr_struct","len")=8 + Set gtmtypes("jnldata_hdr_struct",1,"name")="jnldata_hdr_struct.jnldata_len" + Set gtmtypes("jnldata_hdr_struct",1,"off")=0 + Set gtmtypes("jnldata_hdr_struct",1,"len")=4 + Set gtmtypes("jnldata_hdr_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("jnldata_hdr_struct","jnldata_len")=1 + Set gtmtypes("jnldata_hdr_struct",2,"name")="jnldata_hdr_struct.prev_jnldata_len" + Set gtmtypes("jnldata_hdr_struct",2,"off")=4 + Set gtmtypes("jnldata_hdr_struct",2,"len")=4 + Set gtmtypes("jnldata_hdr_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("jnldata_hdr_struct","prev_jnldata_len")=2 + ; + Set gtmtypes("jnlext_multi_t")="struct" + Set gtmtypes("jnlext_multi_t",0)=7 + Set gtmtypes("jnlext_multi_t","len")=24 + Set gtmtypes("jnlext_multi_t",1,"name")="jnlext_multi_t.time" + Set gtmtypes("jnlext_multi_t",1,"off")=0 + Set gtmtypes("jnlext_multi_t",1,"len")=4 + Set gtmtypes("jnlext_multi_t",1,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","time")=1 + Set gtmtypes("jnlext_multi_t",2,"name")="jnlext_multi_t.token_seq" + Set gtmtypes("jnlext_multi_t",2,"off")=4 + Set gtmtypes("jnlext_multi_t",2,"len")=8 + Set gtmtypes("jnlext_multi_t",2,"type")="token_seq_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq")=2 + Set gtmtypes("jnlext_multi_t",3,"name")="jnlext_multi_t.token_seq.jnl_seqno" + Set gtmtypes("jnlext_multi_t",3,"off")=4 + Set gtmtypes("jnlext_multi_t",3,"len")=8 + Set gtmtypes("jnlext_multi_t",3,"type")="uint64_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq.jnl_seqno")=3 + Set gtmtypes("jnlext_multi_t",4,"name")="jnlext_multi_t.token_seq.token" + Set gtmtypes("jnlext_multi_t",4,"off")=4 + Set gtmtypes("jnlext_multi_t",4,"len")=8 + Set gtmtypes("jnlext_multi_t",4,"type")="uint64_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq.token")=4 + Set gtmtypes("jnlext_multi_t",5,"name")="jnlext_multi_t.update_num" + Set gtmtypes("jnlext_multi_t",5,"off")=12 + Set gtmtypes("jnlext_multi_t",5,"len")=4 + Set gtmtypes("jnlext_multi_t",5,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","update_num")=5 + Set gtmtypes("jnlext_multi_t",6,"name")="jnlext_multi_t.num_more_reg" + Set gtmtypes("jnlext_multi_t",6,"off")=16 + Set gtmtypes("jnlext_multi_t",6,"len")=4 + Set gtmtypes("jnlext_multi_t",6,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","num_more_reg")=6 + Set gtmtypes("jnlext_multi_t",7,"name")="jnlext_multi_t.size" + Set gtmtypes("jnlext_multi_t",7,"off")=20 + Set gtmtypes("jnlext_multi_t",7,"len")=4 + Set gtmtypes("jnlext_multi_t",7,"type")="size_t" + Set gtmtypfldindx("jnlext_multi_t","size")=7 + ; + Set gtmtypes("jnlpool_addrs")="struct" + Set gtmtypes("jnlpool_addrs",0)=7 + Set gtmtypes("jnlpool_addrs","len")=28 + Set gtmtypes("jnlpool_addrs",1,"name")="jnlpool_addrs.jnlpool_ctl" + Set gtmtypes("jnlpool_addrs",1,"off")=0 + Set gtmtypes("jnlpool_addrs",1,"len")=4 + Set gtmtypes("jnlpool_addrs",1,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnlpool_ctl")=1 + Set gtmtypes("jnlpool_addrs",2,"name")="jnlpool_addrs.jnlpool_dummy_reg" + Set gtmtypes("jnlpool_addrs",2,"off")=4 + Set gtmtypes("jnlpool_addrs",2,"len")=4 + Set gtmtypes("jnlpool_addrs",2,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnlpool_dummy_reg")=2 + Set gtmtypes("jnlpool_addrs",3,"name")="jnlpool_addrs.gtmsource_local" + Set gtmtypes("jnlpool_addrs",3,"off")=8 + Set gtmtypes("jnlpool_addrs",3,"len")=4 + Set gtmtypes("jnlpool_addrs",3,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsource_local")=3 + Set gtmtypes("jnlpool_addrs",4,"name")="jnlpool_addrs.gtmsource_local_array" + Set gtmtypes("jnlpool_addrs",4,"off")=12 + Set gtmtypes("jnlpool_addrs",4,"len")=4 + Set gtmtypes("jnlpool_addrs",4,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsource_local_array")=4 + Set gtmtypes("jnlpool_addrs",5,"name")="jnlpool_addrs.repl_inst_filehdr" + Set gtmtypes("jnlpool_addrs",5,"off")=16 + Set gtmtypes("jnlpool_addrs",5,"len")=4 + Set gtmtypes("jnlpool_addrs",5,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","repl_inst_filehdr")=5 + Set gtmtypes("jnlpool_addrs",6,"name")="jnlpool_addrs.gtmsrc_lcl_array" + Set gtmtypes("jnlpool_addrs",6,"off")=20 + Set gtmtypes("jnlpool_addrs",6,"len")=4 + Set gtmtypes("jnlpool_addrs",6,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsrc_lcl_array")=6 + Set gtmtypes("jnlpool_addrs",7,"name")="jnlpool_addrs.jnldata_base" + Set gtmtypes("jnlpool_addrs",7,"off")=24 + Set gtmtypes("jnlpool_addrs",7,"len")=4 + Set gtmtypes("jnlpool_addrs",7,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnldata_base")=7 + ; + Set gtmtypes("jnlpool_ctl_struct")="struct" + Set gtmtypes("jnlpool_ctl_struct",0)=47 + Set gtmtypes("jnlpool_ctl_struct","len")=3712 + Set gtmtypes("jnlpool_ctl_struct",1,"name")="jnlpool_ctl_struct.jnlpool_id" + Set gtmtypes("jnlpool_ctl_struct",1,"off")=0 + Set gtmtypes("jnlpool_ctl_struct",1,"len")=312 + Set gtmtypes("jnlpool_ctl_struct",1,"type")="replpool_identifier" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id")=1 + Set gtmtypes("jnlpool_ctl_struct",2,"name")="jnlpool_ctl_struct.jnlpool_id.label" + Set gtmtypes("jnlpool_ctl_struct",2,"off")=0 + Set gtmtypes("jnlpool_ctl_struct",2,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.label")=2 + Set gtmtypes("jnlpool_ctl_struct",3,"name")="jnlpool_ctl_struct.jnlpool_id.pool_type" + Set gtmtypes("jnlpool_ctl_struct",3,"off")=12 + Set gtmtypes("jnlpool_ctl_struct",3,"len")=1 + Set gtmtypes("jnlpool_ctl_struct",3,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.pool_type")=3 + Set gtmtypes("jnlpool_ctl_struct",4,"name")="jnlpool_ctl_struct.jnlpool_id.now_running" + Set gtmtypes("jnlpool_ctl_struct",4,"off")=13 + Set gtmtypes("jnlpool_ctl_struct",4,"len")=36 + Set gtmtypes("jnlpool_ctl_struct",4,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.now_running")=4 + Set gtmtypes("jnlpool_ctl_struct",5,"name")="jnlpool_ctl_struct.jnlpool_id.repl_pool_key_filler" + Set gtmtypes("jnlpool_ctl_struct",5,"off")=52 + Set gtmtypes("jnlpool_ctl_struct",5,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",5,"type")="int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.repl_pool_key_filler")=5 + Set gtmtypes("jnlpool_ctl_struct",6,"name")="jnlpool_ctl_struct.jnlpool_id.instfilename" + Set gtmtypes("jnlpool_ctl_struct",6,"off")=56 + Set gtmtypes("jnlpool_ctl_struct",6,"len")=256 + Set gtmtypes("jnlpool_ctl_struct",6,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.instfilename")=6 + Set gtmtypes("jnlpool_ctl_struct",7,"name")="jnlpool_ctl_struct.critical_off" + Set gtmtypes("jnlpool_ctl_struct",7,"off")=312 + Set gtmtypes("jnlpool_ctl_struct",7,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",7,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","critical_off")=7 + Set gtmtypes("jnlpool_ctl_struct",8,"name")="jnlpool_ctl_struct.filehdr_off" + Set gtmtypes("jnlpool_ctl_struct",8,"off")=316 + Set gtmtypes("jnlpool_ctl_struct",8,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",8,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","filehdr_off")=8 + Set gtmtypes("jnlpool_ctl_struct",9,"name")="jnlpool_ctl_struct.srclcl_array_off" + Set gtmtypes("jnlpool_ctl_struct",9,"off")=320 + Set gtmtypes("jnlpool_ctl_struct",9,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",9,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","srclcl_array_off")=9 + Set gtmtypes("jnlpool_ctl_struct",10,"name")="jnlpool_ctl_struct.sourcelocal_array_off" + Set gtmtypes("jnlpool_ctl_struct",10,"off")=324 + Set gtmtypes("jnlpool_ctl_struct",10,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",10,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","sourcelocal_array_off")=10 + Set gtmtypes("jnlpool_ctl_struct",11,"name")="jnlpool_ctl_struct.jnldata_base_off" + Set gtmtypes("jnlpool_ctl_struct",11,"off")=328 + Set gtmtypes("jnlpool_ctl_struct",11,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnldata_base_off")=11 + Set gtmtypes("jnlpool_ctl_struct",12,"name")="jnlpool_ctl_struct.jnlpool_size" + Set gtmtypes("jnlpool_ctl_struct",12,"off")=332 + Set gtmtypes("jnlpool_ctl_struct",12,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_size")=12 + Set gtmtypes("jnlpool_ctl_struct",13,"name")="jnlpool_ctl_struct.start_jnl_seqno" + Set gtmtypes("jnlpool_ctl_struct",13,"off")=336 + Set gtmtypes("jnlpool_ctl_struct",13,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",13,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","start_jnl_seqno")=13 + Set gtmtypes("jnlpool_ctl_struct",14,"name")="jnlpool_ctl_struct.jnl_seqno" + Set gtmtypes("jnlpool_ctl_struct",14,"off")=344 + Set gtmtypes("jnlpool_ctl_struct",14,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",14,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","jnl_seqno")=14 + Set gtmtypes("jnlpool_ctl_struct",15,"name")="jnlpool_ctl_struct.last_histinfo_seqno" + Set gtmtypes("jnlpool_ctl_struct",15,"off")=352 + Set gtmtypes("jnlpool_ctl_struct",15,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",15,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","last_histinfo_seqno")=15 + Set gtmtypes("jnlpool_ctl_struct",16,"name")="jnlpool_ctl_struct.max_zqgblmod_seqno" + Set gtmtypes("jnlpool_ctl_struct",16,"off")=360 + Set gtmtypes("jnlpool_ctl_struct",16,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",16,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","max_zqgblmod_seqno")=16 + Set gtmtypes("jnlpool_ctl_struct",17,"name")="jnlpool_ctl_struct.early_write_addr" + Set gtmtypes("jnlpool_ctl_struct",17,"off")=368 + Set gtmtypes("jnlpool_ctl_struct",17,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",17,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","early_write_addr")=17 + Set gtmtypes("jnlpool_ctl_struct",18,"name")="jnlpool_ctl_struct.write_addr" + Set gtmtypes("jnlpool_ctl_struct",18,"off")=376 + Set gtmtypes("jnlpool_ctl_struct",18,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",18,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","write_addr")=18 + Set gtmtypes("jnlpool_ctl_struct",19,"name")="jnlpool_ctl_struct.write" + Set gtmtypes("jnlpool_ctl_struct",19,"off")=384 + Set gtmtypes("jnlpool_ctl_struct",19,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",19,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","write")=19 + Set gtmtypes("jnlpool_ctl_struct",20,"name")="jnlpool_ctl_struct.upd_disabled" + Set gtmtypes("jnlpool_ctl_struct",20,"off")=388 + Set gtmtypes("jnlpool_ctl_struct",20,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",20,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","upd_disabled")=20 + Set gtmtypes("jnlpool_ctl_struct",21,"name")="jnlpool_ctl_struct.lastwrite_len" + Set gtmtypes("jnlpool_ctl_struct",21,"off")=392 + Set gtmtypes("jnlpool_ctl_struct",21,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",21,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","lastwrite_len")=21 + Set gtmtypes("jnlpool_ctl_struct",22,"name")="jnlpool_ctl_struct.send_losttn_complete" + Set gtmtypes("jnlpool_ctl_struct",22,"off")=396 + Set gtmtypes("jnlpool_ctl_struct",22,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",22,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","send_losttn_complete")=22 + Set gtmtypes("jnlpool_ctl_struct",23,"name")="jnlpool_ctl_struct.primary_instname" + Set gtmtypes("jnlpool_ctl_struct",23,"off")=400 + Set gtmtypes("jnlpool_ctl_struct",23,"len")=16 + Set gtmtypes("jnlpool_ctl_struct",23,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","primary_instname")=23 + Set gtmtypes("jnlpool_ctl_struct",24,"name")="jnlpool_ctl_struct.gtmrecv_pid" + Set gtmtypes("jnlpool_ctl_struct",24,"off")=416 + Set gtmtypes("jnlpool_ctl_struct",24,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","gtmrecv_pid")=24 + Set gtmtypes("jnlpool_ctl_struct",25,"name")="jnlpool_ctl_struct.prev_jnlseqno_time" + Set gtmtypes("jnlpool_ctl_struct",25,"off")=420 + Set gtmtypes("jnlpool_ctl_struct",25,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","prev_jnlseqno_time")=25 + Set gtmtypes("jnlpool_ctl_struct",26,"name")="jnlpool_ctl_struct.pool_initialized" + Set gtmtypes("jnlpool_ctl_struct",26,"off")=424 + Set gtmtypes("jnlpool_ctl_struct",26,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",26,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","pool_initialized")=26 + Set gtmtypes("jnlpool_ctl_struct",27,"name")="jnlpool_ctl_struct.jnlpool_creator_pid" + Set gtmtypes("jnlpool_ctl_struct",27,"off")=428 + Set gtmtypes("jnlpool_ctl_struct",27,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",27,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_creator_pid")=27 + Set gtmtypes("jnlpool_ctl_struct",28,"name")="jnlpool_ctl_struct.this_side" + Set gtmtypes("jnlpool_ctl_struct",28,"off")=432 + Set gtmtypes("jnlpool_ctl_struct",28,"len")=48 + Set gtmtypes("jnlpool_ctl_struct",28,"type")="repl_conn_info_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side")=28 + Set gtmtypes("jnlpool_ctl_struct",29,"name")="jnlpool_ctl_struct.this_side.proto_ver" + Set gtmtypes("jnlpool_ctl_struct",29,"off")=432 + Set gtmtypes("jnlpool_ctl_struct",29,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",29,"type")="int" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.proto_ver")=29 + Set gtmtypes("jnlpool_ctl_struct",30,"name")="jnlpool_ctl_struct.this_side.jnl_ver" + Set gtmtypes("jnlpool_ctl_struct",30,"off")=436 + Set gtmtypes("jnlpool_ctl_struct",30,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.jnl_ver")=30 + Set gtmtypes("jnlpool_ctl_struct",31,"name")="jnlpool_ctl_struct.this_side.is_std_null_coll" + Set gtmtypes("jnlpool_ctl_struct",31,"off")=440 + Set gtmtypes("jnlpool_ctl_struct",31,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",31,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.is_std_null_coll")=31 + Set gtmtypes("jnlpool_ctl_struct",32,"name")="jnlpool_ctl_struct.this_side.trigger_supported" + Set gtmtypes("jnlpool_ctl_struct",32,"off")=444 + Set gtmtypes("jnlpool_ctl_struct",32,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",32,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.trigger_supported")=32 + Set gtmtypes("jnlpool_ctl_struct",33,"name")="jnlpool_ctl_struct.this_side.cross_endian" + Set gtmtypes("jnlpool_ctl_struct",33,"off")=448 + Set gtmtypes("jnlpool_ctl_struct",33,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",33,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.cross_endian")=33 + Set gtmtypes("jnlpool_ctl_struct",34,"name")="jnlpool_ctl_struct.this_side.endianness_known" + Set gtmtypes("jnlpool_ctl_struct",34,"off")=452 + Set gtmtypes("jnlpool_ctl_struct",34,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",34,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.endianness_known")=34 + Set gtmtypes("jnlpool_ctl_struct",35,"name")="jnlpool_ctl_struct.this_side.null_subs_xform" + Set gtmtypes("jnlpool_ctl_struct",35,"off")=456 + Set gtmtypes("jnlpool_ctl_struct",35,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",35,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.null_subs_xform")=35 + Set gtmtypes("jnlpool_ctl_struct",36,"name")="jnlpool_ctl_struct.this_side.is_supplementary" + Set gtmtypes("jnlpool_ctl_struct",36,"off")=460 + Set gtmtypes("jnlpool_ctl_struct",36,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",36,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.is_supplementary")=36 + Set gtmtypes("jnlpool_ctl_struct",37,"name")="jnlpool_ctl_struct.this_side.tls_requested" + Set gtmtypes("jnlpool_ctl_struct",37,"off")=464 + Set gtmtypes("jnlpool_ctl_struct",37,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",37,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.tls_requested")=37 + Set gtmtypes("jnlpool_ctl_struct",38,"name")="jnlpool_ctl_struct.this_side.filler_16" + Set gtmtypes("jnlpool_ctl_struct",38,"off")=468 + Set gtmtypes("jnlpool_ctl_struct",38,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",38,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.filler_16")=38 + Set gtmtypes("jnlpool_ctl_struct",39,"name")="jnlpool_ctl_struct.strm_seqno" + Set gtmtypes("jnlpool_ctl_struct",39,"off")=480 + Set gtmtypes("jnlpool_ctl_struct",39,"len")=128 + Set gtmtypes("jnlpool_ctl_struct",39,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","strm_seqno")=39 + Set gtmtypes("jnlpool_ctl_struct",39,"dim")=16 + Set gtmtypes("jnlpool_ctl_struct",40,"name")="jnlpool_ctl_struct.onln_rlbk_pid" + Set gtmtypes("jnlpool_ctl_struct",40,"off")=608 + Set gtmtypes("jnlpool_ctl_struct",40,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","onln_rlbk_pid")=40 + Set gtmtypes("jnlpool_ctl_struct",41,"name")="jnlpool_ctl_struct.onln_rlbk_cycle" + Set gtmtypes("jnlpool_ctl_struct",41,"off")=612 + Set gtmtypes("jnlpool_ctl_struct",41,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","onln_rlbk_cycle")=41 + Set gtmtypes("jnlpool_ctl_struct",42,"name")="jnlpool_ctl_struct.freeze" + Set gtmtypes("jnlpool_ctl_struct",42,"off")=616 + Set gtmtypes("jnlpool_ctl_struct",42,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",42,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","freeze")=42 + Set gtmtypes("jnlpool_ctl_struct",43,"name")="jnlpool_ctl_struct.freeze_comment" + Set gtmtypes("jnlpool_ctl_struct",43,"off")=620 + Set gtmtypes("jnlpool_ctl_struct",43,"len")=1024 + Set gtmtypes("jnlpool_ctl_struct",43,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","freeze_comment")=43 + Set gtmtypes("jnlpool_ctl_struct",44,"name")="jnlpool_ctl_struct.instfreeze_environ_inited" + Set gtmtypes("jnlpool_ctl_struct",44,"off")=1644 + Set gtmtypes("jnlpool_ctl_struct",44,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",44,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","instfreeze_environ_inited")=44 + Set gtmtypes("jnlpool_ctl_struct",45,"name")="jnlpool_ctl_struct.merrors_array" + Set gtmtypes("jnlpool_ctl_struct",45,"off")=1648 + Set gtmtypes("jnlpool_ctl_struct",45,"len")=2048 + Set gtmtypes("jnlpool_ctl_struct",45,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","merrors_array")=45 + Set gtmtypes("jnlpool_ctl_struct",46,"name")="jnlpool_ctl_struct.outofsync_core_generated" + Set gtmtypes("jnlpool_ctl_struct",46,"off")=3696 + Set gtmtypes("jnlpool_ctl_struct",46,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",46,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","outofsync_core_generated")=46 + Set gtmtypes("jnlpool_ctl_struct",47,"name")="jnlpool_ctl_struct.filler_16bytealign" + Set gtmtypes("jnlpool_ctl_struct",47,"off")=3700 + Set gtmtypes("jnlpool_ctl_struct",47,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",47,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","filler_16bytealign")=47 + ; + Set gtmtypes("jnlpool_write_ctx_t")="struct" + Set gtmtypes("jnlpool_write_ctx_t",0)=2 + Set gtmtypes("jnlpool_write_ctx_t","len")=8 + Set gtmtypes("jnlpool_write_ctx_t",1,"name")="jnlpool_write_ctx_t.write" + Set gtmtypes("jnlpool_write_ctx_t",1,"off")=0 + Set gtmtypes("jnlpool_write_ctx_t",1,"len")=4 + Set gtmtypes("jnlpool_write_ctx_t",1,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_write_ctx_t","write")=1 + Set gtmtypes("jnlpool_write_ctx_t",2,"name")="jnlpool_write_ctx_t.write_total" + Set gtmtypes("jnlpool_write_ctx_t",2,"off")=4 + Set gtmtypes("jnlpool_write_ctx_t",2,"len")=4 + Set gtmtypes("jnlpool_write_ctx_t",2,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_write_ctx_t","write_total")=2 + ; + Set gtmtypes("job_arg_msg")="struct" + Set gtmtypes("job_arg_msg",0)=2 + Set gtmtypes("job_arg_msg","len")=8196 + Set gtmtypes("job_arg_msg",1,"name")="job_arg_msg.len" + Set gtmtypes("job_arg_msg",1,"off")=0 + Set gtmtypes("job_arg_msg",1,"len")=4 + Set gtmtypes("job_arg_msg",1,"type")="ssize_t" + Set gtmtypfldindx("job_arg_msg","len")=1 + Set gtmtypes("job_arg_msg",2,"name")="job_arg_msg.data" + Set gtmtypes("job_arg_msg",2,"off")=4 + Set gtmtypes("job_arg_msg",2,"len")=8192 + Set gtmtypes("job_arg_msg",2,"type")="char" + Set gtmtypfldindx("job_arg_msg","data")=2 + ; + Set gtmtypes("job_params_msg")="struct" + Set gtmtypes("job_params_msg",0)=18 + Set gtmtypes("job_params_msg","len")=8232 + Set gtmtypes("job_params_msg",1,"name")="job_params_msg.directory_len" + Set gtmtypes("job_params_msg",1,"off")=0 + Set gtmtypes("job_params_msg",1,"len")=4 + Set gtmtypes("job_params_msg",1,"type")="size_t" + Set gtmtypfldindx("job_params_msg","directory_len")=1 + Set gtmtypes("job_params_msg",2,"name")="job_params_msg.directory" + Set gtmtypes("job_params_msg",2,"off")=4 + Set gtmtypes("job_params_msg",2,"len")=1024 + Set gtmtypes("job_params_msg",2,"type")="char" + Set gtmtypfldindx("job_params_msg","directory")=2 + Set gtmtypes("job_params_msg",3,"name")="job_params_msg.gbldir_len" + Set gtmtypes("job_params_msg",3,"off")=1028 + Set gtmtypes("job_params_msg",3,"len")=4 + Set gtmtypes("job_params_msg",3,"type")="size_t" + Set gtmtypfldindx("job_params_msg","gbldir_len")=3 + Set gtmtypes("job_params_msg",4,"name")="job_params_msg.gbldir" + Set gtmtypes("job_params_msg",4,"off")=1032 + Set gtmtypes("job_params_msg",4,"len")=1024 + Set gtmtypes("job_params_msg",4,"type")="char" + Set gtmtypfldindx("job_params_msg","gbldir")=4 + Set gtmtypes("job_params_msg",5,"name")="job_params_msg.startup_len" + Set gtmtypes("job_params_msg",5,"off")=2056 + Set gtmtypes("job_params_msg",5,"len")=4 + Set gtmtypes("job_params_msg",5,"type")="size_t" + Set gtmtypfldindx("job_params_msg","startup_len")=5 + Set gtmtypes("job_params_msg",6,"name")="job_params_msg.startup" + Set gtmtypes("job_params_msg",6,"off")=2060 + Set gtmtypes("job_params_msg",6,"len")=1024 + Set gtmtypes("job_params_msg",6,"type")="char" + Set gtmtypfldindx("job_params_msg","startup")=6 + Set gtmtypes("job_params_msg",7,"name")="job_params_msg.input_len" + Set gtmtypes("job_params_msg",7,"off")=3084 + Set gtmtypes("job_params_msg",7,"len")=4 + Set gtmtypes("job_params_msg",7,"type")="size_t" + Set gtmtypfldindx("job_params_msg","input_len")=7 + Set gtmtypes("job_params_msg",8,"name")="job_params_msg.input" + Set gtmtypes("job_params_msg",8,"off")=3088 + Set gtmtypes("job_params_msg",8,"len")=1024 + Set gtmtypes("job_params_msg",8,"type")="char" + Set gtmtypfldindx("job_params_msg","input")=8 + Set gtmtypes("job_params_msg",9,"name")="job_params_msg.output_len" + Set gtmtypes("job_params_msg",9,"off")=4112 + Set gtmtypes("job_params_msg",9,"len")=4 + Set gtmtypes("job_params_msg",9,"type")="size_t" + Set gtmtypfldindx("job_params_msg","output_len")=9 + Set gtmtypes("job_params_msg",10,"name")="job_params_msg.output" + Set gtmtypes("job_params_msg",10,"off")=4116 + Set gtmtypes("job_params_msg",10,"len")=1024 + Set gtmtypes("job_params_msg",10,"type")="char" + Set gtmtypfldindx("job_params_msg","output")=10 + Set gtmtypes("job_params_msg",11,"name")="job_params_msg.error_len" + Set gtmtypes("job_params_msg",11,"off")=5140 + Set gtmtypes("job_params_msg",11,"len")=4 + Set gtmtypes("job_params_msg",11,"type")="size_t" + Set gtmtypfldindx("job_params_msg","error_len")=11 + Set gtmtypes("job_params_msg",12,"name")="job_params_msg.error" + Set gtmtypes("job_params_msg",12,"off")=5144 + Set gtmtypes("job_params_msg",12,"len")=1024 + Set gtmtypes("job_params_msg",12,"type")="char" + Set gtmtypfldindx("job_params_msg","error")=12 + Set gtmtypes("job_params_msg",13,"name")="job_params_msg.routine_len" + Set gtmtypes("job_params_msg",13,"off")=6168 + Set gtmtypes("job_params_msg",13,"len")=4 + Set gtmtypes("job_params_msg",13,"type")="size_t" + Set gtmtypfldindx("job_params_msg","routine_len")=13 + Set gtmtypes("job_params_msg",14,"name")="job_params_msg.routine" + Set gtmtypes("job_params_msg",14,"off")=6172 + Set gtmtypes("job_params_msg",14,"len")=1024 + Set gtmtypes("job_params_msg",14,"type")="char" + Set gtmtypfldindx("job_params_msg","routine")=14 + Set gtmtypes("job_params_msg",15,"name")="job_params_msg.label_len" + Set gtmtypes("job_params_msg",15,"off")=7196 + Set gtmtypes("job_params_msg",15,"len")=4 + Set gtmtypes("job_params_msg",15,"type")="size_t" + Set gtmtypfldindx("job_params_msg","label_len")=15 + Set gtmtypes("job_params_msg",16,"name")="job_params_msg.label" + Set gtmtypes("job_params_msg",16,"off")=7200 + Set gtmtypes("job_params_msg",16,"len")=1024 + Set gtmtypes("job_params_msg",16,"type")="char" + Set gtmtypfldindx("job_params_msg","label")=16 + Set gtmtypes("job_params_msg",17,"name")="job_params_msg.offset" + Set gtmtypes("job_params_msg",17,"off")=8224 + Set gtmtypes("job_params_msg",17,"len")=4 + Set gtmtypes("job_params_msg",17,"type")="int" + Set gtmtypfldindx("job_params_msg","offset")=17 + Set gtmtypes("job_params_msg",18,"name")="job_params_msg.baspri" + Set gtmtypes("job_params_msg",18,"off")=8228 + Set gtmtypes("job_params_msg",18,"len")=4 + Set gtmtypes("job_params_msg",18,"type")="int" + Set gtmtypfldindx("job_params_msg","baspri")=18 + ; + Set gtmtypes("job_params_type")="struct" + Set gtmtypes("job_params_type",0)=42 + Set gtmtypes("job_params_type","len")=132 + Set gtmtypes("job_params_type",1,"name")="job_params_type.input" + Set gtmtypes("job_params_type",1,"off")=0 + Set gtmtypes("job_params_type",1,"len")=12 + Set gtmtypes("job_params_type",1,"type")="mstr" + Set gtmtypfldindx("job_params_type","input")=1 + Set gtmtypes("job_params_type",2,"name")="job_params_type.input.char_len" + Set gtmtypes("job_params_type",2,"off")=0 + Set gtmtypes("job_params_type",2,"len")=4 + Set gtmtypes("job_params_type",2,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","input.char_len")=2 + Set gtmtypes("job_params_type",3,"name")="job_params_type.input.len" + Set gtmtypes("job_params_type",3,"off")=4 + Set gtmtypes("job_params_type",3,"len")=4 + Set gtmtypes("job_params_type",3,"type")="int" + Set gtmtypfldindx("job_params_type","input.len")=3 + Set gtmtypes("job_params_type",4,"name")="job_params_type.input.addr" + Set gtmtypes("job_params_type",4,"off")=8 + Set gtmtypes("job_params_type",4,"len")=4 + Set gtmtypes("job_params_type",4,"type")="addr" + Set gtmtypfldindx("job_params_type","input.addr")=4 + Set gtmtypes("job_params_type",5,"name")="job_params_type.output" + Set gtmtypes("job_params_type",5,"off")=12 + Set gtmtypes("job_params_type",5,"len")=12 + Set gtmtypes("job_params_type",5,"type")="mstr" + Set gtmtypfldindx("job_params_type","output")=5 + Set gtmtypes("job_params_type",6,"name")="job_params_type.output.char_len" + Set gtmtypes("job_params_type",6,"off")=12 + Set gtmtypes("job_params_type",6,"len")=4 + Set gtmtypes("job_params_type",6,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","output.char_len")=6 + Set gtmtypes("job_params_type",7,"name")="job_params_type.output.len" + Set gtmtypes("job_params_type",7,"off")=16 + Set gtmtypes("job_params_type",7,"len")=4 + Set gtmtypes("job_params_type",7,"type")="int" + Set gtmtypfldindx("job_params_type","output.len")=7 + Set gtmtypes("job_params_type",8,"name")="job_params_type.output.addr" + Set gtmtypes("job_params_type",8,"off")=20 + Set gtmtypes("job_params_type",8,"len")=4 + Set gtmtypes("job_params_type",8,"type")="addr" + Set gtmtypfldindx("job_params_type","output.addr")=8 + Set gtmtypes("job_params_type",9,"name")="job_params_type.error" + Set gtmtypes("job_params_type",9,"off")=24 + Set gtmtypes("job_params_type",9,"len")=12 + Set gtmtypes("job_params_type",9,"type")="mstr" + Set gtmtypfldindx("job_params_type","error")=9 + Set gtmtypes("job_params_type",10,"name")="job_params_type.error.char_len" + Set gtmtypes("job_params_type",10,"off")=24 + Set gtmtypes("job_params_type",10,"len")=4 + Set gtmtypes("job_params_type",10,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","error.char_len")=10 + Set gtmtypes("job_params_type",11,"name")="job_params_type.error.len" + Set gtmtypes("job_params_type",11,"off")=28 + Set gtmtypes("job_params_type",11,"len")=4 + Set gtmtypes("job_params_type",11,"type")="int" + Set gtmtypfldindx("job_params_type","error.len")=11 + Set gtmtypes("job_params_type",12,"name")="job_params_type.error.addr" + Set gtmtypes("job_params_type",12,"off")=32 + Set gtmtypes("job_params_type",12,"len")=4 + Set gtmtypes("job_params_type",12,"type")="addr" + Set gtmtypfldindx("job_params_type","error.addr")=12 + Set gtmtypes("job_params_type",13,"name")="job_params_type.gbldir" + Set gtmtypes("job_params_type",13,"off")=36 + Set gtmtypes("job_params_type",13,"len")=12 + Set gtmtypes("job_params_type",13,"type")="mstr" + Set gtmtypfldindx("job_params_type","gbldir")=13 + Set gtmtypes("job_params_type",14,"name")="job_params_type.gbldir.char_len" + Set gtmtypes("job_params_type",14,"off")=36 + Set gtmtypes("job_params_type",14,"len")=4 + Set gtmtypes("job_params_type",14,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","gbldir.char_len")=14 + Set gtmtypes("job_params_type",15,"name")="job_params_type.gbldir.len" + Set gtmtypes("job_params_type",15,"off")=40 + Set gtmtypes("job_params_type",15,"len")=4 + Set gtmtypes("job_params_type",15,"type")="int" + Set gtmtypfldindx("job_params_type","gbldir.len")=15 + Set gtmtypes("job_params_type",16,"name")="job_params_type.gbldir.addr" + Set gtmtypes("job_params_type",16,"off")=44 + Set gtmtypes("job_params_type",16,"len")=4 + Set gtmtypes("job_params_type",16,"type")="addr" + Set gtmtypfldindx("job_params_type","gbldir.addr")=16 + Set gtmtypes("job_params_type",17,"name")="job_params_type.startup" + Set gtmtypes("job_params_type",17,"off")=48 + Set gtmtypes("job_params_type",17,"len")=12 + Set gtmtypes("job_params_type",17,"type")="mstr" + Set gtmtypfldindx("job_params_type","startup")=17 + Set gtmtypes("job_params_type",18,"name")="job_params_type.startup.char_len" + Set gtmtypes("job_params_type",18,"off")=48 + Set gtmtypes("job_params_type",18,"len")=4 + Set gtmtypes("job_params_type",18,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","startup.char_len")=18 + Set gtmtypes("job_params_type",19,"name")="job_params_type.startup.len" + Set gtmtypes("job_params_type",19,"off")=52 + Set gtmtypes("job_params_type",19,"len")=4 + Set gtmtypes("job_params_type",19,"type")="int" + Set gtmtypfldindx("job_params_type","startup.len")=19 + Set gtmtypes("job_params_type",20,"name")="job_params_type.startup.addr" + Set gtmtypes("job_params_type",20,"off")=56 + Set gtmtypes("job_params_type",20,"len")=4 + Set gtmtypes("job_params_type",20,"type")="addr" + Set gtmtypfldindx("job_params_type","startup.addr")=20 + Set gtmtypes("job_params_type",21,"name")="job_params_type.directory" + Set gtmtypes("job_params_type",21,"off")=60 + Set gtmtypes("job_params_type",21,"len")=12 + Set gtmtypes("job_params_type",21,"type")="mstr" + Set gtmtypfldindx("job_params_type","directory")=21 + Set gtmtypes("job_params_type",22,"name")="job_params_type.directory.char_len" + Set gtmtypes("job_params_type",22,"off")=60 + Set gtmtypes("job_params_type",22,"len")=4 + Set gtmtypes("job_params_type",22,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","directory.char_len")=22 + Set gtmtypes("job_params_type",23,"name")="job_params_type.directory.len" + Set gtmtypes("job_params_type",23,"off")=64 + Set gtmtypes("job_params_type",23,"len")=4 + Set gtmtypes("job_params_type",23,"type")="int" + Set gtmtypfldindx("job_params_type","directory.len")=23 + Set gtmtypes("job_params_type",24,"name")="job_params_type.directory.addr" + Set gtmtypes("job_params_type",24,"off")=68 + Set gtmtypes("job_params_type",24,"len")=4 + Set gtmtypes("job_params_type",24,"type")="addr" + Set gtmtypfldindx("job_params_type","directory.addr")=24 + Set gtmtypes("job_params_type",25,"name")="job_params_type.routine" + Set gtmtypes("job_params_type",25,"off")=72 + Set gtmtypes("job_params_type",25,"len")=12 + Set gtmtypes("job_params_type",25,"type")="mstr" + Set gtmtypfldindx("job_params_type","routine")=25 + Set gtmtypes("job_params_type",26,"name")="job_params_type.routine.char_len" + Set gtmtypes("job_params_type",26,"off")=72 + Set gtmtypes("job_params_type",26,"len")=4 + Set gtmtypes("job_params_type",26,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","routine.char_len")=26 + Set gtmtypes("job_params_type",27,"name")="job_params_type.routine.len" + Set gtmtypes("job_params_type",27,"off")=76 + Set gtmtypes("job_params_type",27,"len")=4 + Set gtmtypes("job_params_type",27,"type")="int" + Set gtmtypfldindx("job_params_type","routine.len")=27 + Set gtmtypes("job_params_type",28,"name")="job_params_type.routine.addr" + Set gtmtypes("job_params_type",28,"off")=80 + Set gtmtypes("job_params_type",28,"len")=4 + Set gtmtypes("job_params_type",28,"type")="addr" + Set gtmtypfldindx("job_params_type","routine.addr")=28 + Set gtmtypes("job_params_type",29,"name")="job_params_type.label" + Set gtmtypes("job_params_type",29,"off")=84 + Set gtmtypes("job_params_type",29,"len")=12 + Set gtmtypes("job_params_type",29,"type")="mstr" + Set gtmtypfldindx("job_params_type","label")=29 + Set gtmtypes("job_params_type",30,"name")="job_params_type.label.char_len" + Set gtmtypes("job_params_type",30,"off")=84 + Set gtmtypes("job_params_type",30,"len")=4 + Set gtmtypes("job_params_type",30,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","label.char_len")=30 + Set gtmtypes("job_params_type",31,"name")="job_params_type.label.len" + Set gtmtypes("job_params_type",31,"off")=88 + Set gtmtypes("job_params_type",31,"len")=4 + Set gtmtypes("job_params_type",31,"type")="int" + Set gtmtypfldindx("job_params_type","label.len")=31 + Set gtmtypes("job_params_type",32,"name")="job_params_type.label.addr" + Set gtmtypes("job_params_type",32,"off")=92 + Set gtmtypes("job_params_type",32,"len")=4 + Set gtmtypes("job_params_type",32,"type")="addr" + Set gtmtypfldindx("job_params_type","label.addr")=32 + Set gtmtypes("job_params_type",33,"name")="job_params_type.cmdline" + Set gtmtypes("job_params_type",33,"off")=96 + Set gtmtypes("job_params_type",33,"len")=12 + Set gtmtypes("job_params_type",33,"type")="mstr" + Set gtmtypfldindx("job_params_type","cmdline")=33 + Set gtmtypes("job_params_type",34,"name")="job_params_type.cmdline.char_len" + Set gtmtypes("job_params_type",34,"off")=96 + Set gtmtypes("job_params_type",34,"len")=4 + Set gtmtypes("job_params_type",34,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","cmdline.char_len")=34 + Set gtmtypes("job_params_type",35,"name")="job_params_type.cmdline.len" + Set gtmtypes("job_params_type",35,"off")=100 + Set gtmtypes("job_params_type",35,"len")=4 + Set gtmtypes("job_params_type",35,"type")="int" + Set gtmtypfldindx("job_params_type","cmdline.len")=35 + Set gtmtypes("job_params_type",36,"name")="job_params_type.cmdline.addr" + Set gtmtypes("job_params_type",36,"off")=104 + Set gtmtypes("job_params_type",36,"len")=4 + Set gtmtypes("job_params_type",36,"type")="addr" + Set gtmtypfldindx("job_params_type","cmdline.addr")=36 + Set gtmtypes("job_params_type",37,"name")="job_params_type.baspri" + Set gtmtypes("job_params_type",37,"off")=108 + Set gtmtypes("job_params_type",37,"len")=4 + Set gtmtypes("job_params_type",37,"type")="int" + Set gtmtypfldindx("job_params_type","baspri")=37 + Set gtmtypes("job_params_type",38,"name")="job_params_type.offset" + Set gtmtypes("job_params_type",38,"off")=112 + Set gtmtypes("job_params_type",38,"len")=4 + Set gtmtypes("job_params_type",38,"type")="int" + Set gtmtypfldindx("job_params_type","offset")=38 + Set gtmtypes("job_params_type",39,"name")="job_params_type.parms" + Set gtmtypes("job_params_type",39,"off")=116 + Set gtmtypes("job_params_type",39,"len")=4 + Set gtmtypes("job_params_type",39,"type")="addr" + Set gtmtypfldindx("job_params_type","parms")=39 + Set gtmtypes("job_params_type",40,"name")="job_params_type.input_prebuffer_size" + Set gtmtypes("job_params_type",40,"off")=120 + Set gtmtypes("job_params_type",40,"len")=4 + Set gtmtypes("job_params_type",40,"type")="size_t" + Set gtmtypfldindx("job_params_type","input_prebuffer_size")=40 + Set gtmtypes("job_params_type",41,"name")="job_params_type.input_prebuffer" + Set gtmtypes("job_params_type",41,"off")=124 + Set gtmtypes("job_params_type",41,"len")=4 + Set gtmtypes("job_params_type",41,"type")="addr" + Set gtmtypfldindx("job_params_type","input_prebuffer")=41 + Set gtmtypes("job_params_type",42,"name")="job_params_type.passcurlvn" + Set gtmtypes("job_params_type",42,"off")=128 + Set gtmtypes("job_params_type",42,"len")=4 + Set gtmtypes("job_params_type",42,"type")="boolean_t" + Set gtmtypfldindx("job_params_type","passcurlvn")=42 + ; + Set gtmtypes("job_parm")="struct" + Set gtmtypes("job_parm",0)=2 + Set gtmtypes("job_parm","len")=8 + Set gtmtypes("job_parm",1,"name")="job_parm.parm" + Set gtmtypes("job_parm",1,"off")=0 + Set gtmtypes("job_parm",1,"len")=4 + Set gtmtypes("job_parm",1,"type")="addr" + Set gtmtypfldindx("job_parm","parm")=1 + Set gtmtypes("job_parm",2,"name")="job_parm.next" + Set gtmtypes("job_parm",2,"off")=4 + Set gtmtypes("job_parm",2,"len")=4 + Set gtmtypes("job_parm",2,"type")="addr" + Set gtmtypfldindx("job_parm","next")=2 + ; + Set gtmtypes("joberr_msg")="struct" + Set gtmtypes("joberr_msg",0)=2 + Set gtmtypes("joberr_msg","len")=8 + Set gtmtypes("joberr_msg",1,"name")="joberr_msg.msg" + Set gtmtypes("joberr_msg",1,"off")=0 + Set gtmtypes("joberr_msg",1,"len")=4 + Set gtmtypes("joberr_msg",1,"type")="addr" + Set gtmtypfldindx("joberr_msg","msg")=1 + Set gtmtypes("joberr_msg",2,"name")="joberr_msg.len" + Set gtmtypes("joberr_msg",2,"off")=4 + Set gtmtypes("joberr_msg",2,"len")=4 + Set gtmtypes("joberr_msg",2,"type")="int" + Set gtmtypfldindx("joberr_msg","len")=2 + ; + Set gtmtypes("jrec_prefix")="struct" + Set gtmtypes("jrec_prefix",0)=4 + Set gtmtypes("jrec_prefix","len")=24 + Set gtmtypes("jrec_prefix",1,"name")="jrec_prefix.pini_addr" + Set gtmtypes("jrec_prefix",1,"off")=4 + Set gtmtypes("jrec_prefix",1,"len")=4 + Set gtmtypes("jrec_prefix",1,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","pini_addr")=1 + Set gtmtypes("jrec_prefix",2,"name")="jrec_prefix.time" + Set gtmtypes("jrec_prefix",2,"off")=8 + Set gtmtypes("jrec_prefix",2,"len")=4 + Set gtmtypes("jrec_prefix",2,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","time")=2 + Set gtmtypes("jrec_prefix",3,"name")="jrec_prefix.checksum" + Set gtmtypes("jrec_prefix",3,"off")=12 + Set gtmtypes("jrec_prefix",3,"len")=4 + Set gtmtypes("jrec_prefix",3,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","checksum")=3 + Set gtmtypes("jrec_prefix",4,"name")="jrec_prefix.tn" + Set gtmtypes("jrec_prefix",4,"off")=16 + Set gtmtypes("jrec_prefix",4,"len")=8 + Set gtmtypes("jrec_prefix",4,"type")="uint64_t" + Set gtmtypfldindx("jrec_prefix","tn")=4 + ; + Set gtmtypes("key_cum_value")="struct" + Set gtmtypes("key_cum_value",0)=11 + Set gtmtypes("key_cum_value","len")=1076 + Set gtmtypes("key_cum_value",1,"name")="key_cum_value.key" + Set gtmtypes("key_cum_value",1,"off")=0 + Set gtmtypes("key_cum_value",1,"len")=8 + Set gtmtypes("key_cum_value",1,"type")="gv_key" + Set gtmtypfldindx("key_cum_value","key")=1 + Set gtmtypes("key_cum_value",2,"name")="key_cum_value.key.top" + Set gtmtypes("key_cum_value",2,"off")=0 + Set gtmtypes("key_cum_value",2,"len")=2 + Set gtmtypes("key_cum_value",2,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.top")=2 + Set gtmtypes("key_cum_value",3,"name")="key_cum_value.key.end" + Set gtmtypes("key_cum_value",3,"off")=2 + Set gtmtypes("key_cum_value",3,"len")=2 + Set gtmtypes("key_cum_value",3,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.end")=3 + Set gtmtypes("key_cum_value",4,"name")="key_cum_value.key.prev" + Set gtmtypes("key_cum_value",4,"off")=4 + Set gtmtypes("key_cum_value",4,"len")=2 + Set gtmtypes("key_cum_value",4,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.prev")=4 + Set gtmtypes("key_cum_value",5,"name")="key_cum_value.key.base" + Set gtmtypes("key_cum_value",5,"off")=6 + Set gtmtypes("key_cum_value",5,"len")=1 + Set gtmtypes("key_cum_value",5,"type")="unsigned-char" + Set gtmtypfldindx("key_cum_value","key.base")=5 + Set gtmtypes("key_cum_value",6,"name")="key_cum_value.key_contents" + Set gtmtypes("key_cum_value",6,"off")=8 + Set gtmtypes("key_cum_value",6,"len")=1052 + Set gtmtypes("key_cum_value",6,"type")="char" + Set gtmtypfldindx("key_cum_value","key_contents")=6 + Set gtmtypes("key_cum_value",7,"name")="key_cum_value.value" + Set gtmtypes("key_cum_value",7,"off")=1060 + Set gtmtypes("key_cum_value",7,"len")=12 + Set gtmtypes("key_cum_value",7,"type")="mstr" + Set gtmtypfldindx("key_cum_value","value")=7 + Set gtmtypes("key_cum_value",8,"name")="key_cum_value.value.char_len" + Set gtmtypes("key_cum_value",8,"off")=1060 + Set gtmtypes("key_cum_value",8,"len")=4 + Set gtmtypes("key_cum_value",8,"type")="unsigned-int" + Set gtmtypfldindx("key_cum_value","value.char_len")=8 + Set gtmtypes("key_cum_value",9,"name")="key_cum_value.value.len" + Set gtmtypes("key_cum_value",9,"off")=1064 + Set gtmtypes("key_cum_value",9,"len")=4 + Set gtmtypes("key_cum_value",9,"type")="int" + Set gtmtypfldindx("key_cum_value","value.len")=9 + Set gtmtypes("key_cum_value",10,"name")="key_cum_value.value.addr" + Set gtmtypes("key_cum_value",10,"off")=1068 + Set gtmtypes("key_cum_value",10,"len")=4 + Set gtmtypes("key_cum_value",10,"type")="addr" + Set gtmtypfldindx("key_cum_value","value.addr")=10 + Set gtmtypes("key_cum_value",11,"name")="key_cum_value.next" + Set gtmtypes("key_cum_value",11,"off")=1072 + Set gtmtypes("key_cum_value",11,"len")=4 + Set gtmtypes("key_cum_value",11,"type")="addr" + Set gtmtypfldindx("key_cum_value","next")=11 + ; + Set gtmtypes("kill_set")="struct" + Set gtmtypes("kill_set",0)=3 + Set gtmtypes("kill_set","len")=1012 + Set gtmtypes("kill_set",1,"name")="kill_set.next_kill_set" + Set gtmtypes("kill_set",1,"off")=0 + Set gtmtypes("kill_set",1,"len")=4 + Set gtmtypes("kill_set",1,"type")="addr" + Set gtmtypfldindx("kill_set","next_kill_set")=1 + Set gtmtypes("kill_set",2,"name")="kill_set.used" + Set gtmtypes("kill_set",2,"off")=4 + Set gtmtypes("kill_set",2,"len")=4 + Set gtmtypes("kill_set",2,"type")="int" + Set gtmtypfldindx("kill_set","used")=2 + Set gtmtypes("kill_set",3,"name")="kill_set.blk" + Set gtmtypes("kill_set",3,"off")=8 + Set gtmtypes("kill_set",3,"len")=1004 + Set gtmtypes("kill_set",3,"type")="blk_ident" + Set gtmtypfldindx("kill_set","blk")=3 + Set gtmtypes("kill_set",3,"dim")=251 + ; + Set gtmtypes("lab_tabent")="struct" + Set gtmtypes("lab_tabent",0)=6 + Set gtmtypes("lab_tabent","len")=20 + Set gtmtypes("lab_tabent",1,"name")="lab_tabent.lab_name" + Set gtmtypes("lab_tabent",1,"off")=0 + Set gtmtypes("lab_tabent",1,"len")=12 + Set gtmtypes("lab_tabent",1,"type")="mstr" + Set gtmtypfldindx("lab_tabent","lab_name")=1 + Set gtmtypes("lab_tabent",2,"name")="lab_tabent.lab_name.char_len" + Set gtmtypes("lab_tabent",2,"off")=0 + Set gtmtypes("lab_tabent",2,"len")=4 + Set gtmtypes("lab_tabent",2,"type")="unsigned-int" + Set gtmtypfldindx("lab_tabent","lab_name.char_len")=2 + Set gtmtypes("lab_tabent",3,"name")="lab_tabent.lab_name.len" + Set gtmtypes("lab_tabent",3,"off")=4 + Set gtmtypes("lab_tabent",3,"len")=4 + Set gtmtypes("lab_tabent",3,"type")="int" + Set gtmtypfldindx("lab_tabent","lab_name.len")=3 + Set gtmtypes("lab_tabent",4,"name")="lab_tabent.lab_name.addr" + Set gtmtypes("lab_tabent",4,"off")=8 + Set gtmtypes("lab_tabent",4,"len")=4 + Set gtmtypes("lab_tabent",4,"type")="addr" + Set gtmtypfldindx("lab_tabent","lab_name.addr")=4 + Set gtmtypes("lab_tabent",5,"name")="lab_tabent.lab_ln_ptr" + Set gtmtypes("lab_tabent",5,"off")=12 + Set gtmtypes("lab_tabent",5,"len")=4 + Set gtmtypes("lab_tabent",5,"type")="int" + Set gtmtypfldindx("lab_tabent","lab_ln_ptr")=5 + Set gtmtypes("lab_tabent",6,"name")="lab_tabent.has_parms" + Set gtmtypes("lab_tabent",6,"off")=16 + Set gtmtypes("lab_tabent",6,"len")=4 + Set gtmtypes("lab_tabent",6,"type")="boolean_t" + Set gtmtypfldindx("lab_tabent","has_parms")=6 + ; + Set gtmtypes("lab_tabent_proxy")="struct" + Set gtmtypes("lab_tabent_proxy",0)=2 + Set gtmtypes("lab_tabent_proxy","len")=8 + Set gtmtypes("lab_tabent_proxy",1,"name")="lab_tabent_proxy.lab_ln_ptr" + Set gtmtypes("lab_tabent_proxy",1,"off")=0 + Set gtmtypes("lab_tabent_proxy",1,"len")=4 + Set gtmtypes("lab_tabent_proxy",1,"type")="int" + Set gtmtypfldindx("lab_tabent_proxy","lab_ln_ptr")=1 + Set gtmtypes("lab_tabent_proxy",2,"name")="lab_tabent_proxy.has_parms" + Set gtmtypes("lab_tabent_proxy",2,"off")=4 + Set gtmtypes("lab_tabent_proxy",2,"len")=4 + Set gtmtypes("lab_tabent_proxy",2,"type")="boolean_t" + Set gtmtypfldindx("lab_tabent_proxy","has_parms")=2 + ; + Set gtmtypes("link_info")="struct" + Set gtmtypes("link_info",0)=19 + Set gtmtypes("link_info","len")=52 + Set gtmtypes("link_info",1,"name")="link_info.neterr" + Set gtmtypes("link_info",1,"off")=0 + Set gtmtypes("link_info",1,"len")=1 + Set gtmtypes("link_info",1,"type")="unsigned-char" + Set gtmtypfldindx("link_info","neterr")=1 + Set gtmtypes("link_info",2,"name")="link_info.lck_info" + Set gtmtypes("link_info",2,"off")=1 + Set gtmtypes("link_info",2,"len")=1 + Set gtmtypes("link_info",2,"type")="unsigned-char" + Set gtmtypfldindx("link_info","lck_info")=2 + Set gtmtypes("link_info",3,"name")="link_info.lnk_active" + Set gtmtypes("link_info",3,"off")=2 + Set gtmtypes("link_info",3,"len")=1 + Set gtmtypes("link_info",3,"type")="unsigned-char" + Set gtmtypfldindx("link_info","lnk_active")=3 + Set gtmtypes("link_info",4,"name")="link_info.filler" + Set gtmtypes("link_info",4,"off")=3 + Set gtmtypes("link_info",4,"len")=1 + Set gtmtypes("link_info",4,"type")="char" + Set gtmtypfldindx("link_info","filler")=4 + Set gtmtypes("link_info",5,"name")="link_info.netlocks" + Set gtmtypes("link_info",5,"off")=4 + Set gtmtypes("link_info",5,"len")=4 + Set gtmtypes("link_info",5,"type")="addr" + Set gtmtypfldindx("link_info","netlocks")=5 + Set gtmtypes("link_info",6,"name")="link_info.procnum" + Set gtmtypes("link_info",6,"off")=8 + Set gtmtypes("link_info",6,"len")=2 + Set gtmtypes("link_info",6,"type")="unsigned-short" + Set gtmtypfldindx("link_info","procnum")=6 + Set gtmtypes("link_info",7,"name")="link_info.buffered_count" + Set gtmtypes("link_info",7,"off")=10 + Set gtmtypes("link_info",7,"len")=2 + Set gtmtypes("link_info",7,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffered_count")=7 + Set gtmtypes("link_info",8,"name")="link_info.buffer_size" + Set gtmtypes("link_info",8,"off")=12 + Set gtmtypes("link_info",8,"len")=2 + Set gtmtypes("link_info",8,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffer_size")=8 + Set gtmtypes("link_info",9,"name")="link_info.buffer_used" + Set gtmtypes("link_info",9,"off")=14 + Set gtmtypes("link_info",9,"len")=2 + Set gtmtypes("link_info",9,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffer_used")=9 + Set gtmtypes("link_info",10,"name")="link_info.buffer" + Set gtmtypes("link_info",10,"off")=16 + Set gtmtypes("link_info",10,"len")=4 + Set gtmtypes("link_info",10,"type")="addr" + Set gtmtypfldindx("link_info","buffer")=10 + Set gtmtypes("link_info",11,"name")="link_info.convert_byteorder" + Set gtmtypes("link_info",11,"off")=20 + Set gtmtypes("link_info",11,"len")=4 + Set gtmtypes("link_info",11,"type")="boolean_t" + Set gtmtypfldindx("link_info","convert_byteorder")=11 + Set gtmtypes("link_info",12,"name")="link_info.query_is_queryget" + Set gtmtypes("link_info",12,"off")=24 + Set gtmtypes("link_info",12,"len")=4 + Set gtmtypes("link_info",12,"type")="boolean_t" + Set gtmtypfldindx("link_info","query_is_queryget")=12 + Set gtmtypes("link_info",13,"name")="link_info.err_compat" + Set gtmtypes("link_info",13,"off")=28 + Set gtmtypes("link_info",13,"len")=4 + Set gtmtypes("link_info",13,"type")="boolean_t" + Set gtmtypfldindx("link_info","err_compat")=13 + Set gtmtypes("link_info",14,"name")="link_info.lk_response" + Set gtmtypes("link_info",14,"off")=32 + Set gtmtypes("link_info",14,"len")=8 + Set gtmtypes("link_info",14,"type")="cm_lk_response" + Set gtmtypfldindx("link_info","lk_response")=14 + Set gtmtypes("link_info",15,"name")="link_info.lk_response.next" + Set gtmtypes("link_info",15,"off")=32 + Set gtmtypes("link_info",15,"len")=4 + Set gtmtypes("link_info",15,"type")="addr" + Set gtmtypfldindx("link_info","lk_response.next")=15 + Set gtmtypes("link_info",16,"name")="link_info.lk_response.response" + Set gtmtypes("link_info",16,"off")=36 + Set gtmtypes("link_info",16,"len")=4 + Set gtmtypes("link_info",16,"type")="addr" + Set gtmtypfldindx("link_info","lk_response.response")=16 + Set gtmtypes("link_info",17,"name")="link_info.server_supports_dollar_incr" + Set gtmtypes("link_info",17,"off")=40 + Set gtmtypes("link_info",17,"len")=4 + Set gtmtypes("link_info",17,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_dollar_incr")=17 + Set gtmtypes("link_info",18,"name")="link_info.server_supports_std_null_coll" + Set gtmtypes("link_info",18,"off")=44 + Set gtmtypes("link_info",18,"len")=4 + Set gtmtypes("link_info",18,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_std_null_coll")=18 + Set gtmtypes("link_info",19,"name")="link_info.server_supports_long_names" + Set gtmtypes("link_info",19,"off")=48 + Set gtmtypes("link_info",19,"len")=4 + Set gtmtypes("link_info",19,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_long_names")=19 + ; + Set gtmtypes("list_params")="struct" + Set gtmtypes("list_params",0)=4 + Set gtmtypes("list_params","len")=8 + Set gtmtypes("list_params",1,"name")="list_params.page" + Set gtmtypes("list_params",1,"off")=0 + Set gtmtypes("list_params",1,"len")=2 + Set gtmtypes("list_params",1,"type")="unsigned-short" + Set gtmtypfldindx("list_params","page")=1 + Set gtmtypes("list_params",2,"name")="list_params.list_line" + Set gtmtypes("list_params",2,"off")=2 + Set gtmtypes("list_params",2,"len")=2 + Set gtmtypes("list_params",2,"type")="unsigned-short" + Set gtmtypfldindx("list_params","list_line")=2 + Set gtmtypes("list_params",3,"name")="list_params.lines_per_page" + Set gtmtypes("list_params",3,"off")=4 + Set gtmtypes("list_params",3,"len")=2 + Set gtmtypes("list_params",3,"type")="unsigned-short" + Set gtmtypfldindx("list_params","lines_per_page")=3 + Set gtmtypes("list_params",4,"name")="list_params.space" + Set gtmtypes("list_params",4,"off")=6 + Set gtmtypes("list_params",4,"len")=2 + Set gtmtypes("list_params",4,"type")="unsigned-short" + Set gtmtypfldindx("list_params","space")=4 + ; + Set gtmtypes("lockhist")="struct" + Set gtmtypes("lockhist",0)=5 + Set gtmtypes("lockhist","len")=20 + Set gtmtypes("lockhist",1,"name")="lockhist.lock_addr" + Set gtmtypes("lockhist",1,"off")=0 + Set gtmtypes("lockhist",1,"len")=4 + Set gtmtypes("lockhist",1,"type")="addr" + Set gtmtypfldindx("lockhist","lock_addr")=1 + Set gtmtypes("lockhist",2,"name")="lockhist.lock_callr" + Set gtmtypes("lockhist",2,"off")=4 + Set gtmtypes("lockhist",2,"len")=4 + Set gtmtypes("lockhist",2,"type")="caddr_t" + Set gtmtypfldindx("lockhist","lock_callr")=2 + Set gtmtypes("lockhist",3,"name")="lockhist.lock_pid" + Set gtmtypes("lockhist",3,"off")=8 + Set gtmtypes("lockhist",3,"len")=4 + Set gtmtypes("lockhist",3,"type")="int" + Set gtmtypfldindx("lockhist","lock_pid")=3 + Set gtmtypes("lockhist",4,"name")="lockhist.loop_cnt" + Set gtmtypes("lockhist",4,"off")=12 + Set gtmtypes("lockhist",4,"len")=4 + Set gtmtypes("lockhist",4,"type")="int" + Set gtmtypfldindx("lockhist","loop_cnt")=4 + Set gtmtypes("lockhist",5,"name")="lockhist.lock_op" + Set gtmtypes("lockhist",5,"off")=16 + Set gtmtypes("lockhist",5,"len")=4 + Set gtmtypes("lockhist",5,"type")="char" + Set gtmtypfldindx("lockhist","lock_op")=5 + ; + Set gtmtypes("long_list")="struct" + Set gtmtypes("long_list",0)=3 + Set gtmtypes("long_list","len")=12 + Set gtmtypes("long_list",1,"name")="long_list.next" + Set gtmtypes("long_list",1,"off")=0 + Set gtmtypes("long_list",1,"len")=4 + Set gtmtypes("long_list",1,"type")="addr" + Set gtmtypfldindx("long_list","next")=1 + Set gtmtypes("long_list",2,"name")="long_list.num" + Set gtmtypes("long_list",2,"off")=4 + Set gtmtypes("long_list",2,"len")=4 + Set gtmtypes("long_list",2,"type")="unsigned-int" + Set gtmtypfldindx("long_list","num")=2 + Set gtmtypes("long_list",3,"name")="long_list.exclude" + Set gtmtypes("long_list",3,"off")=8 + Set gtmtypes("long_list",3,"len")=1 + Set gtmtypes("long_list",3,"type")="char" + Set gtmtypfldindx("long_list","exclude")=3 + ; + Set gtmtypes("lvTree")="struct" + Set gtmtypes("lvTree",0)=10 + Set gtmtypes("lvTree","len")=32 + Set gtmtypes("lvTree",1,"name")="lvTree.ident" + Set gtmtypes("lvTree",1,"off")=0 + Set gtmtypes("lvTree",1,"len")=2 + Set gtmtypes("lvTree",1,"type")="unsigned-short" + Set gtmtypfldindx("lvTree","ident")=1 + Set gtmtypes("lvTree",2,"name")="lvTree.sbs_depth" + Set gtmtypes("lvTree",2,"off")=2 + Set gtmtypes("lvTree",2,"len")=2 + Set gtmtypes("lvTree",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTree","sbs_depth")=2 + Set gtmtypes("lvTree",3,"name")="lvTree.avl_height" + Set gtmtypes("lvTree",3,"off")=4 + Set gtmtypes("lvTree",3,"len")=4 + Set gtmtypes("lvTree",3,"type")="unsigned-int" + Set gtmtypfldindx("lvTree","avl_height")=3 + Set gtmtypes("lvTree",4,"name")="lvTree.base_lv" + Set gtmtypes("lvTree",4,"off")=8 + Set gtmtypes("lvTree",4,"len")=4 + Set gtmtypes("lvTree",4,"type")="addr" + Set gtmtypfldindx("lvTree","base_lv")=4 + Set gtmtypes("lvTree",5,"name")="lvTree.avl_root" + Set gtmtypes("lvTree",5,"off")=12 + Set gtmtypes("lvTree",5,"len")=4 + Set gtmtypes("lvTree",5,"type")="addr" + Set gtmtypfldindx("lvTree","avl_root")=5 + Set gtmtypes("lvTree",6,"name")="lvTree.sbs_parent" + Set gtmtypes("lvTree",6,"off")=16 + Set gtmtypes("lvTree",6,"len")=4 + Set gtmtypes("lvTree",6,"type")="addr" + Set gtmtypfldindx("lvTree","sbs_parent")=6 + Set gtmtypes("lvTree",7,"name")="lvTree.lastLookup" + Set gtmtypes("lvTree",7,"off")=20 + Set gtmtypes("lvTree",7,"len")=12 + Set gtmtypes("lvTree",7,"type")="treeSrchStatus" + Set gtmtypfldindx("lvTree","lastLookup")=7 + Set gtmtypes("lvTree",8,"name")="lvTree.lastLookup.lastNodeLookedUp" + Set gtmtypes("lvTree",8,"off")=20 + Set gtmtypes("lvTree",8,"len")=4 + Set gtmtypes("lvTree",8,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeLookedUp")=8 + Set gtmtypes("lvTree",9,"name")="lvTree.lastLookup.lastNodeMin" + Set gtmtypes("lvTree",9,"off")=24 + Set gtmtypes("lvTree",9,"len")=4 + Set gtmtypes("lvTree",9,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeMin")=9 + Set gtmtypes("lvTree",10,"name")="lvTree.lastLookup.lastNodeMax" + Set gtmtypes("lvTree",10,"off")=28 + Set gtmtypes("lvTree",10,"len")=4 + Set gtmtypes("lvTree",10,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeMax")=10 + ; + Set gtmtypes("lvTreeNode")="struct" + Set gtmtypes("lvTreeNode",0)=18 + Set gtmtypes("lvTreeNode","len")=68 + Set gtmtypes("lvTreeNode",1,"name")="lvTreeNode.v" + Set gtmtypes("lvTreeNode",1,"off")=0 + Set gtmtypes("lvTreeNode",1,"len")=32 + Set gtmtypes("lvTreeNode",1,"type")="mval" + Set gtmtypfldindx("lvTreeNode","v")=1 + Set gtmtypes("lvTreeNode",2,"name")="lvTreeNode.v.mvtype" + Set gtmtypes("lvTreeNode",2,"off")=0 + Set gtmtypes("lvTreeNode",2,"len")=2 + Set gtmtypes("lvTreeNode",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNode","v.mvtype")=2 + Set gtmtypes("lvTreeNode",3,"name")="lvTreeNode.v.fnpc_indx" + Set gtmtypes("lvTreeNode",3,"off")=3 + Set gtmtypes("lvTreeNode",3,"len")=1 + Set gtmtypes("lvTreeNode",3,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNode","v.fnpc_indx")=3 + Set gtmtypes("lvTreeNode",4,"name")="lvTreeNode.v.utfcgr_indx" + Set gtmtypes("lvTreeNode",4,"off")=4 + Set gtmtypes("lvTreeNode",4,"len")=4 + Set gtmtypes("lvTreeNode",4,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","v.utfcgr_indx")=4 + Set gtmtypes("lvTreeNode",5,"name")="lvTreeNode.v.filler2" + Set gtmtypes("lvTreeNode",5,"off")=8 + Set gtmtypes("lvTreeNode",5,"len")=4 + Set gtmtypes("lvTreeNode",5,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","v.filler2")=5 + Set gtmtypes("lvTreeNode",6,"name")="lvTreeNode.v.m" + Set gtmtypes("lvTreeNode",6,"off")=12 + Set gtmtypes("lvTreeNode",6,"len")=8 + Set gtmtypes("lvTreeNode",6,"type")="int" + Set gtmtypfldindx("lvTreeNode","v.m")=6 + Set gtmtypes("lvTreeNode",6,"dim")=2 + Set gtmtypes("lvTreeNode",7,"name")="lvTreeNode.v.str" + Set gtmtypes("lvTreeNode",7,"off")=20 + Set gtmtypes("lvTreeNode",7,"len")=12 + Set gtmtypes("lvTreeNode",7,"type")="mstr" + Set gtmtypfldindx("lvTreeNode","v.str")=7 + Set gtmtypes("lvTreeNode",8,"name")="lvTreeNode.sbs_child" + Set gtmtypes("lvTreeNode",8,"off")=32 + Set gtmtypes("lvTreeNode",8,"len")=4 + Set gtmtypes("lvTreeNode",8,"type")="addr" + Set gtmtypfldindx("lvTreeNode","sbs_child")=8 + Set gtmtypes("lvTreeNode",9,"name")="lvTreeNode.tree_parent" + Set gtmtypes("lvTreeNode",9,"off")=36 + Set gtmtypes("lvTreeNode",9,"len")=4 + Set gtmtypes("lvTreeNode",9,"type")="addr" + Set gtmtypfldindx("lvTreeNode","tree_parent")=9 + Set gtmtypes("lvTreeNode",10,"name")="lvTreeNode.key_mvtype" + Set gtmtypes("lvTreeNode",10,"off")=40 + Set gtmtypes("lvTreeNode",10,"len")=2 + Set gtmtypes("lvTreeNode",10,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNode","key_mvtype")=10 + Set gtmtypes("lvTreeNode",11,"name")="lvTreeNode.balance" + Set gtmtypes("lvTreeNode",11,"off")=42 + Set gtmtypes("lvTreeNode",11,"len")=1 + Set gtmtypes("lvTreeNode",11,"type")="char" + Set gtmtypfldindx("lvTreeNode","balance")=11 + Set gtmtypes("lvTreeNode",12,"name")="lvTreeNode.descent_dir" + Set gtmtypes("lvTreeNode",12,"off")=43 + Set gtmtypes("lvTreeNode",12,"len")=1 + Set gtmtypes("lvTreeNode",12,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNode","descent_dir")=12 + Set gtmtypes("lvTreeNode",13,"name")="lvTreeNode.key_len" + Set gtmtypes("lvTreeNode",13,"off")=44 + Set gtmtypes("lvTreeNode",13,"len")=4 + Set gtmtypes("lvTreeNode",13,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","key_len")=13 + Set gtmtypes("lvTreeNode",14,"name")="lvTreeNode.key_addr" + Set gtmtypes("lvTreeNode",14,"off")=48 + Set gtmtypes("lvTreeNode",14,"len")=4 + Set gtmtypes("lvTreeNode",14,"type")="addr" + Set gtmtypfldindx("lvTreeNode","key_addr")=14 + Set gtmtypes("lvTreeNode",15,"name")="lvTreeNode.filler_8byte" + Set gtmtypes("lvTreeNode",15,"off")=52 + Set gtmtypes("lvTreeNode",15,"len")=4 + Set gtmtypes("lvTreeNode",15,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","filler_8byte")=15 + Set gtmtypes("lvTreeNode",16,"name")="lvTreeNode.avl_left" + Set gtmtypes("lvTreeNode",16,"off")=56 + Set gtmtypes("lvTreeNode",16,"len")=4 + Set gtmtypes("lvTreeNode",16,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_left")=16 + Set gtmtypes("lvTreeNode",17,"name")="lvTreeNode.avl_right" + Set gtmtypes("lvTreeNode",17,"off")=60 + Set gtmtypes("lvTreeNode",17,"len")=4 + Set gtmtypes("lvTreeNode",17,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_right")=17 + Set gtmtypes("lvTreeNode",18,"name")="lvTreeNode.avl_parent" + Set gtmtypes("lvTreeNode",18,"off")=64 + Set gtmtypes("lvTreeNode",18,"len")=4 + Set gtmtypes("lvTreeNode",18,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_parent")=18 + ; + Set gtmtypes("lvTreeNodeNum")="struct" + Set gtmtypes("lvTreeNodeNum",0)=21 + Set gtmtypes("lvTreeNodeNum","len")=68 + Set gtmtypes("lvTreeNodeNum",1,"name")="lvTreeNodeNum.v" + Set gtmtypes("lvTreeNodeNum",1,"off")=0 + Set gtmtypes("lvTreeNodeNum",1,"len")=32 + Set gtmtypes("lvTreeNodeNum",1,"type")="mval" + Set gtmtypfldindx("lvTreeNodeNum","v")=1 + Set gtmtypes("lvTreeNodeNum",2,"name")="lvTreeNodeNum.v.mvtype" + Set gtmtypes("lvTreeNodeNum",2,"off")=0 + Set gtmtypes("lvTreeNodeNum",2,"len")=2 + Set gtmtypes("lvTreeNodeNum",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNodeNum","v.mvtype")=2 + Set gtmtypes("lvTreeNodeNum",3,"name")="lvTreeNodeNum.v.fnpc_indx" + Set gtmtypes("lvTreeNodeNum",3,"off")=3 + Set gtmtypes("lvTreeNodeNum",3,"len")=1 + Set gtmtypes("lvTreeNodeNum",3,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","v.fnpc_indx")=3 + Set gtmtypes("lvTreeNodeNum",4,"name")="lvTreeNodeNum.v.utfcgr_indx" + Set gtmtypes("lvTreeNodeNum",4,"off")=4 + Set gtmtypes("lvTreeNodeNum",4,"len")=4 + Set gtmtypes("lvTreeNodeNum",4,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNodeNum","v.utfcgr_indx")=4 + Set gtmtypes("lvTreeNodeNum",5,"name")="lvTreeNodeNum.v.filler2" + Set gtmtypes("lvTreeNodeNum",5,"off")=8 + Set gtmtypes("lvTreeNodeNum",5,"len")=4 + Set gtmtypes("lvTreeNodeNum",5,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNodeNum","v.filler2")=5 + Set gtmtypes("lvTreeNodeNum",6,"name")="lvTreeNodeNum.v.m" + Set gtmtypes("lvTreeNodeNum",6,"off")=12 + Set gtmtypes("lvTreeNodeNum",6,"len")=8 + Set gtmtypes("lvTreeNodeNum",6,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","v.m")=6 + Set gtmtypes("lvTreeNodeNum",6,"dim")=2 + Set gtmtypes("lvTreeNodeNum",7,"name")="lvTreeNodeNum.v.str" + Set gtmtypes("lvTreeNodeNum",7,"off")=20 + Set gtmtypes("lvTreeNodeNum",7,"len")=12 + Set gtmtypes("lvTreeNodeNum",7,"type")="mstr" + Set gtmtypfldindx("lvTreeNodeNum","v.str")=7 + Set gtmtypes("lvTreeNodeNum",8,"name")="lvTreeNodeNum.sbs_child" + Set gtmtypes("lvTreeNodeNum",8,"off")=32 + Set gtmtypes("lvTreeNodeNum",8,"len")=4 + Set gtmtypes("lvTreeNodeNum",8,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","sbs_child")=8 + Set gtmtypes("lvTreeNodeNum",9,"name")="lvTreeNodeNum.tree_parent" + Set gtmtypes("lvTreeNodeNum",9,"off")=36 + Set gtmtypes("lvTreeNodeNum",9,"len")=4 + Set gtmtypes("lvTreeNodeNum",9,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","tree_parent")=9 + Set gtmtypes("lvTreeNodeNum",10,"name")="lvTreeNodeNum.key_mvtype" + Set gtmtypes("lvTreeNodeNum",10,"off")=40 + Set gtmtypes("lvTreeNodeNum",10,"len")=2 + Set gtmtypes("lvTreeNodeNum",10,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNodeNum","key_mvtype")=10 + Set gtmtypes("lvTreeNodeNum",11,"name")="lvTreeNodeNum.balance" + Set gtmtypes("lvTreeNodeNum",11,"off")=42 + Set gtmtypes("lvTreeNodeNum",11,"len")=1 + Set gtmtypes("lvTreeNodeNum",11,"type")="char" + Set gtmtypfldindx("lvTreeNodeNum","balance")=11 + Set gtmtypes("lvTreeNodeNum",12,"name")="lvTreeNodeNum.descent_dir" + Set gtmtypes("lvTreeNodeNum",12,"off")=43 + Set gtmtypes("lvTreeNodeNum",12,"len")=1 + Set gtmtypes("lvTreeNodeNum",12,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","descent_dir")=12 + Set gtmtypes("lvTreeNodeNum",13,"name")="lvTreeNodeNum.key_flags" + Set gtmtypes("lvTreeNodeNum",13,"off")=44 + Set gtmtypes("lvTreeNodeNum",13,"len")=4 + Set gtmtypes("lvTreeNodeNum",13,"type")="union" + Set gtmtypfldindx("lvTreeNodeNum","key_flags")=13 + Set gtmtypes("lvTreeNodeNum",14,"name")="lvTreeNodeNum.key_flags.key_bytes" + Set gtmtypes("lvTreeNodeNum",14,"off")=44 + Set gtmtypes("lvTreeNodeNum",14,"len")=1 + Set gtmtypes("lvTreeNodeNum",14,"type")="struct" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bytes")=14 + Set gtmtypes("lvTreeNodeNum",15,"name")="lvTreeNodeNum.key_flags.key_bytes.key_sgne" + Set gtmtypes("lvTreeNodeNum",15,"off")=44 + Set gtmtypes("lvTreeNodeNum",15,"len")=1 + Set gtmtypes("lvTreeNodeNum",15,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bytes.key_sgne")=15 + Set gtmtypes("lvTreeNodeNum",16,"name")="lvTreeNodeNum.key_flags.key_bits" + Set gtmtypes("lvTreeNodeNum",16,"off")=44 + Set gtmtypes("lvTreeNodeNum",16,"len")=4 + Set gtmtypes("lvTreeNodeNum",16,"type")="struct" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bits")=16 + Set gtmtypes("lvTreeNodeNum",17,"name")="lvTreeNodeNum.key_m0" + Set gtmtypes("lvTreeNodeNum",17,"off")=48 + Set gtmtypes("lvTreeNodeNum",17,"len")=4 + Set gtmtypes("lvTreeNodeNum",17,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","key_m0")=17 + Set gtmtypes("lvTreeNodeNum",18,"name")="lvTreeNodeNum.key_m1" + Set gtmtypes("lvTreeNodeNum",18,"off")=52 + Set gtmtypes("lvTreeNodeNum",18,"len")=4 + Set gtmtypes("lvTreeNodeNum",18,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","key_m1")=18 + Set gtmtypes("lvTreeNodeNum",19,"name")="lvTreeNodeNum.avl_left" + Set gtmtypes("lvTreeNodeNum",19,"off")=56 + Set gtmtypes("lvTreeNodeNum",19,"len")=4 + Set gtmtypes("lvTreeNodeNum",19,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_left")=19 + Set gtmtypes("lvTreeNodeNum",20,"name")="lvTreeNodeNum.avl_right" + Set gtmtypes("lvTreeNodeNum",20,"off")=60 + Set gtmtypes("lvTreeNodeNum",20,"len")=4 + Set gtmtypes("lvTreeNodeNum",20,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_right")=20 + Set gtmtypes("lvTreeNodeNum",21,"name")="lvTreeNodeNum.avl_parent" + Set gtmtypes("lvTreeNodeNum",21,"off")=64 + Set gtmtypes("lvTreeNodeNum",21,"len")=4 + Set gtmtypes("lvTreeNodeNum",21,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_parent")=21 + ; + Set gtmtypes("lv_blk")="struct" + Set gtmtypes("lv_blk",0)=3 + Set gtmtypes("lv_blk","len")=12 + Set gtmtypes("lv_blk",1,"name")="lv_blk.next" + Set gtmtypes("lv_blk",1,"off")=0 + Set gtmtypes("lv_blk",1,"len")=4 + Set gtmtypes("lv_blk",1,"type")="addr" + Set gtmtypfldindx("lv_blk","next")=1 + Set gtmtypes("lv_blk",2,"name")="lv_blk.numAlloc" + Set gtmtypes("lv_blk",2,"off")=4 + Set gtmtypes("lv_blk",2,"len")=4 + Set gtmtypes("lv_blk",2,"type")="unsigned-int" + Set gtmtypfldindx("lv_blk","numAlloc")=2 + Set gtmtypes("lv_blk",3,"name")="lv_blk.numUsed" + Set gtmtypes("lv_blk",3,"off")=8 + Set gtmtypes("lv_blk",3,"len")=4 + Set gtmtypes("lv_blk",3,"type")="unsigned-int" + Set gtmtypfldindx("lv_blk","numUsed")=3 + ; + Set gtmtypes("lv_val")="struct" + Set gtmtypes("lv_val",0)=25 + Set gtmtypes("lv_val","len")=68 + Set gtmtypes("lv_val",1,"name")="lv_val.v" + Set gtmtypes("lv_val",1,"off")=0 + Set gtmtypes("lv_val",1,"len")=32 + Set gtmtypes("lv_val",1,"type")="mval" + Set gtmtypfldindx("lv_val","v")=1 + Set gtmtypes("lv_val",2,"name")="lv_val.v.mvtype" + Set gtmtypes("lv_val",2,"off")=0 + Set gtmtypes("lv_val",2,"len")=2 + Set gtmtypes("lv_val",2,"type")="unsigned-short" + Set gtmtypfldindx("lv_val","v.mvtype")=2 + Set gtmtypes("lv_val",3,"name")="lv_val.v.fnpc_indx" + Set gtmtypes("lv_val",3,"off")=3 + Set gtmtypes("lv_val",3,"len")=1 + Set gtmtypes("lv_val",3,"type")="unsigned-char" + Set gtmtypfldindx("lv_val","v.fnpc_indx")=3 + Set gtmtypes("lv_val",4,"name")="lv_val.v.utfcgr_indx" + Set gtmtypes("lv_val",4,"off")=4 + Set gtmtypes("lv_val",4,"len")=4 + Set gtmtypes("lv_val",4,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","v.utfcgr_indx")=4 + Set gtmtypes("lv_val",5,"name")="lv_val.v.filler2" + Set gtmtypes("lv_val",5,"off")=8 + Set gtmtypes("lv_val",5,"len")=4 + Set gtmtypes("lv_val",5,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","v.filler2")=5 + Set gtmtypes("lv_val",6,"name")="lv_val.v.m" + Set gtmtypes("lv_val",6,"off")=12 + Set gtmtypes("lv_val",6,"len")=8 + Set gtmtypes("lv_val",6,"type")="int" + Set gtmtypfldindx("lv_val","v.m")=6 + Set gtmtypes("lv_val",6,"dim")=2 + Set gtmtypes("lv_val",7,"name")="lv_val.v.str" + Set gtmtypes("lv_val",7,"off")=20 + Set gtmtypes("lv_val",7,"len")=12 + Set gtmtypes("lv_val",7,"type")="mstr" + Set gtmtypfldindx("lv_val","v.str")=7 + Set gtmtypes("lv_val",8,"name")="lv_val.ptrs" + Set gtmtypes("lv_val",8,"off")=32 + Set gtmtypes("lv_val",8,"len")=8 + Set gtmtypes("lv_val",8,"type")="union" + Set gtmtypfldindx("lv_val","ptrs")=8 + Set gtmtypes("lv_val",9,"name")="lv_val.ptrs.val_ent" + Set gtmtypes("lv_val",9,"off")=32 + Set gtmtypes("lv_val",9,"len")=8 + Set gtmtypes("lv_val",9,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.val_ent")=9 + Set gtmtypes("lv_val",10,"name")="lv_val.ptrs.val_ent.children" + Set gtmtypes("lv_val",10,"off")=32 + Set gtmtypes("lv_val",10,"len")=4 + Set gtmtypes("lv_val",10,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.children")=10 + Set gtmtypes("lv_val",11,"name")="lv_val.ptrs.val_ent.parent" + Set gtmtypes("lv_val",11,"off")=36 + Set gtmtypes("lv_val",11,"len")=4 + Set gtmtypes("lv_val",11,"type")="union" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent")=11 + Set gtmtypes("lv_val",12,"name")="lv_val.ptrs.val_ent.parent.sym" + Set gtmtypes("lv_val",12,"off")=36 + Set gtmtypes("lv_val",12,"len")=4 + Set gtmtypes("lv_val",12,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent.sym")=12 + Set gtmtypes("lv_val",13,"name")="lv_val.ptrs.val_ent.parent.sbs_tree" + Set gtmtypes("lv_val",13,"off")=36 + Set gtmtypes("lv_val",13,"len")=4 + Set gtmtypes("lv_val",13,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent.sbs_tree")=13 + Set gtmtypes("lv_val",14,"name")="lv_val.ptrs.free_ent" + Set gtmtypes("lv_val",14,"off")=32 + Set gtmtypes("lv_val",14,"len")=4 + Set gtmtypes("lv_val",14,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.free_ent")=14 + Set gtmtypes("lv_val",15,"name")="lv_val.ptrs.free_ent.next_free" + Set gtmtypes("lv_val",15,"off")=32 + Set gtmtypes("lv_val",15,"len")=4 + Set gtmtypes("lv_val",15,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.free_ent.next_free")=15 + Set gtmtypes("lv_val",16,"name")="lv_val.ptrs.copy_loc" + Set gtmtypes("lv_val",16,"off")=32 + Set gtmtypes("lv_val",16,"len")=4 + Set gtmtypes("lv_val",16,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.copy_loc")=16 + Set gtmtypes("lv_val",17,"name")="lv_val.ptrs.copy_loc.newtablv" + Set gtmtypes("lv_val",17,"off")=32 + Set gtmtypes("lv_val",17,"len")=4 + Set gtmtypes("lv_val",17,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.copy_loc.newtablv")=17 + Set gtmtypes("lv_val",18,"name")="lv_val.stats" + Set gtmtypes("lv_val",18,"off")=40 + Set gtmtypes("lv_val",18,"len")=16 + Set gtmtypes("lv_val",18,"type")="struct" + Set gtmtypfldindx("lv_val","stats")=18 + Set gtmtypes("lv_val",19,"name")="lv_val.stats.trefcnt" + Set gtmtypes("lv_val",19,"off")=40 + Set gtmtypes("lv_val",19,"len")=4 + Set gtmtypes("lv_val",19,"type")="int" + Set gtmtypfldindx("lv_val","stats.trefcnt")=19 + Set gtmtypes("lv_val",20,"name")="lv_val.stats.crefcnt" + Set gtmtypes("lv_val",20,"off")=44 + Set gtmtypes("lv_val",20,"len")=4 + Set gtmtypes("lv_val",20,"type")="int" + Set gtmtypfldindx("lv_val","stats.crefcnt")=20 + Set gtmtypes("lv_val",21,"name")="lv_val.stats.tstartcycle" + Set gtmtypes("lv_val",21,"off")=48 + Set gtmtypes("lv_val",21,"len")=4 + Set gtmtypes("lv_val",21,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","stats.tstartcycle")=21 + Set gtmtypes("lv_val",22,"name")="lv_val.stats.lvtaskcycle" + Set gtmtypes("lv_val",22,"off")=52 + Set gtmtypes("lv_val",22,"len")=4 + Set gtmtypes("lv_val",22,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","stats.lvtaskcycle")=22 + Set gtmtypes("lv_val",23,"name")="lv_val.has_aliascont" + Set gtmtypes("lv_val",23,"off")=56 + Set gtmtypes("lv_val",23,"len")=4 + Set gtmtypes("lv_val",23,"type")="boolean_t" + Set gtmtypfldindx("lv_val","has_aliascont")=23 + Set gtmtypes("lv_val",24,"name")="lv_val.lvmon_mark" + Set gtmtypes("lv_val",24,"off")=60 + Set gtmtypes("lv_val",24,"len")=4 + Set gtmtypes("lv_val",24,"type")="boolean_t" + Set gtmtypfldindx("lv_val","lvmon_mark")=24 + Set gtmtypes("lv_val",25,"name")="lv_val.tp_var" + Set gtmtypes("lv_val",25,"off")=64 + Set gtmtypes("lv_val",25,"len")=4 + Set gtmtypes("lv_val",25,"type")="addr" + Set gtmtypfldindx("lv_val","tp_var")=25 + ; + Set gtmtypes("lv_xnew_ref")="struct" + Set gtmtypes("lv_xnew_ref",0)=2 + Set gtmtypes("lv_xnew_ref","len")=8 + Set gtmtypes("lv_xnew_ref",1,"name")="lv_xnew_ref.next" + Set gtmtypes("lv_xnew_ref",1,"off")=0 + Set gtmtypes("lv_xnew_ref",1,"len")=4 + Set gtmtypes("lv_xnew_ref",1,"type")="addr" + Set gtmtypfldindx("lv_xnew_ref","next")=1 + Set gtmtypes("lv_xnew_ref",2,"name")="lv_xnew_ref.lvval" + Set gtmtypes("lv_xnew_ref",2,"off")=4 + Set gtmtypes("lv_xnew_ref",2,"len")=4 + Set gtmtypes("lv_xnew_ref",2,"type")="addr" + Set gtmtypfldindx("lv_xnew_ref","lvval")=2 + ; + Set gtmtypes("lv_xnew_var")="struct" + Set gtmtypes("lv_xnew_var",0)=6 + Set gtmtypes("lv_xnew_var","len")=28 + Set gtmtypes("lv_xnew_var",1,"name")="lv_xnew_var.next" + Set gtmtypes("lv_xnew_var",1,"off")=0 + Set gtmtypes("lv_xnew_var",1,"len")=4 + Set gtmtypes("lv_xnew_var",1,"type")="addr" + Set gtmtypfldindx("lv_xnew_var","next")=1 + Set gtmtypes("lv_xnew_var",2,"name")="lv_xnew_var.key" + Set gtmtypes("lv_xnew_var",2,"off")=4 + Set gtmtypes("lv_xnew_var",2,"len")=20 + Set gtmtypes("lv_xnew_var",2,"type")="mname_entry" + Set gtmtypfldindx("lv_xnew_var","key")=2 + Set gtmtypes("lv_xnew_var",3,"name")="lv_xnew_var.key.var_name" + Set gtmtypes("lv_xnew_var",3,"off")=4 + Set gtmtypes("lv_xnew_var",3,"len")=12 + Set gtmtypes("lv_xnew_var",3,"type")="mstr" + Set gtmtypfldindx("lv_xnew_var","key.var_name")=3 + Set gtmtypes("lv_xnew_var",4,"name")="lv_xnew_var.key.hash_code" + Set gtmtypes("lv_xnew_var",4,"off")=16 + Set gtmtypes("lv_xnew_var",4,"len")=4 + Set gtmtypes("lv_xnew_var",4,"type")="unsigned-int" + Set gtmtypfldindx("lv_xnew_var","key.hash_code")=4 + Set gtmtypes("lv_xnew_var",5,"name")="lv_xnew_var.key.marked" + Set gtmtypes("lv_xnew_var",5,"off")=20 + Set gtmtypes("lv_xnew_var",5,"len")=4 + Set gtmtypes("lv_xnew_var",5,"type")="boolean_t" + Set gtmtypfldindx("lv_xnew_var","key.marked")=5 + Set gtmtypes("lv_xnew_var",6,"name")="lv_xnew_var.lvval" + Set gtmtypes("lv_xnew_var",6,"off")=24 + Set gtmtypes("lv_xnew_var",6,"len")=4 + Set gtmtypes("lv_xnew_var",6,"type")="addr" + Set gtmtypfldindx("lv_xnew_var","lvval")=6 + ; + Set gtmtypes("lvname_info")="struct" + Set gtmtypes("lvname_info",0)=4 + Set gtmtypes("lvname_info","len")=140 + Set gtmtypes("lvname_info",1,"name")="lvname_info.total_lv_subs" + Set gtmtypes("lvname_info",1,"off")=0 + Set gtmtypes("lvname_info",1,"len")=4 + Set gtmtypes("lvname_info",1,"type")="intptr_t" + Set gtmtypfldindx("lvname_info","total_lv_subs")=1 + Set gtmtypes("lvname_info",2,"name")="lvname_info.start_lvp" + Set gtmtypes("lvname_info",2,"off")=4 + Set gtmtypes("lvname_info",2,"len")=4 + Set gtmtypes("lvname_info",2,"type")="addr" + Set gtmtypfldindx("lvname_info","start_lvp")=2 + Set gtmtypes("lvname_info",3,"name")="lvname_info.lv_subs" + Set gtmtypes("lvname_info",3,"off")=8 + Set gtmtypes("lvname_info",3,"len")=128 + Set gtmtypes("lvname_info",3,"type")="addr" + Set gtmtypfldindx("lvname_info","lv_subs")=3 + Set gtmtypes("lvname_info",3,"dim")=32 + Set gtmtypes("lvname_info",4,"name")="lvname_info.end_lvp" + Set gtmtypes("lvname_info",4,"off")=136 + Set gtmtypes("lvname_info",4,"len")=4 + Set gtmtypes("lvname_info",4,"type")="addr" + Set gtmtypfldindx("lvname_info","end_lvp")=4 + ; + Set gtmtypes("lvzwrite_datablk")="struct" + Set gtmtypes("lvzwrite_datablk",0)=10 + Set gtmtypes("lvzwrite_datablk","len")=36 + Set gtmtypes("lvzwrite_datablk",1,"name")="lvzwrite_datablk.zwr_intype" + Set gtmtypes("lvzwrite_datablk",1,"off")=0 + Set gtmtypes("lvzwrite_datablk",1,"len")=4 + Set gtmtypes("lvzwrite_datablk",1,"type")="int" + Set gtmtypfldindx("lvzwrite_datablk","zwr_intype")=1 + Set gtmtypes("lvzwrite_datablk",2,"name")="lvzwrite_datablk.fixed" + Set gtmtypes("lvzwrite_datablk",2,"off")=4 + Set gtmtypes("lvzwrite_datablk",2,"len")=4 + Set gtmtypes("lvzwrite_datablk",2,"type")="boolean_t" + Set gtmtypfldindx("lvzwrite_datablk","fixed")=2 + Set gtmtypes("lvzwrite_datablk",3,"name")="lvzwrite_datablk.zav_added" + Set gtmtypes("lvzwrite_datablk",3,"off")=8 + Set gtmtypes("lvzwrite_datablk",3,"len")=4 + Set gtmtypes("lvzwrite_datablk",3,"type")="boolean_t" + Set gtmtypfldindx("lvzwrite_datablk","zav_added")=3 + Set gtmtypes("lvzwrite_datablk",4,"name")="lvzwrite_datablk.subsc_count" + Set gtmtypes("lvzwrite_datablk",4,"off")=12 + Set gtmtypes("lvzwrite_datablk",4,"len")=2 + Set gtmtypes("lvzwrite_datablk",4,"type")="unsigned-short" + Set gtmtypfldindx("lvzwrite_datablk","subsc_count")=4 + Set gtmtypes("lvzwrite_datablk",5,"name")="lvzwrite_datablk.curr_subsc" + Set gtmtypes("lvzwrite_datablk",5,"off")=14 + Set gtmtypes("lvzwrite_datablk",5,"len")=2 + Set gtmtypes("lvzwrite_datablk",5,"type")="unsigned-short" + Set gtmtypfldindx("lvzwrite_datablk","curr_subsc")=5 + Set gtmtypes("lvzwrite_datablk",6,"name")="lvzwrite_datablk.mask" + Set gtmtypes("lvzwrite_datablk",6,"off")=16 + Set gtmtypes("lvzwrite_datablk",6,"len")=4 + Set gtmtypes("lvzwrite_datablk",6,"type")="unsigned-int" + Set gtmtypfldindx("lvzwrite_datablk","mask")=6 + Set gtmtypes("lvzwrite_datablk",7,"name")="lvzwrite_datablk.pat" + Set gtmtypes("lvzwrite_datablk",7,"off")=20 + Set gtmtypes("lvzwrite_datablk",7,"len")=4 + Set gtmtypes("lvzwrite_datablk",7,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","pat")=7 + Set gtmtypes("lvzwrite_datablk",8,"name")="lvzwrite_datablk.curr_name" + Set gtmtypes("lvzwrite_datablk",8,"off")=24 + Set gtmtypes("lvzwrite_datablk",8,"len")=4 + Set gtmtypes("lvzwrite_datablk",8,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","curr_name")=8 + Set gtmtypes("lvzwrite_datablk",9,"name")="lvzwrite_datablk.sub" + Set gtmtypes("lvzwrite_datablk",9,"off")=28 + Set gtmtypes("lvzwrite_datablk",9,"len")=4 + Set gtmtypes("lvzwrite_datablk",9,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","sub")=9 + Set gtmtypes("lvzwrite_datablk",10,"name")="lvzwrite_datablk.prev" + Set gtmtypes("lvzwrite_datablk",10,"off")=32 + Set gtmtypes("lvzwrite_datablk",10,"len")=4 + Set gtmtypes("lvzwrite_datablk",10,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","prev")=10 + ; + Set gtmtypes("m_cap")="struct" + Set gtmtypes("m_cap",0)=6 + Set gtmtypes("m_cap","len")=12 + Set gtmtypes("m_cap",1,"name")="m_cap.mt_type" + Set gtmtypes("m_cap",1,"off")=0 + Set gtmtypes("m_cap",1,"len")=4 + Set gtmtypes("m_cap",1,"type")="int" + Set gtmtypfldindx("m_cap","mt_type")=1 + Set gtmtypes("m_cap",2,"name")="m_cap.is_seekable" + Set gtmtypes("m_cap",2,"off")=4 + Set gtmtypes("m_cap",2,"len")=1 + Set gtmtypes("m_cap",2,"type")="char" + Set gtmtypfldindx("m_cap","is_seekable")=2 + Set gtmtypes("m_cap",3,"name")="m_cap.filemarks_supported" + Set gtmtypes("m_cap",3,"off")=5 + Set gtmtypes("m_cap",3,"len")=1 + Set gtmtypes("m_cap",3,"type")="char" + Set gtmtypfldindx("m_cap","filemarks_supported")=3 + Set gtmtypes("m_cap",4,"name")="m_cap.req_extra_filemark" + Set gtmtypes("m_cap",4,"off")=6 + Set gtmtypes("m_cap",4,"len")=1 + Set gtmtypes("m_cap",4,"type")="char" + Set gtmtypfldindx("m_cap","req_extra_filemark")=4 + Set gtmtypes("m_cap",5,"name")="m_cap.can_bksp_by_filemark" + Set gtmtypes("m_cap",5,"off")=7 + Set gtmtypes("m_cap",5,"len")=1 + Set gtmtypes("m_cap",5,"type")="char" + Set gtmtypfldindx("m_cap","can_bksp_by_filemark")=5 + Set gtmtypes("m_cap",6,"name")="m_cap.block_size" + Set gtmtypes("m_cap",6,"off")=8 + Set gtmtypes("m_cap",6,"len")=4 + Set gtmtypes("m_cap",6,"type")="int" + Set gtmtypfldindx("m_cap","block_size")=6 + ; + Set gtmtypes("mcalloc_hdr")="struct" + Set gtmtypes("mcalloc_hdr",0)=3 + Set gtmtypes("mcalloc_hdr","len")=12 + Set gtmtypes("mcalloc_hdr",1,"name")="mcalloc_hdr.link" + Set gtmtypes("mcalloc_hdr",1,"off")=0 + Set gtmtypes("mcalloc_hdr",1,"len")=4 + Set gtmtypes("mcalloc_hdr",1,"type")="addr" + Set gtmtypfldindx("mcalloc_hdr","link")=1 + Set gtmtypes("mcalloc_hdr",2,"name")="mcalloc_hdr.size" + Set gtmtypes("mcalloc_hdr",2,"off")=4 + Set gtmtypes("mcalloc_hdr",2,"len")=4 + Set gtmtypes("mcalloc_hdr",2,"type")="int" + Set gtmtypfldindx("mcalloc_hdr","size")=2 + Set gtmtypes("mcalloc_hdr",3,"name")="mcalloc_hdr.data" + Set gtmtypes("mcalloc_hdr",3,"off")=8 + Set gtmtypes("mcalloc_hdr",3,"len")=1 + Set gtmtypes("mcalloc_hdr",3,"type")="char" + Set gtmtypfldindx("mcalloc_hdr","data")=3 + ; + Set gtmtypes("mem_list")="struct" + Set gtmtypes("mem_list",0)=5 + Set gtmtypes("mem_list","len")=20 + Set gtmtypes("mem_list",1,"name")="mem_list.addr" + Set gtmtypes("mem_list",1,"off")=0 + Set gtmtypes("mem_list",1,"len")=4 + Set gtmtypes("mem_list",1,"type")="addr" + Set gtmtypfldindx("mem_list","addr")=1 + Set gtmtypes("mem_list",2,"name")="mem_list.pages" + Set gtmtypes("mem_list",2,"off")=4 + Set gtmtypes("mem_list",2,"len")=4 + Set gtmtypes("mem_list",2,"type")="unsigned-int" + Set gtmtypfldindx("mem_list","pages")=2 + Set gtmtypes("mem_list",3,"name")="mem_list.next" + Set gtmtypes("mem_list",3,"off")=8 + Set gtmtypes("mem_list",3,"len")=4 + Set gtmtypes("mem_list",3,"type")="addr" + Set gtmtypfldindx("mem_list","next")=3 + Set gtmtypes("mem_list",4,"name")="mem_list.prev" + Set gtmtypes("mem_list",4,"off")=12 + Set gtmtypes("mem_list",4,"len")=4 + Set gtmtypes("mem_list",4,"type")="addr" + Set gtmtypfldindx("mem_list","prev")=4 + Set gtmtypes("mem_list",5,"name")="mem_list.gtm_free" + Set gtmtypes("mem_list",5,"off")=16 + Set gtmtypes("mem_list",5,"len")=1 + Set gtmtypes("mem_list",5,"type")="char" + Set gtmtypfldindx("mem_list","gtm_free")=5 + ; + Set gtmtypes("merge_glvn_struct")="struct" + Set gtmtypes("merge_glvn_struct",0)=2 + Set gtmtypes("merge_glvn_struct","len")=16 + Set gtmtypes("merge_glvn_struct",1,"name")="merge_glvn_struct.gblp" + Set gtmtypes("merge_glvn_struct",1,"off")=0 + Set gtmtypes("merge_glvn_struct",1,"len")=8 + Set gtmtypes("merge_glvn_struct",1,"type")="addr" + Set gtmtypfldindx("merge_glvn_struct","gblp")=1 + Set gtmtypes("merge_glvn_struct",1,"dim")=2 + Set gtmtypes("merge_glvn_struct",2,"name")="merge_glvn_struct.lclp" + Set gtmtypes("merge_glvn_struct",2,"off")=8 + Set gtmtypes("merge_glvn_struct",2,"len")=8 + Set gtmtypes("merge_glvn_struct",2,"type")="addr" + Set gtmtypfldindx("merge_glvn_struct","lclp")=2 + Set gtmtypes("merge_glvn_struct",2,"dim")=2 + ; + Set gtmtypes("mident_fixed")="struct" + Set gtmtypes("mident_fixed",0)=1 + Set gtmtypes("mident_fixed","len")=32 + Set gtmtypes("mident_fixed",1,"name")="mident_fixed.c" + Set gtmtypes("mident_fixed",1,"off")=0 + Set gtmtypes("mident_fixed",1,"len")=32 + Set gtmtypes("mident_fixed",1,"type")="char" + Set gtmtypfldindx("mident_fixed","c")=1 + ; + Set gtmtypes("mlabel")="struct" + Set gtmtypes("mlabel",0)=9 + Set gtmtypes("mlabel","len")=32 + Set gtmtypes("mlabel",1,"name")="mlabel.lson" + Set gtmtypes("mlabel",1,"off")=0 + Set gtmtypes("mlabel",1,"len")=4 + Set gtmtypes("mlabel",1,"type")="addr" + Set gtmtypfldindx("mlabel","lson")=1 + Set gtmtypes("mlabel",2,"name")="mlabel.rson" + Set gtmtypes("mlabel",2,"off")=4 + Set gtmtypes("mlabel",2,"len")=4 + Set gtmtypes("mlabel",2,"type")="addr" + Set gtmtypfldindx("mlabel","rson")=2 + Set gtmtypes("mlabel",3,"name")="mlabel.ml" + Set gtmtypes("mlabel",3,"off")=8 + Set gtmtypes("mlabel",3,"len")=4 + Set gtmtypes("mlabel",3,"type")="addr" + Set gtmtypfldindx("mlabel","ml")=3 + Set gtmtypes("mlabel",4,"name")="mlabel.mvname" + Set gtmtypes("mlabel",4,"off")=12 + Set gtmtypes("mlabel",4,"len")=12 + Set gtmtypes("mlabel",4,"type")="mstr" + Set gtmtypfldindx("mlabel","mvname")=4 + Set gtmtypes("mlabel",5,"name")="mlabel.mvname.char_len" + Set gtmtypes("mlabel",5,"off")=12 + Set gtmtypes("mlabel",5,"len")=4 + Set gtmtypes("mlabel",5,"type")="unsigned-int" + Set gtmtypfldindx("mlabel","mvname.char_len")=5 + Set gtmtypes("mlabel",6,"name")="mlabel.mvname.len" + Set gtmtypes("mlabel",6,"off")=16 + Set gtmtypes("mlabel",6,"len")=4 + Set gtmtypes("mlabel",6,"type")="int" + Set gtmtypfldindx("mlabel","mvname.len")=6 + Set gtmtypes("mlabel",7,"name")="mlabel.mvname.addr" + Set gtmtypes("mlabel",7,"off")=20 + Set gtmtypes("mlabel",7,"len")=4 + Set gtmtypes("mlabel",7,"type")="addr" + Set gtmtypfldindx("mlabel","mvname.addr")=7 + Set gtmtypes("mlabel",8,"name")="mlabel.formalcnt" + Set gtmtypes("mlabel",8,"off")=24 + Set gtmtypes("mlabel",8,"len")=4 + Set gtmtypes("mlabel",8,"type")="int" + Set gtmtypfldindx("mlabel","formalcnt")=8 + Set gtmtypes("mlabel",9,"name")="mlabel.gbl" + Set gtmtypes("mlabel",9,"off")=28 + Set gtmtypes("mlabel",9,"len")=4 + Set gtmtypes("mlabel",9,"type")="boolean_t" + Set gtmtypfldindx("mlabel","gbl")=9 + ; + Set gtmtypes("mline")="struct" + Set gtmtypes("mline",0)=6 + Set gtmtypes("mline","len")=24 + Set gtmtypes("mline",1,"name")="mline.parent" + Set gtmtypes("mline",1,"off")=0 + Set gtmtypes("mline",1,"len")=4 + Set gtmtypes("mline",1,"type")="addr" + Set gtmtypfldindx("mline","parent")=1 + Set gtmtypes("mline",2,"name")="mline.sibling" + Set gtmtypes("mline",2,"off")=4 + Set gtmtypes("mline",2,"len")=4 + Set gtmtypes("mline",2,"type")="addr" + Set gtmtypfldindx("mline","sibling")=2 + Set gtmtypes("mline",3,"name")="mline.child" + Set gtmtypes("mline",3,"off")=8 + Set gtmtypes("mline",3,"len")=4 + Set gtmtypes("mline",3,"type")="addr" + Set gtmtypfldindx("mline","child")=3 + Set gtmtypes("mline",4,"name")="mline.externalentry" + Set gtmtypes("mline",4,"off")=12 + Set gtmtypes("mline",4,"len")=4 + Set gtmtypes("mline",4,"type")="addr" + Set gtmtypfldindx("mline","externalentry")=4 + Set gtmtypes("mline",5,"name")="mline.line_number" + Set gtmtypes("mline",5,"off")=16 + Set gtmtypes("mline",5,"len")=4 + Set gtmtypes("mline",5,"type")="unsigned-int" + Set gtmtypfldindx("mline","line_number")=5 + Set gtmtypes("mline",6,"name")="mline.table" + Set gtmtypes("mline",6,"off")=20 + Set gtmtypes("mline",6,"len")=4 + Set gtmtypes("mline",6,"type")="boolean_t" + Set gtmtypfldindx("mline","table")=6 + ; + Set gtmtypes("mliteral")="struct" + Set gtmtypes("mliteral",0)=11 + Set gtmtypes("mliteral","len")=44 + Set gtmtypes("mliteral",1,"name")="mliteral.que" + Set gtmtypes("mliteral",1,"off")=0 + Set gtmtypes("mliteral",1,"len")=8 + Set gtmtypes("mliteral",1,"type")="struct" + Set gtmtypfldindx("mliteral","que")=1 + Set gtmtypes("mliteral",2,"name")="mliteral.que.fl" + Set gtmtypes("mliteral",2,"off")=0 + Set gtmtypes("mliteral",2,"len")=4 + Set gtmtypes("mliteral",2,"type")="addr" + Set gtmtypfldindx("mliteral","que.fl")=2 + Set gtmtypes("mliteral",3,"name")="mliteral.que.bl" + Set gtmtypes("mliteral",3,"off")=4 + Set gtmtypes("mliteral",3,"len")=4 + Set gtmtypes("mliteral",3,"type")="addr" + Set gtmtypfldindx("mliteral","que.bl")=3 + Set gtmtypes("mliteral",4,"name")="mliteral.rt_addr" + Set gtmtypes("mliteral",4,"off")=8 + Set gtmtypes("mliteral",4,"len")=4 + Set gtmtypes("mliteral",4,"type")="intptr_t" + Set gtmtypfldindx("mliteral","rt_addr")=4 + Set gtmtypes("mliteral",5,"name")="mliteral.v" + Set gtmtypes("mliteral",5,"off")=12 + Set gtmtypes("mliteral",5,"len")=32 + Set gtmtypes("mliteral",5,"type")="mval" + Set gtmtypfldindx("mliteral","v")=5 + Set gtmtypes("mliteral",6,"name")="mliteral.v.mvtype" + Set gtmtypes("mliteral",6,"off")=12 + Set gtmtypes("mliteral",6,"len")=2 + Set gtmtypes("mliteral",6,"type")="unsigned-short" + Set gtmtypfldindx("mliteral","v.mvtype")=6 + Set gtmtypes("mliteral",7,"name")="mliteral.v.fnpc_indx" + Set gtmtypes("mliteral",7,"off")=15 + Set gtmtypes("mliteral",7,"len")=1 + Set gtmtypes("mliteral",7,"type")="unsigned-char" + Set gtmtypfldindx("mliteral","v.fnpc_indx")=7 + Set gtmtypes("mliteral",8,"name")="mliteral.v.utfcgr_indx" + Set gtmtypes("mliteral",8,"off")=16 + Set gtmtypes("mliteral",8,"len")=4 + Set gtmtypes("mliteral",8,"type")="unsigned-int" + Set gtmtypfldindx("mliteral","v.utfcgr_indx")=8 + Set gtmtypes("mliteral",9,"name")="mliteral.v.filler2" + Set gtmtypes("mliteral",9,"off")=20 + Set gtmtypes("mliteral",9,"len")=4 + Set gtmtypes("mliteral",9,"type")="unsigned-int" + Set gtmtypfldindx("mliteral","v.filler2")=9 + Set gtmtypes("mliteral",10,"name")="mliteral.v.m" + Set gtmtypes("mliteral",10,"off")=24 + Set gtmtypes("mliteral",10,"len")=8 + Set gtmtypes("mliteral",10,"type")="int" + Set gtmtypfldindx("mliteral","v.m")=10 + Set gtmtypes("mliteral",10,"dim")=2 + Set gtmtypes("mliteral",11,"name")="mliteral.v.str" + Set gtmtypes("mliteral",11,"off")=32 + Set gtmtypes("mliteral",11,"len")=12 + Set gtmtypes("mliteral",11,"type")="mstr" + Set gtmtypfldindx("mliteral","v.str")=11 + ; + Set gtmtypes("mlk_ctldata")="struct" + Set gtmtypes("mlk_ctldata",0)=12 + Set gtmtypes("mlk_ctldata","len")=300 + Set gtmtypes("mlk_ctldata",1,"name")="mlk_ctldata.prcfree" + Set gtmtypes("mlk_ctldata",1,"off")=0 + Set gtmtypes("mlk_ctldata",1,"len")=4 + Set gtmtypes("mlk_ctldata",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","prcfree")=1 + Set gtmtypes("mlk_ctldata",2,"name")="mlk_ctldata.blkfree" + Set gtmtypes("mlk_ctldata",2,"off")=4 + Set gtmtypes("mlk_ctldata",2,"len")=4 + Set gtmtypes("mlk_ctldata",2,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","blkfree")=2 + Set gtmtypes("mlk_ctldata",3,"name")="mlk_ctldata.blkroot" + Set gtmtypes("mlk_ctldata",3,"off")=8 + Set gtmtypes("mlk_ctldata",3,"len")=4 + Set gtmtypes("mlk_ctldata",3,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","blkroot")=3 + Set gtmtypes("mlk_ctldata",4,"name")="mlk_ctldata.subbase" + Set gtmtypes("mlk_ctldata",4,"off")=12 + Set gtmtypes("mlk_ctldata",4,"len")=4 + Set gtmtypes("mlk_ctldata",4,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subbase")=4 + Set gtmtypes("mlk_ctldata",5,"name")="mlk_ctldata.subfree" + Set gtmtypes("mlk_ctldata",5,"off")=16 + Set gtmtypes("mlk_ctldata",5,"len")=4 + Set gtmtypes("mlk_ctldata",5,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subfree")=5 + Set gtmtypes("mlk_ctldata",6,"name")="mlk_ctldata.subtop" + Set gtmtypes("mlk_ctldata",6,"off")=20 + Set gtmtypes("mlk_ctldata",6,"len")=4 + Set gtmtypes("mlk_ctldata",6,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subtop")=6 + Set gtmtypes("mlk_ctldata",7,"name")="mlk_ctldata.max_prccnt" + Set gtmtypes("mlk_ctldata",7,"off")=24 + Set gtmtypes("mlk_ctldata",7,"len")=4 + Set gtmtypes("mlk_ctldata",7,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","max_prccnt")=7 + Set gtmtypes("mlk_ctldata",8,"name")="mlk_ctldata.max_blkcnt" + Set gtmtypes("mlk_ctldata",8,"off")=28 + Set gtmtypes("mlk_ctldata",8,"len")=4 + Set gtmtypes("mlk_ctldata",8,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","max_blkcnt")=8 + Set gtmtypes("mlk_ctldata",9,"name")="mlk_ctldata.prccnt" + Set gtmtypes("mlk_ctldata",9,"off")=32 + Set gtmtypes("mlk_ctldata",9,"len")=4 + Set gtmtypes("mlk_ctldata",9,"type")="int" + Set gtmtypfldindx("mlk_ctldata","prccnt")=9 + Set gtmtypes("mlk_ctldata",10,"name")="mlk_ctldata.blkcnt" + Set gtmtypes("mlk_ctldata",10,"off")=36 + Set gtmtypes("mlk_ctldata",10,"len")=4 + Set gtmtypes("mlk_ctldata",10,"type")="int" + Set gtmtypfldindx("mlk_ctldata","blkcnt")=10 + Set gtmtypes("mlk_ctldata",11,"name")="mlk_ctldata.clus_pids" + Set gtmtypes("mlk_ctldata",11,"off")=40 + Set gtmtypes("mlk_ctldata",11,"len")=256 + Set gtmtypes("mlk_ctldata",11,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","clus_pids")=11 + Set gtmtypes("mlk_ctldata",11,"dim")=64 + Set gtmtypes("mlk_ctldata",12,"name")="mlk_ctldata.wakeups" + Set gtmtypes("mlk_ctldata",12,"off")=296 + Set gtmtypes("mlk_ctldata",12,"len")=4 + Set gtmtypes("mlk_ctldata",12,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","wakeups")=12 + ; + Set gtmtypes("mlk_prcblk")="struct" + Set gtmtypes("mlk_prcblk",0)=4 + Set gtmtypes("mlk_prcblk","len")=12 + Set gtmtypes("mlk_prcblk",1,"name")="mlk_prcblk.next" + Set gtmtypes("mlk_prcblk",1,"off")=0 + Set gtmtypes("mlk_prcblk",1,"len")=4 + Set gtmtypes("mlk_prcblk",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_prcblk","next")=1 + Set gtmtypes("mlk_prcblk",2,"name")="mlk_prcblk.process_id" + Set gtmtypes("mlk_prcblk",2,"off")=4 + Set gtmtypes("mlk_prcblk",2,"len")=4 + Set gtmtypes("mlk_prcblk",2,"type")="unsigned-int" + Set gtmtypfldindx("mlk_prcblk","process_id")=2 + Set gtmtypes("mlk_prcblk",3,"name")="mlk_prcblk.ref_cnt" + Set gtmtypes("mlk_prcblk",3,"off")=8 + Set gtmtypes("mlk_prcblk",3,"len")=2 + Set gtmtypes("mlk_prcblk",3,"type")="short" + Set gtmtypfldindx("mlk_prcblk","ref_cnt")=3 + Set gtmtypes("mlk_prcblk",4,"name")="mlk_prcblk.filler_4byte" + Set gtmtypes("mlk_prcblk",4,"off")=10 + Set gtmtypes("mlk_prcblk",4,"len")=2 + Set gtmtypes("mlk_prcblk",4,"type")="short" + Set gtmtypfldindx("mlk_prcblk","filler_4byte")=4 + ; + Set gtmtypes("mlk_pvtblk")="struct" + Set gtmtypes("mlk_pvtblk",0)=16 + Set gtmtypes("mlk_pvtblk","len")=52 + Set gtmtypes("mlk_pvtblk",1,"name")="mlk_pvtblk.ctlptr" + Set gtmtypes("mlk_pvtblk",1,"off")=0 + Set gtmtypes("mlk_pvtblk",1,"len")=4 + Set gtmtypes("mlk_pvtblk",1,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","ctlptr")=1 + Set gtmtypes("mlk_pvtblk",2,"name")="mlk_pvtblk.nodptr" + Set gtmtypes("mlk_pvtblk",2,"off")=4 + Set gtmtypes("mlk_pvtblk",2,"len")=4 + Set gtmtypes("mlk_pvtblk",2,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","nodptr")=2 + Set gtmtypes("mlk_pvtblk",3,"name")="mlk_pvtblk.blocked" + Set gtmtypes("mlk_pvtblk",3,"off")=8 + Set gtmtypes("mlk_pvtblk",3,"len")=4 + Set gtmtypes("mlk_pvtblk",3,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","blocked")=3 + Set gtmtypes("mlk_pvtblk",4,"name")="mlk_pvtblk.next" + Set gtmtypes("mlk_pvtblk",4,"off")=12 + Set gtmtypes("mlk_pvtblk",4,"len")=4 + Set gtmtypes("mlk_pvtblk",4,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","next")=4 + Set gtmtypes("mlk_pvtblk",5,"name")="mlk_pvtblk.region" + Set gtmtypes("mlk_pvtblk",5,"off")=16 + Set gtmtypes("mlk_pvtblk",5,"len")=4 + Set gtmtypes("mlk_pvtblk",5,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","region")=5 + Set gtmtypes("mlk_pvtblk",6,"name")="mlk_pvtblk.sequence" + Set gtmtypes("mlk_pvtblk",6,"off")=20 + Set gtmtypes("mlk_pvtblk",6,"len")=4 + Set gtmtypes("mlk_pvtblk",6,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","sequence")=6 + Set gtmtypes("mlk_pvtblk",7,"name")="mlk_pvtblk.blk_sequence" + Set gtmtypes("mlk_pvtblk",7,"off")=24 + Set gtmtypes("mlk_pvtblk",7,"len")=4 + Set gtmtypes("mlk_pvtblk",7,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","blk_sequence")=7 + Set gtmtypes("mlk_pvtblk",8,"name")="mlk_pvtblk.tp" + Set gtmtypes("mlk_pvtblk",8,"off")=28 + Set gtmtypes("mlk_pvtblk",8,"len")=4 + Set gtmtypes("mlk_pvtblk",8,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","tp")=8 + Set gtmtypes("mlk_pvtblk",9,"name")="mlk_pvtblk.total_length" + Set gtmtypes("mlk_pvtblk",9,"off")=32 + Set gtmtypes("mlk_pvtblk",9,"len")=4 + Set gtmtypes("mlk_pvtblk",9,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","total_length")=9 + Set gtmtypes("mlk_pvtblk",10,"name")="mlk_pvtblk.total_len_padded" + Set gtmtypes("mlk_pvtblk",10,"off")=36 + Set gtmtypes("mlk_pvtblk",10,"len")=4 + Set gtmtypes("mlk_pvtblk",10,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","total_len_padded")=10 + Set gtmtypes("mlk_pvtblk",11,"name")="mlk_pvtblk.subscript_cnt" + Set gtmtypes("mlk_pvtblk",11,"off")=40 + Set gtmtypes("mlk_pvtblk",11,"len")=2 + Set gtmtypes("mlk_pvtblk",11,"type")="unsigned-short" + Set gtmtypfldindx("mlk_pvtblk","subscript_cnt")=11 + Set gtmtypes("mlk_pvtblk",12,"name")="mlk_pvtblk.trans" + Set gtmtypes("mlk_pvtblk",12,"off")=44 + Set gtmtypes("mlk_pvtblk",12,"len")=1 + Set gtmtypes("mlk_pvtblk",12,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","trans")=12 + Set gtmtypes("mlk_pvtblk",13,"name")="mlk_pvtblk.translev" + Set gtmtypes("mlk_pvtblk",13,"off")=45 + Set gtmtypes("mlk_pvtblk",13,"len")=1 + Set gtmtypes("mlk_pvtblk",13,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","translev")=13 + Set gtmtypes("mlk_pvtblk",14,"name")="mlk_pvtblk.old" + Set gtmtypes("mlk_pvtblk",14,"off")=46 + Set gtmtypes("mlk_pvtblk",14,"len")=1 + Set gtmtypes("mlk_pvtblk",14,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","old")=14 + Set gtmtypes("mlk_pvtblk",15,"name")="mlk_pvtblk.filler" + Set gtmtypes("mlk_pvtblk",15,"off")=47 + Set gtmtypes("mlk_pvtblk",15,"len")=1 + Set gtmtypes("mlk_pvtblk",15,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","filler")=15 + Set gtmtypes("mlk_pvtblk",16,"name")="mlk_pvtblk.value" + Set gtmtypes("mlk_pvtblk",16,"off")=48 + Set gtmtypes("mlk_pvtblk",16,"len")=1 + Set gtmtypes("mlk_pvtblk",16,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","value")=16 + ; + Set gtmtypes("mlk_shrblk")="struct" + Set gtmtypes("mlk_shrblk",0)=11 + Set gtmtypes("mlk_shrblk","len")=56 + Set gtmtypes("mlk_shrblk",1,"name")="mlk_shrblk.value" + Set gtmtypes("mlk_shrblk",1,"off")=0 + Set gtmtypes("mlk_shrblk",1,"len")=4 + Set gtmtypes("mlk_shrblk",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","value")=1 + Set gtmtypes("mlk_shrblk",2,"name")="mlk_shrblk.parent" + Set gtmtypes("mlk_shrblk",2,"off")=4 + Set gtmtypes("mlk_shrblk",2,"len")=4 + Set gtmtypes("mlk_shrblk",2,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","parent")=2 + Set gtmtypes("mlk_shrblk",3,"name")="mlk_shrblk.children" + Set gtmtypes("mlk_shrblk",3,"off")=8 + Set gtmtypes("mlk_shrblk",3,"len")=4 + Set gtmtypes("mlk_shrblk",3,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","children")=3 + Set gtmtypes("mlk_shrblk",4,"name")="mlk_shrblk.lsib" + Set gtmtypes("mlk_shrblk",4,"off")=12 + Set gtmtypes("mlk_shrblk",4,"len")=4 + Set gtmtypes("mlk_shrblk",4,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","lsib")=4 + Set gtmtypes("mlk_shrblk",5,"name")="mlk_shrblk.rsib" + Set gtmtypes("mlk_shrblk",5,"off")=16 + Set gtmtypes("mlk_shrblk",5,"len")=4 + Set gtmtypes("mlk_shrblk",5,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","rsib")=5 + Set gtmtypes("mlk_shrblk",6,"name")="mlk_shrblk.pending" + Set gtmtypes("mlk_shrblk",6,"off")=20 + Set gtmtypes("mlk_shrblk",6,"len")=4 + Set gtmtypes("mlk_shrblk",6,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","pending")=6 + Set gtmtypes("mlk_shrblk",7,"name")="mlk_shrblk.owner" + Set gtmtypes("mlk_shrblk",7,"off")=24 + Set gtmtypes("mlk_shrblk",7,"len")=4 + Set gtmtypes("mlk_shrblk",7,"type")="int" + Set gtmtypfldindx("mlk_shrblk","owner")=7 + Set gtmtypes("mlk_shrblk",8,"name")="mlk_shrblk.sequence" + Set gtmtypes("mlk_shrblk",8,"off")=28 + Set gtmtypes("mlk_shrblk",8,"len")=4 + Set gtmtypes("mlk_shrblk",8,"type")="unsigned-int" + Set gtmtypfldindx("mlk_shrblk","sequence")=8 + Set gtmtypes("mlk_shrblk",9,"name")="mlk_shrblk.auxowner" + Set gtmtypes("mlk_shrblk",9,"off")=32 + Set gtmtypes("mlk_shrblk",9,"len")=4 + Set gtmtypes("mlk_shrblk",9,"type")="uintptr_t" + Set gtmtypfldindx("mlk_shrblk","auxowner")=9 + Set gtmtypes("mlk_shrblk",10,"name")="mlk_shrblk.auxpid" + Set gtmtypes("mlk_shrblk",10,"off")=36 + Set gtmtypes("mlk_shrblk",10,"len")=4 + Set gtmtypes("mlk_shrblk",10,"type")="int" + Set gtmtypfldindx("mlk_shrblk","auxpid")=10 + Set gtmtypes("mlk_shrblk",11,"name")="mlk_shrblk.auxnode" + Set gtmtypes("mlk_shrblk",11,"off")=40 + Set gtmtypes("mlk_shrblk",11,"len")=16 + Set gtmtypes("mlk_shrblk",11,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrblk","auxnode")=11 + ; + Set gtmtypes("mlk_shrsub")="struct" + Set gtmtypes("mlk_shrsub",0)=3 + Set gtmtypes("mlk_shrsub","len")=8 + Set gtmtypes("mlk_shrsub",1,"name")="mlk_shrsub.backpointer" + Set gtmtypes("mlk_shrsub",1,"off")=0 + Set gtmtypes("mlk_shrsub",1,"len")=4 + Set gtmtypes("mlk_shrsub",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrsub","backpointer")=1 + Set gtmtypes("mlk_shrsub",2,"name")="mlk_shrsub.length" + Set gtmtypes("mlk_shrsub",2,"off")=4 + Set gtmtypes("mlk_shrsub",2,"len")=1 + Set gtmtypes("mlk_shrsub",2,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrsub","length")=2 + Set gtmtypes("mlk_shrsub",3,"name")="mlk_shrsub.data" + Set gtmtypes("mlk_shrsub",3,"off")=5 + Set gtmtypes("mlk_shrsub",3,"len")=1 + Set gtmtypes("mlk_shrsub",3,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrsub","data")=3 + ; + Set gtmtypes("mlk_stats_t")="struct" + Set gtmtypes("mlk_stats_t",0)=2 + Set gtmtypes("mlk_stats_t","len")=16 + Set gtmtypes("mlk_stats_t",1,"name")="mlk_stats_t.n_user_locks_success" + Set gtmtypes("mlk_stats_t",1,"off")=0 + Set gtmtypes("mlk_stats_t",1,"len")=8 + Set gtmtypes("mlk_stats_t",1,"type")="uint64_t" + Set gtmtypfldindx("mlk_stats_t","n_user_locks_success")=1 + Set gtmtypes("mlk_stats_t",2,"name")="mlk_stats_t.n_user_locks_fail" + Set gtmtypes("mlk_stats_t",2,"off")=8 + Set gtmtypes("mlk_stats_t",2,"len")=8 + Set gtmtypes("mlk_stats_t",2,"type")="uint64_t" + Set gtmtypfldindx("mlk_stats_t","n_user_locks_fail")=2 + ; + Set gtmtypes("mlk_tp")="struct" + Set gtmtypes("mlk_tp",0)=1 + Set gtmtypes("mlk_tp","len")=8 + Set gtmtypes("mlk_tp",1,"name")="mlk_tp.next" + Set gtmtypes("mlk_tp",1,"off")=0 + Set gtmtypes("mlk_tp",1,"len")=4 + Set gtmtypes("mlk_tp",1,"type")="addr" + Set gtmtypfldindx("mlk_tp","next")=1 + ; + Set gtmtypes("mmseg")="struct" + Set gtmtypes("mmseg",0)=3 + Set gtmtypes("mmseg","len")=12 + Set gtmtypes("mmseg",1,"name")="mmseg.next" + Set gtmtypes("mmseg",1,"off")=0 + Set gtmtypes("mmseg",1,"len")=4 + Set gtmtypes("mmseg",1,"type")="addr" + Set gtmtypfldindx("mmseg","next")=1 + Set gtmtypes("mmseg",2,"name")="mmseg.begin" + Set gtmtypes("mmseg",2,"off")=4 + Set gtmtypes("mmseg",2,"len")=4 + Set gtmtypes("mmseg",2,"type")="addr" + Set gtmtypfldindx("mmseg","begin")=2 + Set gtmtypes("mmseg",3,"name")="mmseg.end" + Set gtmtypes("mmseg",3,"off")=8 + Set gtmtypes("mmseg",3,"len")=4 + Set gtmtypes("mmseg",3,"type")="addr" + Set gtmtypfldindx("mmseg","end")=3 + ; + Set gtmtypes("mname_entry")="struct" + Set gtmtypes("mname_entry",0)=6 + Set gtmtypes("mname_entry","len")=20 + Set gtmtypes("mname_entry",1,"name")="mname_entry.var_name" + Set gtmtypes("mname_entry",1,"off")=0 + Set gtmtypes("mname_entry",1,"len")=12 + Set gtmtypes("mname_entry",1,"type")="mstr" + Set gtmtypfldindx("mname_entry","var_name")=1 + Set gtmtypes("mname_entry",2,"name")="mname_entry.var_name.char_len" + Set gtmtypes("mname_entry",2,"off")=0 + Set gtmtypes("mname_entry",2,"len")=4 + Set gtmtypes("mname_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("mname_entry","var_name.char_len")=2 + Set gtmtypes("mname_entry",3,"name")="mname_entry.var_name.len" + Set gtmtypes("mname_entry",3,"off")=4 + Set gtmtypes("mname_entry",3,"len")=4 + Set gtmtypes("mname_entry",3,"type")="int" + Set gtmtypfldindx("mname_entry","var_name.len")=3 + Set gtmtypes("mname_entry",4,"name")="mname_entry.var_name.addr" + Set gtmtypes("mname_entry",4,"off")=8 + Set gtmtypes("mname_entry",4,"len")=4 + Set gtmtypes("mname_entry",4,"type")="addr" + Set gtmtypfldindx("mname_entry","var_name.addr")=4 + Set gtmtypes("mname_entry",5,"name")="mname_entry.hash_code" + Set gtmtypes("mname_entry",5,"off")=12 + Set gtmtypes("mname_entry",5,"len")=4 + Set gtmtypes("mname_entry",5,"type")="unsigned-int" + Set gtmtypfldindx("mname_entry","hash_code")=5 + Set gtmtypes("mname_entry",6,"name")="mname_entry.marked" + Set gtmtypes("mname_entry",6,"off")=16 + Set gtmtypes("mname_entry",6,"len")=4 + Set gtmtypes("mname_entry",6,"type")="boolean_t" + Set gtmtypfldindx("mname_entry","marked")=6 + ; + Set gtmtypes("mprof_stack_frame")="struct" + Set gtmtypes("mprof_stack_frame",0)=7 + Set gtmtypes("mprof_stack_frame","len")=68 + Set gtmtypes("mprof_stack_frame",1,"name")="mprof_stack_frame.prev" + Set gtmtypes("mprof_stack_frame",1,"off")=0 + Set gtmtypes("mprof_stack_frame",1,"len")=4 + Set gtmtypes("mprof_stack_frame",1,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","prev")=1 + Set gtmtypes("mprof_stack_frame",2,"name")="mprof_stack_frame.rout_name" + Set gtmtypes("mprof_stack_frame",2,"off")=4 + Set gtmtypes("mprof_stack_frame",2,"len")=4 + Set gtmtypes("mprof_stack_frame",2,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","rout_name")=2 + Set gtmtypes("mprof_stack_frame",3,"name")="mprof_stack_frame.label_name" + Set gtmtypes("mprof_stack_frame",3,"off")=8 + Set gtmtypes("mprof_stack_frame",3,"len")=4 + Set gtmtypes("mprof_stack_frame",3,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","label_name")=3 + Set gtmtypes("mprof_stack_frame",4,"name")="mprof_stack_frame.curr_node" + Set gtmtypes("mprof_stack_frame",4,"off")=12 + Set gtmtypes("mprof_stack_frame",4,"len")=4 + Set gtmtypes("mprof_stack_frame",4,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","curr_node")=4 + Set gtmtypes("mprof_stack_frame",5,"name")="mprof_stack_frame.start" + Set gtmtypes("mprof_stack_frame",5,"off")=16 + Set gtmtypes("mprof_stack_frame",5,"len")=24 + Set gtmtypes("mprof_stack_frame",5,"type")="struct" + Set gtmtypfldindx("mprof_stack_frame","start")=5 + Set gtmtypes("mprof_stack_frame",6,"name")="mprof_stack_frame.carryover" + Set gtmtypes("mprof_stack_frame",6,"off")=40 + Set gtmtypes("mprof_stack_frame",6,"len")=24 + Set gtmtypes("mprof_stack_frame",6,"type")="struct" + Set gtmtypfldindx("mprof_stack_frame","carryover")=6 + Set gtmtypes("mprof_stack_frame",7,"name")="mprof_stack_frame.dummy_stack_count" + Set gtmtypes("mprof_stack_frame",7,"off")=64 + Set gtmtypes("mprof_stack_frame",7,"len")=4 + Set gtmtypes("mprof_stack_frame",7,"type")="int" + Set gtmtypfldindx("mprof_stack_frame","dummy_stack_count")=7 + ; + Set gtmtypes("mprof_tree")="struct" + Set gtmtypes("mprof_tree",0)=14 + Set gtmtypes("mprof_tree","len")=68 + Set gtmtypes("mprof_tree",1,"name")="mprof_tree.e" + Set gtmtypes("mprof_tree",1,"off")=0 + Set gtmtypes("mprof_tree",1,"len")=48 + Set gtmtypes("mprof_tree",1,"type")="trace_entry" + Set gtmtypfldindx("mprof_tree","e")=1 + Set gtmtypes("mprof_tree",2,"name")="mprof_tree.e.rout_name" + Set gtmtypes("mprof_tree",2,"off")=0 + Set gtmtypes("mprof_tree",2,"len")=4 + Set gtmtypes("mprof_tree",2,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.rout_name")=2 + Set gtmtypes("mprof_tree",3,"name")="mprof_tree.e.label_name" + Set gtmtypes("mprof_tree",3,"off")=4 + Set gtmtypes("mprof_tree",3,"len")=4 + Set gtmtypes("mprof_tree",3,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.label_name")=3 + Set gtmtypes("mprof_tree",4,"name")="mprof_tree.e.line_num" + Set gtmtypes("mprof_tree",4,"off")=8 + Set gtmtypes("mprof_tree",4,"len")=4 + Set gtmtypes("mprof_tree",4,"type")="int" + Set gtmtypfldindx("mprof_tree","e.line_num")=4 + Set gtmtypes("mprof_tree",5,"name")="mprof_tree.e.count" + Set gtmtypes("mprof_tree",5,"off")=12 + Set gtmtypes("mprof_tree",5,"len")=4 + Set gtmtypes("mprof_tree",5,"type")="unsigned" + Set gtmtypfldindx("mprof_tree","e.count")=5 + Set gtmtypes("mprof_tree",6,"name")="mprof_tree.e.sys_time" + Set gtmtypes("mprof_tree",6,"off")=16 + Set gtmtypes("mprof_tree",6,"len")=8 + Set gtmtypes("mprof_tree",6,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.sys_time")=6 + Set gtmtypes("mprof_tree",7,"name")="mprof_tree.e.usr_time" + Set gtmtypes("mprof_tree",7,"off")=24 + Set gtmtypes("mprof_tree",7,"len")=8 + Set gtmtypes("mprof_tree",7,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.usr_time")=7 + Set gtmtypes("mprof_tree",8,"name")="mprof_tree.e.elp_time" + Set gtmtypes("mprof_tree",8,"off")=32 + Set gtmtypes("mprof_tree",8,"len")=8 + Set gtmtypes("mprof_tree",8,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.elp_time")=8 + Set gtmtypes("mprof_tree",9,"name")="mprof_tree.e.loop_level" + Set gtmtypes("mprof_tree",9,"off")=40 + Set gtmtypes("mprof_tree",9,"len")=4 + Set gtmtypes("mprof_tree",9,"type")="int" + Set gtmtypfldindx("mprof_tree","e.loop_level")=9 + Set gtmtypes("mprof_tree",10,"name")="mprof_tree.e.raddr" + Set gtmtypes("mprof_tree",10,"off")=44 + Set gtmtypes("mprof_tree",10,"len")=4 + Set gtmtypes("mprof_tree",10,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.raddr")=10 + Set gtmtypes("mprof_tree",11,"name")="mprof_tree.link" + Set gtmtypes("mprof_tree",11,"off")=48 + Set gtmtypes("mprof_tree",11,"len")=8 + Set gtmtypes("mprof_tree",11,"type")="addr" + Set gtmtypfldindx("mprof_tree","link")=11 + Set gtmtypes("mprof_tree",11,"dim")=2 + Set gtmtypes("mprof_tree",12,"name")="mprof_tree.loop_link" + Set gtmtypes("mprof_tree",12,"off")=56 + Set gtmtypes("mprof_tree",12,"len")=4 + Set gtmtypes("mprof_tree",12,"type")="addr" + Set gtmtypfldindx("mprof_tree","loop_link")=12 + Set gtmtypes("mprof_tree",13,"name")="mprof_tree.desc_dir" + Set gtmtypes("mprof_tree",13,"off")=60 + Set gtmtypes("mprof_tree",13,"len")=4 + Set gtmtypes("mprof_tree",13,"type")="int" + Set gtmtypfldindx("mprof_tree","desc_dir")=13 + Set gtmtypes("mprof_tree",14,"name")="mprof_tree.ins_path_hint" + Set gtmtypes("mprof_tree",14,"off")=64 + Set gtmtypes("mprof_tree",14,"len")=4 + Set gtmtypes("mprof_tree",14,"type")="int" + Set gtmtypfldindx("mprof_tree","ins_path_hint")=14 + ; + Set gtmtypes("mprof_wrapper")="struct" + Set gtmtypes("mprof_wrapper",0)=26 + Set gtmtypes("mprof_wrapper","len")=1268 + Set gtmtypes("mprof_wrapper",1,"name")="mprof_wrapper.tprev" + Set gtmtypes("mprof_wrapper",1,"off")=0 + Set gtmtypes("mprof_wrapper",1,"len")=24 + Set gtmtypes("mprof_wrapper",1,"type")="struct" + Set gtmtypfldindx("mprof_wrapper","tprev")=1 + Set gtmtypes("mprof_wrapper",2,"name")="mprof_wrapper.tcurr" + Set gtmtypes("mprof_wrapper",2,"off")=24 + Set gtmtypes("mprof_wrapper",2,"len")=24 + Set gtmtypes("mprof_wrapper",2,"type")="struct" + Set gtmtypfldindx("mprof_wrapper","tcurr")=2 + Set gtmtypes("mprof_wrapper",3,"name")="mprof_wrapper.head_tblnd" + Set gtmtypes("mprof_wrapper",3,"off")=48 + Set gtmtypes("mprof_wrapper",3,"len")=4 + Set gtmtypes("mprof_wrapper",3,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","head_tblnd")=3 + Set gtmtypes("mprof_wrapper",4,"name")="mprof_wrapper.curr_tblnd" + Set gtmtypes("mprof_wrapper",4,"off")=52 + Set gtmtypes("mprof_wrapper",4,"len")=4 + Set gtmtypes("mprof_wrapper",4,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","curr_tblnd")=4 + Set gtmtypes("mprof_wrapper",5,"name")="mprof_wrapper.curr_num_subscripts" + Set gtmtypes("mprof_wrapper",5,"off")=56 + Set gtmtypes("mprof_wrapper",5,"len")=4 + Set gtmtypes("mprof_wrapper",5,"type")="int" + Set gtmtypfldindx("mprof_wrapper","curr_num_subscripts")=5 + Set gtmtypes("mprof_wrapper",6,"name")="mprof_wrapper.pcavailptr" + Set gtmtypes("mprof_wrapper",6,"off")=60 + Set gtmtypes("mprof_wrapper",6,"len")=4 + Set gtmtypes("mprof_wrapper",6,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","pcavailptr")=6 + Set gtmtypes("mprof_wrapper",7,"name")="mprof_wrapper.pcavailbase" + Set gtmtypes("mprof_wrapper",7,"off")=64 + Set gtmtypes("mprof_wrapper",7,"len")=4 + Set gtmtypes("mprof_wrapper",7,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","pcavailbase")=7 + Set gtmtypes("mprof_wrapper",8,"name")="mprof_wrapper.pcavail" + Set gtmtypes("mprof_wrapper",8,"off")=68 + Set gtmtypes("mprof_wrapper",8,"len")=4 + Set gtmtypes("mprof_wrapper",8,"type")="int" + Set gtmtypfldindx("mprof_wrapper","pcavail")=8 + Set gtmtypes("mprof_wrapper",9,"name")="mprof_wrapper.is_tracing_ini" + Set gtmtypes("mprof_wrapper",9,"off")=72 + Set gtmtypes("mprof_wrapper",9,"len")=4 + Set gtmtypes("mprof_wrapper",9,"type")="boolean_t" + Set gtmtypfldindx("mprof_wrapper","is_tracing_ini")=9 + Set gtmtypes("mprof_wrapper",10,"name")="mprof_wrapper.subsc" + Set gtmtypes("mprof_wrapper",10,"off")=76 + Set gtmtypes("mprof_wrapper",10,"len")=1024 + Set gtmtypes("mprof_wrapper",10,"type")="mval" + Set gtmtypfldindx("mprof_wrapper","subsc")=10 + Set gtmtypes("mprof_wrapper",10,"dim")=32 + Set gtmtypes("mprof_wrapper",11,"name")="mprof_wrapper.subsc[0].mvtype" + Set gtmtypes("mprof_wrapper",11,"off")=76 + Set gtmtypes("mprof_wrapper",11,"len")=2 + Set gtmtypes("mprof_wrapper",11,"type")="unsigned-short" + Set gtmtypfldindx("mprof_wrapper","subsc[0].mvtype")=11 + Set gtmtypes("mprof_wrapper",12,"name")="mprof_wrapper.subsc[0].fnpc_indx" + Set gtmtypes("mprof_wrapper",12,"off")=79 + Set gtmtypes("mprof_wrapper",12,"len")=1 + Set gtmtypes("mprof_wrapper",12,"type")="unsigned-char" + Set gtmtypfldindx("mprof_wrapper","subsc[0].fnpc_indx")=12 + Set gtmtypes("mprof_wrapper",13,"name")="mprof_wrapper.subsc[0].utfcgr_indx" + Set gtmtypes("mprof_wrapper",13,"off")=80 + Set gtmtypes("mprof_wrapper",13,"len")=4 + Set gtmtypes("mprof_wrapper",13,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].utfcgr_indx")=13 + Set gtmtypes("mprof_wrapper",14,"name")="mprof_wrapper.subsc[0].filler2" + Set gtmtypes("mprof_wrapper",14,"off")=84 + Set gtmtypes("mprof_wrapper",14,"len")=4 + Set gtmtypes("mprof_wrapper",14,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].filler2")=14 + Set gtmtypes("mprof_wrapper",15,"name")="mprof_wrapper.subsc[0].m" + Set gtmtypes("mprof_wrapper",15,"off")=88 + Set gtmtypes("mprof_wrapper",15,"len")=8 + Set gtmtypes("mprof_wrapper",15,"type")="int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].m")=15 + Set gtmtypes("mprof_wrapper",15,"dim")=2 + Set gtmtypes("mprof_wrapper",16,"name")="mprof_wrapper.subsc[0].str" + Set gtmtypes("mprof_wrapper",16,"off")=96 + Set gtmtypes("mprof_wrapper",16,"len")=12 + Set gtmtypes("mprof_wrapper",16,"type")="mstr" + Set gtmtypfldindx("mprof_wrapper","subsc[0].str")=16 + Set gtmtypes("mprof_wrapper",17,"name")="mprof_wrapper.gvargs" + Set gtmtypes("mprof_wrapper",17,"off")=1100 + Set gtmtypes("mprof_wrapper",17,"len")=136 + Set gtmtypes("mprof_wrapper",17,"type")="gvargs_t" + Set gtmtypfldindx("mprof_wrapper","gvargs")=17 + Set gtmtypes("mprof_wrapper",18,"name")="mprof_wrapper.gvargs.count" + Set gtmtypes("mprof_wrapper",18,"off")=1100 + Set gtmtypes("mprof_wrapper",18,"len")=4 + Set gtmtypes("mprof_wrapper",18,"type")="ssize_t" + Set gtmtypfldindx("mprof_wrapper","gvargs.count")=18 + Set gtmtypes("mprof_wrapper",19,"name")="mprof_wrapper.gvargs.args" + Set gtmtypes("mprof_wrapper",19,"off")=1104 + Set gtmtypes("mprof_wrapper",19,"len")=132 + Set gtmtypes("mprof_wrapper",19,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","gvargs.args")=19 + Set gtmtypes("mprof_wrapper",19,"dim")=33 + Set gtmtypes("mprof_wrapper",20,"name")="mprof_wrapper.gbl_to_fill" + Set gtmtypes("mprof_wrapper",20,"off")=1236 + Set gtmtypes("mprof_wrapper",20,"len")=32 + Set gtmtypes("mprof_wrapper",20,"type")="mval" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill")=20 + Set gtmtypes("mprof_wrapper",21,"name")="mprof_wrapper.gbl_to_fill.mvtype" + Set gtmtypes("mprof_wrapper",21,"off")=1236 + Set gtmtypes("mprof_wrapper",21,"len")=2 + Set gtmtypes("mprof_wrapper",21,"type")="unsigned-short" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.mvtype")=21 + Set gtmtypes("mprof_wrapper",22,"name")="mprof_wrapper.gbl_to_fill.fnpc_indx" + Set gtmtypes("mprof_wrapper",22,"off")=1239 + Set gtmtypes("mprof_wrapper",22,"len")=1 + Set gtmtypes("mprof_wrapper",22,"type")="unsigned-char" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.fnpc_indx")=22 + Set gtmtypes("mprof_wrapper",23,"name")="mprof_wrapper.gbl_to_fill.utfcgr_indx" + Set gtmtypes("mprof_wrapper",23,"off")=1240 + Set gtmtypes("mprof_wrapper",23,"len")=4 + Set gtmtypes("mprof_wrapper",23,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.utfcgr_indx")=23 + Set gtmtypes("mprof_wrapper",24,"name")="mprof_wrapper.gbl_to_fill.filler2" + Set gtmtypes("mprof_wrapper",24,"off")=1244 + Set gtmtypes("mprof_wrapper",24,"len")=4 + Set gtmtypes("mprof_wrapper",24,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.filler2")=24 + Set gtmtypes("mprof_wrapper",25,"name")="mprof_wrapper.gbl_to_fill.m" + Set gtmtypes("mprof_wrapper",25,"off")=1248 + Set gtmtypes("mprof_wrapper",25,"len")=8 + Set gtmtypes("mprof_wrapper",25,"type")="int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.m")=25 + Set gtmtypes("mprof_wrapper",25,"dim")=2 + Set gtmtypes("mprof_wrapper",26,"name")="mprof_wrapper.gbl_to_fill.str" + Set gtmtypes("mprof_wrapper",26,"off")=1256 + Set gtmtypes("mprof_wrapper",26,"len")=12 + Set gtmtypes("mprof_wrapper",26,"type")="mstr" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.str")=26 + ; + Set gtmtypes("mstr")="struct" + Set gtmtypes("mstr",0)=3 + Set gtmtypes("mstr","len")=12 + Set gtmtypes("mstr",1,"name")="mstr.char_len" + Set gtmtypes("mstr",1,"off")=0 + Set gtmtypes("mstr",1,"len")=4 + Set gtmtypes("mstr",1,"type")="unsigned-int" + Set gtmtypfldindx("mstr","char_len")=1 + Set gtmtypes("mstr",2,"name")="mstr.len" + Set gtmtypes("mstr",2,"off")=4 + Set gtmtypes("mstr",2,"len")=4 + Set gtmtypes("mstr",2,"type")="int" + Set gtmtypfldindx("mstr","len")=2 + Set gtmtypes("mstr",3,"name")="mstr.addr" + Set gtmtypes("mstr",3,"off")=8 + Set gtmtypes("mstr",3,"len")=4 + Set gtmtypes("mstr",3,"type")="addr" + Set gtmtypfldindx("mstr","addr")=3 + ; + Set gtmtypes("mu_extr_stats")="struct" + Set gtmtypes("mu_extr_stats",0)=4 + Set gtmtypes("mu_extr_stats","len")=20 + Set gtmtypes("mu_extr_stats",1,"name")="mu_extr_stats.recknt" + Set gtmtypes("mu_extr_stats",1,"off")=0 + Set gtmtypes("mu_extr_stats",1,"len")=8 + Set gtmtypes("mu_extr_stats",1,"type")="uint64_t" + Set gtmtypfldindx("mu_extr_stats","recknt")=1 + Set gtmtypes("mu_extr_stats",2,"name")="mu_extr_stats.reclen" + Set gtmtypes("mu_extr_stats",2,"off")=8 + Set gtmtypes("mu_extr_stats",2,"len")=4 + Set gtmtypes("mu_extr_stats",2,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","reclen")=2 + Set gtmtypes("mu_extr_stats",3,"name")="mu_extr_stats.keylen" + Set gtmtypes("mu_extr_stats",3,"off")=12 + Set gtmtypes("mu_extr_stats",3,"len")=4 + Set gtmtypes("mu_extr_stats",3,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","keylen")=3 + Set gtmtypes("mu_extr_stats",4,"name")="mu_extr_stats.datalen" + Set gtmtypes("mu_extr_stats",4,"off")=16 + Set gtmtypes("mu_extr_stats",4,"len")=4 + Set gtmtypes("mu_extr_stats",4,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","datalen")=4 + ; + Set gtmtypes("mu_set_rlist")="struct" + Set gtmtypes("mu_set_rlist",0)=10 + Set gtmtypes("mu_set_rlist","len")=56 + Set gtmtypes("mu_set_rlist",1,"name")="mu_set_rlist.fPtr" + Set gtmtypes("mu_set_rlist",1,"off")=0 + Set gtmtypes("mu_set_rlist",1,"len")=4 + Set gtmtypes("mu_set_rlist",1,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","fPtr")=1 + Set gtmtypes("mu_set_rlist",2,"name")="mu_set_rlist.reg" + Set gtmtypes("mu_set_rlist",2,"off")=4 + Set gtmtypes("mu_set_rlist",2,"len")=4 + Set gtmtypes("mu_set_rlist",2,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","reg")=2 + Set gtmtypes("mu_set_rlist",3,"name")="mu_set_rlist.unique_id" + Set gtmtypes("mu_set_rlist",3,"off")=8 + Set gtmtypes("mu_set_rlist",3,"len")=20 + Set gtmtypes("mu_set_rlist",3,"type")="char" + Set gtmtypfldindx("mu_set_rlist","unique_id")=3 + Set gtmtypes("mu_set_rlist",4,"name")="mu_set_rlist.state" + Set gtmtypes("mu_set_rlist",4,"off")=28 + Set gtmtypes("mu_set_rlist",4,"len")=4 + Set gtmtypes("mu_set_rlist",4,"type")="int" + Set gtmtypfldindx("mu_set_rlist","state")=4 + Set gtmtypes("mu_set_rlist",5,"name")="mu_set_rlist.sd" + Set gtmtypes("mu_set_rlist",5,"off")=32 + Set gtmtypes("mu_set_rlist",5,"len")=4 + Set gtmtypes("mu_set_rlist",5,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","sd")=5 + Set gtmtypes("mu_set_rlist",6,"name")="mu_set_rlist.exclusive" + Set gtmtypes("mu_set_rlist",6,"off")=36 + Set gtmtypes("mu_set_rlist",6,"len")=1 + Set gtmtypes("mu_set_rlist",6,"type")="char" + Set gtmtypfldindx("mu_set_rlist","exclusive")=6 + Set gtmtypes("mu_set_rlist",7,"name")="mu_set_rlist.fd" + Set gtmtypes("mu_set_rlist",7,"off")=40 + Set gtmtypes("mu_set_rlist",7,"len")=4 + Set gtmtypes("mu_set_rlist",7,"type")="int" + Set gtmtypfldindx("mu_set_rlist","fd")=7 + Set gtmtypes("mu_set_rlist",8,"name")="mu_set_rlist.jnl_new_state" + Set gtmtypes("mu_set_rlist",8,"off")=44 + Set gtmtypes("mu_set_rlist",8,"len")=4 + Set gtmtypes("mu_set_rlist",8,"type")="int" + Set gtmtypfldindx("mu_set_rlist","jnl_new_state")=8 + Set gtmtypes("mu_set_rlist",9,"name")="mu_set_rlist.repl_new_state" + Set gtmtypes("mu_set_rlist",9,"off")=48 + Set gtmtypes("mu_set_rlist",9,"len")=4 + Set gtmtypes("mu_set_rlist",9,"type")="int" + Set gtmtypfldindx("mu_set_rlist","repl_new_state")=9 + Set gtmtypes("mu_set_rlist",10,"name")="mu_set_rlist.before_images" + Set gtmtypes("mu_set_rlist",10,"off")=52 + Set gtmtypes("mu_set_rlist",10,"len")=4 + Set gtmtypes("mu_set_rlist",10,"type")="boolean_t" + Set gtmtypfldindx("mu_set_rlist","before_images")=10 + ; + Set gtmtypes("muinc_blk_hdr")="struct" + Set gtmtypes("muinc_blk_hdr",0)=9 + Set gtmtypes("muinc_blk_hdr","len")=32 + Set gtmtypes("muinc_blk_hdr",1,"name")="muinc_blk_hdr.filler_8byte" + Set gtmtypes("muinc_blk_hdr",1,"off")=0 + Set gtmtypes("muinc_blk_hdr",1,"len")=8 + Set gtmtypes("muinc_blk_hdr",1,"type")="char" + Set gtmtypfldindx("muinc_blk_hdr","filler_8byte")=1 + Set gtmtypes("muinc_blk_hdr",2,"name")="muinc_blk_hdr.blktype" + Set gtmtypes("muinc_blk_hdr",2,"off")=8 + Set gtmtypes("muinc_blk_hdr",2,"len")=4 + Set gtmtypes("muinc_blk_hdr",2,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","blktype")=2 + Set gtmtypes("muinc_blk_hdr",3,"name")="muinc_blk_hdr.blkid" + Set gtmtypes("muinc_blk_hdr",3,"off")=12 + Set gtmtypes("muinc_blk_hdr",3,"len")=4 + Set gtmtypes("muinc_blk_hdr",3,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","blkid")=3 + Set gtmtypes("muinc_blk_hdr",4,"name")="muinc_blk_hdr.use" + Set gtmtypes("muinc_blk_hdr",4,"off")=16 + Set gtmtypes("muinc_blk_hdr",4,"len")=4 + Set gtmtypes("muinc_blk_hdr",4,"type")="union" + Set gtmtypfldindx("muinc_blk_hdr","use")=4 + Set gtmtypes("muinc_blk_hdr",5,"name")="muinc_blk_hdr.use.bkup" + Set gtmtypes("muinc_blk_hdr",5,"off")=16 + Set gtmtypes("muinc_blk_hdr",5,"len")=4 + Set gtmtypes("muinc_blk_hdr",5,"type")="struct" + Set gtmtypfldindx("muinc_blk_hdr","use.bkup")=5 + Set gtmtypes("muinc_blk_hdr",6,"name")="muinc_blk_hdr.use.bkup.ondsk_blkver" + Set gtmtypes("muinc_blk_hdr",6,"off")=16 + Set gtmtypes("muinc_blk_hdr",6,"len")=4 + Set gtmtypes("muinc_blk_hdr",6,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","use.bkup.ondsk_blkver")=6 + Set gtmtypes("muinc_blk_hdr",7,"name")="muinc_blk_hdr.holder_pid" + Set gtmtypes("muinc_blk_hdr",7,"off")=20 + Set gtmtypes("muinc_blk_hdr",7,"len")=4 + Set gtmtypes("muinc_blk_hdr",7,"type")="pid_t" + Set gtmtypfldindx("muinc_blk_hdr","holder_pid")=7 + Set gtmtypes("muinc_blk_hdr",8,"name")="muinc_blk_hdr.valid_data" + Set gtmtypes("muinc_blk_hdr",8,"off")=24 + Set gtmtypes("muinc_blk_hdr",8,"len")=4 + Set gtmtypes("muinc_blk_hdr",8,"type")="boolean_t" + Set gtmtypfldindx("muinc_blk_hdr","valid_data")=8 + Set gtmtypes("muinc_blk_hdr",9,"name")="muinc_blk_hdr.image_count" + Set gtmtypes("muinc_blk_hdr",9,"off")=28 + Set gtmtypes("muinc_blk_hdr",9,"len")=4 + Set gtmtypes("muinc_blk_hdr",9,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","image_count")=9 + ; + Set gtmtypes("multi_proc_shm_hdr_t")="struct" + Set gtmtypes("multi_proc_shm_hdr_t",0)=22 + Set gtmtypes("multi_proc_shm_hdr_t","len")=12060 + Set gtmtypes("multi_proc_shm_hdr_t",1,"name")="multi_proc_shm_hdr_t.multi_proc_latch" + Set gtmtypes("multi_proc_shm_hdr_t",1,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",1,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",1,"type")="global_latch_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch")=1 + Set gtmtypes("multi_proc_shm_hdr_t",2,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u" + Set gtmtypes("multi_proc_shm_hdr_t",2,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",2,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",2,"type")="union" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u")=2 + Set gtmtypes("multi_proc_shm_hdr_t",3,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.pid_imgcnt" + Set gtmtypes("multi_proc_shm_hdr_t",3,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",3,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",3,"type")="uint64_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.pid_imgcnt")=3 + Set gtmtypes("multi_proc_shm_hdr_t",4,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts" + Set gtmtypes("multi_proc_shm_hdr_t",4,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",4,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",4,"type")="struct" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts")=4 + Set gtmtypes("multi_proc_shm_hdr_t",5,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts.latch_pid" + Set gtmtypes("multi_proc_shm_hdr_t",5,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",5,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",5,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts.latch_pid")=5 + Set gtmtypes("multi_proc_shm_hdr_t",6,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts.latch_word" + Set gtmtypes("multi_proc_shm_hdr_t",6,"off")=4 + Set gtmtypes("multi_proc_shm_hdr_t",6,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",6,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts.latch_word")=6 + Set gtmtypes("multi_proc_shm_hdr_t",7,"name")="multi_proc_shm_hdr_t.forced_multi_proc_exit" + Set gtmtypes("multi_proc_shm_hdr_t",7,"off")=8 + Set gtmtypes("multi_proc_shm_hdr_t",7,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",7,"type")="boolean_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","forced_multi_proc_exit")=7 + Set gtmtypes("multi_proc_shm_hdr_t",8,"name")="multi_proc_shm_hdr_t.wait_done" + Set gtmtypes("multi_proc_shm_hdr_t",8,"off")=12 + Set gtmtypes("multi_proc_shm_hdr_t",8,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",8,"type")="boolean_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","wait_done")=8 + Set gtmtypes("multi_proc_shm_hdr_t",9,"name")="multi_proc_shm_hdr_t.shmid" + Set gtmtypes("multi_proc_shm_hdr_t",9,"off")=16 + Set gtmtypes("multi_proc_shm_hdr_t",9,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",9,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","shmid")=9 + Set gtmtypes("multi_proc_shm_hdr_t",10,"name")="multi_proc_shm_hdr_t.procs_created" + Set gtmtypes("multi_proc_shm_hdr_t",10,"off")=20 + Set gtmtypes("multi_proc_shm_hdr_t",10,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",10,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","procs_created")=10 + Set gtmtypes("multi_proc_shm_hdr_t",11,"name")="multi_proc_shm_hdr_t.parent_pid" + Set gtmtypes("multi_proc_shm_hdr_t",11,"off")=24 + Set gtmtypes("multi_proc_shm_hdr_t",11,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",11,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parent_pid")=11 + Set gtmtypes("multi_proc_shm_hdr_t",12,"name")="multi_proc_shm_hdr_t.next_task" + Set gtmtypes("multi_proc_shm_hdr_t",12,"off")=28 + Set gtmtypes("multi_proc_shm_hdr_t",12,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",12,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","next_task")=12 + Set gtmtypes("multi_proc_shm_hdr_t",13,"name")="multi_proc_shm_hdr_t.pid" + Set gtmtypes("multi_proc_shm_hdr_t",13,"off")=32 + Set gtmtypes("multi_proc_shm_hdr_t",13,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",13,"type")="pid_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","pid")=13 + Set gtmtypes("multi_proc_shm_hdr_t",13,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",14,"name")="multi_proc_shm_hdr_t.orig_pid" + Set gtmtypes("multi_proc_shm_hdr_t",14,"off")=4032 + Set gtmtypes("multi_proc_shm_hdr_t",14,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",14,"type")="pid_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","orig_pid")=14 + Set gtmtypes("multi_proc_shm_hdr_t",14,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",15,"name")="multi_proc_shm_hdr_t.wait_stat" + Set gtmtypes("multi_proc_shm_hdr_t",15,"off")=8032 + Set gtmtypes("multi_proc_shm_hdr_t",15,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",15,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","wait_stat")=15 + Set gtmtypes("multi_proc_shm_hdr_t",15,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",16,"name")="multi_proc_shm_hdr_t.fnptr" + Set gtmtypes("multi_proc_shm_hdr_t",16,"off")=12032 + Set gtmtypes("multi_proc_shm_hdr_t",16,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",16,"type")="gtm_multi_proc_fnptr_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","fnptr")=16 + Set gtmtypes("multi_proc_shm_hdr_t",17,"name")="multi_proc_shm_hdr_t.pvt_ret_array" + Set gtmtypes("multi_proc_shm_hdr_t",17,"off")=12036 + Set gtmtypes("multi_proc_shm_hdr_t",17,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",17,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","pvt_ret_array")=17 + Set gtmtypes("multi_proc_shm_hdr_t",18,"name")="multi_proc_shm_hdr_t.shm_ret_array" + Set gtmtypes("multi_proc_shm_hdr_t",18,"off")=12040 + Set gtmtypes("multi_proc_shm_hdr_t",18,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",18,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","shm_ret_array")=18 + Set gtmtypes("multi_proc_shm_hdr_t",19,"name")="multi_proc_shm_hdr_t.parm_array" + Set gtmtypes("multi_proc_shm_hdr_t",19,"off")=12044 + Set gtmtypes("multi_proc_shm_hdr_t",19,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",19,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parm_array")=19 + Set gtmtypes("multi_proc_shm_hdr_t",20,"name")="multi_proc_shm_hdr_t.ntasks" + Set gtmtypes("multi_proc_shm_hdr_t",20,"off")=12048 + Set gtmtypes("multi_proc_shm_hdr_t",20,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",20,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","ntasks")=20 + Set gtmtypes("multi_proc_shm_hdr_t",21,"name")="multi_proc_shm_hdr_t.max_procs" + Set gtmtypes("multi_proc_shm_hdr_t",21,"off")=12052 + Set gtmtypes("multi_proc_shm_hdr_t",21,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",21,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","max_procs")=21 + Set gtmtypes("multi_proc_shm_hdr_t",22,"name")="multi_proc_shm_hdr_t.parmElemSize" + Set gtmtypes("multi_proc_shm_hdr_t",22,"off")=12056 + Set gtmtypes("multi_proc_shm_hdr_t",22,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",22,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parmElemSize")=22 + ; + Set gtmtypes("multi_struct")="struct" + Set gtmtypes("multi_struct",0)=7 + Set gtmtypes("multi_struct","len")=32 + Set gtmtypes("multi_struct",1,"name")="multi_struct.token" + Set gtmtypes("multi_struct",1,"off")=0 + Set gtmtypes("multi_struct",1,"len")=8 + Set gtmtypes("multi_struct",1,"type")="uint64_t" + Set gtmtypfldindx("multi_struct","token")=1 + Set gtmtypes("multi_struct",2,"name")="multi_struct.this_is_broken" + Set gtmtypes("multi_struct",2,"off")=8 + Set gtmtypes("multi_struct",2,"len")=4 + Set gtmtypes("multi_struct",2,"type")="boolean_t" + Set gtmtypfldindx("multi_struct","this_is_broken")=2 + Set gtmtypes("multi_struct",3,"name")="multi_struct.time" + Set gtmtypes("multi_struct",3,"off")=12 + Set gtmtypes("multi_struct",3,"len")=4 + Set gtmtypes("multi_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","time")=3 + Set gtmtypes("multi_struct",4,"name")="multi_struct.partner" + Set gtmtypes("multi_struct",4,"off")=16 + Set gtmtypes("multi_struct",4,"len")=4 + Set gtmtypes("multi_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","partner")=4 + Set gtmtypes("multi_struct",5,"name")="multi_struct.tot_partner" + Set gtmtypes("multi_struct",5,"off")=20 + Set gtmtypes("multi_struct",5,"len")=4 + Set gtmtypes("multi_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","tot_partner")=5 + Set gtmtypes("multi_struct",6,"name")="multi_struct.fence" + Set gtmtypes("multi_struct",6,"off")=24 + Set gtmtypes("multi_struct",6,"len")=4 + Set gtmtypes("multi_struct",6,"type")="int" + Set gtmtypfldindx("multi_struct","fence")=6 + Set gtmtypes("multi_struct",7,"name")="multi_struct.next" + Set gtmtypes("multi_struct",7,"off")=28 + Set gtmtypes("multi_struct",7,"len")=4 + Set gtmtypes("multi_struct",7,"type")="addr" + Set gtmtypfldindx("multi_struct","next")=7 + ; + Set gtmtypes("mur_back_opt_t")="struct" + Set gtmtypes("mur_back_opt_t",0)=4 + Set gtmtypes("mur_back_opt_t","len")=20 + Set gtmtypes("mur_back_opt_t",1,"name")="mur_back_opt_t.jctl" + Set gtmtypes("mur_back_opt_t",1,"off")=0 + Set gtmtypes("mur_back_opt_t",1,"len")=4 + Set gtmtypes("mur_back_opt_t",1,"type")="addr" + Set gtmtypfldindx("mur_back_opt_t","jctl")=1 + Set gtmtypes("mur_back_opt_t",2,"name")="mur_back_opt_t.rec_token_seq" + Set gtmtypes("mur_back_opt_t",2,"off")=4 + Set gtmtypes("mur_back_opt_t",2,"len")=8 + Set gtmtypes("mur_back_opt_t",2,"type")="uint64_t" + Set gtmtypfldindx("mur_back_opt_t","rec_token_seq")=2 + Set gtmtypes("mur_back_opt_t",3,"name")="mur_back_opt_t.first_epoch" + Set gtmtypes("mur_back_opt_t",3,"off")=12 + Set gtmtypes("mur_back_opt_t",3,"len")=4 + Set gtmtypes("mur_back_opt_t",3,"type")="boolean_t" + Set gtmtypfldindx("mur_back_opt_t","first_epoch")=3 + Set gtmtypes("mur_back_opt_t",4,"name")="mur_back_opt_t.status" + Set gtmtypes("mur_back_opt_t",4,"off")=16 + Set gtmtypes("mur_back_opt_t",4,"len")=4 + Set gtmtypes("mur_back_opt_t",4,"type")="unsigned-int" + Set gtmtypfldindx("mur_back_opt_t","status")=4 + ; + Set gtmtypes("mur_buff_desc_t")="struct" + Set gtmtypes("mur_buff_desc_t",0)=7 + Set gtmtypes("mur_buff_desc_t","len")=28 + Set gtmtypes("mur_buff_desc_t",1,"name")="mur_buff_desc_t.base" + Set gtmtypes("mur_buff_desc_t",1,"off")=0 + Set gtmtypes("mur_buff_desc_t",1,"len")=4 + Set gtmtypes("mur_buff_desc_t",1,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","base")=1 + Set gtmtypes("mur_buff_desc_t",2,"name")="mur_buff_desc_t.top" + Set gtmtypes("mur_buff_desc_t",2,"off")=4 + Set gtmtypes("mur_buff_desc_t",2,"len")=4 + Set gtmtypes("mur_buff_desc_t",2,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","top")=2 + Set gtmtypes("mur_buff_desc_t",3,"name")="mur_buff_desc_t.blen" + Set gtmtypes("mur_buff_desc_t",3,"off")=8 + Set gtmtypes("mur_buff_desc_t",3,"len")=4 + Set gtmtypes("mur_buff_desc_t",3,"type")="unsigned-int" + Set gtmtypfldindx("mur_buff_desc_t","blen")=3 + Set gtmtypes("mur_buff_desc_t",4,"name")="mur_buff_desc_t.dskaddr" + Set gtmtypes("mur_buff_desc_t",4,"off")=12 + Set gtmtypes("mur_buff_desc_t",4,"len")=4 + Set gtmtypes("mur_buff_desc_t",4,"type")="unsigned-int" + Set gtmtypfldindx("mur_buff_desc_t","dskaddr")=4 + Set gtmtypes("mur_buff_desc_t",5,"name")="mur_buff_desc_t.read_in_progress" + Set gtmtypes("mur_buff_desc_t",5,"off")=16 + Set gtmtypes("mur_buff_desc_t",5,"len")=4 + Set gtmtypes("mur_buff_desc_t",5,"type")="boolean_t" + Set gtmtypfldindx("mur_buff_desc_t","read_in_progress")=5 + Set gtmtypes("mur_buff_desc_t",6,"name")="mur_buff_desc_t.aiocbp" + Set gtmtypes("mur_buff_desc_t",6,"off")=20 + Set gtmtypes("mur_buff_desc_t",6,"len")=4 + Set gtmtypes("mur_buff_desc_t",6,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","aiocbp")=6 + Set gtmtypes("mur_buff_desc_t",7,"name")="mur_buff_desc_t.rip_channel" + Set gtmtypes("mur_buff_desc_t",7,"off")=24 + Set gtmtypes("mur_buff_desc_t",7,"len")=4 + Set gtmtypes("mur_buff_desc_t",7,"type")="int" + Set gtmtypfldindx("mur_buff_desc_t","rip_channel")=7 + ; + Set gtmtypes("mur_gbls_t")="struct" + Set gtmtypes("mur_gbls_t",0)=75 + Set gtmtypes("mur_gbls_t","len")=452 + Set gtmtypes("mur_gbls_t",1,"name")="mur_gbls_t.repl_standalone" + Set gtmtypes("mur_gbls_t",1,"off")=0 + Set gtmtypes("mur_gbls_t",1,"len")=4 + Set gtmtypes("mur_gbls_t",1,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","repl_standalone")=1 + Set gtmtypes("mur_gbls_t",2,"name")="mur_gbls_t.clean_exit" + Set gtmtypes("mur_gbls_t",2,"off")=4 + Set gtmtypes("mur_gbls_t",2,"len")=4 + Set gtmtypes("mur_gbls_t",2,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","clean_exit")=2 + Set gtmtypes("mur_gbls_t",3,"name")="mur_gbls_t.ok_to_update_db" + Set gtmtypes("mur_gbls_t",3,"off")=8 + Set gtmtypes("mur_gbls_t",3,"len")=4 + Set gtmtypes("mur_gbls_t",3,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","ok_to_update_db")=3 + Set gtmtypes("mur_gbls_t",4,"name")="mur_gbls_t.intrpt_recovery" + Set gtmtypes("mur_gbls_t",4,"off")=12 + Set gtmtypes("mur_gbls_t",4,"len")=4 + Set gtmtypes("mur_gbls_t",4,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","intrpt_recovery")=4 + Set gtmtypes("mur_gbls_t",5,"name")="mur_gbls_t.reg_total" + Set gtmtypes("mur_gbls_t",5,"off")=16 + Set gtmtypes("mur_gbls_t",5,"len")=4 + Set gtmtypes("mur_gbls_t",5,"type")="int" + Set gtmtypfldindx("mur_gbls_t","reg_total")=5 + Set gtmtypes("mur_gbls_t",6,"name")="mur_gbls_t.reg_full_total" + Set gtmtypes("mur_gbls_t",6,"off")=20 + Set gtmtypes("mur_gbls_t",6,"len")=4 + Set gtmtypes("mur_gbls_t",6,"type")="int" + Set gtmtypfldindx("mur_gbls_t","reg_full_total")=6 + Set gtmtypes("mur_gbls_t",7,"name")="mur_gbls_t.regcnt_remaining" + Set gtmtypes("mur_gbls_t",7,"off")=24 + Set gtmtypes("mur_gbls_t",7,"len")=4 + Set gtmtypes("mur_gbls_t",7,"type")="int" + Set gtmtypfldindx("mur_gbls_t","regcnt_remaining")=7 + Set gtmtypes("mur_gbls_t",8,"name")="mur_gbls_t.err_cnt" + Set gtmtypes("mur_gbls_t",8,"off")=28 + Set gtmtypes("mur_gbls_t",8,"len")=4 + Set gtmtypes("mur_gbls_t",8,"type")="int" + Set gtmtypfldindx("mur_gbls_t","err_cnt")=8 + Set gtmtypes("mur_gbls_t",9,"name")="mur_gbls_t.wrn_count" + Set gtmtypes("mur_gbls_t",9,"off")=32 + Set gtmtypes("mur_gbls_t",9,"len")=4 + Set gtmtypes("mur_gbls_t",9,"type")="int" + Set gtmtypfldindx("mur_gbls_t","wrn_count")=9 + Set gtmtypes("mur_gbls_t",10,"name")="mur_gbls_t.broken_cnt" + Set gtmtypes("mur_gbls_t",10,"off")=36 + Set gtmtypes("mur_gbls_t",10,"len")=4 + Set gtmtypes("mur_gbls_t",10,"type")="int" + Set gtmtypfldindx("mur_gbls_t","broken_cnt")=10 + Set gtmtypes("mur_gbls_t",11,"name")="mur_gbls_t.max_extr_record_length" + Set gtmtypes("mur_gbls_t",11,"off")=40 + Set gtmtypes("mur_gbls_t",11,"len")=4 + Set gtmtypes("mur_gbls_t",11,"type")="int" + Set gtmtypfldindx("mur_gbls_t","max_extr_record_length")=11 + Set gtmtypes("mur_gbls_t",12,"name")="mur_gbls_t.resync_seqno" + Set gtmtypes("mur_gbls_t",12,"off")=44 + Set gtmtypes("mur_gbls_t",12,"len")=8 + Set gtmtypes("mur_gbls_t",12,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","resync_seqno")=12 + Set gtmtypes("mur_gbls_t",13,"name")="mur_gbls_t.consist_jnl_seqno" + Set gtmtypes("mur_gbls_t",13,"off")=52 + Set gtmtypes("mur_gbls_t",13,"len")=8 + Set gtmtypes("mur_gbls_t",13,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","consist_jnl_seqno")=13 + Set gtmtypes("mur_gbls_t",14,"name")="mur_gbls_t.losttn_seqno" + Set gtmtypes("mur_gbls_t",14,"off")=60 + Set gtmtypes("mur_gbls_t",14,"len")=8 + Set gtmtypes("mur_gbls_t",14,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","losttn_seqno")=14 + Set gtmtypes("mur_gbls_t",15,"name")="mur_gbls_t.min_broken_seqno" + Set gtmtypes("mur_gbls_t",15,"off")=68 + Set gtmtypes("mur_gbls_t",15,"len")=8 + Set gtmtypes("mur_gbls_t",15,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","min_broken_seqno")=15 + Set gtmtypes("mur_gbls_t",16,"name")="mur_gbls_t.min_broken_time" + Set gtmtypes("mur_gbls_t",16,"off")=76 + Set gtmtypes("mur_gbls_t",16,"len")=4 + Set gtmtypes("mur_gbls_t",16,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","min_broken_time")=16 + Set gtmtypes("mur_gbls_t",17,"name")="mur_gbls_t.token_table" + Set gtmtypes("mur_gbls_t",17,"off")=80 + Set gtmtypes("mur_gbls_t",17,"len")=56 + Set gtmtypes("mur_gbls_t",17,"type")="hash_table_int8" + Set gtmtypfldindx("mur_gbls_t","token_table")=17 + Set gtmtypes("mur_gbls_t",18,"name")="mur_gbls_t.token_table.base" + Set gtmtypes("mur_gbls_t",18,"off")=80 + Set gtmtypes("mur_gbls_t",18,"len")=4 + Set gtmtypes("mur_gbls_t",18,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.base")=18 + Set gtmtypes("mur_gbls_t",19,"name")="mur_gbls_t.token_table.top" + Set gtmtypes("mur_gbls_t",19,"off")=84 + Set gtmtypes("mur_gbls_t",19,"len")=4 + Set gtmtypes("mur_gbls_t",19,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.top")=19 + Set gtmtypes("mur_gbls_t",20,"name")="mur_gbls_t.token_table.size" + Set gtmtypes("mur_gbls_t",20,"off")=88 + Set gtmtypes("mur_gbls_t",20,"len")=4 + Set gtmtypes("mur_gbls_t",20,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.size")=20 + Set gtmtypes("mur_gbls_t",21,"name")="mur_gbls_t.token_table.initial_size" + Set gtmtypes("mur_gbls_t",21,"off")=92 + Set gtmtypes("mur_gbls_t",21,"len")=4 + Set gtmtypes("mur_gbls_t",21,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.initial_size")=21 + Set gtmtypes("mur_gbls_t",22,"name")="mur_gbls_t.token_table.spare_base" + Set gtmtypes("mur_gbls_t",22,"off")=96 + Set gtmtypes("mur_gbls_t",22,"len")=4 + Set gtmtypes("mur_gbls_t",22,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.spare_base")=22 + Set gtmtypes("mur_gbls_t",23,"name")="mur_gbls_t.token_table.spare_base_size" + Set gtmtypes("mur_gbls_t",23,"off")=100 + Set gtmtypes("mur_gbls_t",23,"len")=4 + Set gtmtypes("mur_gbls_t",23,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.spare_base_size")=23 + Set gtmtypes("mur_gbls_t",24,"name")="mur_gbls_t.token_table.dont_compact" + Set gtmtypes("mur_gbls_t",24,"off")=104 + Set gtmtypes("mur_gbls_t",24,"len")=4 + Set gtmtypes("mur_gbls_t",24,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.dont_compact")=24 + Set gtmtypes("mur_gbls_t",25,"name")="mur_gbls_t.token_table.dont_keep_spare_table" + Set gtmtypes("mur_gbls_t",25,"off")=108 + Set gtmtypes("mur_gbls_t",25,"len")=4 + Set gtmtypes("mur_gbls_t",25,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.dont_keep_spare_table")=25 + Set gtmtypes("mur_gbls_t",26,"name")="mur_gbls_t.token_table.defer_base_release" + Set gtmtypes("mur_gbls_t",26,"off")=112 + Set gtmtypes("mur_gbls_t",26,"len")=4 + Set gtmtypes("mur_gbls_t",26,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.defer_base_release")=26 + Set gtmtypes("mur_gbls_t",27,"name")="mur_gbls_t.token_table.count" + Set gtmtypes("mur_gbls_t",27,"off")=116 + Set gtmtypes("mur_gbls_t",27,"len")=4 + Set gtmtypes("mur_gbls_t",27,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.count")=27 + Set gtmtypes("mur_gbls_t",28,"name")="mur_gbls_t.token_table.del_count" + Set gtmtypes("mur_gbls_t",28,"off")=120 + Set gtmtypes("mur_gbls_t",28,"len")=4 + Set gtmtypes("mur_gbls_t",28,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.del_count")=28 + Set gtmtypes("mur_gbls_t",29,"name")="mur_gbls_t.token_table.exp_trigger_size" + Set gtmtypes("mur_gbls_t",29,"off")=124 + Set gtmtypes("mur_gbls_t",29,"len")=4 + Set gtmtypes("mur_gbls_t",29,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.exp_trigger_size")=29 + Set gtmtypes("mur_gbls_t",30,"name")="mur_gbls_t.token_table.cmp_trigger_size" + Set gtmtypes("mur_gbls_t",30,"off")=128 + Set gtmtypes("mur_gbls_t",30,"len")=4 + Set gtmtypes("mur_gbls_t",30,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.cmp_trigger_size")=30 + Set gtmtypes("mur_gbls_t",31,"name")="mur_gbls_t.token_table.entry_passed_thru" + Set gtmtypes("mur_gbls_t",31,"off")=132 + Set gtmtypes("mur_gbls_t",31,"len")=4 + Set gtmtypes("mur_gbls_t",31,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.entry_passed_thru")=31 + Set gtmtypes("mur_gbls_t",32,"name")="mur_gbls_t.forw_token_table" + Set gtmtypes("mur_gbls_t",32,"off")=136 + Set gtmtypes("mur_gbls_t",32,"len")=56 + Set gtmtypes("mur_gbls_t",32,"type")="hash_table_int8" + Set gtmtypfldindx("mur_gbls_t","forw_token_table")=32 + Set gtmtypes("mur_gbls_t",33,"name")="mur_gbls_t.forw_token_table.base" + Set gtmtypes("mur_gbls_t",33,"off")=136 + Set gtmtypes("mur_gbls_t",33,"len")=4 + Set gtmtypes("mur_gbls_t",33,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.base")=33 + Set gtmtypes("mur_gbls_t",34,"name")="mur_gbls_t.forw_token_table.top" + Set gtmtypes("mur_gbls_t",34,"off")=140 + Set gtmtypes("mur_gbls_t",34,"len")=4 + Set gtmtypes("mur_gbls_t",34,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.top")=34 + Set gtmtypes("mur_gbls_t",35,"name")="mur_gbls_t.forw_token_table.size" + Set gtmtypes("mur_gbls_t",35,"off")=144 + Set gtmtypes("mur_gbls_t",35,"len")=4 + Set gtmtypes("mur_gbls_t",35,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.size")=35 + Set gtmtypes("mur_gbls_t",36,"name")="mur_gbls_t.forw_token_table.initial_size" + Set gtmtypes("mur_gbls_t",36,"off")=148 + Set gtmtypes("mur_gbls_t",36,"len")=4 + Set gtmtypes("mur_gbls_t",36,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.initial_size")=36 + Set gtmtypes("mur_gbls_t",37,"name")="mur_gbls_t.forw_token_table.spare_base" + Set gtmtypes("mur_gbls_t",37,"off")=152 + Set gtmtypes("mur_gbls_t",37,"len")=4 + Set gtmtypes("mur_gbls_t",37,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.spare_base")=37 + Set gtmtypes("mur_gbls_t",38,"name")="mur_gbls_t.forw_token_table.spare_base_size" + Set gtmtypes("mur_gbls_t",38,"off")=156 + Set gtmtypes("mur_gbls_t",38,"len")=4 + Set gtmtypes("mur_gbls_t",38,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.spare_base_size")=38 + Set gtmtypes("mur_gbls_t",39,"name")="mur_gbls_t.forw_token_table.dont_compact" + Set gtmtypes("mur_gbls_t",39,"off")=160 + Set gtmtypes("mur_gbls_t",39,"len")=4 + Set gtmtypes("mur_gbls_t",39,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.dont_compact")=39 + Set gtmtypes("mur_gbls_t",40,"name")="mur_gbls_t.forw_token_table.dont_keep_spare_table" + Set gtmtypes("mur_gbls_t",40,"off")=164 + Set gtmtypes("mur_gbls_t",40,"len")=4 + Set gtmtypes("mur_gbls_t",40,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.dont_keep_spare_table")=40 + Set gtmtypes("mur_gbls_t",41,"name")="mur_gbls_t.forw_token_table.defer_base_release" + Set gtmtypes("mur_gbls_t",41,"off")=168 + Set gtmtypes("mur_gbls_t",41,"len")=4 + Set gtmtypes("mur_gbls_t",41,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.defer_base_release")=41 + Set gtmtypes("mur_gbls_t",42,"name")="mur_gbls_t.forw_token_table.count" + Set gtmtypes("mur_gbls_t",42,"off")=172 + Set gtmtypes("mur_gbls_t",42,"len")=4 + Set gtmtypes("mur_gbls_t",42,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.count")=42 + Set gtmtypes("mur_gbls_t",43,"name")="mur_gbls_t.forw_token_table.del_count" + Set gtmtypes("mur_gbls_t",43,"off")=176 + Set gtmtypes("mur_gbls_t",43,"len")=4 + Set gtmtypes("mur_gbls_t",43,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.del_count")=43 + Set gtmtypes("mur_gbls_t",44,"name")="mur_gbls_t.forw_token_table.exp_trigger_size" + Set gtmtypes("mur_gbls_t",44,"off")=180 + Set gtmtypes("mur_gbls_t",44,"len")=4 + Set gtmtypes("mur_gbls_t",44,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.exp_trigger_size")=44 + Set gtmtypes("mur_gbls_t",45,"name")="mur_gbls_t.forw_token_table.cmp_trigger_size" + Set gtmtypes("mur_gbls_t",45,"off")=184 + Set gtmtypes("mur_gbls_t",45,"len")=4 + Set gtmtypes("mur_gbls_t",45,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.cmp_trigger_size")=45 + Set gtmtypes("mur_gbls_t",46,"name")="mur_gbls_t.forw_token_table.entry_passed_thru" + Set gtmtypes("mur_gbls_t",46,"off")=188 + Set gtmtypes("mur_gbls_t",46,"len")=4 + Set gtmtypes("mur_gbls_t",46,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.entry_passed_thru")=46 + Set gtmtypes("mur_gbls_t",47,"name")="mur_gbls_t.multi_list" + Set gtmtypes("mur_gbls_t",47,"off")=192 + Set gtmtypes("mur_gbls_t",47,"len")=4 + Set gtmtypes("mur_gbls_t",47,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","multi_list")=47 + Set gtmtypes("mur_gbls_t",48,"name")="mur_gbls_t.forw_multi_list" + Set gtmtypes("mur_gbls_t",48,"off")=196 + Set gtmtypes("mur_gbls_t",48,"len")=4 + Set gtmtypes("mur_gbls_t",48,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_multi_list")=48 + Set gtmtypes("mur_gbls_t",49,"name")="mur_gbls_t.pini_buddy_list" + Set gtmtypes("mur_gbls_t",49,"off")=200 + Set gtmtypes("mur_gbls_t",49,"len")=4 + Set gtmtypes("mur_gbls_t",49,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","pini_buddy_list")=49 + Set gtmtypes("mur_gbls_t",50,"name")="mur_gbls_t.extr_buff" + Set gtmtypes("mur_gbls_t",50,"off")=204 + Set gtmtypes("mur_gbls_t",50,"len")=4 + Set gtmtypes("mur_gbls_t",50,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","extr_buff")=50 + Set gtmtypes("mur_gbls_t",51,"name")="mur_gbls_t.prc_vec" + Set gtmtypes("mur_gbls_t",51,"off")=208 + Set gtmtypes("mur_gbls_t",51,"len")=4 + Set gtmtypes("mur_gbls_t",51,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","prc_vec")=51 + Set gtmtypes("mur_gbls_t",52,"name")="mur_gbls_t.remote_side" + Set gtmtypes("mur_gbls_t",52,"off")=212 + Set gtmtypes("mur_gbls_t",52,"len")=48 + Set gtmtypes("mur_gbls_t",52,"type")="repl_conn_info_t" + Set gtmtypfldindx("mur_gbls_t","remote_side")=52 + Set gtmtypes("mur_gbls_t",53,"name")="mur_gbls_t.remote_side.proto_ver" + Set gtmtypes("mur_gbls_t",53,"off")=212 + Set gtmtypes("mur_gbls_t",53,"len")=4 + Set gtmtypes("mur_gbls_t",53,"type")="int" + Set gtmtypfldindx("mur_gbls_t","remote_side.proto_ver")=53 + Set gtmtypes("mur_gbls_t",54,"name")="mur_gbls_t.remote_side.jnl_ver" + Set gtmtypes("mur_gbls_t",54,"off")=216 + Set gtmtypes("mur_gbls_t",54,"len")=4 + Set gtmtypes("mur_gbls_t",54,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","remote_side.jnl_ver")=54 + Set gtmtypes("mur_gbls_t",55,"name")="mur_gbls_t.remote_side.is_std_null_coll" + Set gtmtypes("mur_gbls_t",55,"off")=220 + Set gtmtypes("mur_gbls_t",55,"len")=4 + Set gtmtypes("mur_gbls_t",55,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.is_std_null_coll")=55 + Set gtmtypes("mur_gbls_t",56,"name")="mur_gbls_t.remote_side.trigger_supported" + Set gtmtypes("mur_gbls_t",56,"off")=224 + Set gtmtypes("mur_gbls_t",56,"len")=4 + Set gtmtypes("mur_gbls_t",56,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.trigger_supported")=56 + Set gtmtypes("mur_gbls_t",57,"name")="mur_gbls_t.remote_side.cross_endian" + Set gtmtypes("mur_gbls_t",57,"off")=228 + Set gtmtypes("mur_gbls_t",57,"len")=4 + Set gtmtypes("mur_gbls_t",57,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.cross_endian")=57 + Set gtmtypes("mur_gbls_t",58,"name")="mur_gbls_t.remote_side.endianness_known" + Set gtmtypes("mur_gbls_t",58,"off")=232 + Set gtmtypes("mur_gbls_t",58,"len")=4 + Set gtmtypes("mur_gbls_t",58,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.endianness_known")=58 + Set gtmtypes("mur_gbls_t",59,"name")="mur_gbls_t.remote_side.null_subs_xform" + Set gtmtypes("mur_gbls_t",59,"off")=236 + Set gtmtypes("mur_gbls_t",59,"len")=4 + Set gtmtypes("mur_gbls_t",59,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.null_subs_xform")=59 + Set gtmtypes("mur_gbls_t",60,"name")="mur_gbls_t.remote_side.is_supplementary" + Set gtmtypes("mur_gbls_t",60,"off")=240 + Set gtmtypes("mur_gbls_t",60,"len")=4 + Set gtmtypes("mur_gbls_t",60,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.is_supplementary")=60 + Set gtmtypes("mur_gbls_t",61,"name")="mur_gbls_t.remote_side.tls_requested" + Set gtmtypes("mur_gbls_t",61,"off")=244 + Set gtmtypes("mur_gbls_t",61,"len")=4 + Set gtmtypes("mur_gbls_t",61,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.tls_requested")=61 + Set gtmtypes("mur_gbls_t",62,"name")="mur_gbls_t.remote_side.filler_16" + Set gtmtypes("mur_gbls_t",62,"off")=248 + Set gtmtypes("mur_gbls_t",62,"len")=12 + Set gtmtypes("mur_gbls_t",62,"type")="char" + Set gtmtypfldindx("mur_gbls_t","remote_side.filler_16")=62 + Set gtmtypes("mur_gbls_t",63,"name")="mur_gbls_t.was_rootprimary" + Set gtmtypes("mur_gbls_t",63,"off")=260 + Set gtmtypes("mur_gbls_t",63,"len")=4 + Set gtmtypes("mur_gbls_t",63,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","was_rootprimary")=63 + Set gtmtypes("mur_gbls_t",64,"name")="mur_gbls_t.resync_strm_index" + Set gtmtypes("mur_gbls_t",64,"off")=264 + Set gtmtypes("mur_gbls_t",64,"len")=4 + Set gtmtypes("mur_gbls_t",64,"type")="int" + Set gtmtypfldindx("mur_gbls_t","resync_strm_index")=64 + Set gtmtypes("mur_gbls_t",65,"name")="mur_gbls_t.resync_strm_seqno" + Set gtmtypes("mur_gbls_t",65,"off")=268 + Set gtmtypes("mur_gbls_t",65,"len")=128 + Set gtmtypes("mur_gbls_t",65,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","resync_strm_seqno")=65 + Set gtmtypes("mur_gbls_t",65,"dim")=16 + Set gtmtypes("mur_gbls_t",66,"name")="mur_gbls_t.resync_strm_seqno_nonzero" + Set gtmtypes("mur_gbls_t",66,"off")=396 + Set gtmtypes("mur_gbls_t",66,"len")=4 + Set gtmtypes("mur_gbls_t",66,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","resync_strm_seqno_nonzero")=66 + Set gtmtypes("mur_gbls_t",67,"name")="mur_gbls_t.incr_onln_rlbk_cycle" + Set gtmtypes("mur_gbls_t",67,"off")=400 + Set gtmtypes("mur_gbls_t",67,"len")=4 + Set gtmtypes("mur_gbls_t",67,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","incr_onln_rlbk_cycle")=67 + Set gtmtypes("mur_gbls_t",68,"name")="mur_gbls_t.incr_db_rlbkd_cycle" + Set gtmtypes("mur_gbls_t",68,"off")=404 + Set gtmtypes("mur_gbls_t",68,"len")=4 + Set gtmtypes("mur_gbls_t",68,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","incr_db_rlbkd_cycle")=68 + Set gtmtypes("mur_gbls_t",69,"name")="mur_gbls_t.thr_array" + Set gtmtypes("mur_gbls_t",69,"off")=408 + Set gtmtypes("mur_gbls_t",69,"len")=4 + Set gtmtypes("mur_gbls_t",69,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","thr_array")=69 + Set gtmtypes("mur_gbls_t",70,"name")="mur_gbls_t.ret_array" + Set gtmtypes("mur_gbls_t",70,"off")=412 + Set gtmtypes("mur_gbls_t",70,"len")=4 + Set gtmtypes("mur_gbls_t",70,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","ret_array")=70 + Set gtmtypes("mur_gbls_t",71,"name")="mur_gbls_t.mur_state" + Set gtmtypes("mur_gbls_t",71,"off")=416 + Set gtmtypes("mur_gbls_t",71,"len")=4 + Set gtmtypes("mur_gbls_t",71,"type")="int" + Set gtmtypfldindx("mur_gbls_t","mur_state")=71 + Set gtmtypes("mur_gbls_t",72,"name")="mur_gbls_t.adjusted_resolve_time" + Set gtmtypes("mur_gbls_t",72,"off")=420 + Set gtmtypes("mur_gbls_t",72,"len")=4 + Set gtmtypes("mur_gbls_t",72,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","adjusted_resolve_time")=72 + Set gtmtypes("mur_gbls_t",73,"name")="mur_gbls_t.save_losttn_seqno" + Set gtmtypes("mur_gbls_t",73,"off")=424 + Set gtmtypes("mur_gbls_t",73,"len")=8 + Set gtmtypes("mur_gbls_t",73,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","save_losttn_seqno")=73 + Set gtmtypes("mur_gbls_t",74,"name")="mur_gbls_t.save_resync_seqno" + Set gtmtypes("mur_gbls_t",74,"off")=432 + Set gtmtypes("mur_gbls_t",74,"len")=8 + Set gtmtypes("mur_gbls_t",74,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","save_resync_seqno")=74 + Set gtmtypes("mur_gbls_t",75,"name")="mur_gbls_t.filenotcreate_displayed" + Set gtmtypes("mur_gbls_t",75,"off")=440 + Set gtmtypes("mur_gbls_t",75,"len")=12 + Set gtmtypes("mur_gbls_t",75,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","filenotcreate_displayed")=75 + Set gtmtypes("mur_gbls_t",75,"dim")=3 + ; + Set gtmtypes("mur_opt_struct")="struct" + Set gtmtypes("mur_opt_struct",0)=41 + Set gtmtypes("mur_opt_struct","len")=212 + Set gtmtypes("mur_opt_struct",1,"name")="mur_opt_struct.lookback_time" + Set gtmtypes("mur_opt_struct",1,"off")=0 + Set gtmtypes("mur_opt_struct",1,"len")=8 + Set gtmtypes("mur_opt_struct",1,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","lookback_time")=1 + Set gtmtypes("mur_opt_struct",2,"name")="mur_opt_struct.before_time" + Set gtmtypes("mur_opt_struct",2,"off")=8 + Set gtmtypes("mur_opt_struct",2,"len")=8 + Set gtmtypes("mur_opt_struct",2,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","before_time")=2 + Set gtmtypes("mur_opt_struct",3,"name")="mur_opt_struct.since_time" + Set gtmtypes("mur_opt_struct",3,"off")=16 + Set gtmtypes("mur_opt_struct",3,"len")=8 + Set gtmtypes("mur_opt_struct",3,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","since_time")=3 + Set gtmtypes("mur_opt_struct",4,"name")="mur_opt_struct.after_time" + Set gtmtypes("mur_opt_struct",4,"off")=24 + Set gtmtypes("mur_opt_struct",4,"len")=8 + Set gtmtypes("mur_opt_struct",4,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","after_time")=4 + Set gtmtypes("mur_opt_struct",5,"name")="mur_opt_struct.fences" + Set gtmtypes("mur_opt_struct",5,"off")=32 + Set gtmtypes("mur_opt_struct",5,"len")=4 + Set gtmtypes("mur_opt_struct",5,"type")="int" + Set gtmtypfldindx("mur_opt_struct","fences")=5 + Set gtmtypes("mur_opt_struct",6,"name")="mur_opt_struct.error_limit" + Set gtmtypes("mur_opt_struct",6,"off")=36 + Set gtmtypes("mur_opt_struct",6,"len")=4 + Set gtmtypes("mur_opt_struct",6,"type")="int" + Set gtmtypfldindx("mur_opt_struct","error_limit")=6 + Set gtmtypes("mur_opt_struct",7,"name")="mur_opt_struct.fetchresync_port" + Set gtmtypes("mur_opt_struct",7,"off")=40 + Set gtmtypes("mur_opt_struct",7,"len")=4 + Set gtmtypes("mur_opt_struct",7,"type")="int" + Set gtmtypfldindx("mur_opt_struct","fetchresync_port")=7 + Set gtmtypes("mur_opt_struct",8,"name")="mur_opt_struct.show" + Set gtmtypes("mur_opt_struct",8,"off")=44 + Set gtmtypes("mur_opt_struct",8,"len")=4 + Set gtmtypes("mur_opt_struct",8,"type")="int" + Set gtmtypfldindx("mur_opt_struct","show")=8 + Set gtmtypes("mur_opt_struct",9,"name")="mur_opt_struct.lookback_opers" + Set gtmtypes("mur_opt_struct",9,"off")=48 + Set gtmtypes("mur_opt_struct",9,"len")=4 + Set gtmtypes("mur_opt_struct",9,"type")="int" + Set gtmtypfldindx("mur_opt_struct","lookback_opers")=9 + Set gtmtypes("mur_opt_struct",10,"name")="mur_opt_struct.forward" + Set gtmtypes("mur_opt_struct",10,"off")=52 + Set gtmtypes("mur_opt_struct",10,"len")=4 + Set gtmtypes("mur_opt_struct",10,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","forward")=10 + Set gtmtypes("mur_opt_struct",11,"name")="mur_opt_struct.update" + Set gtmtypes("mur_opt_struct",11,"off")=56 + Set gtmtypes("mur_opt_struct",11,"len")=4 + Set gtmtypes("mur_opt_struct",11,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","update")=11 + Set gtmtypes("mur_opt_struct",12,"name")="mur_opt_struct.rollback" + Set gtmtypes("mur_opt_struct",12,"off")=60 + Set gtmtypes("mur_opt_struct",12,"len")=4 + Set gtmtypes("mur_opt_struct",12,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","rollback")=12 + Set gtmtypes("mur_opt_struct",13,"name")="mur_opt_struct.rollback_losttnonly" + Set gtmtypes("mur_opt_struct",13,"off")=64 + Set gtmtypes("mur_opt_struct",13,"len")=4 + Set gtmtypes("mur_opt_struct",13,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","rollback_losttnonly")=13 + Set gtmtypes("mur_opt_struct",14,"name")="mur_opt_struct.verify" + Set gtmtypes("mur_opt_struct",14,"off")=68 + Set gtmtypes("mur_opt_struct",14,"len")=4 + Set gtmtypes("mur_opt_struct",14,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verify")=14 + Set gtmtypes("mur_opt_struct",15,"name")="mur_opt_struct.verify_specified" + Set gtmtypes("mur_opt_struct",15,"off")=72 + Set gtmtypes("mur_opt_struct",15,"len")=4 + Set gtmtypes("mur_opt_struct",15,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verify_specified")=15 + Set gtmtypes("mur_opt_struct",16,"name")="mur_opt_struct.before_time_specified" + Set gtmtypes("mur_opt_struct",16,"off")=76 + Set gtmtypes("mur_opt_struct",16,"len")=4 + Set gtmtypes("mur_opt_struct",16,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","before_time_specified")=16 + Set gtmtypes("mur_opt_struct",17,"name")="mur_opt_struct.since_time_specified" + Set gtmtypes("mur_opt_struct",17,"off")=80 + Set gtmtypes("mur_opt_struct",17,"len")=4 + Set gtmtypes("mur_opt_struct",17,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","since_time_specified")=17 + Set gtmtypes("mur_opt_struct",18,"name")="mur_opt_struct.resync_specified" + Set gtmtypes("mur_opt_struct",18,"off")=84 + Set gtmtypes("mur_opt_struct",18,"len")=4 + Set gtmtypes("mur_opt_struct",18,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","resync_specified")=18 + Set gtmtypes("mur_opt_struct",19,"name")="mur_opt_struct.lookback_time_specified" + Set gtmtypes("mur_opt_struct",19,"off")=88 + Set gtmtypes("mur_opt_struct",19,"len")=4 + Set gtmtypes("mur_opt_struct",19,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","lookback_time_specified")=19 + Set gtmtypes("mur_opt_struct",20,"name")="mur_opt_struct.lookback_opers_specified" + Set gtmtypes("mur_opt_struct",20,"off")=92 + Set gtmtypes("mur_opt_struct",20,"len")=4 + Set gtmtypes("mur_opt_struct",20,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","lookback_opers_specified")=20 + Set gtmtypes("mur_opt_struct",21,"name")="mur_opt_struct.interactive" + Set gtmtypes("mur_opt_struct",21,"off")=96 + Set gtmtypes("mur_opt_struct",21,"len")=4 + Set gtmtypes("mur_opt_struct",21,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","interactive")=21 + Set gtmtypes("mur_opt_struct",22,"name")="mur_opt_struct.selection" + Set gtmtypes("mur_opt_struct",22,"off")=100 + Set gtmtypes("mur_opt_struct",22,"len")=4 + Set gtmtypes("mur_opt_struct",22,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","selection")=22 + Set gtmtypes("mur_opt_struct",23,"name")="mur_opt_struct.apply_after_image" + Set gtmtypes("mur_opt_struct",23,"off")=104 + Set gtmtypes("mur_opt_struct",23,"len")=4 + Set gtmtypes("mur_opt_struct",23,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","apply_after_image")=23 + Set gtmtypes("mur_opt_struct",24,"name")="mur_opt_struct.chain" + Set gtmtypes("mur_opt_struct",24,"off")=108 + Set gtmtypes("mur_opt_struct",24,"len")=4 + Set gtmtypes("mur_opt_struct",24,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","chain")=24 + Set gtmtypes("mur_opt_struct",25,"name")="mur_opt_struct.notncheck" + Set gtmtypes("mur_opt_struct",25,"off")=112 + Set gtmtypes("mur_opt_struct",25,"len")=4 + Set gtmtypes("mur_opt_struct",25,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","notncheck")=25 + Set gtmtypes("mur_opt_struct",26,"name")="mur_opt_struct.verbose" + Set gtmtypes("mur_opt_struct",26,"off")=116 + Set gtmtypes("mur_opt_struct",26,"len")=4 + Set gtmtypes("mur_opt_struct",26,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verbose")=26 + Set gtmtypes("mur_opt_struct",27,"name")="mur_opt_struct.log" + Set gtmtypes("mur_opt_struct",27,"off")=120 + Set gtmtypes("mur_opt_struct",27,"len")=4 + Set gtmtypes("mur_opt_struct",27,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","log")=27 + Set gtmtypes("mur_opt_struct",28,"name")="mur_opt_struct.detail" + Set gtmtypes("mur_opt_struct",28,"off")=124 + Set gtmtypes("mur_opt_struct",28,"len")=4 + Set gtmtypes("mur_opt_struct",28,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","detail")=28 + Set gtmtypes("mur_opt_struct",29,"name")="mur_opt_struct.extract_full" + Set gtmtypes("mur_opt_struct",29,"off")=128 + Set gtmtypes("mur_opt_struct",29,"len")=4 + Set gtmtypes("mur_opt_struct",29,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extract_full")=29 + Set gtmtypes("mur_opt_struct",30,"name")="mur_opt_struct.show_head_only" + Set gtmtypes("mur_opt_struct",30,"off")=132 + Set gtmtypes("mur_opt_struct",30,"len")=4 + Set gtmtypes("mur_opt_struct",30,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","show_head_only")=30 + Set gtmtypes("mur_opt_struct",31,"name")="mur_opt_struct.extr" + Set gtmtypes("mur_opt_struct",31,"off")=136 + Set gtmtypes("mur_opt_struct",31,"len")=12 + Set gtmtypes("mur_opt_struct",31,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extr")=31 + Set gtmtypes("mur_opt_struct",31,"dim")=3 + Set gtmtypes("mur_opt_struct",32,"name")="mur_opt_struct.transaction" + Set gtmtypes("mur_opt_struct",32,"off")=148 + Set gtmtypes("mur_opt_struct",32,"len")=1 + Set gtmtypes("mur_opt_struct",32,"type")="char" + Set gtmtypfldindx("mur_opt_struct","transaction")=32 + Set gtmtypes("mur_opt_struct",33,"name")="mur_opt_struct.redirect" + Set gtmtypes("mur_opt_struct",33,"off")=152 + Set gtmtypes("mur_opt_struct",33,"len")=4 + Set gtmtypes("mur_opt_struct",33,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","redirect")=33 + Set gtmtypes("mur_opt_struct",34,"name")="mur_opt_struct.user" + Set gtmtypes("mur_opt_struct",34,"off")=156 + Set gtmtypes("mur_opt_struct",34,"len")=4 + Set gtmtypes("mur_opt_struct",34,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","user")=34 + Set gtmtypes("mur_opt_struct",35,"name")="mur_opt_struct.database" + Set gtmtypes("mur_opt_struct",35,"off")=160 + Set gtmtypes("mur_opt_struct",35,"len")=4 + Set gtmtypes("mur_opt_struct",35,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","database")=35 + Set gtmtypes("mur_opt_struct",36,"name")="mur_opt_struct.global" + Set gtmtypes("mur_opt_struct",36,"off")=164 + Set gtmtypes("mur_opt_struct",36,"len")=4 + Set gtmtypes("mur_opt_struct",36,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","global")=36 + Set gtmtypes("mur_opt_struct",37,"name")="mur_opt_struct.process" + Set gtmtypes("mur_opt_struct",37,"off")=168 + Set gtmtypes("mur_opt_struct",37,"len")=4 + Set gtmtypes("mur_opt_struct",37,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","process")=37 + Set gtmtypes("mur_opt_struct",38,"name")="mur_opt_struct.id" + Set gtmtypes("mur_opt_struct",38,"off")=172 + Set gtmtypes("mur_opt_struct",38,"len")=4 + Set gtmtypes("mur_opt_struct",38,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","id")=38 + Set gtmtypes("mur_opt_struct",39,"name")="mur_opt_struct.extr_fn" + Set gtmtypes("mur_opt_struct",39,"off")=176 + Set gtmtypes("mur_opt_struct",39,"len")=12 + Set gtmtypes("mur_opt_struct",39,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","extr_fn")=39 + Set gtmtypes("mur_opt_struct",39,"dim")=3 + Set gtmtypes("mur_opt_struct",40,"name")="mur_opt_struct.extr_fn_len" + Set gtmtypes("mur_opt_struct",40,"off")=188 + Set gtmtypes("mur_opt_struct",40,"len")=12 + Set gtmtypes("mur_opt_struct",40,"type")="int" + Set gtmtypfldindx("mur_opt_struct","extr_fn_len")=40 + Set gtmtypes("mur_opt_struct",40,"dim")=3 + Set gtmtypes("mur_opt_struct",41,"name")="mur_opt_struct.extr_fn_is_stdout" + Set gtmtypes("mur_opt_struct",41,"off")=200 + Set gtmtypes("mur_opt_struct",41,"len")=12 + Set gtmtypes("mur_opt_struct",41,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extr_fn_is_stdout")=41 + Set gtmtypes("mur_opt_struct",41,"dim")=3 + ; + Set gtmtypes("mur_read_desc_t")="struct" + Set gtmtypes("mur_read_desc_t",0)=33 + Set gtmtypes("mur_read_desc_t","len")=148 + Set gtmtypes("mur_read_desc_t",1,"name")="mur_read_desc_t.blocksize" + Set gtmtypes("mur_read_desc_t",1,"off")=0 + Set gtmtypes("mur_read_desc_t",1,"len")=4 + Set gtmtypes("mur_read_desc_t",1,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","blocksize")=1 + Set gtmtypes("mur_read_desc_t",2,"name")="mur_read_desc_t.alloc_base" + Set gtmtypes("mur_read_desc_t",2,"off")=4 + Set gtmtypes("mur_read_desc_t",2,"len")=4 + Set gtmtypes("mur_read_desc_t",2,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","alloc_base")=2 + Set gtmtypes("mur_read_desc_t",3,"name")="mur_read_desc_t.alloc_len" + Set gtmtypes("mur_read_desc_t",3,"off")=8 + Set gtmtypes("mur_read_desc_t",3,"len")=4 + Set gtmtypes("mur_read_desc_t",3,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","alloc_len")=3 + Set gtmtypes("mur_read_desc_t",4,"name")="mur_read_desc_t.random_buff" + Set gtmtypes("mur_read_desc_t",4,"off")=12 + Set gtmtypes("mur_read_desc_t",4,"len")=28 + Set gtmtypes("mur_read_desc_t",4,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","random_buff")=4 + Set gtmtypes("mur_read_desc_t",5,"name")="mur_read_desc_t.random_buff.base" + Set gtmtypes("mur_read_desc_t",5,"off")=12 + Set gtmtypes("mur_read_desc_t",5,"len")=4 + Set gtmtypes("mur_read_desc_t",5,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.base")=5 + Set gtmtypes("mur_read_desc_t",6,"name")="mur_read_desc_t.random_buff.top" + Set gtmtypes("mur_read_desc_t",6,"off")=16 + Set gtmtypes("mur_read_desc_t",6,"len")=4 + Set gtmtypes("mur_read_desc_t",6,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.top")=6 + Set gtmtypes("mur_read_desc_t",7,"name")="mur_read_desc_t.random_buff.blen" + Set gtmtypes("mur_read_desc_t",7,"off")=20 + Set gtmtypes("mur_read_desc_t",7,"len")=4 + Set gtmtypes("mur_read_desc_t",7,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.blen")=7 + Set gtmtypes("mur_read_desc_t",8,"name")="mur_read_desc_t.random_buff.dskaddr" + Set gtmtypes("mur_read_desc_t",8,"off")=24 + Set gtmtypes("mur_read_desc_t",8,"len")=4 + Set gtmtypes("mur_read_desc_t",8,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.dskaddr")=8 + Set gtmtypes("mur_read_desc_t",9,"name")="mur_read_desc_t.random_buff.read_in_progress" + Set gtmtypes("mur_read_desc_t",9,"off")=28 + Set gtmtypes("mur_read_desc_t",9,"len")=4 + Set gtmtypes("mur_read_desc_t",9,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","random_buff.read_in_progress")=9 + Set gtmtypes("mur_read_desc_t",10,"name")="mur_read_desc_t.random_buff.aiocbp" + Set gtmtypes("mur_read_desc_t",10,"off")=32 + Set gtmtypes("mur_read_desc_t",10,"len")=4 + Set gtmtypes("mur_read_desc_t",10,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.aiocbp")=10 + Set gtmtypes("mur_read_desc_t",11,"name")="mur_read_desc_t.random_buff.rip_channel" + Set gtmtypes("mur_read_desc_t",11,"off")=36 + Set gtmtypes("mur_read_desc_t",11,"len")=4 + Set gtmtypes("mur_read_desc_t",11,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.rip_channel")=11 + Set gtmtypes("mur_read_desc_t",12,"name")="mur_read_desc_t.aux_buff1" + Set gtmtypes("mur_read_desc_t",12,"off")=40 + Set gtmtypes("mur_read_desc_t",12,"len")=4 + Set gtmtypes("mur_read_desc_t",12,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff1")=12 + Set gtmtypes("mur_read_desc_t",13,"name")="mur_read_desc_t.seq_buff" + Set gtmtypes("mur_read_desc_t",13,"off")=44 + Set gtmtypes("mur_read_desc_t",13,"len")=56 + Set gtmtypes("mur_read_desc_t",13,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","seq_buff")=13 + Set gtmtypes("mur_read_desc_t",13,"dim")=2 + Set gtmtypes("mur_read_desc_t",14,"name")="mur_read_desc_t.seq_buff[0].base" + Set gtmtypes("mur_read_desc_t",14,"off")=44 + Set gtmtypes("mur_read_desc_t",14,"len")=4 + Set gtmtypes("mur_read_desc_t",14,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].base")=14 + Set gtmtypes("mur_read_desc_t",15,"name")="mur_read_desc_t.seq_buff[0].top" + Set gtmtypes("mur_read_desc_t",15,"off")=48 + Set gtmtypes("mur_read_desc_t",15,"len")=4 + Set gtmtypes("mur_read_desc_t",15,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].top")=15 + Set gtmtypes("mur_read_desc_t",16,"name")="mur_read_desc_t.seq_buff[0].blen" + Set gtmtypes("mur_read_desc_t",16,"off")=52 + Set gtmtypes("mur_read_desc_t",16,"len")=4 + Set gtmtypes("mur_read_desc_t",16,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].blen")=16 + Set gtmtypes("mur_read_desc_t",17,"name")="mur_read_desc_t.seq_buff[0].dskaddr" + Set gtmtypes("mur_read_desc_t",17,"off")=56 + Set gtmtypes("mur_read_desc_t",17,"len")=4 + Set gtmtypes("mur_read_desc_t",17,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].dskaddr")=17 + Set gtmtypes("mur_read_desc_t",18,"name")="mur_read_desc_t.seq_buff[0].read_in_progress" + Set gtmtypes("mur_read_desc_t",18,"off")=60 + Set gtmtypes("mur_read_desc_t",18,"len")=4 + Set gtmtypes("mur_read_desc_t",18,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].read_in_progress")=18 + Set gtmtypes("mur_read_desc_t",19,"name")="mur_read_desc_t.seq_buff[0].aiocbp" + Set gtmtypes("mur_read_desc_t",19,"off")=64 + Set gtmtypes("mur_read_desc_t",19,"len")=4 + Set gtmtypes("mur_read_desc_t",19,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].aiocbp")=19 + Set gtmtypes("mur_read_desc_t",20,"name")="mur_read_desc_t.seq_buff[0].rip_channel" + Set gtmtypes("mur_read_desc_t",20,"off")=68 + Set gtmtypes("mur_read_desc_t",20,"len")=4 + Set gtmtypes("mur_read_desc_t",20,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].rip_channel")=20 + Set gtmtypes("mur_read_desc_t",21,"name")="mur_read_desc_t.aux_buff2" + Set gtmtypes("mur_read_desc_t",21,"off")=100 + Set gtmtypes("mur_read_desc_t",21,"len")=28 + Set gtmtypes("mur_read_desc_t",21,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2")=21 + Set gtmtypes("mur_read_desc_t",22,"name")="mur_read_desc_t.aux_buff2.base" + Set gtmtypes("mur_read_desc_t",22,"off")=100 + Set gtmtypes("mur_read_desc_t",22,"len")=4 + Set gtmtypes("mur_read_desc_t",22,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.base")=22 + Set gtmtypes("mur_read_desc_t",23,"name")="mur_read_desc_t.aux_buff2.top" + Set gtmtypes("mur_read_desc_t",23,"off")=104 + Set gtmtypes("mur_read_desc_t",23,"len")=4 + Set gtmtypes("mur_read_desc_t",23,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.top")=23 + Set gtmtypes("mur_read_desc_t",24,"name")="mur_read_desc_t.aux_buff2.blen" + Set gtmtypes("mur_read_desc_t",24,"off")=108 + Set gtmtypes("mur_read_desc_t",24,"len")=4 + Set gtmtypes("mur_read_desc_t",24,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.blen")=24 + Set gtmtypes("mur_read_desc_t",25,"name")="mur_read_desc_t.aux_buff2.dskaddr" + Set gtmtypes("mur_read_desc_t",25,"off")=112 + Set gtmtypes("mur_read_desc_t",25,"len")=4 + Set gtmtypes("mur_read_desc_t",25,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.dskaddr")=25 + Set gtmtypes("mur_read_desc_t",26,"name")="mur_read_desc_t.aux_buff2.read_in_progress" + Set gtmtypes("mur_read_desc_t",26,"off")=116 + Set gtmtypes("mur_read_desc_t",26,"len")=4 + Set gtmtypes("mur_read_desc_t",26,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.read_in_progress")=26 + Set gtmtypes("mur_read_desc_t",27,"name")="mur_read_desc_t.aux_buff2.aiocbp" + Set gtmtypes("mur_read_desc_t",27,"off")=120 + Set gtmtypes("mur_read_desc_t",27,"len")=4 + Set gtmtypes("mur_read_desc_t",27,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.aiocbp")=27 + Set gtmtypes("mur_read_desc_t",28,"name")="mur_read_desc_t.aux_buff2.rip_channel" + Set gtmtypes("mur_read_desc_t",28,"off")=124 + Set gtmtypes("mur_read_desc_t",28,"len")=4 + Set gtmtypes("mur_read_desc_t",28,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.rip_channel")=28 + Set gtmtypes("mur_read_desc_t",29,"name")="mur_read_desc_t.buff_index" + Set gtmtypes("mur_read_desc_t",29,"off")=128 + Set gtmtypes("mur_read_desc_t",29,"len")=4 + Set gtmtypes("mur_read_desc_t",29,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","buff_index")=29 + Set gtmtypes("mur_read_desc_t",30,"name")="mur_read_desc_t.cur_buff" + Set gtmtypes("mur_read_desc_t",30,"off")=132 + Set gtmtypes("mur_read_desc_t",30,"len")=4 + Set gtmtypes("mur_read_desc_t",30,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","cur_buff")=30 + Set gtmtypes("mur_read_desc_t",31,"name")="mur_read_desc_t.sec_buff" + Set gtmtypes("mur_read_desc_t",31,"off")=136 + Set gtmtypes("mur_read_desc_t",31,"len")=4 + Set gtmtypes("mur_read_desc_t",31,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","sec_buff")=31 + Set gtmtypes("mur_read_desc_t",32,"name")="mur_read_desc_t.jnlrec" + Set gtmtypes("mur_read_desc_t",32,"off")=140 + Set gtmtypes("mur_read_desc_t",32,"len")=4 + Set gtmtypes("mur_read_desc_t",32,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","jnlrec")=32 + Set gtmtypes("mur_read_desc_t",33,"name")="mur_read_desc_t.jreclen" + Set gtmtypes("mur_read_desc_t",33,"off")=144 + Set gtmtypes("mur_read_desc_t",33,"len")=4 + Set gtmtypes("mur_read_desc_t",33,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","jreclen")=33 + ; + Set gtmtypes("mur_shm_hdr_t")="struct" + Set gtmtypes("mur_shm_hdr_t",0)=15 + Set gtmtypes("mur_shm_hdr_t","len")=808 + Set gtmtypes("mur_shm_hdr_t",1,"name")="mur_shm_hdr_t.shm_rctl_start" + Set gtmtypes("mur_shm_hdr_t",1,"off")=0 + Set gtmtypes("mur_shm_hdr_t",1,"len")=4 + Set gtmtypes("mur_shm_hdr_t",1,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","shm_rctl_start")=1 + Set gtmtypes("mur_shm_hdr_t",2,"name")="mur_shm_hdr_t.hash_bucket_start" + Set gtmtypes("mur_shm_hdr_t",2,"off")=4 + Set gtmtypes("mur_shm_hdr_t",2,"len")=4 + Set gtmtypes("mur_shm_hdr_t",2,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","hash_bucket_start")=2 + Set gtmtypes("mur_shm_hdr_t",3,"name")="mur_shm_hdr_t.shm_forw_multi_start" + Set gtmtypes("mur_shm_hdr_t",3,"off")=8 + Set gtmtypes("mur_shm_hdr_t",3,"len")=4 + Set gtmtypes("mur_shm_hdr_t",3,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","shm_forw_multi_start")=3 + Set gtmtypes("mur_shm_hdr_t",4,"name")="mur_shm_hdr_t.forw_multi_free" + Set gtmtypes("mur_shm_hdr_t",4,"off")=12 + Set gtmtypes("mur_shm_hdr_t",4,"len")=8 + Set gtmtypes("mur_shm_hdr_t",4,"type")="que_ent" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free")=4 + Set gtmtypes("mur_shm_hdr_t",5,"name")="mur_shm_hdr_t.forw_multi_free.fl" + Set gtmtypes("mur_shm_hdr_t",5,"off")=12 + Set gtmtypes("mur_shm_hdr_t",5,"len")=4 + Set gtmtypes("mur_shm_hdr_t",5,"type")="intptr_t" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free.fl")=5 + Set gtmtypes("mur_shm_hdr_t",6,"name")="mur_shm_hdr_t.forw_multi_free.bl" + Set gtmtypes("mur_shm_hdr_t",6,"off")=16 + Set gtmtypes("mur_shm_hdr_t",6,"len")=4 + Set gtmtypes("mur_shm_hdr_t",6,"type")="intptr_t" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free.bl")=6 + Set gtmtypes("mur_shm_hdr_t",7,"name")="mur_shm_hdr_t.mur_latch" + Set gtmtypes("mur_shm_hdr_t",7,"off")=20 + Set gtmtypes("mur_shm_hdr_t",7,"len")=8 + Set gtmtypes("mur_shm_hdr_t",7,"type")="global_latch_t" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch")=7 + Set gtmtypes("mur_shm_hdr_t",8,"name")="mur_shm_hdr_t.mur_latch.u" + Set gtmtypes("mur_shm_hdr_t",8,"off")=20 + Set gtmtypes("mur_shm_hdr_t",8,"len")=8 + Set gtmtypes("mur_shm_hdr_t",8,"type")="union" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u")=8 + Set gtmtypes("mur_shm_hdr_t",9,"name")="mur_shm_hdr_t.mur_latch.u.pid_imgcnt" + Set gtmtypes("mur_shm_hdr_t",9,"off")=20 + Set gtmtypes("mur_shm_hdr_t",9,"len")=8 + Set gtmtypes("mur_shm_hdr_t",9,"type")="uint64_t" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.pid_imgcnt")=9 + Set gtmtypes("mur_shm_hdr_t",10,"name")="mur_shm_hdr_t.mur_latch.u.parts" + Set gtmtypes("mur_shm_hdr_t",10,"off")=20 + Set gtmtypes("mur_shm_hdr_t",10,"len")=8 + Set gtmtypes("mur_shm_hdr_t",10,"type")="struct" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts")=10 + Set gtmtypes("mur_shm_hdr_t",11,"name")="mur_shm_hdr_t.mur_latch.u.parts.latch_pid" + Set gtmtypes("mur_shm_hdr_t",11,"off")=20 + Set gtmtypes("mur_shm_hdr_t",11,"len")=4 + Set gtmtypes("mur_shm_hdr_t",11,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts.latch_pid")=11 + Set gtmtypes("mur_shm_hdr_t",12,"name")="mur_shm_hdr_t.mur_latch.u.parts.latch_word" + Set gtmtypes("mur_shm_hdr_t",12,"off")=24 + Set gtmtypes("mur_shm_hdr_t",12,"len")=4 + Set gtmtypes("mur_shm_hdr_t",12,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts.latch_word")=12 + Set gtmtypes("mur_shm_hdr_t",13,"name")="mur_shm_hdr_t.extr_fn_len" + Set gtmtypes("mur_shm_hdr_t",13,"off")=28 + Set gtmtypes("mur_shm_hdr_t",13,"len")=12 + Set gtmtypes("mur_shm_hdr_t",13,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn_len")=13 + Set gtmtypes("mur_shm_hdr_t",13,"dim")=3 + Set gtmtypes("mur_shm_hdr_t",14,"name")="mur_shm_hdr_t.extr_fn" + Set gtmtypes("mur_shm_hdr_t",14,"off")=40 + Set gtmtypes("mur_shm_hdr_t",14,"len")=768 + Set gtmtypes("mur_shm_hdr_t",14,"type")="extr_fn_t" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn")=14 + Set gtmtypes("mur_shm_hdr_t",14,"dim")=3 + Set gtmtypes("mur_shm_hdr_t",15,"name")="mur_shm_hdr_t.extr_fn[0].fn" + Set gtmtypes("mur_shm_hdr_t",15,"off")=40 + Set gtmtypes("mur_shm_hdr_t",15,"len")=256 + Set gtmtypes("mur_shm_hdr_t",15,"type")="char" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn[0].fn")=15 + ; + Set gtmtypes("mutex_que_entry")="struct" + Set gtmtypes("mutex_que_entry",0)=8 + Set gtmtypes("mutex_que_entry","len")=40 + Set gtmtypes("mutex_que_entry",1,"name")="mutex_que_entry.que" + Set gtmtypes("mutex_que_entry",1,"off")=0 + Set gtmtypes("mutex_que_entry",1,"len")=8 + Set gtmtypes("mutex_que_entry",1,"type")="struct" + Set gtmtypfldindx("mutex_que_entry","que")=1 + Set gtmtypes("mutex_que_entry",2,"name")="mutex_que_entry.que.fl" + Set gtmtypes("mutex_que_entry",2,"off")=0 + Set gtmtypes("mutex_que_entry",2,"len")=4 + Set gtmtypes("mutex_que_entry",2,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_entry","que.fl")=2 + Set gtmtypes("mutex_que_entry",3,"name")="mutex_que_entry.que.bl" + Set gtmtypes("mutex_que_entry",3,"off")=4 + Set gtmtypes("mutex_que_entry",3,"len")=4 + Set gtmtypes("mutex_que_entry",3,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_entry","que.bl")=3 + Set gtmtypes("mutex_que_entry",4,"name")="mutex_que_entry.pid" + Set gtmtypes("mutex_que_entry",4,"off")=8 + Set gtmtypes("mutex_que_entry",4,"len")=4 + Set gtmtypes("mutex_que_entry",4,"type")="int" + Set gtmtypfldindx("mutex_que_entry","pid")=4 + Set gtmtypes("mutex_que_entry",5,"name")="mutex_que_entry.super_crit" + Set gtmtypes("mutex_que_entry",5,"off")=12 + Set gtmtypes("mutex_que_entry",5,"len")=4 + Set gtmtypes("mutex_que_entry",5,"type")="addr" + Set gtmtypfldindx("mutex_que_entry","super_crit")=5 + Set gtmtypes("mutex_que_entry",6,"name")="mutex_que_entry.mutex_wake_instance" + Set gtmtypes("mutex_que_entry",6,"off")=16 + Set gtmtypes("mutex_que_entry",6,"len")=4 + Set gtmtypes("mutex_que_entry",6,"type")="int" + Set gtmtypfldindx("mutex_que_entry","mutex_wake_instance")=6 + Set gtmtypes("mutex_que_entry",7,"name")="mutex_que_entry.filler1" + Set gtmtypes("mutex_que_entry",7,"off")=20 + Set gtmtypes("mutex_que_entry",7,"len")=4 + Set gtmtypes("mutex_que_entry",7,"type")="int" + Set gtmtypfldindx("mutex_que_entry","filler1")=7 + Set gtmtypes("mutex_que_entry",8,"name")="mutex_que_entry.mutex_wake_msem" + Set gtmtypes("mutex_que_entry",8,"off")=24 + Set gtmtypes("mutex_que_entry",8,"len")=16 + Set gtmtypes("mutex_que_entry",8,"type")="sem_t" + Set gtmtypfldindx("mutex_que_entry","mutex_wake_msem")=8 + ; + Set gtmtypes("mutex_que_head")="struct" + Set gtmtypes("mutex_que_head",0)=9 + Set gtmtypes("mutex_que_head","len")=16 + Set gtmtypes("mutex_que_head",1,"name")="mutex_que_head.que" + Set gtmtypes("mutex_que_head",1,"off")=0 + Set gtmtypes("mutex_que_head",1,"len")=8 + Set gtmtypes("mutex_que_head",1,"type")="struct" + Set gtmtypfldindx("mutex_que_head","que")=1 + Set gtmtypes("mutex_que_head",2,"name")="mutex_que_head.que.fl" + Set gtmtypes("mutex_que_head",2,"off")=0 + Set gtmtypes("mutex_que_head",2,"len")=4 + Set gtmtypes("mutex_que_head",2,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_head","que.fl")=2 + Set gtmtypes("mutex_que_head",3,"name")="mutex_que_head.que.bl" + Set gtmtypes("mutex_que_head",3,"off")=4 + Set gtmtypes("mutex_que_head",3,"len")=4 + Set gtmtypes("mutex_que_head",3,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_head","que.bl")=3 + Set gtmtypes("mutex_que_head",4,"name")="mutex_que_head.latch" + Set gtmtypes("mutex_que_head",4,"off")=8 + Set gtmtypes("mutex_que_head",4,"len")=8 + Set gtmtypes("mutex_que_head",4,"type")="global_latch_t" + Set gtmtypfldindx("mutex_que_head","latch")=4 + Set gtmtypes("mutex_que_head",5,"name")="mutex_que_head.latch.u" + Set gtmtypes("mutex_que_head",5,"off")=8 + Set gtmtypes("mutex_que_head",5,"len")=8 + Set gtmtypes("mutex_que_head",5,"type")="union" + Set gtmtypfldindx("mutex_que_head","latch.u")=5 + Set gtmtypes("mutex_que_head",6,"name")="mutex_que_head.latch.u.pid_imgcnt" + Set gtmtypes("mutex_que_head",6,"off")=8 + Set gtmtypes("mutex_que_head",6,"len")=8 + Set gtmtypes("mutex_que_head",6,"type")="uint64_t" + Set gtmtypfldindx("mutex_que_head","latch.u.pid_imgcnt")=6 + Set gtmtypes("mutex_que_head",7,"name")="mutex_que_head.latch.u.parts" + Set gtmtypes("mutex_que_head",7,"off")=8 + Set gtmtypes("mutex_que_head",7,"len")=8 + Set gtmtypes("mutex_que_head",7,"type")="struct" + Set gtmtypfldindx("mutex_que_head","latch.u.parts")=7 + Set gtmtypes("mutex_que_head",8,"name")="mutex_que_head.latch.u.parts.latch_pid" + Set gtmtypes("mutex_que_head",8,"off")=8 + Set gtmtypes("mutex_que_head",8,"len")=4 + Set gtmtypes("mutex_que_head",8,"type")="int" + Set gtmtypfldindx("mutex_que_head","latch.u.parts.latch_pid")=8 + Set gtmtypes("mutex_que_head",9,"name")="mutex_que_head.latch.u.parts.latch_word" + Set gtmtypes("mutex_que_head",9,"off")=12 + Set gtmtypes("mutex_que_head",9,"len")=4 + Set gtmtypes("mutex_que_head",9,"type")="int" + Set gtmtypfldindx("mutex_que_head","latch.u.parts.latch_word")=9 + ; + Set gtmtypes("mutex_spin_parms_struct")="struct" + Set gtmtypes("mutex_spin_parms_struct",0)=4 + Set gtmtypes("mutex_spin_parms_struct","len")=16 + Set gtmtypes("mutex_spin_parms_struct",1,"name")="mutex_spin_parms_struct.mutex_hard_spin_count" + Set gtmtypes("mutex_spin_parms_struct",1,"off")=0 + Set gtmtypes("mutex_spin_parms_struct",1,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",1,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_hard_spin_count")=1 + Set gtmtypes("mutex_spin_parms_struct",2,"name")="mutex_spin_parms_struct.mutex_sleep_spin_count" + Set gtmtypes("mutex_spin_parms_struct",2,"off")=4 + Set gtmtypes("mutex_spin_parms_struct",2,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",2,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_sleep_spin_count")=2 + Set gtmtypes("mutex_spin_parms_struct",3,"name")="mutex_spin_parms_struct.mutex_spin_sleep_mask" + Set gtmtypes("mutex_spin_parms_struct",3,"off")=8 + Set gtmtypes("mutex_spin_parms_struct",3,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",3,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_spin_sleep_mask")=3 + Set gtmtypes("mutex_spin_parms_struct",4,"name")="mutex_spin_parms_struct.mutex_que_entry_space_size" + Set gtmtypes("mutex_spin_parms_struct",4,"off")=12 + Set gtmtypes("mutex_spin_parms_struct",4,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",4,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_que_entry_space_size")=4 + ; + Set gtmtypes("mutex_struct")="struct" + Set gtmtypes("mutex_struct",0)=52 + Set gtmtypes("mutex_struct","len")=192 + Set gtmtypes("mutex_struct",1,"name")="mutex_struct.crit_cycle" + Set gtmtypes("mutex_struct",1,"off")=0 + Set gtmtypes("mutex_struct",1,"len")=4 + Set gtmtypes("mutex_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("mutex_struct","crit_cycle")=1 + Set gtmtypes("mutex_struct",2,"name")="mutex_struct.fill1" + Set gtmtypes("mutex_struct",2,"off")=4 + Set gtmtypes("mutex_struct",2,"len")=4 + Set gtmtypes("mutex_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("mutex_struct","fill1")=2 + Set gtmtypes("mutex_struct",3,"name")="mutex_struct.semaphore" + Set gtmtypes("mutex_struct",3,"off")=8 + Set gtmtypes("mutex_struct",3,"len")=8 + Set gtmtypes("mutex_struct",3,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","semaphore")=3 + Set gtmtypes("mutex_struct",4,"name")="mutex_struct.semaphore.u" + Set gtmtypes("mutex_struct",4,"off")=8 + Set gtmtypes("mutex_struct",4,"len")=8 + Set gtmtypes("mutex_struct",4,"type")="union" + Set gtmtypfldindx("mutex_struct","semaphore.u")=4 + Set gtmtypes("mutex_struct",5,"name")="mutex_struct.semaphore.u.pid_imgcnt" + Set gtmtypes("mutex_struct",5,"off")=8 + Set gtmtypes("mutex_struct",5,"len")=8 + Set gtmtypes("mutex_struct",5,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","semaphore.u.pid_imgcnt")=5 + Set gtmtypes("mutex_struct",6,"name")="mutex_struct.semaphore.u.parts" + Set gtmtypes("mutex_struct",6,"off")=8 + Set gtmtypes("mutex_struct",6,"len")=8 + Set gtmtypes("mutex_struct",6,"type")="struct" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts")=6 + Set gtmtypes("mutex_struct",7,"name")="mutex_struct.semaphore.u.parts.latch_pid" + Set gtmtypes("mutex_struct",7,"off")=8 + Set gtmtypes("mutex_struct",7,"len")=4 + Set gtmtypes("mutex_struct",7,"type")="int" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts.latch_pid")=7 + Set gtmtypes("mutex_struct",8,"name")="mutex_struct.semaphore.u.parts.latch_word" + Set gtmtypes("mutex_struct",8,"off")=12 + Set gtmtypes("mutex_struct",8,"len")=4 + Set gtmtypes("mutex_struct",8,"type")="int" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts.latch_word")=8 + Set gtmtypes("mutex_struct",9,"name")="mutex_struct.fill_cacheline2" + Set gtmtypes("mutex_struct",9,"off")=16 + Set gtmtypes("mutex_struct",9,"len")=16 + Set gtmtypes("mutex_struct",9,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline2")=9 + Set gtmtypes("mutex_struct",10,"name")="mutex_struct.crashcnt" + Set gtmtypes("mutex_struct",10,"off")=32 + Set gtmtypes("mutex_struct",10,"len")=4 + Set gtmtypes("mutex_struct",10,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt")=10 + Set gtmtypes("mutex_struct",11,"name")="mutex_struct.fill3" + Set gtmtypes("mutex_struct",11,"off")=36 + Set gtmtypes("mutex_struct",11,"len")=4 + Set gtmtypes("mutex_struct",11,"type")="int" + Set gtmtypfldindx("mutex_struct","fill3")=11 + Set gtmtypes("mutex_struct",12,"name")="mutex_struct.crashcnt_latch" + Set gtmtypes("mutex_struct",12,"off")=40 + Set gtmtypes("mutex_struct",12,"len")=8 + Set gtmtypes("mutex_struct",12,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","crashcnt_latch")=12 + Set gtmtypes("mutex_struct",13,"name")="mutex_struct.crashcnt_latch.u" + Set gtmtypes("mutex_struct",13,"off")=40 + Set gtmtypes("mutex_struct",13,"len")=8 + Set gtmtypes("mutex_struct",13,"type")="union" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u")=13 + Set gtmtypes("mutex_struct",14,"name")="mutex_struct.crashcnt_latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",14,"off")=40 + Set gtmtypes("mutex_struct",14,"len")=8 + Set gtmtypes("mutex_struct",14,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.pid_imgcnt")=14 + Set gtmtypes("mutex_struct",15,"name")="mutex_struct.crashcnt_latch.u.parts" + Set gtmtypes("mutex_struct",15,"off")=40 + Set gtmtypes("mutex_struct",15,"len")=8 + Set gtmtypes("mutex_struct",15,"type")="struct" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts")=15 + Set gtmtypes("mutex_struct",16,"name")="mutex_struct.crashcnt_latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",16,"off")=40 + Set gtmtypes("mutex_struct",16,"len")=4 + Set gtmtypes("mutex_struct",16,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts.latch_pid")=16 + Set gtmtypes("mutex_struct",17,"name")="mutex_struct.crashcnt_latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",17,"off")=44 + Set gtmtypes("mutex_struct",17,"len")=4 + Set gtmtypes("mutex_struct",17,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts.latch_word")=17 + Set gtmtypes("mutex_struct",18,"name")="mutex_struct.fill_cacheline4" + Set gtmtypes("mutex_struct",18,"off")=48 + Set gtmtypes("mutex_struct",18,"len")=16 + Set gtmtypes("mutex_struct",18,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline4")=18 + Set gtmtypes("mutex_struct",19,"name")="mutex_struct.stuckexec" + Set gtmtypes("mutex_struct",19,"off")=64 + Set gtmtypes("mutex_struct",19,"len")=24 + Set gtmtypes("mutex_struct",19,"type")="compswap_time_field" + Set gtmtypfldindx("mutex_struct","stuckexec")=19 + Set gtmtypes("mutex_struct",20,"name")="mutex_struct.stuckexec.time_latch" + Set gtmtypes("mutex_struct",20,"off")=64 + Set gtmtypes("mutex_struct",20,"len")=8 + Set gtmtypes("mutex_struct",20,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch")=20 + Set gtmtypes("mutex_struct",21,"name")="mutex_struct.stuckexec.time_latch.u" + Set gtmtypes("mutex_struct",21,"off")=64 + Set gtmtypes("mutex_struct",21,"len")=8 + Set gtmtypes("mutex_struct",21,"type")="union" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u")=21 + Set gtmtypes("mutex_struct",22,"name")="mutex_struct.stuckexec.time_latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",22,"off")=64 + Set gtmtypes("mutex_struct",22,"len")=8 + Set gtmtypes("mutex_struct",22,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.pid_imgcnt")=22 + Set gtmtypes("mutex_struct",23,"name")="mutex_struct.stuckexec.time_latch.u.parts" + Set gtmtypes("mutex_struct",23,"off")=64 + Set gtmtypes("mutex_struct",23,"len")=8 + Set gtmtypes("mutex_struct",23,"type")="struct" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts")=23 + Set gtmtypes("mutex_struct",24,"name")="mutex_struct.stuckexec.time_latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",24,"off")=64 + Set gtmtypes("mutex_struct",24,"len")=4 + Set gtmtypes("mutex_struct",24,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts.latch_pid")=24 + Set gtmtypes("mutex_struct",25,"name")="mutex_struct.stuckexec.time_latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",25,"off")=68 + Set gtmtypes("mutex_struct",25,"len")=4 + Set gtmtypes("mutex_struct",25,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts.latch_word")=25 + Set gtmtypes("mutex_struct",26,"name")="mutex_struct.stuckexec.hp_latch_space" + Set gtmtypes("mutex_struct",26,"off")=72 + Set gtmtypes("mutex_struct",26,"len")=16 + Set gtmtypes("mutex_struct",26,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.hp_latch_space")=26 + Set gtmtypes("mutex_struct",26,"dim")=4 + Set gtmtypes("mutex_struct",27,"name")="mutex_struct.fill_cacheline5" + Set gtmtypes("mutex_struct",27,"off")=88 + Set gtmtypes("mutex_struct",27,"len")=8 + Set gtmtypes("mutex_struct",27,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline5")=27 + Set gtmtypes("mutex_struct",28,"name")="mutex_struct.queslots" + Set gtmtypes("mutex_struct",28,"off")=96 + Set gtmtypes("mutex_struct",28,"len")=4 + Set gtmtypes("mutex_struct",28,"type")="int" + Set gtmtypfldindx("mutex_struct","queslots")=28 + Set gtmtypes("mutex_struct",29,"name")="mutex_struct.fill6" + Set gtmtypes("mutex_struct",29,"off")=100 + Set gtmtypes("mutex_struct",29,"len")=4 + Set gtmtypes("mutex_struct",29,"type")="int" + Set gtmtypfldindx("mutex_struct","fill6")=29 + Set gtmtypes("mutex_struct",30,"name")="mutex_struct.fill_cacheline7" + Set gtmtypes("mutex_struct",30,"off")=104 + Set gtmtypes("mutex_struct",30,"len")=24 + Set gtmtypes("mutex_struct",30,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline7")=30 + Set gtmtypes("mutex_struct",31,"name")="mutex_struct.prochead" + Set gtmtypes("mutex_struct",31,"off")=128 + Set gtmtypes("mutex_struct",31,"len")=16 + Set gtmtypes("mutex_struct",31,"type")="mutex_que_head" + Set gtmtypfldindx("mutex_struct","prochead")=31 + Set gtmtypes("mutex_struct",32,"name")="mutex_struct.prochead.que" + Set gtmtypes("mutex_struct",32,"off")=128 + Set gtmtypes("mutex_struct",32,"len")=8 + Set gtmtypes("mutex_struct",32,"type")="struct" + Set gtmtypfldindx("mutex_struct","prochead.que")=32 + Set gtmtypes("mutex_struct",33,"name")="mutex_struct.prochead.que.fl" + Set gtmtypes("mutex_struct",33,"off")=128 + Set gtmtypes("mutex_struct",33,"len")=4 + Set gtmtypes("mutex_struct",33,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","prochead.que.fl")=33 + Set gtmtypes("mutex_struct",34,"name")="mutex_struct.prochead.que.bl" + Set gtmtypes("mutex_struct",34,"off")=132 + Set gtmtypes("mutex_struct",34,"len")=4 + Set gtmtypes("mutex_struct",34,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","prochead.que.bl")=34 + Set gtmtypes("mutex_struct",35,"name")="mutex_struct.prochead.latch" + Set gtmtypes("mutex_struct",35,"off")=136 + Set gtmtypes("mutex_struct",35,"len")=8 + Set gtmtypes("mutex_struct",35,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","prochead.latch")=35 + Set gtmtypes("mutex_struct",36,"name")="mutex_struct.prochead.latch.u" + Set gtmtypes("mutex_struct",36,"off")=136 + Set gtmtypes("mutex_struct",36,"len")=8 + Set gtmtypes("mutex_struct",36,"type")="union" + Set gtmtypfldindx("mutex_struct","prochead.latch.u")=36 + Set gtmtypes("mutex_struct",37,"name")="mutex_struct.prochead.latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",37,"off")=136 + Set gtmtypes("mutex_struct",37,"len")=8 + Set gtmtypes("mutex_struct",37,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.pid_imgcnt")=37 + Set gtmtypes("mutex_struct",38,"name")="mutex_struct.prochead.latch.u.parts" + Set gtmtypes("mutex_struct",38,"off")=136 + Set gtmtypes("mutex_struct",38,"len")=8 + Set gtmtypes("mutex_struct",38,"type")="struct" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts")=38 + Set gtmtypes("mutex_struct",39,"name")="mutex_struct.prochead.latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",39,"off")=136 + Set gtmtypes("mutex_struct",39,"len")=4 + Set gtmtypes("mutex_struct",39,"type")="int" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts.latch_pid")=39 + Set gtmtypes("mutex_struct",40,"name")="mutex_struct.prochead.latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",40,"off")=140 + Set gtmtypes("mutex_struct",40,"len")=4 + Set gtmtypes("mutex_struct",40,"type")="int" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts.latch_word")=40 + Set gtmtypes("mutex_struct",41,"name")="mutex_struct.fill_cacheline8" + Set gtmtypes("mutex_struct",41,"off")=144 + Set gtmtypes("mutex_struct",41,"len")=16 + Set gtmtypes("mutex_struct",41,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline8")=41 + Set gtmtypes("mutex_struct",42,"name")="mutex_struct.freehead" + Set gtmtypes("mutex_struct",42,"off")=160 + Set gtmtypes("mutex_struct",42,"len")=16 + Set gtmtypes("mutex_struct",42,"type")="mutex_que_head" + Set gtmtypfldindx("mutex_struct","freehead")=42 + Set gtmtypes("mutex_struct",43,"name")="mutex_struct.freehead.que" + Set gtmtypes("mutex_struct",43,"off")=160 + Set gtmtypes("mutex_struct",43,"len")=8 + Set gtmtypes("mutex_struct",43,"type")="struct" + Set gtmtypfldindx("mutex_struct","freehead.que")=43 + Set gtmtypes("mutex_struct",44,"name")="mutex_struct.freehead.que.fl" + Set gtmtypes("mutex_struct",44,"off")=160 + Set gtmtypes("mutex_struct",44,"len")=4 + Set gtmtypes("mutex_struct",44,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","freehead.que.fl")=44 + Set gtmtypes("mutex_struct",45,"name")="mutex_struct.freehead.que.bl" + Set gtmtypes("mutex_struct",45,"off")=164 + Set gtmtypes("mutex_struct",45,"len")=4 + Set gtmtypes("mutex_struct",45,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","freehead.que.bl")=45 + Set gtmtypes("mutex_struct",46,"name")="mutex_struct.freehead.latch" + Set gtmtypes("mutex_struct",46,"off")=168 + Set gtmtypes("mutex_struct",46,"len")=8 + Set gtmtypes("mutex_struct",46,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","freehead.latch")=46 + Set gtmtypes("mutex_struct",47,"name")="mutex_struct.freehead.latch.u" + Set gtmtypes("mutex_struct",47,"off")=168 + Set gtmtypes("mutex_struct",47,"len")=8 + Set gtmtypes("mutex_struct",47,"type")="union" + Set gtmtypfldindx("mutex_struct","freehead.latch.u")=47 + Set gtmtypes("mutex_struct",48,"name")="mutex_struct.freehead.latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",48,"off")=168 + Set gtmtypes("mutex_struct",48,"len")=8 + Set gtmtypes("mutex_struct",48,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.pid_imgcnt")=48 + Set gtmtypes("mutex_struct",49,"name")="mutex_struct.freehead.latch.u.parts" + Set gtmtypes("mutex_struct",49,"off")=168 + Set gtmtypes("mutex_struct",49,"len")=8 + Set gtmtypes("mutex_struct",49,"type")="struct" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts")=49 + Set gtmtypes("mutex_struct",50,"name")="mutex_struct.freehead.latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",50,"off")=168 + Set gtmtypes("mutex_struct",50,"len")=4 + Set gtmtypes("mutex_struct",50,"type")="int" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts.latch_pid")=50 + Set gtmtypes("mutex_struct",51,"name")="mutex_struct.freehead.latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",51,"off")=172 + Set gtmtypes("mutex_struct",51,"len")=4 + Set gtmtypes("mutex_struct",51,"type")="int" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts.latch_word")=51 + Set gtmtypes("mutex_struct",52,"name")="mutex_struct.fill_cacheline9" + Set gtmtypes("mutex_struct",52,"off")=176 + Set gtmtypes("mutex_struct",52,"len")=16 + Set gtmtypes("mutex_struct",52,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline9")=52 + ; + Set gtmtypes("mutex_wake_msg_t")="struct" + Set gtmtypes("mutex_wake_msg_t",0)=2 + Set gtmtypes("mutex_wake_msg_t","len")=8 + Set gtmtypes("mutex_wake_msg_t",1,"name")="mutex_wake_msg_t.pid" + Set gtmtypes("mutex_wake_msg_t",1,"off")=0 + Set gtmtypes("mutex_wake_msg_t",1,"len")=4 + Set gtmtypes("mutex_wake_msg_t",1,"type")="unsigned-int" + Set gtmtypfldindx("mutex_wake_msg_t","pid")=1 + Set gtmtypes("mutex_wake_msg_t",2,"name")="mutex_wake_msg_t.mutex_wake_instance" + Set gtmtypes("mutex_wake_msg_t",2,"off")=4 + Set gtmtypes("mutex_wake_msg_t",2,"len")=4 + Set gtmtypes("mutex_wake_msg_t",2,"type")="int" + Set gtmtypfldindx("mutex_wake_msg_t","mutex_wake_instance")=2 + ; + Set gtmtypes("mv_stent")="struct" + Set gtmtypes("mv_stent",0)=94 + Set gtmtypes("mv_stent","len")=176 + Set gtmtypes("mv_stent",1,"name")="mv_stent.mv_st_cont" + Set gtmtypes("mv_stent",1,"off")=4 + Set gtmtypes("mv_stent",1,"len")=172 + Set gtmtypes("mv_stent",1,"type")="union" + Set gtmtypfldindx("mv_stent","mv_st_cont")=1 + Set gtmtypes("mv_stent",2,"name")="mv_stent.mv_st_cont.mvs_mval" + Set gtmtypes("mv_stent",2,"off")=4 + Set gtmtypes("mv_stent",2,"len")=32 + Set gtmtypes("mv_stent",2,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval")=2 + Set gtmtypes("mv_stent",3,"name")="mv_stent.mv_st_cont.mvs_mval.mvtype" + Set gtmtypes("mv_stent",3,"off")=4 + Set gtmtypes("mv_stent",3,"len")=2 + Set gtmtypes("mv_stent",3,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.mvtype")=3 + Set gtmtypes("mv_stent",4,"name")="mv_stent.mv_st_cont.mvs_mval.fnpc_indx" + Set gtmtypes("mv_stent",4,"off")=7 + Set gtmtypes("mv_stent",4,"len")=1 + Set gtmtypes("mv_stent",4,"type")="unsigned-char" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.fnpc_indx")=4 + Set gtmtypes("mv_stent",5,"name")="mv_stent.mv_st_cont.mvs_mval.utfcgr_indx" + Set gtmtypes("mv_stent",5,"off")=8 + Set gtmtypes("mv_stent",5,"len")=4 + Set gtmtypes("mv_stent",5,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.utfcgr_indx")=5 + Set gtmtypes("mv_stent",6,"name")="mv_stent.mv_st_cont.mvs_mval.filler2" + Set gtmtypes("mv_stent",6,"off")=12 + Set gtmtypes("mv_stent",6,"len")=4 + Set gtmtypes("mv_stent",6,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.filler2")=6 + Set gtmtypes("mv_stent",7,"name")="mv_stent.mv_st_cont.mvs_mval.m" + Set gtmtypes("mv_stent",7,"off")=16 + Set gtmtypes("mv_stent",7,"len")=8 + Set gtmtypes("mv_stent",7,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.m")=7 + Set gtmtypes("mv_stent",7,"dim")=2 + Set gtmtypes("mv_stent",8,"name")="mv_stent.mv_st_cont.mvs_mval.str" + Set gtmtypes("mv_stent",8,"off")=24 + Set gtmtypes("mv_stent",8,"len")=12 + Set gtmtypes("mv_stent",8,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.str")=8 + Set gtmtypes("mv_stent",9,"name")="mv_stent.mv_st_cont.mvs_lvval" + Set gtmtypes("mv_stent",9,"off")=4 + Set gtmtypes("mv_stent",9,"len")=4 + Set gtmtypes("mv_stent",9,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_lvval")=9 + Set gtmtypes("mv_stent",10,"name")="mv_stent.mv_st_cont.mvs_msav" + Set gtmtypes("mv_stent",10,"off")=4 + Set gtmtypes("mv_stent",10,"len")=36 + Set gtmtypes("mv_stent",10,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav")=10 + Set gtmtypes("mv_stent",11,"name")="mv_stent.mv_st_cont.mvs_msav.v" + Set gtmtypes("mv_stent",11,"off")=4 + Set gtmtypes("mv_stent",11,"len")=32 + Set gtmtypes("mv_stent",11,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v")=11 + Set gtmtypes("mv_stent",12,"name")="mv_stent.mv_st_cont.mvs_msav.v.mvtype" + Set gtmtypes("mv_stent",12,"off")=4 + Set gtmtypes("mv_stent",12,"len")=2 + Set gtmtypes("mv_stent",12,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.mvtype")=12 + Set gtmtypes("mv_stent",13,"name")="mv_stent.mv_st_cont.mvs_msav.v.fnpc_indx" + Set gtmtypes("mv_stent",13,"off")=7 + Set gtmtypes("mv_stent",13,"len")=1 + Set gtmtypes("mv_stent",13,"type")="unsigned-char" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.fnpc_indx")=13 + Set gtmtypes("mv_stent",14,"name")="mv_stent.mv_st_cont.mvs_msav.v.utfcgr_indx" + Set gtmtypes("mv_stent",14,"off")=8 + Set gtmtypes("mv_stent",14,"len")=4 + Set gtmtypes("mv_stent",14,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.utfcgr_indx")=14 + Set gtmtypes("mv_stent",15,"name")="mv_stent.mv_st_cont.mvs_msav.v.filler2" + Set gtmtypes("mv_stent",15,"off")=12 + Set gtmtypes("mv_stent",15,"len")=4 + Set gtmtypes("mv_stent",15,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.filler2")=15 + Set gtmtypes("mv_stent",16,"name")="mv_stent.mv_st_cont.mvs_msav.v.m" + Set gtmtypes("mv_stent",16,"off")=16 + Set gtmtypes("mv_stent",16,"len")=8 + Set gtmtypes("mv_stent",16,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.m")=16 + Set gtmtypes("mv_stent",16,"dim")=2 + Set gtmtypes("mv_stent",17,"name")="mv_stent.mv_st_cont.mvs_msav.v.str" + Set gtmtypes("mv_stent",17,"off")=24 + Set gtmtypes("mv_stent",17,"len")=12 + Set gtmtypes("mv_stent",17,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.str")=17 + Set gtmtypes("mv_stent",18,"name")="mv_stent.mv_st_cont.mvs_msav.addr" + Set gtmtypes("mv_stent",18,"off")=36 + Set gtmtypes("mv_stent",18,"len")=4 + Set gtmtypes("mv_stent",18,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.addr")=18 + Set gtmtypes("mv_stent",19,"name")="mv_stent.mv_st_cont.mvs_stab" + Set gtmtypes("mv_stent",19,"off")=4 + Set gtmtypes("mv_stent",19,"len")=4 + Set gtmtypes("mv_stent",19,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stab")=19 + Set gtmtypes("mv_stent",20,"name")="mv_stent.mv_st_cont.mvs_iarr" + Set gtmtypes("mv_stent",20,"off")=4 + Set gtmtypes("mv_stent",20,"len")=8 + Set gtmtypes("mv_stent",20,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr")=20 + Set gtmtypes("mv_stent",21,"name")="mv_stent.mv_st_cont.mvs_iarr.iarr_mvals" + Set gtmtypes("mv_stent",21,"off")=4 + Set gtmtypes("mv_stent",21,"len")=2 + Set gtmtypes("mv_stent",21,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr.iarr_mvals")=21 + Set gtmtypes("mv_stent",22,"name")="mv_stent.mv_st_cont.mvs_iarr.iarr_base" + Set gtmtypes("mv_stent",22,"off")=8 + Set gtmtypes("mv_stent",22,"len")=4 + Set gtmtypes("mv_stent",22,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr.iarr_base")=22 + Set gtmtypes("mv_stent",23,"name")="mv_stent.mv_st_cont.mvs_stck" + Set gtmtypes("mv_stent",23,"off")=4 + Set gtmtypes("mv_stent",23,"len")=12 + Set gtmtypes("mv_stent",23,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck")=23 + Set gtmtypes("mv_stent",24,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_addr" + Set gtmtypes("mv_stent",24,"off")=4 + Set gtmtypes("mv_stent",24,"len")=4 + Set gtmtypes("mv_stent",24,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_addr")=24 + Set gtmtypes("mv_stent",25,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_val" + Set gtmtypes("mv_stent",25,"off")=8 + Set gtmtypes("mv_stent",25,"len")=4 + Set gtmtypes("mv_stent",25,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_val")=25 + Set gtmtypes("mv_stent",26,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_size" + Set gtmtypes("mv_stent",26,"off")=12 + Set gtmtypes("mv_stent",26,"len")=4 + Set gtmtypes("mv_stent",26,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_size")=26 + Set gtmtypes("mv_stent",27,"name")="mv_stent.mv_st_cont.mvs_ntab" + Set gtmtypes("mv_stent",27,"off")=4 + Set gtmtypes("mv_stent",27,"len")=12 + Set gtmtypes("mv_stent",27,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab")=27 + Set gtmtypes("mv_stent",28,"name")="mv_stent.mv_st_cont.mvs_ntab.hte_addr" + Set gtmtypes("mv_stent",28,"off")=4 + Set gtmtypes("mv_stent",28,"len")=4 + Set gtmtypes("mv_stent",28,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab.hte_addr")=28 + Set gtmtypes("mv_stent",29,"name")="mv_stent.mv_st_cont.mvs_ntab.save_value" + Set gtmtypes("mv_stent",29,"off")=8 + Set gtmtypes("mv_stent",29,"len")=4 + Set gtmtypes("mv_stent",29,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab.save_value")=29 + Set gtmtypes("mv_stent",30,"name")="mv_stent.mv_st_cont.mvs_ntab.nam_addr" + Set gtmtypes("mv_stent",30,"off")=12 + Set gtmtypes("mv_stent",30,"len")=4 + Set gtmtypes("mv_stent",30,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab.nam_addr")=30 + Set gtmtypes("mv_stent",31,"name")="mv_stent.mv_st_cont.mvs_zintdev" + Set gtmtypes("mv_stent",31,"off")=4 + Set gtmtypes("mv_stent",31,"len")=24 + Set gtmtypes("mv_stent",31,"type")="mvs_zintdev_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev")=31 + Set gtmtypes("mv_stent",32,"name")="mv_stent.mv_st_cont.mvs_zintdev.io_ptr" + Set gtmtypes("mv_stent",32,"off")=4 + Set gtmtypes("mv_stent",32,"len")=4 + Set gtmtypes("mv_stent",32,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.io_ptr")=32 + Set gtmtypes("mv_stent",33,"name")="mv_stent.mv_st_cont.mvs_zintdev.buffer_valid" + Set gtmtypes("mv_stent",33,"off")=8 + Set gtmtypes("mv_stent",33,"len")=4 + Set gtmtypes("mv_stent",33,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.buffer_valid")=33 + Set gtmtypes("mv_stent",34,"name")="mv_stent.mv_st_cont.mvs_zintdev.curr_sp_buffer" + Set gtmtypes("mv_stent",34,"off")=12 + Set gtmtypes("mv_stent",34,"len")=12 + Set gtmtypes("mv_stent",34,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.curr_sp_buffer")=34 + Set gtmtypes("mv_stent",35,"name")="mv_stent.mv_st_cont.mvs_zintdev.socketptr" + Set gtmtypes("mv_stent",35,"off")=24 + Set gtmtypes("mv_stent",35,"len")=4 + Set gtmtypes("mv_stent",35,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.socketptr")=35 + Set gtmtypes("mv_stent",36,"name")="mv_stent.mv_st_cont.mvs_pval" + Set gtmtypes("mv_stent",36,"off")=4 + Set gtmtypes("mv_stent",36,"len")=16 + Set gtmtypes("mv_stent",36,"type")="mvs_pval_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval")=36 + Set gtmtypes("mv_stent",37,"name")="mv_stent.mv_st_cont.mvs_pval.mvs_val" + Set gtmtypes("mv_stent",37,"off")=4 + Set gtmtypes("mv_stent",37,"len")=4 + Set gtmtypes("mv_stent",37,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval.mvs_val")=37 + Set gtmtypes("mv_stent",38,"name")="mv_stent.mv_st_cont.mvs_pval.mvs_ptab" + Set gtmtypes("mv_stent",38,"off")=8 + Set gtmtypes("mv_stent",38,"len")=12 + Set gtmtypes("mv_stent",38,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval.mvs_ptab")=38 + Set gtmtypes("mv_stent",39,"name")="mv_stent.mv_st_cont.mvs_nval" + Set gtmtypes("mv_stent",39,"off")=4 + Set gtmtypes("mv_stent",39,"len")=36 + Set gtmtypes("mv_stent",39,"type")="mvs_nval_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval")=39 + Set gtmtypes("mv_stent",40,"name")="mv_stent.mv_st_cont.mvs_nval.mvs_val" + Set gtmtypes("mv_stent",40,"off")=4 + Set gtmtypes("mv_stent",40,"len")=4 + Set gtmtypes("mv_stent",40,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval.mvs_val")=40 + Set gtmtypes("mv_stent",41,"name")="mv_stent.mv_st_cont.mvs_nval.mvs_ptab" + Set gtmtypes("mv_stent",41,"off")=8 + Set gtmtypes("mv_stent",41,"len")=12 + Set gtmtypes("mv_stent",41,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval.mvs_ptab")=41 + Set gtmtypes("mv_stent",42,"name")="mv_stent.mv_st_cont.mvs_nval.name" + Set gtmtypes("mv_stent",42,"off")=20 + Set gtmtypes("mv_stent",42,"len")=20 + Set gtmtypes("mv_stent",42,"type")="mname_entry" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval.name")=42 + Set gtmtypes("mv_stent",43,"name")="mv_stent.mv_st_cont.mvs_zintr" + Set gtmtypes("mv_stent",43,"off")=4 + Set gtmtypes("mv_stent",43,"len")=120 + Set gtmtypes("mv_stent",43,"type")="mvs_zintr_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr")=43 + Set gtmtypes("mv_stent",44,"name")="mv_stent.mv_st_cont.mvs_zintr.saved_dollar_truth" + Set gtmtypes("mv_stent",44,"off")=4 + Set gtmtypes("mv_stent",44,"len")=4 + Set gtmtypes("mv_stent",44,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.saved_dollar_truth")=44 + Set gtmtypes("mv_stent",45,"name")="mv_stent.mv_st_cont.mvs_zintr.savtarg" + Set gtmtypes("mv_stent",45,"off")=8 + Set gtmtypes("mv_stent",45,"len")=32 + Set gtmtypes("mv_stent",45,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.savtarg")=45 + Set gtmtypes("mv_stent",46,"name")="mv_stent.mv_st_cont.mvs_zintr.savextref" + Set gtmtypes("mv_stent",46,"off")=40 + Set gtmtypes("mv_stent",46,"len")=12 + Set gtmtypes("mv_stent",46,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.savextref")=46 + Set gtmtypes("mv_stent",47,"name")="mv_stent.mv_st_cont.mvs_zintr.error_frame_save" + Set gtmtypes("mv_stent",47,"off")=52 + Set gtmtypes("mv_stent",47,"len")=4 + Set gtmtypes("mv_stent",47,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.error_frame_save")=47 + Set gtmtypes("mv_stent",48,"name")="mv_stent.mv_st_cont.mvs_zintr.dollar_ecode_save" + Set gtmtypes("mv_stent",48,"off")=56 + Set gtmtypes("mv_stent",48,"len")=44 + Set gtmtypes("mv_stent",48,"type")="dollar_ecode_type" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.dollar_ecode_save")=48 + Set gtmtypes("mv_stent",49,"name")="mv_stent.mv_st_cont.mvs_zintr.dollar_stack_save" + Set gtmtypes("mv_stent",49,"off")=100 + Set gtmtypes("mv_stent",49,"len")=24 + Set gtmtypes("mv_stent",49,"type")="dollar_stack_type" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.dollar_stack_save")=49 + Set gtmtypes("mv_stent",50,"name")="mv_stent.mv_st_cont.mvs_trigr" + Set gtmtypes("mv_stent",50,"off")=4 + Set gtmtypes("mv_stent",50,"len")=172 + Set gtmtypes("mv_stent",50,"type")="mvs_trigr_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr")=50 + Set gtmtypes("mv_stent",51,"name")="mv_stent.mv_st_cont.mvs_trigr.saved_dollar_truth" + Set gtmtypes("mv_stent",51,"off")=4 + Set gtmtypes("mv_stent",51,"len")=4 + Set gtmtypes("mv_stent",51,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.saved_dollar_truth")=51 + Set gtmtypes("mv_stent",52,"name")="mv_stent.mv_st_cont.mvs_trigr.savtarg" + Set gtmtypes("mv_stent",52,"off")=8 + Set gtmtypes("mv_stent",52,"len")=32 + Set gtmtypes("mv_stent",52,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.savtarg")=52 + Set gtmtypes("mv_stent",53,"name")="mv_stent.mv_st_cont.mvs_trigr.savextref" + Set gtmtypes("mv_stent",53,"off")=40 + Set gtmtypes("mv_stent",53,"len")=12 + Set gtmtypes("mv_stent",53,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.savextref")=53 + Set gtmtypes("mv_stent",54,"name")="mv_stent.mv_st_cont.mvs_trigr.ztvalue_changed_ptr" + Set gtmtypes("mv_stent",54,"off")=52 + Set gtmtypes("mv_stent",54,"len")=4 + Set gtmtypes("mv_stent",54,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztvalue_changed_ptr")=54 + Set gtmtypes("mv_stent",55,"name")="mv_stent.mv_st_cont.mvs_trigr.ztvalue_save" + Set gtmtypes("mv_stent",55,"off")=56 + Set gtmtypes("mv_stent",55,"len")=4 + Set gtmtypes("mv_stent",55,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztvalue_save")=55 + Set gtmtypes("mv_stent",56,"name")="mv_stent.mv_st_cont.mvs_trigr.ztname_save" + Set gtmtypes("mv_stent",56,"off")=60 + Set gtmtypes("mv_stent",56,"len")=4 + Set gtmtypes("mv_stent",56,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztname_save")=56 + Set gtmtypes("mv_stent",57,"name")="mv_stent.mv_st_cont.mvs_trigr.ztdata_save" + Set gtmtypes("mv_stent",57,"off")=64 + Set gtmtypes("mv_stent",57,"len")=4 + Set gtmtypes("mv_stent",57,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztdata_save")=57 + Set gtmtypes("mv_stent",58,"name")="mv_stent.mv_st_cont.mvs_trigr.ztdelim_save" + Set gtmtypes("mv_stent",58,"off")=68 + Set gtmtypes("mv_stent",58,"len")=4 + Set gtmtypes("mv_stent",58,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztdelim_save")=58 + Set gtmtypes("mv_stent",59,"name")="mv_stent.mv_st_cont.mvs_trigr.ztoldval_save" + Set gtmtypes("mv_stent",59,"off")=72 + Set gtmtypes("mv_stent",59,"len")=4 + Set gtmtypes("mv_stent",59,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztoldval_save")=59 + Set gtmtypes("mv_stent",60,"name")="mv_stent.mv_st_cont.mvs_trigr.ztriggerop_save" + Set gtmtypes("mv_stent",60,"off")=76 + Set gtmtypes("mv_stent",60,"len")=4 + Set gtmtypes("mv_stent",60,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztriggerop_save")=60 + Set gtmtypes("mv_stent",61,"name")="mv_stent.mv_st_cont.mvs_trigr.ztupdate_save" + Set gtmtypes("mv_stent",61,"off")=80 + Set gtmtypes("mv_stent",61,"len")=4 + Set gtmtypes("mv_stent",61,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztupdate_save")=61 + Set gtmtypes("mv_stent",62,"name")="mv_stent.mv_st_cont.mvs_trigr.ctxt_save" + Set gtmtypes("mv_stent",62,"off")=84 + Set gtmtypes("mv_stent",62,"len")=4 + Set gtmtypes("mv_stent",62,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ctxt_save")=62 + Set gtmtypes("mv_stent",63,"name")="mv_stent.mv_st_cont.mvs_trigr.gtm_trigger_depth_save" + Set gtmtypes("mv_stent",63,"off")=88 + Set gtmtypes("mv_stent",63,"len")=4 + Set gtmtypes("mv_stent",63,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.gtm_trigger_depth_save")=63 + Set gtmtypes("mv_stent",64,"name")="mv_stent.mv_st_cont.mvs_trigr.dollar_etrap_save" + Set gtmtypes("mv_stent",64,"off")=92 + Set gtmtypes("mv_stent",64,"len")=32 + Set gtmtypes("mv_stent",64,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.dollar_etrap_save")=64 + Set gtmtypes("mv_stent",65,"name")="mv_stent.mv_st_cont.mvs_trigr.dollar_ztrap_save" + Set gtmtypes("mv_stent",65,"off")=124 + Set gtmtypes("mv_stent",65,"len")=32 + Set gtmtypes("mv_stent",65,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.dollar_ztrap_save")=65 + Set gtmtypes("mv_stent",66,"name")="mv_stent.mv_st_cont.mvs_trigr.ztrap_explicit_null_save" + Set gtmtypes("mv_stent",66,"off")=156 + Set gtmtypes("mv_stent",66,"len")=4 + Set gtmtypes("mv_stent",66,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztrap_explicit_null_save")=66 + Set gtmtypes("mv_stent",67,"name")="mv_stent.mv_st_cont.mvs_trigr.mumps_status_save" + Set gtmtypes("mv_stent",67,"off")=160 + Set gtmtypes("mv_stent",67,"len")=4 + Set gtmtypes("mv_stent",67,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.mumps_status_save")=67 + Set gtmtypes("mv_stent",68,"name")="mv_stent.mv_st_cont.mvs_trigr.run_time_save" + Set gtmtypes("mv_stent",68,"off")=164 + Set gtmtypes("mv_stent",68,"len")=4 + Set gtmtypes("mv_stent",68,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.run_time_save")=68 + Set gtmtypes("mv_stent",69,"name")="mv_stent.mv_st_cont.mvs_trigr.gtm_trigdsc_last_save" + Set gtmtypes("mv_stent",69,"off")=168 + Set gtmtypes("mv_stent",69,"len")=4 + Set gtmtypes("mv_stent",69,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.gtm_trigdsc_last_save")=69 + Set gtmtypes("mv_stent",70,"name")="mv_stent.mv_st_cont.mvs_trigr.gtm_trigprm_last_save" + Set gtmtypes("mv_stent",70,"off")=172 + Set gtmtypes("mv_stent",70,"len")=4 + Set gtmtypes("mv_stent",70,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.gtm_trigprm_last_save")=70 + Set gtmtypes("mv_stent",71,"name")="mv_stent.mv_st_cont.mvs_tp_holder" + Set gtmtypes("mv_stent",71,"off")=4 + Set gtmtypes("mv_stent",71,"len")=36 + Set gtmtypes("mv_stent",71,"type")="mvs_tphold_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder")=71 + Set gtmtypes("mv_stent",72,"name")="mv_stent.mv_st_cont.mvs_tp_holder.tphold_tlevel" + Set gtmtypes("mv_stent",72,"off")=4 + Set gtmtypes("mv_stent",72,"len")=4 + Set gtmtypes("mv_stent",72,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder.tphold_tlevel")=72 + Set gtmtypes("mv_stent",73,"name")="mv_stent.mv_st_cont.mvs_tp_holder.ztwormhole_save" + Set gtmtypes("mv_stent",73,"off")=8 + Set gtmtypes("mv_stent",73,"len")=32 + Set gtmtypes("mv_stent",73,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder.ztwormhole_save")=73 + Set gtmtypes("mv_stent",74,"name")="mv_stent.mv_st_cont.mvs_rstrtpc" + Set gtmtypes("mv_stent",74,"off")=4 + Set gtmtypes("mv_stent",74,"len")=8 + Set gtmtypes("mv_stent",74,"type")="mvs_rstrtpc_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc")=74 + Set gtmtypes("mv_stent",75,"name")="mv_stent.mv_st_cont.mvs_rstrtpc.restart_pc_save" + Set gtmtypes("mv_stent",75,"off")=4 + Set gtmtypes("mv_stent",75,"len")=4 + Set gtmtypes("mv_stent",75,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc.restart_pc_save")=75 + Set gtmtypes("mv_stent",76,"name")="mv_stent.mv_st_cont.mvs_rstrtpc.restart_ctxt_save" + Set gtmtypes("mv_stent",76,"off")=8 + Set gtmtypes("mv_stent",76,"len")=4 + Set gtmtypes("mv_stent",76,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc.restart_ctxt_save")=76 + Set gtmtypes("mv_stent",77,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv" + Set gtmtypes("mv_stent",77,"off")=4 + Set gtmtypes("mv_stent",77,"len")=32 + Set gtmtypes("mv_stent",77,"type")="mvs_mrgzwrsv_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv")=77 + Set gtmtypes("mv_stent",78,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_merge_args" + Set gtmtypes("mv_stent",78,"off")=4 + Set gtmtypes("mv_stent",78,"len")=4 + Set gtmtypes("mv_stent",78,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_merge_args")=78 + Set gtmtypes("mv_stent",79,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwrtacindx" + Set gtmtypes("mv_stent",79,"off")=8 + Set gtmtypes("mv_stent",79,"len")=4 + Set gtmtypes("mv_stent",79,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwrtacindx")=79 + Set gtmtypes("mv_stent",80,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_in_zwrite" + Set gtmtypes("mv_stent",80,"off")=12 + Set gtmtypes("mv_stent",80,"len")=4 + Set gtmtypes("mv_stent",80,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_in_zwrite")=80 + Set gtmtypes("mv_stent",81,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_mglvnp" + Set gtmtypes("mv_stent",81,"off")=16 + Set gtmtypes("mv_stent",81,"len")=4 + Set gtmtypes("mv_stent",81,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_mglvnp")=81 + Set gtmtypes("mv_stent",82,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_gvzwrite_block" + Set gtmtypes("mv_stent",82,"off")=20 + Set gtmtypes("mv_stent",82,"len")=4 + Set gtmtypes("mv_stent",82,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_gvzwrite_block")=82 + Set gtmtypes("mv_stent",83,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_lvzwrite_block" + Set gtmtypes("mv_stent",83,"off")=24 + Set gtmtypes("mv_stent",83,"len")=4 + Set gtmtypes("mv_stent",83,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_lvzwrite_block")=83 + Set gtmtypes("mv_stent",84,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwr_output" + Set gtmtypes("mv_stent",84,"off")=28 + Set gtmtypes("mv_stent",84,"len")=4 + Set gtmtypes("mv_stent",84,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwr_output")=84 + Set gtmtypes("mv_stent",85,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwrhtab" + Set gtmtypes("mv_stent",85,"off")=32 + Set gtmtypes("mv_stent",85,"len")=4 + Set gtmtypes("mv_stent",85,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwrhtab")=85 + Set gtmtypes("mv_stent",86,"name")="mv_stent.mv_st_cont.mvs_zintcmd" + Set gtmtypes("mv_stent",86,"off")=4 + Set gtmtypes("mv_stent",86,"len")=28 + Set gtmtypes("mv_stent",86,"type")="mvs_zintcmd_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd")=86 + Set gtmtypes("mv_stent",87,"name")="mv_stent.mv_st_cont.mvs_zintcmd.command" + Set gtmtypes("mv_stent",87,"off")=4 + Set gtmtypes("mv_stent",87,"len")=4 + Set gtmtypes("mv_stent",87,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.command")=87 + Set gtmtypes("mv_stent",88,"name")="mv_stent.mv_st_cont.mvs_zintcmd.end_or_remain" + Set gtmtypes("mv_stent",88,"off")=8 + Set gtmtypes("mv_stent",88,"len")=8 + Set gtmtypes("mv_stent",88,"type")="ABS_TIME" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.end_or_remain")=88 + Set gtmtypes("mv_stent",89,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_pc_check" + Set gtmtypes("mv_stent",89,"off")=16 + Set gtmtypes("mv_stent",89,"len")=4 + Set gtmtypes("mv_stent",89,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_pc_check")=89 + Set gtmtypes("mv_stent",90,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_ctxt_check" + Set gtmtypes("mv_stent",90,"off")=20 + Set gtmtypes("mv_stent",90,"len")=4 + Set gtmtypes("mv_stent",90,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_ctxt_check")=90 + Set gtmtypes("mv_stent",91,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_pc_prior" + Set gtmtypes("mv_stent",91,"off")=24 + Set gtmtypes("mv_stent",91,"len")=4 + Set gtmtypes("mv_stent",91,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_pc_prior")=91 + Set gtmtypes("mv_stent",92,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_ctxt_prior" + Set gtmtypes("mv_stent",92,"off")=28 + Set gtmtypes("mv_stent",92,"len")=4 + Set gtmtypes("mv_stent",92,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_ctxt_prior")=92 + Set gtmtypes("mv_stent",93,"name")="mv_stent.mv_st_cont.mvs_tval" + Set gtmtypes("mv_stent",93,"off")=4 + Set gtmtypes("mv_stent",93,"len")=4 + Set gtmtypes("mv_stent",93,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tval")=93 + Set gtmtypes("mv_stent",94,"name")="mv_stent.mv_st_cont.mvs_storig" + Set gtmtypes("mv_stent",94,"off")=4 + Set gtmtypes("mv_stent",94,"len")=4 + Set gtmtypes("mv_stent",94,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_storig")=94 + ; + Set gtmtypes("mval")="struct" + Set gtmtypes("mval",0)=9 + Set gtmtypes("mval","len")=32 + Set gtmtypes("mval",1,"name")="mval.mvtype" + Set gtmtypes("mval",1,"off")=0 + Set gtmtypes("mval",1,"len")=2 + Set gtmtypes("mval",1,"type")="unsigned-short" + Set gtmtypfldindx("mval","mvtype")=1 + Set gtmtypes("mval",2,"name")="mval.fnpc_indx" + Set gtmtypes("mval",2,"off")=3 + Set gtmtypes("mval",2,"len")=1 + Set gtmtypes("mval",2,"type")="unsigned-char" + Set gtmtypfldindx("mval","fnpc_indx")=2 + Set gtmtypes("mval",3,"name")="mval.utfcgr_indx" + Set gtmtypes("mval",3,"off")=4 + Set gtmtypes("mval",3,"len")=4 + Set gtmtypes("mval",3,"type")="unsigned-int" + Set gtmtypfldindx("mval","utfcgr_indx")=3 + Set gtmtypes("mval",4,"name")="mval.filler2" + Set gtmtypes("mval",4,"off")=8 + Set gtmtypes("mval",4,"len")=4 + Set gtmtypes("mval",4,"type")="unsigned-int" + Set gtmtypfldindx("mval","filler2")=4 + Set gtmtypes("mval",5,"name")="mval.m" + Set gtmtypes("mval",5,"off")=12 + Set gtmtypes("mval",5,"len")=8 + Set gtmtypes("mval",5,"type")="int" + Set gtmtypfldindx("mval","m")=5 + Set gtmtypes("mval",5,"dim")=2 + Set gtmtypes("mval",6,"name")="mval.str" + Set gtmtypes("mval",6,"off")=20 + Set gtmtypes("mval",6,"len")=12 + Set gtmtypes("mval",6,"type")="mstr" + Set gtmtypfldindx("mval","str")=6 + Set gtmtypes("mval",7,"name")="mval.str.char_len" + Set gtmtypes("mval",7,"off")=20 + Set gtmtypes("mval",7,"len")=4 + Set gtmtypes("mval",7,"type")="unsigned-int" + Set gtmtypfldindx("mval","str.char_len")=7 + Set gtmtypes("mval",8,"name")="mval.str.len" + Set gtmtypes("mval",8,"off")=24 + Set gtmtypes("mval",8,"len")=4 + Set gtmtypes("mval",8,"type")="int" + Set gtmtypfldindx("mval","str.len")=8 + Set gtmtypes("mval",9,"name")="mval.str.addr" + Set gtmtypes("mval",9,"off")=28 + Set gtmtypes("mval",9,"len")=4 + Set gtmtypes("mval",9,"type")="addr" + Set gtmtypfldindx("mval","str.addr")=9 + ; + Set gtmtypes("mval_b")="struct" + Set gtmtypes("mval_b",0)=10 + Set gtmtypes("mval_b","len")=32 + Set gtmtypes("mval_b",1,"name")="mval_b.mvtype" + Set gtmtypes("mval_b",1,"off")=0 + Set gtmtypes("mval_b",1,"len")=2 + Set gtmtypes("mval_b",1,"type")="unsigned-short" + Set gtmtypfldindx("mval_b","mvtype")=1 + Set gtmtypes("mval_b",2,"name")="mval_b.sgne" + Set gtmtypes("mval_b",2,"off")=2 + Set gtmtypes("mval_b",2,"len")=1 + Set gtmtypes("mval_b",2,"type")="unsigned-char" + Set gtmtypfldindx("mval_b","sgne")=2 + Set gtmtypes("mval_b",3,"name")="mval_b.fnpc_indx" + Set gtmtypes("mval_b",3,"off")=3 + Set gtmtypes("mval_b",3,"len")=1 + Set gtmtypes("mval_b",3,"type")="unsigned-char" + Set gtmtypfldindx("mval_b","fnpc_indx")=3 + Set gtmtypes("mval_b",4,"name")="mval_b.utfcgr_indx" + Set gtmtypes("mval_b",4,"off")=4 + Set gtmtypes("mval_b",4,"len")=4 + Set gtmtypes("mval_b",4,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","utfcgr_indx")=4 + Set gtmtypes("mval_b",5,"name")="mval_b.filler2" + Set gtmtypes("mval_b",5,"off")=8 + Set gtmtypes("mval_b",5,"len")=4 + Set gtmtypes("mval_b",5,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","filler2")=5 + Set gtmtypes("mval_b",6,"name")="mval_b.m" + Set gtmtypes("mval_b",6,"off")=12 + Set gtmtypes("mval_b",6,"len")=8 + Set gtmtypes("mval_b",6,"type")="int" + Set gtmtypfldindx("mval_b","m")=6 + Set gtmtypes("mval_b",6,"dim")=2 + Set gtmtypes("mval_b",7,"name")="mval_b.str" + Set gtmtypes("mval_b",7,"off")=20 + Set gtmtypes("mval_b",7,"len")=12 + Set gtmtypes("mval_b",7,"type")="mstr" + Set gtmtypfldindx("mval_b","str")=7 + Set gtmtypes("mval_b",8,"name")="mval_b.str.char_len" + Set gtmtypes("mval_b",8,"off")=20 + Set gtmtypes("mval_b",8,"len")=4 + Set gtmtypes("mval_b",8,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","str.char_len")=8 + Set gtmtypes("mval_b",9,"name")="mval_b.str.len" + Set gtmtypes("mval_b",9,"off")=24 + Set gtmtypes("mval_b",9,"len")=4 + Set gtmtypes("mval_b",9,"type")="int" + Set gtmtypfldindx("mval_b","str.len")=9 + Set gtmtypes("mval_b",10,"name")="mval_b.str.addr" + Set gtmtypes("mval_b",10,"off")=28 + Set gtmtypes("mval_b",10,"len")=4 + Set gtmtypes("mval_b",10,"type")="addr" + Set gtmtypfldindx("mval_b","str.addr")=10 + ; + Set gtmtypes("mvar")="struct" + Set gtmtypes("mvar",0)=8 + Set gtmtypes("mvar","len")=28 + Set gtmtypes("mvar",1,"name")="mvar.lson" + Set gtmtypes("mvar",1,"off")=0 + Set gtmtypes("mvar",1,"len")=4 + Set gtmtypes("mvar",1,"type")="addr" + Set gtmtypfldindx("mvar","lson")=1 + Set gtmtypes("mvar",2,"name")="mvar.rson" + Set gtmtypes("mvar",2,"off")=4 + Set gtmtypes("mvar",2,"len")=4 + Set gtmtypes("mvar",2,"type")="addr" + Set gtmtypfldindx("mvar","rson")=2 + Set gtmtypes("mvar",3,"name")="mvar.mvidx" + Set gtmtypes("mvar",3,"off")=8 + Set gtmtypes("mvar",3,"len")=4 + Set gtmtypes("mvar",3,"type")="int" + Set gtmtypfldindx("mvar","mvidx")=3 + Set gtmtypes("mvar",4,"name")="mvar.mvname" + Set gtmtypes("mvar",4,"off")=12 + Set gtmtypes("mvar",4,"len")=12 + Set gtmtypes("mvar",4,"type")="mstr" + Set gtmtypfldindx("mvar","mvname")=4 + Set gtmtypes("mvar",5,"name")="mvar.mvname.char_len" + Set gtmtypes("mvar",5,"off")=12 + Set gtmtypes("mvar",5,"len")=4 + Set gtmtypes("mvar",5,"type")="unsigned-int" + Set gtmtypfldindx("mvar","mvname.char_len")=5 + Set gtmtypes("mvar",6,"name")="mvar.mvname.len" + Set gtmtypes("mvar",6,"off")=16 + Set gtmtypes("mvar",6,"len")=4 + Set gtmtypes("mvar",6,"type")="int" + Set gtmtypfldindx("mvar","mvname.len")=6 + Set gtmtypes("mvar",7,"name")="mvar.mvname.addr" + Set gtmtypes("mvar",7,"off")=20 + Set gtmtypes("mvar",7,"len")=4 + Set gtmtypes("mvar",7,"type")="addr" + Set gtmtypfldindx("mvar","mvname.addr")=7 + Set gtmtypes("mvar",8,"name")="mvar.last_fetch" + Set gtmtypes("mvar",8,"off")=24 + Set gtmtypes("mvar",8,"len")=4 + Set gtmtypes("mvar",8,"type")="addr" + Set gtmtypfldindx("mvar","last_fetch")=8 + ; + Set gtmtypes("mvax")="struct" + Set gtmtypes("mvax",0)=4 + Set gtmtypes("mvax","len")=16 + Set gtmtypes("mvax",1,"name")="mvax.last" + Set gtmtypes("mvax",1,"off")=0 + Set gtmtypes("mvax",1,"len")=4 + Set gtmtypes("mvax",1,"type")="addr" + Set gtmtypfldindx("mvax","last")=1 + Set gtmtypes("mvax",2,"name")="mvax.next" + Set gtmtypes("mvax",2,"off")=4 + Set gtmtypes("mvax",2,"len")=4 + Set gtmtypes("mvax",2,"type")="addr" + Set gtmtypfldindx("mvax","next")=2 + Set gtmtypes("mvax",3,"name")="mvax.var" + Set gtmtypes("mvax",3,"off")=8 + Set gtmtypes("mvax",3,"len")=4 + Set gtmtypes("mvax",3,"type")="addr" + Set gtmtypfldindx("mvax","var")=3 + Set gtmtypes("mvax",4,"name")="mvax.mvidx" + Set gtmtypes("mvax",4,"off")=12 + Set gtmtypes("mvax",4,"len")=4 + Set gtmtypes("mvax",4,"type")="int" + Set gtmtypfldindx("mvax","mvidx")=4 + ; + Set gtmtypes("mvs_mrgzwrsv_struct")="struct" + Set gtmtypes("mvs_mrgzwrsv_struct",0)=8 + Set gtmtypes("mvs_mrgzwrsv_struct","len")=32 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"name")="mvs_mrgzwrsv_struct.save_merge_args" + Set gtmtypes("mvs_mrgzwrsv_struct",1,"off")=0 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"type")="int" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_merge_args")=1 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"name")="mvs_mrgzwrsv_struct.save_zwrtacindx" + Set gtmtypes("mvs_mrgzwrsv_struct",2,"off")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwrtacindx")=2 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"name")="mvs_mrgzwrsv_struct.save_in_zwrite" + Set gtmtypes("mvs_mrgzwrsv_struct",3,"off")=8 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"type")="boolean_t" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_in_zwrite")=3 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"name")="mvs_mrgzwrsv_struct.save_mglvnp" + Set gtmtypes("mvs_mrgzwrsv_struct",4,"off")=12 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_mglvnp")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"name")="mvs_mrgzwrsv_struct.save_gvzwrite_block" + Set gtmtypes("mvs_mrgzwrsv_struct",5,"off")=16 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_gvzwrite_block")=5 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"name")="mvs_mrgzwrsv_struct.save_lvzwrite_block" + Set gtmtypes("mvs_mrgzwrsv_struct",6,"off")=20 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_lvzwrite_block")=6 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"name")="mvs_mrgzwrsv_struct.save_zwr_output" + Set gtmtypes("mvs_mrgzwrsv_struct",7,"off")=24 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwr_output")=7 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"name")="mvs_mrgzwrsv_struct.save_zwrhtab" + Set gtmtypes("mvs_mrgzwrsv_struct",8,"off")=28 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwrhtab")=8 + ; + Set gtmtypes("mvs_ntab_struct")="struct" + Set gtmtypes("mvs_ntab_struct",0)=3 + Set gtmtypes("mvs_ntab_struct","len")=12 + Set gtmtypes("mvs_ntab_struct",1,"name")="mvs_ntab_struct.hte_addr" + Set gtmtypes("mvs_ntab_struct",1,"off")=0 + Set gtmtypes("mvs_ntab_struct",1,"len")=4 + Set gtmtypes("mvs_ntab_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_ntab_struct","hte_addr")=1 + Set gtmtypes("mvs_ntab_struct",2,"name")="mvs_ntab_struct.save_value" + Set gtmtypes("mvs_ntab_struct",2,"off")=4 + Set gtmtypes("mvs_ntab_struct",2,"len")=4 + Set gtmtypes("mvs_ntab_struct",2,"type")="addr" + Set gtmtypfldindx("mvs_ntab_struct","save_value")=2 + Set gtmtypes("mvs_ntab_struct",3,"name")="mvs_ntab_struct.nam_addr" + Set gtmtypes("mvs_ntab_struct",3,"off")=8 + Set gtmtypes("mvs_ntab_struct",3,"len")=4 + Set gtmtypes("mvs_ntab_struct",3,"type")="addr" + Set gtmtypfldindx("mvs_ntab_struct","nam_addr")=3 + ; + Set gtmtypes("mvs_nval_struct")="struct" + Set gtmtypes("mvs_nval_struct",0)=12 + Set gtmtypes("mvs_nval_struct","len")=36 + Set gtmtypes("mvs_nval_struct",1,"name")="mvs_nval_struct.mvs_val" + Set gtmtypes("mvs_nval_struct",1,"off")=0 + Set gtmtypes("mvs_nval_struct",1,"len")=4 + Set gtmtypes("mvs_nval_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_val")=1 + Set gtmtypes("mvs_nval_struct",2,"name")="mvs_nval_struct.mvs_ptab" + Set gtmtypes("mvs_nval_struct",2,"off")=4 + Set gtmtypes("mvs_nval_struct",2,"len")=12 + Set gtmtypes("mvs_nval_struct",2,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab")=2 + Set gtmtypes("mvs_nval_struct",3,"name")="mvs_nval_struct.mvs_ptab.hte_addr" + Set gtmtypes("mvs_nval_struct",3,"off")=4 + Set gtmtypes("mvs_nval_struct",3,"len")=4 + Set gtmtypes("mvs_nval_struct",3,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab.hte_addr")=3 + Set gtmtypes("mvs_nval_struct",4,"name")="mvs_nval_struct.mvs_ptab.save_value" + Set gtmtypes("mvs_nval_struct",4,"off")=8 + Set gtmtypes("mvs_nval_struct",4,"len")=4 + Set gtmtypes("mvs_nval_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab.save_value")=4 + Set gtmtypes("mvs_nval_struct",5,"name")="mvs_nval_struct.mvs_ptab.nam_addr" + Set gtmtypes("mvs_nval_struct",5,"off")=12 + Set gtmtypes("mvs_nval_struct",5,"len")=4 + Set gtmtypes("mvs_nval_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab.nam_addr")=5 + Set gtmtypes("mvs_nval_struct",6,"name")="mvs_nval_struct.name" + Set gtmtypes("mvs_nval_struct",6,"off")=16 + Set gtmtypes("mvs_nval_struct",6,"len")=20 + Set gtmtypes("mvs_nval_struct",6,"type")="mname_entry" + Set gtmtypfldindx("mvs_nval_struct","name")=6 + Set gtmtypes("mvs_nval_struct",7,"name")="mvs_nval_struct.name.var_name" + Set gtmtypes("mvs_nval_struct",7,"off")=16 + Set gtmtypes("mvs_nval_struct",7,"len")=12 + Set gtmtypes("mvs_nval_struct",7,"type")="mstr" + Set gtmtypfldindx("mvs_nval_struct","name.var_name")=7 + Set gtmtypes("mvs_nval_struct",8,"name")="mvs_nval_struct.name.var_name.char_len" + Set gtmtypes("mvs_nval_struct",8,"off")=16 + Set gtmtypes("mvs_nval_struct",8,"len")=4 + Set gtmtypes("mvs_nval_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("mvs_nval_struct","name.var_name.char_len")=8 + Set gtmtypes("mvs_nval_struct",9,"name")="mvs_nval_struct.name.var_name.len" + Set gtmtypes("mvs_nval_struct",9,"off")=20 + Set gtmtypes("mvs_nval_struct",9,"len")=4 + Set gtmtypes("mvs_nval_struct",9,"type")="int" + Set gtmtypfldindx("mvs_nval_struct","name.var_name.len")=9 + Set gtmtypes("mvs_nval_struct",10,"name")="mvs_nval_struct.name.var_name.addr" + Set gtmtypes("mvs_nval_struct",10,"off")=24 + Set gtmtypes("mvs_nval_struct",10,"len")=4 + Set gtmtypes("mvs_nval_struct",10,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","name.var_name.addr")=10 + Set gtmtypes("mvs_nval_struct",11,"name")="mvs_nval_struct.name.hash_code" + Set gtmtypes("mvs_nval_struct",11,"off")=28 + Set gtmtypes("mvs_nval_struct",11,"len")=4 + Set gtmtypes("mvs_nval_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("mvs_nval_struct","name.hash_code")=11 + Set gtmtypes("mvs_nval_struct",12,"name")="mvs_nval_struct.name.marked" + Set gtmtypes("mvs_nval_struct",12,"off")=32 + Set gtmtypes("mvs_nval_struct",12,"len")=4 + Set gtmtypes("mvs_nval_struct",12,"type")="boolean_t" + Set gtmtypfldindx("mvs_nval_struct","name.marked")=12 + ; + Set gtmtypes("mvs_pval_struct")="struct" + Set gtmtypes("mvs_pval_struct",0)=5 + Set gtmtypes("mvs_pval_struct","len")=16 + Set gtmtypes("mvs_pval_struct",1,"name")="mvs_pval_struct.mvs_val" + Set gtmtypes("mvs_pval_struct",1,"off")=0 + Set gtmtypes("mvs_pval_struct",1,"len")=4 + Set gtmtypes("mvs_pval_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_val")=1 + Set gtmtypes("mvs_pval_struct",2,"name")="mvs_pval_struct.mvs_ptab" + Set gtmtypes("mvs_pval_struct",2,"off")=4 + Set gtmtypes("mvs_pval_struct",2,"len")=12 + Set gtmtypes("mvs_pval_struct",2,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab")=2 + Set gtmtypes("mvs_pval_struct",3,"name")="mvs_pval_struct.mvs_ptab.hte_addr" + Set gtmtypes("mvs_pval_struct",3,"off")=4 + Set gtmtypes("mvs_pval_struct",3,"len")=4 + Set gtmtypes("mvs_pval_struct",3,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab.hte_addr")=3 + Set gtmtypes("mvs_pval_struct",4,"name")="mvs_pval_struct.mvs_ptab.save_value" + Set gtmtypes("mvs_pval_struct",4,"off")=8 + Set gtmtypes("mvs_pval_struct",4,"len")=4 + Set gtmtypes("mvs_pval_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab.save_value")=4 + Set gtmtypes("mvs_pval_struct",5,"name")="mvs_pval_struct.mvs_ptab.nam_addr" + Set gtmtypes("mvs_pval_struct",5,"off")=12 + Set gtmtypes("mvs_pval_struct",5,"len")=4 + Set gtmtypes("mvs_pval_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab.nam_addr")=5 + ; + Set gtmtypes("mvs_rstrtpc_struct")="struct" + Set gtmtypes("mvs_rstrtpc_struct",0)=2 + Set gtmtypes("mvs_rstrtpc_struct","len")=8 + Set gtmtypes("mvs_rstrtpc_struct",1,"name")="mvs_rstrtpc_struct.restart_pc_save" + Set gtmtypes("mvs_rstrtpc_struct",1,"off")=0 + Set gtmtypes("mvs_rstrtpc_struct",1,"len")=4 + Set gtmtypes("mvs_rstrtpc_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_rstrtpc_struct","restart_pc_save")=1 + Set gtmtypes("mvs_rstrtpc_struct",2,"name")="mvs_rstrtpc_struct.restart_ctxt_save" + Set gtmtypes("mvs_rstrtpc_struct",2,"off")=4 + Set gtmtypes("mvs_rstrtpc_struct",2,"len")=4 + Set gtmtypes("mvs_rstrtpc_struct",2,"type")="addr" + Set gtmtypfldindx("mvs_rstrtpc_struct","restart_ctxt_save")=2 + ; + Set gtmtypes("mvs_tphold_struct")="struct" + Set gtmtypes("mvs_tphold_struct",0)=11 + Set gtmtypes("mvs_tphold_struct","len")=36 + Set gtmtypes("mvs_tphold_struct",1,"name")="mvs_tphold_struct.tphold_tlevel" + Set gtmtypes("mvs_tphold_struct",1,"off")=0 + Set gtmtypes("mvs_tphold_struct",1,"len")=4 + Set gtmtypes("mvs_tphold_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","tphold_tlevel")=1 + Set gtmtypes("mvs_tphold_struct",2,"name")="mvs_tphold_struct.ztwormhole_save" + Set gtmtypes("mvs_tphold_struct",2,"off")=4 + Set gtmtypes("mvs_tphold_struct",2,"len")=32 + Set gtmtypes("mvs_tphold_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save")=2 + Set gtmtypes("mvs_tphold_struct",3,"name")="mvs_tphold_struct.ztwormhole_save.mvtype" + Set gtmtypes("mvs_tphold_struct",3,"off")=4 + Set gtmtypes("mvs_tphold_struct",3,"len")=2 + Set gtmtypes("mvs_tphold_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.mvtype")=3 + Set gtmtypes("mvs_tphold_struct",4,"name")="mvs_tphold_struct.ztwormhole_save.fnpc_indx" + Set gtmtypes("mvs_tphold_struct",4,"off")=7 + Set gtmtypes("mvs_tphold_struct",4,"len")=1 + Set gtmtypes("mvs_tphold_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.fnpc_indx")=4 + Set gtmtypes("mvs_tphold_struct",5,"name")="mvs_tphold_struct.ztwormhole_save.utfcgr_indx" + Set gtmtypes("mvs_tphold_struct",5,"off")=8 + Set gtmtypes("mvs_tphold_struct",5,"len")=4 + Set gtmtypes("mvs_tphold_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.utfcgr_indx")=5 + Set gtmtypes("mvs_tphold_struct",6,"name")="mvs_tphold_struct.ztwormhole_save.filler2" + Set gtmtypes("mvs_tphold_struct",6,"off")=12 + Set gtmtypes("mvs_tphold_struct",6,"len")=4 + Set gtmtypes("mvs_tphold_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.filler2")=6 + Set gtmtypes("mvs_tphold_struct",7,"name")="mvs_tphold_struct.ztwormhole_save.m" + Set gtmtypes("mvs_tphold_struct",7,"off")=16 + Set gtmtypes("mvs_tphold_struct",7,"len")=8 + Set gtmtypes("mvs_tphold_struct",7,"type")="int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.m")=7 + Set gtmtypes("mvs_tphold_struct",7,"dim")=2 + Set gtmtypes("mvs_tphold_struct",8,"name")="mvs_tphold_struct.ztwormhole_save.str" + Set gtmtypes("mvs_tphold_struct",8,"off")=24 + Set gtmtypes("mvs_tphold_struct",8,"len")=12 + Set gtmtypes("mvs_tphold_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str")=8 + Set gtmtypes("mvs_tphold_struct",9,"name")="mvs_tphold_struct.ztwormhole_save.str.char_len" + Set gtmtypes("mvs_tphold_struct",9,"off")=24 + Set gtmtypes("mvs_tphold_struct",9,"len")=4 + Set gtmtypes("mvs_tphold_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.char_len")=9 + Set gtmtypes("mvs_tphold_struct",10,"name")="mvs_tphold_struct.ztwormhole_save.str.len" + Set gtmtypes("mvs_tphold_struct",10,"off")=28 + Set gtmtypes("mvs_tphold_struct",10,"len")=4 + Set gtmtypes("mvs_tphold_struct",10,"type")="int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.len")=10 + Set gtmtypes("mvs_tphold_struct",11,"name")="mvs_tphold_struct.ztwormhole_save.str.addr" + Set gtmtypes("mvs_tphold_struct",11,"off")=32 + Set gtmtypes("mvs_tphold_struct",11,"len")=4 + Set gtmtypes("mvs_tphold_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.addr")=11 + ; + Set gtmtypes("mvs_trigr_struct")="struct" + Set gtmtypes("mvs_trigr_struct",0)=50 + Set gtmtypes("mvs_trigr_struct","len")=172 + Set gtmtypes("mvs_trigr_struct",1,"name")="mvs_trigr_struct.saved_dollar_truth" + Set gtmtypes("mvs_trigr_struct",1,"off")=0 + Set gtmtypes("mvs_trigr_struct",1,"len")=4 + Set gtmtypes("mvs_trigr_struct",1,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","saved_dollar_truth")=1 + Set gtmtypes("mvs_trigr_struct",2,"name")="mvs_trigr_struct.savtarg" + Set gtmtypes("mvs_trigr_struct",2,"off")=4 + Set gtmtypes("mvs_trigr_struct",2,"len")=32 + Set gtmtypes("mvs_trigr_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","savtarg")=2 + Set gtmtypes("mvs_trigr_struct",3,"name")="mvs_trigr_struct.savtarg.mvtype" + Set gtmtypes("mvs_trigr_struct",3,"off")=4 + Set gtmtypes("mvs_trigr_struct",3,"len")=2 + Set gtmtypes("mvs_trigr_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.mvtype")=3 + Set gtmtypes("mvs_trigr_struct",4,"name")="mvs_trigr_struct.savtarg.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",4,"off")=7 + Set gtmtypes("mvs_trigr_struct",4,"len")=1 + Set gtmtypes("mvs_trigr_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.fnpc_indx")=4 + Set gtmtypes("mvs_trigr_struct",5,"name")="mvs_trigr_struct.savtarg.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",5,"off")=8 + Set gtmtypes("mvs_trigr_struct",5,"len")=4 + Set gtmtypes("mvs_trigr_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.utfcgr_indx")=5 + Set gtmtypes("mvs_trigr_struct",6,"name")="mvs_trigr_struct.savtarg.filler2" + Set gtmtypes("mvs_trigr_struct",6,"off")=12 + Set gtmtypes("mvs_trigr_struct",6,"len")=4 + Set gtmtypes("mvs_trigr_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.filler2")=6 + Set gtmtypes("mvs_trigr_struct",7,"name")="mvs_trigr_struct.savtarg.m" + Set gtmtypes("mvs_trigr_struct",7,"off")=16 + Set gtmtypes("mvs_trigr_struct",7,"len")=8 + Set gtmtypes("mvs_trigr_struct",7,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.m")=7 + Set gtmtypes("mvs_trigr_struct",7,"dim")=2 + Set gtmtypes("mvs_trigr_struct",8,"name")="mvs_trigr_struct.savtarg.str" + Set gtmtypes("mvs_trigr_struct",8,"off")=24 + Set gtmtypes("mvs_trigr_struct",8,"len")=12 + Set gtmtypes("mvs_trigr_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str")=8 + Set gtmtypes("mvs_trigr_struct",9,"name")="mvs_trigr_struct.savtarg.str.char_len" + Set gtmtypes("mvs_trigr_struct",9,"off")=24 + Set gtmtypes("mvs_trigr_struct",9,"len")=4 + Set gtmtypes("mvs_trigr_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.char_len")=9 + Set gtmtypes("mvs_trigr_struct",10,"name")="mvs_trigr_struct.savtarg.str.len" + Set gtmtypes("mvs_trigr_struct",10,"off")=28 + Set gtmtypes("mvs_trigr_struct",10,"len")=4 + Set gtmtypes("mvs_trigr_struct",10,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.len")=10 + Set gtmtypes("mvs_trigr_struct",11,"name")="mvs_trigr_struct.savtarg.str.addr" + Set gtmtypes("mvs_trigr_struct",11,"off")=32 + Set gtmtypes("mvs_trigr_struct",11,"len")=4 + Set gtmtypes("mvs_trigr_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.addr")=11 + Set gtmtypes("mvs_trigr_struct",12,"name")="mvs_trigr_struct.savextref" + Set gtmtypes("mvs_trigr_struct",12,"off")=36 + Set gtmtypes("mvs_trigr_struct",12,"len")=12 + Set gtmtypes("mvs_trigr_struct",12,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","savextref")=12 + Set gtmtypes("mvs_trigr_struct",13,"name")="mvs_trigr_struct.savextref.char_len" + Set gtmtypes("mvs_trigr_struct",13,"off")=36 + Set gtmtypes("mvs_trigr_struct",13,"len")=4 + Set gtmtypes("mvs_trigr_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savextref.char_len")=13 + Set gtmtypes("mvs_trigr_struct",14,"name")="mvs_trigr_struct.savextref.len" + Set gtmtypes("mvs_trigr_struct",14,"off")=40 + Set gtmtypes("mvs_trigr_struct",14,"len")=4 + Set gtmtypes("mvs_trigr_struct",14,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savextref.len")=14 + Set gtmtypes("mvs_trigr_struct",15,"name")="mvs_trigr_struct.savextref.addr" + Set gtmtypes("mvs_trigr_struct",15,"off")=44 + Set gtmtypes("mvs_trigr_struct",15,"len")=4 + Set gtmtypes("mvs_trigr_struct",15,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","savextref.addr")=15 + Set gtmtypes("mvs_trigr_struct",16,"name")="mvs_trigr_struct.ztvalue_changed_ptr" + Set gtmtypes("mvs_trigr_struct",16,"off")=48 + Set gtmtypes("mvs_trigr_struct",16,"len")=4 + Set gtmtypes("mvs_trigr_struct",16,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztvalue_changed_ptr")=16 + Set gtmtypes("mvs_trigr_struct",17,"name")="mvs_trigr_struct.ztvalue_save" + Set gtmtypes("mvs_trigr_struct",17,"off")=52 + Set gtmtypes("mvs_trigr_struct",17,"len")=4 + Set gtmtypes("mvs_trigr_struct",17,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztvalue_save")=17 + Set gtmtypes("mvs_trigr_struct",18,"name")="mvs_trigr_struct.ztname_save" + Set gtmtypes("mvs_trigr_struct",18,"off")=56 + Set gtmtypes("mvs_trigr_struct",18,"len")=4 + Set gtmtypes("mvs_trigr_struct",18,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztname_save")=18 + Set gtmtypes("mvs_trigr_struct",19,"name")="mvs_trigr_struct.ztdata_save" + Set gtmtypes("mvs_trigr_struct",19,"off")=60 + Set gtmtypes("mvs_trigr_struct",19,"len")=4 + Set gtmtypes("mvs_trigr_struct",19,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztdata_save")=19 + Set gtmtypes("mvs_trigr_struct",20,"name")="mvs_trigr_struct.ztdelim_save" + Set gtmtypes("mvs_trigr_struct",20,"off")=64 + Set gtmtypes("mvs_trigr_struct",20,"len")=4 + Set gtmtypes("mvs_trigr_struct",20,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztdelim_save")=20 + Set gtmtypes("mvs_trigr_struct",21,"name")="mvs_trigr_struct.ztoldval_save" + Set gtmtypes("mvs_trigr_struct",21,"off")=68 + Set gtmtypes("mvs_trigr_struct",21,"len")=4 + Set gtmtypes("mvs_trigr_struct",21,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztoldval_save")=21 + Set gtmtypes("mvs_trigr_struct",22,"name")="mvs_trigr_struct.ztriggerop_save" + Set gtmtypes("mvs_trigr_struct",22,"off")=72 + Set gtmtypes("mvs_trigr_struct",22,"len")=4 + Set gtmtypes("mvs_trigr_struct",22,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztriggerop_save")=22 + Set gtmtypes("mvs_trigr_struct",23,"name")="mvs_trigr_struct.ztupdate_save" + Set gtmtypes("mvs_trigr_struct",23,"off")=76 + Set gtmtypes("mvs_trigr_struct",23,"len")=4 + Set gtmtypes("mvs_trigr_struct",23,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztupdate_save")=23 + Set gtmtypes("mvs_trigr_struct",24,"name")="mvs_trigr_struct.ctxt_save" + Set gtmtypes("mvs_trigr_struct",24,"off")=80 + Set gtmtypes("mvs_trigr_struct",24,"len")=4 + Set gtmtypes("mvs_trigr_struct",24,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ctxt_save")=24 + Set gtmtypes("mvs_trigr_struct",25,"name")="mvs_trigr_struct.gtm_trigger_depth_save" + Set gtmtypes("mvs_trigr_struct",25,"off")=84 + Set gtmtypes("mvs_trigr_struct",25,"len")=4 + Set gtmtypes("mvs_trigr_struct",25,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","gtm_trigger_depth_save")=25 + Set gtmtypes("mvs_trigr_struct",26,"name")="mvs_trigr_struct.dollar_etrap_save" + Set gtmtypes("mvs_trigr_struct",26,"off")=88 + Set gtmtypes("mvs_trigr_struct",26,"len")=32 + Set gtmtypes("mvs_trigr_struct",26,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save")=26 + Set gtmtypes("mvs_trigr_struct",27,"name")="mvs_trigr_struct.dollar_etrap_save.mvtype" + Set gtmtypes("mvs_trigr_struct",27,"off")=88 + Set gtmtypes("mvs_trigr_struct",27,"len")=2 + Set gtmtypes("mvs_trigr_struct",27,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.mvtype")=27 + Set gtmtypes("mvs_trigr_struct",28,"name")="mvs_trigr_struct.dollar_etrap_save.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",28,"off")=91 + Set gtmtypes("mvs_trigr_struct",28,"len")=1 + Set gtmtypes("mvs_trigr_struct",28,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.fnpc_indx")=28 + Set gtmtypes("mvs_trigr_struct",29,"name")="mvs_trigr_struct.dollar_etrap_save.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",29,"off")=92 + Set gtmtypes("mvs_trigr_struct",29,"len")=4 + Set gtmtypes("mvs_trigr_struct",29,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.utfcgr_indx")=29 + Set gtmtypes("mvs_trigr_struct",30,"name")="mvs_trigr_struct.dollar_etrap_save.filler2" + Set gtmtypes("mvs_trigr_struct",30,"off")=96 + Set gtmtypes("mvs_trigr_struct",30,"len")=4 + Set gtmtypes("mvs_trigr_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.filler2")=30 + Set gtmtypes("mvs_trigr_struct",31,"name")="mvs_trigr_struct.dollar_etrap_save.m" + Set gtmtypes("mvs_trigr_struct",31,"off")=100 + Set gtmtypes("mvs_trigr_struct",31,"len")=8 + Set gtmtypes("mvs_trigr_struct",31,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.m")=31 + Set gtmtypes("mvs_trigr_struct",31,"dim")=2 + Set gtmtypes("mvs_trigr_struct",32,"name")="mvs_trigr_struct.dollar_etrap_save.str" + Set gtmtypes("mvs_trigr_struct",32,"off")=108 + Set gtmtypes("mvs_trigr_struct",32,"len")=12 + Set gtmtypes("mvs_trigr_struct",32,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str")=32 + Set gtmtypes("mvs_trigr_struct",33,"name")="mvs_trigr_struct.dollar_etrap_save.str.char_len" + Set gtmtypes("mvs_trigr_struct",33,"off")=108 + Set gtmtypes("mvs_trigr_struct",33,"len")=4 + Set gtmtypes("mvs_trigr_struct",33,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.char_len")=33 + Set gtmtypes("mvs_trigr_struct",34,"name")="mvs_trigr_struct.dollar_etrap_save.str.len" + Set gtmtypes("mvs_trigr_struct",34,"off")=112 + Set gtmtypes("mvs_trigr_struct",34,"len")=4 + Set gtmtypes("mvs_trigr_struct",34,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.len")=34 + Set gtmtypes("mvs_trigr_struct",35,"name")="mvs_trigr_struct.dollar_etrap_save.str.addr" + Set gtmtypes("mvs_trigr_struct",35,"off")=116 + Set gtmtypes("mvs_trigr_struct",35,"len")=4 + Set gtmtypes("mvs_trigr_struct",35,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.addr")=35 + Set gtmtypes("mvs_trigr_struct",36,"name")="mvs_trigr_struct.dollar_ztrap_save" + Set gtmtypes("mvs_trigr_struct",36,"off")=120 + Set gtmtypes("mvs_trigr_struct",36,"len")=32 + Set gtmtypes("mvs_trigr_struct",36,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save")=36 + Set gtmtypes("mvs_trigr_struct",37,"name")="mvs_trigr_struct.dollar_ztrap_save.mvtype" + Set gtmtypes("mvs_trigr_struct",37,"off")=120 + Set gtmtypes("mvs_trigr_struct",37,"len")=2 + Set gtmtypes("mvs_trigr_struct",37,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.mvtype")=37 + Set gtmtypes("mvs_trigr_struct",38,"name")="mvs_trigr_struct.dollar_ztrap_save.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",38,"off")=123 + Set gtmtypes("mvs_trigr_struct",38,"len")=1 + Set gtmtypes("mvs_trigr_struct",38,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.fnpc_indx")=38 + Set gtmtypes("mvs_trigr_struct",39,"name")="mvs_trigr_struct.dollar_ztrap_save.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",39,"off")=124 + Set gtmtypes("mvs_trigr_struct",39,"len")=4 + Set gtmtypes("mvs_trigr_struct",39,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.utfcgr_indx")=39 + Set gtmtypes("mvs_trigr_struct",40,"name")="mvs_trigr_struct.dollar_ztrap_save.filler2" + Set gtmtypes("mvs_trigr_struct",40,"off")=128 + Set gtmtypes("mvs_trigr_struct",40,"len")=4 + Set gtmtypes("mvs_trigr_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.filler2")=40 + Set gtmtypes("mvs_trigr_struct",41,"name")="mvs_trigr_struct.dollar_ztrap_save.m" + Set gtmtypes("mvs_trigr_struct",41,"off")=132 + Set gtmtypes("mvs_trigr_struct",41,"len")=8 + Set gtmtypes("mvs_trigr_struct",41,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.m")=41 + Set gtmtypes("mvs_trigr_struct",41,"dim")=2 + Set gtmtypes("mvs_trigr_struct",42,"name")="mvs_trigr_struct.dollar_ztrap_save.str" + Set gtmtypes("mvs_trigr_struct",42,"off")=140 + Set gtmtypes("mvs_trigr_struct",42,"len")=12 + Set gtmtypes("mvs_trigr_struct",42,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str")=42 + Set gtmtypes("mvs_trigr_struct",43,"name")="mvs_trigr_struct.dollar_ztrap_save.str.char_len" + Set gtmtypes("mvs_trigr_struct",43,"off")=140 + Set gtmtypes("mvs_trigr_struct",43,"len")=4 + Set gtmtypes("mvs_trigr_struct",43,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.char_len")=43 + Set gtmtypes("mvs_trigr_struct",44,"name")="mvs_trigr_struct.dollar_ztrap_save.str.len" + Set gtmtypes("mvs_trigr_struct",44,"off")=144 + Set gtmtypes("mvs_trigr_struct",44,"len")=4 + Set gtmtypes("mvs_trigr_struct",44,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.len")=44 + Set gtmtypes("mvs_trigr_struct",45,"name")="mvs_trigr_struct.dollar_ztrap_save.str.addr" + Set gtmtypes("mvs_trigr_struct",45,"off")=148 + Set gtmtypes("mvs_trigr_struct",45,"len")=4 + Set gtmtypes("mvs_trigr_struct",45,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.addr")=45 + Set gtmtypes("mvs_trigr_struct",46,"name")="mvs_trigr_struct.ztrap_explicit_null_save" + Set gtmtypes("mvs_trigr_struct",46,"off")=152 + Set gtmtypes("mvs_trigr_struct",46,"len")=4 + Set gtmtypes("mvs_trigr_struct",46,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","ztrap_explicit_null_save")=46 + Set gtmtypes("mvs_trigr_struct",47,"name")="mvs_trigr_struct.mumps_status_save" + Set gtmtypes("mvs_trigr_struct",47,"off")=156 + Set gtmtypes("mvs_trigr_struct",47,"len")=4 + Set gtmtypes("mvs_trigr_struct",47,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","mumps_status_save")=47 + Set gtmtypes("mvs_trigr_struct",48,"name")="mvs_trigr_struct.run_time_save" + Set gtmtypes("mvs_trigr_struct",48,"off")=160 + Set gtmtypes("mvs_trigr_struct",48,"len")=4 + Set gtmtypes("mvs_trigr_struct",48,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","run_time_save")=48 + Set gtmtypes("mvs_trigr_struct",49,"name")="mvs_trigr_struct.gtm_trigdsc_last_save" + Set gtmtypes("mvs_trigr_struct",49,"off")=164 + Set gtmtypes("mvs_trigr_struct",49,"len")=4 + Set gtmtypes("mvs_trigr_struct",49,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","gtm_trigdsc_last_save")=49 + Set gtmtypes("mvs_trigr_struct",50,"name")="mvs_trigr_struct.gtm_trigprm_last_save" + Set gtmtypes("mvs_trigr_struct",50,"off")=168 + Set gtmtypes("mvs_trigr_struct",50,"len")=4 + Set gtmtypes("mvs_trigr_struct",50,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","gtm_trigprm_last_save")=50 + ; + Set gtmtypes("mvs_zintcmd_struct")="struct" + Set gtmtypes("mvs_zintcmd_struct",0)=8 + Set gtmtypes("mvs_zintcmd_struct","len")=28 + Set gtmtypes("mvs_zintcmd_struct",1,"name")="mvs_zintcmd_struct.command" + Set gtmtypes("mvs_zintcmd_struct",1,"off")=0 + Set gtmtypes("mvs_zintcmd_struct",1,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",1,"type")="int" + Set gtmtypfldindx("mvs_zintcmd_struct","command")=1 + Set gtmtypes("mvs_zintcmd_struct",2,"name")="mvs_zintcmd_struct.end_or_remain" + Set gtmtypes("mvs_zintcmd_struct",2,"off")=4 + Set gtmtypes("mvs_zintcmd_struct",2,"len")=8 + Set gtmtypes("mvs_zintcmd_struct",2,"type")="ABS_TIME" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain")=2 + Set gtmtypes("mvs_zintcmd_struct",3,"name")="mvs_zintcmd_struct.end_or_remain.at_sec" + Set gtmtypes("mvs_zintcmd_struct",3,"off")=4 + Set gtmtypes("mvs_zintcmd_struct",3,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",3,"type")="long" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain.at_sec")=3 + Set gtmtypes("mvs_zintcmd_struct",4,"name")="mvs_zintcmd_struct.end_or_remain.at_usec" + Set gtmtypes("mvs_zintcmd_struct",4,"off")=8 + Set gtmtypes("mvs_zintcmd_struct",4,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",4,"type")="long" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain.at_usec")=4 + Set gtmtypes("mvs_zintcmd_struct",5,"name")="mvs_zintcmd_struct.restart_pc_check" + Set gtmtypes("mvs_zintcmd_struct",5,"off")=12 + Set gtmtypes("mvs_zintcmd_struct",5,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_pc_check")=5 + Set gtmtypes("mvs_zintcmd_struct",6,"name")="mvs_zintcmd_struct.restart_ctxt_check" + Set gtmtypes("mvs_zintcmd_struct",6,"off")=16 + Set gtmtypes("mvs_zintcmd_struct",6,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_ctxt_check")=6 + Set gtmtypes("mvs_zintcmd_struct",7,"name")="mvs_zintcmd_struct.restart_pc_prior" + Set gtmtypes("mvs_zintcmd_struct",7,"off")=20 + Set gtmtypes("mvs_zintcmd_struct",7,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_pc_prior")=7 + Set gtmtypes("mvs_zintcmd_struct",8,"name")="mvs_zintcmd_struct.restart_ctxt_prior" + Set gtmtypes("mvs_zintcmd_struct",8,"off")=24 + Set gtmtypes("mvs_zintcmd_struct",8,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",8,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_ctxt_prior")=8 + ; + Set gtmtypes("mvs_zintdev_struct")="struct" + Set gtmtypes("mvs_zintdev_struct",0)=7 + Set gtmtypes("mvs_zintdev_struct","len")=24 + Set gtmtypes("mvs_zintdev_struct",1,"name")="mvs_zintdev_struct.io_ptr" + Set gtmtypes("mvs_zintdev_struct",1,"off")=0 + Set gtmtypes("mvs_zintdev_struct",1,"len")=4 + Set gtmtypes("mvs_zintdev_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","io_ptr")=1 + Set gtmtypes("mvs_zintdev_struct",2,"name")="mvs_zintdev_struct.buffer_valid" + Set gtmtypes("mvs_zintdev_struct",2,"off")=4 + Set gtmtypes("mvs_zintdev_struct",2,"len")=4 + Set gtmtypes("mvs_zintdev_struct",2,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintdev_struct","buffer_valid")=2 + Set gtmtypes("mvs_zintdev_struct",3,"name")="mvs_zintdev_struct.curr_sp_buffer" + Set gtmtypes("mvs_zintdev_struct",3,"off")=8 + Set gtmtypes("mvs_zintdev_struct",3,"len")=12 + Set gtmtypes("mvs_zintdev_struct",3,"type")="mstr" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer")=3 + Set gtmtypes("mvs_zintdev_struct",4,"name")="mvs_zintdev_struct.curr_sp_buffer.char_len" + Set gtmtypes("mvs_zintdev_struct",4,"off")=8 + Set gtmtypes("mvs_zintdev_struct",4,"len")=4 + Set gtmtypes("mvs_zintdev_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.char_len")=4 + Set gtmtypes("mvs_zintdev_struct",5,"name")="mvs_zintdev_struct.curr_sp_buffer.len" + Set gtmtypes("mvs_zintdev_struct",5,"off")=12 + Set gtmtypes("mvs_zintdev_struct",5,"len")=4 + Set gtmtypes("mvs_zintdev_struct",5,"type")="int" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.len")=5 + Set gtmtypes("mvs_zintdev_struct",6,"name")="mvs_zintdev_struct.curr_sp_buffer.addr" + Set gtmtypes("mvs_zintdev_struct",6,"off")=16 + Set gtmtypes("mvs_zintdev_struct",6,"len")=4 + Set gtmtypes("mvs_zintdev_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.addr")=6 + Set gtmtypes("mvs_zintdev_struct",7,"name")="mvs_zintdev_struct.socketptr" + Set gtmtypes("mvs_zintdev_struct",7,"off")=20 + Set gtmtypes("mvs_zintdev_struct",7,"len")=4 + Set gtmtypes("mvs_zintdev_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","socketptr")=7 + ; + Set gtmtypes("mvs_zintr_struct")="struct" + Set gtmtypes("mvs_zintr_struct",0)=35 + Set gtmtypes("mvs_zintr_struct","len")=120 + Set gtmtypes("mvs_zintr_struct",1,"name")="mvs_zintr_struct.saved_dollar_truth" + Set gtmtypes("mvs_zintr_struct",1,"off")=0 + Set gtmtypes("mvs_zintr_struct",1,"len")=4 + Set gtmtypes("mvs_zintr_struct",1,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintr_struct","saved_dollar_truth")=1 + Set gtmtypes("mvs_zintr_struct",2,"name")="mvs_zintr_struct.savtarg" + Set gtmtypes("mvs_zintr_struct",2,"off")=4 + Set gtmtypes("mvs_zintr_struct",2,"len")=32 + Set gtmtypes("mvs_zintr_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_zintr_struct","savtarg")=2 + Set gtmtypes("mvs_zintr_struct",3,"name")="mvs_zintr_struct.savtarg.mvtype" + Set gtmtypes("mvs_zintr_struct",3,"off")=4 + Set gtmtypes("mvs_zintr_struct",3,"len")=2 + Set gtmtypes("mvs_zintr_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.mvtype")=3 + Set gtmtypes("mvs_zintr_struct",4,"name")="mvs_zintr_struct.savtarg.fnpc_indx" + Set gtmtypes("mvs_zintr_struct",4,"off")=7 + Set gtmtypes("mvs_zintr_struct",4,"len")=1 + Set gtmtypes("mvs_zintr_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.fnpc_indx")=4 + Set gtmtypes("mvs_zintr_struct",5,"name")="mvs_zintr_struct.savtarg.utfcgr_indx" + Set gtmtypes("mvs_zintr_struct",5,"off")=8 + Set gtmtypes("mvs_zintr_struct",5,"len")=4 + Set gtmtypes("mvs_zintr_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.utfcgr_indx")=5 + Set gtmtypes("mvs_zintr_struct",6,"name")="mvs_zintr_struct.savtarg.filler2" + Set gtmtypes("mvs_zintr_struct",6,"off")=12 + Set gtmtypes("mvs_zintr_struct",6,"len")=4 + Set gtmtypes("mvs_zintr_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.filler2")=6 + Set gtmtypes("mvs_zintr_struct",7,"name")="mvs_zintr_struct.savtarg.m" + Set gtmtypes("mvs_zintr_struct",7,"off")=16 + Set gtmtypes("mvs_zintr_struct",7,"len")=8 + Set gtmtypes("mvs_zintr_struct",7,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.m")=7 + Set gtmtypes("mvs_zintr_struct",7,"dim")=2 + Set gtmtypes("mvs_zintr_struct",8,"name")="mvs_zintr_struct.savtarg.str" + Set gtmtypes("mvs_zintr_struct",8,"off")=24 + Set gtmtypes("mvs_zintr_struct",8,"len")=12 + Set gtmtypes("mvs_zintr_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str")=8 + Set gtmtypes("mvs_zintr_struct",9,"name")="mvs_zintr_struct.savtarg.str.char_len" + Set gtmtypes("mvs_zintr_struct",9,"off")=24 + Set gtmtypes("mvs_zintr_struct",9,"len")=4 + Set gtmtypes("mvs_zintr_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.char_len")=9 + Set gtmtypes("mvs_zintr_struct",10,"name")="mvs_zintr_struct.savtarg.str.len" + Set gtmtypes("mvs_zintr_struct",10,"off")=28 + Set gtmtypes("mvs_zintr_struct",10,"len")=4 + Set gtmtypes("mvs_zintr_struct",10,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.len")=10 + Set gtmtypes("mvs_zintr_struct",11,"name")="mvs_zintr_struct.savtarg.str.addr" + Set gtmtypes("mvs_zintr_struct",11,"off")=32 + Set gtmtypes("mvs_zintr_struct",11,"len")=4 + Set gtmtypes("mvs_zintr_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.addr")=11 + Set gtmtypes("mvs_zintr_struct",12,"name")="mvs_zintr_struct.savextref" + Set gtmtypes("mvs_zintr_struct",12,"off")=36 + Set gtmtypes("mvs_zintr_struct",12,"len")=12 + Set gtmtypes("mvs_zintr_struct",12,"type")="mstr" + Set gtmtypfldindx("mvs_zintr_struct","savextref")=12 + Set gtmtypes("mvs_zintr_struct",13,"name")="mvs_zintr_struct.savextref.char_len" + Set gtmtypes("mvs_zintr_struct",13,"off")=36 + Set gtmtypes("mvs_zintr_struct",13,"len")=4 + Set gtmtypes("mvs_zintr_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savextref.char_len")=13 + Set gtmtypes("mvs_zintr_struct",14,"name")="mvs_zintr_struct.savextref.len" + Set gtmtypes("mvs_zintr_struct",14,"off")=40 + Set gtmtypes("mvs_zintr_struct",14,"len")=4 + Set gtmtypes("mvs_zintr_struct",14,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savextref.len")=14 + Set gtmtypes("mvs_zintr_struct",15,"name")="mvs_zintr_struct.savextref.addr" + Set gtmtypes("mvs_zintr_struct",15,"off")=44 + Set gtmtypes("mvs_zintr_struct",15,"len")=4 + Set gtmtypes("mvs_zintr_struct",15,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","savextref.addr")=15 + Set gtmtypes("mvs_zintr_struct",16,"name")="mvs_zintr_struct.error_frame_save" + Set gtmtypes("mvs_zintr_struct",16,"off")=48 + Set gtmtypes("mvs_zintr_struct",16,"len")=4 + Set gtmtypes("mvs_zintr_struct",16,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","error_frame_save")=16 + Set gtmtypes("mvs_zintr_struct",17,"name")="mvs_zintr_struct.dollar_ecode_save" + Set gtmtypes("mvs_zintr_struct",17,"off")=52 + Set gtmtypes("mvs_zintr_struct",17,"len")=44 + Set gtmtypes("mvs_zintr_struct",17,"type")="dollar_ecode_type" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save")=17 + Set gtmtypes("mvs_zintr_struct",18,"name")="mvs_zintr_struct.dollar_ecode_save.begin" + Set gtmtypes("mvs_zintr_struct",18,"off")=52 + Set gtmtypes("mvs_zintr_struct",18,"len")=4 + Set gtmtypes("mvs_zintr_struct",18,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.begin")=18 + Set gtmtypes("mvs_zintr_struct",19,"name")="mvs_zintr_struct.dollar_ecode_save.end" + Set gtmtypes("mvs_zintr_struct",19,"off")=56 + Set gtmtypes("mvs_zintr_struct",19,"len")=4 + Set gtmtypes("mvs_zintr_struct",19,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.end")=19 + Set gtmtypes("mvs_zintr_struct",20,"name")="mvs_zintr_struct.dollar_ecode_save.top" + Set gtmtypes("mvs_zintr_struct",20,"off")=60 + Set gtmtypes("mvs_zintr_struct",20,"len")=4 + Set gtmtypes("mvs_zintr_struct",20,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.top")=20 + Set gtmtypes("mvs_zintr_struct",21,"name")="mvs_zintr_struct.dollar_ecode_save.array" + Set gtmtypes("mvs_zintr_struct",21,"off")=64 + Set gtmtypes("mvs_zintr_struct",21,"len")=4 + Set gtmtypes("mvs_zintr_struct",21,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.array")=21 + Set gtmtypes("mvs_zintr_struct",22,"name")="mvs_zintr_struct.dollar_ecode_save.index" + Set gtmtypes("mvs_zintr_struct",22,"off")=68 + Set gtmtypes("mvs_zintr_struct",22,"len")=4 + Set gtmtypes("mvs_zintr_struct",22,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.index")=22 + Set gtmtypes("mvs_zintr_struct",23,"name")="mvs_zintr_struct.dollar_ecode_save.error_last_ecode" + Set gtmtypes("mvs_zintr_struct",23,"off")=72 + Set gtmtypes("mvs_zintr_struct",23,"len")=4 + Set gtmtypes("mvs_zintr_struct",23,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_last_ecode")=23 + Set gtmtypes("mvs_zintr_struct",24,"name")="mvs_zintr_struct.dollar_ecode_save.error_last_b_line" + Set gtmtypes("mvs_zintr_struct",24,"off")=76 + Set gtmtypes("mvs_zintr_struct",24,"len")=4 + Set gtmtypes("mvs_zintr_struct",24,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_last_b_line")=24 + Set gtmtypes("mvs_zintr_struct",25,"name")="mvs_zintr_struct.dollar_ecode_save.first_ecode_error_frame" + Set gtmtypes("mvs_zintr_struct",25,"off")=80 + Set gtmtypes("mvs_zintr_struct",25,"len")=4 + Set gtmtypes("mvs_zintr_struct",25,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.first_ecode_error_frame")=25 + Set gtmtypes("mvs_zintr_struct",26,"name")="mvs_zintr_struct.dollar_ecode_save.error_rtn_addr" + Set gtmtypes("mvs_zintr_struct",26,"off")=84 + Set gtmtypes("mvs_zintr_struct",26,"len")=4 + Set gtmtypes("mvs_zintr_struct",26,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_rtn_addr")=26 + Set gtmtypes("mvs_zintr_struct",27,"name")="mvs_zintr_struct.dollar_ecode_save.error_rtn_ctxt" + Set gtmtypes("mvs_zintr_struct",27,"off")=88 + Set gtmtypes("mvs_zintr_struct",27,"len")=4 + Set gtmtypes("mvs_zintr_struct",27,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_rtn_ctxt")=27 + Set gtmtypes("mvs_zintr_struct",28,"name")="mvs_zintr_struct.dollar_ecode_save.error_return_addr" + Set gtmtypes("mvs_zintr_struct",28,"off")=92 + Set gtmtypes("mvs_zintr_struct",28,"len")=4 + Set gtmtypes("mvs_zintr_struct",28,"type")="void" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_return_addr")=28 + Set gtmtypes("mvs_zintr_struct",29,"name")="mvs_zintr_struct.dollar_stack_save" + Set gtmtypes("mvs_zintr_struct",29,"off")=96 + Set gtmtypes("mvs_zintr_struct",29,"len")=24 + Set gtmtypes("mvs_zintr_struct",29,"type")="dollar_stack_type" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save")=29 + Set gtmtypes("mvs_zintr_struct",30,"name")="mvs_zintr_struct.dollar_stack_save.begin" + Set gtmtypes("mvs_zintr_struct",30,"off")=96 + Set gtmtypes("mvs_zintr_struct",30,"len")=4 + Set gtmtypes("mvs_zintr_struct",30,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.begin")=30 + Set gtmtypes("mvs_zintr_struct",31,"name")="mvs_zintr_struct.dollar_stack_save.end" + Set gtmtypes("mvs_zintr_struct",31,"off")=100 + Set gtmtypes("mvs_zintr_struct",31,"len")=4 + Set gtmtypes("mvs_zintr_struct",31,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.end")=31 + Set gtmtypes("mvs_zintr_struct",32,"name")="mvs_zintr_struct.dollar_stack_save.top" + Set gtmtypes("mvs_zintr_struct",32,"off")=104 + Set gtmtypes("mvs_zintr_struct",32,"len")=4 + Set gtmtypes("mvs_zintr_struct",32,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.top")=32 + Set gtmtypes("mvs_zintr_struct",33,"name")="mvs_zintr_struct.dollar_stack_save.array" + Set gtmtypes("mvs_zintr_struct",33,"off")=108 + Set gtmtypes("mvs_zintr_struct",33,"len")=4 + Set gtmtypes("mvs_zintr_struct",33,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.array")=33 + Set gtmtypes("mvs_zintr_struct",34,"name")="mvs_zintr_struct.dollar_stack_save.index" + Set gtmtypes("mvs_zintr_struct",34,"off")=112 + Set gtmtypes("mvs_zintr_struct",34,"len")=4 + Set gtmtypes("mvs_zintr_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.index")=34 + Set gtmtypes("mvs_zintr_struct",35,"name")="mvs_zintr_struct.dollar_stack_save.incomplete" + Set gtmtypes("mvs_zintr_struct",35,"off")=116 + Set gtmtypes("mvs_zintr_struct",35,"len")=4 + Set gtmtypes("mvs_zintr_struct",35,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.incomplete")=35 + ; + Set gtmtypes("nametabent")="struct" + Set gtmtypes("nametabent",0)=2 + Set gtmtypes("nametabent","len")=32 + Set gtmtypes("nametabent",1,"name")="nametabent.len" + Set gtmtypes("nametabent",1,"off")=0 + Set gtmtypes("nametabent",1,"len")=1 + Set gtmtypes("nametabent",1,"type")="char" + Set gtmtypfldindx("nametabent","len")=1 + Set gtmtypes("nametabent",2,"name")="nametabent.name" + Set gtmtypes("nametabent",2,"off")=1 + Set gtmtypes("nametabent",2,"len")=31 + Set gtmtypes("nametabent",2,"type")="char" + Set gtmtypfldindx("nametabent","name")=2 + ; + Set gtmtypes("node_local")="struct" + Set gtmtypes("node_local",0)=208 + Set gtmtypes("node_local","len")=51144 + Set gtmtypes("node_local",1,"name")="node_local.label" + Set gtmtypes("node_local",1,"off")=0 + Set gtmtypes("node_local",1,"len")=12 + Set gtmtypes("node_local",1,"type")="unsigned-char" + Set gtmtypfldindx("node_local","label")=1 + Set gtmtypes("node_local",2,"name")="node_local.fname" + Set gtmtypes("node_local",2,"off")=12 + Set gtmtypes("node_local",2,"len")=256 + Set gtmtypes("node_local",2,"type")="unsigned-char" + Set gtmtypfldindx("node_local","fname")=2 + Set gtmtypes("node_local",3,"name")="node_local.now_running" + Set gtmtypes("node_local",3,"off")=268 + Set gtmtypes("node_local",3,"len")=36 + Set gtmtypes("node_local",3,"type")="char" + Set gtmtypfldindx("node_local","now_running")=3 + Set gtmtypes("node_local",4,"name")="node_local.machine_name" + Set gtmtypes("node_local",4,"off")=304 + Set gtmtypes("node_local",4,"len")=256 + Set gtmtypes("node_local",4,"type")="char" + Set gtmtypfldindx("node_local","machine_name")=4 + Set gtmtypes("node_local",5,"name")="node_local.bt_header_off" + Set gtmtypes("node_local",5,"off")=560 + Set gtmtypes("node_local",5,"len")=4 + Set gtmtypes("node_local",5,"type")="intptr_t" + Set gtmtypfldindx("node_local","bt_header_off")=5 + Set gtmtypes("node_local",6,"name")="node_local.bt_base_off" + Set gtmtypes("node_local",6,"off")=564 + Set gtmtypes("node_local",6,"len")=4 + Set gtmtypes("node_local",6,"type")="intptr_t" + Set gtmtypfldindx("node_local","bt_base_off")=6 + Set gtmtypes("node_local",7,"name")="node_local.th_base_off" + Set gtmtypes("node_local",7,"off")=568 + Set gtmtypes("node_local",7,"len")=4 + Set gtmtypes("node_local",7,"type")="intptr_t" + Set gtmtypfldindx("node_local","th_base_off")=7 + Set gtmtypes("node_local",8,"name")="node_local.cache_off" + Set gtmtypes("node_local",8,"off")=572 + Set gtmtypes("node_local",8,"len")=4 + Set gtmtypes("node_local",8,"type")="intptr_t" + Set gtmtypfldindx("node_local","cache_off")=8 + Set gtmtypes("node_local",9,"name")="node_local.cur_lru_cache_rec_off" + Set gtmtypes("node_local",9,"off")=576 + Set gtmtypes("node_local",9,"len")=4 + Set gtmtypes("node_local",9,"type")="intptr_t" + Set gtmtypfldindx("node_local","cur_lru_cache_rec_off")=9 + Set gtmtypes("node_local",10,"name")="node_local.critical" + Set gtmtypes("node_local",10,"off")=580 + Set gtmtypes("node_local",10,"len")=4 + Set gtmtypes("node_local",10,"type")="intptr_t" + Set gtmtypfldindx("node_local","critical")=10 + Set gtmtypes("node_local",11,"name")="node_local.jnl_buff" + Set gtmtypes("node_local",11,"off")=584 + Set gtmtypes("node_local",11,"len")=4 + Set gtmtypes("node_local",11,"type")="intptr_t" + Set gtmtypfldindx("node_local","jnl_buff")=11 + Set gtmtypes("node_local",12,"name")="node_local.shmpool_buffer" + Set gtmtypes("node_local",12,"off")=588 + Set gtmtypes("node_local",12,"len")=4 + Set gtmtypes("node_local",12,"type")="intptr_t" + Set gtmtypfldindx("node_local","shmpool_buffer")=12 + Set gtmtypes("node_local",13,"name")="node_local.lock_addrs" + Set gtmtypes("node_local",13,"off")=592 + Set gtmtypes("node_local",13,"len")=4 + Set gtmtypes("node_local",13,"type")="intptr_t" + Set gtmtypfldindx("node_local","lock_addrs")=13 + Set gtmtypes("node_local",14,"name")="node_local.hdr" + Set gtmtypes("node_local",14,"off")=596 + Set gtmtypes("node_local",14,"len")=4 + Set gtmtypes("node_local",14,"type")="intptr_t" + Set gtmtypfldindx("node_local","hdr")=14 + Set gtmtypes("node_local",15,"name")="node_local.in_crit" + Set gtmtypes("node_local",15,"off")=600 + Set gtmtypes("node_local",15,"len")=4 + Set gtmtypes("node_local",15,"type")="int" + Set gtmtypfldindx("node_local","in_crit")=15 + Set gtmtypes("node_local",16,"name")="node_local.in_reinit" + Set gtmtypes("node_local",16,"off")=604 + Set gtmtypes("node_local",16,"len")=4 + Set gtmtypes("node_local",16,"type")="int" + Set gtmtypfldindx("node_local","in_reinit")=16 + Set gtmtypes("node_local",17,"name")="node_local.ccp_cycle" + Set gtmtypes("node_local",17,"off")=608 + Set gtmtypes("node_local",17,"len")=2 + Set gtmtypes("node_local",17,"type")="unsigned-short" + Set gtmtypfldindx("node_local","ccp_cycle")=17 + Set gtmtypes("node_local",18,"name")="node_local.filler" + Set gtmtypes("node_local",18,"off")=610 + Set gtmtypes("node_local",18,"len")=2 + Set gtmtypes("node_local",18,"type")="unsigned-short" + Set gtmtypfldindx("node_local","filler")=18 + Set gtmtypes("node_local",19,"name")="node_local.ccp_crit_blocked" + Set gtmtypes("node_local",19,"off")=612 + Set gtmtypes("node_local",19,"len")=4 + Set gtmtypes("node_local",19,"type")="boolean_t" + Set gtmtypfldindx("node_local","ccp_crit_blocked")=19 + Set gtmtypes("node_local",20,"name")="node_local.ccp_state" + Set gtmtypes("node_local",20,"off")=616 + Set gtmtypes("node_local",20,"len")=4 + Set gtmtypes("node_local",20,"type")="int" + Set gtmtypfldindx("node_local","ccp_state")=20 + Set gtmtypes("node_local",21,"name")="node_local.ccp_jnl_closed" + Set gtmtypes("node_local",21,"off")=620 + Set gtmtypes("node_local",21,"len")=4 + Set gtmtypes("node_local",21,"type")="boolean_t" + Set gtmtypfldindx("node_local","ccp_jnl_closed")=21 + Set gtmtypes("node_local",22,"name")="node_local.glob_sec_init" + Set gtmtypes("node_local",22,"off")=624 + Set gtmtypes("node_local",22,"len")=4 + Set gtmtypes("node_local",22,"type")="boolean_t" + Set gtmtypfldindx("node_local","glob_sec_init")=22 + Set gtmtypes("node_local",23,"name")="node_local.wtstart_pid" + Set gtmtypes("node_local",23,"off")=628 + Set gtmtypes("node_local",23,"len")=32 + Set gtmtypes("node_local",23,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wtstart_pid")=23 + Set gtmtypes("node_local",23,"dim")=8 + Set gtmtypes("node_local",24,"name")="node_local.wc_blocked" + Set gtmtypes("node_local",24,"off")=660 + Set gtmtypes("node_local",24,"len")=4 + Set gtmtypes("node_local",24,"type")="boolean_t" + Set gtmtypfldindx("node_local","wc_blocked")=24 + Set gtmtypes("node_local",25,"name")="node_local.wc_var_lock" + Set gtmtypes("node_local",25,"off")=664 + Set gtmtypes("node_local",25,"len")=8 + Set gtmtypes("node_local",25,"type")="global_latch_t" + Set gtmtypfldindx("node_local","wc_var_lock")=25 + Set gtmtypes("node_local",26,"name")="node_local.wc_var_lock.u" + Set gtmtypes("node_local",26,"off")=664 + Set gtmtypes("node_local",26,"len")=8 + Set gtmtypes("node_local",26,"type")="union" + Set gtmtypfldindx("node_local","wc_var_lock.u")=26 + Set gtmtypes("node_local",27,"name")="node_local.wc_var_lock.u.pid_imgcnt" + Set gtmtypes("node_local",27,"off")=664 + Set gtmtypes("node_local",27,"len")=8 + Set gtmtypes("node_local",27,"type")="uint64_t" + Set gtmtypfldindx("node_local","wc_var_lock.u.pid_imgcnt")=27 + Set gtmtypes("node_local",28,"name")="node_local.wc_var_lock.u.parts" + Set gtmtypes("node_local",28,"off")=664 + Set gtmtypes("node_local",28,"len")=8 + Set gtmtypes("node_local",28,"type")="struct" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts")=28 + Set gtmtypes("node_local",29,"name")="node_local.wc_var_lock.u.parts.latch_pid" + Set gtmtypes("node_local",29,"off")=664 + Set gtmtypes("node_local",29,"len")=4 + Set gtmtypes("node_local",29,"type")="int" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts.latch_pid")=29 + Set gtmtypes("node_local",30,"name")="node_local.wc_var_lock.u.parts.latch_word" + Set gtmtypes("node_local",30,"off")=668 + Set gtmtypes("node_local",30,"len")=4 + Set gtmtypes("node_local",30,"type")="int" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts.latch_word")=30 + Set gtmtypes("node_local",31,"name")="node_local.fill_cacheline1" + Set gtmtypes("node_local",31,"off")=672 + Set gtmtypes("node_local",31,"len")=24 + Set gtmtypes("node_local",31,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline1")=31 + Set gtmtypes("node_local",32,"name")="node_local.db_latch" + Set gtmtypes("node_local",32,"off")=696 + Set gtmtypes("node_local",32,"len")=8 + Set gtmtypes("node_local",32,"type")="global_latch_t" + Set gtmtypfldindx("node_local","db_latch")=32 + Set gtmtypes("node_local",33,"name")="node_local.db_latch.u" + Set gtmtypes("node_local",33,"off")=696 + Set gtmtypes("node_local",33,"len")=8 + Set gtmtypes("node_local",33,"type")="union" + Set gtmtypfldindx("node_local","db_latch.u")=33 + Set gtmtypes("node_local",34,"name")="node_local.db_latch.u.pid_imgcnt" + Set gtmtypes("node_local",34,"off")=696 + Set gtmtypes("node_local",34,"len")=8 + Set gtmtypes("node_local",34,"type")="uint64_t" + Set gtmtypfldindx("node_local","db_latch.u.pid_imgcnt")=34 + Set gtmtypes("node_local",35,"name")="node_local.db_latch.u.parts" + Set gtmtypes("node_local",35,"off")=696 + Set gtmtypes("node_local",35,"len")=8 + Set gtmtypes("node_local",35,"type")="struct" + Set gtmtypfldindx("node_local","db_latch.u.parts")=35 + Set gtmtypes("node_local",36,"name")="node_local.db_latch.u.parts.latch_pid" + Set gtmtypes("node_local",36,"off")=696 + Set gtmtypes("node_local",36,"len")=4 + Set gtmtypes("node_local",36,"type")="int" + Set gtmtypfldindx("node_local","db_latch.u.parts.latch_pid")=36 + Set gtmtypes("node_local",37,"name")="node_local.db_latch.u.parts.latch_word" + Set gtmtypes("node_local",37,"off")=700 + Set gtmtypes("node_local",37,"len")=4 + Set gtmtypes("node_local",37,"type")="int" + Set gtmtypfldindx("node_local","db_latch.u.parts.latch_word")=37 + Set gtmtypes("node_local",38,"name")="node_local.fill_cacheline2" + Set gtmtypes("node_local",38,"off")=704 + Set gtmtypes("node_local",38,"len")=24 + Set gtmtypes("node_local",38,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline2")=38 + Set gtmtypes("node_local",39,"name")="node_local.cache_hits" + Set gtmtypes("node_local",39,"off")=728 + Set gtmtypes("node_local",39,"len")=4 + Set gtmtypes("node_local",39,"type")="int" + Set gtmtypfldindx("node_local","cache_hits")=39 + Set gtmtypes("node_local",40,"name")="node_local.wc_in_free" + Set gtmtypes("node_local",40,"off")=732 + Set gtmtypes("node_local",40,"len")=4 + Set gtmtypes("node_local",40,"type")="int" + Set gtmtypfldindx("node_local","wc_in_free")=40 + Set gtmtypes("node_local",41,"name")="node_local.wcs_timers" + Set gtmtypes("node_local",41,"off")=736 + Set gtmtypes("node_local",41,"len")=4 + Set gtmtypes("node_local",41,"type")="int" + Set gtmtypfldindx("node_local","wcs_timers")=41 + Set gtmtypes("node_local",42,"name")="node_local.fill_cacheline3" + Set gtmtypes("node_local",42,"off")=740 + Set gtmtypes("node_local",42,"len")=28 + Set gtmtypes("node_local",42,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline3")=42 + Set gtmtypes("node_local",43,"name")="node_local.wcs_active_lvl" + Set gtmtypes("node_local",43,"off")=768 + Set gtmtypes("node_local",43,"len")=4 + Set gtmtypes("node_local",43,"type")="int" + Set gtmtypfldindx("node_local","wcs_active_lvl")=43 + Set gtmtypes("node_local",44,"name")="node_local.fill_cacheline4" + Set gtmtypes("node_local",44,"off")=772 + Set gtmtypes("node_local",44,"len")=28 + Set gtmtypes("node_local",44,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline4")=44 + Set gtmtypes("node_local",45,"name")="node_local.wcs_staleness" + Set gtmtypes("node_local",45,"off")=800 + Set gtmtypes("node_local",45,"len")=4 + Set gtmtypes("node_local",45,"type")="int" + Set gtmtypfldindx("node_local","wcs_staleness")=45 + Set gtmtypes("node_local",46,"name")="node_local.fill_cacheline5" + Set gtmtypes("node_local",46,"off")=804 + Set gtmtypes("node_local",46,"len")=28 + Set gtmtypes("node_local",46,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline5")=46 + Set gtmtypes("node_local",47,"name")="node_local.ref_cnt" + Set gtmtypes("node_local",47,"off")=832 + Set gtmtypes("node_local",47,"len")=4 + Set gtmtypes("node_local",47,"type")="int" + Set gtmtypfldindx("node_local","ref_cnt")=47 + Set gtmtypes("node_local",48,"name")="node_local.fill_cacheline6" + Set gtmtypes("node_local",48,"off")=836 + Set gtmtypes("node_local",48,"len")=28 + Set gtmtypes("node_local",48,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline6")=48 + Set gtmtypes("node_local",49,"name")="node_local.intent_wtstart" + Set gtmtypes("node_local",49,"off")=864 + Set gtmtypes("node_local",49,"len")=4 + Set gtmtypes("node_local",49,"type")="int" + Set gtmtypfldindx("node_local","intent_wtstart")=49 + Set gtmtypes("node_local",50,"name")="node_local.fill_cacheline7" + Set gtmtypes("node_local",50,"off")=868 + Set gtmtypes("node_local",50,"len")=28 + Set gtmtypes("node_local",50,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline7")=50 + Set gtmtypes("node_local",51,"name")="node_local.in_wtstart" + Set gtmtypes("node_local",51,"off")=896 + Set gtmtypes("node_local",51,"len")=4 + Set gtmtypes("node_local",51,"type")="int" + Set gtmtypfldindx("node_local","in_wtstart")=51 + Set gtmtypes("node_local",52,"name")="node_local.fill_cacheline8" + Set gtmtypes("node_local",52,"off")=900 + Set gtmtypes("node_local",52,"len")=28 + Set gtmtypes("node_local",52,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline8")=52 + Set gtmtypes("node_local",53,"name")="node_local.wcs_phase2_commit_pidcnt" + Set gtmtypes("node_local",53,"off")=928 + Set gtmtypes("node_local",53,"len")=4 + Set gtmtypes("node_local",53,"type")="int" + Set gtmtypfldindx("node_local","wcs_phase2_commit_pidcnt")=53 + Set gtmtypes("node_local",54,"name")="node_local.fill_cacheline9" + Set gtmtypes("node_local",54,"off")=932 + Set gtmtypes("node_local",54,"len")=28 + Set gtmtypes("node_local",54,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline9")=54 + Set gtmtypes("node_local",55,"name")="node_local.mm_extender_pid" + Set gtmtypes("node_local",55,"off")=960 + Set gtmtypes("node_local",55,"len")=4 + Set gtmtypes("node_local",55,"type")="int" + Set gtmtypfldindx("node_local","mm_extender_pid")=55 + Set gtmtypes("node_local",56,"name")="node_local.highest_lbm_blk_changed" + Set gtmtypes("node_local",56,"off")=964 + Set gtmtypes("node_local",56,"len")=4 + Set gtmtypes("node_local",56,"type")="int" + Set gtmtypfldindx("node_local","highest_lbm_blk_changed")=56 + Set gtmtypes("node_local",57,"name")="node_local.nbb" + Set gtmtypes("node_local",57,"off")=968 + Set gtmtypes("node_local",57,"len")=4 + Set gtmtypes("node_local",57,"type")="int" + Set gtmtypfldindx("node_local","nbb")=57 + Set gtmtypes("node_local",58,"name")="node_local.lockhist_idx" + Set gtmtypes("node_local",58,"off")=972 + Set gtmtypes("node_local",58,"len")=4 + Set gtmtypes("node_local",58,"type")="int" + Set gtmtypfldindx("node_local","lockhist_idx")=58 + Set gtmtypes("node_local",59,"name")="node_local.crit_ops_index" + Set gtmtypes("node_local",59,"off")=976 + Set gtmtypes("node_local",59,"len")=4 + Set gtmtypes("node_local",59,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_index")=59 + Set gtmtypes("node_local",60,"name")="node_local.dskread_ops_index" + Set gtmtypes("node_local",60,"off")=980 + Set gtmtypes("node_local",60,"len")=4 + Set gtmtypes("node_local",60,"type")="int" + Set gtmtypfldindx("node_local","dskread_ops_index")=60 + Set gtmtypes("node_local",61,"name")="node_local.ftok_ops_index" + Set gtmtypes("node_local",61,"off")=984 + Set gtmtypes("node_local",61,"len")=4 + Set gtmtypes("node_local",61,"type")="int" + Set gtmtypfldindx("node_local","ftok_ops_index")=61 + Set gtmtypes("node_local",62,"name")="node_local.lockhists" + Set gtmtypes("node_local",62,"off")=988 + Set gtmtypes("node_local",62,"len")=10240 + Set gtmtypes("node_local",62,"type")="lockhist" + Set gtmtypfldindx("node_local","lockhists")=62 + Set gtmtypes("node_local",62,"dim")=512 + Set gtmtypes("node_local",63,"name")="node_local.lockhists[0].lock_addr" + Set gtmtypes("node_local",63,"off")=988 + Set gtmtypes("node_local",63,"len")=4 + Set gtmtypes("node_local",63,"type")="addr" + Set gtmtypfldindx("node_local","lockhists[0].lock_addr")=63 + Set gtmtypes("node_local",64,"name")="node_local.lockhists[0].lock_callr" + Set gtmtypes("node_local",64,"off")=992 + Set gtmtypes("node_local",64,"len")=4 + Set gtmtypes("node_local",64,"type")="caddr_t" + Set gtmtypfldindx("node_local","lockhists[0].lock_callr")=64 + Set gtmtypes("node_local",65,"name")="node_local.lockhists[0].lock_pid" + Set gtmtypes("node_local",65,"off")=996 + Set gtmtypes("node_local",65,"len")=4 + Set gtmtypes("node_local",65,"type")="int" + Set gtmtypfldindx("node_local","lockhists[0].lock_pid")=65 + Set gtmtypes("node_local",66,"name")="node_local.lockhists[0].loop_cnt" + Set gtmtypes("node_local",66,"off")=1000 + Set gtmtypes("node_local",66,"len")=4 + Set gtmtypes("node_local",66,"type")="int" + Set gtmtypfldindx("node_local","lockhists[0].loop_cnt")=66 + Set gtmtypes("node_local",67,"name")="node_local.lockhists[0].lock_op" + Set gtmtypes("node_local",67,"off")=1004 + Set gtmtypes("node_local",67,"len")=4 + Set gtmtypes("node_local",67,"type")="char" + Set gtmtypfldindx("node_local","lockhists[0].lock_op")=67 + Set gtmtypes("node_local",68,"name")="node_local.crit_ops_array" + Set gtmtypes("node_local",68,"off")=11228 + Set gtmtypes("node_local",68,"len")=10240 + Set gtmtypes("node_local",68,"type")="crit_trace" + Set gtmtypfldindx("node_local","crit_ops_array")=68 + Set gtmtypes("node_local",68,"dim")=512 + Set gtmtypes("node_local",69,"name")="node_local.crit_ops_array[0].call_from" + Set gtmtypes("node_local",69,"off")=11228 + Set gtmtypes("node_local",69,"len")=4 + Set gtmtypes("node_local",69,"type")="caddr_t" + Set gtmtypfldindx("node_local","crit_ops_array[0].call_from")=69 + Set gtmtypes("node_local",70,"name")="node_local.crit_ops_array[0].crit_act" + Set gtmtypes("node_local",70,"off")=11232 + Set gtmtypes("node_local",70,"len")=4 + Set gtmtypes("node_local",70,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_array[0].crit_act")=70 + Set gtmtypes("node_local",71,"name")="node_local.crit_ops_array[0].epid" + Set gtmtypes("node_local",71,"off")=11236 + Set gtmtypes("node_local",71,"len")=4 + Set gtmtypes("node_local",71,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_array[0].epid")=71 + Set gtmtypes("node_local",72,"name")="node_local.crit_ops_array[0].curr_tn" + Set gtmtypes("node_local",72,"off")=11240 + Set gtmtypes("node_local",72,"len")=8 + Set gtmtypes("node_local",72,"type")="uint64_t" + Set gtmtypfldindx("node_local","crit_ops_array[0].curr_tn")=72 + Set gtmtypes("node_local",73,"name")="node_local.dskread_ops_array" + Set gtmtypes("node_local",73,"off")=21468 + Set gtmtypes("node_local",73,"len")=12288 + Set gtmtypes("node_local",73,"type")="dskread_trace" + Set gtmtypfldindx("node_local","dskread_ops_array")=73 + Set gtmtypes("node_local",73,"dim")=512 + Set gtmtypes("node_local",74,"name")="node_local.dskread_ops_array[0].cr_off" + Set gtmtypes("node_local",74,"off")=21468 + Set gtmtypes("node_local",74,"len")=4 + Set gtmtypes("node_local",74,"type")="intptr_t" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cr_off")=74 + Set gtmtypes("node_local",75,"name")="node_local.dskread_ops_array[0].cr_tn" + Set gtmtypes("node_local",75,"off")=21472 + Set gtmtypes("node_local",75,"len")=8 + Set gtmtypes("node_local",75,"type")="uint64_t" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cr_tn")=75 + Set gtmtypes("node_local",76,"name")="node_local.dskread_ops_array[0].process_id" + Set gtmtypes("node_local",76,"off")=21480 + Set gtmtypes("node_local",76,"len")=4 + Set gtmtypes("node_local",76,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].process_id")=76 + Set gtmtypes("node_local",77,"name")="node_local.dskread_ops_array[0].blk" + Set gtmtypes("node_local",77,"off")=21484 + Set gtmtypes("node_local",77,"len")=4 + Set gtmtypes("node_local",77,"type")="int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].blk")=77 + Set gtmtypes("node_local",78,"name")="node_local.dskread_ops_array[0].cycle" + Set gtmtypes("node_local",78,"off")=21488 + Set gtmtypes("node_local",78,"len")=4 + Set gtmtypes("node_local",78,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cycle")=78 + Set gtmtypes("node_local",79,"name")="node_local.unique_id" + Set gtmtypes("node_local",79,"off")=33756 + Set gtmtypes("node_local",79,"len")=20 + Set gtmtypes("node_local",79,"type")="unique_file_id" + Set gtmtypfldindx("node_local","unique_id")=79 + Set gtmtypes("node_local",80,"name")="node_local.unique_id.uid" + Set gtmtypes("node_local",80,"off")=33756 + Set gtmtypes("node_local",80,"len")=20 + Set gtmtypes("node_local",80,"type")="unix_file_id" + Set gtmtypfldindx("node_local","unique_id.uid")=80 + Set gtmtypes("node_local",81,"name")="node_local.unique_id.file_id" + Set gtmtypes("node_local",81,"off")=33756 + Set gtmtypes("node_local",81,"len")=20 + Set gtmtypes("node_local",81,"type")="char" + Set gtmtypfldindx("node_local","unique_id.file_id")=81 + Set gtmtypes("node_local",82,"name")="node_local.owner_node" + Set gtmtypes("node_local",82,"off")=33776 + Set gtmtypes("node_local",82,"len")=4 + Set gtmtypes("node_local",82,"type")="unsigned-int" + Set gtmtypfldindx("node_local","owner_node")=82 + Set gtmtypes("node_local",83,"name")="node_local.wcsflu_pid" + Set gtmtypes("node_local",83,"off")=33780 + Set gtmtypes("node_local",83,"len")=4 + Set gtmtypes("node_local",83,"type")="int" + Set gtmtypfldindx("node_local","wcsflu_pid")=83 + Set gtmtypes("node_local",84,"name")="node_local.creation_date_time4" + Set gtmtypes("node_local",84,"off")=33784 + Set gtmtypes("node_local",84,"len")=4 + Set gtmtypes("node_local",84,"type")="int" + Set gtmtypfldindx("node_local","creation_date_time4")=84 + Set gtmtypes("node_local",85,"name")="node_local.inhibit_kills" + Set gtmtypes("node_local",85,"off")=33788 + Set gtmtypes("node_local",85,"len")=4 + Set gtmtypes("node_local",85,"type")="int" + Set gtmtypfldindx("node_local","inhibit_kills")=85 + Set gtmtypes("node_local",86,"name")="node_local.remove_shm" + Set gtmtypes("node_local",86,"off")=33792 + Set gtmtypes("node_local",86,"len")=4 + Set gtmtypes("node_local",86,"type")="boolean_t" + Set gtmtypfldindx("node_local","remove_shm")=86 + Set gtmtypes("node_local",87,"name")="node_local.jnl_file" + Set gtmtypes("node_local",87,"off")=33796 + Set gtmtypes("node_local",87,"len")=28 + Set gtmtypes("node_local",87,"type")="union" + Set gtmtypfldindx("node_local","jnl_file")=87 + Set gtmtypes("node_local",88,"name")="node_local.jnl_file.jnl_file_id" + Set gtmtypes("node_local",88,"off")=33796 + Set gtmtypes("node_local",88,"len")=28 + Set gtmtypes("node_local",88,"type")="gds_file_id" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id")=88 + Set gtmtypes("node_local",89,"name")="node_local.jnl_file.jnl_file_id.dvi" + Set gtmtypes("node_local",89,"off")=33796 + Set gtmtypes("node_local",89,"len")=16 + Set gtmtypes("node_local",89,"type")="char" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.dvi")=89 + Set gtmtypes("node_local",90,"name")="node_local.jnl_file.jnl_file_id.did" + Set gtmtypes("node_local",90,"off")=33812 + Set gtmtypes("node_local",90,"len")=6 + Set gtmtypes("node_local",90,"type")="unsigned-short" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.did")=90 + Set gtmtypes("node_local",90,"dim")=3 + Set gtmtypes("node_local",91,"name")="node_local.jnl_file.jnl_file_id.fid" + Set gtmtypes("node_local",91,"off")=33818 + Set gtmtypes("node_local",91,"len")=6 + Set gtmtypes("node_local",91,"type")="unsigned-short" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.fid")=91 + Set gtmtypes("node_local",91,"dim")=3 + Set gtmtypes("node_local",92,"name")="node_local.jnl_file.u" + Set gtmtypes("node_local",92,"off")=33796 + Set gtmtypes("node_local",92,"len")=20 + Set gtmtypes("node_local",92,"type")="unix_file_id" + Set gtmtypfldindx("node_local","jnl_file.u")=92 + Set gtmtypes("node_local",93,"name")="node_local.jnl_file.u.inode" + Set gtmtypes("node_local",93,"off")=33796 + Set gtmtypes("node_local",93,"len")=8 + Set gtmtypes("node_local",93,"type")="ino_t" + Set gtmtypfldindx("node_local","jnl_file.u.inode")=93 + Set gtmtypes("node_local",94,"name")="node_local.jnl_file.u.device" + Set gtmtypes("node_local",94,"off")=33804 + Set gtmtypes("node_local",94,"len")=8 + Set gtmtypes("node_local",94,"type")="dev_t" + Set gtmtypfldindx("node_local","jnl_file.u.device")=94 + Set gtmtypes("node_local",95,"name")="node_local.jnl_file.u.st_gen" + Set gtmtypes("node_local",95,"off")=33812 + Set gtmtypes("node_local",95,"len")=4 + Set gtmtypes("node_local",95,"type")="unsigned-int" + Set gtmtypfldindx("node_local","jnl_file.u.st_gen")=95 + Set gtmtypes("node_local",96,"name")="node_local.donotflush_dbjnl" + Set gtmtypes("node_local",96,"off")=33824 + Set gtmtypes("node_local",96,"len")=4 + Set gtmtypes("node_local",96,"type")="boolean_t" + Set gtmtypfldindx("node_local","donotflush_dbjnl")=96 + Set gtmtypes("node_local",97,"name")="node_local.n_pre_read" + Set gtmtypes("node_local",97,"off")=33828 + Set gtmtypes("node_local",97,"len")=4 + Set gtmtypes("node_local",97,"type")="int" + Set gtmtypfldindx("node_local","n_pre_read")=97 + Set gtmtypes("node_local",98,"name")="node_local.replinstfilename" + Set gtmtypes("node_local",98,"off")=33832 + Set gtmtypes("node_local",98,"len")=256 + Set gtmtypes("node_local",98,"type")="char" + Set gtmtypfldindx("node_local","replinstfilename")=98 + Set gtmtypes("node_local",99,"name")="node_local.secshr_ops_index" + Set gtmtypes("node_local",99,"off")=34088 + Set gtmtypes("node_local",99,"len")=4 + Set gtmtypes("node_local",99,"type")="int" + Set gtmtypfldindx("node_local","secshr_ops_index")=99 + Set gtmtypes("node_local",100,"name")="node_local.secshr_ops_array" + Set gtmtypes("node_local",100,"off")=34092 + Set gtmtypes("node_local",100,"len")=8184 + Set gtmtypes("node_local",100,"type")="uint64_t" + Set gtmtypfldindx("node_local","secshr_ops_array")=100 + Set gtmtypes("node_local",100,"dim")=1023 + Set gtmtypes("node_local",101,"name")="node_local.gvstats_rec" + Set gtmtypes("node_local",101,"off")=42276 + Set gtmtypes("node_local",101,"len")=464 + Set gtmtypes("node_local",101,"type")="gvstats_rec_t" + Set gtmtypfldindx("node_local","gvstats_rec")=101 + Set gtmtypes("node_local",102,"name")="node_local.gvstats_rec.n_set" + Set gtmtypes("node_local",102,"off")=42276 + Set gtmtypes("node_local",102,"len")=8 + Set gtmtypes("node_local",102,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_set")=102 + Set gtmtypes("node_local",103,"name")="node_local.gvstats_rec.n_kill" + Set gtmtypes("node_local",103,"off")=42284 + Set gtmtypes("node_local",103,"len")=8 + Set gtmtypes("node_local",103,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_kill")=103 + Set gtmtypes("node_local",104,"name")="node_local.gvstats_rec.n_get" + Set gtmtypes("node_local",104,"off")=42292 + Set gtmtypes("node_local",104,"len")=8 + Set gtmtypes("node_local",104,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_get")=104 + Set gtmtypes("node_local",105,"name")="node_local.gvstats_rec.n_data" + Set gtmtypes("node_local",105,"off")=42300 + Set gtmtypes("node_local",105,"len")=8 + Set gtmtypes("node_local",105,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_data")=105 + Set gtmtypes("node_local",106,"name")="node_local.gvstats_rec.n_order" + Set gtmtypes("node_local",106,"off")=42308 + Set gtmtypes("node_local",106,"len")=8 + Set gtmtypes("node_local",106,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_order")=106 + Set gtmtypes("node_local",107,"name")="node_local.gvstats_rec.n_zprev" + Set gtmtypes("node_local",107,"off")=42316 + Set gtmtypes("node_local",107,"len")=8 + Set gtmtypes("node_local",107,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_zprev")=107 + Set gtmtypes("node_local",108,"name")="node_local.gvstats_rec.n_query" + Set gtmtypes("node_local",108,"off")=42324 + Set gtmtypes("node_local",108,"len")=8 + Set gtmtypes("node_local",108,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_query")=108 + Set gtmtypes("node_local",109,"name")="node_local.gvstats_rec.n_lock_success" + Set gtmtypes("node_local",109,"off")=42332 + Set gtmtypes("node_local",109,"len")=8 + Set gtmtypes("node_local",109,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_lock_success")=109 + Set gtmtypes("node_local",110,"name")="node_local.gvstats_rec.n_lock_fail" + Set gtmtypes("node_local",110,"off")=42340 + Set gtmtypes("node_local",110,"len")=8 + Set gtmtypes("node_local",110,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_lock_fail")=110 + Set gtmtypes("node_local",111,"name")="node_local.gvstats_rec.db_curr_tn" + Set gtmtypes("node_local",111,"off")=42348 + Set gtmtypes("node_local",111,"len")=8 + Set gtmtypes("node_local",111,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.db_curr_tn")=111 + Set gtmtypes("node_local",112,"name")="node_local.gvstats_rec.n_dsk_read" + Set gtmtypes("node_local",112,"off")=42356 + Set gtmtypes("node_local",112,"len")=8 + Set gtmtypes("node_local",112,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_dsk_read")=112 + Set gtmtypes("node_local",113,"name")="node_local.gvstats_rec.n_dsk_write" + Set gtmtypes("node_local",113,"off")=42364 + Set gtmtypes("node_local",113,"len")=8 + Set gtmtypes("node_local",113,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_dsk_write")=113 + Set gtmtypes("node_local",114,"name")="node_local.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("node_local",114,"off")=42372 + Set gtmtypes("node_local",114,"len")=8 + Set gtmtypes("node_local",114,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_readwrite")=114 + Set gtmtypes("node_local",115,"name")="node_local.gvstats_rec.n_nontp_readonly" + Set gtmtypes("node_local",115,"off")=42380 + Set gtmtypes("node_local",115,"len")=8 + Set gtmtypes("node_local",115,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_readonly")=115 + Set gtmtypes("node_local",116,"name")="node_local.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("node_local",116,"off")=42388 + Set gtmtypes("node_local",116,"len")=8 + Set gtmtypes("node_local",116,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_blkwrite")=116 + Set gtmtypes("node_local",117,"name")="node_local.gvstats_rec.n_nontp_blkread" + Set gtmtypes("node_local",117,"off")=42396 + Set gtmtypes("node_local",117,"len")=8 + Set gtmtypes("node_local",117,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_blkread")=117 + Set gtmtypes("node_local",118,"name")="node_local.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("node_local",118,"off")=42404 + Set gtmtypes("node_local",118,"len")=8 + Set gtmtypes("node_local",118,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_0")=118 + Set gtmtypes("node_local",119,"name")="node_local.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("node_local",119,"off")=42412 + Set gtmtypes("node_local",119,"len")=8 + Set gtmtypes("node_local",119,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_1")=119 + Set gtmtypes("node_local",120,"name")="node_local.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("node_local",120,"off")=42420 + Set gtmtypes("node_local",120,"len")=8 + Set gtmtypes("node_local",120,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_2")=120 + Set gtmtypes("node_local",121,"name")="node_local.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("node_local",121,"off")=42428 + Set gtmtypes("node_local",121,"len")=8 + Set gtmtypes("node_local",121,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_3")=121 + Set gtmtypes("node_local",122,"name")="node_local.gvstats_rec.n_tp_readwrite" + Set gtmtypes("node_local",122,"off")=42436 + Set gtmtypes("node_local",122,"len")=8 + Set gtmtypes("node_local",122,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_readwrite")=122 + Set gtmtypes("node_local",123,"name")="node_local.gvstats_rec.n_tp_readonly" + Set gtmtypes("node_local",123,"off")=42444 + Set gtmtypes("node_local",123,"len")=8 + Set gtmtypes("node_local",123,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_readonly")=123 + Set gtmtypes("node_local",124,"name")="node_local.gvstats_rec.n_tp_rolledback" + Set gtmtypes("node_local",124,"off")=42452 + Set gtmtypes("node_local",124,"len")=8 + Set gtmtypes("node_local",124,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_rolledback")=124 + Set gtmtypes("node_local",125,"name")="node_local.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("node_local",125,"off")=42460 + Set gtmtypes("node_local",125,"len")=8 + Set gtmtypes("node_local",125,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_blkwrite")=125 + Set gtmtypes("node_local",126,"name")="node_local.gvstats_rec.n_tp_blkread" + Set gtmtypes("node_local",126,"off")=42468 + Set gtmtypes("node_local",126,"len")=8 + Set gtmtypes("node_local",126,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_blkread")=126 + Set gtmtypes("node_local",127,"name")="node_local.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("node_local",127,"off")=42476 + Set gtmtypes("node_local",127,"len")=8 + Set gtmtypes("node_local",127,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_0")=127 + Set gtmtypes("node_local",128,"name")="node_local.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("node_local",128,"off")=42484 + Set gtmtypes("node_local",128,"len")=8 + Set gtmtypes("node_local",128,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_1")=128 + Set gtmtypes("node_local",129,"name")="node_local.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("node_local",129,"off")=42492 + Set gtmtypes("node_local",129,"len")=8 + Set gtmtypes("node_local",129,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_2")=129 + Set gtmtypes("node_local",130,"name")="node_local.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("node_local",130,"off")=42500 + Set gtmtypes("node_local",130,"len")=8 + Set gtmtypes("node_local",130,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_3")=130 + Set gtmtypes("node_local",131,"name")="node_local.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("node_local",131,"off")=42508 + Set gtmtypes("node_local",131,"len")=8 + Set gtmtypes("node_local",131,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_4")=131 + Set gtmtypes("node_local",132,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("node_local",132,"off")=42516 + Set gtmtypes("node_local",132,"len")=8 + Set gtmtypes("node_local",132,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_0")=132 + Set gtmtypes("node_local",133,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("node_local",133,"off")=42524 + Set gtmtypes("node_local",133,"len")=8 + Set gtmtypes("node_local",133,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_1")=133 + Set gtmtypes("node_local",134,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("node_local",134,"off")=42532 + Set gtmtypes("node_local",134,"len")=8 + Set gtmtypes("node_local",134,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_2")=134 + Set gtmtypes("node_local",135,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("node_local",135,"off")=42540 + Set gtmtypes("node_local",135,"len")=8 + Set gtmtypes("node_local",135,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_3")=135 + Set gtmtypes("node_local",136,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("node_local",136,"off")=42548 + Set gtmtypes("node_local",136,"len")=8 + Set gtmtypes("node_local",136,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_4")=136 + Set gtmtypes("node_local",137,"name")="node_local.gvstats_rec.n_ztrigger" + Set gtmtypes("node_local",137,"off")=42556 + Set gtmtypes("node_local",137,"len")=8 + Set gtmtypes("node_local",137,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_ztrigger")=137 + Set gtmtypes("node_local",138,"name")="node_local.gvstats_rec.n_db_flush" + Set gtmtypes("node_local",138,"off")=42564 + Set gtmtypes("node_local",138,"len")=8 + Set gtmtypes("node_local",138,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_flush")=138 + Set gtmtypes("node_local",139,"name")="node_local.gvstats_rec.n_db_fsync" + Set gtmtypes("node_local",139,"off")=42572 + Set gtmtypes("node_local",139,"len")=8 + Set gtmtypes("node_local",139,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_fsync")=139 + Set gtmtypes("node_local",140,"name")="node_local.gvstats_rec.n_jnl_flush" + Set gtmtypes("node_local",140,"off")=42580 + Set gtmtypes("node_local",140,"len")=8 + Set gtmtypes("node_local",140,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_flush")=140 + Set gtmtypes("node_local",141,"name")="node_local.gvstats_rec.n_jnl_fsync" + Set gtmtypes("node_local",141,"off")=42588 + Set gtmtypes("node_local",141,"len")=8 + Set gtmtypes("node_local",141,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_fsync")=141 + Set gtmtypes("node_local",142,"name")="node_local.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("node_local",142,"off")=42596 + Set gtmtypes("node_local",142,"len")=8 + Set gtmtypes("node_local",142,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jbuff_bytes")=142 + Set gtmtypes("node_local",143,"name")="node_local.gvstats_rec.n_jfile_bytes" + Set gtmtypes("node_local",143,"off")=42604 + Set gtmtypes("node_local",143,"len")=8 + Set gtmtypes("node_local",143,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jfile_bytes")=143 + Set gtmtypes("node_local",144,"name")="node_local.gvstats_rec.n_jfile_writes" + Set gtmtypes("node_local",144,"off")=42612 + Set gtmtypes("node_local",144,"len")=8 + Set gtmtypes("node_local",144,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jfile_writes")=144 + Set gtmtypes("node_local",145,"name")="node_local.gvstats_rec.n_jrec_logical" + Set gtmtypes("node_local",145,"off")=42620 + Set gtmtypes("node_local",145,"len")=8 + Set gtmtypes("node_local",145,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_logical")=145 + Set gtmtypes("node_local",146,"name")="node_local.gvstats_rec.n_jrec_pblk" + Set gtmtypes("node_local",146,"off")=42628 + Set gtmtypes("node_local",146,"len")=8 + Set gtmtypes("node_local",146,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_pblk")=146 + Set gtmtypes("node_local",147,"name")="node_local.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("node_local",147,"off")=42636 + Set gtmtypes("node_local",147,"len")=8 + Set gtmtypes("node_local",147,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_epoch_regular")=147 + Set gtmtypes("node_local",148,"name")="node_local.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("node_local",148,"off")=42644 + Set gtmtypes("node_local",148,"len")=8 + Set gtmtypes("node_local",148,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_epoch_idle")=148 + Set gtmtypes("node_local",149,"name")="node_local.gvstats_rec.n_jrec_other" + Set gtmtypes("node_local",149,"off")=42652 + Set gtmtypes("node_local",149,"len")=8 + Set gtmtypes("node_local",149,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_other")=149 + Set gtmtypes("node_local",150,"name")="node_local.gvstats_rec.n_jnl_extends" + Set gtmtypes("node_local",150,"off")=42660 + Set gtmtypes("node_local",150,"len")=8 + Set gtmtypes("node_local",150,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_extends")=150 + Set gtmtypes("node_local",151,"name")="node_local.gvstats_rec.n_db_extends" + Set gtmtypes("node_local",151,"off")=42668 + Set gtmtypes("node_local",151,"len")=8 + Set gtmtypes("node_local",151,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_extends")=151 + Set gtmtypes("node_local",152,"name")="node_local.gvstats_rec.n_crit_success" + Set gtmtypes("node_local",152,"off")=42676 + Set gtmtypes("node_local",152,"len")=8 + Set gtmtypes("node_local",152,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_success")=152 + Set gtmtypes("node_local",153,"name")="node_local.gvstats_rec.n_crits_in_epch" + Set gtmtypes("node_local",153,"off")=42684 + Set gtmtypes("node_local",153,"len")=8 + Set gtmtypes("node_local",153,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crits_in_epch")=153 + Set gtmtypes("node_local",154,"name")="node_local.gvstats_rec.sq_crit_failed" + Set gtmtypes("node_local",154,"off")=42692 + Set gtmtypes("node_local",154,"len")=8 + Set gtmtypes("node_local",154,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_failed")=154 + Set gtmtypes("node_local",155,"name")="node_local.gvstats_rec.n_crit_failed" + Set gtmtypes("node_local",155,"off")=42700 + Set gtmtypes("node_local",155,"len")=8 + Set gtmtypes("node_local",155,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_failed")=155 + Set gtmtypes("node_local",156,"name")="node_local.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("node_local",156,"off")=42708 + Set gtmtypes("node_local",156,"len")=8 + Set gtmtypes("node_local",156,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_que_slps")=156 + Set gtmtypes("node_local",157,"name")="node_local.gvstats_rec.n_crit_que_slps" + Set gtmtypes("node_local",157,"off")=42716 + Set gtmtypes("node_local",157,"len")=8 + Set gtmtypes("node_local",157,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_que_slps")=157 + Set gtmtypes("node_local",158,"name")="node_local.gvstats_rec.sq_crit_yields" + Set gtmtypes("node_local",158,"off")=42724 + Set gtmtypes("node_local",158,"len")=8 + Set gtmtypes("node_local",158,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_yields")=158 + Set gtmtypes("node_local",159,"name")="node_local.gvstats_rec.n_crit_yields" + Set gtmtypes("node_local",159,"off")=42732 + Set gtmtypes("node_local",159,"len")=8 + Set gtmtypes("node_local",159,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_yields")=159 + Set gtmtypes("node_local",160,"name")="node_local.last_wcsflu_tn" + Set gtmtypes("node_local",160,"off")=42740 + Set gtmtypes("node_local",160,"len")=8 + Set gtmtypes("node_local",160,"type")="uint64_t" + Set gtmtypfldindx("node_local","last_wcsflu_tn")=160 + Set gtmtypes("node_local",161,"name")="node_local.encrypt_glo_buff_off" + Set gtmtypes("node_local",161,"off")=42748 + Set gtmtypes("node_local",161,"len")=4 + Set gtmtypes("node_local",161,"type")="intptr_t" + Set gtmtypfldindx("node_local","encrypt_glo_buff_off")=161 + Set gtmtypes("node_local",162,"name")="node_local.snapshot_crit_latch" + Set gtmtypes("node_local",162,"off")=42752 + Set gtmtypes("node_local",162,"len")=8 + Set gtmtypes("node_local",162,"type")="global_latch_t" + Set gtmtypfldindx("node_local","snapshot_crit_latch")=162 + Set gtmtypes("node_local",163,"name")="node_local.snapshot_crit_latch.u" + Set gtmtypes("node_local",163,"off")=42752 + Set gtmtypes("node_local",163,"len")=8 + Set gtmtypes("node_local",163,"type")="union" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u")=163 + Set gtmtypes("node_local",164,"name")="node_local.snapshot_crit_latch.u.pid_imgcnt" + Set gtmtypes("node_local",164,"off")=42752 + Set gtmtypes("node_local",164,"len")=8 + Set gtmtypes("node_local",164,"type")="uint64_t" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.pid_imgcnt")=164 + Set gtmtypes("node_local",165,"name")="node_local.snapshot_crit_latch.u.parts" + Set gtmtypes("node_local",165,"off")=42752 + Set gtmtypes("node_local",165,"len")=8 + Set gtmtypes("node_local",165,"type")="struct" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts")=165 + Set gtmtypes("node_local",166,"name")="node_local.snapshot_crit_latch.u.parts.latch_pid" + Set gtmtypes("node_local",166,"off")=42752 + Set gtmtypes("node_local",166,"len")=4 + Set gtmtypes("node_local",166,"type")="int" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts.latch_pid")=166 + Set gtmtypes("node_local",167,"name")="node_local.snapshot_crit_latch.u.parts.latch_word" + Set gtmtypes("node_local",167,"off")=42756 + Set gtmtypes("node_local",167,"len")=4 + Set gtmtypes("node_local",167,"type")="int" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts.latch_word")=167 + Set gtmtypes("node_local",168,"name")="node_local.ss_shmid" + Set gtmtypes("node_local",168,"off")=42760 + Set gtmtypes("node_local",168,"len")=4 + Set gtmtypes("node_local",168,"type")="long" + Set gtmtypfldindx("node_local","ss_shmid")=168 + Set gtmtypes("node_local",169,"name")="node_local.ss_shmcycle" + Set gtmtypes("node_local",169,"off")=42764 + Set gtmtypes("node_local",169,"len")=4 + Set gtmtypes("node_local",169,"type")="unsigned-int" + Set gtmtypfldindx("node_local","ss_shmcycle")=169 + Set gtmtypes("node_local",170,"name")="node_local.snapshot_in_prog" + Set gtmtypes("node_local",170,"off")=42768 + Set gtmtypes("node_local",170,"len")=4 + Set gtmtypes("node_local",170,"type")="boolean_t" + Set gtmtypfldindx("node_local","snapshot_in_prog")=170 + Set gtmtypes("node_local",171,"name")="node_local.num_snapshots_in_effect" + Set gtmtypes("node_local",171,"off")=42772 + Set gtmtypes("node_local",171,"len")=4 + Set gtmtypes("node_local",171,"type")="unsigned-int" + Set gtmtypfldindx("node_local","num_snapshots_in_effect")=171 + Set gtmtypes("node_local",172,"name")="node_local.wbox_test_seq_num" + Set gtmtypes("node_local",172,"off")=42776 + Set gtmtypes("node_local",172,"len")=4 + Set gtmtypes("node_local",172,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wbox_test_seq_num")=172 + Set gtmtypes("node_local",173,"name")="node_local.filler_8byte_align" + Set gtmtypes("node_local",173,"off")=42780 + Set gtmtypes("node_local",173,"len")=4 + Set gtmtypes("node_local",173,"type")="int" + Set gtmtypfldindx("node_local","filler_8byte_align")=173 + Set gtmtypes("node_local",174,"name")="node_local.kip_pid_array" + Set gtmtypes("node_local",174,"off")=42784 + Set gtmtypes("node_local",174,"len")=32 + Set gtmtypes("node_local",174,"type")="unsigned-int" + Set gtmtypfldindx("node_local","kip_pid_array")=174 + Set gtmtypes("node_local",174,"dim")=8 + Set gtmtypes("node_local",175,"name")="node_local.sec_size" + Set gtmtypes("node_local",175,"off")=42816 + Set gtmtypes("node_local",175,"len")=8 + Set gtmtypes("node_local",175,"type")="uint64_t" + Set gtmtypfldindx("node_local","sec_size")=175 + Set gtmtypes("node_local",176,"name")="node_local.jnlpool_shmid" + Set gtmtypes("node_local",176,"off")=42824 + Set gtmtypes("node_local",176,"len")=4 + Set gtmtypes("node_local",176,"type")="int" + Set gtmtypfldindx("node_local","jnlpool_shmid")=176 + Set gtmtypes("node_local",177,"name")="node_local.lockspacefull_logged" + Set gtmtypes("node_local",177,"off")=42828 + Set gtmtypes("node_local",177,"len")=4 + Set gtmtypes("node_local",177,"type")="boolean_t" + Set gtmtypfldindx("node_local","lockspacefull_logged")=177 + Set gtmtypes("node_local",178,"name")="node_local.trunc_pid" + Set gtmtypes("node_local",178,"off")=42832 + Set gtmtypes("node_local",178,"len")=4 + Set gtmtypes("node_local",178,"type")="unsigned-int" + Set gtmtypfldindx("node_local","trunc_pid")=178 + Set gtmtypes("node_local",179,"name")="node_local.highest_lbm_with_busy_blk" + Set gtmtypes("node_local",179,"off")=42836 + Set gtmtypes("node_local",179,"len")=4 + Set gtmtypes("node_local",179,"type")="int" + Set gtmtypfldindx("node_local","highest_lbm_with_busy_blk")=179 + Set gtmtypes("node_local",180,"name")="node_local.ftok_ops_array" + Set gtmtypes("node_local",180,"off")=42840 + Set gtmtypes("node_local",180,"len")=8192 + Set gtmtypes("node_local",180,"type")="ftokhist" + Set gtmtypfldindx("node_local","ftok_ops_array")=180 + Set gtmtypes("node_local",180,"dim")=512 + Set gtmtypes("node_local",181,"name")="node_local.ftok_ops_array[0].ftok_oper" + Set gtmtypes("node_local",181,"off")=42840 + Set gtmtypes("node_local",181,"len")=4 + Set gtmtypes("node_local",181,"type")="int" + Set gtmtypfldindx("node_local","ftok_ops_array[0].ftok_oper")=181 + Set gtmtypes("node_local",182,"name")="node_local.ftok_ops_array[0].process_id" + Set gtmtypes("node_local",182,"off")=42844 + Set gtmtypes("node_local",182,"len")=4 + Set gtmtypes("node_local",182,"type")="unsigned-int" + Set gtmtypfldindx("node_local","ftok_ops_array[0].process_id")=182 + Set gtmtypes("node_local",183,"name")="node_local.ftok_ops_array[0].cr_tn" + Set gtmtypes("node_local",183,"off")=42848 + Set gtmtypes("node_local",183,"len")=8 + Set gtmtypes("node_local",183,"type")="uint64_t" + Set gtmtypfldindx("node_local","ftok_ops_array[0].cr_tn")=183 + Set gtmtypes("node_local",184,"name")="node_local.root_search_cycle" + Set gtmtypes("node_local",184,"off")=51032 + Set gtmtypes("node_local",184,"len")=4 + Set gtmtypes("node_local",184,"type")="unsigned-int" + Set gtmtypfldindx("node_local","root_search_cycle")=184 + Set gtmtypes("node_local",185,"name")="node_local.onln_rlbk_cycle" + Set gtmtypes("node_local",185,"off")=51036 + Set gtmtypes("node_local",185,"len")=4 + Set gtmtypes("node_local",185,"type")="unsigned-int" + Set gtmtypfldindx("node_local","onln_rlbk_cycle")=185 + Set gtmtypes("node_local",186,"name")="node_local.db_onln_rlbkd_cycle" + Set gtmtypes("node_local",186,"off")=51040 + Set gtmtypes("node_local",186,"len")=4 + Set gtmtypes("node_local",186,"type")="unsigned-int" + Set gtmtypfldindx("node_local","db_onln_rlbkd_cycle")=186 + Set gtmtypes("node_local",187,"name")="node_local.onln_rlbk_pid" + Set gtmtypes("node_local",187,"off")=51044 + Set gtmtypes("node_local",187,"len")=4 + Set gtmtypes("node_local",187,"type")="unsigned-int" + Set gtmtypfldindx("node_local","onln_rlbk_pid")=187 + Set gtmtypes("node_local",188,"name")="node_local.dbrndwn_ftok_skip" + Set gtmtypes("node_local",188,"off")=51048 + Set gtmtypes("node_local",188,"len")=4 + Set gtmtypes("node_local",188,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dbrndwn_ftok_skip")=188 + Set gtmtypes("node_local",189,"name")="node_local.dbrndwn_access_skip" + Set gtmtypes("node_local",189,"off")=51052 + Set gtmtypes("node_local",189,"len")=4 + Set gtmtypes("node_local",189,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dbrndwn_access_skip")=189 + Set gtmtypes("node_local",190,"name")="node_local.fastinteg_in_prog" + Set gtmtypes("node_local",190,"off")=51056 + Set gtmtypes("node_local",190,"len")=4 + Set gtmtypes("node_local",190,"type")="boolean_t" + Set gtmtypfldindx("node_local","fastinteg_in_prog")=190 + Set gtmtypes("node_local",191,"name")="node_local.wtstart_errcnt" + Set gtmtypes("node_local",191,"off")=51060 + Set gtmtypes("node_local",191,"len")=4 + Set gtmtypes("node_local",191,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wtstart_errcnt")=191 + Set gtmtypes("node_local",192,"name")="node_local.fake_db_enospc" + Set gtmtypes("node_local",192,"off")=51064 + Set gtmtypes("node_local",192,"len")=4 + Set gtmtypes("node_local",192,"type")="boolean_t" + Set gtmtypfldindx("node_local","fake_db_enospc")=192 + Set gtmtypes("node_local",193,"name")="node_local.fake_jnl_enospc" + Set gtmtypes("node_local",193,"off")=51068 + Set gtmtypes("node_local",193,"len")=4 + Set gtmtypes("node_local",193,"type")="boolean_t" + Set gtmtypfldindx("node_local","fake_jnl_enospc")=193 + Set gtmtypes("node_local",194,"name")="node_local.doing_epoch" + Set gtmtypes("node_local",194,"off")=51072 + Set gtmtypes("node_local",194,"len")=4 + Set gtmtypes("node_local",194,"type")="boolean_t" + Set gtmtypfldindx("node_local","doing_epoch")=194 + Set gtmtypes("node_local",195,"name")="node_local.epoch_taper_start_dbuffs" + Set gtmtypes("node_local",195,"off")=51076 + Set gtmtypes("node_local",195,"len")=4 + Set gtmtypes("node_local",195,"type")="unsigned-int" + Set gtmtypfldindx("node_local","epoch_taper_start_dbuffs")=195 + Set gtmtypes("node_local",196,"name")="node_local.epoch_taper_need_fsync" + Set gtmtypes("node_local",196,"off")=51080 + Set gtmtypes("node_local",196,"len")=4 + Set gtmtypes("node_local",196,"type")="boolean_t" + Set gtmtypfldindx("node_local","epoch_taper_need_fsync")=196 + Set gtmtypes("node_local",197,"name")="node_local.wt_pid_array" + Set gtmtypes("node_local",197,"off")=51084 + Set gtmtypes("node_local",197,"len")=16 + Set gtmtypes("node_local",197,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wt_pid_array")=197 + Set gtmtypes("node_local",197,"dim")=4 + Set gtmtypes("node_local",198,"name")="node_local.reorg_encrypt_pid" + Set gtmtypes("node_local",198,"off")=51100 + Set gtmtypes("node_local",198,"len")=4 + Set gtmtypes("node_local",198,"type")="unsigned-int" + Set gtmtypfldindx("node_local","reorg_encrypt_pid")=198 + Set gtmtypes("node_local",199,"name")="node_local.reorg_encrypt_cycle" + Set gtmtypes("node_local",199,"off")=51104 + Set gtmtypes("node_local",199,"len")=4 + Set gtmtypes("node_local",199,"type")="unsigned-int" + Set gtmtypfldindx("node_local","reorg_encrypt_cycle")=199 + Set gtmtypes("node_local",200,"name")="node_local.mupip_extract_count" + Set gtmtypes("node_local",200,"off")=51108 + Set gtmtypes("node_local",200,"len")=4 + Set gtmtypes("node_local",200,"type")="unsigned-int" + Set gtmtypfldindx("node_local","mupip_extract_count")=200 + Set gtmtypes("node_local",201,"name")="node_local.saved_acc_meth" + Set gtmtypes("node_local",201,"off")=51112 + Set gtmtypes("node_local",201,"len")=4 + Set gtmtypes("node_local",201,"type")="int" + Set gtmtypfldindx("node_local","saved_acc_meth")=201 + Set gtmtypes("node_local",202,"name")="node_local.saved_blk_size" + Set gtmtypes("node_local",202,"off")=51116 + Set gtmtypes("node_local",202,"len")=4 + Set gtmtypes("node_local",202,"type")="int" + Set gtmtypfldindx("node_local","saved_blk_size")=202 + Set gtmtypes("node_local",203,"name")="node_local.saved_lock_space_size" + Set gtmtypes("node_local",203,"off")=51120 + Set gtmtypes("node_local",203,"len")=4 + Set gtmtypes("node_local",203,"type")="unsigned-int" + Set gtmtypfldindx("node_local","saved_lock_space_size")=203 + Set gtmtypes("node_local",204,"name")="node_local.saved_jnl_buffer_size" + Set gtmtypes("node_local",204,"off")=51124 + Set gtmtypes("node_local",204,"len")=4 + Set gtmtypes("node_local",204,"type")="int" + Set gtmtypfldindx("node_local","saved_jnl_buffer_size")=204 + Set gtmtypes("node_local",205,"name")="node_local.lastwriterbypas_msg_issued" + Set gtmtypes("node_local",205,"off")=51128 + Set gtmtypes("node_local",205,"len")=4 + Set gtmtypes("node_local",205,"type")="boolean_t" + Set gtmtypfldindx("node_local","lastwriterbypas_msg_issued")=205 + Set gtmtypes("node_local",206,"name")="node_local.first_writer_seen" + Set gtmtypes("node_local",206,"off")=51132 + Set gtmtypes("node_local",206,"len")=4 + Set gtmtypes("node_local",206,"type")="boolean_t" + Set gtmtypfldindx("node_local","first_writer_seen")=206 + Set gtmtypes("node_local",207,"name")="node_local.first_nonbypas_writer_seen" + Set gtmtypes("node_local",207,"off")=51136 + Set gtmtypes("node_local",207,"len")=4 + Set gtmtypes("node_local",207,"type")="boolean_t" + Set gtmtypfldindx("node_local","first_nonbypas_writer_seen")=207 + Set gtmtypes("node_local",208,"name")="node_local.filler_8byte_align1" + Set gtmtypes("node_local",208,"off")=51140 + Set gtmtypes("node_local",208,"len")=4 + Set gtmtypes("node_local",208,"type")="unsigned-int" + Set gtmtypfldindx("node_local","filler_8byte_align1")=208 + ; + Set gtmtypes("noisolation_element")="struct" + Set gtmtypes("noisolation_element",0)=2 + Set gtmtypes("noisolation_element","len")=8 + Set gtmtypes("noisolation_element",1,"name")="noisolation_element.gvnh" + Set gtmtypes("noisolation_element",1,"off")=0 + Set gtmtypes("noisolation_element",1,"len")=4 + Set gtmtypes("noisolation_element",1,"type")="addr" + Set gtmtypfldindx("noisolation_element","gvnh")=1 + Set gtmtypes("noisolation_element",2,"name")="noisolation_element.next" + Set gtmtypes("noisolation_element",2,"off")=4 + Set gtmtypes("noisolation_element",2,"len")=4 + Set gtmtypes("noisolation_element",2,"type")="addr" + Set gtmtypfldindx("noisolation_element","next")=2 + ; + Set gtmtypes("noisolation_list")="struct" + Set gtmtypes("noisolation_list",0)=2 + Set gtmtypes("noisolation_list","len")=8 + Set gtmtypes("noisolation_list",1,"name")="noisolation_list.type" + Set gtmtypes("noisolation_list",1,"off")=0 + Set gtmtypes("noisolation_list",1,"len")=4 + Set gtmtypes("noisolation_list",1,"type")="int" + Set gtmtypfldindx("noisolation_list","type")=1 + Set gtmtypes("noisolation_list",2,"name")="noisolation_list.gvnh_list" + Set gtmtypes("noisolation_list",2,"off")=4 + Set gtmtypes("noisolation_list",2,"len")=4 + Set gtmtypes("noisolation_list",2,"type")="addr" + Set gtmtypfldindx("noisolation_list","gvnh_list")=2 + ; + Set gtmtypes("non_native_uint8")="struct" + Set gtmtypes("non_native_uint8",0)=1 + Set gtmtypes("non_native_uint8","len")=8 + Set gtmtypes("non_native_uint8",1,"name")="non_native_uint8.value" + Set gtmtypes("non_native_uint8",1,"off")=0 + Set gtmtypes("non_native_uint8",1,"len")=8 + Set gtmtypes("non_native_uint8",1,"type")="unsigned-int" + Set gtmtypfldindx("non_native_uint8","value")=1 + Set gtmtypes("non_native_uint8",1,"dim")=2 + ; + Set gtmtypes("octabstruct")="struct" + Set gtmtypes("octabstruct",0)=1 + Set gtmtypes("octabstruct","len")=2 + Set gtmtypes("octabstruct",1,"name")="octabstruct.octype" + Set gtmtypes("octabstruct",1,"off")=0 + Set gtmtypes("octabstruct",1,"len")=2 + Set gtmtypes("octabstruct",1,"type")="unsigned-short" + Set gtmtypfldindx("octabstruct","octype")=1 + ; + Set gtmtypes("omi_cl_stat")="struct" + Set gtmtypes("omi_cl_stat",0)=3 + Set gtmtypes("omi_cl_stat","len")=12 + Set gtmtypes("omi_cl_stat",1,"name")="omi_cl_stat.conn" + Set gtmtypes("omi_cl_stat",1,"off")=0 + Set gtmtypes("omi_cl_stat",1,"len")=4 + Set gtmtypes("omi_cl_stat",1,"type")="int" + Set gtmtypfldindx("omi_cl_stat","conn")=1 + Set gtmtypes("omi_cl_stat",2,"name")="omi_cl_stat.disc" + Set gtmtypes("omi_cl_stat",2,"off")=4 + Set gtmtypes("omi_cl_stat",2,"len")=4 + Set gtmtypes("omi_cl_stat",2,"type")="int" + Set gtmtypfldindx("omi_cl_stat","disc")=2 + Set gtmtypes("omi_cl_stat",3,"name")="omi_cl_stat.clos" + Set gtmtypes("omi_cl_stat",3,"off")=8 + Set gtmtypes("omi_cl_stat",3,"len")=4 + Set gtmtypes("omi_cl_stat",3,"type")="int" + Set gtmtypfldindx("omi_cl_stat","clos")=3 + ; + Set gtmtypes("omi_cn_stat")="struct" + Set gtmtypes("omi_cn_stat",0)=8 + Set gtmtypes("omi_cn_stat","len")=412 + Set gtmtypes("omi_cn_stat",1,"name")="omi_cn_stat.id" + Set gtmtypes("omi_cn_stat",1,"off")=0 + Set gtmtypes("omi_cn_stat",1,"len")=4 + Set gtmtypes("omi_cn_stat",1,"type")="int" + Set gtmtypfldindx("omi_cn_stat","id")=1 + Set gtmtypes("omi_cn_stat",2,"name")="omi_cn_stat.start" + Set gtmtypes("omi_cn_stat",2,"off")=4 + Set gtmtypes("omi_cn_stat",2,"len")=4 + Set gtmtypes("omi_cn_stat",2,"type")="time_t" + Set gtmtypfldindx("omi_cn_stat","start")=2 + Set gtmtypes("omi_cn_stat",3,"name")="omi_cn_stat.ai" + Set gtmtypes("omi_cn_stat",3,"off")=8 + Set gtmtypes("omi_cn_stat",3,"len")=32 + Set gtmtypes("omi_cn_stat",3,"type")="struct" + Set gtmtypfldindx("omi_cn_stat","ai")=3 + Set gtmtypes("omi_cn_stat",4,"name")="omi_cn_stat.sas" + Set gtmtypes("omi_cn_stat",4,"off")=40 + Set gtmtypes("omi_cn_stat",4,"len")=128 + Set gtmtypes("omi_cn_stat",4,"type")="struct" + Set gtmtypfldindx("omi_cn_stat","sas")=4 + Set gtmtypes("omi_cn_stat",5,"name")="omi_cn_stat.bytes_recv" + Set gtmtypes("omi_cn_stat",5,"off")=168 + Set gtmtypes("omi_cn_stat",5,"len")=4 + Set gtmtypes("omi_cn_stat",5,"type")="int" + Set gtmtypfldindx("omi_cn_stat","bytes_recv")=5 + Set gtmtypes("omi_cn_stat",6,"name")="omi_cn_stat.bytes_send" + Set gtmtypes("omi_cn_stat",6,"off")=172 + Set gtmtypes("omi_cn_stat",6,"len")=4 + Set gtmtypes("omi_cn_stat",6,"type")="int" + Set gtmtypfldindx("omi_cn_stat","bytes_send")=6 + Set gtmtypes("omi_cn_stat",7,"name")="omi_cn_stat.xact" + Set gtmtypes("omi_cn_stat",7,"off")=176 + Set gtmtypes("omi_cn_stat",7,"len")=136 + Set gtmtypes("omi_cn_stat",7,"type")="int" + Set gtmtypfldindx("omi_cn_stat","xact")=7 + Set gtmtypes("omi_cn_stat",7,"dim")=34 + Set gtmtypes("omi_cn_stat",8,"name")="omi_cn_stat.errs" + Set gtmtypes("omi_cn_stat",8,"off")=312 + Set gtmtypes("omi_cn_stat",8,"len")=100 + Set gtmtypes("omi_cn_stat",8,"type")="int" + Set gtmtypfldindx("omi_cn_stat","errs")=8 + Set gtmtypes("omi_cn_stat",8,"dim")=25 + ; + Set gtmtypes("omi_conn_ll")="struct" + Set gtmtypes("omi_conn_ll",0)=16 + Set gtmtypes("omi_conn_ll","len")=436 + Set gtmtypes("omi_conn_ll",1,"name")="omi_conn_ll.nve" + Set gtmtypes("omi_conn_ll",1,"off")=0 + Set gtmtypes("omi_conn_ll",1,"len")=4 + Set gtmtypes("omi_conn_ll",1,"type")="int" + Set gtmtypfldindx("omi_conn_ll","nve")=1 + Set gtmtypes("omi_conn_ll",2,"name")="omi_conn_ll.head" + Set gtmtypes("omi_conn_ll",2,"off")=4 + Set gtmtypes("omi_conn_ll",2,"len")=4 + Set gtmtypes("omi_conn_ll",2,"type")="addr" + Set gtmtypfldindx("omi_conn_ll","head")=2 + Set gtmtypes("omi_conn_ll",3,"name")="omi_conn_ll.tail" + Set gtmtypes("omi_conn_ll",3,"off")=8 + Set gtmtypes("omi_conn_ll",3,"len")=4 + Set gtmtypes("omi_conn_ll",3,"type")="addr" + Set gtmtypfldindx("omi_conn_ll","tail")=3 + Set gtmtypes("omi_conn_ll",4,"name")="omi_conn_ll.stats" + Set gtmtypes("omi_conn_ll",4,"off")=12 + Set gtmtypes("omi_conn_ll",4,"len")=12 + Set gtmtypes("omi_conn_ll",4,"type")="omi_cl_stat" + Set gtmtypfldindx("omi_conn_ll","stats")=4 + Set gtmtypes("omi_conn_ll",5,"name")="omi_conn_ll.stats.conn" + Set gtmtypes("omi_conn_ll",5,"off")=12 + Set gtmtypes("omi_conn_ll",5,"len")=4 + Set gtmtypes("omi_conn_ll",5,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.conn")=5 + Set gtmtypes("omi_conn_ll",6,"name")="omi_conn_ll.stats.disc" + Set gtmtypes("omi_conn_ll",6,"off")=16 + Set gtmtypes("omi_conn_ll",6,"len")=4 + Set gtmtypes("omi_conn_ll",6,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.disc")=6 + Set gtmtypes("omi_conn_ll",7,"name")="omi_conn_ll.stats.clos" + Set gtmtypes("omi_conn_ll",7,"off")=20 + Set gtmtypes("omi_conn_ll",7,"len")=4 + Set gtmtypes("omi_conn_ll",7,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.clos")=7 + Set gtmtypes("omi_conn_ll",8,"name")="omi_conn_ll.st_cn" + Set gtmtypes("omi_conn_ll",8,"off")=24 + Set gtmtypes("omi_conn_ll",8,"len")=412 + Set gtmtypes("omi_conn_ll",8,"type")="omi_cn_stat" + Set gtmtypfldindx("omi_conn_ll","st_cn")=8 + Set gtmtypes("omi_conn_ll",9,"name")="omi_conn_ll.st_cn.id" + Set gtmtypes("omi_conn_ll",9,"off")=24 + Set gtmtypes("omi_conn_ll",9,"len")=4 + Set gtmtypes("omi_conn_ll",9,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.id")=9 + Set gtmtypes("omi_conn_ll",10,"name")="omi_conn_ll.st_cn.start" + Set gtmtypes("omi_conn_ll",10,"off")=28 + Set gtmtypes("omi_conn_ll",10,"len")=4 + Set gtmtypes("omi_conn_ll",10,"type")="time_t" + Set gtmtypfldindx("omi_conn_ll","st_cn.start")=10 + Set gtmtypes("omi_conn_ll",11,"name")="omi_conn_ll.st_cn.ai" + Set gtmtypes("omi_conn_ll",11,"off")=32 + Set gtmtypes("omi_conn_ll",11,"len")=32 + Set gtmtypes("omi_conn_ll",11,"type")="struct" + Set gtmtypfldindx("omi_conn_ll","st_cn.ai")=11 + Set gtmtypes("omi_conn_ll",12,"name")="omi_conn_ll.st_cn.sas" + Set gtmtypes("omi_conn_ll",12,"off")=64 + Set gtmtypes("omi_conn_ll",12,"len")=128 + Set gtmtypes("omi_conn_ll",12,"type")="struct" + Set gtmtypfldindx("omi_conn_ll","st_cn.sas")=12 + Set gtmtypes("omi_conn_ll",13,"name")="omi_conn_ll.st_cn.bytes_recv" + Set gtmtypes("omi_conn_ll",13,"off")=192 + Set gtmtypes("omi_conn_ll",13,"len")=4 + Set gtmtypes("omi_conn_ll",13,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.bytes_recv")=13 + Set gtmtypes("omi_conn_ll",14,"name")="omi_conn_ll.st_cn.bytes_send" + Set gtmtypes("omi_conn_ll",14,"off")=196 + Set gtmtypes("omi_conn_ll",14,"len")=4 + Set gtmtypes("omi_conn_ll",14,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.bytes_send")=14 + Set gtmtypes("omi_conn_ll",15,"name")="omi_conn_ll.st_cn.xact" + Set gtmtypes("omi_conn_ll",15,"off")=200 + Set gtmtypes("omi_conn_ll",15,"len")=136 + Set gtmtypes("omi_conn_ll",15,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.xact")=15 + Set gtmtypes("omi_conn_ll",15,"dim")=34 + Set gtmtypes("omi_conn_ll",16,"name")="omi_conn_ll.st_cn.errs" + Set gtmtypes("omi_conn_ll",16,"off")=336 + Set gtmtypes("omi_conn_ll",16,"len")=100 + Set gtmtypes("omi_conn_ll",16,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.errs")=16 + Set gtmtypes("omi_conn_ll",16,"dim")=25 + ; + Set gtmtypes("omi_err_hdr")="struct" + Set gtmtypes("omi_err_hdr",0)=3 + Set gtmtypes("omi_err_hdr","len")=6 + Set gtmtypes("omi_err_hdr",1,"name")="omi_err_hdr.class" + Set gtmtypes("omi_err_hdr",1,"off")=0 + Set gtmtypes("omi_err_hdr",1,"len")=2 + Set gtmtypes("omi_err_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("omi_err_hdr","class")=1 + Set gtmtypes("omi_err_hdr",2,"name")="omi_err_hdr.type" + Set gtmtypes("omi_err_hdr",2,"off")=2 + Set gtmtypes("omi_err_hdr",2,"len")=1 + Set gtmtypes("omi_err_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("omi_err_hdr","type")=2 + Set gtmtypes("omi_err_hdr",3,"name")="omi_err_hdr.modifier" + Set gtmtypes("omi_err_hdr",3,"off")=4 + Set gtmtypes("omi_err_hdr",3,"len")=2 + Set gtmtypes("omi_err_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("omi_err_hdr","modifier")=3 + ; + Set gtmtypes("omi_hist_rec")="struct" + Set gtmtypes("omi_hist_rec",0)=7 + Set gtmtypes("omi_hist_rec","len")=16404 + Set gtmtypes("omi_hist_rec",1,"name")="omi_hist_rec.conn" + Set gtmtypes("omi_hist_rec",1,"off")=0 + Set gtmtypes("omi_hist_rec",1,"len")=4 + Set gtmtypes("omi_hist_rec",1,"type")="int" + Set gtmtypfldindx("omi_hist_rec","conn")=1 + Set gtmtypes("omi_hist_rec",2,"name")="omi_hist_rec.timestamp" + Set gtmtypes("omi_hist_rec",2,"off")=4 + Set gtmtypes("omi_hist_rec",2,"len")=4 + Set gtmtypes("omi_hist_rec",2,"type")="time_t" + Set gtmtypfldindx("omi_hist_rec","timestamp")=2 + Set gtmtypes("omi_hist_rec",3,"name")="omi_hist_rec.toobigflag" + Set gtmtypes("omi_hist_rec",3,"off")=8 + Set gtmtypes("omi_hist_rec",3,"len")=4 + Set gtmtypes("omi_hist_rec",3,"type")="int" + Set gtmtypfldindx("omi_hist_rec","toobigflag")=3 + Set gtmtypes("omi_hist_rec",4,"name")="omi_hist_rec.req" + Set gtmtypes("omi_hist_rec",4,"off")=12 + Set gtmtypes("omi_hist_rec",4,"len")=8192 + Set gtmtypes("omi_hist_rec",4,"type")="char" + Set gtmtypfldindx("omi_hist_rec","req")=4 + Set gtmtypes("omi_hist_rec",5,"name")="omi_hist_rec.rsp" + Set gtmtypes("omi_hist_rec",5,"off")=8204 + Set gtmtypes("omi_hist_rec",5,"len")=8192 + Set gtmtypes("omi_hist_rec",5,"type")="char" + Set gtmtypfldindx("omi_hist_rec","rsp")=5 + Set gtmtypes("omi_hist_rec",6,"name")="omi_hist_rec.req_len" + Set gtmtypes("omi_hist_rec",6,"off")=16396 + Set gtmtypes("omi_hist_rec",6,"len")=4 + Set gtmtypes("omi_hist_rec",6,"type")="int" + Set gtmtypfldindx("omi_hist_rec","req_len")=6 + Set gtmtypes("omi_hist_rec",7,"name")="omi_hist_rec.rsp_len" + Set gtmtypes("omi_hist_rec",7,"off")=16400 + Set gtmtypes("omi_hist_rec",7,"len")=4 + Set gtmtypes("omi_hist_rec",7,"type")="int" + Set gtmtypfldindx("omi_hist_rec","rsp_len")=7 + ; + Set gtmtypes("omi_li")="union" + Set gtmtypes("omi_li",0)=2 + Set gtmtypes("omi_li","len")=2 + Set gtmtypes("omi_li",1,"name")="omi_li.octet" + Set gtmtypes("omi_li",1,"off")=0 + Set gtmtypes("omi_li",1,"len")=2 + Set gtmtypes("omi_li",1,"type")="char" + Set gtmtypfldindx("omi_li","octet")=1 + Set gtmtypes("omi_li",2,"name")="omi_li.value" + Set gtmtypes("omi_li",2,"off")=0 + Set gtmtypes("omi_li",2,"len")=2 + Set gtmtypes("omi_li",2,"type")="unsigned-short" + Set gtmtypfldindx("omi_li","value")=2 + ; + Set gtmtypes("omi_req_hdr")="struct" + Set gtmtypes("omi_req_hdr",0)=18 + Set gtmtypes("omi_req_hdr","len")=12 + Set gtmtypes("omi_req_hdr",1,"name")="omi_req_hdr.op_class" + Set gtmtypes("omi_req_hdr",1,"off")=0 + Set gtmtypes("omi_req_hdr",1,"len")=2 + Set gtmtypes("omi_req_hdr",1,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","op_class")=1 + Set gtmtypes("omi_req_hdr",2,"name")="omi_req_hdr.op_class.octet" + Set gtmtypes("omi_req_hdr",2,"off")=0 + Set gtmtypes("omi_req_hdr",2,"len")=2 + Set gtmtypes("omi_req_hdr",2,"type")="char" + Set gtmtypfldindx("omi_req_hdr","op_class.octet")=2 + Set gtmtypes("omi_req_hdr",3,"name")="omi_req_hdr.op_class.value" + Set gtmtypes("omi_req_hdr",3,"off")=0 + Set gtmtypes("omi_req_hdr",3,"len")=2 + Set gtmtypes("omi_req_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","op_class.value")=3 + Set gtmtypes("omi_req_hdr",4,"name")="omi_req_hdr.op_type" + Set gtmtypes("omi_req_hdr",4,"off")=2 + Set gtmtypes("omi_req_hdr",4,"len")=1 + Set gtmtypes("omi_req_hdr",4,"type")="omi_si" + Set gtmtypfldindx("omi_req_hdr","op_type")=4 + Set gtmtypes("omi_req_hdr",5,"name")="omi_req_hdr.op_type.octet" + Set gtmtypes("omi_req_hdr",5,"off")=2 + Set gtmtypes("omi_req_hdr",5,"len")=1 + Set gtmtypes("omi_req_hdr",5,"type")="char" + Set gtmtypfldindx("omi_req_hdr","op_type.octet")=5 + Set gtmtypes("omi_req_hdr",6,"name")="omi_req_hdr.op_type.value" + Set gtmtypes("omi_req_hdr",6,"off")=2 + Set gtmtypes("omi_req_hdr",6,"len")=1 + Set gtmtypes("omi_req_hdr",6,"type")="unsigned-char" + Set gtmtypfldindx("omi_req_hdr","op_type.value")=6 + Set gtmtypes("omi_req_hdr",7,"name")="omi_req_hdr.user" + Set gtmtypes("omi_req_hdr",7,"off")=4 + Set gtmtypes("omi_req_hdr",7,"len")=2 + Set gtmtypes("omi_req_hdr",7,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","user")=7 + Set gtmtypes("omi_req_hdr",8,"name")="omi_req_hdr.user.octet" + Set gtmtypes("omi_req_hdr",8,"off")=4 + Set gtmtypes("omi_req_hdr",8,"len")=2 + Set gtmtypes("omi_req_hdr",8,"type")="char" + Set gtmtypfldindx("omi_req_hdr","user.octet")=8 + Set gtmtypes("omi_req_hdr",9,"name")="omi_req_hdr.user.value" + Set gtmtypes("omi_req_hdr",9,"off")=4 + Set gtmtypes("omi_req_hdr",9,"len")=2 + Set gtmtypes("omi_req_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","user.value")=9 + Set gtmtypes("omi_req_hdr",10,"name")="omi_req_hdr.group" + Set gtmtypes("omi_req_hdr",10,"off")=6 + Set gtmtypes("omi_req_hdr",10,"len")=2 + Set gtmtypes("omi_req_hdr",10,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","group")=10 + Set gtmtypes("omi_req_hdr",11,"name")="omi_req_hdr.group.octet" + Set gtmtypes("omi_req_hdr",11,"off")=6 + Set gtmtypes("omi_req_hdr",11,"len")=2 + Set gtmtypes("omi_req_hdr",11,"type")="char" + Set gtmtypfldindx("omi_req_hdr","group.octet")=11 + Set gtmtypes("omi_req_hdr",12,"name")="omi_req_hdr.group.value" + Set gtmtypes("omi_req_hdr",12,"off")=6 + Set gtmtypes("omi_req_hdr",12,"len")=2 + Set gtmtypes("omi_req_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","group.value")=12 + Set gtmtypes("omi_req_hdr",13,"name")="omi_req_hdr.seq" + Set gtmtypes("omi_req_hdr",13,"off")=8 + Set gtmtypes("omi_req_hdr",13,"len")=2 + Set gtmtypes("omi_req_hdr",13,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","seq")=13 + Set gtmtypes("omi_req_hdr",14,"name")="omi_req_hdr.seq.octet" + Set gtmtypes("omi_req_hdr",14,"off")=8 + Set gtmtypes("omi_req_hdr",14,"len")=2 + Set gtmtypes("omi_req_hdr",14,"type")="char" + Set gtmtypfldindx("omi_req_hdr","seq.octet")=14 + Set gtmtypes("omi_req_hdr",15,"name")="omi_req_hdr.seq.value" + Set gtmtypes("omi_req_hdr",15,"off")=8 + Set gtmtypes("omi_req_hdr",15,"len")=2 + Set gtmtypes("omi_req_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","seq.value")=15 + Set gtmtypes("omi_req_hdr",16,"name")="omi_req_hdr.ref" + Set gtmtypes("omi_req_hdr",16,"off")=10 + Set gtmtypes("omi_req_hdr",16,"len")=2 + Set gtmtypes("omi_req_hdr",16,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","ref")=16 + Set gtmtypes("omi_req_hdr",17,"name")="omi_req_hdr.ref.octet" + Set gtmtypes("omi_req_hdr",17,"off")=10 + Set gtmtypes("omi_req_hdr",17,"len")=2 + Set gtmtypes("omi_req_hdr",17,"type")="char" + Set gtmtypfldindx("omi_req_hdr","ref.octet")=17 + Set gtmtypes("omi_req_hdr",18,"name")="omi_req_hdr.ref.value" + Set gtmtypes("omi_req_hdr",18,"off")=10 + Set gtmtypes("omi_req_hdr",18,"len")=2 + Set gtmtypes("omi_req_hdr",18,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","ref.value")=18 + ; + Set gtmtypes("omi_si")="union" + Set gtmtypes("omi_si",0)=2 + Set gtmtypes("omi_si","len")=1 + Set gtmtypes("omi_si",1,"name")="omi_si.octet" + Set gtmtypes("omi_si",1,"off")=0 + Set gtmtypes("omi_si",1,"len")=1 + Set gtmtypes("omi_si",1,"type")="char" + Set gtmtypfldindx("omi_si","octet")=1 + Set gtmtypes("omi_si",2,"name")="omi_si.value" + Set gtmtypes("omi_si",2,"off")=0 + Set gtmtypes("omi_si",2,"len")=1 + Set gtmtypes("omi_si",2,"type")="unsigned-char" + Set gtmtypfldindx("omi_si","value")=2 + ; + Set gtmtypes("omi_vi")="union" + Set gtmtypes("omi_vi",0)=2 + Set gtmtypes("omi_vi","len")=4 + Set gtmtypes("omi_vi",1,"name")="omi_vi.octet" + Set gtmtypes("omi_vi",1,"off")=0 + Set gtmtypes("omi_vi",1,"len")=4 + Set gtmtypes("omi_vi",1,"type")="char" + Set gtmtypfldindx("omi_vi","octet")=1 + Set gtmtypes("omi_vi",2,"name")="omi_vi.value" + Set gtmtypes("omi_vi",2,"off")=0 + Set gtmtypes("omi_vi",2,"len")=4 + Set gtmtypes("omi_vi",2,"type")="unsigned-int" + Set gtmtypfldindx("omi_vi","value")=2 + ; + Set gtmtypes("onln_rlbk_reg_list")="struct" + Set gtmtypes("onln_rlbk_reg_list",0)=7 + Set gtmtypes("onln_rlbk_reg_list","len")=32 + Set gtmtypes("onln_rlbk_reg_list",1,"name")="onln_rlbk_reg_list.fPtr" + Set gtmtypes("onln_rlbk_reg_list",1,"off")=0 + Set gtmtypes("onln_rlbk_reg_list",1,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",1,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","fPtr")=1 + Set gtmtypes("onln_rlbk_reg_list",2,"name")="onln_rlbk_reg_list.reg" + Set gtmtypes("onln_rlbk_reg_list",2,"off")=4 + Set gtmtypes("onln_rlbk_reg_list",2,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",2,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","reg")=2 + Set gtmtypes("onln_rlbk_reg_list",3,"name")="onln_rlbk_reg_list.unique_file_id" + Set gtmtypes("onln_rlbk_reg_list",3,"off")=8 + Set gtmtypes("onln_rlbk_reg_list",3,"len")=20 + Set gtmtypes("onln_rlbk_reg_list",3,"type")="unix_file_id" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id")=3 + Set gtmtypes("onln_rlbk_reg_list",4,"name")="onln_rlbk_reg_list.unique_file_id.inode" + Set gtmtypes("onln_rlbk_reg_list",4,"off")=8 + Set gtmtypes("onln_rlbk_reg_list",4,"len")=8 + Set gtmtypes("onln_rlbk_reg_list",4,"type")="ino_t" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.inode")=4 + Set gtmtypes("onln_rlbk_reg_list",5,"name")="onln_rlbk_reg_list.unique_file_id.device" + Set gtmtypes("onln_rlbk_reg_list",5,"off")=16 + Set gtmtypes("onln_rlbk_reg_list",5,"len")=8 + Set gtmtypes("onln_rlbk_reg_list",5,"type")="dev_t" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.device")=5 + Set gtmtypes("onln_rlbk_reg_list",6,"name")="onln_rlbk_reg_list.unique_file_id.st_gen" + Set gtmtypes("onln_rlbk_reg_list",6,"off")=24 + Set gtmtypes("onln_rlbk_reg_list",6,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",6,"type")="unsigned-int" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.st_gen")=6 + Set gtmtypes("onln_rlbk_reg_list",7,"name")="onln_rlbk_reg_list.rctl" + Set gtmtypes("onln_rlbk_reg_list",7,"off")=28 + Set gtmtypes("onln_rlbk_reg_list",7,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",7,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","rctl")=7 + ; + Set gtmtypes("open_relinkctl_sgm")="struct" + Set gtmtypes("open_relinkctl_sgm",0)=16 + Set gtmtypes("open_relinkctl_sgm","len")=356 + Set gtmtypes("open_relinkctl_sgm",1,"name")="open_relinkctl_sgm.next" + Set gtmtypes("open_relinkctl_sgm",1,"off")=0 + Set gtmtypes("open_relinkctl_sgm",1,"len")=4 + Set gtmtypes("open_relinkctl_sgm",1,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","next")=1 + Set gtmtypes("open_relinkctl_sgm",2,"name")="open_relinkctl_sgm.zro_entry_name" + Set gtmtypes("open_relinkctl_sgm",2,"off")=4 + Set gtmtypes("open_relinkctl_sgm",2,"len")=12 + Set gtmtypes("open_relinkctl_sgm",2,"type")="mstr" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name")=2 + Set gtmtypes("open_relinkctl_sgm",3,"name")="open_relinkctl_sgm.zro_entry_name.char_len" + Set gtmtypes("open_relinkctl_sgm",3,"off")=4 + Set gtmtypes("open_relinkctl_sgm",3,"len")=4 + Set gtmtypes("open_relinkctl_sgm",3,"type")="unsigned-int" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.char_len")=3 + Set gtmtypes("open_relinkctl_sgm",4,"name")="open_relinkctl_sgm.zro_entry_name.len" + Set gtmtypes("open_relinkctl_sgm",4,"off")=8 + Set gtmtypes("open_relinkctl_sgm",4,"len")=4 + Set gtmtypes("open_relinkctl_sgm",4,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.len")=4 + Set gtmtypes("open_relinkctl_sgm",5,"name")="open_relinkctl_sgm.zro_entry_name.addr" + Set gtmtypes("open_relinkctl_sgm",5,"off")=12 + Set gtmtypes("open_relinkctl_sgm",5,"len")=4 + Set gtmtypes("open_relinkctl_sgm",5,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.addr")=5 + Set gtmtypes("open_relinkctl_sgm",6,"name")="open_relinkctl_sgm.relinkctl_path" + Set gtmtypes("open_relinkctl_sgm",6,"off")=16 + Set gtmtypes("open_relinkctl_sgm",6,"len")=4 + Set gtmtypes("open_relinkctl_sgm",6,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","relinkctl_path")=6 + Set gtmtypes("open_relinkctl_sgm",7,"name")="open_relinkctl_sgm.n_records" + Set gtmtypes("open_relinkctl_sgm",7,"off")=20 + Set gtmtypes("open_relinkctl_sgm",7,"len")=4 + Set gtmtypes("open_relinkctl_sgm",7,"type")="unsigned-int" + Set gtmtypfldindx("open_relinkctl_sgm","n_records")=7 + Set gtmtypes("open_relinkctl_sgm",8,"name")="open_relinkctl_sgm.locked" + Set gtmtypes("open_relinkctl_sgm",8,"off")=24 + Set gtmtypes("open_relinkctl_sgm",8,"len")=4 + Set gtmtypes("open_relinkctl_sgm",8,"type")="boolean_t" + Set gtmtypfldindx("open_relinkctl_sgm","locked")=8 + Set gtmtypes("open_relinkctl_sgm",9,"name")="open_relinkctl_sgm.hdr" + Set gtmtypes("open_relinkctl_sgm",9,"off")=28 + Set gtmtypes("open_relinkctl_sgm",9,"len")=4 + Set gtmtypes("open_relinkctl_sgm",9,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","hdr")=9 + Set gtmtypes("open_relinkctl_sgm",10,"name")="open_relinkctl_sgm.rec_base" + Set gtmtypes("open_relinkctl_sgm",10,"off")=32 + Set gtmtypes("open_relinkctl_sgm",10,"len")=4 + Set gtmtypes("open_relinkctl_sgm",10,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","rec_base")=10 + Set gtmtypes("open_relinkctl_sgm",11,"name")="open_relinkctl_sgm.shm_hashbase" + Set gtmtypes("open_relinkctl_sgm",11,"off")=36 + Set gtmtypes("open_relinkctl_sgm",11,"len")=4 + Set gtmtypes("open_relinkctl_sgm",11,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","shm_hashbase")=11 + Set gtmtypes("open_relinkctl_sgm",12,"name")="open_relinkctl_sgm.rtnobj_shm_base" + Set gtmtypes("open_relinkctl_sgm",12,"off")=40 + Set gtmtypes("open_relinkctl_sgm",12,"len")=152 + Set gtmtypes("open_relinkctl_sgm",12,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_shm_base")=12 + Set gtmtypes("open_relinkctl_sgm",12,"dim")=38 + Set gtmtypes("open_relinkctl_sgm",13,"name")="open_relinkctl_sgm.rtnobj_shmid" + Set gtmtypes("open_relinkctl_sgm",13,"off")=192 + Set gtmtypes("open_relinkctl_sgm",13,"len")=152 + Set gtmtypes("open_relinkctl_sgm",13,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_shmid")=13 + Set gtmtypes("open_relinkctl_sgm",13,"dim")=38 + Set gtmtypes("open_relinkctl_sgm",14,"name")="open_relinkctl_sgm.fd" + Set gtmtypes("open_relinkctl_sgm",14,"off")=344 + Set gtmtypes("open_relinkctl_sgm",14,"len")=4 + Set gtmtypes("open_relinkctl_sgm",14,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","fd")=14 + Set gtmtypes("open_relinkctl_sgm",15,"name")="open_relinkctl_sgm.rtnobj_min_shm_index" + Set gtmtypes("open_relinkctl_sgm",15,"off")=348 + Set gtmtypes("open_relinkctl_sgm",15,"len")=4 + Set gtmtypes("open_relinkctl_sgm",15,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_min_shm_index")=15 + Set gtmtypes("open_relinkctl_sgm",16,"name")="open_relinkctl_sgm.rtnobj_max_shm_index" + Set gtmtypes("open_relinkctl_sgm",16,"off")=352 + Set gtmtypes("open_relinkctl_sgm",16,"len")=4 + Set gtmtypes("open_relinkctl_sgm",16,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_max_shm_index")=16 + ; + Set gtmtypes("open_shlib")="struct" + Set gtmtypes("open_shlib",0)=3 + Set gtmtypes("open_shlib","len")=264 + Set gtmtypes("open_shlib",1,"name")="open_shlib.next" + Set gtmtypes("open_shlib",1,"off")=0 + Set gtmtypes("open_shlib",1,"len")=4 + Set gtmtypes("open_shlib",1,"type")="addr" + Set gtmtypfldindx("open_shlib","next")=1 + Set gtmtypes("open_shlib",2,"name")="open_shlib.shlib_handle" + Set gtmtypes("open_shlib",2,"off")=4 + Set gtmtypes("open_shlib",2,"len")=4 + Set gtmtypes("open_shlib",2,"type")="addr" + Set gtmtypfldindx("open_shlib","shlib_handle")=2 + Set gtmtypes("open_shlib",3,"name")="open_shlib.shlib_name" + Set gtmtypes("open_shlib",3,"off")=8 + Set gtmtypes("open_shlib",3,"len")=256 + Set gtmtypes("open_shlib",3,"type")="char" + Set gtmtypfldindx("open_shlib","shlib_name")=3 + ; + Set gtmtypes("oprtype")="struct" + Set gtmtypes("oprtype",0)=15 + Set gtmtypes("oprtype","len")=8 + Set gtmtypes("oprtype",1,"name")="oprtype.oprclass" + Set gtmtypes("oprtype",1,"off")=0 + Set gtmtypes("oprtype",1,"len")=4 + Set gtmtypes("oprtype",1,"type")="int" + Set gtmtypfldindx("oprtype","oprclass")=1 + Set gtmtypes("oprtype",2,"name")="oprtype.oprval" + Set gtmtypes("oprtype",2,"off")=4 + Set gtmtypes("oprtype",2,"len")=4 + Set gtmtypes("oprtype",2,"type")="union" + Set gtmtypfldindx("oprtype","oprval")=2 + Set gtmtypes("oprtype",3,"name")="oprtype.oprval.indr" + Set gtmtypes("oprtype",3,"off")=4 + Set gtmtypes("oprtype",3,"len")=4 + Set gtmtypes("oprtype",3,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.indr")=3 + Set gtmtypes("oprtype",4,"name")="oprtype.oprval.tref" + Set gtmtypes("oprtype",4,"off")=4 + Set gtmtypes("oprtype",4,"len")=4 + Set gtmtypes("oprtype",4,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.tref")=4 + Set gtmtypes("oprtype",5,"name")="oprtype.oprval.tsize" + Set gtmtypes("oprtype",5,"off")=4 + Set gtmtypes("oprtype",5,"len")=4 + Set gtmtypes("oprtype",5,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.tsize")=5 + Set gtmtypes("oprtype",6,"name")="oprtype.oprval.lab" + Set gtmtypes("oprtype",6,"off")=4 + Set gtmtypes("oprtype",6,"len")=4 + Set gtmtypes("oprtype",6,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.lab")=6 + Set gtmtypes("oprtype",7,"name")="oprtype.oprval.mlin" + Set gtmtypes("oprtype",7,"off")=4 + Set gtmtypes("oprtype",7,"len")=4 + Set gtmtypes("oprtype",7,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.mlin")=7 + Set gtmtypes("oprtype",8,"name")="oprtype.oprval.mlit" + Set gtmtypes("oprtype",8,"off")=4 + Set gtmtypes("oprtype",8,"len")=4 + Set gtmtypes("oprtype",8,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.mlit")=8 + Set gtmtypes("oprtype",9,"name")="oprtype.oprval.cdlt" + Set gtmtypes("oprtype",9,"off")=4 + Set gtmtypes("oprtype",9,"len")=4 + Set gtmtypes("oprtype",9,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.cdlt")=9 + Set gtmtypes("oprtype",10,"name")="oprtype.oprval.cdidx" + Set gtmtypes("oprtype",10,"off")=4 + Set gtmtypes("oprtype",10,"len")=4 + Set gtmtypes("oprtype",10,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.cdidx")=10 + Set gtmtypes("oprtype",11,"name")="oprtype.oprval.vref" + Set gtmtypes("oprtype",11,"off")=4 + Set gtmtypes("oprtype",11,"len")=4 + Set gtmtypes("oprtype",11,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.vref")=11 + Set gtmtypes("oprtype",12,"name")="oprtype.oprval.temp" + Set gtmtypes("oprtype",12,"off")=4 + Set gtmtypes("oprtype",12,"len")=4 + Set gtmtypes("oprtype",12,"type")="int" + Set gtmtypfldindx("oprtype","oprval.temp")=12 + Set gtmtypes("oprtype",13,"name")="oprtype.oprval.ilit" + Set gtmtypes("oprtype",13,"off")=4 + Set gtmtypes("oprtype",13,"len")=4 + Set gtmtypes("oprtype",13,"type")="int" + Set gtmtypfldindx("oprtype","oprval.ilit")=13 + Set gtmtypes("oprtype",14,"name")="oprtype.oprval.offset" + Set gtmtypes("oprtype",14,"off")=4 + Set gtmtypes("oprtype",14,"len")=4 + Set gtmtypes("oprtype",14,"type")="int" + Set gtmtypfldindx("oprtype","oprval.offset")=14 + Set gtmtypes("oprtype",15,"name")="oprtype.oprval.vreg" + Set gtmtypes("oprtype",15,"off")=4 + Set gtmtypes("oprtype",15,"len")=1 + Set gtmtypes("oprtype",15,"type")="unsigned-char" + Set gtmtypfldindx("oprtype","oprval.vreg")=15 + ; + Set gtmtypes("p1hdr")="struct" + Set gtmtypes("p1hdr",0)=16 + Set gtmtypes("p1hdr","len")=512 + Set gtmtypes("p1hdr",1,"name")="p1hdr.p1hdr_tag" + Set gtmtypes("p1hdr",1,"off")=0 + Set gtmtypes("p1hdr",1,"len")=8 + Set gtmtypes("p1hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","p1hdr_tag")=1 + Set gtmtypes("p1hdr",2,"name")="p1hdr.tn" + Set gtmtypes("p1hdr",2,"off")=8 + Set gtmtypes("p1hdr",2,"len")=4 + Set gtmtypes("p1hdr",2,"type")="v15_trans_num" + Set gtmtypfldindx("p1hdr","tn")=2 + Set gtmtypes("p1hdr",3,"name")="p1hdr.blk_count" + Set gtmtypes("p1hdr",3,"off")=12 + Set gtmtypes("p1hdr",3,"len")=4 + Set gtmtypes("p1hdr",3,"type")="int" + Set gtmtypfldindx("p1hdr","blk_count")=3 + Set gtmtypes("p1hdr",4,"name")="p1hdr.tot_blocks" + Set gtmtypes("p1hdr",4,"off")=16 + Set gtmtypes("p1hdr",4,"len")=4 + Set gtmtypes("p1hdr",4,"type")="int" + Set gtmtypfldindx("p1hdr","tot_blocks")=4 + Set gtmtypes("p1hdr",5,"name")="p1hdr.dt_leaf_cnt" + Set gtmtypes("p1hdr",5,"off")=20 + Set gtmtypes("p1hdr",5,"len")=4 + Set gtmtypes("p1hdr",5,"type")="int" + Set gtmtypfldindx("p1hdr","dt_leaf_cnt")=5 + Set gtmtypes("p1hdr",6,"name")="p1hdr.dt_index_cnt" + Set gtmtypes("p1hdr",6,"off")=24 + Set gtmtypes("p1hdr",6,"len")=4 + Set gtmtypes("p1hdr",6,"type")="int" + Set gtmtypfldindx("p1hdr","dt_index_cnt")=6 + Set gtmtypes("p1hdr",7,"name")="p1hdr.gvt_leaf_cnt" + Set gtmtypes("p1hdr",7,"off")=28 + Set gtmtypes("p1hdr",7,"len")=4 + Set gtmtypes("p1hdr",7,"type")="int" + Set gtmtypfldindx("p1hdr","gvt_leaf_cnt")=7 + Set gtmtypes("p1hdr",8,"name")="p1hdr.gvt_index_cnt" + Set gtmtypes("p1hdr",8,"off")=32 + Set gtmtypes("p1hdr",8,"len")=4 + Set gtmtypes("p1hdr",8,"type")="int" + Set gtmtypfldindx("p1hdr","gvt_index_cnt")=8 + Set gtmtypes("p1hdr",9,"name")="p1hdr.regname" + Set gtmtypes("p1hdr",9,"off")=36 + Set gtmtypes("p1hdr",9,"len")=32 + Set gtmtypes("p1hdr",9,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","regname")=9 + Set gtmtypes("p1hdr",10,"name")="p1hdr.dbfn" + Set gtmtypes("p1hdr",10,"off")=68 + Set gtmtypes("p1hdr",10,"len")=256 + Set gtmtypes("p1hdr",10,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","dbfn")=10 + Set gtmtypes("p1hdr",11,"name")="p1hdr.uid_len" + Set gtmtypes("p1hdr",11,"off")=324 + Set gtmtypes("p1hdr",11,"len")=4 + Set gtmtypes("p1hdr",11,"type")="int" + Set gtmtypfldindx("p1hdr","uid_len")=11 + Set gtmtypes("p1hdr",12,"name")="p1hdr.unique_id" + Set gtmtypes("p1hdr",12,"off")=328 + Set gtmtypes("p1hdr",12,"len")=20 + Set gtmtypes("p1hdr",12,"type")="unique_file_id" + Set gtmtypfldindx("p1hdr","unique_id")=12 + Set gtmtypes("p1hdr",13,"name")="p1hdr.unique_id.uid" + Set gtmtypes("p1hdr",13,"off")=328 + Set gtmtypes("p1hdr",13,"len")=20 + Set gtmtypes("p1hdr",13,"type")="unix_file_id" + Set gtmtypfldindx("p1hdr","unique_id.uid")=13 + Set gtmtypes("p1hdr",14,"name")="p1hdr.unique_id.file_id" + Set gtmtypes("p1hdr",14,"off")=328 + Set gtmtypes("p1hdr",14,"len")=20 + Set gtmtypes("p1hdr",14,"type")="char" + Set gtmtypfldindx("p1hdr","unique_id.file_id")=14 + Set gtmtypes("p1hdr",15,"name")="p1hdr.fillx" + Set gtmtypes("p1hdr",15,"off")=348 + Set gtmtypes("p1hdr",15,"len")=12 + Set gtmtypes("p1hdr",15,"type")="char" + Set gtmtypfldindx("p1hdr","fillx")=15 + Set gtmtypes("p1hdr",16,"name")="p1hdr.fill512" + Set gtmtypes("p1hdr",16,"off")=360 + Set gtmtypes("p1hdr",16,"len")=152 + Set gtmtypes("p1hdr",16,"type")="char" + Set gtmtypfldindx("p1hdr","fill512")=16 + ; + Set gtmtypes("p1rec")="struct" + Set gtmtypes("p1rec",0)=5 + Set gtmtypes("p1rec","len")=20 + Set gtmtypes("p1rec",1,"name")="p1rec.tn" + Set gtmtypes("p1rec",1,"off")=0 + Set gtmtypes("p1rec",1,"len")=4 + Set gtmtypes("p1rec",1,"type")="v15_trans_num" + Set gtmtypfldindx("p1rec","tn")=1 + Set gtmtypes("p1rec",2,"name")="p1rec.blk_num" + Set gtmtypes("p1rec",2,"off")=4 + Set gtmtypes("p1rec",2,"len")=4 + Set gtmtypes("p1rec",2,"type")="int" + Set gtmtypfldindx("p1rec","blk_num")=2 + Set gtmtypes("p1rec",3,"name")="p1rec.blk_type" + Set gtmtypes("p1rec",3,"off")=8 + Set gtmtypes("p1rec",3,"len")=4 + Set gtmtypes("p1rec",3,"type")="int" + Set gtmtypfldindx("p1rec","blk_type")=3 + Set gtmtypes("p1rec",4,"name")="p1rec.blk_levl" + Set gtmtypes("p1rec",4,"off")=12 + Set gtmtypes("p1rec",4,"len")=4 + Set gtmtypes("p1rec",4,"type")="int" + Set gtmtypfldindx("p1rec","blk_levl")=4 + Set gtmtypes("p1rec",5,"name")="p1rec.akey_len" + Set gtmtypes("p1rec",5,"off")=16 + Set gtmtypes("p1rec",5,"len")=4 + Set gtmtypes("p1rec",5,"type")="int" + Set gtmtypfldindx("p1rec","akey_len")=5 + ; + Set gtmtypes("parm_pool")="struct" + Set gtmtypes("parm_pool",0)=8 + Set gtmtypes("parm_pool","len")=16 + Set gtmtypes("parm_pool",1,"name")="parm_pool.capacity" + Set gtmtypes("parm_pool",1,"off")=0 + Set gtmtypes("parm_pool",1,"len")=4 + Set gtmtypes("parm_pool",1,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","capacity")=1 + Set gtmtypes("parm_pool",2,"name")="parm_pool.start_idx" + Set gtmtypes("parm_pool",2,"off")=4 + Set gtmtypes("parm_pool",2,"len")=4 + Set gtmtypes("parm_pool",2,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","start_idx")=2 + Set gtmtypes("parm_pool",3,"name")="parm_pool.parms" + Set gtmtypes("parm_pool",3,"off")=8 + Set gtmtypes("parm_pool",3,"len")=8 + Set gtmtypes("parm_pool",3,"type")="parm_slot" + Set gtmtypfldindx("parm_pool","parms")=3 + Set gtmtypes("parm_pool",4,"name")="parm_pool.parms[0].mask_and_cnt" + Set gtmtypes("parm_pool",4,"off")=8 + Set gtmtypes("parm_pool",4,"len")=8 + Set gtmtypes("parm_pool",4,"type")="struct" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt")=4 + Set gtmtypes("parm_pool",5,"name")="parm_pool.parms[0].mask_and_cnt.mask" + Set gtmtypes("parm_pool",5,"off")=8 + Set gtmtypes("parm_pool",5,"len")=4 + Set gtmtypes("parm_pool",5,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt.mask")=5 + Set gtmtypes("parm_pool",6,"name")="parm_pool.parms[0].mask_and_cnt.actualcnt" + Set gtmtypes("parm_pool",6,"off")=12 + Set gtmtypes("parm_pool",6,"len")=4 + Set gtmtypes("parm_pool",6,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt.actualcnt")=6 + Set gtmtypes("parm_pool",7,"name")="parm_pool.parms[0].frame" + Set gtmtypes("parm_pool",7,"off")=8 + Set gtmtypes("parm_pool",7,"len")=4 + Set gtmtypes("parm_pool",7,"type")="addr" + Set gtmtypfldindx("parm_pool","parms[0].frame")=7 + Set gtmtypes("parm_pool",8,"name")="parm_pool.parms[0].actuallist" + Set gtmtypes("parm_pool",8,"off")=8 + Set gtmtypes("parm_pool",8,"len")=4 + Set gtmtypes("parm_pool",8,"type")="addr" + Set gtmtypfldindx("parm_pool","parms[0].actuallist")=8 + ; + Set gtmtypes("parm_slot")="union" + Set gtmtypes("parm_slot",0)=5 + Set gtmtypes("parm_slot","len")=8 + Set gtmtypes("parm_slot",1,"name")="parm_slot.mask_and_cnt" + Set gtmtypes("parm_slot",1,"off")=0 + Set gtmtypes("parm_slot",1,"len")=8 + Set gtmtypes("parm_slot",1,"type")="struct" + Set gtmtypfldindx("parm_slot","mask_and_cnt")=1 + Set gtmtypes("parm_slot",2,"name")="parm_slot.mask_and_cnt.mask" + Set gtmtypes("parm_slot",2,"off")=0 + Set gtmtypes("parm_slot",2,"len")=4 + Set gtmtypes("parm_slot",2,"type")="unsigned-int" + Set gtmtypfldindx("parm_slot","mask_and_cnt.mask")=2 + Set gtmtypes("parm_slot",3,"name")="parm_slot.mask_and_cnt.actualcnt" + Set gtmtypes("parm_slot",3,"off")=4 + Set gtmtypes("parm_slot",3,"len")=4 + Set gtmtypes("parm_slot",3,"type")="unsigned-int" + Set gtmtypfldindx("parm_slot","mask_and_cnt.actualcnt")=3 + Set gtmtypes("parm_slot",4,"name")="parm_slot.frame" + Set gtmtypes("parm_slot",4,"off")=0 + Set gtmtypes("parm_slot",4,"len")=4 + Set gtmtypes("parm_slot",4,"type")="addr" + Set gtmtypfldindx("parm_slot","frame")=4 + Set gtmtypes("parm_slot",5,"name")="parm_slot.actuallist" + Set gtmtypes("parm_slot",5,"off")=0 + Set gtmtypes("parm_slot",5,"len")=4 + Set gtmtypes("parm_slot",5,"type")="addr" + Set gtmtypfldindx("parm_slot","actuallist")=5 + ; + Set gtmtypes("parmblk_struct")="struct" + Set gtmtypes("parmblk_struct",0)=7 + Set gtmtypes("parmblk_struct","len")=152 + Set gtmtypes("parmblk_struct",1,"name")="parmblk_struct.ci_rtn" + Set gtmtypes("parmblk_struct",1,"off")=0 + Set gtmtypes("parmblk_struct",1,"len")=4 + Set gtmtypes("parmblk_struct",1,"type")="addr" + Set gtmtypfldindx("parmblk_struct","ci_rtn")=1 + Set gtmtypes("parmblk_struct",2,"name")="parmblk_struct.argcnt" + Set gtmtypes("parmblk_struct",2,"off")=4 + Set gtmtypes("parmblk_struct",2,"len")=4 + Set gtmtypes("parmblk_struct",2,"type")="int" + Set gtmtypfldindx("parmblk_struct","argcnt")=2 + Set gtmtypes("parmblk_struct",3,"name")="parmblk_struct.rtnaddr" + Set gtmtypes("parmblk_struct",3,"off")=8 + Set gtmtypes("parmblk_struct",3,"len")=4 + Set gtmtypes("parmblk_struct",3,"type")="addr" + Set gtmtypfldindx("parmblk_struct","rtnaddr")=3 + Set gtmtypes("parmblk_struct",4,"name")="parmblk_struct.labaddr" + Set gtmtypes("parmblk_struct",4,"off")=12 + Set gtmtypes("parmblk_struct",4,"len")=4 + Set gtmtypes("parmblk_struct",4,"type")="addr" + Set gtmtypfldindx("parmblk_struct","labaddr")=4 + Set gtmtypes("parmblk_struct",5,"name")="parmblk_struct.retaddr" + Set gtmtypes("parmblk_struct",5,"off")=16 + Set gtmtypes("parmblk_struct",5,"len")=4 + Set gtmtypes("parmblk_struct",5,"type")="addr" + Set gtmtypfldindx("parmblk_struct","retaddr")=5 + Set gtmtypes("parmblk_struct",6,"name")="parmblk_struct.mask" + Set gtmtypes("parmblk_struct",6,"off")=20 + Set gtmtypes("parmblk_struct",6,"len")=4 + Set gtmtypes("parmblk_struct",6,"type")="int" + Set gtmtypfldindx("parmblk_struct","mask")=6 + Set gtmtypes("parmblk_struct",7,"name")="parmblk_struct.args" + Set gtmtypes("parmblk_struct",7,"off")=24 + Set gtmtypes("parmblk_struct",7,"len")=128 + Set gtmtypes("parmblk_struct",7,"type")="addr" + Set gtmtypfldindx("parmblk_struct","args")=7 + Set gtmtypes("parmblk_struct",7,"dim")=32 + ; + Set gtmtypes("parse_blk")="struct" + Set gtmtypes("parse_blk",0)=17 + Set gtmtypes("parse_blk","len")=52 + Set gtmtypes("parse_blk",1,"name")="parse_blk.b_esl" + Set gtmtypes("parse_blk",1,"off")=0 + Set gtmtypes("parse_blk",1,"len")=1 + Set gtmtypes("parse_blk",1,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_esl")=1 + Set gtmtypes("parse_blk",2,"name")="parse_blk.b_node" + Set gtmtypes("parse_blk",2,"off")=1 + Set gtmtypes("parse_blk",2,"len")=1 + Set gtmtypes("parse_blk",2,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_node")=2 + Set gtmtypes("parse_blk",3,"name")="parse_blk.b_dir" + Set gtmtypes("parse_blk",3,"off")=2 + Set gtmtypes("parse_blk",3,"len")=1 + Set gtmtypes("parse_blk",3,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_dir")=3 + Set gtmtypes("parse_blk",4,"name")="parse_blk.b_name" + Set gtmtypes("parse_blk",4,"off")=3 + Set gtmtypes("parse_blk",4,"len")=1 + Set gtmtypes("parse_blk",4,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_name")=4 + Set gtmtypes("parse_blk",5,"name")="parse_blk.b_ext" + Set gtmtypes("parse_blk",5,"off")=4 + Set gtmtypes("parse_blk",5,"len")=1 + Set gtmtypes("parse_blk",5,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_ext")=5 + Set gtmtypes("parse_blk",6,"name")="parse_blk.def1_size" + Set gtmtypes("parse_blk",6,"off")=5 + Set gtmtypes("parse_blk",6,"len")=1 + Set gtmtypes("parse_blk",6,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","def1_size")=6 + Set gtmtypes("parse_blk",7,"name")="parse_blk.def1_buf" + Set gtmtypes("parse_blk",7,"off")=8 + Set gtmtypes("parse_blk",7,"len")=4 + Set gtmtypes("parse_blk",7,"type")="addr" + Set gtmtypfldindx("parse_blk","def1_buf")=7 + Set gtmtypes("parse_blk",8,"name")="parse_blk.def2_size" + Set gtmtypes("parse_blk",8,"off")=12 + Set gtmtypes("parse_blk",8,"len")=1 + Set gtmtypes("parse_blk",8,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","def2_size")=8 + Set gtmtypes("parse_blk",9,"name")="parse_blk.def2_buf" + Set gtmtypes("parse_blk",9,"off")=16 + Set gtmtypes("parse_blk",9,"len")=4 + Set gtmtypes("parse_blk",9,"type")="addr" + Set gtmtypfldindx("parse_blk","def2_buf")=9 + Set gtmtypes("parse_blk",10,"name")="parse_blk.buff_size" + Set gtmtypes("parse_blk",10,"off")=20 + Set gtmtypes("parse_blk",10,"len")=1 + Set gtmtypes("parse_blk",10,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","buff_size")=10 + Set gtmtypes("parse_blk",11,"name")="parse_blk.buffer" + Set gtmtypes("parse_blk",11,"off")=24 + Set gtmtypes("parse_blk",11,"len")=4 + Set gtmtypes("parse_blk",11,"type")="addr" + Set gtmtypfldindx("parse_blk","buffer")=11 + Set gtmtypes("parse_blk",12,"name")="parse_blk.fnb" + Set gtmtypes("parse_blk",12,"off")=28 + Set gtmtypes("parse_blk",12,"len")=4 + Set gtmtypes("parse_blk",12,"type")="int" + Set gtmtypfldindx("parse_blk","fnb")=12 + Set gtmtypes("parse_blk",13,"name")="parse_blk.fop" + Set gtmtypes("parse_blk",13,"off")=32 + Set gtmtypes("parse_blk",13,"len")=4 + Set gtmtypes("parse_blk",13,"type")="int" + Set gtmtypfldindx("parse_blk","fop")=13 + Set gtmtypes("parse_blk",14,"name")="parse_blk.l_node" + Set gtmtypes("parse_blk",14,"off")=36 + Set gtmtypes("parse_blk",14,"len")=4 + Set gtmtypes("parse_blk",14,"type")="addr" + Set gtmtypfldindx("parse_blk","l_node")=14 + Set gtmtypes("parse_blk",15,"name")="parse_blk.l_dir" + Set gtmtypes("parse_blk",15,"off")=40 + Set gtmtypes("parse_blk",15,"len")=4 + Set gtmtypes("parse_blk",15,"type")="addr" + Set gtmtypfldindx("parse_blk","l_dir")=15 + Set gtmtypes("parse_blk",16,"name")="parse_blk.l_name" + Set gtmtypes("parse_blk",16,"off")=44 + Set gtmtypes("parse_blk",16,"len")=4 + Set gtmtypes("parse_blk",16,"type")="addr" + Set gtmtypfldindx("parse_blk","l_name")=16 + Set gtmtypes("parse_blk",17,"name")="parse_blk.l_ext" + Set gtmtypes("parse_blk",17,"off")=48 + Set gtmtypes("parse_blk",17,"len")=4 + Set gtmtypes("parse_blk",17,"type")="addr" + Set gtmtypfldindx("parse_blk","l_ext")=17 + ; + Set gtmtypes("pat_strlit")="struct" + Set gtmtypes("pat_strlit",0)=4 + Set gtmtypes("pat_strlit","len")=3956 + Set gtmtypes("pat_strlit",1,"name")="pat_strlit.bytelen" + Set gtmtypes("pat_strlit",1,"off")=0 + Set gtmtypes("pat_strlit",1,"len")=4 + Set gtmtypes("pat_strlit",1,"type")="int" + Set gtmtypfldindx("pat_strlit","bytelen")=1 + Set gtmtypes("pat_strlit",2,"name")="pat_strlit.charlen" + Set gtmtypes("pat_strlit",2,"off")=4 + Set gtmtypes("pat_strlit",2,"len")=4 + Set gtmtypes("pat_strlit",2,"type")="int" + Set gtmtypfldindx("pat_strlit","charlen")=2 + Set gtmtypes("pat_strlit",3,"name")="pat_strlit.flags" + Set gtmtypes("pat_strlit",3,"off")=8 + Set gtmtypes("pat_strlit",3,"len")=4 + Set gtmtypes("pat_strlit",3,"type")="unsigned-int" + Set gtmtypfldindx("pat_strlit","flags")=3 + Set gtmtypes("pat_strlit",4,"name")="pat_strlit.buff" + Set gtmtypes("pat_strlit",4,"off")=12 + Set gtmtypes("pat_strlit",4,"len")=3941 + Set gtmtypes("pat_strlit",4,"type")="unsigned-char" + Set gtmtypfldindx("pat_strlit","buff")=4 + ; + Set gtmtypes("pattern")="struct" + Set gtmtypes("pattern",0)=7 + Set gtmtypes("pattern","len")=28 + Set gtmtypes("pattern",1,"name")="pattern.flink" + Set gtmtypes("pattern",1,"off")=0 + Set gtmtypes("pattern",1,"len")=4 + Set gtmtypes("pattern",1,"type")="addr" + Set gtmtypfldindx("pattern","flink")=1 + Set gtmtypes("pattern",2,"name")="pattern.typemask" + Set gtmtypes("pattern",2,"off")=4 + Set gtmtypes("pattern",2,"len")=4 + Set gtmtypes("pattern",2,"type")="addr" + Set gtmtypfldindx("pattern","typemask")=2 + Set gtmtypes("pattern",3,"name")="pattern.patYZnam" + Set gtmtypes("pattern",3,"off")=8 + Set gtmtypes("pattern",3,"len")=4 + Set gtmtypes("pattern",3,"type")="addr" + Set gtmtypfldindx("pattern","patYZnam")=3 + Set gtmtypes("pattern",4,"name")="pattern.patYZlen" + Set gtmtypes("pattern",4,"off")=12 + Set gtmtypes("pattern",4,"len")=4 + Set gtmtypes("pattern",4,"type")="addr" + Set gtmtypfldindx("pattern","patYZlen")=4 + Set gtmtypes("pattern",5,"name")="pattern.patYZnum" + Set gtmtypes("pattern",5,"off")=16 + Set gtmtypes("pattern",5,"len")=4 + Set gtmtypes("pattern",5,"type")="int" + Set gtmtypfldindx("pattern","patYZnum")=5 + Set gtmtypes("pattern",6,"name")="pattern.namlen" + Set gtmtypes("pattern",6,"off")=20 + Set gtmtypes("pattern",6,"len")=4 + Set gtmtypes("pattern",6,"type")="int" + Set gtmtypfldindx("pattern","namlen")=6 + Set gtmtypes("pattern",7,"name")="pattern.name" + Set gtmtypes("pattern",7,"off")=24 + Set gtmtypes("pattern",7,"len")=2 + Set gtmtypes("pattern",7,"type")="char" + Set gtmtypfldindx("pattern","name")=7 + ; + Set gtmtypes("phase2_wait_trace_t")="struct" + Set gtmtypes("phase2_wait_trace_t",0)=2 + Set gtmtypes("phase2_wait_trace_t","len")=8 + Set gtmtypes("phase2_wait_trace_t",1,"name")="phase2_wait_trace_t.blocking_pid" + Set gtmtypes("phase2_wait_trace_t",1,"off")=0 + Set gtmtypes("phase2_wait_trace_t",1,"len")=4 + Set gtmtypes("phase2_wait_trace_t",1,"type")="unsigned-int" + Set gtmtypfldindx("phase2_wait_trace_t","blocking_pid")=1 + Set gtmtypes("phase2_wait_trace_t",2,"name")="phase2_wait_trace_t.cr" + Set gtmtypes("phase2_wait_trace_t",2,"off")=4 + Set gtmtypes("phase2_wait_trace_t",2,"len")=4 + Set gtmtypes("phase2_wait_trace_t",2,"type")="addr" + Set gtmtypfldindx("phase2_wait_trace_t","cr")=2 + ; + Set gtmtypes("phase_static_area")="struct" + Set gtmtypes("phase_static_area",0)=86 + Set gtmtypes("phase_static_area","len")=11436 + Set gtmtypes("phase_static_area",1,"name")="phase_static_area.hint_lcl" + Set gtmtypes("phase_static_area",1,"off")=0 + Set gtmtypes("phase_static_area",1,"len")=4 + Set gtmtypes("phase_static_area",1,"type")="int" + Set gtmtypfldindx("phase_static_area","hint_lcl")=1 + Set gtmtypes("phase_static_area",2,"name")="phase_static_area.outfd" + Set gtmtypes("phase_static_area",2,"off")=4 + Set gtmtypes("phase_static_area",2,"len")=4 + Set gtmtypes("phase_static_area",2,"type")="int" + Set gtmtypfldindx("phase_static_area","outfd")=2 + Set gtmtypes("phase_static_area",3,"name")="phase_static_area.blks_processed" + Set gtmtypes("phase_static_area",3,"off")=8 + Set gtmtypes("phase_static_area",3,"len")=4 + Set gtmtypes("phase_static_area",3,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_processed")=3 + Set gtmtypes("phase_static_area",4,"name")="phase_static_area.blks_bypassed" + Set gtmtypes("phase_static_area",4,"off")=12 + Set gtmtypes("phase_static_area",4,"len")=4 + Set gtmtypes("phase_static_area",4,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_bypassed")=4 + Set gtmtypes("phase_static_area",5,"name")="phase_static_area.blks_too_big" + Set gtmtypes("phase_static_area",5,"off")=16 + Set gtmtypes("phase_static_area",5,"len")=4 + Set gtmtypes("phase_static_area",5,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_too_big")=5 + Set gtmtypes("phase_static_area",6,"name")="phase_static_area.blks_read" + Set gtmtypes("phase_static_area",6,"off")=20 + Set gtmtypes("phase_static_area",6,"len")=4 + Set gtmtypes("phase_static_area",6,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_read")=6 + Set gtmtypes("phase_static_area",7,"name")="phase_static_area.blks_cached" + Set gtmtypes("phase_static_area",7,"off")=24 + Set gtmtypes("phase_static_area",7,"len")=4 + Set gtmtypes("phase_static_area",7,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_cached")=7 + Set gtmtypes("phase_static_area",8,"name")="phase_static_area.blks_updated" + Set gtmtypes("phase_static_area",8,"off")=28 + Set gtmtypes("phase_static_area",8,"len")=4 + Set gtmtypes("phase_static_area",8,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_updated")=8 + Set gtmtypes("phase_static_area",9,"name")="phase_static_area.blks_created" + Set gtmtypes("phase_static_area",9,"off")=32 + Set gtmtypes("phase_static_area",9,"len")=4 + Set gtmtypes("phase_static_area",9,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_created")=9 + Set gtmtypes("phase_static_area",10,"name")="phase_static_area.dtlvl0" + Set gtmtypes("phase_static_area",10,"off")=36 + Set gtmtypes("phase_static_area",10,"len")=4 + Set gtmtypes("phase_static_area",10,"type")="int" + Set gtmtypfldindx("phase_static_area","dtlvl0")=10 + Set gtmtypes("phase_static_area",11,"name")="phase_static_area.dtlvln0" + Set gtmtypes("phase_static_area",11,"off")=40 + Set gtmtypes("phase_static_area",11,"len")=4 + Set gtmtypes("phase_static_area",11,"type")="int" + Set gtmtypfldindx("phase_static_area","dtlvln0")=11 + Set gtmtypes("phase_static_area",12,"name")="phase_static_area.gvtlvl0" + Set gtmtypes("phase_static_area",12,"off")=44 + Set gtmtypes("phase_static_area",12,"len")=4 + Set gtmtypes("phase_static_area",12,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtlvl0")=12 + Set gtmtypes("phase_static_area",13,"name")="phase_static_area.gvtlvln0" + Set gtmtypes("phase_static_area",13,"off")=48 + Set gtmtypes("phase_static_area",13,"len")=4 + Set gtmtypes("phase_static_area",13,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtlvln0")=13 + Set gtmtypes("phase_static_area",14,"name")="phase_static_area.gvtrchildren" + Set gtmtypes("phase_static_area",14,"off")=52 + Set gtmtypes("phase_static_area",14,"len")=4 + Set gtmtypes("phase_static_area",14,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtrchildren")=14 + Set gtmtypes("phase_static_area",15,"name")="phase_static_area.blk_process_errors" + Set gtmtypes("phase_static_area",15,"off")=56 + Set gtmtypes("phase_static_area",15,"len")=4 + Set gtmtypes("phase_static_area",15,"type")="int" + Set gtmtypfldindx("phase_static_area","blk_process_errors")=15 + Set gtmtypes("phase_static_area",16,"name")="phase_static_area.gvtroot_rchildren_cnt" + Set gtmtypes("phase_static_area",16,"off")=60 + Set gtmtypes("phase_static_area",16,"len")=4 + Set gtmtypes("phase_static_area",16,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren_cnt")=16 + Set gtmtypes("phase_static_area",17,"name")="phase_static_area.local_bit_map_cnt" + Set gtmtypes("phase_static_area",17,"off")=64 + Set gtmtypes("phase_static_area",17,"len")=4 + Set gtmtypes("phase_static_area",17,"type")="int" + Set gtmtypfldindx("phase_static_area","local_bit_map_cnt")=17 + Set gtmtypes("phase_static_area",18,"name")="phase_static_area.blocks_to_process" + Set gtmtypes("phase_static_area",18,"off")=68 + Set gtmtypes("phase_static_area",18,"len")=4 + Set gtmtypes("phase_static_area",18,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","blocks_to_process")=18 + Set gtmtypes("phase_static_area",19,"name")="phase_static_area.tmpcmdfile_len" + Set gtmtypes("phase_static_area",19,"off")=72 + Set gtmtypes("phase_static_area",19,"len")=4 + Set gtmtypes("phase_static_area",19,"type")="int" + Set gtmtypfldindx("phase_static_area","tmpcmdfile_len")=19 + Set gtmtypes("phase_static_area",20,"name")="phase_static_area.tmprsltfile_len" + Set gtmtypes("phase_static_area",20,"off")=76 + Set gtmtypes("phase_static_area",20,"len")=4 + Set gtmtypes("phase_static_area",20,"type")="int" + Set gtmtypfldindx("phase_static_area","tmprsltfile_len")=20 + Set gtmtypes("phase_static_area",21,"name")="phase_static_area.max_blk_len" + Set gtmtypes("phase_static_area",21,"off")=80 + Set gtmtypes("phase_static_area",21,"len")=4 + Set gtmtypes("phase_static_area",21,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","max_blk_len")=21 + Set gtmtypes("phase_static_area",22,"name")="phase_static_area.max_rec_len" + Set gtmtypes("phase_static_area",22,"off")=84 + Set gtmtypes("phase_static_area",22,"len")=4 + Set gtmtypes("phase_static_area",22,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","max_rec_len")=22 + Set gtmtypes("phase_static_area",23,"name")="phase_static_area.report_only" + Set gtmtypes("phase_static_area",23,"off")=88 + Set gtmtypes("phase_static_area",23,"len")=4 + Set gtmtypes("phase_static_area",23,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","report_only")=23 + Set gtmtypes("phase_static_area",24,"name")="phase_static_area.detail" + Set gtmtypes("phase_static_area",24,"off")=92 + Set gtmtypes("phase_static_area",24,"len")=4 + Set gtmtypes("phase_static_area",24,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","detail")=24 + Set gtmtypes("phase_static_area",25,"name")="phase_static_area.bsu_keys" + Set gtmtypes("phase_static_area",25,"off")=96 + Set gtmtypes("phase_static_area",25,"len")=4 + Set gtmtypes("phase_static_area",25,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","bsu_keys")=25 + Set gtmtypes("phase_static_area",26,"name")="phase_static_area.final" + Set gtmtypes("phase_static_area",26,"off")=100 + Set gtmtypes("phase_static_area",26,"len")=4 + Set gtmtypes("phase_static_area",26,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","final")=26 + Set gtmtypes("phase_static_area",27,"name")="phase_static_area.phase_one" + Set gtmtypes("phase_static_area",27,"off")=104 + Set gtmtypes("phase_static_area",27,"len")=4 + Set gtmtypes("phase_static_area",27,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","phase_one")=27 + Set gtmtypes("phase_static_area",28,"name")="phase_static_area.dbc_debug" + Set gtmtypes("phase_static_area",28,"off")=108 + Set gtmtypes("phase_static_area",28,"len")=4 + Set gtmtypes("phase_static_area",28,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_debug")=28 + Set gtmtypes("phase_static_area",29,"name")="phase_static_area.tmp_file_names_gend" + Set gtmtypes("phase_static_area",29,"off")=112 + Set gtmtypes("phase_static_area",29,"len")=4 + Set gtmtypes("phase_static_area",29,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","tmp_file_names_gend")=29 + Set gtmtypes("phase_static_area",30,"name")="phase_static_area.keep_temp_files" + Set gtmtypes("phase_static_area",30,"off")=116 + Set gtmtypes("phase_static_area",30,"len")=4 + Set gtmtypes("phase_static_area",30,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","keep_temp_files")=30 + Set gtmtypes("phase_static_area",31,"name")="phase_static_area.sem_inf" + Set gtmtypes("phase_static_area",31,"off")=120 + Set gtmtypes("phase_static_area",31,"len")=24 + Set gtmtypes("phase_static_area",31,"type")="sem_info" + Set gtmtypfldindx("phase_static_area","sem_inf")=31 + Set gtmtypes("phase_static_area",31,"dim")=3 + Set gtmtypes("phase_static_area",32,"name")="phase_static_area.sem_inf[0].ftok_key" + Set gtmtypes("phase_static_area",32,"off")=120 + Set gtmtypes("phase_static_area",32,"len")=4 + Set gtmtypes("phase_static_area",32,"type")="int" + Set gtmtypfldindx("phase_static_area","sem_inf[0].ftok_key")=32 + Set gtmtypes("phase_static_area",33,"name")="phase_static_area.sem_inf[0].sem_id" + Set gtmtypes("phase_static_area",33,"off")=124 + Set gtmtypes("phase_static_area",33,"len")=4 + Set gtmtypes("phase_static_area",33,"type")="int" + Set gtmtypfldindx("phase_static_area","sem_inf[0].sem_id")=33 + Set gtmtypes("phase_static_area",34,"name")="phase_static_area.dbc_critical" + Set gtmtypes("phase_static_area",34,"off")=144 + Set gtmtypes("phase_static_area",34,"len")=4 + Set gtmtypes("phase_static_area",34,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_critical")=34 + Set gtmtypes("phase_static_area",35,"name")="phase_static_area.dbc_fhdr_dirty" + Set gtmtypes("phase_static_area",35,"off")=148 + Set gtmtypes("phase_static_area",35,"len")=4 + Set gtmtypes("phase_static_area",35,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_fhdr_dirty")=35 + Set gtmtypes("phase_static_area",36,"name")="phase_static_area.curr_lbmap_buff" + Set gtmtypes("phase_static_area",36,"off")=152 + Set gtmtypes("phase_static_area",36,"len")=4 + Set gtmtypes("phase_static_area",36,"type")="addr" + Set gtmtypfldindx("phase_static_area","curr_lbmap_buff")=36 + Set gtmtypes("phase_static_area",37,"name")="phase_static_area.block_buff" + Set gtmtypes("phase_static_area",37,"off")=156 + Set gtmtypes("phase_static_area",37,"len")=4 + Set gtmtypes("phase_static_area",37,"type")="addr" + Set gtmtypfldindx("phase_static_area","block_buff")=37 + Set gtmtypes("phase_static_area",38,"name")="phase_static_area.util_cmd_buff" + Set gtmtypes("phase_static_area",38,"off")=160 + Set gtmtypes("phase_static_area",38,"len")=256 + Set gtmtypes("phase_static_area",38,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","util_cmd_buff")=38 + Set gtmtypes("phase_static_area",39,"name")="phase_static_area.blk_set" + Set gtmtypes("phase_static_area",39,"off")=416 + Set gtmtypes("phase_static_area",39,"len")=4 + Set gtmtypes("phase_static_area",39,"type")="addr" + Set gtmtypfldindx("phase_static_area","blk_set")=39 + Set gtmtypes("phase_static_area",40,"name")="phase_static_area.block_depth" + Set gtmtypes("phase_static_area",40,"off")=420 + Set gtmtypes("phase_static_area",40,"len")=4 + Set gtmtypes("phase_static_area",40,"type")="int" + Set gtmtypfldindx("phase_static_area","block_depth")=40 + Set gtmtypes("phase_static_area",41,"name")="phase_static_area.block_depth_hwm" + Set gtmtypes("phase_static_area",41,"off")=424 + Set gtmtypes("phase_static_area",41,"len")=4 + Set gtmtypes("phase_static_area",41,"type")="int" + Set gtmtypfldindx("phase_static_area","block_depth_hwm")=41 + Set gtmtypes("phase_static_area",42,"name")="phase_static_area.tcfp" + Set gtmtypes("phase_static_area",42,"off")=428 + Set gtmtypes("phase_static_area",42,"len")=4 + Set gtmtypes("phase_static_area",42,"type")="addr" + Set gtmtypfldindx("phase_static_area","tcfp")=42 + Set gtmtypes("phase_static_area",43,"name")="phase_static_area.trfp" + Set gtmtypes("phase_static_area",43,"off")=432 + Set gtmtypes("phase_static_area",43,"len")=4 + Set gtmtypes("phase_static_area",43,"type")="addr" + Set gtmtypfldindx("phase_static_area","trfp")=43 + Set gtmtypes("phase_static_area",44,"name")="phase_static_area.hint_blk" + Set gtmtypes("phase_static_area",44,"off")=436 + Set gtmtypes("phase_static_area",44,"len")=4 + Set gtmtypes("phase_static_area",44,"type")="int" + Set gtmtypfldindx("phase_static_area","hint_blk")=44 + Set gtmtypes("phase_static_area",45,"name")="phase_static_area.ofhdr" + Set gtmtypes("phase_static_area",45,"off")=440 + Set gtmtypes("phase_static_area",45,"len")=512 + Set gtmtypes("phase_static_area",45,"type")="p1hdr" + Set gtmtypfldindx("phase_static_area","ofhdr")=45 + Set gtmtypes("phase_static_area",46,"name")="phase_static_area.ofhdr.p1hdr_tag" + Set gtmtypes("phase_static_area",46,"off")=440 + Set gtmtypes("phase_static_area",46,"len")=8 + Set gtmtypes("phase_static_area",46,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.p1hdr_tag")=46 + Set gtmtypes("phase_static_area",47,"name")="phase_static_area.ofhdr.tn" + Set gtmtypes("phase_static_area",47,"off")=448 + Set gtmtypes("phase_static_area",47,"len")=4 + Set gtmtypes("phase_static_area",47,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","ofhdr.tn")=47 + Set gtmtypes("phase_static_area",48,"name")="phase_static_area.ofhdr.blk_count" + Set gtmtypes("phase_static_area",48,"off")=452 + Set gtmtypes("phase_static_area",48,"len")=4 + Set gtmtypes("phase_static_area",48,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.blk_count")=48 + Set gtmtypes("phase_static_area",49,"name")="phase_static_area.ofhdr.tot_blocks" + Set gtmtypes("phase_static_area",49,"off")=456 + Set gtmtypes("phase_static_area",49,"len")=4 + Set gtmtypes("phase_static_area",49,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.tot_blocks")=49 + Set gtmtypes("phase_static_area",50,"name")="phase_static_area.ofhdr.dt_leaf_cnt" + Set gtmtypes("phase_static_area",50,"off")=460 + Set gtmtypes("phase_static_area",50,"len")=4 + Set gtmtypes("phase_static_area",50,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.dt_leaf_cnt")=50 + Set gtmtypes("phase_static_area",51,"name")="phase_static_area.ofhdr.dt_index_cnt" + Set gtmtypes("phase_static_area",51,"off")=464 + Set gtmtypes("phase_static_area",51,"len")=4 + Set gtmtypes("phase_static_area",51,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.dt_index_cnt")=51 + Set gtmtypes("phase_static_area",52,"name")="phase_static_area.ofhdr.gvt_leaf_cnt" + Set gtmtypes("phase_static_area",52,"off")=468 + Set gtmtypes("phase_static_area",52,"len")=4 + Set gtmtypes("phase_static_area",52,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.gvt_leaf_cnt")=52 + Set gtmtypes("phase_static_area",53,"name")="phase_static_area.ofhdr.gvt_index_cnt" + Set gtmtypes("phase_static_area",53,"off")=472 + Set gtmtypes("phase_static_area",53,"len")=4 + Set gtmtypes("phase_static_area",53,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.gvt_index_cnt")=53 + Set gtmtypes("phase_static_area",54,"name")="phase_static_area.ofhdr.regname" + Set gtmtypes("phase_static_area",54,"off")=476 + Set gtmtypes("phase_static_area",54,"len")=32 + Set gtmtypes("phase_static_area",54,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.regname")=54 + Set gtmtypes("phase_static_area",55,"name")="phase_static_area.ofhdr.dbfn" + Set gtmtypes("phase_static_area",55,"off")=508 + Set gtmtypes("phase_static_area",55,"len")=256 + Set gtmtypes("phase_static_area",55,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.dbfn")=55 + Set gtmtypes("phase_static_area",56,"name")="phase_static_area.ofhdr.uid_len" + Set gtmtypes("phase_static_area",56,"off")=764 + Set gtmtypes("phase_static_area",56,"len")=4 + Set gtmtypes("phase_static_area",56,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.uid_len")=56 + Set gtmtypes("phase_static_area",57,"name")="phase_static_area.ofhdr.unique_id" + Set gtmtypes("phase_static_area",57,"off")=768 + Set gtmtypes("phase_static_area",57,"len")=20 + Set gtmtypes("phase_static_area",57,"type")="unique_file_id" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id")=57 + Set gtmtypes("phase_static_area",58,"name")="phase_static_area.ofhdr.unique_id.uid" + Set gtmtypes("phase_static_area",58,"off")=768 + Set gtmtypes("phase_static_area",58,"len")=20 + Set gtmtypes("phase_static_area",58,"type")="unix_file_id" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id.uid")=58 + Set gtmtypes("phase_static_area",59,"name")="phase_static_area.ofhdr.unique_id.file_id" + Set gtmtypes("phase_static_area",59,"off")=768 + Set gtmtypes("phase_static_area",59,"len")=20 + Set gtmtypes("phase_static_area",59,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id.file_id")=59 + Set gtmtypes("phase_static_area",60,"name")="phase_static_area.ofhdr.fillx" + Set gtmtypes("phase_static_area",60,"off")=788 + Set gtmtypes("phase_static_area",60,"len")=12 + Set gtmtypes("phase_static_area",60,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.fillx")=60 + Set gtmtypes("phase_static_area",61,"name")="phase_static_area.ofhdr.fill512" + Set gtmtypes("phase_static_area",61,"off")=800 + Set gtmtypes("phase_static_area",61,"len")=152 + Set gtmtypes("phase_static_area",61,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.fill512")=61 + Set gtmtypes("phase_static_area",62,"name")="phase_static_area.rhdr" + Set gtmtypes("phase_static_area",62,"off")=952 + Set gtmtypes("phase_static_area",62,"len")=20 + Set gtmtypes("phase_static_area",62,"type")="p1rec" + Set gtmtypfldindx("phase_static_area","rhdr")=62 + Set gtmtypes("phase_static_area",63,"name")="phase_static_area.rhdr.tn" + Set gtmtypes("phase_static_area",63,"off")=952 + Set gtmtypes("phase_static_area",63,"len")=4 + Set gtmtypes("phase_static_area",63,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","rhdr.tn")=63 + Set gtmtypes("phase_static_area",64,"name")="phase_static_area.rhdr.blk_num" + Set gtmtypes("phase_static_area",64,"off")=956 + Set gtmtypes("phase_static_area",64,"len")=4 + Set gtmtypes("phase_static_area",64,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_num")=64 + Set gtmtypes("phase_static_area",65,"name")="phase_static_area.rhdr.blk_type" + Set gtmtypes("phase_static_area",65,"off")=960 + Set gtmtypes("phase_static_area",65,"len")=4 + Set gtmtypes("phase_static_area",65,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_type")=65 + Set gtmtypes("phase_static_area",66,"name")="phase_static_area.rhdr.blk_levl" + Set gtmtypes("phase_static_area",66,"off")=964 + Set gtmtypes("phase_static_area",66,"len")=4 + Set gtmtypes("phase_static_area",66,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_levl")=66 + Set gtmtypes("phase_static_area",67,"name")="phase_static_area.rhdr.akey_len" + Set gtmtypes("phase_static_area",67,"off")=968 + Set gtmtypes("phase_static_area",67,"len")=4 + Set gtmtypes("phase_static_area",67,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.akey_len")=67 + Set gtmtypes("phase_static_area",68,"name")="phase_static_area.gvtroot_rchildren" + Set gtmtypes("phase_static_area",68,"off")=972 + Set gtmtypes("phase_static_area",68,"len")=160 + Set gtmtypes("phase_static_area",68,"type")="p1rec" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren")=68 + Set gtmtypes("phase_static_area",68,"dim")=8 + Set gtmtypes("phase_static_area",69,"name")="phase_static_area.gvtroot_rchildren[0].tn" + Set gtmtypes("phase_static_area",69,"off")=972 + Set gtmtypes("phase_static_area",69,"len")=4 + Set gtmtypes("phase_static_area",69,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].tn")=69 + Set gtmtypes("phase_static_area",70,"name")="phase_static_area.gvtroot_rchildren[0].blk_num" + Set gtmtypes("phase_static_area",70,"off")=976 + Set gtmtypes("phase_static_area",70,"len")=4 + Set gtmtypes("phase_static_area",70,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_num")=70 + Set gtmtypes("phase_static_area",71,"name")="phase_static_area.gvtroot_rchildren[0].blk_type" + Set gtmtypes("phase_static_area",71,"off")=980 + Set gtmtypes("phase_static_area",71,"len")=4 + Set gtmtypes("phase_static_area",71,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_type")=71 + Set gtmtypes("phase_static_area",72,"name")="phase_static_area.gvtroot_rchildren[0].blk_levl" + Set gtmtypes("phase_static_area",72,"off")=984 + Set gtmtypes("phase_static_area",72,"len")=4 + Set gtmtypes("phase_static_area",72,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_levl")=72 + Set gtmtypes("phase_static_area",73,"name")="phase_static_area.gvtroot_rchildren[0].akey_len" + Set gtmtypes("phase_static_area",73,"off")=988 + Set gtmtypes("phase_static_area",73,"len")=4 + Set gtmtypes("phase_static_area",73,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].akey_len")=73 + Set gtmtypes("phase_static_area",74,"name")="phase_static_area.dbc_gv_cur_region" + Set gtmtypes("phase_static_area",74,"off")=1132 + Set gtmtypes("phase_static_area",74,"len")=4 + Set gtmtypes("phase_static_area",74,"type")="addr" + Set gtmtypfldindx("phase_static_area","dbc_gv_cur_region")=74 + Set gtmtypes("phase_static_area",75,"name")="phase_static_area.dbc_cs_data" + Set gtmtypes("phase_static_area",75,"off")=1136 + Set gtmtypes("phase_static_area",75,"len")=4 + Set gtmtypes("phase_static_area",75,"type")="v15_sgmnt_data_ptr_t" + Set gtmtypfldindx("phase_static_area","dbc_cs_data")=75 + Set gtmtypes("phase_static_area",76,"name")="phase_static_area.first_rec_key" + Set gtmtypes("phase_static_area",76,"off")=1140 + Set gtmtypes("phase_static_area",76,"len")=4 + Set gtmtypes("phase_static_area",76,"type")="addr" + Set gtmtypfldindx("phase_static_area","first_rec_key")=76 + Set gtmtypes("phase_static_area",77,"name")="phase_static_area.fc" + Set gtmtypes("phase_static_area",77,"off")=1144 + Set gtmtypes("phase_static_area",77,"len")=4 + Set gtmtypes("phase_static_area",77,"type")="addr" + Set gtmtypfldindx("phase_static_area","fc")=77 + Set gtmtypes("phase_static_area",78,"name")="phase_static_area.iebl" + Set gtmtypes("phase_static_area",78,"off")=1148 + Set gtmtypes("phase_static_area",78,"len")=4 + Set gtmtypes("phase_static_area",78,"type")="addr" + Set gtmtypfldindx("phase_static_area","iebl")=78 + Set gtmtypes("phase_static_area",79,"name")="phase_static_area.gvn_key" + Set gtmtypes("phase_static_area",79,"off")=1152 + Set gtmtypes("phase_static_area",79,"len")=4 + Set gtmtypes("phase_static_area",79,"type")="addr" + Set gtmtypfldindx("phase_static_area","gvn_key")=79 + Set gtmtypes("phase_static_area",80,"name")="phase_static_area.max_key" + Set gtmtypes("phase_static_area",80,"off")=1156 + Set gtmtypes("phase_static_area",80,"len")=4 + Set gtmtypes("phase_static_area",80,"type")="addr" + Set gtmtypfldindx("phase_static_area","max_key")=80 + Set gtmtypes("phase_static_area",81,"name")="phase_static_area.outfn" + Set gtmtypes("phase_static_area",81,"off")=1160 + Set gtmtypes("phase_static_area",81,"len")=256 + Set gtmtypes("phase_static_area",81,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","outfn")=81 + Set gtmtypes("phase_static_area",82,"name")="phase_static_area.regname" + Set gtmtypes("phase_static_area",82,"off")=1416 + Set gtmtypes("phase_static_area",82,"len")=32 + Set gtmtypes("phase_static_area",82,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","regname")=82 + Set gtmtypes("phase_static_area",83,"name")="phase_static_area.rslt_buff" + Set gtmtypes("phase_static_area",83,"off")=1448 + Set gtmtypes("phase_static_area",83,"len")=9219 + Set gtmtypes("phase_static_area",83,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","rslt_buff")=83 + Set gtmtypes("phase_static_area",84,"name")="phase_static_area.tmpcmdfile" + Set gtmtypes("phase_static_area",84,"off")=10667 + Set gtmtypes("phase_static_area",84,"len")=256 + Set gtmtypes("phase_static_area",84,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmpcmdfile")=84 + Set gtmtypes("phase_static_area",85,"name")="phase_static_area.tmprsltfile" + Set gtmtypes("phase_static_area",85,"off")=10923 + Set gtmtypes("phase_static_area",85,"len")=256 + Set gtmtypes("phase_static_area",85,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmprsltfile")=85 + Set gtmtypes("phase_static_area",86,"name")="phase_static_area.tmpfiledir" + Set gtmtypes("phase_static_area",86,"off")=11179 + Set gtmtypes("phase_static_area",86,"len")=256 + Set gtmtypes("phase_static_area",86,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmpfiledir")=86 + ; + Set gtmtypes("pini_list_struct")="struct" + Set gtmtypes("pini_list_struct",0)=26 + Set gtmtypes("pini_list_struct","len")=196 + Set gtmtypes("pini_list_struct",1,"name")="pini_list_struct.pini_addr" + Set gtmtypes("pini_list_struct",1,"off")=0 + Set gtmtypes("pini_list_struct",1,"len")=4 + Set gtmtypes("pini_list_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","pini_addr")=1 + Set gtmtypes("pini_list_struct",2,"name")="pini_list_struct.new_pini_addr" + Set gtmtypes("pini_list_struct",2,"off")=4 + Set gtmtypes("pini_list_struct",2,"len")=4 + Set gtmtypes("pini_list_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","new_pini_addr")=2 + Set gtmtypes("pini_list_struct",3,"name")="pini_list_struct.jpv" + Set gtmtypes("pini_list_struct",3,"off")=8 + Set gtmtypes("pini_list_struct",3,"len")=88 + Set gtmtypes("pini_list_struct",3,"type")="jnl_process_vector" + Set gtmtypfldindx("pini_list_struct","jpv")=3 + Set gtmtypes("pini_list_struct",4,"name")="pini_list_struct.jpv.jpv_pid" + Set gtmtypes("pini_list_struct",4,"off")=8 + Set gtmtypes("pini_list_struct",4,"len")=4 + Set gtmtypes("pini_list_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_pid")=4 + Set gtmtypes("pini_list_struct",5,"name")="pini_list_struct.jpv.jpv_image_count" + Set gtmtypes("pini_list_struct",5,"off")=12 + Set gtmtypes("pini_list_struct",5,"len")=4 + Set gtmtypes("pini_list_struct",5,"type")="int" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_image_count")=5 + Set gtmtypes("pini_list_struct",6,"name")="pini_list_struct.jpv.jpv_time" + Set gtmtypes("pini_list_struct",6,"off")=16 + Set gtmtypes("pini_list_struct",6,"len")=8 + Set gtmtypes("pini_list_struct",6,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_time")=6 + Set gtmtypes("pini_list_struct",7,"name")="pini_list_struct.jpv.jpv_login_time" + Set gtmtypes("pini_list_struct",7,"off")=24 + Set gtmtypes("pini_list_struct",7,"len")=8 + Set gtmtypes("pini_list_struct",7,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_login_time")=7 + Set gtmtypes("pini_list_struct",8,"name")="pini_list_struct.jpv.jpv_node" + Set gtmtypes("pini_list_struct",8,"off")=32 + Set gtmtypes("pini_list_struct",8,"len")=16 + Set gtmtypes("pini_list_struct",8,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_node")=8 + Set gtmtypes("pini_list_struct",9,"name")="pini_list_struct.jpv.jpv_user" + Set gtmtypes("pini_list_struct",9,"off")=48 + Set gtmtypes("pini_list_struct",9,"len")=12 + Set gtmtypes("pini_list_struct",9,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_user")=9 + Set gtmtypes("pini_list_struct",10,"name")="pini_list_struct.jpv.jpv_prcnam" + Set gtmtypes("pini_list_struct",10,"off")=60 + Set gtmtypes("pini_list_struct",10,"len")=16 + Set gtmtypes("pini_list_struct",10,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_prcnam")=10 + Set gtmtypes("pini_list_struct",11,"name")="pini_list_struct.jpv.jpv_terminal" + Set gtmtypes("pini_list_struct",11,"off")=76 + Set gtmtypes("pini_list_struct",11,"len")=15 + Set gtmtypes("pini_list_struct",11,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_terminal")=11 + Set gtmtypes("pini_list_struct",12,"name")="pini_list_struct.jpv.jpv_mode" + Set gtmtypes("pini_list_struct",12,"off")=91 + Set gtmtypes("pini_list_struct",12,"len")=1 + Set gtmtypes("pini_list_struct",12,"type")="unsigned-char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_mode")=12 + Set gtmtypes("pini_list_struct",13,"name")="pini_list_struct.jpv.filler" + Set gtmtypes("pini_list_struct",13,"off")=92 + Set gtmtypes("pini_list_struct",13,"len")=4 + Set gtmtypes("pini_list_struct",13,"type")="int" + Set gtmtypfldindx("pini_list_struct","jpv.filler")=13 + Set gtmtypes("pini_list_struct",14,"name")="pini_list_struct.origjpv" + Set gtmtypes("pini_list_struct",14,"off")=96 + Set gtmtypes("pini_list_struct",14,"len")=88 + Set gtmtypes("pini_list_struct",14,"type")="jnl_process_vector" + Set gtmtypfldindx("pini_list_struct","origjpv")=14 + Set gtmtypes("pini_list_struct",15,"name")="pini_list_struct.origjpv.jpv_pid" + Set gtmtypes("pini_list_struct",15,"off")=96 + Set gtmtypes("pini_list_struct",15,"len")=4 + Set gtmtypes("pini_list_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_pid")=15 + Set gtmtypes("pini_list_struct",16,"name")="pini_list_struct.origjpv.jpv_image_count" + Set gtmtypes("pini_list_struct",16,"off")=100 + Set gtmtypes("pini_list_struct",16,"len")=4 + Set gtmtypes("pini_list_struct",16,"type")="int" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_image_count")=16 + Set gtmtypes("pini_list_struct",17,"name")="pini_list_struct.origjpv.jpv_time" + Set gtmtypes("pini_list_struct",17,"off")=104 + Set gtmtypes("pini_list_struct",17,"len")=8 + Set gtmtypes("pini_list_struct",17,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_time")=17 + Set gtmtypes("pini_list_struct",18,"name")="pini_list_struct.origjpv.jpv_login_time" + Set gtmtypes("pini_list_struct",18,"off")=112 + Set gtmtypes("pini_list_struct",18,"len")=8 + Set gtmtypes("pini_list_struct",18,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_login_time")=18 + Set gtmtypes("pini_list_struct",19,"name")="pini_list_struct.origjpv.jpv_node" + Set gtmtypes("pini_list_struct",19,"off")=120 + Set gtmtypes("pini_list_struct",19,"len")=16 + Set gtmtypes("pini_list_struct",19,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_node")=19 + Set gtmtypes("pini_list_struct",20,"name")="pini_list_struct.origjpv.jpv_user" + Set gtmtypes("pini_list_struct",20,"off")=136 + Set gtmtypes("pini_list_struct",20,"len")=12 + Set gtmtypes("pini_list_struct",20,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_user")=20 + Set gtmtypes("pini_list_struct",21,"name")="pini_list_struct.origjpv.jpv_prcnam" + Set gtmtypes("pini_list_struct",21,"off")=148 + Set gtmtypes("pini_list_struct",21,"len")=16 + Set gtmtypes("pini_list_struct",21,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_prcnam")=21 + Set gtmtypes("pini_list_struct",22,"name")="pini_list_struct.origjpv.jpv_terminal" + Set gtmtypes("pini_list_struct",22,"off")=164 + Set gtmtypes("pini_list_struct",22,"len")=15 + Set gtmtypes("pini_list_struct",22,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_terminal")=22 + Set gtmtypes("pini_list_struct",23,"name")="pini_list_struct.origjpv.jpv_mode" + Set gtmtypes("pini_list_struct",23,"off")=179 + Set gtmtypes("pini_list_struct",23,"len")=1 + Set gtmtypes("pini_list_struct",23,"type")="unsigned-char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_mode")=23 + Set gtmtypes("pini_list_struct",24,"name")="pini_list_struct.origjpv.filler" + Set gtmtypes("pini_list_struct",24,"off")=180 + Set gtmtypes("pini_list_struct",24,"len")=4 + Set gtmtypes("pini_list_struct",24,"type")="int" + Set gtmtypfldindx("pini_list_struct","origjpv.filler")=24 + Set gtmtypes("pini_list_struct",25,"name")="pini_list_struct.pini_jpv_time" + Set gtmtypes("pini_list_struct",25,"off")=184 + Set gtmtypes("pini_list_struct",25,"len")=8 + Set gtmtypes("pini_list_struct",25,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","pini_jpv_time")=25 + Set gtmtypes("pini_list_struct",26,"name")="pini_list_struct.state" + Set gtmtypes("pini_list_struct",26,"off")=192 + Set gtmtypes("pini_list_struct",26,"len")=4 + Set gtmtypes("pini_list_struct",26,"type")="int" + Set gtmtypfldindx("pini_list_struct","state")=26 + ; + Set gtmtypes("pipe_interrupt")="struct" + Set gtmtypes("pipe_interrupt",0)=12 + Set gtmtypes("pipe_interrupt","len")=44 + Set gtmtypes("pipe_interrupt",1,"name")="pipe_interrupt.end_time" + Set gtmtypes("pipe_interrupt",1,"off")=0 + Set gtmtypes("pipe_interrupt",1,"len")=8 + Set gtmtypes("pipe_interrupt",1,"type")="ABS_TIME" + Set gtmtypfldindx("pipe_interrupt","end_time")=1 + Set gtmtypes("pipe_interrupt",2,"name")="pipe_interrupt.end_time.at_sec" + Set gtmtypes("pipe_interrupt",2,"off")=0 + Set gtmtypes("pipe_interrupt",2,"len")=4 + Set gtmtypes("pipe_interrupt",2,"type")="long" + Set gtmtypfldindx("pipe_interrupt","end_time.at_sec")=2 + Set gtmtypes("pipe_interrupt",3,"name")="pipe_interrupt.end_time.at_usec" + Set gtmtypes("pipe_interrupt",3,"off")=4 + Set gtmtypes("pipe_interrupt",3,"len")=4 + Set gtmtypes("pipe_interrupt",3,"type")="long" + Set gtmtypfldindx("pipe_interrupt","end_time.at_usec")=3 + Set gtmtypes("pipe_interrupt",4,"name")="pipe_interrupt.who_saved" + Set gtmtypes("pipe_interrupt",4,"off")=8 + Set gtmtypes("pipe_interrupt",4,"len")=4 + Set gtmtypes("pipe_interrupt",4,"type")="int" + Set gtmtypfldindx("pipe_interrupt","who_saved")=4 + Set gtmtypes("pipe_interrupt",5,"name")="pipe_interrupt.max_bufflen" + Set gtmtypes("pipe_interrupt",5,"off")=12 + Set gtmtypes("pipe_interrupt",5,"len")=4 + Set gtmtypes("pipe_interrupt",5,"type")="int" + Set gtmtypfldindx("pipe_interrupt","max_bufflen")=5 + Set gtmtypes("pipe_interrupt",6,"name")="pipe_interrupt.bytes_read" + Set gtmtypes("pipe_interrupt",6,"off")=16 + Set gtmtypes("pipe_interrupt",6,"len")=4 + Set gtmtypes("pipe_interrupt",6,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes_read")=6 + Set gtmtypes("pipe_interrupt",7,"name")="pipe_interrupt.bytes2read" + Set gtmtypes("pipe_interrupt",7,"off")=20 + Set gtmtypes("pipe_interrupt",7,"len")=4 + Set gtmtypes("pipe_interrupt",7,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes2read")=7 + Set gtmtypes("pipe_interrupt",8,"name")="pipe_interrupt.char_count" + Set gtmtypes("pipe_interrupt",8,"off")=24 + Set gtmtypes("pipe_interrupt",8,"len")=4 + Set gtmtypes("pipe_interrupt",8,"type")="int" + Set gtmtypfldindx("pipe_interrupt","char_count")=8 + Set gtmtypes("pipe_interrupt",9,"name")="pipe_interrupt.bytes_count" + Set gtmtypes("pipe_interrupt",9,"off")=28 + Set gtmtypes("pipe_interrupt",9,"len")=4 + Set gtmtypes("pipe_interrupt",9,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes_count")=9 + Set gtmtypes("pipe_interrupt",10,"name")="pipe_interrupt.add_bytes" + Set gtmtypes("pipe_interrupt",10,"off")=32 + Set gtmtypes("pipe_interrupt",10,"len")=4 + Set gtmtypes("pipe_interrupt",10,"type")="int" + Set gtmtypfldindx("pipe_interrupt","add_bytes")=10 + Set gtmtypes("pipe_interrupt",11,"name")="pipe_interrupt.end_time_valid" + Set gtmtypes("pipe_interrupt",11,"off")=36 + Set gtmtypes("pipe_interrupt",11,"len")=4 + Set gtmtypes("pipe_interrupt",11,"type")="boolean_t" + Set gtmtypfldindx("pipe_interrupt","end_time_valid")=11 + Set gtmtypes("pipe_interrupt",12,"name")="pipe_interrupt.newpipe" + Set gtmtypes("pipe_interrupt",12,"off")=40 + Set gtmtypes("pipe_interrupt",12,"len")=4 + Set gtmtypes("pipe_interrupt",12,"type")="addr" + Set gtmtypfldindx("pipe_interrupt","newpipe")=12 + ; + Set gtmtypes("plength")="struct" + Set gtmtypes("plength",0)=7 + Set gtmtypes("plength","len")=4 + Set gtmtypes("plength",1,"name")="plength.p" + Set gtmtypes("plength",1,"off")=0 + Set gtmtypes("plength",1,"len")=4 + Set gtmtypes("plength",1,"type")="union" + Set gtmtypfldindx("plength","p")=1 + Set gtmtypes("plength",2,"name")="plength.p.pint" + Set gtmtypes("plength",2,"off")=0 + Set gtmtypes("plength",2,"len")=4 + Set gtmtypes("plength",2,"type")="int" + Set gtmtypfldindx("plength","p.pint")=2 + Set gtmtypes("plength",3,"name")="plength.p.pblk" + Set gtmtypes("plength",3,"off")=0 + Set gtmtypes("plength",3,"len")=4 + Set gtmtypes("plength",3,"type")="struct" + Set gtmtypfldindx("plength","p.pblk")=3 + Set gtmtypes("plength",4,"name")="plength.p.pblk.b_esl" + Set gtmtypes("plength",4,"off")=0 + Set gtmtypes("plength",4,"len")=1 + Set gtmtypes("plength",4,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_esl")=4 + Set gtmtypes("plength",5,"name")="plength.p.pblk.b_dir" + Set gtmtypes("plength",5,"off")=1 + Set gtmtypes("plength",5,"len")=1 + Set gtmtypes("plength",5,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_dir")=5 + Set gtmtypes("plength",6,"name")="plength.p.pblk.b_name" + Set gtmtypes("plength",6,"off")=2 + Set gtmtypes("plength",6,"len")=1 + Set gtmtypes("plength",6,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_name")=6 + Set gtmtypes("plength",7,"name")="plength.p.pblk.b_ext" + Set gtmtypes("plength",7,"off")=3 + Set gtmtypes("plength",7,"len")=1 + Set gtmtypes("plength",7,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_ext")=7 + ; + Set gtmtypes("pre_v5_mident")="struct" + Set gtmtypes("pre_v5_mident",0)=1 + Set gtmtypes("pre_v5_mident","len")=8 + Set gtmtypes("pre_v5_mident",1,"name")="pre_v5_mident.c" + Set gtmtypes("pre_v5_mident",1,"off")=0 + Set gtmtypes("pre_v5_mident",1,"len")=8 + Set gtmtypes("pre_v5_mident",1,"type")="char" + Set gtmtypfldindx("pre_v5_mident","c")=1 + ; + Set gtmtypes("probecrit_rec_t")="struct" + Set gtmtypes("probecrit_rec_t",0)=7 + Set gtmtypes("probecrit_rec_t","len")=56 + Set gtmtypes("probecrit_rec_t",1,"name")="probecrit_rec_t.t_get_crit" + Set gtmtypes("probecrit_rec_t",1,"off")=0 + Set gtmtypes("probecrit_rec_t",1,"len")=8 + Set gtmtypes("probecrit_rec_t",1,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","t_get_crit")=1 + Set gtmtypes("probecrit_rec_t",2,"name")="probecrit_rec_t.p_crit_failed" + Set gtmtypes("probecrit_rec_t",2,"off")=8 + Set gtmtypes("probecrit_rec_t",2,"len")=8 + Set gtmtypes("probecrit_rec_t",2,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_failed")=2 + Set gtmtypes("probecrit_rec_t",3,"name")="probecrit_rec_t.p_crit_que_slps" + Set gtmtypes("probecrit_rec_t",3,"off")=16 + Set gtmtypes("probecrit_rec_t",3,"len")=8 + Set gtmtypes("probecrit_rec_t",3,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_slps")=3 + Set gtmtypes("probecrit_rec_t",4,"name")="probecrit_rec_t.p_crit_yields" + Set gtmtypes("probecrit_rec_t",4,"off")=24 + Set gtmtypes("probecrit_rec_t",4,"len")=8 + Set gtmtypes("probecrit_rec_t",4,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_yields")=4 + Set gtmtypes("probecrit_rec_t",5,"name")="probecrit_rec_t.p_crit_que_full" + Set gtmtypes("probecrit_rec_t",5,"off")=32 + Set gtmtypes("probecrit_rec_t",5,"len")=8 + Set gtmtypes("probecrit_rec_t",5,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_full")=5 + Set gtmtypes("probecrit_rec_t",6,"name")="probecrit_rec_t.p_crit_que_slots" + Set gtmtypes("probecrit_rec_t",6,"off")=40 + Set gtmtypes("probecrit_rec_t",6,"len")=8 + Set gtmtypes("probecrit_rec_t",6,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_slots")=6 + Set gtmtypes("probecrit_rec_t",7,"name")="probecrit_rec_t.p_crit_success" + Set gtmtypes("probecrit_rec_t",7,"off")=48 + Set gtmtypes("probecrit_rec_t",7,"len")=8 + Set gtmtypes("probecrit_rec_t",7,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_success")=7 + ; + Set gtmtypes("protocol_msg")="struct" + Set gtmtypes("protocol_msg",0)=1 + Set gtmtypes("protocol_msg","len")=33 + Set gtmtypes("protocol_msg",1,"name")="protocol_msg.msg" + Set gtmtypes("protocol_msg",1,"off")=0 + Set gtmtypes("protocol_msg",1,"len")=33 + Set gtmtypes("protocol_msg",1,"type")="char" + Set gtmtypfldindx("protocol_msg","msg")=1 + ; + Set gtmtypes("pte_csh")="struct" + Set gtmtypes("pte_csh",0)=6 + Set gtmtypes("pte_csh","len")=24 + Set gtmtypes("pte_csh",1,"name")="pte_csh.patptr" + Set gtmtypes("pte_csh",1,"off")=0 + Set gtmtypes("pte_csh",1,"len")=4 + Set gtmtypes("pte_csh",1,"type")="addr" + Set gtmtypfldindx("pte_csh","patptr")=1 + Set gtmtypes("pte_csh",2,"name")="pte_csh.strptr" + Set gtmtypes("pte_csh",2,"off")=4 + Set gtmtypes("pte_csh",2,"len")=4 + Set gtmtypes("pte_csh",2,"type")="addr" + Set gtmtypfldindx("pte_csh","strptr")=2 + Set gtmtypes("pte_csh",3,"name")="pte_csh.charlen" + Set gtmtypes("pte_csh",3,"off")=8 + Set gtmtypes("pte_csh",3,"len")=4 + Set gtmtypes("pte_csh",3,"type")="int" + Set gtmtypfldindx("pte_csh","charlen")=3 + Set gtmtypes("pte_csh",4,"name")="pte_csh.repcnt" + Set gtmtypes("pte_csh",4,"off")=12 + Set gtmtypes("pte_csh",4,"len")=4 + Set gtmtypes("pte_csh",4,"type")="int" + Set gtmtypfldindx("pte_csh","repcnt")=4 + Set gtmtypes("pte_csh",5,"name")="pte_csh.count" + Set gtmtypes("pte_csh",5,"off")=16 + Set gtmtypes("pte_csh",5,"len")=4 + Set gtmtypes("pte_csh",5,"type")="unsigned-int" + Set gtmtypfldindx("pte_csh","count")=5 + Set gtmtypes("pte_csh",6,"name")="pte_csh.match" + Set gtmtypes("pte_csh",6,"off")=20 + Set gtmtypes("pte_csh",6,"len")=4 + Set gtmtypes("pte_csh",6,"type")="boolean_t" + Set gtmtypfldindx("pte_csh","match")=6 + ; + Set gtmtypes("ptstr")="struct" + Set gtmtypes("ptstr",0)=2 + Set gtmtypes("ptstr","len")=16388 + Set gtmtypes("ptstr",1,"name")="ptstr.len" + Set gtmtypes("ptstr",1,"off")=0 + Set gtmtypes("ptstr",1,"len")=4 + Set gtmtypes("ptstr",1,"type")="int" + Set gtmtypfldindx("ptstr","len")=1 + Set gtmtypes("ptstr",2,"name")="ptstr.buff" + Set gtmtypes("ptstr",2,"off")=4 + Set gtmtypes("ptstr",2,"len")=16384 + Set gtmtypes("ptstr",2,"type")="unsigned-int" + Set gtmtypfldindx("ptstr","buff")=2 + Set gtmtypes("ptstr",2,"dim")=4096 + ; + Set gtmtypes("qio_iosb")="struct" + Set gtmtypes("qio_iosb",0)=5 + Set gtmtypes("qio_iosb","len")=12 + Set gtmtypes("qio_iosb",1,"name")="qio_iosb.xfer_count" + Set gtmtypes("qio_iosb",1,"off")=0 + Set gtmtypes("qio_iosb",1,"len")=2 + Set gtmtypes("qio_iosb",1,"type")="unsigned-short" + Set gtmtypfldindx("qio_iosb","xfer_count")=1 + Set gtmtypes("qio_iosb",2,"name")="qio_iosb.len_len" + Set gtmtypes("qio_iosb",2,"off")=4 + Set gtmtypes("qio_iosb",2,"len")=4 + Set gtmtypes("qio_iosb",2,"type")="int" + Set gtmtypfldindx("qio_iosb","len_len")=2 + Set gtmtypes("qio_iosb",3,"name")="qio_iosb.u" + Set gtmtypes("qio_iosb",3,"off")=8 + Set gtmtypes("qio_iosb",3,"len")=2 + Set gtmtypes("qio_iosb",3,"type")="union" + Set gtmtypfldindx("qio_iosb","u")=3 + Set gtmtypes("qio_iosb",4,"name")="qio_iosb.u.len" + Set gtmtypes("qio_iosb",4,"off")=8 + Set gtmtypes("qio_iosb",4,"len")=2 + Set gtmtypes("qio_iosb",4,"type")="unsigned-short" + Set gtmtypfldindx("qio_iosb","u.len")=4 + Set gtmtypes("qio_iosb",5,"name")="qio_iosb.u.lenbuf" + Set gtmtypes("qio_iosb",5,"off")=8 + Set gtmtypes("qio_iosb",5,"len")=2 + Set gtmtypes("qio_iosb",5,"type")="char" + Set gtmtypfldindx("qio_iosb","u.lenbuf")=5 + ; + Set gtmtypes("que_ent")="struct" + Set gtmtypes("que_ent",0)=2 + Set gtmtypes("que_ent","len")=8 + Set gtmtypes("que_ent",1,"name")="que_ent.fl" + Set gtmtypes("que_ent",1,"off")=0 + Set gtmtypes("que_ent",1,"len")=4 + Set gtmtypes("que_ent",1,"type")="intptr_t" + Set gtmtypfldindx("que_ent","fl")=1 + Set gtmtypes("que_ent",2,"name")="que_ent.bl" + Set gtmtypes("que_ent",2,"off")=4 + Set gtmtypes("que_ent",2,"len")=4 + Set gtmtypes("que_ent",2,"type")="intptr_t" + Set gtmtypfldindx("que_ent","bl")=2 + ; + Set gtmtypes("que_head")="struct" + Set gtmtypes("que_head",0)=8 + Set gtmtypes("que_head","len")=16 + Set gtmtypes("que_head",1,"name")="que_head.fl" + Set gtmtypes("que_head",1,"off")=0 + Set gtmtypes("que_head",1,"len")=4 + Set gtmtypes("que_head",1,"type")="intptr_t" + Set gtmtypfldindx("que_head","fl")=1 + Set gtmtypes("que_head",2,"name")="que_head.bl" + Set gtmtypes("que_head",2,"off")=4 + Set gtmtypes("que_head",2,"len")=4 + Set gtmtypes("que_head",2,"type")="intptr_t" + Set gtmtypfldindx("que_head","bl")=2 + Set gtmtypes("que_head",3,"name")="que_head.latch" + Set gtmtypes("que_head",3,"off")=8 + Set gtmtypes("que_head",3,"len")=8 + Set gtmtypes("que_head",3,"type")="global_latch_t" + Set gtmtypfldindx("que_head","latch")=3 + Set gtmtypes("que_head",4,"name")="que_head.latch.u" + Set gtmtypes("que_head",4,"off")=8 + Set gtmtypes("que_head",4,"len")=8 + Set gtmtypes("que_head",4,"type")="union" + Set gtmtypfldindx("que_head","latch.u")=4 + Set gtmtypes("que_head",5,"name")="que_head.latch.u.pid_imgcnt" + Set gtmtypes("que_head",5,"off")=8 + Set gtmtypes("que_head",5,"len")=8 + Set gtmtypes("que_head",5,"type")="uint64_t" + Set gtmtypfldindx("que_head","latch.u.pid_imgcnt")=5 + Set gtmtypes("que_head",6,"name")="que_head.latch.u.parts" + Set gtmtypes("que_head",6,"off")=8 + Set gtmtypes("que_head",6,"len")=8 + Set gtmtypes("que_head",6,"type")="struct" + Set gtmtypfldindx("que_head","latch.u.parts")=6 + Set gtmtypes("que_head",7,"name")="que_head.latch.u.parts.latch_pid" + Set gtmtypes("que_head",7,"off")=8 + Set gtmtypes("que_head",7,"len")=4 + Set gtmtypes("que_head",7,"type")="int" + Set gtmtypfldindx("que_head","latch.u.parts.latch_pid")=7 + Set gtmtypes("que_head",8,"name")="que_head.latch.u.parts.latch_word" + Set gtmtypes("que_head",8,"off")=12 + Set gtmtypes("que_head",8,"len")=4 + Set gtmtypes("que_head",8,"type")="int" + Set gtmtypfldindx("que_head","latch.u.parts.latch_word")=8 + ; + Set gtmtypes("rc_aq_hdr")="struct" + Set gtmtypes("rc_aq_hdr",0)=18 + Set gtmtypes("rc_aq_hdr","len")=14 + Set gtmtypes("rc_aq_hdr",1,"name")="rc_aq_hdr.len" + Set gtmtypes("rc_aq_hdr",1,"off")=0 + Set gtmtypes("rc_aq_hdr",1,"len")=2 + Set gtmtypes("rc_aq_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","len")=1 + Set gtmtypes("rc_aq_hdr",2,"name")="rc_aq_hdr.len.octet" + Set gtmtypes("rc_aq_hdr",2,"off")=0 + Set gtmtypes("rc_aq_hdr",2,"len")=2 + Set gtmtypes("rc_aq_hdr",2,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","len.octet")=2 + Set gtmtypes("rc_aq_hdr",3,"name")="rc_aq_hdr.len.value" + Set gtmtypes("rc_aq_hdr",3,"off")=0 + Set gtmtypes("rc_aq_hdr",3,"len")=2 + Set gtmtypes("rc_aq_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","len.value")=3 + Set gtmtypes("rc_aq_hdr",4,"name")="rc_aq_hdr.typ" + Set gtmtypes("rc_aq_hdr",4,"off")=2 + Set gtmtypes("rc_aq_hdr",4,"len")=2 + Set gtmtypes("rc_aq_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","typ")=4 + Set gtmtypes("rc_aq_hdr",5,"name")="rc_aq_hdr.typ.octet" + Set gtmtypes("rc_aq_hdr",5,"off")=2 + Set gtmtypes("rc_aq_hdr",5,"len")=2 + Set gtmtypes("rc_aq_hdr",5,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","typ.octet")=5 + Set gtmtypes("rc_aq_hdr",6,"name")="rc_aq_hdr.typ.value" + Set gtmtypes("rc_aq_hdr",6,"off")=2 + Set gtmtypes("rc_aq_hdr",6,"len")=2 + Set gtmtypes("rc_aq_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","typ.value")=6 + Set gtmtypes("rc_aq_hdr",7,"name")="rc_aq_hdr.erc" + Set gtmtypes("rc_aq_hdr",7,"off")=4 + Set gtmtypes("rc_aq_hdr",7,"len")=2 + Set gtmtypes("rc_aq_hdr",7,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","erc")=7 + Set gtmtypes("rc_aq_hdr",8,"name")="rc_aq_hdr.erc.octet" + Set gtmtypes("rc_aq_hdr",8,"off")=4 + Set gtmtypes("rc_aq_hdr",8,"len")=2 + Set gtmtypes("rc_aq_hdr",8,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","erc.octet")=8 + Set gtmtypes("rc_aq_hdr",9,"name")="rc_aq_hdr.erc.value" + Set gtmtypes("rc_aq_hdr",9,"off")=4 + Set gtmtypes("rc_aq_hdr",9,"len")=2 + Set gtmtypes("rc_aq_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","erc.value")=9 + Set gtmtypes("rc_aq_hdr",10,"name")="rc_aq_hdr.pid1" + Set gtmtypes("rc_aq_hdr",10,"off")=6 + Set gtmtypes("rc_aq_hdr",10,"len")=2 + Set gtmtypes("rc_aq_hdr",10,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","pid1")=10 + Set gtmtypes("rc_aq_hdr",11,"name")="rc_aq_hdr.pid1.octet" + Set gtmtypes("rc_aq_hdr",11,"off")=6 + Set gtmtypes("rc_aq_hdr",11,"len")=2 + Set gtmtypes("rc_aq_hdr",11,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","pid1.octet")=11 + Set gtmtypes("rc_aq_hdr",12,"name")="rc_aq_hdr.pid1.value" + Set gtmtypes("rc_aq_hdr",12,"off")=6 + Set gtmtypes("rc_aq_hdr",12,"len")=2 + Set gtmtypes("rc_aq_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","pid1.value")=12 + Set gtmtypes("rc_aq_hdr",13,"name")="rc_aq_hdr.pid2" + Set gtmtypes("rc_aq_hdr",13,"off")=8 + Set gtmtypes("rc_aq_hdr",13,"len")=2 + Set gtmtypes("rc_aq_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","pid2")=13 + Set gtmtypes("rc_aq_hdr",14,"name")="rc_aq_hdr.pid2.octet" + Set gtmtypes("rc_aq_hdr",14,"off")=8 + Set gtmtypes("rc_aq_hdr",14,"len")=2 + Set gtmtypes("rc_aq_hdr",14,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","pid2.octet")=14 + Set gtmtypes("rc_aq_hdr",15,"name")="rc_aq_hdr.pid2.value" + Set gtmtypes("rc_aq_hdr",15,"off")=8 + Set gtmtypes("rc_aq_hdr",15,"len")=2 + Set gtmtypes("rc_aq_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","pid2.value")=15 + Set gtmtypes("rc_aq_hdr",16,"name")="rc_aq_hdr.xdsid" + Set gtmtypes("rc_aq_hdr",16,"off")=10 + Set gtmtypes("rc_aq_hdr",16,"len")=4 + Set gtmtypes("rc_aq_hdr",16,"type")="rc_xdsid" + Set gtmtypfldindx("rc_aq_hdr","xdsid")=16 + Set gtmtypes("rc_aq_hdr",17,"name")="rc_aq_hdr.xdsid.dsid" + Set gtmtypes("rc_aq_hdr",17,"off")=10 + Set gtmtypes("rc_aq_hdr",17,"len")=2 + Set gtmtypes("rc_aq_hdr",17,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","xdsid.dsid")=17 + Set gtmtypes("rc_aq_hdr",18,"name")="rc_aq_hdr.xdsid.node" + Set gtmtypes("rc_aq_hdr",18,"off")=12 + Set gtmtypes("rc_aq_hdr",18,"len")=2 + Set gtmtypes("rc_aq_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","xdsid.node")=18 + ; + Set gtmtypes("rc_byte")="union" + Set gtmtypes("rc_byte",0)=2 + Set gtmtypes("rc_byte","len")=1 + Set gtmtypes("rc_byte",1,"name")="rc_byte.octet" + Set gtmtypes("rc_byte",1,"off")=0 + Set gtmtypes("rc_byte",1,"len")=1 + Set gtmtypes("rc_byte",1,"type")="char" + Set gtmtypfldindx("rc_byte","octet")=1 + Set gtmtypes("rc_byte",2,"name")="rc_byte.value" + Set gtmtypes("rc_byte",2,"off")=0 + Set gtmtypes("rc_byte",2,"len")=1 + Set gtmtypes("rc_byte",2,"type")="unsigned-char" + Set gtmtypfldindx("rc_byte","value")=2 + ; + Set gtmtypes("rc_cp_table")="struct" + Set gtmtypes("rc_cp_table",0)=5 + Set gtmtypes("rc_cp_table","len")=2056 + Set gtmtypes("rc_cp_table",1,"name")="rc_cp_table.ring_buff" + Set gtmtypes("rc_cp_table",1,"off")=0 + Set gtmtypes("rc_cp_table",1,"len")=2048 + Set gtmtypes("rc_cp_table",1,"type")="int" + Set gtmtypfldindx("rc_cp_table","ring_buff")=1 + Set gtmtypes("rc_cp_table",1,"dim")=512 + Set gtmtypes("rc_cp_table",2,"name")="rc_cp_table.cpsync" + Set gtmtypes("rc_cp_table",2,"off")=2048 + Set gtmtypes("rc_cp_table",2,"len")=2 + Set gtmtypes("rc_cp_table",2,"type")="unsigned-short" + Set gtmtypfldindx("rc_cp_table","cpsync")=2 + Set gtmtypes("rc_cp_table",3,"name")="rc_cp_table.cpvfy" + Set gtmtypes("rc_cp_table",3,"off")=2050 + Set gtmtypes("rc_cp_table",3,"len")=2 + Set gtmtypes("rc_cp_table",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_cp_table","cpvfy")=3 + Set gtmtypes("rc_cp_table",4,"name")="rc_cp_table.index" + Set gtmtypes("rc_cp_table",4,"off")=2052 + Set gtmtypes("rc_cp_table",4,"len")=2 + Set gtmtypes("rc_cp_table",4,"type")="short" + Set gtmtypfldindx("rc_cp_table","index")=4 + Set gtmtypes("rc_cp_table",5,"name")="rc_cp_table.server_count" + Set gtmtypes("rc_cp_table",5,"off")=2054 + Set gtmtypes("rc_cp_table",5,"len")=2 + Set gtmtypes("rc_cp_table",5,"type")="short" + Set gtmtypfldindx("rc_cp_table","server_count")=5 + ; + Set gtmtypes("rc_dsid_list")="struct" + Set gtmtypes("rc_dsid_list",0)=4 + Set gtmtypes("rc_dsid_list","len")=16 + Set gtmtypes("rc_dsid_list",1,"name")="rc_dsid_list.dsid" + Set gtmtypes("rc_dsid_list",1,"off")=0 + Set gtmtypes("rc_dsid_list",1,"len")=2 + Set gtmtypes("rc_dsid_list",1,"type")="short" + Set gtmtypfldindx("rc_dsid_list","dsid")=1 + Set gtmtypes("rc_dsid_list",2,"name")="rc_dsid_list.fname" + Set gtmtypes("rc_dsid_list",2,"off")=4 + Set gtmtypes("rc_dsid_list",2,"len")=4 + Set gtmtypes("rc_dsid_list",2,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","fname")=2 + Set gtmtypes("rc_dsid_list",3,"name")="rc_dsid_list.gda" + Set gtmtypes("rc_dsid_list",3,"off")=8 + Set gtmtypes("rc_dsid_list",3,"len")=4 + Set gtmtypes("rc_dsid_list",3,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","gda")=3 + Set gtmtypes("rc_dsid_list",4,"name")="rc_dsid_list.next" + Set gtmtypes("rc_dsid_list",4,"off")=12 + Set gtmtypes("rc_dsid_list",4,"len")=4 + Set gtmtypes("rc_dsid_list",4,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","next")=4 + ; + Set gtmtypes("rc_hist_rec")="struct" + Set gtmtypes("rc_hist_rec",0)=7 + Set gtmtypes("rc_hist_rec","len")=8212 + Set gtmtypes("rc_hist_rec",1,"name")="rc_hist_rec.conn" + Set gtmtypes("rc_hist_rec",1,"off")=0 + Set gtmtypes("rc_hist_rec",1,"len")=4 + Set gtmtypes("rc_hist_rec",1,"type")="int" + Set gtmtypfldindx("rc_hist_rec","conn")=1 + Set gtmtypes("rc_hist_rec",2,"name")="rc_hist_rec.timestamp" + Set gtmtypes("rc_hist_rec",2,"off")=4 + Set gtmtypes("rc_hist_rec",2,"len")=4 + Set gtmtypes("rc_hist_rec",2,"type")="time_t" + Set gtmtypfldindx("rc_hist_rec","timestamp")=2 + Set gtmtypes("rc_hist_rec",3,"name")="rc_hist_rec.toobigflag" + Set gtmtypes("rc_hist_rec",3,"off")=8 + Set gtmtypes("rc_hist_rec",3,"len")=4 + Set gtmtypes("rc_hist_rec",3,"type")="int" + Set gtmtypfldindx("rc_hist_rec","toobigflag")=3 + Set gtmtypes("rc_hist_rec",4,"name")="rc_hist_rec.req" + Set gtmtypes("rc_hist_rec",4,"off")=12 + Set gtmtypes("rc_hist_rec",4,"len")=4096 + Set gtmtypes("rc_hist_rec",4,"type")="char" + Set gtmtypfldindx("rc_hist_rec","req")=4 + Set gtmtypes("rc_hist_rec",5,"name")="rc_hist_rec.rsp" + Set gtmtypes("rc_hist_rec",5,"off")=4108 + Set gtmtypes("rc_hist_rec",5,"len")=4096 + Set gtmtypes("rc_hist_rec",5,"type")="char" + Set gtmtypfldindx("rc_hist_rec","rsp")=5 + Set gtmtypes("rc_hist_rec",6,"name")="rc_hist_rec.req_len" + Set gtmtypes("rc_hist_rec",6,"off")=8204 + Set gtmtypes("rc_hist_rec",6,"len")=4 + Set gtmtypes("rc_hist_rec",6,"type")="int" + Set gtmtypfldindx("rc_hist_rec","req_len")=6 + Set gtmtypes("rc_hist_rec",7,"name")="rc_hist_rec.rsp_len" + Set gtmtypes("rc_hist_rec",7,"off")=8208 + Set gtmtypes("rc_hist_rec",7,"len")=4 + Set gtmtypes("rc_hist_rec",7,"type")="int" + Set gtmtypfldindx("rc_hist_rec","rsp_len")=7 + ; + Set gtmtypes("rc_kill")="struct" + Set gtmtypes("rc_kill",0)=8 + Set gtmtypes("rc_kill","len")=20 + Set gtmtypes("rc_kill",1,"name")="rc_kill.hdr" + Set gtmtypes("rc_kill",1,"off")=0 + Set gtmtypes("rc_kill",1,"len")=14 + Set gtmtypes("rc_kill",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_kill","hdr")=1 + Set gtmtypes("rc_kill",2,"name")="rc_kill.hdr.r" + Set gtmtypes("rc_kill",2,"off")=0 + Set gtmtypes("rc_kill",2,"len")=14 + Set gtmtypes("rc_kill",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_kill","hdr.r")=2 + Set gtmtypes("rc_kill",3,"name")="rc_kill.hdr.a" + Set gtmtypes("rc_kill",3,"off")=0 + Set gtmtypes("rc_kill",3,"len")=14 + Set gtmtypes("rc_kill",3,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_kill","hdr.a")=3 + Set gtmtypes("rc_kill",4,"name")="rc_kill.xnsid" + Set gtmtypes("rc_kill",4,"off")=14 + Set gtmtypes("rc_kill",4,"len")=4 + Set gtmtypes("rc_kill",4,"type")="rc_xnsid" + Set gtmtypfldindx("rc_kill","xnsid")=4 + Set gtmtypes("rc_kill",5,"name")="rc_kill.xnsid.value" + Set gtmtypes("rc_kill",5,"off")=14 + Set gtmtypes("rc_kill",5,"len")=4 + Set gtmtypes("rc_kill",5,"type")="char" + Set gtmtypfldindx("rc_kill","xnsid.value")=5 + Set gtmtypes("rc_kill",6,"name")="rc_kill.key" + Set gtmtypes("rc_kill",6,"off")=18 + Set gtmtypes("rc_kill",6,"len")=2 + Set gtmtypes("rc_kill",6,"type")="rc_sbkey" + Set gtmtypfldindx("rc_kill","key")=6 + Set gtmtypes("rc_kill",7,"name")="rc_kill.key.len" + Set gtmtypes("rc_kill",7,"off")=18 + Set gtmtypes("rc_kill",7,"len")=1 + Set gtmtypes("rc_kill",7,"type")="rc_byte" + Set gtmtypfldindx("rc_kill","key.len")=7 + Set gtmtypes("rc_kill",8,"name")="rc_kill.key.key" + Set gtmtypes("rc_kill",8,"off")=19 + Set gtmtypes("rc_kill",8,"len")=1 + Set gtmtypes("rc_kill",8,"type")="char" + Set gtmtypfldindx("rc_kill","key.key")=8 + ; + Set gtmtypes("rc_lknam")="struct" + Set gtmtypes("rc_lknam",0)=9 + Set gtmtypes("rc_lknam","len")=8 + Set gtmtypes("rc_lknam",1,"name")="rc_lknam.xdsid" + Set gtmtypes("rc_lknam",1,"off")=0 + Set gtmtypes("rc_lknam",1,"len")=4 + Set gtmtypes("rc_lknam",1,"type")="rc_xdsid" + Set gtmtypfldindx("rc_lknam","xdsid")=1 + Set gtmtypes("rc_lknam",2,"name")="rc_lknam.xdsid.dsid" + Set gtmtypes("rc_lknam",2,"off")=0 + Set gtmtypes("rc_lknam",2,"len")=2 + Set gtmtypes("rc_lknam",2,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","xdsid.dsid")=2 + Set gtmtypes("rc_lknam",3,"name")="rc_lknam.xdsid.node" + Set gtmtypes("rc_lknam",3,"off")=2 + Set gtmtypes("rc_lknam",3,"len")=2 + Set gtmtypes("rc_lknam",3,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","xdsid.node")=3 + Set gtmtypes("rc_lknam",4,"name")="rc_lknam.node_handle" + Set gtmtypes("rc_lknam",4,"off")=4 + Set gtmtypes("rc_lknam",4,"len")=2 + Set gtmtypes("rc_lknam",4,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","node_handle")=4 + Set gtmtypes("rc_lknam",5,"name")="rc_lknam.node_handle.octet" + Set gtmtypes("rc_lknam",5,"off")=4 + Set gtmtypes("rc_lknam",5,"len")=2 + Set gtmtypes("rc_lknam",5,"type")="char" + Set gtmtypfldindx("rc_lknam","node_handle.octet")=5 + Set gtmtypes("rc_lknam",6,"name")="rc_lknam.node_handle.value" + Set gtmtypes("rc_lknam",6,"off")=4 + Set gtmtypes("rc_lknam",6,"len")=2 + Set gtmtypes("rc_lknam",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_lknam","node_handle.value")=6 + Set gtmtypes("rc_lknam",7,"name")="rc_lknam.sb_key" + Set gtmtypes("rc_lknam",7,"off")=6 + Set gtmtypes("rc_lknam",7,"len")=2 + Set gtmtypes("rc_lknam",7,"type")="rc_sbkey" + Set gtmtypfldindx("rc_lknam","sb_key")=7 + Set gtmtypes("rc_lknam",8,"name")="rc_lknam.sb_key.len" + Set gtmtypes("rc_lknam",8,"off")=6 + Set gtmtypes("rc_lknam",8,"len")=1 + Set gtmtypes("rc_lknam",8,"type")="rc_byte" + Set gtmtypfldindx("rc_lknam","sb_key.len")=8 + Set gtmtypes("rc_lknam",9,"name")="rc_lknam.sb_key.key" + Set gtmtypes("rc_lknam",9,"off")=7 + Set gtmtypes("rc_lknam",9,"len")=1 + Set gtmtypes("rc_lknam",9,"type")="char" + Set gtmtypfldindx("rc_lknam","sb_key.key")=9 + ; + Set gtmtypes("rc_lword")="union" + Set gtmtypes("rc_lword",0)=2 + Set gtmtypes("rc_lword","len")=4 + Set gtmtypes("rc_lword",1,"name")="rc_lword.octet" + Set gtmtypes("rc_lword",1,"off")=0 + Set gtmtypes("rc_lword",1,"len")=4 + Set gtmtypes("rc_lword",1,"type")="char" + Set gtmtypfldindx("rc_lword","octet")=1 + Set gtmtypes("rc_lword",2,"name")="rc_lword.value" + Set gtmtypes("rc_lword",2,"off")=0 + Set gtmtypes("rc_lword",2,"len")=4 + Set gtmtypes("rc_lword",2,"type")="unsigned-int" + Set gtmtypfldindx("rc_lword","value")=2 + ; + Set gtmtypes("rc_q_hdr")="union" + Set gtmtypes("rc_q_hdr",0)=26 + Set gtmtypes("rc_q_hdr","len")=14 + Set gtmtypes("rc_q_hdr",1,"name")="rc_q_hdr.r" + Set gtmtypes("rc_q_hdr",1,"off")=0 + Set gtmtypes("rc_q_hdr",1,"len")=14 + Set gtmtypes("rc_q_hdr",1,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_q_hdr","r")=1 + Set gtmtypes("rc_q_hdr",2,"name")="rc_q_hdr.r.len" + Set gtmtypes("rc_q_hdr",2,"off")=0 + Set gtmtypes("rc_q_hdr",2,"len")=2 + Set gtmtypes("rc_q_hdr",2,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.len")=2 + Set gtmtypes("rc_q_hdr",3,"name")="rc_q_hdr.r.typ" + Set gtmtypes("rc_q_hdr",3,"off")=2 + Set gtmtypes("rc_q_hdr",3,"len")=2 + Set gtmtypes("rc_q_hdr",3,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.typ")=3 + Set gtmtypes("rc_q_hdr",4,"name")="rc_q_hdr.r.fmd" + Set gtmtypes("rc_q_hdr",4,"off")=4 + Set gtmtypes("rc_q_hdr",4,"len")=2 + Set gtmtypes("rc_q_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.fmd")=4 + Set gtmtypes("rc_q_hdr",5,"name")="rc_q_hdr.r.pid1" + Set gtmtypes("rc_q_hdr",5,"off")=6 + Set gtmtypes("rc_q_hdr",5,"len")=2 + Set gtmtypes("rc_q_hdr",5,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.pid1")=5 + Set gtmtypes("rc_q_hdr",6,"name")="rc_q_hdr.r.pid2" + Set gtmtypes("rc_q_hdr",6,"off")=8 + Set gtmtypes("rc_q_hdr",6,"len")=2 + Set gtmtypes("rc_q_hdr",6,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.pid2")=6 + Set gtmtypes("rc_q_hdr",7,"name")="rc_q_hdr.r.xdsid" + Set gtmtypes("rc_q_hdr",7,"off")=10 + Set gtmtypes("rc_q_hdr",7,"len")=4 + Set gtmtypes("rc_q_hdr",7,"type")="rc_xdsid" + Set gtmtypfldindx("rc_q_hdr","r.xdsid")=7 + Set gtmtypes("rc_q_hdr",8,"name")="rc_q_hdr.a" + Set gtmtypes("rc_q_hdr",8,"off")=0 + Set gtmtypes("rc_q_hdr",8,"len")=14 + Set gtmtypes("rc_q_hdr",8,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_q_hdr","a")=8 + Set gtmtypes("rc_q_hdr",9,"name")="rc_q_hdr.a.len" + Set gtmtypes("rc_q_hdr",9,"off")=0 + Set gtmtypes("rc_q_hdr",9,"len")=2 + Set gtmtypes("rc_q_hdr",9,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.len")=9 + Set gtmtypes("rc_q_hdr",10,"name")="rc_q_hdr.a.len.octet" + Set gtmtypes("rc_q_hdr",10,"off")=0 + Set gtmtypes("rc_q_hdr",10,"len")=2 + Set gtmtypes("rc_q_hdr",10,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.len.octet")=10 + Set gtmtypes("rc_q_hdr",11,"name")="rc_q_hdr.a.len.value" + Set gtmtypes("rc_q_hdr",11,"off")=0 + Set gtmtypes("rc_q_hdr",11,"len")=2 + Set gtmtypes("rc_q_hdr",11,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.len.value")=11 + Set gtmtypes("rc_q_hdr",12,"name")="rc_q_hdr.a.typ" + Set gtmtypes("rc_q_hdr",12,"off")=2 + Set gtmtypes("rc_q_hdr",12,"len")=2 + Set gtmtypes("rc_q_hdr",12,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.typ")=12 + Set gtmtypes("rc_q_hdr",13,"name")="rc_q_hdr.a.typ.octet" + Set gtmtypes("rc_q_hdr",13,"off")=2 + Set gtmtypes("rc_q_hdr",13,"len")=2 + Set gtmtypes("rc_q_hdr",13,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.typ.octet")=13 + Set gtmtypes("rc_q_hdr",14,"name")="rc_q_hdr.a.typ.value" + Set gtmtypes("rc_q_hdr",14,"off")=2 + Set gtmtypes("rc_q_hdr",14,"len")=2 + Set gtmtypes("rc_q_hdr",14,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.typ.value")=14 + Set gtmtypes("rc_q_hdr",15,"name")="rc_q_hdr.a.erc" + Set gtmtypes("rc_q_hdr",15,"off")=4 + Set gtmtypes("rc_q_hdr",15,"len")=2 + Set gtmtypes("rc_q_hdr",15,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.erc")=15 + Set gtmtypes("rc_q_hdr",16,"name")="rc_q_hdr.a.erc.octet" + Set gtmtypes("rc_q_hdr",16,"off")=4 + Set gtmtypes("rc_q_hdr",16,"len")=2 + Set gtmtypes("rc_q_hdr",16,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.erc.octet")=16 + Set gtmtypes("rc_q_hdr",17,"name")="rc_q_hdr.a.erc.value" + Set gtmtypes("rc_q_hdr",17,"off")=4 + Set gtmtypes("rc_q_hdr",17,"len")=2 + Set gtmtypes("rc_q_hdr",17,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.erc.value")=17 + Set gtmtypes("rc_q_hdr",18,"name")="rc_q_hdr.a.pid1" + Set gtmtypes("rc_q_hdr",18,"off")=6 + Set gtmtypes("rc_q_hdr",18,"len")=2 + Set gtmtypes("rc_q_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.pid1")=18 + Set gtmtypes("rc_q_hdr",19,"name")="rc_q_hdr.a.pid1.octet" + Set gtmtypes("rc_q_hdr",19,"off")=6 + Set gtmtypes("rc_q_hdr",19,"len")=2 + Set gtmtypes("rc_q_hdr",19,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.pid1.octet")=19 + Set gtmtypes("rc_q_hdr",20,"name")="rc_q_hdr.a.pid1.value" + Set gtmtypes("rc_q_hdr",20,"off")=6 + Set gtmtypes("rc_q_hdr",20,"len")=2 + Set gtmtypes("rc_q_hdr",20,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.pid1.value")=20 + Set gtmtypes("rc_q_hdr",21,"name")="rc_q_hdr.a.pid2" + Set gtmtypes("rc_q_hdr",21,"off")=8 + Set gtmtypes("rc_q_hdr",21,"len")=2 + Set gtmtypes("rc_q_hdr",21,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.pid2")=21 + Set gtmtypes("rc_q_hdr",22,"name")="rc_q_hdr.a.pid2.octet" + Set gtmtypes("rc_q_hdr",22,"off")=8 + Set gtmtypes("rc_q_hdr",22,"len")=2 + Set gtmtypes("rc_q_hdr",22,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.pid2.octet")=22 + Set gtmtypes("rc_q_hdr",23,"name")="rc_q_hdr.a.pid2.value" + Set gtmtypes("rc_q_hdr",23,"off")=8 + Set gtmtypes("rc_q_hdr",23,"len")=2 + Set gtmtypes("rc_q_hdr",23,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.pid2.value")=23 + Set gtmtypes("rc_q_hdr",24,"name")="rc_q_hdr.a.xdsid" + Set gtmtypes("rc_q_hdr",24,"off")=10 + Set gtmtypes("rc_q_hdr",24,"len")=4 + Set gtmtypes("rc_q_hdr",24,"type")="rc_xdsid" + Set gtmtypfldindx("rc_q_hdr","a.xdsid")=24 + Set gtmtypes("rc_q_hdr",25,"name")="rc_q_hdr.a.xdsid.dsid" + Set gtmtypes("rc_q_hdr",25,"off")=10 + Set gtmtypes("rc_q_hdr",25,"len")=2 + Set gtmtypes("rc_q_hdr",25,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.xdsid.dsid")=25 + Set gtmtypes("rc_q_hdr",26,"name")="rc_q_hdr.a.xdsid.node" + Set gtmtypes("rc_q_hdr",26,"off")=12 + Set gtmtypes("rc_q_hdr",26,"len")=2 + Set gtmtypes("rc_q_hdr",26,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.xdsid.node")=26 + ; + Set gtmtypes("rc_req_getp")="struct" + Set gtmtypes("rc_req_getp",0)=31 + Set gtmtypes("rc_req_getp","len")=20 + Set gtmtypes("rc_req_getp",1,"name")="rc_req_getp.hdr" + Set gtmtypes("rc_req_getp",1,"off")=0 + Set gtmtypes("rc_req_getp",1,"len")=14 + Set gtmtypes("rc_req_getp",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_getp","hdr")=1 + Set gtmtypes("rc_req_getp",2,"name")="rc_req_getp.hdr.r" + Set gtmtypes("rc_req_getp",2,"off")=0 + Set gtmtypes("rc_req_getp",2,"len")=14 + Set gtmtypes("rc_req_getp",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_getp","hdr.r")=2 + Set gtmtypes("rc_req_getp",3,"name")="rc_req_getp.hdr.r.len" + Set gtmtypes("rc_req_getp",3,"off")=0 + Set gtmtypes("rc_req_getp",3,"len")=2 + Set gtmtypes("rc_req_getp",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.len")=3 + Set gtmtypes("rc_req_getp",4,"name")="rc_req_getp.hdr.r.typ" + Set gtmtypes("rc_req_getp",4,"off")=2 + Set gtmtypes("rc_req_getp",4,"len")=2 + Set gtmtypes("rc_req_getp",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.typ")=4 + Set gtmtypes("rc_req_getp",5,"name")="rc_req_getp.hdr.r.fmd" + Set gtmtypes("rc_req_getp",5,"off")=4 + Set gtmtypes("rc_req_getp",5,"len")=2 + Set gtmtypes("rc_req_getp",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.fmd")=5 + Set gtmtypes("rc_req_getp",6,"name")="rc_req_getp.hdr.r.pid1" + Set gtmtypes("rc_req_getp",6,"off")=6 + Set gtmtypes("rc_req_getp",6,"len")=2 + Set gtmtypes("rc_req_getp",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.pid1")=6 + Set gtmtypes("rc_req_getp",7,"name")="rc_req_getp.hdr.r.pid2" + Set gtmtypes("rc_req_getp",7,"off")=8 + Set gtmtypes("rc_req_getp",7,"len")=2 + Set gtmtypes("rc_req_getp",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.pid2")=7 + Set gtmtypes("rc_req_getp",8,"name")="rc_req_getp.hdr.r.xdsid" + Set gtmtypes("rc_req_getp",8,"off")=10 + Set gtmtypes("rc_req_getp",8,"len")=4 + Set gtmtypes("rc_req_getp",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getp","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_getp",9,"name")="rc_req_getp.hdr.a" + Set gtmtypes("rc_req_getp",9,"off")=0 + Set gtmtypes("rc_req_getp",9,"len")=14 + Set gtmtypes("rc_req_getp",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_getp","hdr.a")=9 + Set gtmtypes("rc_req_getp",10,"name")="rc_req_getp.hdr.a.len" + Set gtmtypes("rc_req_getp",10,"off")=0 + Set gtmtypes("rc_req_getp",10,"len")=2 + Set gtmtypes("rc_req_getp",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.len")=10 + Set gtmtypes("rc_req_getp",11,"name")="rc_req_getp.hdr.a.len.octet" + Set gtmtypes("rc_req_getp",11,"off")=0 + Set gtmtypes("rc_req_getp",11,"len")=2 + Set gtmtypes("rc_req_getp",11,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_getp",12,"name")="rc_req_getp.hdr.a.len.value" + Set gtmtypes("rc_req_getp",12,"off")=0 + Set gtmtypes("rc_req_getp",12,"len")=2 + Set gtmtypes("rc_req_getp",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.len.value")=12 + Set gtmtypes("rc_req_getp",13,"name")="rc_req_getp.hdr.a.typ" + Set gtmtypes("rc_req_getp",13,"off")=2 + Set gtmtypes("rc_req_getp",13,"len")=2 + Set gtmtypes("rc_req_getp",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ")=13 + Set gtmtypes("rc_req_getp",14,"name")="rc_req_getp.hdr.a.typ.octet" + Set gtmtypes("rc_req_getp",14,"off")=2 + Set gtmtypes("rc_req_getp",14,"len")=2 + Set gtmtypes("rc_req_getp",14,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_getp",15,"name")="rc_req_getp.hdr.a.typ.value" + Set gtmtypes("rc_req_getp",15,"off")=2 + Set gtmtypes("rc_req_getp",15,"len")=2 + Set gtmtypes("rc_req_getp",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_getp",16,"name")="rc_req_getp.hdr.a.erc" + Set gtmtypes("rc_req_getp",16,"off")=4 + Set gtmtypes("rc_req_getp",16,"len")=2 + Set gtmtypes("rc_req_getp",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc")=16 + Set gtmtypes("rc_req_getp",17,"name")="rc_req_getp.hdr.a.erc.octet" + Set gtmtypes("rc_req_getp",17,"off")=4 + Set gtmtypes("rc_req_getp",17,"len")=2 + Set gtmtypes("rc_req_getp",17,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_getp",18,"name")="rc_req_getp.hdr.a.erc.value" + Set gtmtypes("rc_req_getp",18,"off")=4 + Set gtmtypes("rc_req_getp",18,"len")=2 + Set gtmtypes("rc_req_getp",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_getp",19,"name")="rc_req_getp.hdr.a.pid1" + Set gtmtypes("rc_req_getp",19,"off")=6 + Set gtmtypes("rc_req_getp",19,"len")=2 + Set gtmtypes("rc_req_getp",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1")=19 + Set gtmtypes("rc_req_getp",20,"name")="rc_req_getp.hdr.a.pid1.octet" + Set gtmtypes("rc_req_getp",20,"off")=6 + Set gtmtypes("rc_req_getp",20,"len")=2 + Set gtmtypes("rc_req_getp",20,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_getp",21,"name")="rc_req_getp.hdr.a.pid1.value" + Set gtmtypes("rc_req_getp",21,"off")=6 + Set gtmtypes("rc_req_getp",21,"len")=2 + Set gtmtypes("rc_req_getp",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_getp",22,"name")="rc_req_getp.hdr.a.pid2" + Set gtmtypes("rc_req_getp",22,"off")=8 + Set gtmtypes("rc_req_getp",22,"len")=2 + Set gtmtypes("rc_req_getp",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2")=22 + Set gtmtypes("rc_req_getp",23,"name")="rc_req_getp.hdr.a.pid2.octet" + Set gtmtypes("rc_req_getp",23,"off")=8 + Set gtmtypes("rc_req_getp",23,"len")=2 + Set gtmtypes("rc_req_getp",23,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_getp",24,"name")="rc_req_getp.hdr.a.pid2.value" + Set gtmtypes("rc_req_getp",24,"off")=8 + Set gtmtypes("rc_req_getp",24,"len")=2 + Set gtmtypes("rc_req_getp",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_getp",25,"name")="rc_req_getp.hdr.a.xdsid" + Set gtmtypes("rc_req_getp",25,"off")=10 + Set gtmtypes("rc_req_getp",25,"len")=4 + Set gtmtypes("rc_req_getp",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_getp",26,"name")="rc_req_getp.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_getp",26,"off")=10 + Set gtmtypes("rc_req_getp",26,"len")=2 + Set gtmtypes("rc_req_getp",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_getp",27,"name")="rc_req_getp.hdr.a.xdsid.node" + Set gtmtypes("rc_req_getp",27,"off")=12 + Set gtmtypes("rc_req_getp",27,"len")=2 + Set gtmtypes("rc_req_getp",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_getp",28,"name")="rc_req_getp.pageaddr" + Set gtmtypes("rc_req_getp",28,"off")=14 + Set gtmtypes("rc_req_getp",28,"len")=4 + Set gtmtypes("rc_req_getp",28,"type")="char" + Set gtmtypfldindx("rc_req_getp","pageaddr")=28 + Set gtmtypes("rc_req_getp",29,"name")="rc_req_getp.offset" + Set gtmtypes("rc_req_getp",29,"off")=18 + Set gtmtypes("rc_req_getp",29,"len")=2 + Set gtmtypes("rc_req_getp",29,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","offset")=29 + Set gtmtypes("rc_req_getp",30,"name")="rc_req_getp.offset.octet" + Set gtmtypes("rc_req_getp",30,"off")=18 + Set gtmtypes("rc_req_getp",30,"len")=2 + Set gtmtypes("rc_req_getp",30,"type")="char" + Set gtmtypfldindx("rc_req_getp","offset.octet")=30 + Set gtmtypes("rc_req_getp",31,"name")="rc_req_getp.offset.value" + Set gtmtypes("rc_req_getp",31,"off")=18 + Set gtmtypes("rc_req_getp",31,"len")=2 + Set gtmtypes("rc_req_getp",31,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","offset.value")=31 + ; + Set gtmtypes("rc_req_getr")="struct" + Set gtmtypes("rc_req_getr",0)=30 + Set gtmtypes("rc_req_getr","len")=16 + Set gtmtypes("rc_req_getr",1,"name")="rc_req_getr.hdr" + Set gtmtypes("rc_req_getr",1,"off")=0 + Set gtmtypes("rc_req_getr",1,"len")=14 + Set gtmtypes("rc_req_getr",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_getr","hdr")=1 + Set gtmtypes("rc_req_getr",2,"name")="rc_req_getr.hdr.r" + Set gtmtypes("rc_req_getr",2,"off")=0 + Set gtmtypes("rc_req_getr",2,"len")=14 + Set gtmtypes("rc_req_getr",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_getr","hdr.r")=2 + Set gtmtypes("rc_req_getr",3,"name")="rc_req_getr.hdr.r.len" + Set gtmtypes("rc_req_getr",3,"off")=0 + Set gtmtypes("rc_req_getr",3,"len")=2 + Set gtmtypes("rc_req_getr",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.len")=3 + Set gtmtypes("rc_req_getr",4,"name")="rc_req_getr.hdr.r.typ" + Set gtmtypes("rc_req_getr",4,"off")=2 + Set gtmtypes("rc_req_getr",4,"len")=2 + Set gtmtypes("rc_req_getr",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.typ")=4 + Set gtmtypes("rc_req_getr",5,"name")="rc_req_getr.hdr.r.fmd" + Set gtmtypes("rc_req_getr",5,"off")=4 + Set gtmtypes("rc_req_getr",5,"len")=2 + Set gtmtypes("rc_req_getr",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.fmd")=5 + Set gtmtypes("rc_req_getr",6,"name")="rc_req_getr.hdr.r.pid1" + Set gtmtypes("rc_req_getr",6,"off")=6 + Set gtmtypes("rc_req_getr",6,"len")=2 + Set gtmtypes("rc_req_getr",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.pid1")=6 + Set gtmtypes("rc_req_getr",7,"name")="rc_req_getr.hdr.r.pid2" + Set gtmtypes("rc_req_getr",7,"off")=8 + Set gtmtypes("rc_req_getr",7,"len")=2 + Set gtmtypes("rc_req_getr",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.pid2")=7 + Set gtmtypes("rc_req_getr",8,"name")="rc_req_getr.hdr.r.xdsid" + Set gtmtypes("rc_req_getr",8,"off")=10 + Set gtmtypes("rc_req_getr",8,"len")=4 + Set gtmtypes("rc_req_getr",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getr","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_getr",9,"name")="rc_req_getr.hdr.a" + Set gtmtypes("rc_req_getr",9,"off")=0 + Set gtmtypes("rc_req_getr",9,"len")=14 + Set gtmtypes("rc_req_getr",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_getr","hdr.a")=9 + Set gtmtypes("rc_req_getr",10,"name")="rc_req_getr.hdr.a.len" + Set gtmtypes("rc_req_getr",10,"off")=0 + Set gtmtypes("rc_req_getr",10,"len")=2 + Set gtmtypes("rc_req_getr",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.len")=10 + Set gtmtypes("rc_req_getr",11,"name")="rc_req_getr.hdr.a.len.octet" + Set gtmtypes("rc_req_getr",11,"off")=0 + Set gtmtypes("rc_req_getr",11,"len")=2 + Set gtmtypes("rc_req_getr",11,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_getr",12,"name")="rc_req_getr.hdr.a.len.value" + Set gtmtypes("rc_req_getr",12,"off")=0 + Set gtmtypes("rc_req_getr",12,"len")=2 + Set gtmtypes("rc_req_getr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.len.value")=12 + Set gtmtypes("rc_req_getr",13,"name")="rc_req_getr.hdr.a.typ" + Set gtmtypes("rc_req_getr",13,"off")=2 + Set gtmtypes("rc_req_getr",13,"len")=2 + Set gtmtypes("rc_req_getr",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ")=13 + Set gtmtypes("rc_req_getr",14,"name")="rc_req_getr.hdr.a.typ.octet" + Set gtmtypes("rc_req_getr",14,"off")=2 + Set gtmtypes("rc_req_getr",14,"len")=2 + Set gtmtypes("rc_req_getr",14,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_getr",15,"name")="rc_req_getr.hdr.a.typ.value" + Set gtmtypes("rc_req_getr",15,"off")=2 + Set gtmtypes("rc_req_getr",15,"len")=2 + Set gtmtypes("rc_req_getr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_getr",16,"name")="rc_req_getr.hdr.a.erc" + Set gtmtypes("rc_req_getr",16,"off")=4 + Set gtmtypes("rc_req_getr",16,"len")=2 + Set gtmtypes("rc_req_getr",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc")=16 + Set gtmtypes("rc_req_getr",17,"name")="rc_req_getr.hdr.a.erc.octet" + Set gtmtypes("rc_req_getr",17,"off")=4 + Set gtmtypes("rc_req_getr",17,"len")=2 + Set gtmtypes("rc_req_getr",17,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_getr",18,"name")="rc_req_getr.hdr.a.erc.value" + Set gtmtypes("rc_req_getr",18,"off")=4 + Set gtmtypes("rc_req_getr",18,"len")=2 + Set gtmtypes("rc_req_getr",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_getr",19,"name")="rc_req_getr.hdr.a.pid1" + Set gtmtypes("rc_req_getr",19,"off")=6 + Set gtmtypes("rc_req_getr",19,"len")=2 + Set gtmtypes("rc_req_getr",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1")=19 + Set gtmtypes("rc_req_getr",20,"name")="rc_req_getr.hdr.a.pid1.octet" + Set gtmtypes("rc_req_getr",20,"off")=6 + Set gtmtypes("rc_req_getr",20,"len")=2 + Set gtmtypes("rc_req_getr",20,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_getr",21,"name")="rc_req_getr.hdr.a.pid1.value" + Set gtmtypes("rc_req_getr",21,"off")=6 + Set gtmtypes("rc_req_getr",21,"len")=2 + Set gtmtypes("rc_req_getr",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_getr",22,"name")="rc_req_getr.hdr.a.pid2" + Set gtmtypes("rc_req_getr",22,"off")=8 + Set gtmtypes("rc_req_getr",22,"len")=2 + Set gtmtypes("rc_req_getr",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2")=22 + Set gtmtypes("rc_req_getr",23,"name")="rc_req_getr.hdr.a.pid2.octet" + Set gtmtypes("rc_req_getr",23,"off")=8 + Set gtmtypes("rc_req_getr",23,"len")=2 + Set gtmtypes("rc_req_getr",23,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_getr",24,"name")="rc_req_getr.hdr.a.pid2.value" + Set gtmtypes("rc_req_getr",24,"off")=8 + Set gtmtypes("rc_req_getr",24,"len")=2 + Set gtmtypes("rc_req_getr",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_getr",25,"name")="rc_req_getr.hdr.a.xdsid" + Set gtmtypes("rc_req_getr",25,"off")=10 + Set gtmtypes("rc_req_getr",25,"len")=4 + Set gtmtypes("rc_req_getr",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_getr",26,"name")="rc_req_getr.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_getr",26,"off")=10 + Set gtmtypes("rc_req_getr",26,"len")=2 + Set gtmtypes("rc_req_getr",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_getr",27,"name")="rc_req_getr.hdr.a.xdsid.node" + Set gtmtypes("rc_req_getr",27,"off")=12 + Set gtmtypes("rc_req_getr",27,"len")=2 + Set gtmtypes("rc_req_getr",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_getr",28,"name")="rc_req_getr.key" + Set gtmtypes("rc_req_getr",28,"off")=14 + Set gtmtypes("rc_req_getr",28,"len")=2 + Set gtmtypes("rc_req_getr",28,"type")="rc_sbkey" + Set gtmtypfldindx("rc_req_getr","key")=28 + Set gtmtypes("rc_req_getr",29,"name")="rc_req_getr.key.len" + Set gtmtypes("rc_req_getr",29,"off")=14 + Set gtmtypes("rc_req_getr",29,"len")=1 + Set gtmtypes("rc_req_getr",29,"type")="rc_byte" + Set gtmtypfldindx("rc_req_getr","key.len")=29 + Set gtmtypes("rc_req_getr",30,"name")="rc_req_getr.key.key" + Set gtmtypes("rc_req_getr",30,"off")=15 + Set gtmtypes("rc_req_getr",30,"len")=1 + Set gtmtypes("rc_req_getr",30,"type")="char" + Set gtmtypfldindx("rc_req_getr","key.key")=30 + ; + Set gtmtypes("rc_req_lock")="struct" + Set gtmtypes("rc_req_lock",0)=40 + Set gtmtypes("rc_req_lock","len")=24 + Set gtmtypes("rc_req_lock",1,"name")="rc_req_lock.hdr" + Set gtmtypes("rc_req_lock",1,"off")=0 + Set gtmtypes("rc_req_lock",1,"len")=14 + Set gtmtypes("rc_req_lock",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_lock","hdr")=1 + Set gtmtypes("rc_req_lock",2,"name")="rc_req_lock.hdr.r" + Set gtmtypes("rc_req_lock",2,"off")=0 + Set gtmtypes("rc_req_lock",2,"len")=14 + Set gtmtypes("rc_req_lock",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_lock","hdr.r")=2 + Set gtmtypes("rc_req_lock",3,"name")="rc_req_lock.hdr.r.len" + Set gtmtypes("rc_req_lock",3,"off")=0 + Set gtmtypes("rc_req_lock",3,"len")=2 + Set gtmtypes("rc_req_lock",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.len")=3 + Set gtmtypes("rc_req_lock",4,"name")="rc_req_lock.hdr.r.typ" + Set gtmtypes("rc_req_lock",4,"off")=2 + Set gtmtypes("rc_req_lock",4,"len")=2 + Set gtmtypes("rc_req_lock",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.typ")=4 + Set gtmtypes("rc_req_lock",5,"name")="rc_req_lock.hdr.r.fmd" + Set gtmtypes("rc_req_lock",5,"off")=4 + Set gtmtypes("rc_req_lock",5,"len")=2 + Set gtmtypes("rc_req_lock",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.fmd")=5 + Set gtmtypes("rc_req_lock",6,"name")="rc_req_lock.hdr.r.pid1" + Set gtmtypes("rc_req_lock",6,"off")=6 + Set gtmtypes("rc_req_lock",6,"len")=2 + Set gtmtypes("rc_req_lock",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.pid1")=6 + Set gtmtypes("rc_req_lock",7,"name")="rc_req_lock.hdr.r.pid2" + Set gtmtypes("rc_req_lock",7,"off")=8 + Set gtmtypes("rc_req_lock",7,"len")=2 + Set gtmtypes("rc_req_lock",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.pid2")=7 + Set gtmtypes("rc_req_lock",8,"name")="rc_req_lock.hdr.r.xdsid" + Set gtmtypes("rc_req_lock",8,"off")=10 + Set gtmtypes("rc_req_lock",8,"len")=4 + Set gtmtypes("rc_req_lock",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_lock",9,"name")="rc_req_lock.hdr.a" + Set gtmtypes("rc_req_lock",9,"off")=0 + Set gtmtypes("rc_req_lock",9,"len")=14 + Set gtmtypes("rc_req_lock",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_lock","hdr.a")=9 + Set gtmtypes("rc_req_lock",10,"name")="rc_req_lock.hdr.a.len" + Set gtmtypes("rc_req_lock",10,"off")=0 + Set gtmtypes("rc_req_lock",10,"len")=2 + Set gtmtypes("rc_req_lock",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.len")=10 + Set gtmtypes("rc_req_lock",11,"name")="rc_req_lock.hdr.a.len.octet" + Set gtmtypes("rc_req_lock",11,"off")=0 + Set gtmtypes("rc_req_lock",11,"len")=2 + Set gtmtypes("rc_req_lock",11,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_lock",12,"name")="rc_req_lock.hdr.a.len.value" + Set gtmtypes("rc_req_lock",12,"off")=0 + Set gtmtypes("rc_req_lock",12,"len")=2 + Set gtmtypes("rc_req_lock",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.len.value")=12 + Set gtmtypes("rc_req_lock",13,"name")="rc_req_lock.hdr.a.typ" + Set gtmtypes("rc_req_lock",13,"off")=2 + Set gtmtypes("rc_req_lock",13,"len")=2 + Set gtmtypes("rc_req_lock",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ")=13 + Set gtmtypes("rc_req_lock",14,"name")="rc_req_lock.hdr.a.typ.octet" + Set gtmtypes("rc_req_lock",14,"off")=2 + Set gtmtypes("rc_req_lock",14,"len")=2 + Set gtmtypes("rc_req_lock",14,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_lock",15,"name")="rc_req_lock.hdr.a.typ.value" + Set gtmtypes("rc_req_lock",15,"off")=2 + Set gtmtypes("rc_req_lock",15,"len")=2 + Set gtmtypes("rc_req_lock",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_lock",16,"name")="rc_req_lock.hdr.a.erc" + Set gtmtypes("rc_req_lock",16,"off")=4 + Set gtmtypes("rc_req_lock",16,"len")=2 + Set gtmtypes("rc_req_lock",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc")=16 + Set gtmtypes("rc_req_lock",17,"name")="rc_req_lock.hdr.a.erc.octet" + Set gtmtypes("rc_req_lock",17,"off")=4 + Set gtmtypes("rc_req_lock",17,"len")=2 + Set gtmtypes("rc_req_lock",17,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_lock",18,"name")="rc_req_lock.hdr.a.erc.value" + Set gtmtypes("rc_req_lock",18,"off")=4 + Set gtmtypes("rc_req_lock",18,"len")=2 + Set gtmtypes("rc_req_lock",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_lock",19,"name")="rc_req_lock.hdr.a.pid1" + Set gtmtypes("rc_req_lock",19,"off")=6 + Set gtmtypes("rc_req_lock",19,"len")=2 + Set gtmtypes("rc_req_lock",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1")=19 + Set gtmtypes("rc_req_lock",20,"name")="rc_req_lock.hdr.a.pid1.octet" + Set gtmtypes("rc_req_lock",20,"off")=6 + Set gtmtypes("rc_req_lock",20,"len")=2 + Set gtmtypes("rc_req_lock",20,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_lock",21,"name")="rc_req_lock.hdr.a.pid1.value" + Set gtmtypes("rc_req_lock",21,"off")=6 + Set gtmtypes("rc_req_lock",21,"len")=2 + Set gtmtypes("rc_req_lock",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_lock",22,"name")="rc_req_lock.hdr.a.pid2" + Set gtmtypes("rc_req_lock",22,"off")=8 + Set gtmtypes("rc_req_lock",22,"len")=2 + Set gtmtypes("rc_req_lock",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2")=22 + Set gtmtypes("rc_req_lock",23,"name")="rc_req_lock.hdr.a.pid2.octet" + Set gtmtypes("rc_req_lock",23,"off")=8 + Set gtmtypes("rc_req_lock",23,"len")=2 + Set gtmtypes("rc_req_lock",23,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_lock",24,"name")="rc_req_lock.hdr.a.pid2.value" + Set gtmtypes("rc_req_lock",24,"off")=8 + Set gtmtypes("rc_req_lock",24,"len")=2 + Set gtmtypes("rc_req_lock",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_lock",25,"name")="rc_req_lock.hdr.a.xdsid" + Set gtmtypes("rc_req_lock",25,"off")=10 + Set gtmtypes("rc_req_lock",25,"len")=4 + Set gtmtypes("rc_req_lock",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_lock",26,"name")="rc_req_lock.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_lock",26,"off")=10 + Set gtmtypes("rc_req_lock",26,"len")=2 + Set gtmtypes("rc_req_lock",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_lock",27,"name")="rc_req_lock.hdr.a.xdsid.node" + Set gtmtypes("rc_req_lock",27,"off")=12 + Set gtmtypes("rc_req_lock",27,"len")=2 + Set gtmtypes("rc_req_lock",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_lock",28,"name")="rc_req_lock.nlocks" + Set gtmtypes("rc_req_lock",28,"off")=14 + Set gtmtypes("rc_req_lock",28,"len")=2 + Set gtmtypes("rc_req_lock",28,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","nlocks")=28 + Set gtmtypes("rc_req_lock",29,"name")="rc_req_lock.nlocks.octet" + Set gtmtypes("rc_req_lock",29,"off")=14 + Set gtmtypes("rc_req_lock",29,"len")=2 + Set gtmtypes("rc_req_lock",29,"type")="char" + Set gtmtypfldindx("rc_req_lock","nlocks.octet")=29 + Set gtmtypes("rc_req_lock",30,"name")="rc_req_lock.nlocks.value" + Set gtmtypes("rc_req_lock",30,"off")=14 + Set gtmtypes("rc_req_lock",30,"len")=2 + Set gtmtypes("rc_req_lock",30,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","nlocks.value")=30 + Set gtmtypes("rc_req_lock",31,"name")="rc_req_lock.dlocks" + Set gtmtypes("rc_req_lock",31,"off")=16 + Set gtmtypes("rc_req_lock",31,"len")=8 + Set gtmtypes("rc_req_lock",31,"type")="rc_lknam" + Set gtmtypfldindx("rc_req_lock","dlocks")=31 + Set gtmtypes("rc_req_lock",32,"name")="rc_req_lock.dlocks[0].xdsid" + Set gtmtypes("rc_req_lock",32,"off")=16 + Set gtmtypes("rc_req_lock",32,"len")=4 + Set gtmtypes("rc_req_lock",32,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid")=32 + Set gtmtypes("rc_req_lock",33,"name")="rc_req_lock.dlocks[0].xdsid.dsid" + Set gtmtypes("rc_req_lock",33,"off")=16 + Set gtmtypes("rc_req_lock",33,"len")=2 + Set gtmtypes("rc_req_lock",33,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid.dsid")=33 + Set gtmtypes("rc_req_lock",34,"name")="rc_req_lock.dlocks[0].xdsid.node" + Set gtmtypes("rc_req_lock",34,"off")=18 + Set gtmtypes("rc_req_lock",34,"len")=2 + Set gtmtypes("rc_req_lock",34,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid.node")=34 + Set gtmtypes("rc_req_lock",35,"name")="rc_req_lock.dlocks[0].node_handle" + Set gtmtypes("rc_req_lock",35,"off")=20 + Set gtmtypes("rc_req_lock",35,"len")=2 + Set gtmtypes("rc_req_lock",35,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle")=35 + Set gtmtypes("rc_req_lock",36,"name")="rc_req_lock.dlocks[0].node_handle.octet" + Set gtmtypes("rc_req_lock",36,"off")=20 + Set gtmtypes("rc_req_lock",36,"len")=2 + Set gtmtypes("rc_req_lock",36,"type")="char" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle.octet")=36 + Set gtmtypes("rc_req_lock",37,"name")="rc_req_lock.dlocks[0].node_handle.value" + Set gtmtypes("rc_req_lock",37,"off")=20 + Set gtmtypes("rc_req_lock",37,"len")=2 + Set gtmtypes("rc_req_lock",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle.value")=37 + Set gtmtypes("rc_req_lock",38,"name")="rc_req_lock.dlocks[0].sb_key" + Set gtmtypes("rc_req_lock",38,"off")=22 + Set gtmtypes("rc_req_lock",38,"len")=2 + Set gtmtypes("rc_req_lock",38,"type")="rc_sbkey" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key")=38 + Set gtmtypes("rc_req_lock",39,"name")="rc_req_lock.dlocks[0].sb_key.len" + Set gtmtypes("rc_req_lock",39,"off")=22 + Set gtmtypes("rc_req_lock",39,"len")=1 + Set gtmtypes("rc_req_lock",39,"type")="rc_byte" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key.len")=39 + Set gtmtypes("rc_req_lock",40,"name")="rc_req_lock.dlocks[0].sb_key.key" + Set gtmtypes("rc_req_lock",40,"off")=23 + Set gtmtypes("rc_req_lock",40,"len")=1 + Set gtmtypes("rc_req_lock",40,"type")="char" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key.key")=40 + ; + Set gtmtypes("rc_req_logn")="struct" + Set gtmtypes("rc_req_logn",0)=29 + Set gtmtypes("rc_req_logn","len")=250 + Set gtmtypes("rc_req_logn",1,"name")="rc_req_logn.hdr" + Set gtmtypes("rc_req_logn",1,"off")=0 + Set gtmtypes("rc_req_logn",1,"len")=14 + Set gtmtypes("rc_req_logn",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_logn","hdr")=1 + Set gtmtypes("rc_req_logn",2,"name")="rc_req_logn.hdr.r" + Set gtmtypes("rc_req_logn",2,"off")=0 + Set gtmtypes("rc_req_logn",2,"len")=14 + Set gtmtypes("rc_req_logn",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_logn","hdr.r")=2 + Set gtmtypes("rc_req_logn",3,"name")="rc_req_logn.hdr.r.len" + Set gtmtypes("rc_req_logn",3,"off")=0 + Set gtmtypes("rc_req_logn",3,"len")=2 + Set gtmtypes("rc_req_logn",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.len")=3 + Set gtmtypes("rc_req_logn",4,"name")="rc_req_logn.hdr.r.typ" + Set gtmtypes("rc_req_logn",4,"off")=2 + Set gtmtypes("rc_req_logn",4,"len")=2 + Set gtmtypes("rc_req_logn",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.typ")=4 + Set gtmtypes("rc_req_logn",5,"name")="rc_req_logn.hdr.r.fmd" + Set gtmtypes("rc_req_logn",5,"off")=4 + Set gtmtypes("rc_req_logn",5,"len")=2 + Set gtmtypes("rc_req_logn",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.fmd")=5 + Set gtmtypes("rc_req_logn",6,"name")="rc_req_logn.hdr.r.pid1" + Set gtmtypes("rc_req_logn",6,"off")=6 + Set gtmtypes("rc_req_logn",6,"len")=2 + Set gtmtypes("rc_req_logn",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.pid1")=6 + Set gtmtypes("rc_req_logn",7,"name")="rc_req_logn.hdr.r.pid2" + Set gtmtypes("rc_req_logn",7,"off")=8 + Set gtmtypes("rc_req_logn",7,"len")=2 + Set gtmtypes("rc_req_logn",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.pid2")=7 + Set gtmtypes("rc_req_logn",8,"name")="rc_req_logn.hdr.r.xdsid" + Set gtmtypes("rc_req_logn",8,"off")=10 + Set gtmtypes("rc_req_logn",8,"len")=4 + Set gtmtypes("rc_req_logn",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_logn","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_logn",9,"name")="rc_req_logn.hdr.a" + Set gtmtypes("rc_req_logn",9,"off")=0 + Set gtmtypes("rc_req_logn",9,"len")=14 + Set gtmtypes("rc_req_logn",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_logn","hdr.a")=9 + Set gtmtypes("rc_req_logn",10,"name")="rc_req_logn.hdr.a.len" + Set gtmtypes("rc_req_logn",10,"off")=0 + Set gtmtypes("rc_req_logn",10,"len")=2 + Set gtmtypes("rc_req_logn",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.len")=10 + Set gtmtypes("rc_req_logn",11,"name")="rc_req_logn.hdr.a.len.octet" + Set gtmtypes("rc_req_logn",11,"off")=0 + Set gtmtypes("rc_req_logn",11,"len")=2 + Set gtmtypes("rc_req_logn",11,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_logn",12,"name")="rc_req_logn.hdr.a.len.value" + Set gtmtypes("rc_req_logn",12,"off")=0 + Set gtmtypes("rc_req_logn",12,"len")=2 + Set gtmtypes("rc_req_logn",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.len.value")=12 + Set gtmtypes("rc_req_logn",13,"name")="rc_req_logn.hdr.a.typ" + Set gtmtypes("rc_req_logn",13,"off")=2 + Set gtmtypes("rc_req_logn",13,"len")=2 + Set gtmtypes("rc_req_logn",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ")=13 + Set gtmtypes("rc_req_logn",14,"name")="rc_req_logn.hdr.a.typ.octet" + Set gtmtypes("rc_req_logn",14,"off")=2 + Set gtmtypes("rc_req_logn",14,"len")=2 + Set gtmtypes("rc_req_logn",14,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_logn",15,"name")="rc_req_logn.hdr.a.typ.value" + Set gtmtypes("rc_req_logn",15,"off")=2 + Set gtmtypes("rc_req_logn",15,"len")=2 + Set gtmtypes("rc_req_logn",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_logn",16,"name")="rc_req_logn.hdr.a.erc" + Set gtmtypes("rc_req_logn",16,"off")=4 + Set gtmtypes("rc_req_logn",16,"len")=2 + Set gtmtypes("rc_req_logn",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc")=16 + Set gtmtypes("rc_req_logn",17,"name")="rc_req_logn.hdr.a.erc.octet" + Set gtmtypes("rc_req_logn",17,"off")=4 + Set gtmtypes("rc_req_logn",17,"len")=2 + Set gtmtypes("rc_req_logn",17,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_logn",18,"name")="rc_req_logn.hdr.a.erc.value" + Set gtmtypes("rc_req_logn",18,"off")=4 + Set gtmtypes("rc_req_logn",18,"len")=2 + Set gtmtypes("rc_req_logn",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_logn",19,"name")="rc_req_logn.hdr.a.pid1" + Set gtmtypes("rc_req_logn",19,"off")=6 + Set gtmtypes("rc_req_logn",19,"len")=2 + Set gtmtypes("rc_req_logn",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1")=19 + Set gtmtypes("rc_req_logn",20,"name")="rc_req_logn.hdr.a.pid1.octet" + Set gtmtypes("rc_req_logn",20,"off")=6 + Set gtmtypes("rc_req_logn",20,"len")=2 + Set gtmtypes("rc_req_logn",20,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_logn",21,"name")="rc_req_logn.hdr.a.pid1.value" + Set gtmtypes("rc_req_logn",21,"off")=6 + Set gtmtypes("rc_req_logn",21,"len")=2 + Set gtmtypes("rc_req_logn",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_logn",22,"name")="rc_req_logn.hdr.a.pid2" + Set gtmtypes("rc_req_logn",22,"off")=8 + Set gtmtypes("rc_req_logn",22,"len")=2 + Set gtmtypes("rc_req_logn",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2")=22 + Set gtmtypes("rc_req_logn",23,"name")="rc_req_logn.hdr.a.pid2.octet" + Set gtmtypes("rc_req_logn",23,"off")=8 + Set gtmtypes("rc_req_logn",23,"len")=2 + Set gtmtypes("rc_req_logn",23,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_logn",24,"name")="rc_req_logn.hdr.a.pid2.value" + Set gtmtypes("rc_req_logn",24,"off")=8 + Set gtmtypes("rc_req_logn",24,"len")=2 + Set gtmtypes("rc_req_logn",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_logn",25,"name")="rc_req_logn.hdr.a.xdsid" + Set gtmtypes("rc_req_logn",25,"off")=10 + Set gtmtypes("rc_req_logn",25,"len")=4 + Set gtmtypes("rc_req_logn",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_logn",26,"name")="rc_req_logn.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_logn",26,"off")=10 + Set gtmtypes("rc_req_logn",26,"len")=2 + Set gtmtypes("rc_req_logn",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_logn",27,"name")="rc_req_logn.hdr.a.xdsid.node" + Set gtmtypes("rc_req_logn",27,"off")=12 + Set gtmtypes("rc_req_logn",27,"len")=2 + Set gtmtypes("rc_req_logn",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_logn",28,"name")="rc_req_logn.license_num" + Set gtmtypes("rc_req_logn",28,"off")=14 + Set gtmtypes("rc_req_logn",28,"len")=12 + Set gtmtypes("rc_req_logn",28,"type")="char" + Set gtmtypfldindx("rc_req_logn","license_num")=28 + Set gtmtypes("rc_req_logn",29,"name")="rc_req_logn.license_blk" + Set gtmtypes("rc_req_logn",29,"off")=26 + Set gtmtypes("rc_req_logn",29,"len")=224 + Set gtmtypes("rc_req_logn",29,"type")="char" + Set gtmtypfldindx("rc_req_logn","license_blk")=29 + ; + Set gtmtypes("rc_rq_hdr")="struct" + Set gtmtypes("rc_rq_hdr",0)=18 + Set gtmtypes("rc_rq_hdr","len")=14 + Set gtmtypes("rc_rq_hdr",1,"name")="rc_rq_hdr.len" + Set gtmtypes("rc_rq_hdr",1,"off")=0 + Set gtmtypes("rc_rq_hdr",1,"len")=2 + Set gtmtypes("rc_rq_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","len")=1 + Set gtmtypes("rc_rq_hdr",2,"name")="rc_rq_hdr.len.octet" + Set gtmtypes("rc_rq_hdr",2,"off")=0 + Set gtmtypes("rc_rq_hdr",2,"len")=2 + Set gtmtypes("rc_rq_hdr",2,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","len.octet")=2 + Set gtmtypes("rc_rq_hdr",3,"name")="rc_rq_hdr.len.value" + Set gtmtypes("rc_rq_hdr",3,"off")=0 + Set gtmtypes("rc_rq_hdr",3,"len")=2 + Set gtmtypes("rc_rq_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","len.value")=3 + Set gtmtypes("rc_rq_hdr",4,"name")="rc_rq_hdr.typ" + Set gtmtypes("rc_rq_hdr",4,"off")=2 + Set gtmtypes("rc_rq_hdr",4,"len")=2 + Set gtmtypes("rc_rq_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","typ")=4 + Set gtmtypes("rc_rq_hdr",5,"name")="rc_rq_hdr.typ.octet" + Set gtmtypes("rc_rq_hdr",5,"off")=2 + Set gtmtypes("rc_rq_hdr",5,"len")=2 + Set gtmtypes("rc_rq_hdr",5,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","typ.octet")=5 + Set gtmtypes("rc_rq_hdr",6,"name")="rc_rq_hdr.typ.value" + Set gtmtypes("rc_rq_hdr",6,"off")=2 + Set gtmtypes("rc_rq_hdr",6,"len")=2 + Set gtmtypes("rc_rq_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","typ.value")=6 + Set gtmtypes("rc_rq_hdr",7,"name")="rc_rq_hdr.fmd" + Set gtmtypes("rc_rq_hdr",7,"off")=4 + Set gtmtypes("rc_rq_hdr",7,"len")=2 + Set gtmtypes("rc_rq_hdr",7,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","fmd")=7 + Set gtmtypes("rc_rq_hdr",8,"name")="rc_rq_hdr.fmd.octet" + Set gtmtypes("rc_rq_hdr",8,"off")=4 + Set gtmtypes("rc_rq_hdr",8,"len")=2 + Set gtmtypes("rc_rq_hdr",8,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","fmd.octet")=8 + Set gtmtypes("rc_rq_hdr",9,"name")="rc_rq_hdr.fmd.value" + Set gtmtypes("rc_rq_hdr",9,"off")=4 + Set gtmtypes("rc_rq_hdr",9,"len")=2 + Set gtmtypes("rc_rq_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","fmd.value")=9 + Set gtmtypes("rc_rq_hdr",10,"name")="rc_rq_hdr.pid1" + Set gtmtypes("rc_rq_hdr",10,"off")=6 + Set gtmtypes("rc_rq_hdr",10,"len")=2 + Set gtmtypes("rc_rq_hdr",10,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","pid1")=10 + Set gtmtypes("rc_rq_hdr",11,"name")="rc_rq_hdr.pid1.octet" + Set gtmtypes("rc_rq_hdr",11,"off")=6 + Set gtmtypes("rc_rq_hdr",11,"len")=2 + Set gtmtypes("rc_rq_hdr",11,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","pid1.octet")=11 + Set gtmtypes("rc_rq_hdr",12,"name")="rc_rq_hdr.pid1.value" + Set gtmtypes("rc_rq_hdr",12,"off")=6 + Set gtmtypes("rc_rq_hdr",12,"len")=2 + Set gtmtypes("rc_rq_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","pid1.value")=12 + Set gtmtypes("rc_rq_hdr",13,"name")="rc_rq_hdr.pid2" + Set gtmtypes("rc_rq_hdr",13,"off")=8 + Set gtmtypes("rc_rq_hdr",13,"len")=2 + Set gtmtypes("rc_rq_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","pid2")=13 + Set gtmtypes("rc_rq_hdr",14,"name")="rc_rq_hdr.pid2.octet" + Set gtmtypes("rc_rq_hdr",14,"off")=8 + Set gtmtypes("rc_rq_hdr",14,"len")=2 + Set gtmtypes("rc_rq_hdr",14,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","pid2.octet")=14 + Set gtmtypes("rc_rq_hdr",15,"name")="rc_rq_hdr.pid2.value" + Set gtmtypes("rc_rq_hdr",15,"off")=8 + Set gtmtypes("rc_rq_hdr",15,"len")=2 + Set gtmtypes("rc_rq_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","pid2.value")=15 + Set gtmtypes("rc_rq_hdr",16,"name")="rc_rq_hdr.xdsid" + Set gtmtypes("rc_rq_hdr",16,"off")=10 + Set gtmtypes("rc_rq_hdr",16,"len")=4 + Set gtmtypes("rc_rq_hdr",16,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rq_hdr","xdsid")=16 + Set gtmtypes("rc_rq_hdr",17,"name")="rc_rq_hdr.xdsid.dsid" + Set gtmtypes("rc_rq_hdr",17,"off")=10 + Set gtmtypes("rc_rq_hdr",17,"len")=2 + Set gtmtypes("rc_rq_hdr",17,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","xdsid.dsid")=17 + Set gtmtypes("rc_rq_hdr",18,"name")="rc_rq_hdr.xdsid.node" + Set gtmtypes("rc_rq_hdr",18,"off")=12 + Set gtmtypes("rc_rq_hdr",18,"len")=2 + Set gtmtypes("rc_rq_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","xdsid.node")=18 + ; + Set gtmtypes("rc_rsp_logn")="struct" + Set gtmtypes("rc_rsp_logn",0)=41 + Set gtmtypes("rc_rsp_logn","len")=250 + Set gtmtypes("rc_rsp_logn",1,"name")="rc_rsp_logn.hdr" + Set gtmtypes("rc_rsp_logn",1,"off")=0 + Set gtmtypes("rc_rsp_logn",1,"len")=14 + Set gtmtypes("rc_rsp_logn",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr")=1 + Set gtmtypes("rc_rsp_logn",2,"name")="rc_rsp_logn.hdr.r" + Set gtmtypes("rc_rsp_logn",2,"off")=0 + Set gtmtypes("rc_rsp_logn",2,"len")=14 + Set gtmtypes("rc_rsp_logn",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr.r")=2 + Set gtmtypes("rc_rsp_logn",3,"name")="rc_rsp_logn.hdr.r.len" + Set gtmtypes("rc_rsp_logn",3,"off")=0 + Set gtmtypes("rc_rsp_logn",3,"len")=2 + Set gtmtypes("rc_rsp_logn",3,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.len")=3 + Set gtmtypes("rc_rsp_logn",4,"name")="rc_rsp_logn.hdr.r.typ" + Set gtmtypes("rc_rsp_logn",4,"off")=2 + Set gtmtypes("rc_rsp_logn",4,"len")=2 + Set gtmtypes("rc_rsp_logn",4,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.typ")=4 + Set gtmtypes("rc_rsp_logn",5,"name")="rc_rsp_logn.hdr.r.fmd" + Set gtmtypes("rc_rsp_logn",5,"off")=4 + Set gtmtypes("rc_rsp_logn",5,"len")=2 + Set gtmtypes("rc_rsp_logn",5,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.fmd")=5 + Set gtmtypes("rc_rsp_logn",6,"name")="rc_rsp_logn.hdr.r.pid1" + Set gtmtypes("rc_rsp_logn",6,"off")=6 + Set gtmtypes("rc_rsp_logn",6,"len")=2 + Set gtmtypes("rc_rsp_logn",6,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.pid1")=6 + Set gtmtypes("rc_rsp_logn",7,"name")="rc_rsp_logn.hdr.r.pid2" + Set gtmtypes("rc_rsp_logn",7,"off")=8 + Set gtmtypes("rc_rsp_logn",7,"len")=2 + Set gtmtypes("rc_rsp_logn",7,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.pid2")=7 + Set gtmtypes("rc_rsp_logn",8,"name")="rc_rsp_logn.hdr.r.xdsid" + Set gtmtypes("rc_rsp_logn",8,"off")=10 + Set gtmtypes("rc_rsp_logn",8,"len")=4 + Set gtmtypes("rc_rsp_logn",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.xdsid")=8 + Set gtmtypes("rc_rsp_logn",9,"name")="rc_rsp_logn.hdr.a" + Set gtmtypes("rc_rsp_logn",9,"off")=0 + Set gtmtypes("rc_rsp_logn",9,"len")=14 + Set gtmtypes("rc_rsp_logn",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr.a")=9 + Set gtmtypes("rc_rsp_logn",10,"name")="rc_rsp_logn.hdr.a.len" + Set gtmtypes("rc_rsp_logn",10,"off")=0 + Set gtmtypes("rc_rsp_logn",10,"len")=2 + Set gtmtypes("rc_rsp_logn",10,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len")=10 + Set gtmtypes("rc_rsp_logn",11,"name")="rc_rsp_logn.hdr.a.len.octet" + Set gtmtypes("rc_rsp_logn",11,"off")=0 + Set gtmtypes("rc_rsp_logn",11,"len")=2 + Set gtmtypes("rc_rsp_logn",11,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len.octet")=11 + Set gtmtypes("rc_rsp_logn",12,"name")="rc_rsp_logn.hdr.a.len.value" + Set gtmtypes("rc_rsp_logn",12,"off")=0 + Set gtmtypes("rc_rsp_logn",12,"len")=2 + Set gtmtypes("rc_rsp_logn",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len.value")=12 + Set gtmtypes("rc_rsp_logn",13,"name")="rc_rsp_logn.hdr.a.typ" + Set gtmtypes("rc_rsp_logn",13,"off")=2 + Set gtmtypes("rc_rsp_logn",13,"len")=2 + Set gtmtypes("rc_rsp_logn",13,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ")=13 + Set gtmtypes("rc_rsp_logn",14,"name")="rc_rsp_logn.hdr.a.typ.octet" + Set gtmtypes("rc_rsp_logn",14,"off")=2 + Set gtmtypes("rc_rsp_logn",14,"len")=2 + Set gtmtypes("rc_rsp_logn",14,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ.octet")=14 + Set gtmtypes("rc_rsp_logn",15,"name")="rc_rsp_logn.hdr.a.typ.value" + Set gtmtypes("rc_rsp_logn",15,"off")=2 + Set gtmtypes("rc_rsp_logn",15,"len")=2 + Set gtmtypes("rc_rsp_logn",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ.value")=15 + Set gtmtypes("rc_rsp_logn",16,"name")="rc_rsp_logn.hdr.a.erc" + Set gtmtypes("rc_rsp_logn",16,"off")=4 + Set gtmtypes("rc_rsp_logn",16,"len")=2 + Set gtmtypes("rc_rsp_logn",16,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc")=16 + Set gtmtypes("rc_rsp_logn",17,"name")="rc_rsp_logn.hdr.a.erc.octet" + Set gtmtypes("rc_rsp_logn",17,"off")=4 + Set gtmtypes("rc_rsp_logn",17,"len")=2 + Set gtmtypes("rc_rsp_logn",17,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc.octet")=17 + Set gtmtypes("rc_rsp_logn",18,"name")="rc_rsp_logn.hdr.a.erc.value" + Set gtmtypes("rc_rsp_logn",18,"off")=4 + Set gtmtypes("rc_rsp_logn",18,"len")=2 + Set gtmtypes("rc_rsp_logn",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc.value")=18 + Set gtmtypes("rc_rsp_logn",19,"name")="rc_rsp_logn.hdr.a.pid1" + Set gtmtypes("rc_rsp_logn",19,"off")=6 + Set gtmtypes("rc_rsp_logn",19,"len")=2 + Set gtmtypes("rc_rsp_logn",19,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1")=19 + Set gtmtypes("rc_rsp_logn",20,"name")="rc_rsp_logn.hdr.a.pid1.octet" + Set gtmtypes("rc_rsp_logn",20,"off")=6 + Set gtmtypes("rc_rsp_logn",20,"len")=2 + Set gtmtypes("rc_rsp_logn",20,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_rsp_logn",21,"name")="rc_rsp_logn.hdr.a.pid1.value" + Set gtmtypes("rc_rsp_logn",21,"off")=6 + Set gtmtypes("rc_rsp_logn",21,"len")=2 + Set gtmtypes("rc_rsp_logn",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1.value")=21 + Set gtmtypes("rc_rsp_logn",22,"name")="rc_rsp_logn.hdr.a.pid2" + Set gtmtypes("rc_rsp_logn",22,"off")=8 + Set gtmtypes("rc_rsp_logn",22,"len")=2 + Set gtmtypes("rc_rsp_logn",22,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2")=22 + Set gtmtypes("rc_rsp_logn",23,"name")="rc_rsp_logn.hdr.a.pid2.octet" + Set gtmtypes("rc_rsp_logn",23,"off")=8 + Set gtmtypes("rc_rsp_logn",23,"len")=2 + Set gtmtypes("rc_rsp_logn",23,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_rsp_logn",24,"name")="rc_rsp_logn.hdr.a.pid2.value" + Set gtmtypes("rc_rsp_logn",24,"off")=8 + Set gtmtypes("rc_rsp_logn",24,"len")=2 + Set gtmtypes("rc_rsp_logn",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2.value")=24 + Set gtmtypes("rc_rsp_logn",25,"name")="rc_rsp_logn.hdr.a.xdsid" + Set gtmtypes("rc_rsp_logn",25,"off")=10 + Set gtmtypes("rc_rsp_logn",25,"len")=4 + Set gtmtypes("rc_rsp_logn",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid")=25 + Set gtmtypes("rc_rsp_logn",26,"name")="rc_rsp_logn.hdr.a.xdsid.dsid" + Set gtmtypes("rc_rsp_logn",26,"off")=10 + Set gtmtypes("rc_rsp_logn",26,"len")=2 + Set gtmtypes("rc_rsp_logn",26,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_rsp_logn",27,"name")="rc_rsp_logn.hdr.a.xdsid.node" + Set gtmtypes("rc_rsp_logn",27,"off")=12 + Set gtmtypes("rc_rsp_logn",27,"len")=2 + Set gtmtypes("rc_rsp_logn",27,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_rsp_logn",28,"name")="rc_rsp_logn.version" + Set gtmtypes("rc_rsp_logn",28,"off")=14 + Set gtmtypes("rc_rsp_logn",28,"len")=2 + Set gtmtypes("rc_rsp_logn",28,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","version")=28 + Set gtmtypes("rc_rsp_logn",29,"name")="rc_rsp_logn.version.octet" + Set gtmtypes("rc_rsp_logn",29,"off")=14 + Set gtmtypes("rc_rsp_logn",29,"len")=2 + Set gtmtypes("rc_rsp_logn",29,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","version.octet")=29 + Set gtmtypes("rc_rsp_logn",30,"name")="rc_rsp_logn.version.value" + Set gtmtypes("rc_rsp_logn",30,"off")=14 + Set gtmtypes("rc_rsp_logn",30,"len")=2 + Set gtmtypes("rc_rsp_logn",30,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","version.value")=30 + Set gtmtypes("rc_rsp_logn",31,"name")="rc_rsp_logn.method" + Set gtmtypes("rc_rsp_logn",31,"off")=16 + Set gtmtypes("rc_rsp_logn",31,"len")=2 + Set gtmtypes("rc_rsp_logn",31,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","method")=31 + Set gtmtypes("rc_rsp_logn",32,"name")="rc_rsp_logn.method.octet" + Set gtmtypes("rc_rsp_logn",32,"off")=16 + Set gtmtypes("rc_rsp_logn",32,"len")=2 + Set gtmtypes("rc_rsp_logn",32,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","method.octet")=32 + Set gtmtypes("rc_rsp_logn",33,"name")="rc_rsp_logn.method.value" + Set gtmtypes("rc_rsp_logn",33,"off")=16 + Set gtmtypes("rc_rsp_logn",33,"len")=2 + Set gtmtypes("rc_rsp_logn",33,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","method.value")=33 + Set gtmtypes("rc_rsp_logn",34,"name")="rc_rsp_logn.session" + Set gtmtypes("rc_rsp_logn",34,"off")=18 + Set gtmtypes("rc_rsp_logn",34,"len")=2 + Set gtmtypes("rc_rsp_logn",34,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","session")=34 + Set gtmtypes("rc_rsp_logn",35,"name")="rc_rsp_logn.session.octet" + Set gtmtypes("rc_rsp_logn",35,"off")=18 + Set gtmtypes("rc_rsp_logn",35,"len")=2 + Set gtmtypes("rc_rsp_logn",35,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","session.octet")=35 + Set gtmtypes("rc_rsp_logn",36,"name")="rc_rsp_logn.session.value" + Set gtmtypes("rc_rsp_logn",36,"off")=18 + Set gtmtypes("rc_rsp_logn",36,"len")=2 + Set gtmtypes("rc_rsp_logn",36,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","session.value")=36 + Set gtmtypes("rc_rsp_logn",37,"name")="rc_rsp_logn.date" + Set gtmtypes("rc_rsp_logn",37,"off")=20 + Set gtmtypes("rc_rsp_logn",37,"len")=2 + Set gtmtypes("rc_rsp_logn",37,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","date")=37 + Set gtmtypes("rc_rsp_logn",38,"name")="rc_rsp_logn.date.octet" + Set gtmtypes("rc_rsp_logn",38,"off")=20 + Set gtmtypes("rc_rsp_logn",38,"len")=2 + Set gtmtypes("rc_rsp_logn",38,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","date.octet")=38 + Set gtmtypes("rc_rsp_logn",39,"name")="rc_rsp_logn.date.value" + Set gtmtypes("rc_rsp_logn",39,"off")=20 + Set gtmtypes("rc_rsp_logn",39,"len")=2 + Set gtmtypes("rc_rsp_logn",39,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","date.value")=39 + Set gtmtypes("rc_rsp_logn",40,"name")="rc_rsp_logn.time" + Set gtmtypes("rc_rsp_logn",40,"off")=22 + Set gtmtypes("rc_rsp_logn",40,"len")=4 + Set gtmtypes("rc_rsp_logn",40,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","time")=40 + Set gtmtypes("rc_rsp_logn",41,"name")="rc_rsp_logn.license_blk" + Set gtmtypes("rc_rsp_logn",41,"off")=26 + Set gtmtypes("rc_rsp_logn",41,"len")=224 + Set gtmtypes("rc_rsp_logn",41,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","license_blk")=41 + ; + Set gtmtypes("rc_rsp_page")="struct" + Set gtmtypes("rc_rsp_page",0)=53 + Set gtmtypes("rc_rsp_page","len")=34 + Set gtmtypes("rc_rsp_page",1,"name")="rc_rsp_page.hdr" + Set gtmtypes("rc_rsp_page",1,"off")=0 + Set gtmtypes("rc_rsp_page",1,"len")=14 + Set gtmtypes("rc_rsp_page",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr")=1 + Set gtmtypes("rc_rsp_page",2,"name")="rc_rsp_page.hdr.r" + Set gtmtypes("rc_rsp_page",2,"off")=0 + Set gtmtypes("rc_rsp_page",2,"len")=14 + Set gtmtypes("rc_rsp_page",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr.r")=2 + Set gtmtypes("rc_rsp_page",3,"name")="rc_rsp_page.hdr.r.len" + Set gtmtypes("rc_rsp_page",3,"off")=0 + Set gtmtypes("rc_rsp_page",3,"len")=2 + Set gtmtypes("rc_rsp_page",3,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.len")=3 + Set gtmtypes("rc_rsp_page",4,"name")="rc_rsp_page.hdr.r.typ" + Set gtmtypes("rc_rsp_page",4,"off")=2 + Set gtmtypes("rc_rsp_page",4,"len")=2 + Set gtmtypes("rc_rsp_page",4,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.typ")=4 + Set gtmtypes("rc_rsp_page",5,"name")="rc_rsp_page.hdr.r.fmd" + Set gtmtypes("rc_rsp_page",5,"off")=4 + Set gtmtypes("rc_rsp_page",5,"len")=2 + Set gtmtypes("rc_rsp_page",5,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.fmd")=5 + Set gtmtypes("rc_rsp_page",6,"name")="rc_rsp_page.hdr.r.pid1" + Set gtmtypes("rc_rsp_page",6,"off")=6 + Set gtmtypes("rc_rsp_page",6,"len")=2 + Set gtmtypes("rc_rsp_page",6,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.pid1")=6 + Set gtmtypes("rc_rsp_page",7,"name")="rc_rsp_page.hdr.r.pid2" + Set gtmtypes("rc_rsp_page",7,"off")=8 + Set gtmtypes("rc_rsp_page",7,"len")=2 + Set gtmtypes("rc_rsp_page",7,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.pid2")=7 + Set gtmtypes("rc_rsp_page",8,"name")="rc_rsp_page.hdr.r.xdsid" + Set gtmtypes("rc_rsp_page",8,"off")=10 + Set gtmtypes("rc_rsp_page",8,"len")=4 + Set gtmtypes("rc_rsp_page",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_page","hdr.r.xdsid")=8 + Set gtmtypes("rc_rsp_page",9,"name")="rc_rsp_page.hdr.a" + Set gtmtypes("rc_rsp_page",9,"off")=0 + Set gtmtypes("rc_rsp_page",9,"len")=14 + Set gtmtypes("rc_rsp_page",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr.a")=9 + Set gtmtypes("rc_rsp_page",10,"name")="rc_rsp_page.hdr.a.len" + Set gtmtypes("rc_rsp_page",10,"off")=0 + Set gtmtypes("rc_rsp_page",10,"len")=2 + Set gtmtypes("rc_rsp_page",10,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len")=10 + Set gtmtypes("rc_rsp_page",11,"name")="rc_rsp_page.hdr.a.len.octet" + Set gtmtypes("rc_rsp_page",11,"off")=0 + Set gtmtypes("rc_rsp_page",11,"len")=2 + Set gtmtypes("rc_rsp_page",11,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len.octet")=11 + Set gtmtypes("rc_rsp_page",12,"name")="rc_rsp_page.hdr.a.len.value" + Set gtmtypes("rc_rsp_page",12,"off")=0 + Set gtmtypes("rc_rsp_page",12,"len")=2 + Set gtmtypes("rc_rsp_page",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len.value")=12 + Set gtmtypes("rc_rsp_page",13,"name")="rc_rsp_page.hdr.a.typ" + Set gtmtypes("rc_rsp_page",13,"off")=2 + Set gtmtypes("rc_rsp_page",13,"len")=2 + Set gtmtypes("rc_rsp_page",13,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ")=13 + Set gtmtypes("rc_rsp_page",14,"name")="rc_rsp_page.hdr.a.typ.octet" + Set gtmtypes("rc_rsp_page",14,"off")=2 + Set gtmtypes("rc_rsp_page",14,"len")=2 + Set gtmtypes("rc_rsp_page",14,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ.octet")=14 + Set gtmtypes("rc_rsp_page",15,"name")="rc_rsp_page.hdr.a.typ.value" + Set gtmtypes("rc_rsp_page",15,"off")=2 + Set gtmtypes("rc_rsp_page",15,"len")=2 + Set gtmtypes("rc_rsp_page",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ.value")=15 + Set gtmtypes("rc_rsp_page",16,"name")="rc_rsp_page.hdr.a.erc" + Set gtmtypes("rc_rsp_page",16,"off")=4 + Set gtmtypes("rc_rsp_page",16,"len")=2 + Set gtmtypes("rc_rsp_page",16,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc")=16 + Set gtmtypes("rc_rsp_page",17,"name")="rc_rsp_page.hdr.a.erc.octet" + Set gtmtypes("rc_rsp_page",17,"off")=4 + Set gtmtypes("rc_rsp_page",17,"len")=2 + Set gtmtypes("rc_rsp_page",17,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc.octet")=17 + Set gtmtypes("rc_rsp_page",18,"name")="rc_rsp_page.hdr.a.erc.value" + Set gtmtypes("rc_rsp_page",18,"off")=4 + Set gtmtypes("rc_rsp_page",18,"len")=2 + Set gtmtypes("rc_rsp_page",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc.value")=18 + Set gtmtypes("rc_rsp_page",19,"name")="rc_rsp_page.hdr.a.pid1" + Set gtmtypes("rc_rsp_page",19,"off")=6 + Set gtmtypes("rc_rsp_page",19,"len")=2 + Set gtmtypes("rc_rsp_page",19,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1")=19 + Set gtmtypes("rc_rsp_page",20,"name")="rc_rsp_page.hdr.a.pid1.octet" + Set gtmtypes("rc_rsp_page",20,"off")=6 + Set gtmtypes("rc_rsp_page",20,"len")=2 + Set gtmtypes("rc_rsp_page",20,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_rsp_page",21,"name")="rc_rsp_page.hdr.a.pid1.value" + Set gtmtypes("rc_rsp_page",21,"off")=6 + Set gtmtypes("rc_rsp_page",21,"len")=2 + Set gtmtypes("rc_rsp_page",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1.value")=21 + Set gtmtypes("rc_rsp_page",22,"name")="rc_rsp_page.hdr.a.pid2" + Set gtmtypes("rc_rsp_page",22,"off")=8 + Set gtmtypes("rc_rsp_page",22,"len")=2 + Set gtmtypes("rc_rsp_page",22,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2")=22 + Set gtmtypes("rc_rsp_page",23,"name")="rc_rsp_page.hdr.a.pid2.octet" + Set gtmtypes("rc_rsp_page",23,"off")=8 + Set gtmtypes("rc_rsp_page",23,"len")=2 + Set gtmtypes("rc_rsp_page",23,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_rsp_page",24,"name")="rc_rsp_page.hdr.a.pid2.value" + Set gtmtypes("rc_rsp_page",24,"off")=8 + Set gtmtypes("rc_rsp_page",24,"len")=2 + Set gtmtypes("rc_rsp_page",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2.value")=24 + Set gtmtypes("rc_rsp_page",25,"name")="rc_rsp_page.hdr.a.xdsid" + Set gtmtypes("rc_rsp_page",25,"off")=10 + Set gtmtypes("rc_rsp_page",25,"len")=4 + Set gtmtypes("rc_rsp_page",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid")=25 + Set gtmtypes("rc_rsp_page",26,"name")="rc_rsp_page.hdr.a.xdsid.dsid" + Set gtmtypes("rc_rsp_page",26,"off")=10 + Set gtmtypes("rc_rsp_page",26,"len")=2 + Set gtmtypes("rc_rsp_page",26,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_rsp_page",27,"name")="rc_rsp_page.hdr.a.xdsid.node" + Set gtmtypes("rc_rsp_page",27,"off")=12 + Set gtmtypes("rc_rsp_page",27,"len")=2 + Set gtmtypes("rc_rsp_page",27,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_rsp_page",28,"name")="rc_rsp_page.pageaddr" + Set gtmtypes("rc_rsp_page",28,"off")=14 + Set gtmtypes("rc_rsp_page",28,"len")=4 + Set gtmtypes("rc_rsp_page",28,"type")="char" + Set gtmtypfldindx("rc_rsp_page","pageaddr")=28 + Set gtmtypes("rc_rsp_page",29,"name")="rc_rsp_page.frag_offset" + Set gtmtypes("rc_rsp_page",29,"off")=18 + Set gtmtypes("rc_rsp_page",29,"len")=2 + Set gtmtypes("rc_rsp_page",29,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","frag_offset")=29 + Set gtmtypes("rc_rsp_page",30,"name")="rc_rsp_page.frag_offset.octet" + Set gtmtypes("rc_rsp_page",30,"off")=18 + Set gtmtypes("rc_rsp_page",30,"len")=2 + Set gtmtypes("rc_rsp_page",30,"type")="char" + Set gtmtypfldindx("rc_rsp_page","frag_offset.octet")=30 + Set gtmtypes("rc_rsp_page",31,"name")="rc_rsp_page.frag_offset.value" + Set gtmtypes("rc_rsp_page",31,"off")=18 + Set gtmtypes("rc_rsp_page",31,"len")=2 + Set gtmtypes("rc_rsp_page",31,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","frag_offset.value")=31 + Set gtmtypes("rc_rsp_page",32,"name")="rc_rsp_page.size_return" + Set gtmtypes("rc_rsp_page",32,"off")=20 + Set gtmtypes("rc_rsp_page",32,"len")=2 + Set gtmtypes("rc_rsp_page",32,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","size_return")=32 + Set gtmtypes("rc_rsp_page",33,"name")="rc_rsp_page.size_return.octet" + Set gtmtypes("rc_rsp_page",33,"off")=20 + Set gtmtypes("rc_rsp_page",33,"len")=2 + Set gtmtypes("rc_rsp_page",33,"type")="char" + Set gtmtypfldindx("rc_rsp_page","size_return.octet")=33 + Set gtmtypes("rc_rsp_page",34,"name")="rc_rsp_page.size_return.value" + Set gtmtypes("rc_rsp_page",34,"off")=20 + Set gtmtypes("rc_rsp_page",34,"len")=2 + Set gtmtypes("rc_rsp_page",34,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","size_return.value")=34 + Set gtmtypes("rc_rsp_page",35,"name")="rc_rsp_page.size_remain" + Set gtmtypes("rc_rsp_page",35,"off")=22 + Set gtmtypes("rc_rsp_page",35,"len")=2 + Set gtmtypes("rc_rsp_page",35,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","size_remain")=35 + Set gtmtypes("rc_rsp_page",36,"name")="rc_rsp_page.size_remain.octet" + Set gtmtypes("rc_rsp_page",36,"off")=22 + Set gtmtypes("rc_rsp_page",36,"len")=2 + Set gtmtypes("rc_rsp_page",36,"type")="char" + Set gtmtypfldindx("rc_rsp_page","size_remain.octet")=36 + Set gtmtypes("rc_rsp_page",37,"name")="rc_rsp_page.size_remain.value" + Set gtmtypes("rc_rsp_page",37,"off")=22 + Set gtmtypes("rc_rsp_page",37,"len")=2 + Set gtmtypes("rc_rsp_page",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","size_remain.value")=37 + Set gtmtypes("rc_rsp_page",38,"name")="rc_rsp_page.before" + Set gtmtypes("rc_rsp_page",38,"off")=24 + Set gtmtypes("rc_rsp_page",38,"len")=2 + Set gtmtypes("rc_rsp_page",38,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","before")=38 + Set gtmtypes("rc_rsp_page",39,"name")="rc_rsp_page.before.octet" + Set gtmtypes("rc_rsp_page",39,"off")=24 + Set gtmtypes("rc_rsp_page",39,"len")=2 + Set gtmtypes("rc_rsp_page",39,"type")="char" + Set gtmtypfldindx("rc_rsp_page","before.octet")=39 + Set gtmtypes("rc_rsp_page",40,"name")="rc_rsp_page.before.value" + Set gtmtypes("rc_rsp_page",40,"off")=24 + Set gtmtypes("rc_rsp_page",40,"len")=2 + Set gtmtypes("rc_rsp_page",40,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","before.value")=40 + Set gtmtypes("rc_rsp_page",41,"name")="rc_rsp_page.after" + Set gtmtypes("rc_rsp_page",41,"off")=26 + Set gtmtypes("rc_rsp_page",41,"len")=2 + Set gtmtypes("rc_rsp_page",41,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","after")=41 + Set gtmtypes("rc_rsp_page",42,"name")="rc_rsp_page.after.octet" + Set gtmtypes("rc_rsp_page",42,"off")=26 + Set gtmtypes("rc_rsp_page",42,"len")=2 + Set gtmtypes("rc_rsp_page",42,"type")="char" + Set gtmtypfldindx("rc_rsp_page","after.octet")=42 + Set gtmtypes("rc_rsp_page",43,"name")="rc_rsp_page.after.value" + Set gtmtypes("rc_rsp_page",43,"off")=26 + Set gtmtypes("rc_rsp_page",43,"len")=2 + Set gtmtypes("rc_rsp_page",43,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","after.value")=43 + Set gtmtypes("rc_rsp_page",44,"name")="rc_rsp_page.xcc" + Set gtmtypes("rc_rsp_page",44,"off")=28 + Set gtmtypes("rc_rsp_page",44,"len")=2 + Set gtmtypes("rc_rsp_page",44,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","xcc")=44 + Set gtmtypes("rc_rsp_page",45,"name")="rc_rsp_page.xcc.octet" + Set gtmtypes("rc_rsp_page",45,"off")=28 + Set gtmtypes("rc_rsp_page",45,"len")=2 + Set gtmtypes("rc_rsp_page",45,"type")="char" + Set gtmtypfldindx("rc_rsp_page","xcc.octet")=45 + Set gtmtypes("rc_rsp_page",46,"name")="rc_rsp_page.xcc.value" + Set gtmtypes("rc_rsp_page",46,"off")=28 + Set gtmtypes("rc_rsp_page",46,"len")=2 + Set gtmtypes("rc_rsp_page",46,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","xcc.value")=46 + Set gtmtypes("rc_rsp_page",47,"name")="rc_rsp_page.rstatus" + Set gtmtypes("rc_rsp_page",47,"off")=30 + Set gtmtypes("rc_rsp_page",47,"len")=1 + Set gtmtypes("rc_rsp_page",47,"type")="rc_byte" + Set gtmtypfldindx("rc_rsp_page","rstatus")=47 + Set gtmtypes("rc_rsp_page",48,"name")="rc_rsp_page.rstatus.octet" + Set gtmtypes("rc_rsp_page",48,"off")=30 + Set gtmtypes("rc_rsp_page",48,"len")=1 + Set gtmtypes("rc_rsp_page",48,"type")="char" + Set gtmtypfldindx("rc_rsp_page","rstatus.octet")=48 + Set gtmtypes("rc_rsp_page",49,"name")="rc_rsp_page.rstatus.value" + Set gtmtypes("rc_rsp_page",49,"off")=30 + Set gtmtypes("rc_rsp_page",49,"len")=1 + Set gtmtypes("rc_rsp_page",49,"type")="unsigned-char" + Set gtmtypfldindx("rc_rsp_page","rstatus.value")=49 + Set gtmtypes("rc_rsp_page",50,"name")="rc_rsp_page.zcode" + Set gtmtypes("rc_rsp_page",50,"off")=31 + Set gtmtypes("rc_rsp_page",50,"len")=1 + Set gtmtypes("rc_rsp_page",50,"type")="rc_byte" + Set gtmtypfldindx("rc_rsp_page","zcode")=50 + Set gtmtypes("rc_rsp_page",51,"name")="rc_rsp_page.zcode.octet" + Set gtmtypes("rc_rsp_page",51,"off")=31 + Set gtmtypes("rc_rsp_page",51,"len")=1 + Set gtmtypes("rc_rsp_page",51,"type")="char" + Set gtmtypfldindx("rc_rsp_page","zcode.octet")=51 + Set gtmtypes("rc_rsp_page",52,"name")="rc_rsp_page.zcode.value" + Set gtmtypes("rc_rsp_page",52,"off")=31 + Set gtmtypes("rc_rsp_page",52,"len")=1 + Set gtmtypes("rc_rsp_page",52,"type")="unsigned-char" + Set gtmtypfldindx("rc_rsp_page","zcode.value")=52 + Set gtmtypes("rc_rsp_page",53,"name")="rc_rsp_page.page" + Set gtmtypes("rc_rsp_page",53,"off")=32 + Set gtmtypes("rc_rsp_page",53,"len")=1 + Set gtmtypes("rc_rsp_page",53,"type")="char" + Set gtmtypfldindx("rc_rsp_page","page")=53 + ; + Set gtmtypes("rc_sbkey")="struct" + Set gtmtypes("rc_sbkey",0)=4 + Set gtmtypes("rc_sbkey","len")=2 + Set gtmtypes("rc_sbkey",1,"name")="rc_sbkey.len" + Set gtmtypes("rc_sbkey",1,"off")=0 + Set gtmtypes("rc_sbkey",1,"len")=1 + Set gtmtypes("rc_sbkey",1,"type")="rc_byte" + Set gtmtypfldindx("rc_sbkey","len")=1 + Set gtmtypes("rc_sbkey",2,"name")="rc_sbkey.len.octet" + Set gtmtypes("rc_sbkey",2,"off")=0 + Set gtmtypes("rc_sbkey",2,"len")=1 + Set gtmtypes("rc_sbkey",2,"type")="char" + Set gtmtypfldindx("rc_sbkey","len.octet")=2 + Set gtmtypes("rc_sbkey",3,"name")="rc_sbkey.len.value" + Set gtmtypes("rc_sbkey",3,"off")=0 + Set gtmtypes("rc_sbkey",3,"len")=1 + Set gtmtypes("rc_sbkey",3,"type")="unsigned-char" + Set gtmtypfldindx("rc_sbkey","len.value")=3 + Set gtmtypes("rc_sbkey",4,"name")="rc_sbkey.key" + Set gtmtypes("rc_sbkey",4,"off")=1 + Set gtmtypes("rc_sbkey",4,"len")=1 + Set gtmtypes("rc_sbkey",4,"type")="char" + Set gtmtypfldindx("rc_sbkey","key")=4 + ; + Set gtmtypes("rc_set")="struct" + Set gtmtypes("rc_set",0)=34 + Set gtmtypes("rc_set","len")=20 + Set gtmtypes("rc_set",1,"name")="rc_set.hdr" + Set gtmtypes("rc_set",1,"off")=0 + Set gtmtypes("rc_set",1,"len")=14 + Set gtmtypes("rc_set",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_set","hdr")=1 + Set gtmtypes("rc_set",2,"name")="rc_set.hdr.r" + Set gtmtypes("rc_set",2,"off")=0 + Set gtmtypes("rc_set",2,"len")=14 + Set gtmtypes("rc_set",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_set","hdr.r")=2 + Set gtmtypes("rc_set",3,"name")="rc_set.hdr.r.len" + Set gtmtypes("rc_set",3,"off")=0 + Set gtmtypes("rc_set",3,"len")=2 + Set gtmtypes("rc_set",3,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.len")=3 + Set gtmtypes("rc_set",4,"name")="rc_set.hdr.r.typ" + Set gtmtypes("rc_set",4,"off")=2 + Set gtmtypes("rc_set",4,"len")=2 + Set gtmtypes("rc_set",4,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.typ")=4 + Set gtmtypes("rc_set",5,"name")="rc_set.hdr.r.fmd" + Set gtmtypes("rc_set",5,"off")=4 + Set gtmtypes("rc_set",5,"len")=2 + Set gtmtypes("rc_set",5,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.fmd")=5 + Set gtmtypes("rc_set",6,"name")="rc_set.hdr.r.pid1" + Set gtmtypes("rc_set",6,"off")=6 + Set gtmtypes("rc_set",6,"len")=2 + Set gtmtypes("rc_set",6,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.pid1")=6 + Set gtmtypes("rc_set",7,"name")="rc_set.hdr.r.pid2" + Set gtmtypes("rc_set",7,"off")=8 + Set gtmtypes("rc_set",7,"len")=2 + Set gtmtypes("rc_set",7,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.pid2")=7 + Set gtmtypes("rc_set",8,"name")="rc_set.hdr.r.xdsid" + Set gtmtypes("rc_set",8,"off")=10 + Set gtmtypes("rc_set",8,"len")=4 + Set gtmtypes("rc_set",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_set","hdr.r.xdsid")=8 + Set gtmtypes("rc_set",9,"name")="rc_set.hdr.a" + Set gtmtypes("rc_set",9,"off")=0 + Set gtmtypes("rc_set",9,"len")=14 + Set gtmtypes("rc_set",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_set","hdr.a")=9 + Set gtmtypes("rc_set",10,"name")="rc_set.hdr.a.len" + Set gtmtypes("rc_set",10,"off")=0 + Set gtmtypes("rc_set",10,"len")=2 + Set gtmtypes("rc_set",10,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.len")=10 + Set gtmtypes("rc_set",11,"name")="rc_set.hdr.a.len.octet" + Set gtmtypes("rc_set",11,"off")=0 + Set gtmtypes("rc_set",11,"len")=2 + Set gtmtypes("rc_set",11,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.len.octet")=11 + Set gtmtypes("rc_set",12,"name")="rc_set.hdr.a.len.value" + Set gtmtypes("rc_set",12,"off")=0 + Set gtmtypes("rc_set",12,"len")=2 + Set gtmtypes("rc_set",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.len.value")=12 + Set gtmtypes("rc_set",13,"name")="rc_set.hdr.a.typ" + Set gtmtypes("rc_set",13,"off")=2 + Set gtmtypes("rc_set",13,"len")=2 + Set gtmtypes("rc_set",13,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.typ")=13 + Set gtmtypes("rc_set",14,"name")="rc_set.hdr.a.typ.octet" + Set gtmtypes("rc_set",14,"off")=2 + Set gtmtypes("rc_set",14,"len")=2 + Set gtmtypes("rc_set",14,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.typ.octet")=14 + Set gtmtypes("rc_set",15,"name")="rc_set.hdr.a.typ.value" + Set gtmtypes("rc_set",15,"off")=2 + Set gtmtypes("rc_set",15,"len")=2 + Set gtmtypes("rc_set",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.typ.value")=15 + Set gtmtypes("rc_set",16,"name")="rc_set.hdr.a.erc" + Set gtmtypes("rc_set",16,"off")=4 + Set gtmtypes("rc_set",16,"len")=2 + Set gtmtypes("rc_set",16,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.erc")=16 + Set gtmtypes("rc_set",17,"name")="rc_set.hdr.a.erc.octet" + Set gtmtypes("rc_set",17,"off")=4 + Set gtmtypes("rc_set",17,"len")=2 + Set gtmtypes("rc_set",17,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.erc.octet")=17 + Set gtmtypes("rc_set",18,"name")="rc_set.hdr.a.erc.value" + Set gtmtypes("rc_set",18,"off")=4 + Set gtmtypes("rc_set",18,"len")=2 + Set gtmtypes("rc_set",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.erc.value")=18 + Set gtmtypes("rc_set",19,"name")="rc_set.hdr.a.pid1" + Set gtmtypes("rc_set",19,"off")=6 + Set gtmtypes("rc_set",19,"len")=2 + Set gtmtypes("rc_set",19,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.pid1")=19 + Set gtmtypes("rc_set",20,"name")="rc_set.hdr.a.pid1.octet" + Set gtmtypes("rc_set",20,"off")=6 + Set gtmtypes("rc_set",20,"len")=2 + Set gtmtypes("rc_set",20,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_set",21,"name")="rc_set.hdr.a.pid1.value" + Set gtmtypes("rc_set",21,"off")=6 + Set gtmtypes("rc_set",21,"len")=2 + Set gtmtypes("rc_set",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.pid1.value")=21 + Set gtmtypes("rc_set",22,"name")="rc_set.hdr.a.pid2" + Set gtmtypes("rc_set",22,"off")=8 + Set gtmtypes("rc_set",22,"len")=2 + Set gtmtypes("rc_set",22,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.pid2")=22 + Set gtmtypes("rc_set",23,"name")="rc_set.hdr.a.pid2.octet" + Set gtmtypes("rc_set",23,"off")=8 + Set gtmtypes("rc_set",23,"len")=2 + Set gtmtypes("rc_set",23,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_set",24,"name")="rc_set.hdr.a.pid2.value" + Set gtmtypes("rc_set",24,"off")=8 + Set gtmtypes("rc_set",24,"len")=2 + Set gtmtypes("rc_set",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.pid2.value")=24 + Set gtmtypes("rc_set",25,"name")="rc_set.hdr.a.xdsid" + Set gtmtypes("rc_set",25,"off")=10 + Set gtmtypes("rc_set",25,"len")=4 + Set gtmtypes("rc_set",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_set","hdr.a.xdsid")=25 + Set gtmtypes("rc_set",26,"name")="rc_set.hdr.a.xdsid.dsid" + Set gtmtypes("rc_set",26,"off")=10 + Set gtmtypes("rc_set",26,"len")=2 + Set gtmtypes("rc_set",26,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_set",27,"name")="rc_set.hdr.a.xdsid.node" + Set gtmtypes("rc_set",27,"off")=12 + Set gtmtypes("rc_set",27,"len")=2 + Set gtmtypes("rc_set",27,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_set",28,"name")="rc_set.xnsid" + Set gtmtypes("rc_set",28,"off")=14 + Set gtmtypes("rc_set",28,"len")=4 + Set gtmtypes("rc_set",28,"type")="rc_xnsid" + Set gtmtypfldindx("rc_set","xnsid")=28 + Set gtmtypes("rc_set",29,"name")="rc_set.xnsid.value" + Set gtmtypes("rc_set",29,"off")=14 + Set gtmtypes("rc_set",29,"len")=4 + Set gtmtypes("rc_set",29,"type")="char" + Set gtmtypfldindx("rc_set","xnsid.value")=29 + Set gtmtypes("rc_set",30,"name")="rc_set.key" + Set gtmtypes("rc_set",30,"off")=18 + Set gtmtypes("rc_set",30,"len")=2 + Set gtmtypes("rc_set",30,"type")="rc_sbkey" + Set gtmtypfldindx("rc_set","key")=30 + Set gtmtypes("rc_set",31,"name")="rc_set.key.len" + Set gtmtypes("rc_set",31,"off")=18 + Set gtmtypes("rc_set",31,"len")=1 + Set gtmtypes("rc_set",31,"type")="rc_byte" + Set gtmtypfldindx("rc_set","key.len")=31 + Set gtmtypes("rc_set",32,"name")="rc_set.key.len.octet" + Set gtmtypes("rc_set",32,"off")=18 + Set gtmtypes("rc_set",32,"len")=1 + Set gtmtypes("rc_set",32,"type")="char" + Set gtmtypfldindx("rc_set","key.len.octet")=32 + Set gtmtypes("rc_set",33,"name")="rc_set.key.len.value" + Set gtmtypes("rc_set",33,"off")=18 + Set gtmtypes("rc_set",33,"len")=1 + Set gtmtypes("rc_set",33,"type")="unsigned-char" + Set gtmtypfldindx("rc_set","key.len.value")=33 + Set gtmtypes("rc_set",34,"name")="rc_set.key.key" + Set gtmtypes("rc_set",34,"off")=19 + Set gtmtypes("rc_set",34,"len")=1 + Set gtmtypes("rc_set",34,"type")="char" + Set gtmtypfldindx("rc_set","key.key")=34 + ; + Set gtmtypes("rc_swstr")="struct" + Set gtmtypes("rc_swstr",0)=4 + Set gtmtypes("rc_swstr","len")=4 + Set gtmtypes("rc_swstr",1,"name")="rc_swstr.len" + Set gtmtypes("rc_swstr",1,"off")=0 + Set gtmtypes("rc_swstr",1,"len")=2 + Set gtmtypes("rc_swstr",1,"type")="rc_word" + Set gtmtypfldindx("rc_swstr","len")=1 + Set gtmtypes("rc_swstr",2,"name")="rc_swstr.len.octet" + Set gtmtypes("rc_swstr",2,"off")=0 + Set gtmtypes("rc_swstr",2,"len")=2 + Set gtmtypes("rc_swstr",2,"type")="char" + Set gtmtypfldindx("rc_swstr","len.octet")=2 + Set gtmtypes("rc_swstr",3,"name")="rc_swstr.len.value" + Set gtmtypes("rc_swstr",3,"off")=0 + Set gtmtypes("rc_swstr",3,"len")=2 + Set gtmtypes("rc_swstr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_swstr","len.value")=3 + Set gtmtypes("rc_swstr",4,"name")="rc_swstr.str" + Set gtmtypes("rc_swstr",4,"off")=2 + Set gtmtypes("rc_swstr",4,"len")=1 + Set gtmtypes("rc_swstr",4,"type")="char" + Set gtmtypfldindx("rc_swstr","str")=4 + ; + Set gtmtypes("rc_word")="union" + Set gtmtypes("rc_word",0)=2 + Set gtmtypes("rc_word","len")=2 + Set gtmtypes("rc_word",1,"name")="rc_word.octet" + Set gtmtypes("rc_word",1,"off")=0 + Set gtmtypes("rc_word",1,"len")=2 + Set gtmtypes("rc_word",1,"type")="char" + Set gtmtypfldindx("rc_word","octet")=1 + Set gtmtypes("rc_word",2,"name")="rc_word.value" + Set gtmtypes("rc_word",2,"off")=0 + Set gtmtypes("rc_word",2,"len")=2 + Set gtmtypes("rc_word",2,"type")="unsigned-short" + Set gtmtypfldindx("rc_word","value")=2 + ; + Set gtmtypes("rc_xblk_hdr")="struct" + Set gtmtypes("rc_xblk_hdr",0)=45 + Set gtmtypes("rc_xblk_hdr","len")=64 + Set gtmtypes("rc_xblk_hdr",1,"name")="rc_xblk_hdr.end" + Set gtmtypes("rc_xblk_hdr",1,"off")=0 + Set gtmtypes("rc_xblk_hdr",1,"len")=2 + Set gtmtypes("rc_xblk_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","end")=1 + Set gtmtypes("rc_xblk_hdr",2,"name")="rc_xblk_hdr.end.octet" + Set gtmtypes("rc_xblk_hdr",2,"off")=0 + Set gtmtypes("rc_xblk_hdr",2,"len")=2 + Set gtmtypes("rc_xblk_hdr",2,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","end.octet")=2 + Set gtmtypes("rc_xblk_hdr",3,"name")="rc_xblk_hdr.end.value" + Set gtmtypes("rc_xblk_hdr",3,"off")=0 + Set gtmtypes("rc_xblk_hdr",3,"len")=2 + Set gtmtypes("rc_xblk_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","end.value")=3 + Set gtmtypes("rc_xblk_hdr",4,"name")="rc_xblk_hdr.gtm_free" + Set gtmtypes("rc_xblk_hdr",4,"off")=2 + Set gtmtypes("rc_xblk_hdr",4,"len")=2 + Set gtmtypes("rc_xblk_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free")=4 + Set gtmtypes("rc_xblk_hdr",5,"name")="rc_xblk_hdr.gtm_free.octet" + Set gtmtypes("rc_xblk_hdr",5,"off")=2 + Set gtmtypes("rc_xblk_hdr",5,"len")=2 + Set gtmtypes("rc_xblk_hdr",5,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free.octet")=5 + Set gtmtypes("rc_xblk_hdr",6,"name")="rc_xblk_hdr.gtm_free.value" + Set gtmtypes("rc_xblk_hdr",6,"off")=2 + Set gtmtypes("rc_xblk_hdr",6,"len")=2 + Set gtmtypes("rc_xblk_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free.value")=6 + Set gtmtypes("rc_xblk_hdr",7,"name")="rc_xblk_hdr.method" + Set gtmtypes("rc_xblk_hdr",7,"off")=4 + Set gtmtypes("rc_xblk_hdr",7,"len")=1 + Set gtmtypes("rc_xblk_hdr",7,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","method")=7 + Set gtmtypes("rc_xblk_hdr",8,"name")="rc_xblk_hdr.method.octet" + Set gtmtypes("rc_xblk_hdr",8,"off")=4 + Set gtmtypes("rc_xblk_hdr",8,"len")=1 + Set gtmtypes("rc_xblk_hdr",8,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","method.octet")=8 + Set gtmtypes("rc_xblk_hdr",9,"name")="rc_xblk_hdr.method.value" + Set gtmtypes("rc_xblk_hdr",9,"off")=4 + Set gtmtypes("rc_xblk_hdr",9,"len")=1 + Set gtmtypes("rc_xblk_hdr",9,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","method.value")=9 + Set gtmtypes("rc_xblk_hdr",10,"name")="rc_xblk_hdr.alert" + Set gtmtypes("rc_xblk_hdr",10,"off")=5 + Set gtmtypes("rc_xblk_hdr",10,"len")=1 + Set gtmtypes("rc_xblk_hdr",10,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","alert")=10 + Set gtmtypes("rc_xblk_hdr",11,"name")="rc_xblk_hdr.alert.octet" + Set gtmtypes("rc_xblk_hdr",11,"off")=5 + Set gtmtypes("rc_xblk_hdr",11,"len")=1 + Set gtmtypes("rc_xblk_hdr",11,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","alert.octet")=11 + Set gtmtypes("rc_xblk_hdr",12,"name")="rc_xblk_hdr.alert.value" + Set gtmtypes("rc_xblk_hdr",12,"off")=5 + Set gtmtypes("rc_xblk_hdr",12,"len")=1 + Set gtmtypes("rc_xblk_hdr",12,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","alert.value")=12 + Set gtmtypes("rc_xblk_hdr",13,"name")="rc_xblk_hdr.sync" + Set gtmtypes("rc_xblk_hdr",13,"off")=6 + Set gtmtypes("rc_xblk_hdr",13,"len")=2 + Set gtmtypes("rc_xblk_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","sync")=13 + Set gtmtypes("rc_xblk_hdr",14,"name")="rc_xblk_hdr.sync.octet" + Set gtmtypes("rc_xblk_hdr",14,"off")=6 + Set gtmtypes("rc_xblk_hdr",14,"len")=2 + Set gtmtypes("rc_xblk_hdr",14,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","sync.octet")=14 + Set gtmtypes("rc_xblk_hdr",15,"name")="rc_xblk_hdr.sync.value" + Set gtmtypes("rc_xblk_hdr",15,"off")=6 + Set gtmtypes("rc_xblk_hdr",15,"len")=2 + Set gtmtypes("rc_xblk_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","sync.value")=15 + Set gtmtypes("rc_xblk_hdr",16,"name")="rc_xblk_hdr.cpt_tab" + Set gtmtypes("rc_xblk_hdr",16,"off")=8 + Set gtmtypes("rc_xblk_hdr",16,"len")=2 + Set gtmtypes("rc_xblk_hdr",16,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab")=16 + Set gtmtypes("rc_xblk_hdr",17,"name")="rc_xblk_hdr.cpt_tab.octet" + Set gtmtypes("rc_xblk_hdr",17,"off")=8 + Set gtmtypes("rc_xblk_hdr",17,"len")=2 + Set gtmtypes("rc_xblk_hdr",17,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab.octet")=17 + Set gtmtypes("rc_xblk_hdr",18,"name")="rc_xblk_hdr.cpt_tab.value" + Set gtmtypes("rc_xblk_hdr",18,"off")=8 + Set gtmtypes("rc_xblk_hdr",18,"len")=2 + Set gtmtypes("rc_xblk_hdr",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab.value")=18 + Set gtmtypes("rc_xblk_hdr",19,"name")="rc_xblk_hdr.cpt_siz" + Set gtmtypes("rc_xblk_hdr",19,"off")=10 + Set gtmtypes("rc_xblk_hdr",19,"len")=2 + Set gtmtypes("rc_xblk_hdr",19,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz")=19 + Set gtmtypes("rc_xblk_hdr",20,"name")="rc_xblk_hdr.cpt_siz.octet" + Set gtmtypes("rc_xblk_hdr",20,"off")=10 + Set gtmtypes("rc_xblk_hdr",20,"len")=2 + Set gtmtypes("rc_xblk_hdr",20,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz.octet")=20 + Set gtmtypes("rc_xblk_hdr",21,"name")="rc_xblk_hdr.cpt_siz.value" + Set gtmtypes("rc_xblk_hdr",21,"off")=10 + Set gtmtypes("rc_xblk_hdr",21,"len")=2 + Set gtmtypes("rc_xblk_hdr",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz.value")=21 + Set gtmtypes("rc_xblk_hdr",22,"name")="rc_xblk_hdr.aq_res" + Set gtmtypes("rc_xblk_hdr",22,"off")=12 + Set gtmtypes("rc_xblk_hdr",22,"len")=2 + Set gtmtypes("rc_xblk_hdr",22,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","aq_res")=22 + Set gtmtypes("rc_xblk_hdr",23,"name")="rc_xblk_hdr.aq_res.octet" + Set gtmtypes("rc_xblk_hdr",23,"off")=12 + Set gtmtypes("rc_xblk_hdr",23,"len")=2 + Set gtmtypes("rc_xblk_hdr",23,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","aq_res.octet")=23 + Set gtmtypes("rc_xblk_hdr",24,"name")="rc_xblk_hdr.aq_res.value" + Set gtmtypes("rc_xblk_hdr",24,"off")=12 + Set gtmtypes("rc_xblk_hdr",24,"len")=2 + Set gtmtypes("rc_xblk_hdr",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","aq_res.value")=24 + Set gtmtypes("rc_xblk_hdr",25,"name")="rc_xblk_hdr.resp_max" + Set gtmtypes("rc_xblk_hdr",25,"off")=14 + Set gtmtypes("rc_xblk_hdr",25,"len")=2 + Set gtmtypes("rc_xblk_hdr",25,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","resp_max")=25 + Set gtmtypes("rc_xblk_hdr",26,"name")="rc_xblk_hdr.resp_max.octet" + Set gtmtypes("rc_xblk_hdr",26,"off")=14 + Set gtmtypes("rc_xblk_hdr",26,"len")=2 + Set gtmtypes("rc_xblk_hdr",26,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","resp_max.octet")=26 + Set gtmtypes("rc_xblk_hdr",27,"name")="rc_xblk_hdr.resp_max.value" + Set gtmtypes("rc_xblk_hdr",27,"off")=14 + Set gtmtypes("rc_xblk_hdr",27,"len")=2 + Set gtmtypes("rc_xblk_hdr",27,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","resp_max.value")=27 + Set gtmtypes("rc_xblk_hdr",28,"name")="rc_xblk_hdr.client" + Set gtmtypes("rc_xblk_hdr",28,"off")=16 + Set gtmtypes("rc_xblk_hdr",28,"len")=4 + Set gtmtypes("rc_xblk_hdr",28,"type")="rc_lword" + Set gtmtypfldindx("rc_xblk_hdr","client")=28 + Set gtmtypes("rc_xblk_hdr",29,"name")="rc_xblk_hdr.client.octet" + Set gtmtypes("rc_xblk_hdr",29,"off")=16 + Set gtmtypes("rc_xblk_hdr",29,"len")=4 + Set gtmtypes("rc_xblk_hdr",29,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","client.octet")=29 + Set gtmtypes("rc_xblk_hdr",30,"name")="rc_xblk_hdr.client.value" + Set gtmtypes("rc_xblk_hdr",30,"off")=16 + Set gtmtypes("rc_xblk_hdr",30,"len")=4 + Set gtmtypes("rc_xblk_hdr",30,"type")="unsigned-int" + Set gtmtypfldindx("rc_xblk_hdr","client.value")=30 + Set gtmtypes("rc_xblk_hdr",31,"name")="rc_xblk_hdr.alive" + Set gtmtypes("rc_xblk_hdr",31,"off")=20 + Set gtmtypes("rc_xblk_hdr",31,"len")=1 + Set gtmtypes("rc_xblk_hdr",31,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","alive")=31 + Set gtmtypes("rc_xblk_hdr",32,"name")="rc_xblk_hdr.alive.octet" + Set gtmtypes("rc_xblk_hdr",32,"off")=20 + Set gtmtypes("rc_xblk_hdr",32,"len")=1 + Set gtmtypes("rc_xblk_hdr",32,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","alive.octet")=32 + Set gtmtypes("rc_xblk_hdr",33,"name")="rc_xblk_hdr.alive.value" + Set gtmtypes("rc_xblk_hdr",33,"off")=20 + Set gtmtypes("rc_xblk_hdr",33,"len")=1 + Set gtmtypes("rc_xblk_hdr",33,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","alive.value")=33 + Set gtmtypes("rc_xblk_hdr",34,"name")="rc_xblk_hdr.filler0" + Set gtmtypes("rc_xblk_hdr",34,"off")=21 + Set gtmtypes("rc_xblk_hdr",34,"len")=1 + Set gtmtypes("rc_xblk_hdr",34,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","filler0")=34 + Set gtmtypes("rc_xblk_hdr",35,"name")="rc_xblk_hdr.err_aq" + Set gtmtypes("rc_xblk_hdr",35,"off")=22 + Set gtmtypes("rc_xblk_hdr",35,"len")=2 + Set gtmtypes("rc_xblk_hdr",35,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","err_aq")=35 + Set gtmtypes("rc_xblk_hdr",36,"name")="rc_xblk_hdr.err_aq.octet" + Set gtmtypes("rc_xblk_hdr",36,"off")=22 + Set gtmtypes("rc_xblk_hdr",36,"len")=2 + Set gtmtypes("rc_xblk_hdr",36,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","err_aq.octet")=36 + Set gtmtypes("rc_xblk_hdr",37,"name")="rc_xblk_hdr.err_aq.value" + Set gtmtypes("rc_xblk_hdr",37,"off")=22 + Set gtmtypes("rc_xblk_hdr",37,"len")=2 + Set gtmtypes("rc_xblk_hdr",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","err_aq.value")=37 + Set gtmtypes("rc_xblk_hdr",38,"name")="rc_xblk_hdr.last_aq" + Set gtmtypes("rc_xblk_hdr",38,"off")=24 + Set gtmtypes("rc_xblk_hdr",38,"len")=2 + Set gtmtypes("rc_xblk_hdr",38,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","last_aq")=38 + Set gtmtypes("rc_xblk_hdr",39,"name")="rc_xblk_hdr.last_aq.octet" + Set gtmtypes("rc_xblk_hdr",39,"off")=24 + Set gtmtypes("rc_xblk_hdr",39,"len")=2 + Set gtmtypes("rc_xblk_hdr",39,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","last_aq.octet")=39 + Set gtmtypes("rc_xblk_hdr",40,"name")="rc_xblk_hdr.last_aq.value" + Set gtmtypes("rc_xblk_hdr",40,"off")=24 + Set gtmtypes("rc_xblk_hdr",40,"len")=2 + Set gtmtypes("rc_xblk_hdr",40,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","last_aq.value")=40 + Set gtmtypes("rc_xblk_hdr",41,"name")="rc_xblk_hdr.big_endian" + Set gtmtypes("rc_xblk_hdr",41,"off")=26 + Set gtmtypes("rc_xblk_hdr",41,"len")=1 + Set gtmtypes("rc_xblk_hdr",41,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","big_endian")=41 + Set gtmtypes("rc_xblk_hdr",42,"name")="rc_xblk_hdr.big_endian.octet" + Set gtmtypes("rc_xblk_hdr",42,"off")=26 + Set gtmtypes("rc_xblk_hdr",42,"len")=1 + Set gtmtypes("rc_xblk_hdr",42,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","big_endian.octet")=42 + Set gtmtypes("rc_xblk_hdr",43,"name")="rc_xblk_hdr.big_endian.value" + Set gtmtypes("rc_xblk_hdr",43,"off")=26 + Set gtmtypes("rc_xblk_hdr",43,"len")=1 + Set gtmtypes("rc_xblk_hdr",43,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","big_endian.value")=43 + Set gtmtypes("rc_xblk_hdr",44,"name")="rc_xblk_hdr.filler1" + Set gtmtypes("rc_xblk_hdr",44,"off")=27 + Set gtmtypes("rc_xblk_hdr",44,"len")=5 + Set gtmtypes("rc_xblk_hdr",44,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","filler1")=44 + Set gtmtypes("rc_xblk_hdr",45,"name")="rc_xblk_hdr.asm1" + Set gtmtypes("rc_xblk_hdr",45,"off")=32 + Set gtmtypes("rc_xblk_hdr",45,"len")=32 + Set gtmtypes("rc_xblk_hdr",45,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","asm1")=45 + ; + Set gtmtypes("rc_xdsid")="struct" + Set gtmtypes("rc_xdsid",0)=6 + Set gtmtypes("rc_xdsid","len")=4 + Set gtmtypes("rc_xdsid",1,"name")="rc_xdsid.dsid" + Set gtmtypes("rc_xdsid",1,"off")=0 + Set gtmtypes("rc_xdsid",1,"len")=2 + Set gtmtypes("rc_xdsid",1,"type")="rc_word" + Set gtmtypfldindx("rc_xdsid","dsid")=1 + Set gtmtypes("rc_xdsid",2,"name")="rc_xdsid.dsid.octet" + Set gtmtypes("rc_xdsid",2,"off")=0 + Set gtmtypes("rc_xdsid",2,"len")=2 + Set gtmtypes("rc_xdsid",2,"type")="char" + Set gtmtypfldindx("rc_xdsid","dsid.octet")=2 + Set gtmtypes("rc_xdsid",3,"name")="rc_xdsid.dsid.value" + Set gtmtypes("rc_xdsid",3,"off")=0 + Set gtmtypes("rc_xdsid",3,"len")=2 + Set gtmtypes("rc_xdsid",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_xdsid","dsid.value")=3 + Set gtmtypes("rc_xdsid",4,"name")="rc_xdsid.node" + Set gtmtypes("rc_xdsid",4,"off")=2 + Set gtmtypes("rc_xdsid",4,"len")=2 + Set gtmtypes("rc_xdsid",4,"type")="rc_word" + Set gtmtypfldindx("rc_xdsid","node")=4 + Set gtmtypes("rc_xdsid",5,"name")="rc_xdsid.node.octet" + Set gtmtypes("rc_xdsid",5,"off")=2 + Set gtmtypes("rc_xdsid",5,"len")=2 + Set gtmtypes("rc_xdsid",5,"type")="char" + Set gtmtypfldindx("rc_xdsid","node.octet")=5 + Set gtmtypes("rc_xdsid",6,"name")="rc_xdsid.node.value" + Set gtmtypes("rc_xdsid",6,"off")=2 + Set gtmtypes("rc_xdsid",6,"len")=2 + Set gtmtypes("rc_xdsid",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_xdsid","node.value")=6 + ; + Set gtmtypes("rc_xnsid")="struct" + Set gtmtypes("rc_xnsid",0)=1 + Set gtmtypes("rc_xnsid","len")=4 + Set gtmtypes("rc_xnsid",1,"name")="rc_xnsid.value" + Set gtmtypes("rc_xnsid",1,"off")=0 + Set gtmtypes("rc_xnsid",1,"len")=4 + Set gtmtypes("rc_xnsid",1,"type")="char" + Set gtmtypfldindx("rc_xnsid","value")=1 + ; + Set gtmtypes("rec_hdr")="struct" + Set gtmtypes("rec_hdr",0)=3 + Set gtmtypes("rec_hdr","len")=4 + Set gtmtypes("rec_hdr",1,"name")="rec_hdr.rsiz" + Set gtmtypes("rec_hdr",1,"off")=0 + Set gtmtypes("rec_hdr",1,"len")=2 + Set gtmtypes("rec_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("rec_hdr","rsiz")=1 + Set gtmtypes("rec_hdr",2,"name")="rec_hdr.cmpc" + Set gtmtypes("rec_hdr",2,"off")=2 + Set gtmtypes("rec_hdr",2,"len")=1 + Set gtmtypes("rec_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("rec_hdr","cmpc")=2 + Set gtmtypes("rec_hdr",3,"name")="rec_hdr.cmpc2" + Set gtmtypes("rec_hdr",3,"off")=3 + Set gtmtypes("rec_hdr",3,"len")=1 + Set gtmtypes("rec_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("rec_hdr","cmpc2")=3 + ; + Set gtmtypes("recvpool_addrs")="struct" + Set gtmtypes("recvpool_addrs",0)=6 + Set gtmtypes("recvpool_addrs","len")=24 + Set gtmtypes("recvpool_addrs",1,"name")="recvpool_addrs.recvpool_ctl" + Set gtmtypes("recvpool_addrs",1,"off")=0 + Set gtmtypes("recvpool_addrs",1,"len")=4 + Set gtmtypes("recvpool_addrs",1,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvpool_ctl")=1 + Set gtmtypes("recvpool_addrs",2,"name")="recvpool_addrs.upd_proc_local" + Set gtmtypes("recvpool_addrs",2,"off")=4 + Set gtmtypes("recvpool_addrs",2,"len")=4 + Set gtmtypes("recvpool_addrs",2,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","upd_proc_local")=2 + Set gtmtypes("recvpool_addrs",3,"name")="recvpool_addrs.gtmrecv_local" + Set gtmtypes("recvpool_addrs",3,"off")=8 + Set gtmtypes("recvpool_addrs",3,"len")=4 + Set gtmtypes("recvpool_addrs",3,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","gtmrecv_local")=3 + Set gtmtypes("recvpool_addrs",4,"name")="recvpool_addrs.upd_helper_ctl" + Set gtmtypes("recvpool_addrs",4,"off")=12 + Set gtmtypes("recvpool_addrs",4,"len")=4 + Set gtmtypes("recvpool_addrs",4,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","upd_helper_ctl")=4 + Set gtmtypes("recvpool_addrs",5,"name")="recvpool_addrs.recvdata_base" + Set gtmtypes("recvpool_addrs",5,"off")=16 + Set gtmtypes("recvpool_addrs",5,"len")=4 + Set gtmtypes("recvpool_addrs",5,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvdata_base")=5 + Set gtmtypes("recvpool_addrs",6,"name")="recvpool_addrs.recvpool_dummy_reg" + Set gtmtypes("recvpool_addrs",6,"off")=20 + Set gtmtypes("recvpool_addrs",6,"len")=4 + Set gtmtypes("recvpool_addrs",6,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvpool_dummy_reg")=6 + ; + Set gtmtypes("recvpool_ctl_struct")="struct" + Set gtmtypes("recvpool_ctl_struct",0)=87 + Set gtmtypes("recvpool_ctl_struct","len")=5988 + Set gtmtypes("recvpool_ctl_struct",1,"name")="recvpool_ctl_struct.recvpool_id" + Set gtmtypes("recvpool_ctl_struct",1,"off")=0 + Set gtmtypes("recvpool_ctl_struct",1,"len")=312 + Set gtmtypes("recvpool_ctl_struct",1,"type")="replpool_identifier" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id")=1 + Set gtmtypes("recvpool_ctl_struct",2,"name")="recvpool_ctl_struct.recvpool_id.label" + Set gtmtypes("recvpool_ctl_struct",2,"off")=0 + Set gtmtypes("recvpool_ctl_struct",2,"len")=12 + Set gtmtypes("recvpool_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.label")=2 + Set gtmtypes("recvpool_ctl_struct",3,"name")="recvpool_ctl_struct.recvpool_id.pool_type" + Set gtmtypes("recvpool_ctl_struct",3,"off")=12 + Set gtmtypes("recvpool_ctl_struct",3,"len")=1 + Set gtmtypes("recvpool_ctl_struct",3,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.pool_type")=3 + Set gtmtypes("recvpool_ctl_struct",4,"name")="recvpool_ctl_struct.recvpool_id.now_running" + Set gtmtypes("recvpool_ctl_struct",4,"off")=13 + Set gtmtypes("recvpool_ctl_struct",4,"len")=36 + Set gtmtypes("recvpool_ctl_struct",4,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.now_running")=4 + Set gtmtypes("recvpool_ctl_struct",5,"name")="recvpool_ctl_struct.recvpool_id.repl_pool_key_filler" + Set gtmtypes("recvpool_ctl_struct",5,"off")=52 + Set gtmtypes("recvpool_ctl_struct",5,"len")=4 + Set gtmtypes("recvpool_ctl_struct",5,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.repl_pool_key_filler")=5 + Set gtmtypes("recvpool_ctl_struct",6,"name")="recvpool_ctl_struct.recvpool_id.instfilename" + Set gtmtypes("recvpool_ctl_struct",6,"off")=56 + Set gtmtypes("recvpool_ctl_struct",6,"len")=256 + Set gtmtypes("recvpool_ctl_struct",6,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.instfilename")=6 + Set gtmtypes("recvpool_ctl_struct",7,"name")="recvpool_ctl_struct.jnl_seqno" + Set gtmtypes("recvpool_ctl_struct",7,"off")=312 + Set gtmtypes("recvpool_ctl_struct",7,"len")=8 + Set gtmtypes("recvpool_ctl_struct",7,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","jnl_seqno")=7 + Set gtmtypes("recvpool_ctl_struct",8,"name")="recvpool_ctl_struct.old_jnl_seqno" + Set gtmtypes("recvpool_ctl_struct",8,"off")=320 + Set gtmtypes("recvpool_ctl_struct",8,"len")=8 + Set gtmtypes("recvpool_ctl_struct",8,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","old_jnl_seqno")=8 + Set gtmtypes("recvpool_ctl_struct",9,"name")="recvpool_ctl_struct.this_side" + Set gtmtypes("recvpool_ctl_struct",9,"off")=328 + Set gtmtypes("recvpool_ctl_struct",9,"len")=48 + Set gtmtypes("recvpool_ctl_struct",9,"type")="repl_conn_info_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side")=9 + Set gtmtypes("recvpool_ctl_struct",10,"name")="recvpool_ctl_struct.this_side.proto_ver" + Set gtmtypes("recvpool_ctl_struct",10,"off")=328 + Set gtmtypes("recvpool_ctl_struct",10,"len")=4 + Set gtmtypes("recvpool_ctl_struct",10,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.proto_ver")=10 + Set gtmtypes("recvpool_ctl_struct",11,"name")="recvpool_ctl_struct.this_side.jnl_ver" + Set gtmtypes("recvpool_ctl_struct",11,"off")=332 + Set gtmtypes("recvpool_ctl_struct",11,"len")=4 + Set gtmtypes("recvpool_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.jnl_ver")=11 + Set gtmtypes("recvpool_ctl_struct",12,"name")="recvpool_ctl_struct.this_side.is_std_null_coll" + Set gtmtypes("recvpool_ctl_struct",12,"off")=336 + Set gtmtypes("recvpool_ctl_struct",12,"len")=4 + Set gtmtypes("recvpool_ctl_struct",12,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.is_std_null_coll")=12 + Set gtmtypes("recvpool_ctl_struct",13,"name")="recvpool_ctl_struct.this_side.trigger_supported" + Set gtmtypes("recvpool_ctl_struct",13,"off")=340 + Set gtmtypes("recvpool_ctl_struct",13,"len")=4 + Set gtmtypes("recvpool_ctl_struct",13,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.trigger_supported")=13 + Set gtmtypes("recvpool_ctl_struct",14,"name")="recvpool_ctl_struct.this_side.cross_endian" + Set gtmtypes("recvpool_ctl_struct",14,"off")=344 + Set gtmtypes("recvpool_ctl_struct",14,"len")=4 + Set gtmtypes("recvpool_ctl_struct",14,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.cross_endian")=14 + Set gtmtypes("recvpool_ctl_struct",15,"name")="recvpool_ctl_struct.this_side.endianness_known" + Set gtmtypes("recvpool_ctl_struct",15,"off")=348 + Set gtmtypes("recvpool_ctl_struct",15,"len")=4 + Set gtmtypes("recvpool_ctl_struct",15,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.endianness_known")=15 + Set gtmtypes("recvpool_ctl_struct",16,"name")="recvpool_ctl_struct.this_side.null_subs_xform" + Set gtmtypes("recvpool_ctl_struct",16,"off")=352 + Set gtmtypes("recvpool_ctl_struct",16,"len")=4 + Set gtmtypes("recvpool_ctl_struct",16,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.null_subs_xform")=16 + Set gtmtypes("recvpool_ctl_struct",17,"name")="recvpool_ctl_struct.this_side.is_supplementary" + Set gtmtypes("recvpool_ctl_struct",17,"off")=356 + Set gtmtypes("recvpool_ctl_struct",17,"len")=4 + Set gtmtypes("recvpool_ctl_struct",17,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.is_supplementary")=17 + Set gtmtypes("recvpool_ctl_struct",18,"name")="recvpool_ctl_struct.this_side.tls_requested" + Set gtmtypes("recvpool_ctl_struct",18,"off")=360 + Set gtmtypes("recvpool_ctl_struct",18,"len")=4 + Set gtmtypes("recvpool_ctl_struct",18,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.tls_requested")=18 + Set gtmtypes("recvpool_ctl_struct",19,"name")="recvpool_ctl_struct.this_side.filler_16" + Set gtmtypes("recvpool_ctl_struct",19,"off")=364 + Set gtmtypes("recvpool_ctl_struct",19,"len")=12 + Set gtmtypes("recvpool_ctl_struct",19,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.filler_16")=19 + Set gtmtypes("recvpool_ctl_struct",20,"name")="recvpool_ctl_struct.recvdata_base_off" + Set gtmtypes("recvpool_ctl_struct",20,"off")=376 + Set gtmtypes("recvpool_ctl_struct",20,"len")=4 + Set gtmtypes("recvpool_ctl_struct",20,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","recvdata_base_off")=20 + Set gtmtypes("recvpool_ctl_struct",21,"name")="recvpool_ctl_struct.recvpool_size" + Set gtmtypes("recvpool_ctl_struct",21,"off")=380 + Set gtmtypes("recvpool_ctl_struct",21,"len")=4 + Set gtmtypes("recvpool_ctl_struct",21,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_size")=21 + Set gtmtypes("recvpool_ctl_struct",22,"name")="recvpool_ctl_struct.write" + Set gtmtypes("recvpool_ctl_struct",22,"off")=384 + Set gtmtypes("recvpool_ctl_struct",22,"len")=4 + Set gtmtypes("recvpool_ctl_struct",22,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","write")=22 + Set gtmtypes("recvpool_ctl_struct",23,"name")="recvpool_ctl_struct.write_wrap" + Set gtmtypes("recvpool_ctl_struct",23,"off")=388 + Set gtmtypes("recvpool_ctl_struct",23,"len")=4 + Set gtmtypes("recvpool_ctl_struct",23,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","write_wrap")=23 + Set gtmtypes("recvpool_ctl_struct",24,"name")="recvpool_ctl_struct.wrapped" + Set gtmtypes("recvpool_ctl_struct",24,"off")=392 + Set gtmtypes("recvpool_ctl_struct",24,"len")=4 + Set gtmtypes("recvpool_ctl_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","wrapped")=24 + Set gtmtypes("recvpool_ctl_struct",25,"name")="recvpool_ctl_struct.initialized" + Set gtmtypes("recvpool_ctl_struct",25,"off")=396 + Set gtmtypes("recvpool_ctl_struct",25,"len")=4 + Set gtmtypes("recvpool_ctl_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","initialized")=25 + Set gtmtypes("recvpool_ctl_struct",26,"name")="recvpool_ctl_struct.fresh_start" + Set gtmtypes("recvpool_ctl_struct",26,"off")=400 + Set gtmtypes("recvpool_ctl_struct",26,"len")=4 + Set gtmtypes("recvpool_ctl_struct",26,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","fresh_start")=26 + Set gtmtypes("recvpool_ctl_struct",27,"name")="recvpool_ctl_struct.last_rcvd_histinfo" + Set gtmtypes("recvpool_ctl_struct",27,"off")=404 + Set gtmtypes("recvpool_ctl_struct",27,"len")=160 + Set gtmtypes("recvpool_ctl_struct",27,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo")=27 + Set gtmtypes("recvpool_ctl_struct",28,"name")="recvpool_ctl_struct.last_rcvd_histinfo.root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",28,"off")=404 + Set gtmtypes("recvpool_ctl_struct",28,"len")=16 + Set gtmtypes("recvpool_ctl_struct",28,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.root_primary_instname")=28 + Set gtmtypes("recvpool_ctl_struct",29,"name")="recvpool_ctl_struct.last_rcvd_histinfo.start_seqno" + Set gtmtypes("recvpool_ctl_struct",29,"off")=420 + Set gtmtypes("recvpool_ctl_struct",29,"len")=8 + Set gtmtypes("recvpool_ctl_struct",29,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.start_seqno")=29 + Set gtmtypes("recvpool_ctl_struct",30,"name")="recvpool_ctl_struct.last_rcvd_histinfo.strm_seqno" + Set gtmtypes("recvpool_ctl_struct",30,"off")=428 + Set gtmtypes("recvpool_ctl_struct",30,"len")=8 + Set gtmtypes("recvpool_ctl_struct",30,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.strm_seqno")=30 + Set gtmtypes("recvpool_ctl_struct",31,"name")="recvpool_ctl_struct.last_rcvd_histinfo.root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",31,"off")=436 + Set gtmtypes("recvpool_ctl_struct",31,"len")=4 + Set gtmtypes("recvpool_ctl_struct",31,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.root_primary_cycle")=31 + Set gtmtypes("recvpool_ctl_struct",32,"name")="recvpool_ctl_struct.last_rcvd_histinfo.creator_pid" + Set gtmtypes("recvpool_ctl_struct",32,"off")=440 + Set gtmtypes("recvpool_ctl_struct",32,"len")=4 + Set gtmtypes("recvpool_ctl_struct",32,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.creator_pid")=32 + Set gtmtypes("recvpool_ctl_struct",33,"name")="recvpool_ctl_struct.last_rcvd_histinfo.created_time" + Set gtmtypes("recvpool_ctl_struct",33,"off")=444 + Set gtmtypes("recvpool_ctl_struct",33,"len")=4 + Set gtmtypes("recvpool_ctl_struct",33,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.created_time")=33 + Set gtmtypes("recvpool_ctl_struct",34,"name")="recvpool_ctl_struct.last_rcvd_histinfo.histinfo_num" + Set gtmtypes("recvpool_ctl_struct",34,"off")=448 + Set gtmtypes("recvpool_ctl_struct",34,"len")=4 + Set gtmtypes("recvpool_ctl_struct",34,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.histinfo_num")=34 + Set gtmtypes("recvpool_ctl_struct",35,"name")="recvpool_ctl_struct.last_rcvd_histinfo.prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",35,"off")=452 + Set gtmtypes("recvpool_ctl_struct",35,"len")=4 + Set gtmtypes("recvpool_ctl_struct",35,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.prev_histinfo_num")=35 + Set gtmtypes("recvpool_ctl_struct",36,"name")="recvpool_ctl_struct.last_rcvd_histinfo.strm_index" + Set gtmtypes("recvpool_ctl_struct",36,"off")=456 + Set gtmtypes("recvpool_ctl_struct",36,"len")=1 + Set gtmtypes("recvpool_ctl_struct",36,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.strm_index")=36 + Set gtmtypes("recvpool_ctl_struct",37,"name")="recvpool_ctl_struct.last_rcvd_histinfo.history_type" + Set gtmtypes("recvpool_ctl_struct",37,"off")=457 + Set gtmtypes("recvpool_ctl_struct",37,"len")=1 + Set gtmtypes("recvpool_ctl_struct",37,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.history_type")=37 + Set gtmtypes("recvpool_ctl_struct",38,"name")="recvpool_ctl_struct.last_rcvd_histinfo.filler_8" + Set gtmtypes("recvpool_ctl_struct",38,"off")=458 + Set gtmtypes("recvpool_ctl_struct",38,"len")=2 + Set gtmtypes("recvpool_ctl_struct",38,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.filler_8")=38 + Set gtmtypes("recvpool_ctl_struct",39,"name")="recvpool_ctl_struct.last_rcvd_histinfo.lms_group" + Set gtmtypes("recvpool_ctl_struct",39,"off")=460 + Set gtmtypes("recvpool_ctl_struct",39,"len")=40 + Set gtmtypes("recvpool_ctl_struct",39,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.lms_group")=39 + Set gtmtypes("recvpool_ctl_struct",40,"name")="recvpool_ctl_struct.last_rcvd_histinfo.last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",40,"off")=500 + Set gtmtypes("recvpool_ctl_struct",40,"len")=64 + Set gtmtypes("recvpool_ctl_struct",40,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.last_histinfo_num")=40 + Set gtmtypes("recvpool_ctl_struct",40,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",41,"name")="recvpool_ctl_struct.last_valid_histinfo" + Set gtmtypes("recvpool_ctl_struct",41,"off")=564 + Set gtmtypes("recvpool_ctl_struct",41,"len")=160 + Set gtmtypes("recvpool_ctl_struct",41,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo")=41 + Set gtmtypes("recvpool_ctl_struct",42,"name")="recvpool_ctl_struct.last_valid_histinfo.root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",42,"off")=564 + Set gtmtypes("recvpool_ctl_struct",42,"len")=16 + Set gtmtypes("recvpool_ctl_struct",42,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.root_primary_instname")=42 + Set gtmtypes("recvpool_ctl_struct",43,"name")="recvpool_ctl_struct.last_valid_histinfo.start_seqno" + Set gtmtypes("recvpool_ctl_struct",43,"off")=580 + Set gtmtypes("recvpool_ctl_struct",43,"len")=8 + Set gtmtypes("recvpool_ctl_struct",43,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.start_seqno")=43 + Set gtmtypes("recvpool_ctl_struct",44,"name")="recvpool_ctl_struct.last_valid_histinfo.strm_seqno" + Set gtmtypes("recvpool_ctl_struct",44,"off")=588 + Set gtmtypes("recvpool_ctl_struct",44,"len")=8 + Set gtmtypes("recvpool_ctl_struct",44,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.strm_seqno")=44 + Set gtmtypes("recvpool_ctl_struct",45,"name")="recvpool_ctl_struct.last_valid_histinfo.root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",45,"off")=596 + Set gtmtypes("recvpool_ctl_struct",45,"len")=4 + Set gtmtypes("recvpool_ctl_struct",45,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.root_primary_cycle")=45 + Set gtmtypes("recvpool_ctl_struct",46,"name")="recvpool_ctl_struct.last_valid_histinfo.creator_pid" + Set gtmtypes("recvpool_ctl_struct",46,"off")=600 + Set gtmtypes("recvpool_ctl_struct",46,"len")=4 + Set gtmtypes("recvpool_ctl_struct",46,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.creator_pid")=46 + Set gtmtypes("recvpool_ctl_struct",47,"name")="recvpool_ctl_struct.last_valid_histinfo.created_time" + Set gtmtypes("recvpool_ctl_struct",47,"off")=604 + Set gtmtypes("recvpool_ctl_struct",47,"len")=4 + Set gtmtypes("recvpool_ctl_struct",47,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.created_time")=47 + Set gtmtypes("recvpool_ctl_struct",48,"name")="recvpool_ctl_struct.last_valid_histinfo.histinfo_num" + Set gtmtypes("recvpool_ctl_struct",48,"off")=608 + Set gtmtypes("recvpool_ctl_struct",48,"len")=4 + Set gtmtypes("recvpool_ctl_struct",48,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.histinfo_num")=48 + Set gtmtypes("recvpool_ctl_struct",49,"name")="recvpool_ctl_struct.last_valid_histinfo.prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",49,"off")=612 + Set gtmtypes("recvpool_ctl_struct",49,"len")=4 + Set gtmtypes("recvpool_ctl_struct",49,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.prev_histinfo_num")=49 + Set gtmtypes("recvpool_ctl_struct",50,"name")="recvpool_ctl_struct.last_valid_histinfo.strm_index" + Set gtmtypes("recvpool_ctl_struct",50,"off")=616 + Set gtmtypes("recvpool_ctl_struct",50,"len")=1 + Set gtmtypes("recvpool_ctl_struct",50,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.strm_index")=50 + Set gtmtypes("recvpool_ctl_struct",51,"name")="recvpool_ctl_struct.last_valid_histinfo.history_type" + Set gtmtypes("recvpool_ctl_struct",51,"off")=617 + Set gtmtypes("recvpool_ctl_struct",51,"len")=1 + Set gtmtypes("recvpool_ctl_struct",51,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.history_type")=51 + Set gtmtypes("recvpool_ctl_struct",52,"name")="recvpool_ctl_struct.last_valid_histinfo.filler_8" + Set gtmtypes("recvpool_ctl_struct",52,"off")=618 + Set gtmtypes("recvpool_ctl_struct",52,"len")=2 + Set gtmtypes("recvpool_ctl_struct",52,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.filler_8")=52 + Set gtmtypes("recvpool_ctl_struct",53,"name")="recvpool_ctl_struct.last_valid_histinfo.lms_group" + Set gtmtypes("recvpool_ctl_struct",53,"off")=620 + Set gtmtypes("recvpool_ctl_struct",53,"len")=40 + Set gtmtypes("recvpool_ctl_struct",53,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.lms_group")=53 + Set gtmtypes("recvpool_ctl_struct",54,"name")="recvpool_ctl_struct.last_valid_histinfo.last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",54,"off")=660 + Set gtmtypes("recvpool_ctl_struct",54,"len")=64 + Set gtmtypes("recvpool_ctl_struct",54,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.last_histinfo_num")=54 + Set gtmtypes("recvpool_ctl_struct",54,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",55,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",55,"off")=724 + Set gtmtypes("recvpool_ctl_struct",55,"len")=2560 + Set gtmtypes("recvpool_ctl_struct",55,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo")=55 + Set gtmtypes("recvpool_ctl_struct",55,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",56,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",56,"off")=724 + Set gtmtypes("recvpool_ctl_struct",56,"len")=16 + Set gtmtypes("recvpool_ctl_struct",56,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].root_primary_instname")=56 + Set gtmtypes("recvpool_ctl_struct",57,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].start_seqno" + Set gtmtypes("recvpool_ctl_struct",57,"off")=740 + Set gtmtypes("recvpool_ctl_struct",57,"len")=8 + Set gtmtypes("recvpool_ctl_struct",57,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].start_seqno")=57 + Set gtmtypes("recvpool_ctl_struct",58,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].strm_seqno" + Set gtmtypes("recvpool_ctl_struct",58,"off")=748 + Set gtmtypes("recvpool_ctl_struct",58,"len")=8 + Set gtmtypes("recvpool_ctl_struct",58,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].strm_seqno")=58 + Set gtmtypes("recvpool_ctl_struct",59,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",59,"off")=756 + Set gtmtypes("recvpool_ctl_struct",59,"len")=4 + Set gtmtypes("recvpool_ctl_struct",59,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].root_primary_cycle")=59 + Set gtmtypes("recvpool_ctl_struct",60,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].creator_pid" + Set gtmtypes("recvpool_ctl_struct",60,"off")=760 + Set gtmtypes("recvpool_ctl_struct",60,"len")=4 + Set gtmtypes("recvpool_ctl_struct",60,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].creator_pid")=60 + Set gtmtypes("recvpool_ctl_struct",61,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].created_time" + Set gtmtypes("recvpool_ctl_struct",61,"off")=764 + Set gtmtypes("recvpool_ctl_struct",61,"len")=4 + Set gtmtypes("recvpool_ctl_struct",61,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].created_time")=61 + Set gtmtypes("recvpool_ctl_struct",62,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].histinfo_num" + Set gtmtypes("recvpool_ctl_struct",62,"off")=768 + Set gtmtypes("recvpool_ctl_struct",62,"len")=4 + Set gtmtypes("recvpool_ctl_struct",62,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].histinfo_num")=62 + Set gtmtypes("recvpool_ctl_struct",63,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",63,"off")=772 + Set gtmtypes("recvpool_ctl_struct",63,"len")=4 + Set gtmtypes("recvpool_ctl_struct",63,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].prev_histinfo_num")=63 + Set gtmtypes("recvpool_ctl_struct",64,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].strm_index" + Set gtmtypes("recvpool_ctl_struct",64,"off")=776 + Set gtmtypes("recvpool_ctl_struct",64,"len")=1 + Set gtmtypes("recvpool_ctl_struct",64,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].strm_index")=64 + Set gtmtypes("recvpool_ctl_struct",65,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].history_type" + Set gtmtypes("recvpool_ctl_struct",65,"off")=777 + Set gtmtypes("recvpool_ctl_struct",65,"len")=1 + Set gtmtypes("recvpool_ctl_struct",65,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].history_type")=65 + Set gtmtypes("recvpool_ctl_struct",66,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].filler_8" + Set gtmtypes("recvpool_ctl_struct",66,"off")=778 + Set gtmtypes("recvpool_ctl_struct",66,"len")=2 + Set gtmtypes("recvpool_ctl_struct",66,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].filler_8")=66 + Set gtmtypes("recvpool_ctl_struct",67,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].lms_group" + Set gtmtypes("recvpool_ctl_struct",67,"off")=780 + Set gtmtypes("recvpool_ctl_struct",67,"len")=40 + Set gtmtypes("recvpool_ctl_struct",67,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].lms_group")=67 + Set gtmtypes("recvpool_ctl_struct",68,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",68,"off")=820 + Set gtmtypes("recvpool_ctl_struct",68,"len")=64 + Set gtmtypes("recvpool_ctl_struct",68,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].last_histinfo_num")=68 + Set gtmtypes("recvpool_ctl_struct",68,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",69,"name")="recvpool_ctl_struct.last_valid_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",69,"off")=3284 + Set gtmtypes("recvpool_ctl_struct",69,"len")=2560 + Set gtmtypes("recvpool_ctl_struct",69,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo")=69 + Set gtmtypes("recvpool_ctl_struct",69,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",70,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",70,"off")=3284 + Set gtmtypes("recvpool_ctl_struct",70,"len")=16 + Set gtmtypes("recvpool_ctl_struct",70,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].root_primary_instname")=70 + Set gtmtypes("recvpool_ctl_struct",71,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].start_seqno" + Set gtmtypes("recvpool_ctl_struct",71,"off")=3300 + Set gtmtypes("recvpool_ctl_struct",71,"len")=8 + Set gtmtypes("recvpool_ctl_struct",71,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].start_seqno")=71 + Set gtmtypes("recvpool_ctl_struct",72,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].strm_seqno" + Set gtmtypes("recvpool_ctl_struct",72,"off")=3308 + Set gtmtypes("recvpool_ctl_struct",72,"len")=8 + Set gtmtypes("recvpool_ctl_struct",72,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].strm_seqno")=72 + Set gtmtypes("recvpool_ctl_struct",73,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",73,"off")=3316 + Set gtmtypes("recvpool_ctl_struct",73,"len")=4 + Set gtmtypes("recvpool_ctl_struct",73,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].root_primary_cycle")=73 + Set gtmtypes("recvpool_ctl_struct",74,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].creator_pid" + Set gtmtypes("recvpool_ctl_struct",74,"off")=3320 + Set gtmtypes("recvpool_ctl_struct",74,"len")=4 + Set gtmtypes("recvpool_ctl_struct",74,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].creator_pid")=74 + Set gtmtypes("recvpool_ctl_struct",75,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].created_time" + Set gtmtypes("recvpool_ctl_struct",75,"off")=3324 + Set gtmtypes("recvpool_ctl_struct",75,"len")=4 + Set gtmtypes("recvpool_ctl_struct",75,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].created_time")=75 + Set gtmtypes("recvpool_ctl_struct",76,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].histinfo_num" + Set gtmtypes("recvpool_ctl_struct",76,"off")=3328 + Set gtmtypes("recvpool_ctl_struct",76,"len")=4 + Set gtmtypes("recvpool_ctl_struct",76,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].histinfo_num")=76 + Set gtmtypes("recvpool_ctl_struct",77,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",77,"off")=3332 + Set gtmtypes("recvpool_ctl_struct",77,"len")=4 + Set gtmtypes("recvpool_ctl_struct",77,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].prev_histinfo_num")=77 + Set gtmtypes("recvpool_ctl_struct",78,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].strm_index" + Set gtmtypes("recvpool_ctl_struct",78,"off")=3336 + Set gtmtypes("recvpool_ctl_struct",78,"len")=1 + Set gtmtypes("recvpool_ctl_struct",78,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].strm_index")=78 + Set gtmtypes("recvpool_ctl_struct",79,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].history_type" + Set gtmtypes("recvpool_ctl_struct",79,"off")=3337 + Set gtmtypes("recvpool_ctl_struct",79,"len")=1 + Set gtmtypes("recvpool_ctl_struct",79,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].history_type")=79 + Set gtmtypes("recvpool_ctl_struct",80,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].filler_8" + Set gtmtypes("recvpool_ctl_struct",80,"off")=3338 + Set gtmtypes("recvpool_ctl_struct",80,"len")=2 + Set gtmtypes("recvpool_ctl_struct",80,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].filler_8")=80 + Set gtmtypes("recvpool_ctl_struct",81,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].lms_group" + Set gtmtypes("recvpool_ctl_struct",81,"off")=3340 + Set gtmtypes("recvpool_ctl_struct",81,"len")=40 + Set gtmtypes("recvpool_ctl_struct",81,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].lms_group")=81 + Set gtmtypes("recvpool_ctl_struct",82,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",82,"off")=3380 + Set gtmtypes("recvpool_ctl_struct",82,"len")=64 + Set gtmtypes("recvpool_ctl_struct",82,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].last_histinfo_num")=82 + Set gtmtypes("recvpool_ctl_struct",82,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",83,"name")="recvpool_ctl_struct.is_valid_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",83,"off")=5844 + Set gtmtypes("recvpool_ctl_struct",83,"len")=64 + Set gtmtypes("recvpool_ctl_struct",83,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","is_valid_strm_histinfo")=83 + Set gtmtypes("recvpool_ctl_struct",83,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",84,"name")="recvpool_ctl_struct.max_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",84,"off")=5908 + Set gtmtypes("recvpool_ctl_struct",84,"len")=4 + Set gtmtypes("recvpool_ctl_struct",84,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","max_strm_histinfo")=84 + Set gtmtypes("recvpool_ctl_struct",85,"name")="recvpool_ctl_struct.insert_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",85,"off")=5912 + Set gtmtypes("recvpool_ctl_struct",85,"len")=4 + Set gtmtypes("recvpool_ctl_struct",85,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","insert_strm_histinfo")=85 + Set gtmtypes("recvpool_ctl_struct",86,"name")="recvpool_ctl_struct.write_updated_ctl" + Set gtmtypes("recvpool_ctl_struct",86,"off")=5916 + Set gtmtypes("recvpool_ctl_struct",86,"len")=24 + Set gtmtypes("recvpool_ctl_struct",86,"type")="pthread_mutex_t" + Set gtmtypfldindx("recvpool_ctl_struct","write_updated_ctl")=86 + Set gtmtypes("recvpool_ctl_struct",87,"name")="recvpool_ctl_struct.write_updated" + Set gtmtypes("recvpool_ctl_struct",87,"off")=5940 + Set gtmtypes("recvpool_ctl_struct",87,"len")=48 + Set gtmtypes("recvpool_ctl_struct",87,"type")="pthread_cond_t" + Set gtmtypfldindx("recvpool_ctl_struct","write_updated")=87 + ; + Set gtmtypes("redirect_list")="struct" + Set gtmtypes("redirect_list",0)=5 + Set gtmtypes("redirect_list","len")=20 + Set gtmtypes("redirect_list",1,"name")="redirect_list.next" + Set gtmtypes("redirect_list",1,"off")=0 + Set gtmtypes("redirect_list",1,"len")=4 + Set gtmtypes("redirect_list",1,"type")="addr" + Set gtmtypfldindx("redirect_list","next")=1 + Set gtmtypes("redirect_list",2,"name")="redirect_list.org_name_len" + Set gtmtypes("redirect_list",2,"off")=4 + Set gtmtypes("redirect_list",2,"len")=4 + Set gtmtypes("redirect_list",2,"type")="unsigned-int" + Set gtmtypfldindx("redirect_list","org_name_len")=2 + Set gtmtypes("redirect_list",3,"name")="redirect_list.new_name_len" + Set gtmtypes("redirect_list",3,"off")=8 + Set gtmtypes("redirect_list",3,"len")=4 + Set gtmtypes("redirect_list",3,"type")="unsigned-int" + Set gtmtypfldindx("redirect_list","new_name_len")=3 + Set gtmtypes("redirect_list",4,"name")="redirect_list.org_name" + Set gtmtypes("redirect_list",4,"off")=12 + Set gtmtypes("redirect_list",4,"len")=4 + Set gtmtypes("redirect_list",4,"type")="addr" + Set gtmtypfldindx("redirect_list","org_name")=4 + Set gtmtypes("redirect_list",5,"name")="redirect_list.new_name" + Set gtmtypes("redirect_list",5,"off")=16 + Set gtmtypes("redirect_list",5,"len")=4 + Set gtmtypes("redirect_list",5,"type")="addr" + Set gtmtypfldindx("redirect_list","new_name")=5 + ; + Set gtmtypes("redo_root_search_context")="struct" + Set gtmtypes("redo_root_search_context",0)=16 + Set gtmtypes("redo_root_search_context","len")=1144 + Set gtmtypes("redo_root_search_context",1,"name")="redo_root_search_context.t_fail_hist" + Set gtmtypes("redo_root_search_context",1,"off")=0 + Set gtmtypes("redo_root_search_context",1,"len")=5 + Set gtmtypes("redo_root_search_context",1,"type")="unsigned-char" + Set gtmtypfldindx("redo_root_search_context","t_fail_hist")=1 + Set gtmtypes("redo_root_search_context",2,"name")="redo_root_search_context.t_tries" + Set gtmtypes("redo_root_search_context",2,"off")=8 + Set gtmtypes("redo_root_search_context",2,"len")=4 + Set gtmtypes("redo_root_search_context",2,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","t_tries")=2 + Set gtmtypes("redo_root_search_context",3,"name")="redo_root_search_context.prev_t_tries" + Set gtmtypes("redo_root_search_context",3,"off")=12 + Set gtmtypes("redo_root_search_context",3,"len")=4 + Set gtmtypes("redo_root_search_context",3,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","prev_t_tries")=3 + Set gtmtypes("redo_root_search_context",4,"name")="redo_root_search_context.inctn_opcode" + Set gtmtypes("redo_root_search_context",4,"off")=16 + Set gtmtypes("redo_root_search_context",4,"len")=4 + Set gtmtypes("redo_root_search_context",4,"type")="int" + Set gtmtypfldindx("redo_root_search_context","inctn_opcode")=4 + Set gtmtypes("redo_root_search_context",5,"name")="redo_root_search_context.start_tn" + Set gtmtypes("redo_root_search_context",5,"off")=20 + Set gtmtypes("redo_root_search_context",5,"len")=8 + Set gtmtypes("redo_root_search_context",5,"type")="uint64_t" + Set gtmtypfldindx("redo_root_search_context","start_tn")=5 + Set gtmtypes("redo_root_search_context",6,"name")="redo_root_search_context.update_trans" + Set gtmtypes("redo_root_search_context",6,"off")=28 + Set gtmtypes("redo_root_search_context",6,"len")=4 + Set gtmtypes("redo_root_search_context",6,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","update_trans")=6 + Set gtmtypes("redo_root_search_context",7,"name")="redo_root_search_context.t_err" + Set gtmtypes("redo_root_search_context",7,"off")=32 + Set gtmtypes("redo_root_search_context",7,"len")=4 + Set gtmtypes("redo_root_search_context",7,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","t_err")=7 + Set gtmtypes("redo_root_search_context",8,"name")="redo_root_search_context.hold_onto_crit" + Set gtmtypes("redo_root_search_context",8,"off")=36 + Set gtmtypes("redo_root_search_context",8,"len")=4 + Set gtmtypes("redo_root_search_context",8,"type")="boolean_t" + Set gtmtypfldindx("redo_root_search_context","hold_onto_crit")=8 + Set gtmtypes("redo_root_search_context",9,"name")="redo_root_search_context.currkey" + Set gtmtypes("redo_root_search_context",9,"off")=40 + Set gtmtypes("redo_root_search_context",9,"len")=1064 + Set gtmtypes("redo_root_search_context",9,"type")="gv_key" + Set gtmtypfldindx("redo_root_search_context","currkey")=9 + Set gtmtypes("redo_root_search_context",9,"dim")=133 + Set gtmtypes("redo_root_search_context",10,"name")="redo_root_search_context.currkey[0].top" + Set gtmtypes("redo_root_search_context",10,"off")=40 + Set gtmtypes("redo_root_search_context",10,"len")=2 + Set gtmtypes("redo_root_search_context",10,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].top")=10 + Set gtmtypes("redo_root_search_context",11,"name")="redo_root_search_context.currkey[0].end" + Set gtmtypes("redo_root_search_context",11,"off")=42 + Set gtmtypes("redo_root_search_context",11,"len")=2 + Set gtmtypes("redo_root_search_context",11,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].end")=11 + Set gtmtypes("redo_root_search_context",12,"name")="redo_root_search_context.currkey[0].prev" + Set gtmtypes("redo_root_search_context",12,"off")=44 + Set gtmtypes("redo_root_search_context",12,"len")=2 + Set gtmtypes("redo_root_search_context",12,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].prev")=12 + Set gtmtypes("redo_root_search_context",13,"name")="redo_root_search_context.currkey[0].base" + Set gtmtypes("redo_root_search_context",13,"off")=46 + Set gtmtypes("redo_root_search_context",13,"len")=1 + Set gtmtypes("redo_root_search_context",13,"type")="unsigned-char" + Set gtmtypfldindx("redo_root_search_context","currkey[0].base")=13 + Set gtmtypes("redo_root_search_context",14,"name")="redo_root_search_context.gv_currkey" + Set gtmtypes("redo_root_search_context",14,"off")=1104 + Set gtmtypes("redo_root_search_context",14,"len")=4 + Set gtmtypes("redo_root_search_context",14,"type")="addr" + Set gtmtypfldindx("redo_root_search_context","gv_currkey")=14 + Set gtmtypes("redo_root_search_context",15,"name")="redo_root_search_context.t_fail_hist_dbg" + Set gtmtypes("redo_root_search_context",15,"off")=1108 + Set gtmtypes("redo_root_search_context",15,"len")=32 + Set gtmtypes("redo_root_search_context",15,"type")="unsigned-char" + Set gtmtypfldindx("redo_root_search_context","t_fail_hist_dbg")=15 + Set gtmtypes("redo_root_search_context",16,"name")="redo_root_search_context.t_tries_dbg" + Set gtmtypes("redo_root_search_context",16,"off")=1140 + Set gtmtypes("redo_root_search_context",16,"len")=4 + Set gtmtypes("redo_root_search_context",16,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","t_tries_dbg")=16 + ; + Set gtmtypes("reg_ctl_list")="struct" + Set gtmtypes("reg_ctl_list",0)=63 + Set gtmtypes("reg_ctl_list","len")=324 + Set gtmtypes("reg_ctl_list",1,"name")="reg_ctl_list.db_tn" + Set gtmtypes("reg_ctl_list",1,"off")=0 + Set gtmtypes("reg_ctl_list",1,"len")=8 + Set gtmtypes("reg_ctl_list",1,"type")="uint64_t" + Set gtmtypfldindx("reg_ctl_list","db_tn")=1 + Set gtmtypes("reg_ctl_list",2,"name")="reg_ctl_list.csd" + Set gtmtypes("reg_ctl_list",2,"off")=8 + Set gtmtypes("reg_ctl_list",2,"len")=4 + Set gtmtypes("reg_ctl_list",2,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","csd")=2 + Set gtmtypes("reg_ctl_list",3,"name")="reg_ctl_list.fill0" + Set gtmtypes("reg_ctl_list",3,"off")=12 + Set gtmtypes("reg_ctl_list",3,"len")=4 + Set gtmtypes("reg_ctl_list",3,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","fill0")=3 + Set gtmtypes("reg_ctl_list",4,"name")="reg_ctl_list.gd" + Set gtmtypes("reg_ctl_list",4,"off")=16 + Set gtmtypes("reg_ctl_list",4,"len")=4 + Set gtmtypes("reg_ctl_list",4,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gd")=4 + Set gtmtypes("reg_ctl_list",5,"name")="reg_ctl_list.csa" + Set gtmtypes("reg_ctl_list",5,"off")=20 + Set gtmtypes("reg_ctl_list",5,"len")=4 + Set gtmtypes("reg_ctl_list",5,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","csa")=5 + Set gtmtypes("reg_ctl_list",6,"name")="reg_ctl_list.sgm_info_ptr" + Set gtmtypes("reg_ctl_list",6,"off")=24 + Set gtmtypes("reg_ctl_list",6,"len")=4 + Set gtmtypes("reg_ctl_list",6,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","sgm_info_ptr")=6 + Set gtmtypes("reg_ctl_list",7,"name")="reg_ctl_list.db_ctl" + Set gtmtypes("reg_ctl_list",7,"off")=28 + Set gtmtypes("reg_ctl_list",7,"len")=4 + Set gtmtypes("reg_ctl_list",7,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","db_ctl")=7 + Set gtmtypes("reg_ctl_list",8,"name")="reg_ctl_list.jctl" + Set gtmtypes("reg_ctl_list",8,"off")=32 + Set gtmtypes("reg_ctl_list",8,"len")=4 + Set gtmtypes("reg_ctl_list",8,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl")=8 + Set gtmtypes("reg_ctl_list",9,"name")="reg_ctl_list.jctl_head" + Set gtmtypes("reg_ctl_list",9,"off")=36 + Set gtmtypes("reg_ctl_list",9,"len")=4 + Set gtmtypes("reg_ctl_list",9,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_head")=9 + Set gtmtypes("reg_ctl_list",10,"name")="reg_ctl_list.jctl_apply_pblk" + Set gtmtypes("reg_ctl_list",10,"off")=40 + Set gtmtypes("reg_ctl_list",10,"len")=4 + Set gtmtypes("reg_ctl_list",10,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_apply_pblk")=10 + Set gtmtypes("reg_ctl_list",11,"name")="reg_ctl_list.jctl_turn_around" + Set gtmtypes("reg_ctl_list",11,"off")=44 + Set gtmtypes("reg_ctl_list",11,"len")=4 + Set gtmtypes("reg_ctl_list",11,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_turn_around")=11 + Set gtmtypes("reg_ctl_list",12,"name")="reg_ctl_list.jctl_alt_head" + Set gtmtypes("reg_ctl_list",12,"off")=48 + Set gtmtypes("reg_ctl_list",12,"len")=4 + Set gtmtypes("reg_ctl_list",12,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_alt_head")=12 + Set gtmtypes("reg_ctl_list",13,"name")="reg_ctl_list.jctl_error" + Set gtmtypes("reg_ctl_list",13,"off")=52 + Set gtmtypes("reg_ctl_list",13,"len")=4 + Set gtmtypes("reg_ctl_list",13,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_error")=13 + Set gtmtypes("reg_ctl_list",14,"name")="reg_ctl_list.gvntab" + Set gtmtypes("reg_ctl_list",14,"off")=56 + Set gtmtypes("reg_ctl_list",14,"len")=56 + Set gtmtypes("reg_ctl_list",14,"type")="hash_table_mname" + Set gtmtypfldindx("reg_ctl_list","gvntab")=14 + Set gtmtypes("reg_ctl_list",15,"name")="reg_ctl_list.gvntab.base" + Set gtmtypes("reg_ctl_list",15,"off")=56 + Set gtmtypes("reg_ctl_list",15,"len")=4 + Set gtmtypes("reg_ctl_list",15,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.base")=15 + Set gtmtypes("reg_ctl_list",16,"name")="reg_ctl_list.gvntab.top" + Set gtmtypes("reg_ctl_list",16,"off")=60 + Set gtmtypes("reg_ctl_list",16,"len")=4 + Set gtmtypes("reg_ctl_list",16,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.top")=16 + Set gtmtypes("reg_ctl_list",17,"name")="reg_ctl_list.gvntab.size" + Set gtmtypes("reg_ctl_list",17,"off")=64 + Set gtmtypes("reg_ctl_list",17,"len")=4 + Set gtmtypes("reg_ctl_list",17,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.size")=17 + Set gtmtypes("reg_ctl_list",18,"name")="reg_ctl_list.gvntab.initial_size" + Set gtmtypes("reg_ctl_list",18,"off")=68 + Set gtmtypes("reg_ctl_list",18,"len")=4 + Set gtmtypes("reg_ctl_list",18,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.initial_size")=18 + Set gtmtypes("reg_ctl_list",19,"name")="reg_ctl_list.gvntab.spare_base" + Set gtmtypes("reg_ctl_list",19,"off")=72 + Set gtmtypes("reg_ctl_list",19,"len")=4 + Set gtmtypes("reg_ctl_list",19,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.spare_base")=19 + Set gtmtypes("reg_ctl_list",20,"name")="reg_ctl_list.gvntab.spare_base_size" + Set gtmtypes("reg_ctl_list",20,"off")=76 + Set gtmtypes("reg_ctl_list",20,"len")=4 + Set gtmtypes("reg_ctl_list",20,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.spare_base_size")=20 + Set gtmtypes("reg_ctl_list",21,"name")="reg_ctl_list.gvntab.dont_compact" + Set gtmtypes("reg_ctl_list",21,"off")=80 + Set gtmtypes("reg_ctl_list",21,"len")=4 + Set gtmtypes("reg_ctl_list",21,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.dont_compact")=21 + Set gtmtypes("reg_ctl_list",22,"name")="reg_ctl_list.gvntab.dont_keep_spare_table" + Set gtmtypes("reg_ctl_list",22,"off")=84 + Set gtmtypes("reg_ctl_list",22,"len")=4 + Set gtmtypes("reg_ctl_list",22,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.dont_keep_spare_table")=22 + Set gtmtypes("reg_ctl_list",23,"name")="reg_ctl_list.gvntab.defer_base_release" + Set gtmtypes("reg_ctl_list",23,"off")=88 + Set gtmtypes("reg_ctl_list",23,"len")=4 + Set gtmtypes("reg_ctl_list",23,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.defer_base_release")=23 + Set gtmtypes("reg_ctl_list",24,"name")="reg_ctl_list.gvntab.count" + Set gtmtypes("reg_ctl_list",24,"off")=92 + Set gtmtypes("reg_ctl_list",24,"len")=4 + Set gtmtypes("reg_ctl_list",24,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.count")=24 + Set gtmtypes("reg_ctl_list",25,"name")="reg_ctl_list.gvntab.del_count" + Set gtmtypes("reg_ctl_list",25,"off")=96 + Set gtmtypes("reg_ctl_list",25,"len")=4 + Set gtmtypes("reg_ctl_list",25,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.del_count")=25 + Set gtmtypes("reg_ctl_list",26,"name")="reg_ctl_list.gvntab.exp_trigger_size" + Set gtmtypes("reg_ctl_list",26,"off")=100 + Set gtmtypes("reg_ctl_list",26,"len")=4 + Set gtmtypes("reg_ctl_list",26,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.exp_trigger_size")=26 + Set gtmtypes("reg_ctl_list",27,"name")="reg_ctl_list.gvntab.cmp_trigger_size" + Set gtmtypes("reg_ctl_list",27,"off")=104 + Set gtmtypes("reg_ctl_list",27,"len")=4 + Set gtmtypes("reg_ctl_list",27,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.cmp_trigger_size")=27 + Set gtmtypes("reg_ctl_list",28,"name")="reg_ctl_list.gvntab.entry_passed_thru" + Set gtmtypes("reg_ctl_list",28,"off")=108 + Set gtmtypes("reg_ctl_list",28,"len")=4 + Set gtmtypes("reg_ctl_list",28,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.entry_passed_thru")=28 + Set gtmtypes("reg_ctl_list",29,"name")="reg_ctl_list.lvrec_time" + Set gtmtypes("reg_ctl_list",29,"off")=112 + Set gtmtypes("reg_ctl_list",29,"len")=4 + Set gtmtypes("reg_ctl_list",29,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","lvrec_time")=29 + Set gtmtypes("reg_ctl_list",30,"name")="reg_ctl_list.jnl_state" + Set gtmtypes("reg_ctl_list",30,"off")=116 + Set gtmtypes("reg_ctl_list",30,"len")=4 + Set gtmtypes("reg_ctl_list",30,"type")="int" + Set gtmtypfldindx("reg_ctl_list","jnl_state")=30 + Set gtmtypes("reg_ctl_list",31,"name")="reg_ctl_list.repl_state" + Set gtmtypes("reg_ctl_list",31,"off")=120 + Set gtmtypes("reg_ctl_list",31,"len")=4 + Set gtmtypes("reg_ctl_list",31,"type")="int" + Set gtmtypfldindx("reg_ctl_list","repl_state")=31 + Set gtmtypes("reg_ctl_list",32,"name")="reg_ctl_list.lookback_count" + Set gtmtypes("reg_ctl_list",32,"off")=124 + Set gtmtypes("reg_ctl_list",32,"len")=4 + Set gtmtypes("reg_ctl_list",32,"type")="int" + Set gtmtypfldindx("reg_ctl_list","lookback_count")=32 + Set gtmtypes("reg_ctl_list",33,"name")="reg_ctl_list.before_image" + Set gtmtypes("reg_ctl_list",33,"off")=128 + Set gtmtypes("reg_ctl_list",33,"len")=4 + Set gtmtypes("reg_ctl_list",33,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","before_image")=33 + Set gtmtypes("reg_ctl_list",34,"name")="reg_ctl_list.standalone" + Set gtmtypes("reg_ctl_list",34,"off")=132 + Set gtmtypes("reg_ctl_list",34,"len")=4 + Set gtmtypes("reg_ctl_list",34,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","standalone")=34 + Set gtmtypes("reg_ctl_list",35,"name")="reg_ctl_list.recov_interrupted" + Set gtmtypes("reg_ctl_list",35,"off")=136 + Set gtmtypes("reg_ctl_list",35,"len")=4 + Set gtmtypes("reg_ctl_list",35,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","recov_interrupted")=35 + Set gtmtypes("reg_ctl_list",36,"name")="reg_ctl_list.jfh_recov_interrupted" + Set gtmtypes("reg_ctl_list",36,"off")=140 + Set gtmtypes("reg_ctl_list",36,"len")=4 + Set gtmtypes("reg_ctl_list",36,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","jfh_recov_interrupted")=36 + Set gtmtypes("reg_ctl_list",37,"name")="reg_ctl_list.blks_to_upgrd_adjust" + Set gtmtypes("reg_ctl_list",37,"off")=144 + Set gtmtypes("reg_ctl_list",37,"len")=4 + Set gtmtypes("reg_ctl_list",37,"type")="int" + Set gtmtypfldindx("reg_ctl_list","blks_to_upgrd_adjust")=37 + Set gtmtypes("reg_ctl_list",38,"name")="reg_ctl_list.mur_plst" + Set gtmtypes("reg_ctl_list",38,"off")=148 + Set gtmtypes("reg_ctl_list",38,"len")=4 + Set gtmtypes("reg_ctl_list",38,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","mur_plst")=38 + Set gtmtypes("reg_ctl_list",39,"name")="reg_ctl_list.mur_desc" + Set gtmtypes("reg_ctl_list",39,"off")=152 + Set gtmtypes("reg_ctl_list",39,"len")=4 + Set gtmtypes("reg_ctl_list",39,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","mur_desc")=39 + Set gtmtypes("reg_ctl_list",40,"name")="reg_ctl_list.db_updated" + Set gtmtypes("reg_ctl_list",40,"off")=156 + Set gtmtypes("reg_ctl_list",40,"len")=4 + Set gtmtypes("reg_ctl_list",40,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","db_updated")=40 + Set gtmtypes("reg_ctl_list",41,"name")="reg_ctl_list.forw_eof_seen" + Set gtmtypes("reg_ctl_list",41,"off")=160 + Set gtmtypes("reg_ctl_list",41,"len")=4 + Set gtmtypes("reg_ctl_list",41,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","forw_eof_seen")=41 + Set gtmtypes("reg_ctl_list",42,"name")="reg_ctl_list.process_losttn" + Set gtmtypes("reg_ctl_list",42,"off")=164 + Set gtmtypes("reg_ctl_list",42,"len")=4 + Set gtmtypes("reg_ctl_list",42,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","process_losttn")=42 + Set gtmtypes("reg_ctl_list",43,"name")="reg_ctl_list.last_tn" + Set gtmtypes("reg_ctl_list",43,"off")=168 + Set gtmtypes("reg_ctl_list",43,"len")=8 + Set gtmtypes("reg_ctl_list",43,"type")="uint64_t" + Set gtmtypfldindx("reg_ctl_list","last_tn")=43 + Set gtmtypes("reg_ctl_list",44,"name")="reg_ctl_list.next_rctl" + Set gtmtypes("reg_ctl_list",44,"off")=176 + Set gtmtypes("reg_ctl_list",44,"len")=4 + Set gtmtypes("reg_ctl_list",44,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","next_rctl")=44 + Set gtmtypes("reg_ctl_list",45,"name")="reg_ctl_list.prev_rctl" + Set gtmtypes("reg_ctl_list",45,"off")=180 + Set gtmtypes("reg_ctl_list",45,"len")=4 + Set gtmtypes("reg_ctl_list",45,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","prev_rctl")=45 + Set gtmtypes("reg_ctl_list",46,"name")="reg_ctl_list.next_tp_rctl" + Set gtmtypes("reg_ctl_list",46,"off")=184 + Set gtmtypes("reg_ctl_list",46,"len")=4 + Set gtmtypes("reg_ctl_list",46,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","next_tp_rctl")=46 + Set gtmtypes("reg_ctl_list",47,"name")="reg_ctl_list.prev_tp_rctl" + Set gtmtypes("reg_ctl_list",47,"off")=188 + Set gtmtypes("reg_ctl_list",47,"len")=4 + Set gtmtypes("reg_ctl_list",47,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","prev_tp_rctl")=47 + Set gtmtypes("reg_ctl_list",48,"name")="reg_ctl_list.forw_multi" + Set gtmtypes("reg_ctl_list",48,"off")=192 + Set gtmtypes("reg_ctl_list",48,"len")=4 + Set gtmtypes("reg_ctl_list",48,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","forw_multi")=48 + Set gtmtypes("reg_ctl_list",49,"name")="reg_ctl_list.initialized" + Set gtmtypes("reg_ctl_list",49,"off")=196 + Set gtmtypes("reg_ctl_list",49,"len")=4 + Set gtmtypes("reg_ctl_list",49,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","initialized")=49 + Set gtmtypes("reg_ctl_list",50,"name")="reg_ctl_list.deleted_from_unprocessed_list" + Set gtmtypes("reg_ctl_list",50,"off")=200 + Set gtmtypes("reg_ctl_list",50,"len")=4 + Set gtmtypes("reg_ctl_list",50,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","deleted_from_unprocessed_list")=50 + Set gtmtypes("reg_ctl_list",51,"name")="reg_ctl_list.last_processed_jctl" + Set gtmtypes("reg_ctl_list",51,"off")=204 + Set gtmtypes("reg_ctl_list",51,"len")=4 + Set gtmtypes("reg_ctl_list",51,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","last_processed_jctl")=51 + Set gtmtypes("reg_ctl_list",52,"name")="reg_ctl_list.last_processed_rec_offset" + Set gtmtypes("reg_ctl_list",52,"off")=208 + Set gtmtypes("reg_ctl_list",52,"len")=4 + Set gtmtypes("reg_ctl_list",52,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","last_processed_rec_offset")=52 + Set gtmtypes("reg_ctl_list",53,"name")="reg_ctl_list.last_processed_jnl_seqno" + Set gtmtypes("reg_ctl_list",53,"off")=212 + Set gtmtypes("reg_ctl_list",53,"len")=8 + Set gtmtypes("reg_ctl_list",53,"type")="uint64_t" + Set gtmtypfldindx("reg_ctl_list","last_processed_jnl_seqno")=53 + Set gtmtypes("reg_ctl_list",54,"name")="reg_ctl_list.db_present" + Set gtmtypes("reg_ctl_list",54,"off")=220 + Set gtmtypes("reg_ctl_list",54,"len")=4 + Set gtmtypes("reg_ctl_list",54,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","db_present")=54 + Set gtmtypes("reg_ctl_list",55,"name")="reg_ctl_list.this_pid_is_owner" + Set gtmtypes("reg_ctl_list",55,"off")=224 + Set gtmtypes("reg_ctl_list",55,"len")=4 + Set gtmtypes("reg_ctl_list",55,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","this_pid_is_owner")=55 + Set gtmtypes("reg_ctl_list",56,"name")="reg_ctl_list.file_info" + Set gtmtypes("reg_ctl_list",56,"off")=228 + Set gtmtypes("reg_ctl_list",56,"len")=12 + Set gtmtypes("reg_ctl_list",56,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","file_info")=56 + Set gtmtypes("reg_ctl_list",56,"dim")=3 + Set gtmtypes("reg_ctl_list",57,"name")="reg_ctl_list.extr_file_created" + Set gtmtypes("reg_ctl_list",57,"off")=240 + Set gtmtypes("reg_ctl_list",57,"len")=12 + Set gtmtypes("reg_ctl_list",57,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","extr_file_created")=57 + Set gtmtypes("reg_ctl_list",57,"dim")=3 + Set gtmtypes("reg_ctl_list",58,"name")="reg_ctl_list.jnlext_multi_list_size" + Set gtmtypes("reg_ctl_list",58,"off")=252 + Set gtmtypes("reg_ctl_list",58,"len")=12 + Set gtmtypes("reg_ctl_list",58,"type")="int" + Set gtmtypfldindx("reg_ctl_list","jnlext_multi_list_size")=58 + Set gtmtypes("reg_ctl_list",58,"dim")=3 + Set gtmtypes("reg_ctl_list",59,"name")="reg_ctl_list.jnlext_multi_list" + Set gtmtypes("reg_ctl_list",59,"off")=264 + Set gtmtypes("reg_ctl_list",59,"len")=12 + Set gtmtypes("reg_ctl_list",59,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jnlext_multi_list")=59 + Set gtmtypes("reg_ctl_list",59,"dim")=3 + Set gtmtypes("reg_ctl_list",60,"name")="reg_ctl_list.last_jext_rec" + Set gtmtypes("reg_ctl_list",60,"off")=276 + Set gtmtypes("reg_ctl_list",60,"len")=12 + Set gtmtypes("reg_ctl_list",60,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","last_jext_rec")=60 + Set gtmtypes("reg_ctl_list",60,"dim")=3 + Set gtmtypes("reg_ctl_list",61,"name")="reg_ctl_list.jnlext_shm_list" + Set gtmtypes("reg_ctl_list",61,"off")=288 + Set gtmtypes("reg_ctl_list",61,"len")=12 + Set gtmtypes("reg_ctl_list",61,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jnlext_shm_list")=61 + Set gtmtypes("reg_ctl_list",61,"dim")=3 + Set gtmtypes("reg_ctl_list",62,"name")="reg_ctl_list.extr_fn_len_orig" + Set gtmtypes("reg_ctl_list",62,"off")=300 + Set gtmtypes("reg_ctl_list",62,"len")=12 + Set gtmtypes("reg_ctl_list",62,"type")="int" + Set gtmtypfldindx("reg_ctl_list","extr_fn_len_orig")=62 + Set gtmtypes("reg_ctl_list",62,"dim")=3 + Set gtmtypes("reg_ctl_list",63,"name")="reg_ctl_list.last_jext_logical_rec" + Set gtmtypes("reg_ctl_list",63,"off")=312 + Set gtmtypes("reg_ctl_list",63,"len")=12 + Set gtmtypes("reg_ctl_list",63,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","last_jext_logical_rec")=63 + Set gtmtypes("reg_ctl_list",63,"dim")=3 + ; + Set gtmtypes("reg_jrec_info_t")="struct" + Set gtmtypes("reg_jrec_info_t",0)=2 + Set gtmtypes("reg_jrec_info_t","len")=8 + Set gtmtypes("reg_jrec_info_t",1,"name")="reg_jrec_info_t.working_offset" + Set gtmtypes("reg_jrec_info_t",1,"off")=0 + Set gtmtypes("reg_jrec_info_t",1,"len")=4 + Set gtmtypes("reg_jrec_info_t",1,"type")="long" + Set gtmtypfldindx("reg_jrec_info_t","working_offset")=1 + Set gtmtypes("reg_jrec_info_t",2,"name")="reg_jrec_info_t.end" + Set gtmtypes("reg_jrec_info_t",2,"off")=4 + Set gtmtypes("reg_jrec_info_t",2,"len")=4 + Set gtmtypes("reg_jrec_info_t",2,"type")="long" + Set gtmtypfldindx("reg_jrec_info_t","end")=2 + ; + Set gtmtypes("relinkctl_data")="struct" + Set gtmtypes("relinkctl_data",0)=10 + Set gtmtypes("relinkctl_data","len")=292 + Set gtmtypes("relinkctl_data",1,"name")="relinkctl_data.n_records" + Set gtmtypes("relinkctl_data",1,"off")=0 + Set gtmtypes("relinkctl_data",1,"len")=4 + Set gtmtypes("relinkctl_data",1,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","n_records")=1 + Set gtmtypes("relinkctl_data",2,"name")="relinkctl_data.nattached" + Set gtmtypes("relinkctl_data",2,"off")=4 + Set gtmtypes("relinkctl_data",2,"len")=4 + Set gtmtypes("relinkctl_data",2,"type")="int" + Set gtmtypfldindx("relinkctl_data","nattached")=2 + Set gtmtypes("relinkctl_data",3,"name")="relinkctl_data.relinkctl_shmid" + Set gtmtypes("relinkctl_data",3,"off")=8 + Set gtmtypes("relinkctl_data",3,"len")=4 + Set gtmtypes("relinkctl_data",3,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_shmid")=3 + Set gtmtypes("relinkctl_data",4,"name")="relinkctl_data.relinkctl_shmlen" + Set gtmtypes("relinkctl_data",4,"off")=12 + Set gtmtypes("relinkctl_data",4,"len")=4 + Set gtmtypes("relinkctl_data",4,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","relinkctl_shmlen")=4 + Set gtmtypes("relinkctl_data",5,"name")="relinkctl_data.file_deleted" + Set gtmtypes("relinkctl_data",5,"off")=16 + Set gtmtypes("relinkctl_data",5,"len")=4 + Set gtmtypes("relinkctl_data",5,"type")="int" + Set gtmtypfldindx("relinkctl_data","file_deleted")=5 + Set gtmtypes("relinkctl_data",6,"name")="relinkctl_data.initialized" + Set gtmtypes("relinkctl_data",6,"off")=20 + Set gtmtypes("relinkctl_data",6,"len")=4 + Set gtmtypes("relinkctl_data",6,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","initialized")=6 + Set gtmtypes("relinkctl_data",7,"name")="relinkctl_data.zro_entry_name" + Set gtmtypes("relinkctl_data",7,"off")=24 + Set gtmtypes("relinkctl_data",7,"len")=256 + Set gtmtypes("relinkctl_data",7,"type")="char" + Set gtmtypfldindx("relinkctl_data","zro_entry_name")=7 + Set gtmtypes("relinkctl_data",8,"name")="relinkctl_data.zro_entry_name_len" + Set gtmtypes("relinkctl_data",8,"off")=280 + Set gtmtypes("relinkctl_data",8,"len")=4 + Set gtmtypes("relinkctl_data",8,"type")="int" + Set gtmtypfldindx("relinkctl_data","zro_entry_name_len")=8 + Set gtmtypes("relinkctl_data",9,"name")="relinkctl_data.relinkctl_max_rtn_entries" + Set gtmtypes("relinkctl_data",9,"off")=284 + Set gtmtypes("relinkctl_data",9,"len")=4 + Set gtmtypes("relinkctl_data",9,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_max_rtn_entries")=9 + Set gtmtypes("relinkctl_data",10,"name")="relinkctl_data.relinkctl_hash_buckets" + Set gtmtypes("relinkctl_data",10,"off")=288 + Set gtmtypes("relinkctl_data",10,"len")=4 + Set gtmtypes("relinkctl_data",10,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_hash_buckets")=10 + ; + Set gtmtypes("relinkrec_t")="struct" + Set gtmtypes("relinkrec_t",0)=16 + Set gtmtypes("relinkrec_t","len")=88 + Set gtmtypes("relinkrec_t",1,"name")="relinkrec_t.rtnname_fixed" + Set gtmtypes("relinkrec_t",1,"off")=0 + Set gtmtypes("relinkrec_t",1,"len")=32 + Set gtmtypes("relinkrec_t",1,"type")="mident_fixed" + Set gtmtypfldindx("relinkrec_t","rtnname_fixed")=1 + Set gtmtypes("relinkrec_t",2,"name")="relinkrec_t.rtnname_fixed.c" + Set gtmtypes("relinkrec_t",2,"off")=0 + Set gtmtypes("relinkrec_t",2,"len")=32 + Set gtmtypes("relinkrec_t",2,"type")="char" + Set gtmtypfldindx("relinkrec_t","rtnname_fixed.c")=2 + Set gtmtypes("relinkrec_t",3,"name")="relinkrec_t.cycle" + Set gtmtypes("relinkrec_t",3,"off")=32 + Set gtmtypes("relinkrec_t",3,"len")=4 + Set gtmtypes("relinkrec_t",3,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","cycle")=3 + Set gtmtypes("relinkrec_t",4,"name")="relinkrec_t.hashindex_fl" + Set gtmtypes("relinkrec_t",4,"off")=36 + Set gtmtypes("relinkrec_t",4,"len")=4 + Set gtmtypes("relinkrec_t",4,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","hashindex_fl")=4 + Set gtmtypes("relinkrec_t",5,"name")="relinkrec_t.numvers" + Set gtmtypes("relinkrec_t",5,"off")=40 + Set gtmtypes("relinkrec_t",5,"len")=4 + Set gtmtypes("relinkrec_t",5,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","numvers")=5 + Set gtmtypes("relinkrec_t",6,"name")="relinkrec_t.filler_8byte_align" + Set gtmtypes("relinkrec_t",6,"off")=44 + Set gtmtypes("relinkrec_t",6,"len")=4 + Set gtmtypes("relinkrec_t",6,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","filler_8byte_align")=6 + Set gtmtypes("relinkrec_t",7,"name")="relinkrec_t.objLen" + Set gtmtypes("relinkrec_t",7,"off")=48 + Set gtmtypes("relinkrec_t",7,"len")=8 + Set gtmtypes("relinkrec_t",7,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","objLen")=7 + Set gtmtypes("relinkrec_t",8,"name")="relinkrec_t.usedLen" + Set gtmtypes("relinkrec_t",8,"off")=56 + Set gtmtypes("relinkrec_t",8,"len")=8 + Set gtmtypes("relinkrec_t",8,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","usedLen")=8 + Set gtmtypes("relinkrec_t",9,"name")="relinkrec_t.rtnobj_shm_offset" + Set gtmtypes("relinkrec_t",9,"off")=64 + Set gtmtypes("relinkrec_t",9,"len")=8 + Set gtmtypes("relinkrec_t",9,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_shm_offset")=9 + Set gtmtypes("relinkrec_t",10,"name")="relinkrec_t.rtnobj_latch" + Set gtmtypes("relinkrec_t",10,"off")=72 + Set gtmtypes("relinkrec_t",10,"len")=8 + Set gtmtypes("relinkrec_t",10,"type")="global_latch_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch")=10 + Set gtmtypes("relinkrec_t",11,"name")="relinkrec_t.rtnobj_latch.u" + Set gtmtypes("relinkrec_t",11,"off")=72 + Set gtmtypes("relinkrec_t",11,"len")=8 + Set gtmtypes("relinkrec_t",11,"type")="union" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u")=11 + Set gtmtypes("relinkrec_t",12,"name")="relinkrec_t.rtnobj_latch.u.pid_imgcnt" + Set gtmtypes("relinkrec_t",12,"off")=72 + Set gtmtypes("relinkrec_t",12,"len")=8 + Set gtmtypes("relinkrec_t",12,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.pid_imgcnt")=12 + Set gtmtypes("relinkrec_t",13,"name")="relinkrec_t.rtnobj_latch.u.parts" + Set gtmtypes("relinkrec_t",13,"off")=72 + Set gtmtypes("relinkrec_t",13,"len")=8 + Set gtmtypes("relinkrec_t",13,"type")="struct" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts")=13 + Set gtmtypes("relinkrec_t",14,"name")="relinkrec_t.rtnobj_latch.u.parts.latch_pid" + Set gtmtypes("relinkrec_t",14,"off")=72 + Set gtmtypes("relinkrec_t",14,"len")=4 + Set gtmtypes("relinkrec_t",14,"type")="int" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts.latch_pid")=14 + Set gtmtypes("relinkrec_t",15,"name")="relinkrec_t.rtnobj_latch.u.parts.latch_word" + Set gtmtypes("relinkrec_t",15,"off")=76 + Set gtmtypes("relinkrec_t",15,"len")=4 + Set gtmtypes("relinkrec_t",15,"type")="int" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts.latch_word")=15 + Set gtmtypes("relinkrec_t",16,"name")="relinkrec_t.objhash" + Set gtmtypes("relinkrec_t",16,"off")=80 + Set gtmtypes("relinkrec_t",16,"len")=8 + Set gtmtypes("relinkrec_t",16,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","objhash")=16 + ; + Set gtmtypes("relinkshm_hdr_t")="struct" + Set gtmtypes("relinkshm_hdr_t",0)=21 + Set gtmtypes("relinkshm_hdr_t","len")=21024 + Set gtmtypes("relinkshm_hdr_t",1,"name")="relinkshm_hdr_t.relinkctl_fname" + Set gtmtypes("relinkshm_hdr_t",1,"off")=0 + Set gtmtypes("relinkshm_hdr_t",1,"len")=4097 + Set gtmtypes("relinkshm_hdr_t",1,"type")="char" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_fname")=1 + Set gtmtypes("relinkshm_hdr_t",2,"name")="relinkshm_hdr_t.min_shm_index" + Set gtmtypes("relinkshm_hdr_t",2,"off")=4100 + Set gtmtypes("relinkshm_hdr_t",2,"len")=4 + Set gtmtypes("relinkshm_hdr_t",2,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","min_shm_index")=2 + Set gtmtypes("relinkshm_hdr_t",3,"name")="relinkshm_hdr_t.rtnobj_min_shm_index" + Set gtmtypes("relinkshm_hdr_t",3,"off")=4104 + Set gtmtypes("relinkshm_hdr_t",3,"len")=4 + Set gtmtypes("relinkshm_hdr_t",3,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_min_shm_index")=3 + Set gtmtypes("relinkshm_hdr_t",4,"name")="relinkshm_hdr_t.rtnobj_max_shm_index" + Set gtmtypes("relinkshm_hdr_t",4,"off")=4108 + Set gtmtypes("relinkshm_hdr_t",4,"len")=4 + Set gtmtypes("relinkshm_hdr_t",4,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_max_shm_index")=4 + Set gtmtypes("relinkshm_hdr_t",5,"name")="relinkshm_hdr_t.rndwn_adjusted_nattch" + Set gtmtypes("relinkshm_hdr_t",5,"off")=4112 + Set gtmtypes("relinkshm_hdr_t",5,"len")=4 + Set gtmtypes("relinkshm_hdr_t",5,"type")="boolean_t" + Set gtmtypfldindx("relinkshm_hdr_t","rndwn_adjusted_nattch")=5 + Set gtmtypes("relinkshm_hdr_t",6,"name")="relinkshm_hdr_t.skip_rundown_check" + Set gtmtypes("relinkshm_hdr_t",6,"off")=4116 + Set gtmtypes("relinkshm_hdr_t",6,"len")=4 + Set gtmtypes("relinkshm_hdr_t",6,"type")="boolean_t" + Set gtmtypfldindx("relinkshm_hdr_t","skip_rundown_check")=6 + Set gtmtypes("relinkshm_hdr_t",7,"name")="relinkshm_hdr_t.rtnobj_shmhdr" + Set gtmtypes("relinkshm_hdr_t",7,"off")=4120 + Set gtmtypes("relinkshm_hdr_t",7,"len")=16872 + Set gtmtypes("relinkshm_hdr_t",7,"type")="rtnobjshm_hdr_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr")=7 + Set gtmtypes("relinkshm_hdr_t",7,"dim")=38 + Set gtmtypes("relinkshm_hdr_t",8,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].freeList" + Set gtmtypes("relinkshm_hdr_t",8,"off")=4120 + Set gtmtypes("relinkshm_hdr_t",8,"len")=408 + Set gtmtypes("relinkshm_hdr_t",8,"type")="que_ent" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].freeList")=8 + Set gtmtypes("relinkshm_hdr_t",8,"dim")=51 + Set gtmtypes("relinkshm_hdr_t",9,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_min_free_index" + Set gtmtypes("relinkshm_hdr_t",9,"off")=4528 + Set gtmtypes("relinkshm_hdr_t",9,"len")=4 + Set gtmtypes("relinkshm_hdr_t",9,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_min_free_index")=9 + Set gtmtypes("relinkshm_hdr_t",10,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_max_free_index" + Set gtmtypes("relinkshm_hdr_t",10,"off")=4532 + Set gtmtypes("relinkshm_hdr_t",10,"len")=4 + Set gtmtypes("relinkshm_hdr_t",10,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_max_free_index")=10 + Set gtmtypes("relinkshm_hdr_t",11,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_shmid" + Set gtmtypes("relinkshm_hdr_t",11,"off")=4536 + Set gtmtypes("relinkshm_hdr_t",11,"len")=4 + Set gtmtypes("relinkshm_hdr_t",11,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_shmid")=11 + Set gtmtypes("relinkshm_hdr_t",12,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].real_len" + Set gtmtypes("relinkshm_hdr_t",12,"off")=4540 + Set gtmtypes("relinkshm_hdr_t",12,"len")=8 + Set gtmtypes("relinkshm_hdr_t",12,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].real_len")=12 + Set gtmtypes("relinkshm_hdr_t",13,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].used_len" + Set gtmtypes("relinkshm_hdr_t",13,"off")=4548 + Set gtmtypes("relinkshm_hdr_t",13,"len")=8 + Set gtmtypes("relinkshm_hdr_t",13,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].used_len")=13 + Set gtmtypes("relinkshm_hdr_t",14,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].shm_len" + Set gtmtypes("relinkshm_hdr_t",14,"off")=4556 + Set gtmtypes("relinkshm_hdr_t",14,"len")=8 + Set gtmtypes("relinkshm_hdr_t",14,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].shm_len")=14 + Set gtmtypes("relinkshm_hdr_t",15,"name")="relinkshm_hdr_t.relinkctl_latch" + Set gtmtypes("relinkshm_hdr_t",15,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",15,"len")=8 + Set gtmtypes("relinkshm_hdr_t",15,"type")="global_latch_t" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch")=15 + Set gtmtypes("relinkshm_hdr_t",16,"name")="relinkshm_hdr_t.relinkctl_latch.u" + Set gtmtypes("relinkshm_hdr_t",16,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",16,"len")=8 + Set gtmtypes("relinkshm_hdr_t",16,"type")="union" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u")=16 + Set gtmtypes("relinkshm_hdr_t",17,"name")="relinkshm_hdr_t.relinkctl_latch.u.pid_imgcnt" + Set gtmtypes("relinkshm_hdr_t",17,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",17,"len")=8 + Set gtmtypes("relinkshm_hdr_t",17,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.pid_imgcnt")=17 + Set gtmtypes("relinkshm_hdr_t",18,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts" + Set gtmtypes("relinkshm_hdr_t",18,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",18,"len")=8 + Set gtmtypes("relinkshm_hdr_t",18,"type")="struct" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts")=18 + Set gtmtypes("relinkshm_hdr_t",19,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts.latch_pid" + Set gtmtypes("relinkshm_hdr_t",19,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",19,"len")=4 + Set gtmtypes("relinkshm_hdr_t",19,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts.latch_pid")=19 + Set gtmtypes("relinkshm_hdr_t",20,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts.latch_word" + Set gtmtypes("relinkshm_hdr_t",20,"off")=20996 + Set gtmtypes("relinkshm_hdr_t",20,"len")=4 + Set gtmtypes("relinkshm_hdr_t",20,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts.latch_word")=20 + Set gtmtypes("relinkshm_hdr_t",21,"name")="relinkshm_hdr_t.fill_cacheline1" + Set gtmtypes("relinkshm_hdr_t",21,"off")=21000 + Set gtmtypes("relinkshm_hdr_t",21,"len")=24 + Set gtmtypes("relinkshm_hdr_t",21,"type")="char" + Set gtmtypfldindx("relinkshm_hdr_t","fill_cacheline1")=21 + ; + Set gtmtypes("repl_badtrans_msg_t")="struct" + Set gtmtypes("repl_badtrans_msg_t",0)=4 + Set gtmtypes("repl_badtrans_msg_t","len")=32 + Set gtmtypes("repl_badtrans_msg_t",1,"name")="repl_badtrans_msg_t.type" + Set gtmtypes("repl_badtrans_msg_t",1,"off")=0 + Set gtmtypes("repl_badtrans_msg_t",1,"len")=4 + Set gtmtypes("repl_badtrans_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_badtrans_msg_t","type")=1 + Set gtmtypes("repl_badtrans_msg_t",2,"name")="repl_badtrans_msg_t.len" + Set gtmtypes("repl_badtrans_msg_t",2,"off")=4 + Set gtmtypes("repl_badtrans_msg_t",2,"len")=4 + Set gtmtypes("repl_badtrans_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_badtrans_msg_t","len")=2 + Set gtmtypes("repl_badtrans_msg_t",3,"name")="repl_badtrans_msg_t.start_seqno" + Set gtmtypes("repl_badtrans_msg_t",3,"off")=8 + Set gtmtypes("repl_badtrans_msg_t",3,"len")=8 + Set gtmtypes("repl_badtrans_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_badtrans_msg_t","start_seqno")=3 + Set gtmtypes("repl_badtrans_msg_t",4,"name")="repl_badtrans_msg_t.filler_32" + Set gtmtypes("repl_badtrans_msg_t",4,"off")=16 + Set gtmtypes("repl_badtrans_msg_t",4,"len")=16 + Set gtmtypes("repl_badtrans_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_badtrans_msg_t","filler_32")=4 + ; + Set gtmtypes("repl_buff_desc")="struct" + Set gtmtypes("repl_buff_desc",0)=10 + Set gtmtypes("repl_buff_desc","len")=40 + Set gtmtypes("repl_buff_desc",1,"name")="repl_buff_desc.recbuff" + Set gtmtypes("repl_buff_desc",1,"off")=0 + Set gtmtypes("repl_buff_desc",1,"len")=4 + Set gtmtypes("repl_buff_desc",1,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","recbuff")=1 + Set gtmtypes("repl_buff_desc",2,"name")="repl_buff_desc.reclen" + Set gtmtypes("repl_buff_desc",2,"off")=4 + Set gtmtypes("repl_buff_desc",2,"len")=4 + Set gtmtypes("repl_buff_desc",2,"type")="int" + Set gtmtypfldindx("repl_buff_desc","reclen")=2 + Set gtmtypes("repl_buff_desc",3,"name")="repl_buff_desc.recaddr" + Set gtmtypes("repl_buff_desc",3,"off")=8 + Set gtmtypes("repl_buff_desc",3,"len")=4 + Set gtmtypes("repl_buff_desc",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","recaddr")=3 + Set gtmtypes("repl_buff_desc",4,"name")="repl_buff_desc.readaddr" + Set gtmtypes("repl_buff_desc",4,"off")=12 + Set gtmtypes("repl_buff_desc",4,"len")=4 + Set gtmtypes("repl_buff_desc",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","readaddr")=4 + Set gtmtypes("repl_buff_desc",5,"name")="repl_buff_desc.buffremaining" + Set gtmtypes("repl_buff_desc",5,"off")=16 + Set gtmtypes("repl_buff_desc",5,"len")=4 + Set gtmtypes("repl_buff_desc",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","buffremaining")=5 + Set gtmtypes("repl_buff_desc",6,"name")="repl_buff_desc.base_buff" + Set gtmtypes("repl_buff_desc",6,"off")=20 + Set gtmtypes("repl_buff_desc",6,"len")=4 + Set gtmtypes("repl_buff_desc",6,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","base_buff")=6 + Set gtmtypes("repl_buff_desc",7,"name")="repl_buff_desc.base" + Set gtmtypes("repl_buff_desc",7,"off")=24 + Set gtmtypes("repl_buff_desc",7,"len")=4 + Set gtmtypes("repl_buff_desc",7,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","base")=7 + Set gtmtypes("repl_buff_desc",8,"name")="repl_buff_desc.save_readaddr" + Set gtmtypes("repl_buff_desc",8,"off")=28 + Set gtmtypes("repl_buff_desc",8,"len")=4 + Set gtmtypes("repl_buff_desc",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","save_readaddr")=8 + Set gtmtypes("repl_buff_desc",9,"name")="repl_buff_desc.save_dskaddr" + Set gtmtypes("repl_buff_desc",9,"off")=32 + Set gtmtypes("repl_buff_desc",9,"len")=4 + Set gtmtypes("repl_buff_desc",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","save_dskaddr")=9 + Set gtmtypes("repl_buff_desc",10,"name")="repl_buff_desc.save_buffremaining" + Set gtmtypes("repl_buff_desc",10,"off")=36 + Set gtmtypes("repl_buff_desc",10,"len")=4 + Set gtmtypes("repl_buff_desc",10,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","save_buffremaining")=10 + ; + Set gtmtypes("repl_buff_t")="struct" + Set gtmtypes("repl_buff_t",0)=14 + Set gtmtypes("repl_buff_t","len")=92 + Set gtmtypes("repl_buff_t",1,"name")="repl_buff_t.buffindex" + Set gtmtypes("repl_buff_t",1,"off")=0 + Set gtmtypes("repl_buff_t",1,"len")=4 + Set gtmtypes("repl_buff_t",1,"type")="int" + Set gtmtypfldindx("repl_buff_t","buffindex")=1 + Set gtmtypes("repl_buff_t",2,"name")="repl_buff_t.buff" + Set gtmtypes("repl_buff_t",2,"off")=4 + Set gtmtypes("repl_buff_t",2,"len")=80 + Set gtmtypes("repl_buff_t",2,"type")="repl_buff_desc" + Set gtmtypfldindx("repl_buff_t","buff")=2 + Set gtmtypes("repl_buff_t",2,"dim")=2 + Set gtmtypes("repl_buff_t",3,"name")="repl_buff_t.buff[0].recbuff" + Set gtmtypes("repl_buff_t",3,"off")=4 + Set gtmtypes("repl_buff_t",3,"len")=4 + Set gtmtypes("repl_buff_t",3,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].recbuff")=3 + Set gtmtypes("repl_buff_t",4,"name")="repl_buff_t.buff[0].reclen" + Set gtmtypes("repl_buff_t",4,"off")=8 + Set gtmtypes("repl_buff_t",4,"len")=4 + Set gtmtypes("repl_buff_t",4,"type")="int" + Set gtmtypfldindx("repl_buff_t","buff[0].reclen")=4 + Set gtmtypes("repl_buff_t",5,"name")="repl_buff_t.buff[0].recaddr" + Set gtmtypes("repl_buff_t",5,"off")=12 + Set gtmtypes("repl_buff_t",5,"len")=4 + Set gtmtypes("repl_buff_t",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].recaddr")=5 + Set gtmtypes("repl_buff_t",6,"name")="repl_buff_t.buff[0].readaddr" + Set gtmtypes("repl_buff_t",6,"off")=16 + Set gtmtypes("repl_buff_t",6,"len")=4 + Set gtmtypes("repl_buff_t",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].readaddr")=6 + Set gtmtypes("repl_buff_t",7,"name")="repl_buff_t.buff[0].buffremaining" + Set gtmtypes("repl_buff_t",7,"off")=20 + Set gtmtypes("repl_buff_t",7,"len")=4 + Set gtmtypes("repl_buff_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].buffremaining")=7 + Set gtmtypes("repl_buff_t",8,"name")="repl_buff_t.buff[0].base_buff" + Set gtmtypes("repl_buff_t",8,"off")=24 + Set gtmtypes("repl_buff_t",8,"len")=4 + Set gtmtypes("repl_buff_t",8,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].base_buff")=8 + Set gtmtypes("repl_buff_t",9,"name")="repl_buff_t.buff[0].base" + Set gtmtypes("repl_buff_t",9,"off")=28 + Set gtmtypes("repl_buff_t",9,"len")=4 + Set gtmtypes("repl_buff_t",9,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].base")=9 + Set gtmtypes("repl_buff_t",10,"name")="repl_buff_t.buff[0].save_readaddr" + Set gtmtypes("repl_buff_t",10,"off")=32 + Set gtmtypes("repl_buff_t",10,"len")=4 + Set gtmtypes("repl_buff_t",10,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].save_readaddr")=10 + Set gtmtypes("repl_buff_t",11,"name")="repl_buff_t.buff[0].save_dskaddr" + Set gtmtypes("repl_buff_t",11,"off")=36 + Set gtmtypes("repl_buff_t",11,"len")=4 + Set gtmtypes("repl_buff_t",11,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].save_dskaddr")=11 + Set gtmtypes("repl_buff_t",12,"name")="repl_buff_t.buff[0].save_buffremaining" + Set gtmtypes("repl_buff_t",12,"off")=40 + Set gtmtypes("repl_buff_t",12,"len")=4 + Set gtmtypes("repl_buff_t",12,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].save_buffremaining")=12 + Set gtmtypes("repl_buff_t",13,"name")="repl_buff_t.fc" + Set gtmtypes("repl_buff_t",13,"off")=84 + Set gtmtypes("repl_buff_t",13,"len")=4 + Set gtmtypes("repl_buff_t",13,"type")="addr" + Set gtmtypfldindx("repl_buff_t","fc")=13 + Set gtmtypes("repl_buff_t",14,"name")="repl_buff_t.backctl" + Set gtmtypes("repl_buff_t",14,"off")=88 + Set gtmtypes("repl_buff_t",14,"len")=4 + Set gtmtypes("repl_buff_t",14,"type")="addr" + Set gtmtypfldindx("repl_buff_t","backctl")=14 + ; + Set gtmtypes("repl_cmpinfo_msg_t")="struct" + Set gtmtypes("repl_cmpinfo_msg_t",0)=7 + Set gtmtypes("repl_cmpinfo_msg_t","len")=528 + Set gtmtypes("repl_cmpinfo_msg_t",1,"name")="repl_cmpinfo_msg_t.type" + Set gtmtypes("repl_cmpinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_cmpinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","type")=1 + Set gtmtypes("repl_cmpinfo_msg_t",2,"name")="repl_cmpinfo_msg_t.len" + Set gtmtypes("repl_cmpinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_cmpinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","len")=2 + Set gtmtypes("repl_cmpinfo_msg_t",3,"name")="repl_cmpinfo_msg_t.datalen" + Set gtmtypes("repl_cmpinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_cmpinfo_msg_t",3,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","datalen")=3 + Set gtmtypes("repl_cmpinfo_msg_t",4,"name")="repl_cmpinfo_msg_t.proto_ver" + Set gtmtypes("repl_cmpinfo_msg_t",4,"off")=12 + Set gtmtypes("repl_cmpinfo_msg_t",4,"len")=1 + Set gtmtypes("repl_cmpinfo_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","proto_ver")=4 + Set gtmtypes("repl_cmpinfo_msg_t",5,"name")="repl_cmpinfo_msg_t.filler_16" + Set gtmtypes("repl_cmpinfo_msg_t",5,"off")=13 + Set gtmtypes("repl_cmpinfo_msg_t",5,"len")=3 + Set gtmtypes("repl_cmpinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","filler_16")=5 + Set gtmtypes("repl_cmpinfo_msg_t",6,"name")="repl_cmpinfo_msg_t.data" + Set gtmtypes("repl_cmpinfo_msg_t",6,"off")=16 + Set gtmtypes("repl_cmpinfo_msg_t",6,"len")=256 + Set gtmtypes("repl_cmpinfo_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","data")=6 + Set gtmtypes("repl_cmpinfo_msg_t",7,"name")="repl_cmpinfo_msg_t.overflowdata" + Set gtmtypes("repl_cmpinfo_msg_t",7,"off")=272 + Set gtmtypes("repl_cmpinfo_msg_t",7,"len")=256 + Set gtmtypes("repl_cmpinfo_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","overflowdata")=7 + ; + Set gtmtypes("repl_cmpmsg_t")="struct" + Set gtmtypes("repl_cmpmsg_t",0)=5 + Set gtmtypes("repl_cmpmsg_t","len")=32 + Set gtmtypes("repl_cmpmsg_t",1,"name")="repl_cmpmsg_t.type" + Set gtmtypes("repl_cmpmsg_t",1,"off")=0 + Set gtmtypes("repl_cmpmsg_t",1,"len")=4 + Set gtmtypes("repl_cmpmsg_t",1,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","type")=1 + Set gtmtypes("repl_cmpmsg_t",2,"name")="repl_cmpmsg_t.len" + Set gtmtypes("repl_cmpmsg_t",2,"off")=4 + Set gtmtypes("repl_cmpmsg_t",2,"len")=4 + Set gtmtypes("repl_cmpmsg_t",2,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","len")=2 + Set gtmtypes("repl_cmpmsg_t",3,"name")="repl_cmpmsg_t.uncmplen" + Set gtmtypes("repl_cmpmsg_t",3,"off")=8 + Set gtmtypes("repl_cmpmsg_t",3,"len")=4 + Set gtmtypes("repl_cmpmsg_t",3,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","uncmplen")=3 + Set gtmtypes("repl_cmpmsg_t",4,"name")="repl_cmpmsg_t.cmplen" + Set gtmtypes("repl_cmpmsg_t",4,"off")=12 + Set gtmtypes("repl_cmpmsg_t",4,"len")=4 + Set gtmtypes("repl_cmpmsg_t",4,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","cmplen")=4 + Set gtmtypes("repl_cmpmsg_t",5,"name")="repl_cmpmsg_t.msg" + Set gtmtypes("repl_cmpmsg_t",5,"off")=16 + Set gtmtypes("repl_cmpmsg_t",5,"len")=16 + Set gtmtypes("repl_cmpmsg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_cmpmsg_t","msg")=5 + ; + Set gtmtypes("repl_conn_info_t")="struct" + Set gtmtypes("repl_conn_info_t",0)=10 + Set gtmtypes("repl_conn_info_t","len")=48 + Set gtmtypes("repl_conn_info_t",1,"name")="repl_conn_info_t.proto_ver" + Set gtmtypes("repl_conn_info_t",1,"off")=0 + Set gtmtypes("repl_conn_info_t",1,"len")=4 + Set gtmtypes("repl_conn_info_t",1,"type")="int" + Set gtmtypfldindx("repl_conn_info_t","proto_ver")=1 + Set gtmtypes("repl_conn_info_t",2,"name")="repl_conn_info_t.jnl_ver" + Set gtmtypes("repl_conn_info_t",2,"off")=4 + Set gtmtypes("repl_conn_info_t",2,"len")=4 + Set gtmtypes("repl_conn_info_t",2,"type")="unsigned-int" + Set gtmtypfldindx("repl_conn_info_t","jnl_ver")=2 + Set gtmtypes("repl_conn_info_t",3,"name")="repl_conn_info_t.is_std_null_coll" + Set gtmtypes("repl_conn_info_t",3,"off")=8 + Set gtmtypes("repl_conn_info_t",3,"len")=4 + Set gtmtypes("repl_conn_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","is_std_null_coll")=3 + Set gtmtypes("repl_conn_info_t",4,"name")="repl_conn_info_t.trigger_supported" + Set gtmtypes("repl_conn_info_t",4,"off")=12 + Set gtmtypes("repl_conn_info_t",4,"len")=4 + Set gtmtypes("repl_conn_info_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","trigger_supported")=4 + Set gtmtypes("repl_conn_info_t",5,"name")="repl_conn_info_t.cross_endian" + Set gtmtypes("repl_conn_info_t",5,"off")=16 + Set gtmtypes("repl_conn_info_t",5,"len")=4 + Set gtmtypes("repl_conn_info_t",5,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","cross_endian")=5 + Set gtmtypes("repl_conn_info_t",6,"name")="repl_conn_info_t.endianness_known" + Set gtmtypes("repl_conn_info_t",6,"off")=20 + Set gtmtypes("repl_conn_info_t",6,"len")=4 + Set gtmtypes("repl_conn_info_t",6,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","endianness_known")=6 + Set gtmtypes("repl_conn_info_t",7,"name")="repl_conn_info_t.null_subs_xform" + Set gtmtypes("repl_conn_info_t",7,"off")=24 + Set gtmtypes("repl_conn_info_t",7,"len")=4 + Set gtmtypes("repl_conn_info_t",7,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","null_subs_xform")=7 + Set gtmtypes("repl_conn_info_t",8,"name")="repl_conn_info_t.is_supplementary" + Set gtmtypes("repl_conn_info_t",8,"off")=28 + Set gtmtypes("repl_conn_info_t",8,"len")=4 + Set gtmtypes("repl_conn_info_t",8,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","is_supplementary")=8 + Set gtmtypes("repl_conn_info_t",9,"name")="repl_conn_info_t.tls_requested" + Set gtmtypes("repl_conn_info_t",9,"off")=32 + Set gtmtypes("repl_conn_info_t",9,"len")=4 + Set gtmtypes("repl_conn_info_t",9,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","tls_requested")=9 + Set gtmtypes("repl_conn_info_t",10,"name")="repl_conn_info_t.filler_16" + Set gtmtypes("repl_conn_info_t",10,"off")=36 + Set gtmtypes("repl_conn_info_t",10,"len")=12 + Set gtmtypes("repl_conn_info_t",10,"type")="char" + Set gtmtypfldindx("repl_conn_info_t","filler_16")=10 + ; + Set gtmtypes("repl_ctl_element")="struct" + Set gtmtypes("repl_ctl_element",0)=22 + Set gtmtypes("repl_ctl_element","len")=356 + Set gtmtypes("repl_ctl_element",1,"name")="repl_ctl_element.reg" + Set gtmtypes("repl_ctl_element",1,"off")=0 + Set gtmtypes("repl_ctl_element",1,"len")=4 + Set gtmtypes("repl_ctl_element",1,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","reg")=1 + Set gtmtypes("repl_ctl_element",2,"name")="repl_ctl_element.repl_buff" + Set gtmtypes("repl_ctl_element",2,"off")=4 + Set gtmtypes("repl_ctl_element",2,"len")=4 + Set gtmtypes("repl_ctl_element",2,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","repl_buff")=2 + Set gtmtypes("repl_ctl_element",3,"name")="repl_ctl_element.min_seqno" + Set gtmtypes("repl_ctl_element",3,"off")=8 + Set gtmtypes("repl_ctl_element",3,"len")=8 + Set gtmtypes("repl_ctl_element",3,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","min_seqno")=3 + Set gtmtypes("repl_ctl_element",4,"name")="repl_ctl_element.max_seqno" + Set gtmtypes("repl_ctl_element",4,"off")=16 + Set gtmtypes("repl_ctl_element",4,"len")=8 + Set gtmtypes("repl_ctl_element",4,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","max_seqno")=4 + Set gtmtypes("repl_ctl_element",5,"name")="repl_ctl_element.min_seqno_dskaddr" + Set gtmtypes("repl_ctl_element",5,"off")=24 + Set gtmtypes("repl_ctl_element",5,"len")=4 + Set gtmtypes("repl_ctl_element",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","min_seqno_dskaddr")=5 + Set gtmtypes("repl_ctl_element",6,"name")="repl_ctl_element.max_seqno_dskaddr" + Set gtmtypes("repl_ctl_element",6,"off")=28 + Set gtmtypes("repl_ctl_element",6,"len")=4 + Set gtmtypes("repl_ctl_element",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","max_seqno_dskaddr")=6 + Set gtmtypes("repl_ctl_element",7,"name")="repl_ctl_element.max_seqno_eof_addr" + Set gtmtypes("repl_ctl_element",7,"off")=32 + Set gtmtypes("repl_ctl_element",7,"len")=4 + Set gtmtypes("repl_ctl_element",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","max_seqno_eof_addr")=7 + Set gtmtypes("repl_ctl_element",8,"name")="repl_ctl_element.filler_4byte" + Set gtmtypes("repl_ctl_element",8,"off")=36 + Set gtmtypes("repl_ctl_element",8,"len")=4 + Set gtmtypes("repl_ctl_element",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","filler_4byte")=8 + Set gtmtypes("repl_ctl_element",9,"name")="repl_ctl_element.seqno" + Set gtmtypes("repl_ctl_element",9,"off")=40 + Set gtmtypes("repl_ctl_element",9,"len")=8 + Set gtmtypes("repl_ctl_element",9,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","seqno")=9 + Set gtmtypes("repl_ctl_element",10,"name")="repl_ctl_element.tn" + Set gtmtypes("repl_ctl_element",10,"off")=48 + Set gtmtypes("repl_ctl_element",10,"len")=8 + Set gtmtypes("repl_ctl_element",10,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","tn")=10 + Set gtmtypes("repl_ctl_element",11,"name")="repl_ctl_element.file_state" + Set gtmtypes("repl_ctl_element",11,"off")=56 + Set gtmtypes("repl_ctl_element",11,"len")=4 + Set gtmtypes("repl_ctl_element",11,"type")="int" + Set gtmtypfldindx("repl_ctl_element","file_state")=11 + Set gtmtypes("repl_ctl_element",12,"name")="repl_ctl_element.lookback" + Set gtmtypes("repl_ctl_element",12,"off")=60 + Set gtmtypes("repl_ctl_element",12,"len")=4 + Set gtmtypes("repl_ctl_element",12,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","lookback")=12 + Set gtmtypes("repl_ctl_element",13,"name")="repl_ctl_element.first_read_done" + Set gtmtypes("repl_ctl_element",13,"off")=64 + Set gtmtypes("repl_ctl_element",13,"len")=4 + Set gtmtypes("repl_ctl_element",13,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","first_read_done")=13 + Set gtmtypes("repl_ctl_element",14,"name")="repl_ctl_element.eof_addr_final" + Set gtmtypes("repl_ctl_element",14,"off")=68 + Set gtmtypes("repl_ctl_element",14,"len")=4 + Set gtmtypes("repl_ctl_element",14,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","eof_addr_final")=14 + Set gtmtypes("repl_ctl_element",15,"name")="repl_ctl_element.max_seqno_final" + Set gtmtypes("repl_ctl_element",15,"off")=72 + Set gtmtypes("repl_ctl_element",15,"len")=4 + Set gtmtypes("repl_ctl_element",15,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","max_seqno_final")=15 + Set gtmtypes("repl_ctl_element",16,"name")="repl_ctl_element.jnl_fn_len" + Set gtmtypes("repl_ctl_element",16,"off")=76 + Set gtmtypes("repl_ctl_element",16,"len")=4 + Set gtmtypes("repl_ctl_element",16,"type")="int" + Set gtmtypfldindx("repl_ctl_element","jnl_fn_len")=16 + Set gtmtypes("repl_ctl_element",17,"name")="repl_ctl_element.jnl_fn" + Set gtmtypes("repl_ctl_element",17,"off")=80 + Set gtmtypes("repl_ctl_element",17,"len")=256 + Set gtmtypes("repl_ctl_element",17,"type")="char" + Set gtmtypfldindx("repl_ctl_element","jnl_fn")=17 + Set gtmtypes("repl_ctl_element",18,"name")="repl_ctl_element.repl_rctl" + Set gtmtypes("repl_ctl_element",18,"off")=336 + Set gtmtypes("repl_ctl_element",18,"len")=4 + Set gtmtypes("repl_ctl_element",18,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","repl_rctl")=18 + Set gtmtypes("repl_ctl_element",19,"name")="repl_ctl_element.prev" + Set gtmtypes("repl_ctl_element",19,"off")=340 + Set gtmtypes("repl_ctl_element",19,"len")=4 + Set gtmtypes("repl_ctl_element",19,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","prev")=19 + Set gtmtypes("repl_ctl_element",20,"name")="repl_ctl_element.next" + Set gtmtypes("repl_ctl_element",20,"off")=344 + Set gtmtypes("repl_ctl_element",20,"len")=4 + Set gtmtypes("repl_ctl_element",20,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","next")=20 + Set gtmtypes("repl_ctl_element",21,"name")="repl_ctl_element.encr_key_handle" + Set gtmtypes("repl_ctl_element",21,"off")=348 + Set gtmtypes("repl_ctl_element",21,"len")=4 + Set gtmtypes("repl_ctl_element",21,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","encr_key_handle")=21 + Set gtmtypes("repl_ctl_element",22,"name")="repl_ctl_element.encr_key_handle2" + Set gtmtypes("repl_ctl_element",22,"off")=352 + Set gtmtypes("repl_ctl_element",22,"len")=4 + Set gtmtypes("repl_ctl_element",22,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","encr_key_handle2")=22 + ; + Set gtmtypes("repl_file_control_t")="struct" + Set gtmtypes("repl_file_control_t",0)=9 + Set gtmtypes("repl_file_control_t","len")=40 + Set gtmtypes("repl_file_control_t",1,"name")="repl_file_control_t.eof_addr" + Set gtmtypes("repl_file_control_t",1,"off")=0 + Set gtmtypes("repl_file_control_t",1,"len")=4 + Set gtmtypes("repl_file_control_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","eof_addr")=1 + Set gtmtypes("repl_file_control_t",2,"name")="repl_file_control_t.fs_block_size" + Set gtmtypes("repl_file_control_t",2,"off")=4 + Set gtmtypes("repl_file_control_t",2,"len")=4 + Set gtmtypes("repl_file_control_t",2,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","fs_block_size")=2 + Set gtmtypes("repl_file_control_t",3,"name")="repl_file_control_t.jfh_base" + Set gtmtypes("repl_file_control_t",3,"off")=8 + Set gtmtypes("repl_file_control_t",3,"len")=4 + Set gtmtypes("repl_file_control_t",3,"type")="addr" + Set gtmtypfldindx("repl_file_control_t","jfh_base")=3 + Set gtmtypes("repl_file_control_t",4,"name")="repl_file_control_t.jfh" + Set gtmtypes("repl_file_control_t",4,"off")=12 + Set gtmtypes("repl_file_control_t",4,"len")=4 + Set gtmtypes("repl_file_control_t",4,"type")="addr" + Set gtmtypfldindx("repl_file_control_t","jfh")=4 + Set gtmtypes("repl_file_control_t",5,"name")="repl_file_control_t.fd" + Set gtmtypes("repl_file_control_t",5,"off")=16 + Set gtmtypes("repl_file_control_t",5,"len")=4 + Set gtmtypes("repl_file_control_t",5,"type")="int" + Set gtmtypfldindx("repl_file_control_t","fd")=5 + Set gtmtypes("repl_file_control_t",6,"name")="repl_file_control_t.id" + Set gtmtypes("repl_file_control_t",6,"off")=20 + Set gtmtypes("repl_file_control_t",6,"len")=20 + Set gtmtypes("repl_file_control_t",6,"type")="unix_file_id" + Set gtmtypfldindx("repl_file_control_t","id")=6 + Set gtmtypes("repl_file_control_t",7,"name")="repl_file_control_t.id.inode" + Set gtmtypes("repl_file_control_t",7,"off")=20 + Set gtmtypes("repl_file_control_t",7,"len")=8 + Set gtmtypes("repl_file_control_t",7,"type")="ino_t" + Set gtmtypfldindx("repl_file_control_t","id.inode")=7 + Set gtmtypes("repl_file_control_t",8,"name")="repl_file_control_t.id.device" + Set gtmtypes("repl_file_control_t",8,"off")=28 + Set gtmtypes("repl_file_control_t",8,"len")=8 + Set gtmtypes("repl_file_control_t",8,"type")="dev_t" + Set gtmtypfldindx("repl_file_control_t","id.device")=8 + Set gtmtypes("repl_file_control_t",9,"name")="repl_file_control_t.id.st_gen" + Set gtmtypes("repl_file_control_t",9,"off")=36 + Set gtmtypes("repl_file_control_t",9,"len")=4 + Set gtmtypes("repl_file_control_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","id.st_gen")=9 + ; + Set gtmtypes("repl_heartbeat_msg_t")="struct" + Set gtmtypes("repl_heartbeat_msg_t",0)=5 + Set gtmtypes("repl_heartbeat_msg_t","len")=32 + Set gtmtypes("repl_heartbeat_msg_t",1,"name")="repl_heartbeat_msg_t.type" + Set gtmtypes("repl_heartbeat_msg_t",1,"off")=0 + Set gtmtypes("repl_heartbeat_msg_t",1,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_heartbeat_msg_t","type")=1 + Set gtmtypes("repl_heartbeat_msg_t",2,"name")="repl_heartbeat_msg_t.len" + Set gtmtypes("repl_heartbeat_msg_t",2,"off")=4 + Set gtmtypes("repl_heartbeat_msg_t",2,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_heartbeat_msg_t","len")=2 + Set gtmtypes("repl_heartbeat_msg_t",3,"name")="repl_heartbeat_msg_t.ack_seqno" + Set gtmtypes("repl_heartbeat_msg_t",3,"off")=8 + Set gtmtypes("repl_heartbeat_msg_t",3,"len")=8 + Set gtmtypes("repl_heartbeat_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","ack_seqno")=3 + Set gtmtypes("repl_heartbeat_msg_t",4,"name")="repl_heartbeat_msg_t.ack_time" + Set gtmtypes("repl_heartbeat_msg_t",4,"off")=16 + Set gtmtypes("repl_heartbeat_msg_t",4,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","ack_time")=4 + Set gtmtypes("repl_heartbeat_msg_t",5,"name")="repl_heartbeat_msg_t.filler_32" + Set gtmtypes("repl_heartbeat_msg_t",5,"off")=20 + Set gtmtypes("repl_heartbeat_msg_t",5,"len")=12 + Set gtmtypes("repl_heartbeat_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","filler_32")=5 + ; + Set gtmtypes("repl_heartbeat_que_entry_t")="struct" + Set gtmtypes("repl_heartbeat_que_entry_t",0)=9 + Set gtmtypes("repl_heartbeat_que_entry_t","len")=40 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"name")="repl_heartbeat_que_entry_t.que" + Set gtmtypes("repl_heartbeat_que_entry_t",1,"off")=0 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"len")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"type")="struct" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que")=1 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"name")="repl_heartbeat_que_entry_t.que.fl" + Set gtmtypes("repl_heartbeat_que_entry_t",2,"off")=0 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"type")="intptr_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que.fl")=2 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"name")="repl_heartbeat_que_entry_t.que.bl" + Set gtmtypes("repl_heartbeat_que_entry_t",3,"off")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"type")="intptr_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que.bl")=3 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"name")="repl_heartbeat_que_entry_t.heartbeat" + Set gtmtypes("repl_heartbeat_que_entry_t",4,"off")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"len")=32 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"type")="repl_heartbeat_msg_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"name")="repl_heartbeat_que_entry_t.heartbeat.type" + Set gtmtypes("repl_heartbeat_que_entry_t",5,"off")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"type")="int" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.type")=5 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"name")="repl_heartbeat_que_entry_t.heartbeat.len" + Set gtmtypes("repl_heartbeat_que_entry_t",6,"off")=12 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"type")="int" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.len")=6 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"name")="repl_heartbeat_que_entry_t.heartbeat.ack_seqno" + Set gtmtypes("repl_heartbeat_que_entry_t",7,"off")=16 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"len")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.ack_seqno")=7 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"name")="repl_heartbeat_que_entry_t.heartbeat.ack_time" + Set gtmtypes("repl_heartbeat_que_entry_t",8,"off")=24 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.ack_time")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"name")="repl_heartbeat_que_entry_t.heartbeat.filler_32" + Set gtmtypes("repl_heartbeat_que_entry_t",9,"off")=28 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"len")=12 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.filler_32")=9 + ; + Set gtmtypes("repl_histinfo")="struct" + Set gtmtypes("repl_histinfo",0)=17 + Set gtmtypes("repl_histinfo","len")=160 + Set gtmtypes("repl_histinfo",1,"name")="repl_histinfo.root_primary_instname" + Set gtmtypes("repl_histinfo",1,"off")=0 + Set gtmtypes("repl_histinfo",1,"len")=16 + Set gtmtypes("repl_histinfo",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","root_primary_instname")=1 + Set gtmtypes("repl_histinfo",2,"name")="repl_histinfo.start_seqno" + Set gtmtypes("repl_histinfo",2,"off")=16 + Set gtmtypes("repl_histinfo",2,"len")=8 + Set gtmtypes("repl_histinfo",2,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo","start_seqno")=2 + Set gtmtypes("repl_histinfo",3,"name")="repl_histinfo.strm_seqno" + Set gtmtypes("repl_histinfo",3,"off")=24 + Set gtmtypes("repl_histinfo",3,"len")=8 + Set gtmtypes("repl_histinfo",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo","strm_seqno")=3 + Set gtmtypes("repl_histinfo",4,"name")="repl_histinfo.root_primary_cycle" + Set gtmtypes("repl_histinfo",4,"off")=32 + Set gtmtypes("repl_histinfo",4,"len")=4 + Set gtmtypes("repl_histinfo",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","root_primary_cycle")=4 + Set gtmtypes("repl_histinfo",5,"name")="repl_histinfo.creator_pid" + Set gtmtypes("repl_histinfo",5,"off")=36 + Set gtmtypes("repl_histinfo",5,"len")=4 + Set gtmtypes("repl_histinfo",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","creator_pid")=5 + Set gtmtypes("repl_histinfo",6,"name")="repl_histinfo.created_time" + Set gtmtypes("repl_histinfo",6,"off")=40 + Set gtmtypes("repl_histinfo",6,"len")=4 + Set gtmtypes("repl_histinfo",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","created_time")=6 + Set gtmtypes("repl_histinfo",7,"name")="repl_histinfo.histinfo_num" + Set gtmtypes("repl_histinfo",7,"off")=44 + Set gtmtypes("repl_histinfo",7,"len")=4 + Set gtmtypes("repl_histinfo",7,"type")="int" + Set gtmtypfldindx("repl_histinfo","histinfo_num")=7 + Set gtmtypes("repl_histinfo",8,"name")="repl_histinfo.prev_histinfo_num" + Set gtmtypes("repl_histinfo",8,"off")=48 + Set gtmtypes("repl_histinfo",8,"len")=4 + Set gtmtypes("repl_histinfo",8,"type")="int" + Set gtmtypfldindx("repl_histinfo","prev_histinfo_num")=8 + Set gtmtypes("repl_histinfo",9,"name")="repl_histinfo.strm_index" + Set gtmtypes("repl_histinfo",9,"off")=52 + Set gtmtypes("repl_histinfo",9,"len")=1 + Set gtmtypes("repl_histinfo",9,"type")="char" + Set gtmtypfldindx("repl_histinfo","strm_index")=9 + Set gtmtypes("repl_histinfo",10,"name")="repl_histinfo.history_type" + Set gtmtypes("repl_histinfo",10,"off")=53 + Set gtmtypes("repl_histinfo",10,"len")=1 + Set gtmtypes("repl_histinfo",10,"type")="char" + Set gtmtypfldindx("repl_histinfo","history_type")=10 + Set gtmtypes("repl_histinfo",11,"name")="repl_histinfo.filler_8" + Set gtmtypes("repl_histinfo",11,"off")=54 + Set gtmtypes("repl_histinfo",11,"len")=2 + Set gtmtypes("repl_histinfo",11,"type")="char" + Set gtmtypfldindx("repl_histinfo","filler_8")=11 + Set gtmtypes("repl_histinfo",12,"name")="repl_histinfo.lms_group" + Set gtmtypes("repl_histinfo",12,"off")=56 + Set gtmtypes("repl_histinfo",12,"len")=40 + Set gtmtypes("repl_histinfo",12,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histinfo","lms_group")=12 + Set gtmtypes("repl_histinfo",13,"name")="repl_histinfo.lms_group.created_nodename" + Set gtmtypes("repl_histinfo",13,"off")=56 + Set gtmtypes("repl_histinfo",13,"len")=16 + Set gtmtypes("repl_histinfo",13,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","lms_group.created_nodename")=13 + Set gtmtypes("repl_histinfo",14,"name")="repl_histinfo.lms_group.this_instname" + Set gtmtypes("repl_histinfo",14,"off")=72 + Set gtmtypes("repl_histinfo",14,"len")=16 + Set gtmtypes("repl_histinfo",14,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","lms_group.this_instname")=14 + Set gtmtypes("repl_histinfo",15,"name")="repl_histinfo.lms_group.created_time" + Set gtmtypes("repl_histinfo",15,"off")=88 + Set gtmtypes("repl_histinfo",15,"len")=4 + Set gtmtypes("repl_histinfo",15,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","lms_group.created_time")=15 + Set gtmtypes("repl_histinfo",16,"name")="repl_histinfo.lms_group.creator_pid" + Set gtmtypes("repl_histinfo",16,"off")=92 + Set gtmtypes("repl_histinfo",16,"len")=4 + Set gtmtypes("repl_histinfo",16,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","lms_group.creator_pid")=16 + Set gtmtypes("repl_histinfo",17,"name")="repl_histinfo.last_histinfo_num" + Set gtmtypes("repl_histinfo",17,"off")=96 + Set gtmtypes("repl_histinfo",17,"len")=64 + Set gtmtypes("repl_histinfo",17,"type")="int" + Set gtmtypfldindx("repl_histinfo","last_histinfo_num")=17 + Set gtmtypes("repl_histinfo",17,"dim")=16 + ; + Set gtmtypes("repl_histinfo1_msg_t")="struct" + Set gtmtypes("repl_histinfo1_msg_t",0)=4 + Set gtmtypes("repl_histinfo1_msg_t","len")=32 + Set gtmtypes("repl_histinfo1_msg_t",1,"name")="repl_histinfo1_msg_t.type" + Set gtmtypes("repl_histinfo1_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo1_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo1_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo1_msg_t","type")=1 + Set gtmtypes("repl_histinfo1_msg_t",2,"name")="repl_histinfo1_msg_t.len" + Set gtmtypes("repl_histinfo1_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo1_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo1_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo1_msg_t","len")=2 + Set gtmtypes("repl_histinfo1_msg_t",3,"name")="repl_histinfo1_msg_t.start_seqno" + Set gtmtypes("repl_histinfo1_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo1_msg_t",3,"len")=8 + Set gtmtypes("repl_histinfo1_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo1_msg_t","start_seqno")=3 + Set gtmtypes("repl_histinfo1_msg_t",4,"name")="repl_histinfo1_msg_t.instname" + Set gtmtypes("repl_histinfo1_msg_t",4,"off")=16 + Set gtmtypes("repl_histinfo1_msg_t",4,"len")=16 + Set gtmtypes("repl_histinfo1_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo1_msg_t","instname")=4 + ; + Set gtmtypes("repl_histinfo2_msg_t")="struct" + Set gtmtypes("repl_histinfo2_msg_t",0)=6 + Set gtmtypes("repl_histinfo2_msg_t","len")=32 + Set gtmtypes("repl_histinfo2_msg_t",1,"name")="repl_histinfo2_msg_t.type" + Set gtmtypes("repl_histinfo2_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo2_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","type")=1 + Set gtmtypes("repl_histinfo2_msg_t",2,"name")="repl_histinfo2_msg_t.len" + Set gtmtypes("repl_histinfo2_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo2_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","len")=2 + Set gtmtypes("repl_histinfo2_msg_t",3,"name")="repl_histinfo2_msg_t.start_seqno" + Set gtmtypes("repl_histinfo2_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo2_msg_t",3,"len")=8 + Set gtmtypes("repl_histinfo2_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo2_msg_t","start_seqno")=3 + Set gtmtypes("repl_histinfo2_msg_t",4,"name")="repl_histinfo2_msg_t.cycle" + Set gtmtypes("repl_histinfo2_msg_t",4,"off")=16 + Set gtmtypes("repl_histinfo2_msg_t",4,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo2_msg_t","cycle")=4 + Set gtmtypes("repl_histinfo2_msg_t",5,"name")="repl_histinfo2_msg_t.histinfo_num" + Set gtmtypes("repl_histinfo2_msg_t",5,"off")=20 + Set gtmtypes("repl_histinfo2_msg_t",5,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",5,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","histinfo_num")=5 + Set gtmtypes("repl_histinfo2_msg_t",6,"name")="repl_histinfo2_msg_t.filler_32" + Set gtmtypes("repl_histinfo2_msg_t",6,"off")=24 + Set gtmtypes("repl_histinfo2_msg_t",6,"len")=8 + Set gtmtypes("repl_histinfo2_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_histinfo2_msg_t","filler_32")=6 + ; + Set gtmtypes("repl_histinfo_msg_t")="struct" + Set gtmtypes("repl_histinfo_msg_t",0)=20 + Set gtmtypes("repl_histinfo_msg_t","len")=168 + Set gtmtypes("repl_histinfo_msg_t",1,"name")="repl_histinfo_msg_t.type" + Set gtmtypes("repl_histinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","type")=1 + Set gtmtypes("repl_histinfo_msg_t",2,"name")="repl_histinfo_msg_t.len" + Set gtmtypes("repl_histinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","len")=2 + Set gtmtypes("repl_histinfo_msg_t",3,"name")="repl_histinfo_msg_t.history" + Set gtmtypes("repl_histinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo_msg_t",3,"len")=160 + Set gtmtypes("repl_histinfo_msg_t",3,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histinfo_msg_t","history")=3 + Set gtmtypes("repl_histinfo_msg_t",4,"name")="repl_histinfo_msg_t.history.root_primary_instname" + Set gtmtypes("repl_histinfo_msg_t",4,"off")=8 + Set gtmtypes("repl_histinfo_msg_t",4,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.root_primary_instname")=4 + Set gtmtypes("repl_histinfo_msg_t",5,"name")="repl_histinfo_msg_t.history.start_seqno" + Set gtmtypes("repl_histinfo_msg_t",5,"off")=24 + Set gtmtypes("repl_histinfo_msg_t",5,"len")=8 + Set gtmtypes("repl_histinfo_msg_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo_msg_t","history.start_seqno")=5 + Set gtmtypes("repl_histinfo_msg_t",6,"name")="repl_histinfo_msg_t.history.strm_seqno" + Set gtmtypes("repl_histinfo_msg_t",6,"off")=32 + Set gtmtypes("repl_histinfo_msg_t",6,"len")=8 + Set gtmtypes("repl_histinfo_msg_t",6,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo_msg_t","history.strm_seqno")=6 + Set gtmtypes("repl_histinfo_msg_t",7,"name")="repl_histinfo_msg_t.history.root_primary_cycle" + Set gtmtypes("repl_histinfo_msg_t",7,"off")=40 + Set gtmtypes("repl_histinfo_msg_t",7,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.root_primary_cycle")=7 + Set gtmtypes("repl_histinfo_msg_t",8,"name")="repl_histinfo_msg_t.history.creator_pid" + Set gtmtypes("repl_histinfo_msg_t",8,"off")=44 + Set gtmtypes("repl_histinfo_msg_t",8,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.creator_pid")=8 + Set gtmtypes("repl_histinfo_msg_t",9,"name")="repl_histinfo_msg_t.history.created_time" + Set gtmtypes("repl_histinfo_msg_t",9,"off")=48 + Set gtmtypes("repl_histinfo_msg_t",9,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.created_time")=9 + Set gtmtypes("repl_histinfo_msg_t",10,"name")="repl_histinfo_msg_t.history.histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",10,"off")=52 + Set gtmtypes("repl_histinfo_msg_t",10,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",10,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.histinfo_num")=10 + Set gtmtypes("repl_histinfo_msg_t",11,"name")="repl_histinfo_msg_t.history.prev_histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",11,"off")=56 + Set gtmtypes("repl_histinfo_msg_t",11,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",11,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.prev_histinfo_num")=11 + Set gtmtypes("repl_histinfo_msg_t",12,"name")="repl_histinfo_msg_t.history.strm_index" + Set gtmtypes("repl_histinfo_msg_t",12,"off")=60 + Set gtmtypes("repl_histinfo_msg_t",12,"len")=1 + Set gtmtypes("repl_histinfo_msg_t",12,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.strm_index")=12 + Set gtmtypes("repl_histinfo_msg_t",13,"name")="repl_histinfo_msg_t.history.history_type" + Set gtmtypes("repl_histinfo_msg_t",13,"off")=61 + Set gtmtypes("repl_histinfo_msg_t",13,"len")=1 + Set gtmtypes("repl_histinfo_msg_t",13,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.history_type")=13 + Set gtmtypes("repl_histinfo_msg_t",14,"name")="repl_histinfo_msg_t.history.filler_8" + Set gtmtypes("repl_histinfo_msg_t",14,"off")=62 + Set gtmtypes("repl_histinfo_msg_t",14,"len")=2 + Set gtmtypes("repl_histinfo_msg_t",14,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.filler_8")=14 + Set gtmtypes("repl_histinfo_msg_t",15,"name")="repl_histinfo_msg_t.history.lms_group" + Set gtmtypes("repl_histinfo_msg_t",15,"off")=64 + Set gtmtypes("repl_histinfo_msg_t",15,"len")=40 + Set gtmtypes("repl_histinfo_msg_t",15,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group")=15 + Set gtmtypes("repl_histinfo_msg_t",16,"name")="repl_histinfo_msg_t.history.lms_group.created_nodename" + Set gtmtypes("repl_histinfo_msg_t",16,"off")=64 + Set gtmtypes("repl_histinfo_msg_t",16,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",16,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.created_nodename")=16 + Set gtmtypes("repl_histinfo_msg_t",17,"name")="repl_histinfo_msg_t.history.lms_group.this_instname" + Set gtmtypes("repl_histinfo_msg_t",17,"off")=80 + Set gtmtypes("repl_histinfo_msg_t",17,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",17,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.this_instname")=17 + Set gtmtypes("repl_histinfo_msg_t",18,"name")="repl_histinfo_msg_t.history.lms_group.created_time" + Set gtmtypes("repl_histinfo_msg_t",18,"off")=96 + Set gtmtypes("repl_histinfo_msg_t",18,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",18,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.created_time")=18 + Set gtmtypes("repl_histinfo_msg_t",19,"name")="repl_histinfo_msg_t.history.lms_group.creator_pid" + Set gtmtypes("repl_histinfo_msg_t",19,"off")=100 + Set gtmtypes("repl_histinfo_msg_t",19,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",19,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.creator_pid")=19 + Set gtmtypes("repl_histinfo_msg_t",20,"name")="repl_histinfo_msg_t.history.last_histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",20,"off")=104 + Set gtmtypes("repl_histinfo_msg_t",20,"len")=64 + Set gtmtypes("repl_histinfo_msg_t",20,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.last_histinfo_num")=20 + Set gtmtypes("repl_histinfo_msg_t",20,"dim")=16 + ; + Set gtmtypes("repl_histrec_jnl_t")="struct" + Set gtmtypes("repl_histrec_jnl_t",0)=19 + Set gtmtypes("repl_histrec_jnl_t","len")=168 + Set gtmtypes("repl_histrec_jnl_t",1,"name")="repl_histrec_jnl_t.filler_8byte_align" + Set gtmtypes("repl_histrec_jnl_t",1,"off")=4 + Set gtmtypes("repl_histrec_jnl_t",1,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","filler_8byte_align")=1 + Set gtmtypes("repl_histrec_jnl_t",2,"name")="repl_histrec_jnl_t.histcontent" + Set gtmtypes("repl_histrec_jnl_t",2,"off")=8 + Set gtmtypes("repl_histrec_jnl_t",2,"len")=160 + Set gtmtypes("repl_histrec_jnl_t",2,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent")=2 + Set gtmtypes("repl_histrec_jnl_t",3,"name")="repl_histrec_jnl_t.histcontent.root_primary_instname" + Set gtmtypes("repl_histrec_jnl_t",3,"off")=8 + Set gtmtypes("repl_histrec_jnl_t",3,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.root_primary_instname")=3 + Set gtmtypes("repl_histrec_jnl_t",4,"name")="repl_histrec_jnl_t.histcontent.start_seqno" + Set gtmtypes("repl_histrec_jnl_t",4,"off")=24 + Set gtmtypes("repl_histrec_jnl_t",4,"len")=8 + Set gtmtypes("repl_histrec_jnl_t",4,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.start_seqno")=4 + Set gtmtypes("repl_histrec_jnl_t",5,"name")="repl_histrec_jnl_t.histcontent.strm_seqno" + Set gtmtypes("repl_histrec_jnl_t",5,"off")=32 + Set gtmtypes("repl_histrec_jnl_t",5,"len")=8 + Set gtmtypes("repl_histrec_jnl_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.strm_seqno")=5 + Set gtmtypes("repl_histrec_jnl_t",6,"name")="repl_histrec_jnl_t.histcontent.root_primary_cycle" + Set gtmtypes("repl_histrec_jnl_t",6,"off")=40 + Set gtmtypes("repl_histrec_jnl_t",6,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.root_primary_cycle")=6 + Set gtmtypes("repl_histrec_jnl_t",7,"name")="repl_histrec_jnl_t.histcontent.creator_pid" + Set gtmtypes("repl_histrec_jnl_t",7,"off")=44 + Set gtmtypes("repl_histrec_jnl_t",7,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.creator_pid")=7 + Set gtmtypes("repl_histrec_jnl_t",8,"name")="repl_histrec_jnl_t.histcontent.created_time" + Set gtmtypes("repl_histrec_jnl_t",8,"off")=48 + Set gtmtypes("repl_histrec_jnl_t",8,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.created_time")=8 + Set gtmtypes("repl_histrec_jnl_t",9,"name")="repl_histrec_jnl_t.histcontent.histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",9,"off")=52 + Set gtmtypes("repl_histrec_jnl_t",9,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",9,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.histinfo_num")=9 + Set gtmtypes("repl_histrec_jnl_t",10,"name")="repl_histrec_jnl_t.histcontent.prev_histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",10,"off")=56 + Set gtmtypes("repl_histrec_jnl_t",10,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",10,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.prev_histinfo_num")=10 + Set gtmtypes("repl_histrec_jnl_t",11,"name")="repl_histrec_jnl_t.histcontent.strm_index" + Set gtmtypes("repl_histrec_jnl_t",11,"off")=60 + Set gtmtypes("repl_histrec_jnl_t",11,"len")=1 + Set gtmtypes("repl_histrec_jnl_t",11,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.strm_index")=11 + Set gtmtypes("repl_histrec_jnl_t",12,"name")="repl_histrec_jnl_t.histcontent.history_type" + Set gtmtypes("repl_histrec_jnl_t",12,"off")=61 + Set gtmtypes("repl_histrec_jnl_t",12,"len")=1 + Set gtmtypes("repl_histrec_jnl_t",12,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.history_type")=12 + Set gtmtypes("repl_histrec_jnl_t",13,"name")="repl_histrec_jnl_t.histcontent.filler_8" + Set gtmtypes("repl_histrec_jnl_t",13,"off")=62 + Set gtmtypes("repl_histrec_jnl_t",13,"len")=2 + Set gtmtypes("repl_histrec_jnl_t",13,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.filler_8")=13 + Set gtmtypes("repl_histrec_jnl_t",14,"name")="repl_histrec_jnl_t.histcontent.lms_group" + Set gtmtypes("repl_histrec_jnl_t",14,"off")=64 + Set gtmtypes("repl_histrec_jnl_t",14,"len")=40 + Set gtmtypes("repl_histrec_jnl_t",14,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group")=14 + Set gtmtypes("repl_histrec_jnl_t",15,"name")="repl_histrec_jnl_t.histcontent.lms_group.created_nodename" + Set gtmtypes("repl_histrec_jnl_t",15,"off")=64 + Set gtmtypes("repl_histrec_jnl_t",15,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",15,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.created_nodename")=15 + Set gtmtypes("repl_histrec_jnl_t",16,"name")="repl_histrec_jnl_t.histcontent.lms_group.this_instname" + Set gtmtypes("repl_histrec_jnl_t",16,"off")=80 + Set gtmtypes("repl_histrec_jnl_t",16,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",16,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.this_instname")=16 + Set gtmtypes("repl_histrec_jnl_t",17,"name")="repl_histrec_jnl_t.histcontent.lms_group.created_time" + Set gtmtypes("repl_histrec_jnl_t",17,"off")=96 + Set gtmtypes("repl_histrec_jnl_t",17,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",17,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.created_time")=17 + Set gtmtypes("repl_histrec_jnl_t",18,"name")="repl_histrec_jnl_t.histcontent.lms_group.creator_pid" + Set gtmtypes("repl_histrec_jnl_t",18,"off")=100 + Set gtmtypes("repl_histrec_jnl_t",18,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",18,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.creator_pid")=18 + Set gtmtypes("repl_histrec_jnl_t",19,"name")="repl_histrec_jnl_t.histcontent.last_histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",19,"off")=104 + Set gtmtypes("repl_histrec_jnl_t",19,"len")=64 + Set gtmtypes("repl_histrec_jnl_t",19,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.last_histinfo_num")=19 + Set gtmtypes("repl_histrec_jnl_t",19,"dim")=16 + ; + Set gtmtypes("repl_histrec_msg_t")="struct" + Set gtmtypes("repl_histrec_msg_t",0)=22 + Set gtmtypes("repl_histrec_msg_t","len")=176 + Set gtmtypes("repl_histrec_msg_t",1,"name")="repl_histrec_msg_t.type" + Set gtmtypes("repl_histrec_msg_t",1,"off")=0 + Set gtmtypes("repl_histrec_msg_t",1,"len")=4 + Set gtmtypes("repl_histrec_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","type")=1 + Set gtmtypes("repl_histrec_msg_t",2,"name")="repl_histrec_msg_t.len" + Set gtmtypes("repl_histrec_msg_t",2,"off")=4 + Set gtmtypes("repl_histrec_msg_t",2,"len")=4 + Set gtmtypes("repl_histrec_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","len")=2 + Set gtmtypes("repl_histrec_msg_t",3,"name")="repl_histrec_msg_t.histjrec" + Set gtmtypes("repl_histrec_msg_t",3,"off")=8 + Set gtmtypes("repl_histrec_msg_t",3,"len")=168 + Set gtmtypes("repl_histrec_msg_t",3,"type")="repl_histrec_jnl_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec")=3 + Set gtmtypes("repl_histrec_msg_t",4,"name")="repl_histrec_msg_t.histjrec.filler_8byte_align" + Set gtmtypes("repl_histrec_msg_t",4,"off")=12 + Set gtmtypes("repl_histrec_msg_t",4,"len")=4 + Set gtmtypes("repl_histrec_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.filler_8byte_align")=4 + Set gtmtypes("repl_histrec_msg_t",5,"name")="repl_histrec_msg_t.histjrec.histcontent" + Set gtmtypes("repl_histrec_msg_t",5,"off")=16 + Set gtmtypes("repl_histrec_msg_t",5,"len")=160 + Set gtmtypes("repl_histrec_msg_t",5,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent")=5 + Set gtmtypes("repl_histrec_msg_t",6,"name")="repl_histrec_msg_t.histjrec.histcontent.root_primary_instname" + Set gtmtypes("repl_histrec_msg_t",6,"off")=16 + Set gtmtypes("repl_histrec_msg_t",6,"len")=16 + Set gtmtypes("repl_histrec_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.root_primary_instname")=6 + Set gtmtypes("repl_histrec_msg_t",7,"name")="repl_histrec_msg_t.histjrec.histcontent.start_seqno" + Set gtmtypes("repl_histrec_msg_t",7,"off")=32 + Set gtmtypes("repl_histrec_msg_t",7,"len")=8 + Set gtmtypes("repl_histrec_msg_t",7,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.start_seqno")=7 + Set gtmtypes("repl_histrec_msg_t",8,"name")="repl_histrec_msg_t.histjrec.histcontent.strm_seqno" + Set gtmtypes("repl_histrec_msg_t",8,"off")=40 + Set gtmtypes("repl_histrec_msg_t",8,"len")=8 + Set gtmtypes("repl_histrec_msg_t",8,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.strm_seqno")=8 + Set gtmtypes("repl_histrec_msg_t",9,"name")="repl_histrec_msg_t.histjrec.histcontent.root_primary_cycle" + Set gtmtypes("repl_histrec_msg_t",9,"off")=48 + Set gtmtypes("repl_histrec_msg_t",9,"len")=4 + Set gtmtypes("repl_histrec_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.root_primary_cycle")=9 + Set gtmtypes("repl_histrec_msg_t",10,"name")="repl_histrec_msg_t.histjrec.histcontent.creator_pid" + Set gtmtypes("repl_histrec_msg_t",10,"off")=52 + Set gtmtypes("repl_histrec_msg_t",10,"len")=4 + Set gtmtypes("repl_histrec_msg_t",10,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.creator_pid")=10 + Set gtmtypes("repl_histrec_msg_t",11,"name")="repl_histrec_msg_t.histjrec.histcontent.created_time" + Set gtmtypes("repl_histrec_msg_t",11,"off")=56 + Set gtmtypes("repl_histrec_msg_t",11,"len")=4 + Set gtmtypes("repl_histrec_msg_t",11,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.created_time")=11 + Set gtmtypes("repl_histrec_msg_t",12,"name")="repl_histrec_msg_t.histjrec.histcontent.histinfo_num" + Set gtmtypes("repl_histrec_msg_t",12,"off")=60 + Set gtmtypes("repl_histrec_msg_t",12,"len")=4 + Set gtmtypes("repl_histrec_msg_t",12,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.histinfo_num")=12 + Set gtmtypes("repl_histrec_msg_t",13,"name")="repl_histrec_msg_t.histjrec.histcontent.prev_histinfo_num" + Set gtmtypes("repl_histrec_msg_t",13,"off")=64 + Set gtmtypes("repl_histrec_msg_t",13,"len")=4 + Set gtmtypes("repl_histrec_msg_t",13,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.prev_histinfo_num")=13 + Set gtmtypes("repl_histrec_msg_t",14,"name")="repl_histrec_msg_t.histjrec.histcontent.strm_index" + Set gtmtypes("repl_histrec_msg_t",14,"off")=68 + Set gtmtypes("repl_histrec_msg_t",14,"len")=1 + Set gtmtypes("repl_histrec_msg_t",14,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.strm_index")=14 + Set gtmtypes("repl_histrec_msg_t",15,"name")="repl_histrec_msg_t.histjrec.histcontent.history_type" + Set gtmtypes("repl_histrec_msg_t",15,"off")=69 + Set gtmtypes("repl_histrec_msg_t",15,"len")=1 + Set gtmtypes("repl_histrec_msg_t",15,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.history_type")=15 + Set gtmtypes("repl_histrec_msg_t",16,"name")="repl_histrec_msg_t.histjrec.histcontent.filler_8" + Set gtmtypes("repl_histrec_msg_t",16,"off")=70 + Set gtmtypes("repl_histrec_msg_t",16,"len")=2 + Set gtmtypes("repl_histrec_msg_t",16,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.filler_8")=16 + Set gtmtypes("repl_histrec_msg_t",17,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group" + Set gtmtypes("repl_histrec_msg_t",17,"off")=72 + Set gtmtypes("repl_histrec_msg_t",17,"len")=40 + Set gtmtypes("repl_histrec_msg_t",17,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group")=17 + Set gtmtypes("repl_histrec_msg_t",18,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.created_nodename" + Set gtmtypes("repl_histrec_msg_t",18,"off")=72 + Set gtmtypes("repl_histrec_msg_t",18,"len")=16 + Set gtmtypes("repl_histrec_msg_t",18,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.created_nodename")=18 + Set gtmtypes("repl_histrec_msg_t",19,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.this_instname" + Set gtmtypes("repl_histrec_msg_t",19,"off")=88 + Set gtmtypes("repl_histrec_msg_t",19,"len")=16 + Set gtmtypes("repl_histrec_msg_t",19,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.this_instname")=19 + Set gtmtypes("repl_histrec_msg_t",20,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.created_time" + Set gtmtypes("repl_histrec_msg_t",20,"off")=104 + Set gtmtypes("repl_histrec_msg_t",20,"len")=4 + Set gtmtypes("repl_histrec_msg_t",20,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.created_time")=20 + Set gtmtypes("repl_histrec_msg_t",21,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.creator_pid" + Set gtmtypes("repl_histrec_msg_t",21,"off")=108 + Set gtmtypes("repl_histrec_msg_t",21,"len")=4 + Set gtmtypes("repl_histrec_msg_t",21,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.creator_pid")=21 + Set gtmtypes("repl_histrec_msg_t",22,"name")="repl_histrec_msg_t.histjrec.histcontent.last_histinfo_num" + Set gtmtypes("repl_histrec_msg_t",22,"off")=112 + Set gtmtypes("repl_histrec_msg_t",22,"len")=64 + Set gtmtypes("repl_histrec_msg_t",22,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.last_histinfo_num")=22 + Set gtmtypes("repl_histrec_msg_t",22,"dim")=16 + ; + Set gtmtypes("repl_inst_hdr")="struct" + Set gtmtypes("repl_inst_hdr",0)=45 + Set gtmtypes("repl_inst_hdr","len")=1024 + Set gtmtypes("repl_inst_hdr",1,"name")="repl_inst_hdr.label" + Set gtmtypes("repl_inst_hdr",1,"off")=0 + Set gtmtypes("repl_inst_hdr",1,"len")=12 + Set gtmtypes("repl_inst_hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","label")=1 + Set gtmtypes("repl_inst_hdr",2,"name")="repl_inst_hdr.replinst_minorver" + Set gtmtypes("repl_inst_hdr",2,"off")=12 + Set gtmtypes("repl_inst_hdr",2,"len")=1 + Set gtmtypes("repl_inst_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","replinst_minorver")=2 + Set gtmtypes("repl_inst_hdr",3,"name")="repl_inst_hdr.is_little_endian" + Set gtmtypes("repl_inst_hdr",3,"off")=13 + Set gtmtypes("repl_inst_hdr",3,"len")=1 + Set gtmtypes("repl_inst_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","is_little_endian")=3 + Set gtmtypes("repl_inst_hdr",4,"name")="repl_inst_hdr.is_64bit" + Set gtmtypes("repl_inst_hdr",4,"off")=14 + Set gtmtypes("repl_inst_hdr",4,"len")=1 + Set gtmtypes("repl_inst_hdr",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","is_64bit")=4 + Set gtmtypes("repl_inst_hdr",5,"name")="repl_inst_hdr.filler_16" + Set gtmtypes("repl_inst_hdr",5,"off")=15 + Set gtmtypes("repl_inst_hdr",5,"len")=1 + Set gtmtypes("repl_inst_hdr",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","filler_16")=5 + Set gtmtypes("repl_inst_hdr",6,"name")="repl_inst_hdr.jnlpool_semid" + Set gtmtypes("repl_inst_hdr",6,"off")=16 + Set gtmtypes("repl_inst_hdr",6,"len")=4 + Set gtmtypes("repl_inst_hdr",6,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_semid")=6 + Set gtmtypes("repl_inst_hdr",7,"name")="repl_inst_hdr.jnlpool_shmid" + Set gtmtypes("repl_inst_hdr",7,"off")=20 + Set gtmtypes("repl_inst_hdr",7,"len")=4 + Set gtmtypes("repl_inst_hdr",7,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_shmid")=7 + Set gtmtypes("repl_inst_hdr",8,"name")="repl_inst_hdr.recvpool_semid" + Set gtmtypes("repl_inst_hdr",8,"off")=24 + Set gtmtypes("repl_inst_hdr",8,"len")=4 + Set gtmtypes("repl_inst_hdr",8,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","recvpool_semid")=8 + Set gtmtypes("repl_inst_hdr",9,"name")="repl_inst_hdr.recvpool_shmid" + Set gtmtypes("repl_inst_hdr",9,"off")=28 + Set gtmtypes("repl_inst_hdr",9,"len")=4 + Set gtmtypes("repl_inst_hdr",9,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","recvpool_shmid")=9 + Set gtmtypes("repl_inst_hdr",10,"name")="repl_inst_hdr.jnlpool_semid_ctime" + Set gtmtypes("repl_inst_hdr",10,"off")=32 + Set gtmtypes("repl_inst_hdr",10,"len")=4 + Set gtmtypes("repl_inst_hdr",10,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_semid_ctime")=10 + Set gtmtypes("repl_inst_hdr",11,"name")="repl_inst_hdr.filler8bytealign_1" + Set gtmtypes("repl_inst_hdr",11,"off")=36 + Set gtmtypes("repl_inst_hdr",11,"len")=4 + Set gtmtypes("repl_inst_hdr",11,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_1")=11 + Set gtmtypes("repl_inst_hdr",12,"name")="repl_inst_hdr.jnlpool_shmid_ctime" + Set gtmtypes("repl_inst_hdr",12,"off")=40 + Set gtmtypes("repl_inst_hdr",12,"len")=4 + Set gtmtypes("repl_inst_hdr",12,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_shmid_ctime")=12 + Set gtmtypes("repl_inst_hdr",13,"name")="repl_inst_hdr.filler8bytealign_2" + Set gtmtypes("repl_inst_hdr",13,"off")=44 + Set gtmtypes("repl_inst_hdr",13,"len")=4 + Set gtmtypes("repl_inst_hdr",13,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_2")=13 + Set gtmtypes("repl_inst_hdr",14,"name")="repl_inst_hdr.recvpool_semid_ctime" + Set gtmtypes("repl_inst_hdr",14,"off")=48 + Set gtmtypes("repl_inst_hdr",14,"len")=4 + Set gtmtypes("repl_inst_hdr",14,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","recvpool_semid_ctime")=14 + Set gtmtypes("repl_inst_hdr",15,"name")="repl_inst_hdr.filler8bytealign_3" + Set gtmtypes("repl_inst_hdr",15,"off")=52 + Set gtmtypes("repl_inst_hdr",15,"len")=4 + Set gtmtypes("repl_inst_hdr",15,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_3")=15 + Set gtmtypes("repl_inst_hdr",16,"name")="repl_inst_hdr.recvpool_shmid_ctime" + Set gtmtypes("repl_inst_hdr",16,"off")=56 + Set gtmtypes("repl_inst_hdr",16,"len")=4 + Set gtmtypes("repl_inst_hdr",16,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","recvpool_shmid_ctime")=16 + Set gtmtypes("repl_inst_hdr",17,"name")="repl_inst_hdr.filler8bytealign_4" + Set gtmtypes("repl_inst_hdr",17,"off")=60 + Set gtmtypes("repl_inst_hdr",17,"len")=4 + Set gtmtypes("repl_inst_hdr",17,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_4")=17 + Set gtmtypes("repl_inst_hdr",18,"name")="repl_inst_hdr.inst_info" + Set gtmtypes("repl_inst_hdr",18,"off")=64 + Set gtmtypes("repl_inst_hdr",18,"len")=40 + Set gtmtypes("repl_inst_hdr",18,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","inst_info")=18 + Set gtmtypes("repl_inst_hdr",19,"name")="repl_inst_hdr.inst_info.created_nodename" + Set gtmtypes("repl_inst_hdr",19,"off")=64 + Set gtmtypes("repl_inst_hdr",19,"len")=16 + Set gtmtypes("repl_inst_hdr",19,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","inst_info.created_nodename")=19 + Set gtmtypes("repl_inst_hdr",20,"name")="repl_inst_hdr.inst_info.this_instname" + Set gtmtypes("repl_inst_hdr",20,"off")=80 + Set gtmtypes("repl_inst_hdr",20,"len")=16 + Set gtmtypes("repl_inst_hdr",20,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","inst_info.this_instname")=20 + Set gtmtypes("repl_inst_hdr",21,"name")="repl_inst_hdr.inst_info.created_time" + Set gtmtypes("repl_inst_hdr",21,"off")=96 + Set gtmtypes("repl_inst_hdr",21,"len")=4 + Set gtmtypes("repl_inst_hdr",21,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","inst_info.created_time")=21 + Set gtmtypes("repl_inst_hdr",22,"name")="repl_inst_hdr.inst_info.creator_pid" + Set gtmtypes("repl_inst_hdr",22,"off")=100 + Set gtmtypes("repl_inst_hdr",22,"len")=4 + Set gtmtypes("repl_inst_hdr",22,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","inst_info.creator_pid")=22 + Set gtmtypes("repl_inst_hdr",23,"name")="repl_inst_hdr.lms_group_info" + Set gtmtypes("repl_inst_hdr",23,"off")=104 + Set gtmtypes("repl_inst_hdr",23,"len")=40 + Set gtmtypes("repl_inst_hdr",23,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info")=23 + Set gtmtypes("repl_inst_hdr",24,"name")="repl_inst_hdr.lms_group_info.created_nodename" + Set gtmtypes("repl_inst_hdr",24,"off")=104 + Set gtmtypes("repl_inst_hdr",24,"len")=16 + Set gtmtypes("repl_inst_hdr",24,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.created_nodename")=24 + Set gtmtypes("repl_inst_hdr",25,"name")="repl_inst_hdr.lms_group_info.this_instname" + Set gtmtypes("repl_inst_hdr",25,"off")=120 + Set gtmtypes("repl_inst_hdr",25,"len")=16 + Set gtmtypes("repl_inst_hdr",25,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.this_instname")=25 + Set gtmtypes("repl_inst_hdr",26,"name")="repl_inst_hdr.lms_group_info.created_time" + Set gtmtypes("repl_inst_hdr",26,"off")=136 + Set gtmtypes("repl_inst_hdr",26,"len")=4 + Set gtmtypes("repl_inst_hdr",26,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.created_time")=26 + Set gtmtypes("repl_inst_hdr",27,"name")="repl_inst_hdr.lms_group_info.creator_pid" + Set gtmtypes("repl_inst_hdr",27,"off")=140 + Set gtmtypes("repl_inst_hdr",27,"len")=4 + Set gtmtypes("repl_inst_hdr",27,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.creator_pid")=27 + Set gtmtypes("repl_inst_hdr",28,"name")="repl_inst_hdr.jnl_seqno" + Set gtmtypes("repl_inst_hdr",28,"off")=144 + Set gtmtypes("repl_inst_hdr",28,"len")=8 + Set gtmtypes("repl_inst_hdr",28,"type")="uint64_t" + Set gtmtypfldindx("repl_inst_hdr","jnl_seqno")=28 + Set gtmtypes("repl_inst_hdr",29,"name")="repl_inst_hdr.root_primary_cycle" + Set gtmtypes("repl_inst_hdr",29,"off")=152 + Set gtmtypes("repl_inst_hdr",29,"len")=4 + Set gtmtypes("repl_inst_hdr",29,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","root_primary_cycle")=29 + Set gtmtypes("repl_inst_hdr",30,"name")="repl_inst_hdr.num_histinfo" + Set gtmtypes("repl_inst_hdr",30,"off")=156 + Set gtmtypes("repl_inst_hdr",30,"len")=4 + Set gtmtypes("repl_inst_hdr",30,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","num_histinfo")=30 + Set gtmtypes("repl_inst_hdr",31,"name")="repl_inst_hdr.num_alloc_histinfo" + Set gtmtypes("repl_inst_hdr",31,"off")=160 + Set gtmtypes("repl_inst_hdr",31,"len")=4 + Set gtmtypes("repl_inst_hdr",31,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","num_alloc_histinfo")=31 + Set gtmtypes("repl_inst_hdr",32,"name")="repl_inst_hdr.crash" + Set gtmtypes("repl_inst_hdr",32,"off")=164 + Set gtmtypes("repl_inst_hdr",32,"len")=4 + Set gtmtypes("repl_inst_hdr",32,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","crash")=32 + Set gtmtypes("repl_inst_hdr",33,"name")="repl_inst_hdr.was_rootprimary" + Set gtmtypes("repl_inst_hdr",33,"off")=168 + Set gtmtypes("repl_inst_hdr",33,"len")=4 + Set gtmtypes("repl_inst_hdr",33,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","was_rootprimary")=33 + Set gtmtypes("repl_inst_hdr",34,"name")="repl_inst_hdr.is_supplementary" + Set gtmtypes("repl_inst_hdr",34,"off")=172 + Set gtmtypes("repl_inst_hdr",34,"len")=4 + Set gtmtypes("repl_inst_hdr",34,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","is_supplementary")=34 + Set gtmtypes("repl_inst_hdr",35,"name")="repl_inst_hdr.last_histinfo_num" + Set gtmtypes("repl_inst_hdr",35,"off")=176 + Set gtmtypes("repl_inst_hdr",35,"len")=64 + Set gtmtypes("repl_inst_hdr",35,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","last_histinfo_num")=35 + Set gtmtypes("repl_inst_hdr",35,"dim")=16 + Set gtmtypes("repl_inst_hdr",36,"name")="repl_inst_hdr.strm_seqno" + Set gtmtypes("repl_inst_hdr",36,"off")=240 + Set gtmtypes("repl_inst_hdr",36,"len")=128 + Set gtmtypes("repl_inst_hdr",36,"type")="uint64_t" + Set gtmtypfldindx("repl_inst_hdr","strm_seqno")=36 + Set gtmtypes("repl_inst_hdr",36,"dim")=16 + Set gtmtypes("repl_inst_hdr",37,"name")="repl_inst_hdr.strm_group_info" + Set gtmtypes("repl_inst_hdr",37,"off")=368 + Set gtmtypes("repl_inst_hdr",37,"len")=600 + Set gtmtypes("repl_inst_hdr",37,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info")=37 + Set gtmtypes("repl_inst_hdr",37,"dim")=15 + Set gtmtypes("repl_inst_hdr",38,"name")="repl_inst_hdr.strm_group_info[0].created_nodename" + Set gtmtypes("repl_inst_hdr",38,"off")=368 + Set gtmtypes("repl_inst_hdr",38,"len")=16 + Set gtmtypes("repl_inst_hdr",38,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].created_nodename")=38 + Set gtmtypes("repl_inst_hdr",39,"name")="repl_inst_hdr.strm_group_info[0].this_instname" + Set gtmtypes("repl_inst_hdr",39,"off")=384 + Set gtmtypes("repl_inst_hdr",39,"len")=16 + Set gtmtypes("repl_inst_hdr",39,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].this_instname")=39 + Set gtmtypes("repl_inst_hdr",40,"name")="repl_inst_hdr.strm_group_info[0].created_time" + Set gtmtypes("repl_inst_hdr",40,"off")=400 + Set gtmtypes("repl_inst_hdr",40,"len")=4 + Set gtmtypes("repl_inst_hdr",40,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].created_time")=40 + Set gtmtypes("repl_inst_hdr",41,"name")="repl_inst_hdr.strm_group_info[0].creator_pid" + Set gtmtypes("repl_inst_hdr",41,"off")=404 + Set gtmtypes("repl_inst_hdr",41,"len")=4 + Set gtmtypes("repl_inst_hdr",41,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].creator_pid")=41 + Set gtmtypes("repl_inst_hdr",42,"name")="repl_inst_hdr.file_corrupt" + Set gtmtypes("repl_inst_hdr",42,"off")=968 + Set gtmtypes("repl_inst_hdr",42,"len")=4 + Set gtmtypes("repl_inst_hdr",42,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","file_corrupt")=42 + Set gtmtypes("repl_inst_hdr",43,"name")="repl_inst_hdr.ftok_counter_halted" + Set gtmtypes("repl_inst_hdr",43,"off")=972 + Set gtmtypes("repl_inst_hdr",43,"len")=4 + Set gtmtypes("repl_inst_hdr",43,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","ftok_counter_halted")=43 + Set gtmtypes("repl_inst_hdr",44,"name")="repl_inst_hdr.qdbrundown" + Set gtmtypes("repl_inst_hdr",44,"off")=976 + Set gtmtypes("repl_inst_hdr",44,"len")=4 + Set gtmtypes("repl_inst_hdr",44,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","qdbrundown")=44 + Set gtmtypes("repl_inst_hdr",45,"name")="repl_inst_hdr.filler_1024" + Set gtmtypes("repl_inst_hdr",45,"off")=980 + Set gtmtypes("repl_inst_hdr",45,"len")=44 + Set gtmtypes("repl_inst_hdr",45,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","filler_1024")=45 + ; + Set gtmtypes("repl_inst_uuid")="struct" + Set gtmtypes("repl_inst_uuid",0)=4 + Set gtmtypes("repl_inst_uuid","len")=40 + Set gtmtypes("repl_inst_uuid",1,"name")="repl_inst_uuid.created_nodename" + Set gtmtypes("repl_inst_uuid",1,"off")=0 + Set gtmtypes("repl_inst_uuid",1,"len")=16 + Set gtmtypes("repl_inst_uuid",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_uuid","created_nodename")=1 + Set gtmtypes("repl_inst_uuid",2,"name")="repl_inst_uuid.this_instname" + Set gtmtypes("repl_inst_uuid",2,"off")=16 + Set gtmtypes("repl_inst_uuid",2,"len")=16 + Set gtmtypes("repl_inst_uuid",2,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_uuid","this_instname")=2 + Set gtmtypes("repl_inst_uuid",3,"name")="repl_inst_uuid.created_time" + Set gtmtypes("repl_inst_uuid",3,"off")=32 + Set gtmtypes("repl_inst_uuid",3,"len")=4 + Set gtmtypes("repl_inst_uuid",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_uuid","created_time")=3 + Set gtmtypes("repl_inst_uuid",4,"name")="repl_inst_uuid.creator_pid" + Set gtmtypes("repl_inst_uuid",4,"off")=36 + Set gtmtypes("repl_inst_uuid",4,"len")=4 + Set gtmtypes("repl_inst_uuid",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_uuid","creator_pid")=4 + ; + Set gtmtypes("repl_instinfo_msg_t")="struct" + Set gtmtypes("repl_instinfo_msg_t",0)=11 + Set gtmtypes("repl_instinfo_msg_t","len")=80 + Set gtmtypes("repl_instinfo_msg_t",1,"name")="repl_instinfo_msg_t.type" + Set gtmtypes("repl_instinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_instinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_instinfo_msg_t","type")=1 + Set gtmtypes("repl_instinfo_msg_t",2,"name")="repl_instinfo_msg_t.len" + Set gtmtypes("repl_instinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_instinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_instinfo_msg_t","len")=2 + Set gtmtypes("repl_instinfo_msg_t",3,"name")="repl_instinfo_msg_t.instname" + Set gtmtypes("repl_instinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_instinfo_msg_t",3,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","instname")=3 + Set gtmtypes("repl_instinfo_msg_t",4,"name")="repl_instinfo_msg_t.strm_jnl_seqno" + Set gtmtypes("repl_instinfo_msg_t",4,"off")=24 + Set gtmtypes("repl_instinfo_msg_t",4,"len")=8 + Set gtmtypes("repl_instinfo_msg_t",4,"type")="uint64_t" + Set gtmtypfldindx("repl_instinfo_msg_t","strm_jnl_seqno")=4 + Set gtmtypes("repl_instinfo_msg_t",5,"name")="repl_instinfo_msg_t.lms_group_info" + Set gtmtypes("repl_instinfo_msg_t",5,"off")=32 + Set gtmtypes("repl_instinfo_msg_t",5,"len")=40 + Set gtmtypes("repl_instinfo_msg_t",5,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info")=5 + Set gtmtypes("repl_instinfo_msg_t",6,"name")="repl_instinfo_msg_t.lms_group_info.created_nodename" + Set gtmtypes("repl_instinfo_msg_t",6,"off")=32 + Set gtmtypes("repl_instinfo_msg_t",6,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.created_nodename")=6 + Set gtmtypes("repl_instinfo_msg_t",7,"name")="repl_instinfo_msg_t.lms_group_info.this_instname" + Set gtmtypes("repl_instinfo_msg_t",7,"off")=48 + Set gtmtypes("repl_instinfo_msg_t",7,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.this_instname")=7 + Set gtmtypes("repl_instinfo_msg_t",8,"name")="repl_instinfo_msg_t.lms_group_info.created_time" + Set gtmtypes("repl_instinfo_msg_t",8,"off")=64 + Set gtmtypes("repl_instinfo_msg_t",8,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.created_time")=8 + Set gtmtypes("repl_instinfo_msg_t",9,"name")="repl_instinfo_msg_t.lms_group_info.creator_pid" + Set gtmtypes("repl_instinfo_msg_t",9,"off")=68 + Set gtmtypes("repl_instinfo_msg_t",9,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.creator_pid")=9 + Set gtmtypes("repl_instinfo_msg_t",10,"name")="repl_instinfo_msg_t.was_rootprimary" + Set gtmtypes("repl_instinfo_msg_t",10,"off")=72 + Set gtmtypes("repl_instinfo_msg_t",10,"len")=1 + Set gtmtypes("repl_instinfo_msg_t",10,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","was_rootprimary")=10 + Set gtmtypes("repl_instinfo_msg_t",11,"name")="repl_instinfo_msg_t.filler_32" + Set gtmtypes("repl_instinfo_msg_t",11,"off")=73 + Set gtmtypes("repl_instinfo_msg_t",11,"len")=7 + Set gtmtypes("repl_instinfo_msg_t",11,"type")="char" + Set gtmtypfldindx("repl_instinfo_msg_t","filler_32")=11 + ; + Set gtmtypes("repl_logfile_info_msg_t")="struct" + Set gtmtypes("repl_logfile_info_msg_t",0)=7 + Set gtmtypes("repl_logfile_info_msg_t","len")=1056 + Set gtmtypes("repl_logfile_info_msg_t",1,"name")="repl_logfile_info_msg_t.type" + Set gtmtypes("repl_logfile_info_msg_t",1,"off")=0 + Set gtmtypes("repl_logfile_info_msg_t",1,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","type")=1 + Set gtmtypes("repl_logfile_info_msg_t",2,"name")="repl_logfile_info_msg_t.len" + Set gtmtypes("repl_logfile_info_msg_t",2,"off")=4 + Set gtmtypes("repl_logfile_info_msg_t",2,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","len")=2 + Set gtmtypes("repl_logfile_info_msg_t",3,"name")="repl_logfile_info_msg_t.fullpath_len" + Set gtmtypes("repl_logfile_info_msg_t",3,"off")=8 + Set gtmtypes("repl_logfile_info_msg_t",3,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","fullpath_len")=3 + Set gtmtypes("repl_logfile_info_msg_t",4,"name")="repl_logfile_info_msg_t.pid" + Set gtmtypes("repl_logfile_info_msg_t",4,"off")=12 + Set gtmtypes("repl_logfile_info_msg_t",4,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_logfile_info_msg_t","pid")=4 + Set gtmtypes("repl_logfile_info_msg_t",5,"name")="repl_logfile_info_msg_t.proto_ver" + Set gtmtypes("repl_logfile_info_msg_t",5,"off")=16 + Set gtmtypes("repl_logfile_info_msg_t",5,"len")=1 + Set gtmtypes("repl_logfile_info_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","proto_ver")=5 + Set gtmtypes("repl_logfile_info_msg_t",6,"name")="repl_logfile_info_msg_t.filler_32" + Set gtmtypes("repl_logfile_info_msg_t",6,"off")=17 + Set gtmtypes("repl_logfile_info_msg_t",6,"len")=15 + Set gtmtypes("repl_logfile_info_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","filler_32")=6 + Set gtmtypes("repl_logfile_info_msg_t",7,"name")="repl_logfile_info_msg_t.fullpath" + Set gtmtypes("repl_logfile_info_msg_t",7,"off")=32 + Set gtmtypes("repl_logfile_info_msg_t",7,"len")=1024 + Set gtmtypes("repl_logfile_info_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","fullpath")=7 + ; + Set gtmtypes("repl_msg_t")="struct" + Set gtmtypes("repl_msg_t",0)=3 + Set gtmtypes("repl_msg_t","len")=32 + Set gtmtypes("repl_msg_t",1,"name")="repl_msg_t.type" + Set gtmtypes("repl_msg_t",1,"off")=0 + Set gtmtypes("repl_msg_t",1,"len")=4 + Set gtmtypes("repl_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_msg_t","type")=1 + Set gtmtypes("repl_msg_t",2,"name")="repl_msg_t.len" + Set gtmtypes("repl_msg_t",2,"off")=4 + Set gtmtypes("repl_msg_t",2,"len")=4 + Set gtmtypes("repl_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_msg_t","len")=2 + Set gtmtypes("repl_msg_t",3,"name")="repl_msg_t.msg" + Set gtmtypes("repl_msg_t",3,"off")=8 + Set gtmtypes("repl_msg_t",3,"len")=24 + Set gtmtypes("repl_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_msg_t","msg")=3 + ; + Set gtmtypes("repl_needhistinfo_msg_t")="struct" + Set gtmtypes("repl_needhistinfo_msg_t",0)=6 + Set gtmtypes("repl_needhistinfo_msg_t","len")=32 + Set gtmtypes("repl_needhistinfo_msg_t",1,"name")="repl_needhistinfo_msg_t.type" + Set gtmtypes("repl_needhistinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_needhistinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","type")=1 + Set gtmtypes("repl_needhistinfo_msg_t",2,"name")="repl_needhistinfo_msg_t.len" + Set gtmtypes("repl_needhistinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_needhistinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","len")=2 + Set gtmtypes("repl_needhistinfo_msg_t",3,"name")="repl_needhistinfo_msg_t.seqno" + Set gtmtypes("repl_needhistinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_needhistinfo_msg_t",3,"len")=8 + Set gtmtypes("repl_needhistinfo_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_needhistinfo_msg_t","seqno")=3 + Set gtmtypes("repl_needhistinfo_msg_t",4,"name")="repl_needhistinfo_msg_t.strm_num" + Set gtmtypes("repl_needhistinfo_msg_t",4,"off")=16 + Set gtmtypes("repl_needhistinfo_msg_t",4,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",4,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","strm_num")=4 + Set gtmtypes("repl_needhistinfo_msg_t",5,"name")="repl_needhistinfo_msg_t.histinfo_num" + Set gtmtypes("repl_needhistinfo_msg_t",5,"off")=20 + Set gtmtypes("repl_needhistinfo_msg_t",5,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",5,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","histinfo_num")=5 + Set gtmtypes("repl_needhistinfo_msg_t",6,"name")="repl_needhistinfo_msg_t.filler_32" + Set gtmtypes("repl_needhistinfo_msg_t",6,"off")=24 + Set gtmtypes("repl_needhistinfo_msg_t",6,"len")=8 + Set gtmtypes("repl_needhistinfo_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_needhistinfo_msg_t","filler_32")=6 + ; + Set gtmtypes("repl_needinst_msg_t")="struct" + Set gtmtypes("repl_needinst_msg_t",0)=13 + Set gtmtypes("repl_needinst_msg_t","len")=72 + Set gtmtypes("repl_needinst_msg_t",1,"name")="repl_needinst_msg_t.type" + Set gtmtypes("repl_needinst_msg_t",1,"off")=0 + Set gtmtypes("repl_needinst_msg_t",1,"len")=4 + Set gtmtypes("repl_needinst_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needinst_msg_t","type")=1 + Set gtmtypes("repl_needinst_msg_t",2,"name")="repl_needinst_msg_t.len" + Set gtmtypes("repl_needinst_msg_t",2,"off")=4 + Set gtmtypes("repl_needinst_msg_t",2,"len")=4 + Set gtmtypes("repl_needinst_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needinst_msg_t","len")=2 + Set gtmtypes("repl_needinst_msg_t",3,"name")="repl_needinst_msg_t.instname" + Set gtmtypes("repl_needinst_msg_t",3,"off")=8 + Set gtmtypes("repl_needinst_msg_t",3,"len")=16 + Set gtmtypes("repl_needinst_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","instname")=3 + Set gtmtypes("repl_needinst_msg_t",4,"name")="repl_needinst_msg_t.lms_group_info" + Set gtmtypes("repl_needinst_msg_t",4,"off")=24 + Set gtmtypes("repl_needinst_msg_t",4,"len")=40 + Set gtmtypes("repl_needinst_msg_t",4,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info")=4 + Set gtmtypes("repl_needinst_msg_t",5,"name")="repl_needinst_msg_t.lms_group_info.created_nodename" + Set gtmtypes("repl_needinst_msg_t",5,"off")=24 + Set gtmtypes("repl_needinst_msg_t",5,"len")=16 + Set gtmtypes("repl_needinst_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.created_nodename")=5 + Set gtmtypes("repl_needinst_msg_t",6,"name")="repl_needinst_msg_t.lms_group_info.this_instname" + Set gtmtypes("repl_needinst_msg_t",6,"off")=40 + Set gtmtypes("repl_needinst_msg_t",6,"len")=16 + Set gtmtypes("repl_needinst_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.this_instname")=6 + Set gtmtypes("repl_needinst_msg_t",7,"name")="repl_needinst_msg_t.lms_group_info.created_time" + Set gtmtypes("repl_needinst_msg_t",7,"off")=56 + Set gtmtypes("repl_needinst_msg_t",7,"len")=4 + Set gtmtypes("repl_needinst_msg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.created_time")=7 + Set gtmtypes("repl_needinst_msg_t",8,"name")="repl_needinst_msg_t.lms_group_info.creator_pid" + Set gtmtypes("repl_needinst_msg_t",8,"off")=60 + Set gtmtypes("repl_needinst_msg_t",8,"len")=4 + Set gtmtypes("repl_needinst_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.creator_pid")=8 + Set gtmtypes("repl_needinst_msg_t",9,"name")="repl_needinst_msg_t.proto_ver" + Set gtmtypes("repl_needinst_msg_t",9,"off")=64 + Set gtmtypes("repl_needinst_msg_t",9,"len")=1 + Set gtmtypes("repl_needinst_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","proto_ver")=9 + Set gtmtypes("repl_needinst_msg_t",10,"name")="repl_needinst_msg_t.is_rootprimary" + Set gtmtypes("repl_needinst_msg_t",10,"off")=65 + Set gtmtypes("repl_needinst_msg_t",10,"len")=1 + Set gtmtypes("repl_needinst_msg_t",10,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","is_rootprimary")=10 + Set gtmtypes("repl_needinst_msg_t",11,"name")="repl_needinst_msg_t.is_supplementary" + Set gtmtypes("repl_needinst_msg_t",11,"off")=66 + Set gtmtypes("repl_needinst_msg_t",11,"len")=1 + Set gtmtypes("repl_needinst_msg_t",11,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","is_supplementary")=11 + Set gtmtypes("repl_needinst_msg_t",12,"name")="repl_needinst_msg_t.jnl_ver" + Set gtmtypes("repl_needinst_msg_t",12,"off")=67 + Set gtmtypes("repl_needinst_msg_t",12,"len")=1 + Set gtmtypes("repl_needinst_msg_t",12,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","jnl_ver")=12 + Set gtmtypes("repl_needinst_msg_t",13,"name")="repl_needinst_msg_t.filler_32" + Set gtmtypes("repl_needinst_msg_t",13,"off")=68 + Set gtmtypes("repl_needinst_msg_t",13,"len")=4 + Set gtmtypes("repl_needinst_msg_t",13,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","filler_32")=13 + ; + Set gtmtypes("repl_needstrminfo_msg_t")="struct" + Set gtmtypes("repl_needstrminfo_msg_t",0)=4 + Set gtmtypes("repl_needstrminfo_msg_t","len")=32 + Set gtmtypes("repl_needstrminfo_msg_t",1,"name")="repl_needstrminfo_msg_t.type" + Set gtmtypes("repl_needstrminfo_msg_t",1,"off")=0 + Set gtmtypes("repl_needstrminfo_msg_t",1,"len")=4 + Set gtmtypes("repl_needstrminfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needstrminfo_msg_t","type")=1 + Set gtmtypes("repl_needstrminfo_msg_t",2,"name")="repl_needstrminfo_msg_t.len" + Set gtmtypes("repl_needstrminfo_msg_t",2,"off")=4 + Set gtmtypes("repl_needstrminfo_msg_t",2,"len")=4 + Set gtmtypes("repl_needstrminfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needstrminfo_msg_t","len")=2 + Set gtmtypes("repl_needstrminfo_msg_t",3,"name")="repl_needstrminfo_msg_t.seqno" + Set gtmtypes("repl_needstrminfo_msg_t",3,"off")=8 + Set gtmtypes("repl_needstrminfo_msg_t",3,"len")=8 + Set gtmtypes("repl_needstrminfo_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_needstrminfo_msg_t","seqno")=3 + Set gtmtypes("repl_needstrminfo_msg_t",4,"name")="repl_needstrminfo_msg_t.filler_32" + Set gtmtypes("repl_needstrminfo_msg_t",4,"off")=16 + Set gtmtypes("repl_needstrminfo_msg_t",4,"len")=16 + Set gtmtypes("repl_needstrminfo_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_needstrminfo_msg_t","filler_32")=4 + ; + Set gtmtypes("repl_old_instinfo_msg_t")="struct" + Set gtmtypes("repl_old_instinfo_msg_t",0)=5 + Set gtmtypes("repl_old_instinfo_msg_t","len")=32 + Set gtmtypes("repl_old_instinfo_msg_t",1,"name")="repl_old_instinfo_msg_t.type" + Set gtmtypes("repl_old_instinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_old_instinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_old_instinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_instinfo_msg_t","type")=1 + Set gtmtypes("repl_old_instinfo_msg_t",2,"name")="repl_old_instinfo_msg_t.len" + Set gtmtypes("repl_old_instinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_old_instinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_old_instinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_instinfo_msg_t","len")=2 + Set gtmtypes("repl_old_instinfo_msg_t",3,"name")="repl_old_instinfo_msg_t.instname" + Set gtmtypes("repl_old_instinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_old_instinfo_msg_t",3,"len")=16 + Set gtmtypes("repl_old_instinfo_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","instname")=3 + Set gtmtypes("repl_old_instinfo_msg_t",4,"name")="repl_old_instinfo_msg_t.was_rootprimary" + Set gtmtypes("repl_old_instinfo_msg_t",4,"off")=24 + Set gtmtypes("repl_old_instinfo_msg_t",4,"len")=1 + Set gtmtypes("repl_old_instinfo_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","was_rootprimary")=4 + Set gtmtypes("repl_old_instinfo_msg_t",5,"name")="repl_old_instinfo_msg_t.filler_32" + Set gtmtypes("repl_old_instinfo_msg_t",5,"off")=25 + Set gtmtypes("repl_old_instinfo_msg_t",5,"len")=7 + Set gtmtypes("repl_old_instinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","filler_32")=5 + ; + Set gtmtypes("repl_old_needinst_msg_t")="struct" + Set gtmtypes("repl_old_needinst_msg_t",0)=7 + Set gtmtypes("repl_old_needinst_msg_t","len")=32 + Set gtmtypes("repl_old_needinst_msg_t",1,"name")="repl_old_needinst_msg_t.type" + Set gtmtypes("repl_old_needinst_msg_t",1,"off")=0 + Set gtmtypes("repl_old_needinst_msg_t",1,"len")=4 + Set gtmtypes("repl_old_needinst_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_needinst_msg_t","type")=1 + Set gtmtypes("repl_old_needinst_msg_t",2,"name")="repl_old_needinst_msg_t.len" + Set gtmtypes("repl_old_needinst_msg_t",2,"off")=4 + Set gtmtypes("repl_old_needinst_msg_t",2,"len")=4 + Set gtmtypes("repl_old_needinst_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_needinst_msg_t","len")=2 + Set gtmtypes("repl_old_needinst_msg_t",3,"name")="repl_old_needinst_msg_t.instname" + Set gtmtypes("repl_old_needinst_msg_t",3,"off")=8 + Set gtmtypes("repl_old_needinst_msg_t",3,"len")=16 + Set gtmtypes("repl_old_needinst_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_needinst_msg_t","instname")=3 + Set gtmtypes("repl_old_needinst_msg_t",4,"name")="repl_old_needinst_msg_t.proto_ver" + Set gtmtypes("repl_old_needinst_msg_t",4,"off")=24 + Set gtmtypes("repl_old_needinst_msg_t",4,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","proto_ver")=4 + Set gtmtypes("repl_old_needinst_msg_t",5,"name")="repl_old_needinst_msg_t.node_endianness" + Set gtmtypes("repl_old_needinst_msg_t",5,"off")=25 + Set gtmtypes("repl_old_needinst_msg_t",5,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","node_endianness")=5 + Set gtmtypes("repl_old_needinst_msg_t",6,"name")="repl_old_needinst_msg_t.is_rootprimary" + Set gtmtypes("repl_old_needinst_msg_t",6,"off")=26 + Set gtmtypes("repl_old_needinst_msg_t",6,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","is_rootprimary")=6 + Set gtmtypes("repl_old_needinst_msg_t",7,"name")="repl_old_needinst_msg_t.filler_32" + Set gtmtypes("repl_old_needinst_msg_t",7,"off")=27 + Set gtmtypes("repl_old_needinst_msg_t",7,"len")=5 + Set gtmtypes("repl_old_needinst_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","filler_32")=7 + ; + Set gtmtypes("repl_old_triple_jnl_t")="struct" + Set gtmtypes("repl_old_triple_jnl_t",0)=4 + Set gtmtypes("repl_old_triple_jnl_t","len")=48 + Set gtmtypes("repl_old_triple_jnl_t",1,"name")="repl_old_triple_jnl_t.cycle" + Set gtmtypes("repl_old_triple_jnl_t",1,"off")=4 + Set gtmtypes("repl_old_triple_jnl_t",1,"len")=4 + Set gtmtypes("repl_old_triple_jnl_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_old_triple_jnl_t","cycle")=1 + Set gtmtypes("repl_old_triple_jnl_t",2,"name")="repl_old_triple_jnl_t.start_seqno" + Set gtmtypes("repl_old_triple_jnl_t",2,"off")=8 + Set gtmtypes("repl_old_triple_jnl_t",2,"len")=8 + Set gtmtypes("repl_old_triple_jnl_t",2,"type")="uint64_t" + Set gtmtypfldindx("repl_old_triple_jnl_t","start_seqno")=2 + Set gtmtypes("repl_old_triple_jnl_t",3,"name")="repl_old_triple_jnl_t.instname" + Set gtmtypes("repl_old_triple_jnl_t",3,"off")=16 + Set gtmtypes("repl_old_triple_jnl_t",3,"len")=16 + Set gtmtypes("repl_old_triple_jnl_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_jnl_t","instname")=3 + Set gtmtypes("repl_old_triple_jnl_t",4,"name")="repl_old_triple_jnl_t.rcvd_from_instname" + Set gtmtypes("repl_old_triple_jnl_t",4,"off")=32 + Set gtmtypes("repl_old_triple_jnl_t",4,"len")=16 + Set gtmtypes("repl_old_triple_jnl_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_jnl_t","rcvd_from_instname")=4 + ; + Set gtmtypes("repl_old_triple_msg_t")="struct" + Set gtmtypes("repl_old_triple_msg_t",0)=7 + Set gtmtypes("repl_old_triple_msg_t","len")=56 + Set gtmtypes("repl_old_triple_msg_t",1,"name")="repl_old_triple_msg_t.type" + Set gtmtypes("repl_old_triple_msg_t",1,"off")=0 + Set gtmtypes("repl_old_triple_msg_t",1,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_triple_msg_t","type")=1 + Set gtmtypes("repl_old_triple_msg_t",2,"name")="repl_old_triple_msg_t.len" + Set gtmtypes("repl_old_triple_msg_t",2,"off")=4 + Set gtmtypes("repl_old_triple_msg_t",2,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_triple_msg_t","len")=2 + Set gtmtypes("repl_old_triple_msg_t",3,"name")="repl_old_triple_msg_t.triplecontent" + Set gtmtypes("repl_old_triple_msg_t",3,"off")=8 + Set gtmtypes("repl_old_triple_msg_t",3,"len")=48 + Set gtmtypes("repl_old_triple_msg_t",3,"type")="repl_old_triple_jnl_t" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent")=3 + Set gtmtypes("repl_old_triple_msg_t",4,"name")="repl_old_triple_msg_t.triplecontent.cycle" + Set gtmtypes("repl_old_triple_msg_t",4,"off")=12 + Set gtmtypes("repl_old_triple_msg_t",4,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.cycle")=4 + Set gtmtypes("repl_old_triple_msg_t",5,"name")="repl_old_triple_msg_t.triplecontent.start_seqno" + Set gtmtypes("repl_old_triple_msg_t",5,"off")=16 + Set gtmtypes("repl_old_triple_msg_t",5,"len")=8 + Set gtmtypes("repl_old_triple_msg_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.start_seqno")=5 + Set gtmtypes("repl_old_triple_msg_t",6,"name")="repl_old_triple_msg_t.triplecontent.instname" + Set gtmtypes("repl_old_triple_msg_t",6,"off")=24 + Set gtmtypes("repl_old_triple_msg_t",6,"len")=16 + Set gtmtypes("repl_old_triple_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.instname")=6 + Set gtmtypes("repl_old_triple_msg_t",7,"name")="repl_old_triple_msg_t.triplecontent.rcvd_from_instname" + Set gtmtypes("repl_old_triple_msg_t",7,"off")=40 + Set gtmtypes("repl_old_triple_msg_t",7,"len")=16 + Set gtmtypes("repl_old_triple_msg_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.rcvd_from_instname")=7 + ; + Set gtmtypes("repl_rctl_elem_t")="struct" + Set gtmtypes("repl_rctl_elem_t",0)=4 + Set gtmtypes("repl_rctl_elem_t","len")=16 + Set gtmtypes("repl_rctl_elem_t",1,"name")="repl_rctl_elem_t.prev" + Set gtmtypes("repl_rctl_elem_t",1,"off")=0 + Set gtmtypes("repl_rctl_elem_t",1,"len")=4 + Set gtmtypes("repl_rctl_elem_t",1,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","prev")=1 + Set gtmtypes("repl_rctl_elem_t",2,"name")="repl_rctl_elem_t.next" + Set gtmtypes("repl_rctl_elem_t",2,"off")=4 + Set gtmtypes("repl_rctl_elem_t",2,"len")=4 + Set gtmtypes("repl_rctl_elem_t",2,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","next")=2 + Set gtmtypes("repl_rctl_elem_t",3,"name")="repl_rctl_elem_t.ctl_start" + Set gtmtypes("repl_rctl_elem_t",3,"off")=8 + Set gtmtypes("repl_rctl_elem_t",3,"len")=4 + Set gtmtypes("repl_rctl_elem_t",3,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","ctl_start")=3 + Set gtmtypes("repl_rctl_elem_t",4,"name")="repl_rctl_elem_t.read_complete" + Set gtmtypes("repl_rctl_elem_t",4,"off")=12 + Set gtmtypes("repl_rctl_elem_t",4,"len")=4 + Set gtmtypes("repl_rctl_elem_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_rctl_elem_t","read_complete")=4 + ; + Set gtmtypes("repl_resync_msg_t")="struct" + Set gtmtypes("repl_resync_msg_t",0)=7 + Set gtmtypes("repl_resync_msg_t","len")=32 + Set gtmtypes("repl_resync_msg_t",1,"name")="repl_resync_msg_t.type" + Set gtmtypes("repl_resync_msg_t",1,"off")=0 + Set gtmtypes("repl_resync_msg_t",1,"len")=4 + Set gtmtypes("repl_resync_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_resync_msg_t","type")=1 + Set gtmtypes("repl_resync_msg_t",2,"name")="repl_resync_msg_t.len" + Set gtmtypes("repl_resync_msg_t",2,"off")=4 + Set gtmtypes("repl_resync_msg_t",2,"len")=4 + Set gtmtypes("repl_resync_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_resync_msg_t","len")=2 + Set gtmtypes("repl_resync_msg_t",3,"name")="repl_resync_msg_t.resync_seqno" + Set gtmtypes("repl_resync_msg_t",3,"off")=8 + Set gtmtypes("repl_resync_msg_t",3,"len")=8 + Set gtmtypes("repl_resync_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_resync_msg_t","resync_seqno")=3 + Set gtmtypes("repl_resync_msg_t",4,"name")="repl_resync_msg_t.proto_ver" + Set gtmtypes("repl_resync_msg_t",4,"off")=16 + Set gtmtypes("repl_resync_msg_t",4,"len")=1 + Set gtmtypes("repl_resync_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","proto_ver")=4 + Set gtmtypes("repl_resync_msg_t",5,"name")="repl_resync_msg_t.node_endianness" + Set gtmtypes("repl_resync_msg_t",5,"off")=17 + Set gtmtypes("repl_resync_msg_t",5,"len")=1 + Set gtmtypes("repl_resync_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","node_endianness")=5 + Set gtmtypes("repl_resync_msg_t",6,"name")="repl_resync_msg_t.is_supplementary" + Set gtmtypes("repl_resync_msg_t",6,"off")=18 + Set gtmtypes("repl_resync_msg_t",6,"len")=1 + Set gtmtypes("repl_resync_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","is_supplementary")=6 + Set gtmtypes("repl_resync_msg_t",7,"name")="repl_resync_msg_t.filler_32" + Set gtmtypes("repl_resync_msg_t",7,"off")=19 + Set gtmtypes("repl_resync_msg_t",7,"len")=13 + Set gtmtypes("repl_resync_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","filler_32")=7 + ; + Set gtmtypes("repl_start_msg_t")="struct" + Set gtmtypes("repl_start_msg_t",0)=9 + Set gtmtypes("repl_start_msg_t","len")=32 + Set gtmtypes("repl_start_msg_t",1,"name")="repl_start_msg_t.type" + Set gtmtypes("repl_start_msg_t",1,"off")=0 + Set gtmtypes("repl_start_msg_t",1,"len")=4 + Set gtmtypes("repl_start_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_start_msg_t","type")=1 + Set gtmtypes("repl_start_msg_t",2,"name")="repl_start_msg_t.len" + Set gtmtypes("repl_start_msg_t",2,"off")=4 + Set gtmtypes("repl_start_msg_t",2,"len")=4 + Set gtmtypes("repl_start_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_start_msg_t","len")=2 + Set gtmtypes("repl_start_msg_t",3,"name")="repl_start_msg_t.start_seqno" + Set gtmtypes("repl_start_msg_t",3,"off")=8 + Set gtmtypes("repl_start_msg_t",3,"len")=8 + Set gtmtypes("repl_start_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_msg_t","start_seqno")=3 + Set gtmtypes("repl_start_msg_t",4,"name")="repl_start_msg_t.start_flags" + Set gtmtypes("repl_start_msg_t",4,"off")=16 + Set gtmtypes("repl_start_msg_t",4,"len")=4 + Set gtmtypes("repl_start_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_start_msg_t","start_flags")=4 + Set gtmtypes("repl_start_msg_t",5,"name")="repl_start_msg_t.jnl_ver" + Set gtmtypes("repl_start_msg_t",5,"off")=20 + Set gtmtypes("repl_start_msg_t",5,"len")=1 + Set gtmtypes("repl_start_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_msg_t","jnl_ver")=5 + Set gtmtypes("repl_start_msg_t",6,"name")="repl_start_msg_t.proto_ver" + Set gtmtypes("repl_start_msg_t",6,"off")=21 + Set gtmtypes("repl_start_msg_t",6,"len")=1 + Set gtmtypes("repl_start_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","proto_ver")=6 + Set gtmtypes("repl_start_msg_t",7,"name")="repl_start_msg_t.node_endianness" + Set gtmtypes("repl_start_msg_t",7,"off")=22 + Set gtmtypes("repl_start_msg_t",7,"len")=1 + Set gtmtypes("repl_start_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","node_endianness")=7 + Set gtmtypes("repl_start_msg_t",8,"name")="repl_start_msg_t.is_supplementary" + Set gtmtypes("repl_start_msg_t",8,"off")=23 + Set gtmtypes("repl_start_msg_t",8,"len")=1 + Set gtmtypes("repl_start_msg_t",8,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","is_supplementary")=8 + Set gtmtypes("repl_start_msg_t",9,"name")="repl_start_msg_t.filler_32" + Set gtmtypes("repl_start_msg_t",9,"off")=24 + Set gtmtypes("repl_start_msg_t",9,"len")=8 + Set gtmtypes("repl_start_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","filler_32")=9 + ; + Set gtmtypes("repl_start_reply_msg_t")="struct" + Set gtmtypes("repl_start_reply_msg_t",0)=9 + Set gtmtypes("repl_start_reply_msg_t","len")=32 + Set gtmtypes("repl_start_reply_msg_t",1,"name")="repl_start_reply_msg_t.type" + Set gtmtypes("repl_start_reply_msg_t",1,"off")=0 + Set gtmtypes("repl_start_reply_msg_t",1,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_start_reply_msg_t","type")=1 + Set gtmtypes("repl_start_reply_msg_t",2,"name")="repl_start_reply_msg_t.len" + Set gtmtypes("repl_start_reply_msg_t",2,"off")=4 + Set gtmtypes("repl_start_reply_msg_t",2,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_start_reply_msg_t","len")=2 + Set gtmtypes("repl_start_reply_msg_t",3,"name")="repl_start_reply_msg_t.start_seqno" + Set gtmtypes("repl_start_reply_msg_t",3,"off")=8 + Set gtmtypes("repl_start_reply_msg_t",3,"len")=8 + Set gtmtypes("repl_start_reply_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_reply_msg_t","start_seqno")=3 + Set gtmtypes("repl_start_reply_msg_t",4,"name")="repl_start_reply_msg_t.jnl_ver" + Set gtmtypes("repl_start_reply_msg_t",4,"off")=16 + Set gtmtypes("repl_start_reply_msg_t",4,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_reply_msg_t","jnl_ver")=4 + Set gtmtypes("repl_start_reply_msg_t",5,"name")="repl_start_reply_msg_t.start_flags" + Set gtmtypes("repl_start_reply_msg_t",5,"off")=17 + Set gtmtypes("repl_start_reply_msg_t",5,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","start_flags")=5 + Set gtmtypes("repl_start_reply_msg_t",6,"name")="repl_start_reply_msg_t.proto_ver" + Set gtmtypes("repl_start_reply_msg_t",6,"off")=21 + Set gtmtypes("repl_start_reply_msg_t",6,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","proto_ver")=6 + Set gtmtypes("repl_start_reply_msg_t",7,"name")="repl_start_reply_msg_t.node_endianness" + Set gtmtypes("repl_start_reply_msg_t",7,"off")=22 + Set gtmtypes("repl_start_reply_msg_t",7,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","node_endianness")=7 + Set gtmtypes("repl_start_reply_msg_t",8,"name")="repl_start_reply_msg_t.is_supplementary" + Set gtmtypes("repl_start_reply_msg_t",8,"off")=23 + Set gtmtypes("repl_start_reply_msg_t",8,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",8,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","is_supplementary")=8 + Set gtmtypes("repl_start_reply_msg_t",9,"name")="repl_start_reply_msg_t.filler_32" + Set gtmtypes("repl_start_reply_msg_t",9,"off")=24 + Set gtmtypes("repl_start_reply_msg_t",9,"len")=8 + Set gtmtypes("repl_start_reply_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","filler_32")=9 + ; + Set gtmtypes("repl_strminfo_msg_t")="struct" + Set gtmtypes("repl_strminfo_msg_t",0)=3 + Set gtmtypes("repl_strminfo_msg_t","len")=72 + Set gtmtypes("repl_strminfo_msg_t",1,"name")="repl_strminfo_msg_t.type" + Set gtmtypes("repl_strminfo_msg_t",1,"off")=0 + Set gtmtypes("repl_strminfo_msg_t",1,"len")=4 + Set gtmtypes("repl_strminfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","type")=1 + Set gtmtypes("repl_strminfo_msg_t",2,"name")="repl_strminfo_msg_t.len" + Set gtmtypes("repl_strminfo_msg_t",2,"off")=4 + Set gtmtypes("repl_strminfo_msg_t",2,"len")=4 + Set gtmtypes("repl_strminfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","len")=2 + Set gtmtypes("repl_strminfo_msg_t",3,"name")="repl_strminfo_msg_t.last_histinfo_num" + Set gtmtypes("repl_strminfo_msg_t",3,"off")=8 + Set gtmtypes("repl_strminfo_msg_t",3,"len")=64 + Set gtmtypes("repl_strminfo_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","last_histinfo_num")=3 + Set gtmtypes("repl_strminfo_msg_t",3,"dim")=16 + ; + Set gtmtypes("repl_tls_info_t")="struct" + Set gtmtypes("repl_tls_info_t",0)=6 + Set gtmtypes("repl_tls_info_t","len")=52 + Set gtmtypes("repl_tls_info_t",1,"name")="repl_tls_info_t.id" + Set gtmtypes("repl_tls_info_t",1,"off")=0 + Set gtmtypes("repl_tls_info_t",1,"len")=32 + Set gtmtypes("repl_tls_info_t",1,"type")="char" + Set gtmtypfldindx("repl_tls_info_t","id")=1 + Set gtmtypes("repl_tls_info_t",2,"name")="repl_tls_info_t.plaintext_fallback" + Set gtmtypes("repl_tls_info_t",2,"off")=32 + Set gtmtypes("repl_tls_info_t",2,"len")=4 + Set gtmtypes("repl_tls_info_t",2,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","plaintext_fallback")=2 + Set gtmtypes("repl_tls_info_t",3,"name")="repl_tls_info_t.enabled" + Set gtmtypes("repl_tls_info_t",3,"off")=36 + Set gtmtypes("repl_tls_info_t",3,"len")=4 + Set gtmtypes("repl_tls_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","enabled")=3 + Set gtmtypes("repl_tls_info_t",4,"name")="repl_tls_info_t.notls_retry" + Set gtmtypes("repl_tls_info_t",4,"off")=40 + Set gtmtypes("repl_tls_info_t",4,"len")=4 + Set gtmtypes("repl_tls_info_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","notls_retry")=4 + Set gtmtypes("repl_tls_info_t",5,"name")="repl_tls_info_t.renegotiate_state" + Set gtmtypes("repl_tls_info_t",5,"off")=44 + Set gtmtypes("repl_tls_info_t",5,"len")=4 + Set gtmtypes("repl_tls_info_t",5,"type")="int" + Set gtmtypfldindx("repl_tls_info_t","renegotiate_state")=5 + Set gtmtypes("repl_tls_info_t",6,"name")="repl_tls_info_t.sock" + Set gtmtypes("repl_tls_info_t",6,"off")=48 + Set gtmtypes("repl_tls_info_t",6,"len")=4 + Set gtmtypes("repl_tls_info_t",6,"type")="addr" + Set gtmtypfldindx("repl_tls_info_t","sock")=6 + ; + Set gtmtypes("repl_tlsinfo_msg_t")="struct" + Set gtmtypes("repl_tlsinfo_msg_t",0)=5 + Set gtmtypes("repl_tlsinfo_msg_t","len")=32 + Set gtmtypes("repl_tlsinfo_msg_t",1,"name")="repl_tlsinfo_msg_t.type" + Set gtmtypes("repl_tlsinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_tlsinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","type")=1 + Set gtmtypes("repl_tlsinfo_msg_t",2,"name")="repl_tlsinfo_msg_t.len" + Set gtmtypes("repl_tlsinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_tlsinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","len")=2 + Set gtmtypes("repl_tlsinfo_msg_t",3,"name")="repl_tlsinfo_msg_t.API_version" + Set gtmtypes("repl_tlsinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_tlsinfo_msg_t",3,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","API_version")=3 + Set gtmtypes("repl_tlsinfo_msg_t",4,"name")="repl_tlsinfo_msg_t.library_version" + Set gtmtypes("repl_tlsinfo_msg_t",4,"off")=12 + Set gtmtypes("repl_tlsinfo_msg_t",4,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","library_version")=4 + Set gtmtypes("repl_tlsinfo_msg_t",5,"name")="repl_tlsinfo_msg_t.filler_32" + Set gtmtypes("repl_tlsinfo_msg_t",5,"off")=16 + Set gtmtypes("repl_tlsinfo_msg_t",5,"len")=16 + Set gtmtypes("repl_tlsinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_tlsinfo_msg_t","filler_32")=5 + ; + Set gtmtypes("replgbl_t")="struct" + Set gtmtypes("replgbl_t",0)=3 + Set gtmtypes("replgbl_t","len")=16 + Set gtmtypes("replgbl_t",1,"name")="replgbl_t.trig_replic_warning_issued" + Set gtmtypes("replgbl_t",1,"off")=0 + Set gtmtypes("replgbl_t",1,"len")=4 + Set gtmtypes("replgbl_t",1,"type")="boolean_t" + Set gtmtypfldindx("replgbl_t","trig_replic_warning_issued")=1 + Set gtmtypes("replgbl_t",2,"name")="replgbl_t.trig_replic_suspect_seqno" + Set gtmtypes("replgbl_t",2,"off")=4 + Set gtmtypes("replgbl_t",2,"len")=8 + Set gtmtypes("replgbl_t",2,"type")="uint64_t" + Set gtmtypfldindx("replgbl_t","trig_replic_suspect_seqno")=2 + Set gtmtypes("replgbl_t",3,"name")="replgbl_t.jnl_release_timeout" + Set gtmtypes("replgbl_t",3,"off")=12 + Set gtmtypes("replgbl_t",3,"len")=4 + Set gtmtypes("replgbl_t",3,"type")="int" + Set gtmtypfldindx("replgbl_t","jnl_release_timeout")=3 + ; + Set gtmtypes("replpool_identifier")="struct" + Set gtmtypes("replpool_identifier",0)=5 + Set gtmtypes("replpool_identifier","len")=312 + Set gtmtypes("replpool_identifier",1,"name")="replpool_identifier.label" + Set gtmtypes("replpool_identifier",1,"off")=0 + Set gtmtypes("replpool_identifier",1,"len")=12 + Set gtmtypes("replpool_identifier",1,"type")="unsigned-char" + Set gtmtypfldindx("replpool_identifier","label")=1 + Set gtmtypes("replpool_identifier",2,"name")="replpool_identifier.pool_type" + Set gtmtypes("replpool_identifier",2,"off")=12 + Set gtmtypes("replpool_identifier",2,"len")=1 + Set gtmtypes("replpool_identifier",2,"type")="char" + Set gtmtypfldindx("replpool_identifier","pool_type")=2 + Set gtmtypes("replpool_identifier",3,"name")="replpool_identifier.now_running" + Set gtmtypes("replpool_identifier",3,"off")=13 + Set gtmtypes("replpool_identifier",3,"len")=36 + Set gtmtypes("replpool_identifier",3,"type")="char" + Set gtmtypfldindx("replpool_identifier","now_running")=3 + Set gtmtypes("replpool_identifier",4,"name")="replpool_identifier.repl_pool_key_filler" + Set gtmtypes("replpool_identifier",4,"off")=52 + Set gtmtypes("replpool_identifier",4,"len")=4 + Set gtmtypes("replpool_identifier",4,"type")="int" + Set gtmtypfldindx("replpool_identifier","repl_pool_key_filler")=4 + Set gtmtypes("replpool_identifier",5,"name")="replpool_identifier.instfilename" + Set gtmtypes("replpool_identifier",5,"off")=56 + Set gtmtypes("replpool_identifier",5,"len")=256 + Set gtmtypes("replpool_identifier",5,"type")="char" + Set gtmtypfldindx("replpool_identifier","instfilename")=5 + ; + Set gtmtypes("rhdtyp")="struct" + Set gtmtypes("rhdtyp",0)=27 + Set gtmtypes("rhdtyp","len")=116 + Set gtmtypes("rhdtyp",1,"name")="rhdtyp.jsb" + Set gtmtypes("rhdtyp",1,"off")=0 + Set gtmtypes("rhdtyp",1,"len")=8 + Set gtmtypes("rhdtyp",1,"type")="char" + Set gtmtypfldindx("rhdtyp","jsb")=1 + Set gtmtypes("rhdtyp",2,"name")="rhdtyp.src_full_name" + Set gtmtypes("rhdtyp",2,"off")=8 + Set gtmtypes("rhdtyp",2,"len")=12 + Set gtmtypes("rhdtyp",2,"type")="mstr" + Set gtmtypfldindx("rhdtyp","src_full_name")=2 + Set gtmtypes("rhdtyp",3,"name")="rhdtyp.src_full_name.char_len" + Set gtmtypes("rhdtyp",3,"off")=8 + Set gtmtypes("rhdtyp",3,"len")=4 + Set gtmtypes("rhdtyp",3,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","src_full_name.char_len")=3 + Set gtmtypes("rhdtyp",4,"name")="rhdtyp.src_full_name.len" + Set gtmtypes("rhdtyp",4,"off")=12 + Set gtmtypes("rhdtyp",4,"len")=4 + Set gtmtypes("rhdtyp",4,"type")="int" + Set gtmtypfldindx("rhdtyp","src_full_name.len")=4 + Set gtmtypes("rhdtyp",5,"name")="rhdtyp.src_full_name.addr" + Set gtmtypes("rhdtyp",5,"off")=16 + Set gtmtypes("rhdtyp",5,"len")=4 + Set gtmtypes("rhdtyp",5,"type")="addr" + Set gtmtypfldindx("rhdtyp","src_full_name.addr")=5 + Set gtmtypes("rhdtyp",6,"name")="rhdtyp.routine_name" + Set gtmtypes("rhdtyp",6,"off")=20 + Set gtmtypes("rhdtyp",6,"len")=12 + Set gtmtypes("rhdtyp",6,"type")="mstr" + Set gtmtypfldindx("rhdtyp","routine_name")=6 + Set gtmtypes("rhdtyp",7,"name")="rhdtyp.routine_name.char_len" + Set gtmtypes("rhdtyp",7,"off")=20 + Set gtmtypes("rhdtyp",7,"len")=4 + Set gtmtypes("rhdtyp",7,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_name.char_len")=7 + Set gtmtypes("rhdtyp",8,"name")="rhdtyp.routine_name.len" + Set gtmtypes("rhdtyp",8,"off")=24 + Set gtmtypes("rhdtyp",8,"len")=4 + Set gtmtypes("rhdtyp",8,"type")="int" + Set gtmtypfldindx("rhdtyp","routine_name.len")=8 + Set gtmtypes("rhdtyp",9,"name")="rhdtyp.routine_name.addr" + Set gtmtypes("rhdtyp",9,"off")=28 + Set gtmtypes("rhdtyp",9,"len")=4 + Set gtmtypes("rhdtyp",9,"type")="addr" + Set gtmtypfldindx("rhdtyp","routine_name.addr")=9 + Set gtmtypes("rhdtyp",10,"name")="rhdtyp.vartab_off" + Set gtmtypes("rhdtyp",10,"off")=32 + Set gtmtypes("rhdtyp",10,"len")=4 + Set gtmtypes("rhdtyp",10,"type")="int" + Set gtmtypfldindx("rhdtyp","vartab_off")=10 + Set gtmtypes("rhdtyp",11,"name")="rhdtyp.vartab_len" + Set gtmtypes("rhdtyp",11,"off")=36 + Set gtmtypes("rhdtyp",11,"len")=4 + Set gtmtypes("rhdtyp",11,"type")="int" + Set gtmtypfldindx("rhdtyp","vartab_len")=11 + Set gtmtypes("rhdtyp",12,"name")="rhdtyp.labtab_off" + Set gtmtypes("rhdtyp",12,"off")=40 + Set gtmtypes("rhdtyp",12,"len")=4 + Set gtmtypes("rhdtyp",12,"type")="int" + Set gtmtypfldindx("rhdtyp","labtab_off")=12 + Set gtmtypes("rhdtyp",13,"name")="rhdtyp.labtab_len" + Set gtmtypes("rhdtyp",13,"off")=44 + Set gtmtypes("rhdtyp",13,"len")=4 + Set gtmtypes("rhdtyp",13,"type")="int" + Set gtmtypfldindx("rhdtyp","labtab_len")=13 + Set gtmtypes("rhdtyp",14,"name")="rhdtyp.lnrtab_off" + Set gtmtypes("rhdtyp",14,"off")=48 + Set gtmtypes("rhdtyp",14,"len")=4 + Set gtmtypes("rhdtyp",14,"type")="int" + Set gtmtypfldindx("rhdtyp","lnrtab_off")=14 + Set gtmtypes("rhdtyp",15,"name")="rhdtyp.lnrtab_len" + Set gtmtypes("rhdtyp",15,"off")=52 + Set gtmtypes("rhdtyp",15,"len")=4 + Set gtmtypes("rhdtyp",15,"type")="int" + Set gtmtypfldindx("rhdtyp","lnrtab_len")=15 + Set gtmtypes("rhdtyp",16,"name")="rhdtyp.ptext_off" + Set gtmtypes("rhdtyp",16,"off")=56 + Set gtmtypes("rhdtyp",16,"len")=4 + Set gtmtypes("rhdtyp",16,"type")="int" + Set gtmtypfldindx("rhdtyp","ptext_off")=16 + Set gtmtypes("rhdtyp",17,"name")="rhdtyp.checksum" + Set gtmtypes("rhdtyp",17,"off")=60 + Set gtmtypes("rhdtyp",17,"len")=4 + Set gtmtypes("rhdtyp",17,"type")="int" + Set gtmtypfldindx("rhdtyp","checksum")=17 + Set gtmtypes("rhdtyp",18,"name")="rhdtyp.compiler_qlf" + Set gtmtypes("rhdtyp",18,"off")=64 + Set gtmtypes("rhdtyp",18,"len")=4 + Set gtmtypes("rhdtyp",18,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","compiler_qlf")=18 + Set gtmtypes("rhdtyp",19,"name")="rhdtyp.old_rhead_off" + Set gtmtypes("rhdtyp",19,"off")=68 + Set gtmtypes("rhdtyp",19,"len")=4 + Set gtmtypes("rhdtyp",19,"type")="int" + Set gtmtypfldindx("rhdtyp","old_rhead_off")=19 + Set gtmtypes("rhdtyp",20,"name")="rhdtyp.current_rhead_off" + Set gtmtypes("rhdtyp",20,"off")=72 + Set gtmtypes("rhdtyp",20,"len")=4 + Set gtmtypes("rhdtyp",20,"type")="int" + Set gtmtypfldindx("rhdtyp","current_rhead_off")=20 + Set gtmtypes("rhdtyp",21,"name")="rhdtyp.temp_mvals" + Set gtmtypes("rhdtyp",21,"off")=76 + Set gtmtypes("rhdtyp",21,"len")=4 + Set gtmtypes("rhdtyp",21,"type")="int" + Set gtmtypfldindx("rhdtyp","temp_mvals")=21 + Set gtmtypes("rhdtyp",22,"name")="rhdtyp.temp_size" + Set gtmtypes("rhdtyp",22,"off")=80 + Set gtmtypes("rhdtyp",22,"len")=4 + Set gtmtypes("rhdtyp",22,"type")="int" + Set gtmtypfldindx("rhdtyp","temp_size")=22 + Set gtmtypes("rhdtyp",23,"name")="rhdtyp.trigr_handle" + Set gtmtypes("rhdtyp",23,"off")=84 + Set gtmtypes("rhdtyp",23,"len")=4 + Set gtmtypes("rhdtyp",23,"type")="addr" + Set gtmtypfldindx("rhdtyp","trigr_handle")=23 + Set gtmtypes("rhdtyp",24,"name")="rhdtyp.checksum_128" + Set gtmtypes("rhdtyp",24,"off")=88 + Set gtmtypes("rhdtyp",24,"len")=16 + Set gtmtypes("rhdtyp",24,"type")="unsigned-char" + Set gtmtypfldindx("rhdtyp","checksum_128")=24 + Set gtmtypes("rhdtyp",25,"name")="rhdtyp.source_code" + Set gtmtypes("rhdtyp",25,"off")=104 + Set gtmtypes("rhdtyp",25,"len")=4 + Set gtmtypes("rhdtyp",25,"type")="addr" + Set gtmtypfldindx("rhdtyp","source_code")=25 + Set gtmtypes("rhdtyp",26,"name")="rhdtyp.routine_source_offset" + Set gtmtypes("rhdtyp",26,"off")=108 + Set gtmtypes("rhdtyp",26,"len")=4 + Set gtmtypes("rhdtyp",26,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_source_offset")=26 + Set gtmtypes("rhdtyp",27,"name")="rhdtyp.routine_source_length" + Set gtmtypes("rhdtyp",27,"off")=112 + Set gtmtypes("rhdtyp",27,"len")=4 + Set gtmtypes("rhdtyp",27,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_source_length")=27 + ; + Set gtmtypes("routine_source")="struct" + Set gtmtypes("routine_source",0)=7 + Set gtmtypes("routine_source","len")=24 + Set gtmtypes("routine_source",1,"name")="routine_source.srcrecs" + Set gtmtypes("routine_source",1,"off")=0 + Set gtmtypes("routine_source",1,"len")=4 + Set gtmtypes("routine_source",1,"type")="int" + Set gtmtypfldindx("routine_source","srcrecs")=1 + Set gtmtypes("routine_source",2,"name")="routine_source.srcstat" + Set gtmtypes("routine_source",2,"off")=4 + Set gtmtypes("routine_source",2,"len")=4 + Set gtmtypes("routine_source",2,"type")="unsigned-int" + Set gtmtypfldindx("routine_source","srcstat")=2 + Set gtmtypes("routine_source",3,"name")="routine_source.srcbuff" + Set gtmtypes("routine_source",3,"off")=8 + Set gtmtypes("routine_source",3,"len")=4 + Set gtmtypes("routine_source",3,"type")="addr" + Set gtmtypfldindx("routine_source","srcbuff")=3 + Set gtmtypes("routine_source",4,"name")="routine_source.srclines" + Set gtmtypes("routine_source",4,"off")=12 + Set gtmtypes("routine_source",4,"len")=12 + Set gtmtypes("routine_source",4,"type")="mstr" + Set gtmtypfldindx("routine_source","srclines")=4 + Set gtmtypes("routine_source",5,"name")="routine_source.srclines[0].char_len" + Set gtmtypes("routine_source",5,"off")=12 + Set gtmtypes("routine_source",5,"len")=4 + Set gtmtypes("routine_source",5,"type")="unsigned-int" + Set gtmtypfldindx("routine_source","srclines[0].char_len")=5 + Set gtmtypes("routine_source",6,"name")="routine_source.srclines[0].len" + Set gtmtypes("routine_source",6,"off")=16 + Set gtmtypes("routine_source",6,"len")=4 + Set gtmtypes("routine_source",6,"type")="int" + Set gtmtypfldindx("routine_source","srclines[0].len")=6 + Set gtmtypes("routine_source",7,"name")="routine_source.srclines[0].addr" + Set gtmtypes("routine_source",7,"off")=20 + Set gtmtypes("routine_source",7,"len")=4 + Set gtmtypes("routine_source",7,"type")="addr" + Set gtmtypfldindx("routine_source","srclines[0].addr")=7 + ; + Set gtmtypes("rtn_tabent")="struct" + Set gtmtypes("rtn_tabent",0)=5 + Set gtmtypes("rtn_tabent","len")=16 + Set gtmtypes("rtn_tabent",1,"name")="rtn_tabent.rt_name" + Set gtmtypes("rtn_tabent",1,"off")=0 + Set gtmtypes("rtn_tabent",1,"len")=12 + Set gtmtypes("rtn_tabent",1,"type")="mstr" + Set gtmtypfldindx("rtn_tabent","rt_name")=1 + Set gtmtypes("rtn_tabent",2,"name")="rtn_tabent.rt_name.char_len" + Set gtmtypes("rtn_tabent",2,"off")=0 + Set gtmtypes("rtn_tabent",2,"len")=4 + Set gtmtypes("rtn_tabent",2,"type")="unsigned-int" + Set gtmtypfldindx("rtn_tabent","rt_name.char_len")=2 + Set gtmtypes("rtn_tabent",3,"name")="rtn_tabent.rt_name.len" + Set gtmtypes("rtn_tabent",3,"off")=4 + Set gtmtypes("rtn_tabent",3,"len")=4 + Set gtmtypes("rtn_tabent",3,"type")="int" + Set gtmtypfldindx("rtn_tabent","rt_name.len")=3 + Set gtmtypes("rtn_tabent",4,"name")="rtn_tabent.rt_name.addr" + Set gtmtypes("rtn_tabent",4,"off")=8 + Set gtmtypes("rtn_tabent",4,"len")=4 + Set gtmtypes("rtn_tabent",4,"type")="addr" + Set gtmtypfldindx("rtn_tabent","rt_name.addr")=4 + Set gtmtypes("rtn_tabent",5,"name")="rtn_tabent.rt_adr" + Set gtmtypes("rtn_tabent",5,"off")=12 + Set gtmtypes("rtn_tabent",5,"len")=4 + Set gtmtypes("rtn_tabent",5,"type")="addr" + Set gtmtypfldindx("rtn_tabent","rt_adr")=5 + ; + Set gtmtypes("rtnobj_hdr_t")="struct" + Set gtmtypes("rtnobj_hdr_t",0)=13 + Set gtmtypes("rtnobj_hdr_t","len")=40 + Set gtmtypes("rtnobj_hdr_t",1,"name")="rtnobj_hdr_t.queueIndex" + Set gtmtypes("rtnobj_hdr_t",1,"off")=0 + Set gtmtypes("rtnobj_hdr_t",1,"len")=2 + Set gtmtypes("rtnobj_hdr_t",1,"type")="unsigned-short" + Set gtmtypfldindx("rtnobj_hdr_t","queueIndex")=1 + Set gtmtypes("rtnobj_hdr_t",2,"name")="rtnobj_hdr_t.state" + Set gtmtypes("rtnobj_hdr_t",2,"off")=2 + Set gtmtypes("rtnobj_hdr_t",2,"len")=1 + Set gtmtypes("rtnobj_hdr_t",2,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","state")=2 + Set gtmtypes("rtnobj_hdr_t",3,"name")="rtnobj_hdr_t.initialized" + Set gtmtypes("rtnobj_hdr_t",3,"off")=3 + Set gtmtypes("rtnobj_hdr_t",3,"len")=1 + Set gtmtypes("rtnobj_hdr_t",3,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","initialized")=3 + Set gtmtypes("rtnobj_hdr_t",4,"name")="rtnobj_hdr_t.refcnt" + Set gtmtypes("rtnobj_hdr_t",4,"off")=4 + Set gtmtypes("rtnobj_hdr_t",4,"len")=4 + Set gtmtypes("rtnobj_hdr_t",4,"type")="int" + Set gtmtypfldindx("rtnobj_hdr_t","refcnt")=4 + Set gtmtypes("rtnobj_hdr_t",5,"name")="rtnobj_hdr_t.objhash" + Set gtmtypes("rtnobj_hdr_t",5,"off")=8 + Set gtmtypes("rtnobj_hdr_t",5,"len")=8 + Set gtmtypes("rtnobj_hdr_t",5,"type")="uint64_t" + Set gtmtypfldindx("rtnobj_hdr_t","objhash")=5 + Set gtmtypes("rtnobj_hdr_t",6,"name")="rtnobj_hdr_t.next_rtnobj_shm_offset" + Set gtmtypes("rtnobj_hdr_t",6,"off")=16 + Set gtmtypes("rtnobj_hdr_t",6,"len")=8 + Set gtmtypes("rtnobj_hdr_t",6,"type")="uint64_t" + Set gtmtypfldindx("rtnobj_hdr_t","next_rtnobj_shm_offset")=6 + Set gtmtypes("rtnobj_hdr_t",7,"name")="rtnobj_hdr_t.relinkctl_index" + Set gtmtypes("rtnobj_hdr_t",7,"off")=24 + Set gtmtypes("rtnobj_hdr_t",7,"len")=4 + Set gtmtypes("rtnobj_hdr_t",7,"type")="unsigned-int" + Set gtmtypfldindx("rtnobj_hdr_t","relinkctl_index")=7 + Set gtmtypes("rtnobj_hdr_t",8,"name")="rtnobj_hdr_t.objLen" + Set gtmtypes("rtnobj_hdr_t",8,"off")=28 + Set gtmtypes("rtnobj_hdr_t",8,"len")=4 + Set gtmtypes("rtnobj_hdr_t",8,"type")="unsigned-int" + Set gtmtypfldindx("rtnobj_hdr_t","objLen")=8 + Set gtmtypes("rtnobj_hdr_t",9,"name")="rtnobj_hdr_t.userStorage" + Set gtmtypes("rtnobj_hdr_t",9,"off")=32 + Set gtmtypes("rtnobj_hdr_t",9,"len")=8 + Set gtmtypes("rtnobj_hdr_t",9,"type")="union" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage")=9 + Set gtmtypes("rtnobj_hdr_t",10,"name")="rtnobj_hdr_t.userStorage.freePtr" + Set gtmtypes("rtnobj_hdr_t",10,"off")=32 + Set gtmtypes("rtnobj_hdr_t",10,"len")=8 + Set gtmtypes("rtnobj_hdr_t",10,"type")="que_ent" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr")=10 + Set gtmtypes("rtnobj_hdr_t",11,"name")="rtnobj_hdr_t.userStorage.freePtr.fl" + Set gtmtypes("rtnobj_hdr_t",11,"off")=32 + Set gtmtypes("rtnobj_hdr_t",11,"len")=4 + Set gtmtypes("rtnobj_hdr_t",11,"type")="intptr_t" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr.fl")=11 + Set gtmtypes("rtnobj_hdr_t",12,"name")="rtnobj_hdr_t.userStorage.freePtr.bl" + Set gtmtypes("rtnobj_hdr_t",12,"off")=36 + Set gtmtypes("rtnobj_hdr_t",12,"len")=4 + Set gtmtypes("rtnobj_hdr_t",12,"type")="intptr_t" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr.bl")=12 + Set gtmtypes("rtnobj_hdr_t",13,"name")="rtnobj_hdr_t.userStorage.userStart" + Set gtmtypes("rtnobj_hdr_t",13,"off")=32 + Set gtmtypes("rtnobj_hdr_t",13,"len")=1 + Set gtmtypes("rtnobj_hdr_t",13,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.userStart")=13 + ; + Set gtmtypes("rtnobjshm_hdr_t")="struct" + Set gtmtypes("rtnobjshm_hdr_t",0)=9 + Set gtmtypes("rtnobjshm_hdr_t","len")=444 + Set gtmtypes("rtnobjshm_hdr_t",1,"name")="rtnobjshm_hdr_t.freeList" + Set gtmtypes("rtnobjshm_hdr_t",1,"off")=0 + Set gtmtypes("rtnobjshm_hdr_t",1,"len")=408 + Set gtmtypes("rtnobjshm_hdr_t",1,"type")="que_ent" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList")=1 + Set gtmtypes("rtnobjshm_hdr_t",1,"dim")=51 + Set gtmtypes("rtnobjshm_hdr_t",2,"name")="rtnobjshm_hdr_t.freeList[0].fl" + Set gtmtypes("rtnobjshm_hdr_t",2,"off")=0 + Set gtmtypes("rtnobjshm_hdr_t",2,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",2,"type")="intptr_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList[0].fl")=2 + Set gtmtypes("rtnobjshm_hdr_t",3,"name")="rtnobjshm_hdr_t.freeList[0].bl" + Set gtmtypes("rtnobjshm_hdr_t",3,"off")=4 + Set gtmtypes("rtnobjshm_hdr_t",3,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",3,"type")="intptr_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList[0].bl")=3 + Set gtmtypes("rtnobjshm_hdr_t",4,"name")="rtnobjshm_hdr_t.rtnobj_min_free_index" + Set gtmtypes("rtnobjshm_hdr_t",4,"off")=408 + Set gtmtypes("rtnobjshm_hdr_t",4,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",4,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_min_free_index")=4 + Set gtmtypes("rtnobjshm_hdr_t",5,"name")="rtnobjshm_hdr_t.rtnobj_max_free_index" + Set gtmtypes("rtnobjshm_hdr_t",5,"off")=412 + Set gtmtypes("rtnobjshm_hdr_t",5,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",5,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_max_free_index")=5 + Set gtmtypes("rtnobjshm_hdr_t",6,"name")="rtnobjshm_hdr_t.rtnobj_shmid" + Set gtmtypes("rtnobjshm_hdr_t",6,"off")=416 + Set gtmtypes("rtnobjshm_hdr_t",6,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",6,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_shmid")=6 + Set gtmtypes("rtnobjshm_hdr_t",7,"name")="rtnobjshm_hdr_t.real_len" + Set gtmtypes("rtnobjshm_hdr_t",7,"off")=420 + Set gtmtypes("rtnobjshm_hdr_t",7,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",7,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","real_len")=7 + Set gtmtypes("rtnobjshm_hdr_t",8,"name")="rtnobjshm_hdr_t.used_len" + Set gtmtypes("rtnobjshm_hdr_t",8,"off")=428 + Set gtmtypes("rtnobjshm_hdr_t",8,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",8,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","used_len")=8 + Set gtmtypes("rtnobjshm_hdr_t",9,"name")="rtnobjshm_hdr_t.shm_len" + Set gtmtypes("rtnobjshm_hdr_t",9,"off")=436 + Set gtmtypes("rtnobjshm_hdr_t",9,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",9,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","shm_len")=9 + ; + Set gtmtypes("save_se")="struct" + Set gtmtypes("save_se",0)=15 + Set gtmtypes("save_se","len")=88 + Set gtmtypes("save_se",1,"name")="save_se.expr_start" + Set gtmtypes("save_se",1,"off")=0 + Set gtmtypes("save_se",1,"len")=4 + Set gtmtypes("save_se",1,"type")="addr" + Set gtmtypfldindx("save_se","expr_start")=1 + Set gtmtypes("save_se",2,"name")="save_se.expr_start_orig" + Set gtmtypes("save_se",2,"off")=4 + Set gtmtypes("save_se",2,"len")=4 + Set gtmtypes("save_se",2,"type")="addr" + Set gtmtypfldindx("save_se","expr_start_orig")=2 + Set gtmtypes("save_se",3,"name")="save_se.shift_side_effects" + Set gtmtypes("save_se",3,"off")=8 + Set gtmtypes("save_se",3,"len")=4 + Set gtmtypes("save_se",3,"type")="boolean_t" + Set gtmtypfldindx("save_se","shift_side_effects")=3 + Set gtmtypes("save_se",4,"name")="save_se.saw_side_effect" + Set gtmtypes("save_se",4,"off")=12 + Set gtmtypes("save_se",4,"len")=4 + Set gtmtypes("save_se",4,"type")="boolean_t" + Set gtmtypfldindx("save_se","saw_side_effect")=4 + Set gtmtypes("save_se",5,"name")="save_se.tmpchain" + Set gtmtypes("save_se",5,"off")=16 + Set gtmtypes("save_se",5,"len")=72 + Set gtmtypes("save_se",5,"type")="triple" + Set gtmtypfldindx("save_se","tmpchain")=5 + Set gtmtypes("save_se",6,"name")="save_se.tmpchain.opcode" + Set gtmtypes("save_se",6,"off")=16 + Set gtmtypes("save_se",6,"len")=4 + Set gtmtypes("save_se",6,"type")="unsigned-int" + Set gtmtypfldindx("save_se","tmpchain.opcode")=6 + Set gtmtypes("save_se",7,"name")="save_se.tmpchain.exorder" + Set gtmtypes("save_se",7,"off")=20 + Set gtmtypes("save_se",7,"len")=8 + Set gtmtypes("save_se",7,"type")="struct" + Set gtmtypfldindx("save_se","tmpchain.exorder")=7 + Set gtmtypes("save_se",8,"name")="save_se.tmpchain.exorder.fl" + Set gtmtypes("save_se",8,"off")=20 + Set gtmtypes("save_se",8,"len")=4 + Set gtmtypes("save_se",8,"type")="addr" + Set gtmtypfldindx("save_se","tmpchain.exorder.fl")=8 + Set gtmtypes("save_se",9,"name")="save_se.tmpchain.exorder.bl" + Set gtmtypes("save_se",9,"off")=24 + Set gtmtypes("save_se",9,"len")=4 + Set gtmtypes("save_se",9,"type")="addr" + Set gtmtypfldindx("save_se","tmpchain.exorder.bl")=9 + Set gtmtypes("save_se",10,"name")="save_se.tmpchain.backptr" + Set gtmtypes("save_se",10,"off")=28 + Set gtmtypes("save_se",10,"len")=12 + Set gtmtypes("save_se",10,"type")="tbp" + Set gtmtypfldindx("save_se","tmpchain.backptr")=10 + Set gtmtypes("save_se",11,"name")="save_se.tmpchain.jmplist" + Set gtmtypes("save_se",11,"off")=40 + Set gtmtypes("save_se",11,"len")=12 + Set gtmtypes("save_se",11,"type")="tbp" + Set gtmtypfldindx("save_se","tmpchain.jmplist")=11 + Set gtmtypes("save_se",12,"name")="save_se.tmpchain.src" + Set gtmtypes("save_se",12,"off")=52 + Set gtmtypes("save_se",12,"len")=8 + Set gtmtypes("save_se",12,"type")="source_address" + Set gtmtypfldindx("save_se","tmpchain.src")=12 + Set gtmtypes("save_se",13,"name")="save_se.tmpchain.rtaddr" + Set gtmtypes("save_se",13,"off")=60 + Set gtmtypes("save_se",13,"len")=4 + Set gtmtypes("save_se",13,"type")="int" + Set gtmtypfldindx("save_se","tmpchain.rtaddr")=13 + Set gtmtypes("save_se",14,"name")="save_se.tmpchain.operand" + Set gtmtypes("save_se",14,"off")=64 + Set gtmtypes("save_se",14,"len")=16 + Set gtmtypes("save_se",14,"type")="oprtype" + Set gtmtypfldindx("save_se","tmpchain.operand")=14 + Set gtmtypes("save_se",14,"dim")=2 + Set gtmtypes("save_se",15,"name")="save_se.tmpchain.destination" + Set gtmtypes("save_se",15,"off")=80 + Set gtmtypes("save_se",15,"len")=8 + Set gtmtypes("save_se",15,"type")="oprtype" + Set gtmtypfldindx("save_se","tmpchain.destination")=15 + ; + Set gtmtypes("save_strct")="struct" + Set gtmtypes("save_strct",0)=5 + Set gtmtypes("save_strct","len")=20 + Set gtmtypes("save_strct",1,"name")="save_strct.blk" + Set gtmtypes("save_strct",1,"off")=0 + Set gtmtypes("save_strct",1,"len")=4 + Set gtmtypes("save_strct",1,"type")="int" + Set gtmtypfldindx("save_strct","blk")=1 + Set gtmtypes("save_strct",2,"name")="save_strct.bp" + Set gtmtypes("save_strct",2,"off")=4 + Set gtmtypes("save_strct",2,"len")=4 + Set gtmtypes("save_strct",2,"type")="addr" + Set gtmtypfldindx("save_strct","bp")=2 + Set gtmtypes("save_strct",3,"name")="save_strct.region" + Set gtmtypes("save_strct",3,"off")=8 + Set gtmtypes("save_strct",3,"len")=4 + Set gtmtypes("save_strct",3,"type")="addr" + Set gtmtypfldindx("save_strct","region")=3 + Set gtmtypes("save_strct",4,"name")="save_strct.comment" + Set gtmtypes("save_strct",4,"off")=12 + Set gtmtypes("save_strct",4,"len")=4 + Set gtmtypes("save_strct",4,"type")="addr" + Set gtmtypfldindx("save_strct","comment")=4 + Set gtmtypes("save_strct",5,"name")="save_strct.ver" + Set gtmtypes("save_strct",5,"off")=16 + Set gtmtypes("save_strct",5,"len")=2 + Set gtmtypes("save_strct",5,"type")="short" + Set gtmtypfldindx("save_strct","ver")=5 + ; + Set gtmtypes("select_list")="struct" + Set gtmtypes("select_list",0)=5 + Set gtmtypes("select_list","len")=16 + Set gtmtypes("select_list",1,"name")="select_list.next" + Set gtmtypes("select_list",1,"off")=0 + Set gtmtypes("select_list",1,"len")=4 + Set gtmtypes("select_list",1,"type")="addr" + Set gtmtypfldindx("select_list","next")=1 + Set gtmtypes("select_list",2,"name")="select_list.buff" + Set gtmtypes("select_list",2,"off")=4 + Set gtmtypes("select_list",2,"len")=4 + Set gtmtypes("select_list",2,"type")="addr" + Set gtmtypfldindx("select_list","buff")=2 + Set gtmtypes("select_list",3,"name")="select_list.len" + Set gtmtypes("select_list",3,"off")=8 + Set gtmtypes("select_list",3,"len")=2 + Set gtmtypes("select_list",3,"type")="short" + Set gtmtypfldindx("select_list","len")=3 + Set gtmtypes("select_list",4,"name")="select_list.exclude" + Set gtmtypes("select_list",4,"off")=10 + Set gtmtypes("select_list",4,"len")=1 + Set gtmtypes("select_list",4,"type")="char" + Set gtmtypfldindx("select_list","exclude")=4 + Set gtmtypes("select_list",5,"name")="select_list.has_wildcard" + Set gtmtypes("select_list",5,"off")=12 + Set gtmtypes("select_list",5,"len")=4 + Set gtmtypes("select_list",5,"type")="boolean_t" + Set gtmtypfldindx("select_list","has_wildcard")=5 + ; + Set gtmtypes("sem_info")="struct" + Set gtmtypes("sem_info",0)=2 + Set gtmtypes("sem_info","len")=8 + Set gtmtypes("sem_info",1,"name")="sem_info.ftok_key" + Set gtmtypes("sem_info",1,"off")=0 + Set gtmtypes("sem_info",1,"len")=4 + Set gtmtypes("sem_info",1,"type")="int" + Set gtmtypfldindx("sem_info","ftok_key")=1 + Set gtmtypes("sem_info",2,"name")="sem_info.sem_id" + Set gtmtypes("sem_info",2,"off")=4 + Set gtmtypes("sem_info",2,"len")=4 + Set gtmtypes("sem_info",2,"type")="int" + Set gtmtypfldindx("sem_info","sem_id")=2 + ; + Set gtmtypes("semid_queue_elem")="struct" + Set gtmtypes("semid_queue_elem",0)=2 + Set gtmtypes("semid_queue_elem","len")=8 + Set gtmtypes("semid_queue_elem",1,"name")="semid_queue_elem.semid" + Set gtmtypes("semid_queue_elem",1,"off")=0 + Set gtmtypes("semid_queue_elem",1,"len")=4 + Set gtmtypes("semid_queue_elem",1,"type")="int" + Set gtmtypfldindx("semid_queue_elem","semid")=1 + Set gtmtypes("semid_queue_elem",2,"name")="semid_queue_elem.prev" + Set gtmtypes("semid_queue_elem",2,"off")=4 + Set gtmtypes("semid_queue_elem",2,"len")=4 + Set gtmtypes("semid_queue_elem",2,"type")="addr" + Set gtmtypfldindx("semid_queue_elem","prev")=2 + ; + Set gtmtypes("semwait_status_t")="struct" + Set gtmtypes("semwait_status_t",0)=7 + Set gtmtypes("semwait_status_t","len")=28 + Set gtmtypes("semwait_status_t",1,"name")="semwait_status_t.line_no" + Set gtmtypes("semwait_status_t",1,"off")=0 + Set gtmtypes("semwait_status_t",1,"len")=4 + Set gtmtypes("semwait_status_t",1,"type")="int" + Set gtmtypfldindx("semwait_status_t","line_no")=1 + Set gtmtypes("semwait_status_t",2,"name")="semwait_status_t.save_errno" + Set gtmtypes("semwait_status_t",2,"off")=4 + Set gtmtypes("semwait_status_t",2,"len")=4 + Set gtmtypes("semwait_status_t",2,"type")="int" + Set gtmtypfldindx("semwait_status_t","save_errno")=2 + Set gtmtypes("semwait_status_t",3,"name")="semwait_status_t.status1" + Set gtmtypes("semwait_status_t",3,"off")=8 + Set gtmtypes("semwait_status_t",3,"len")=4 + Set gtmtypes("semwait_status_t",3,"type")="int" + Set gtmtypfldindx("semwait_status_t","status1")=3 + Set gtmtypes("semwait_status_t",4,"name")="semwait_status_t.status2" + Set gtmtypes("semwait_status_t",4,"off")=12 + Set gtmtypes("semwait_status_t",4,"len")=4 + Set gtmtypes("semwait_status_t",4,"type")="int" + Set gtmtypfldindx("semwait_status_t","status2")=4 + Set gtmtypes("semwait_status_t",5,"name")="semwait_status_t.sem_pid" + Set gtmtypes("semwait_status_t",5,"off")=16 + Set gtmtypes("semwait_status_t",5,"len")=4 + Set gtmtypes("semwait_status_t",5,"type")="int" + Set gtmtypfldindx("semwait_status_t","sem_pid")=5 + Set gtmtypes("semwait_status_t",6,"name")="semwait_status_t.module" + Set gtmtypes("semwait_status_t",6,"off")=20 + Set gtmtypes("semwait_status_t",6,"len")=4 + Set gtmtypes("semwait_status_t",6,"type")="addr" + Set gtmtypfldindx("semwait_status_t","module")=6 + Set gtmtypes("semwait_status_t",7,"name")="semwait_status_t.op" + Set gtmtypes("semwait_status_t",7,"off")=24 + Set gtmtypes("semwait_status_t",7,"len")=4 + Set gtmtypes("semwait_status_t",7,"type")="int" + Set gtmtypfldindx("semwait_status_t","op")=7 + ; + Set gtmtypes("set_jnl_options")="struct" + Set gtmtypes("set_jnl_options",0)=16 + Set gtmtypes("set_jnl_options","len")=64 + Set gtmtypes("set_jnl_options",1,"name")="set_jnl_options.cli_journal" + Set gtmtypes("set_jnl_options",1,"off")=0 + Set gtmtypes("set_jnl_options",1,"len")=4 + Set gtmtypes("set_jnl_options",1,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_journal")=1 + Set gtmtypes("set_jnl_options",2,"name")="set_jnl_options.cli_enable" + Set gtmtypes("set_jnl_options",2,"off")=4 + Set gtmtypes("set_jnl_options",2,"len")=4 + Set gtmtypes("set_jnl_options",2,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_enable")=2 + Set gtmtypes("set_jnl_options",3,"name")="set_jnl_options.cli_on" + Set gtmtypes("set_jnl_options",3,"off")=8 + Set gtmtypes("set_jnl_options",3,"len")=4 + Set gtmtypes("set_jnl_options",3,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_on")=3 + Set gtmtypes("set_jnl_options",4,"name")="set_jnl_options.cli_replic_on" + Set gtmtypes("set_jnl_options",4,"off")=12 + Set gtmtypes("set_jnl_options",4,"len")=4 + Set gtmtypes("set_jnl_options",4,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_replic_on")=4 + Set gtmtypes("set_jnl_options",5,"name")="set_jnl_options.alignsize_specified" + Set gtmtypes("set_jnl_options",5,"off")=16 + Set gtmtypes("set_jnl_options",5,"len")=4 + Set gtmtypes("set_jnl_options",5,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","alignsize_specified")=5 + Set gtmtypes("set_jnl_options",6,"name")="set_jnl_options.allocation_specified" + Set gtmtypes("set_jnl_options",6,"off")=20 + Set gtmtypes("set_jnl_options",6,"len")=4 + Set gtmtypes("set_jnl_options",6,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","allocation_specified")=6 + Set gtmtypes("set_jnl_options",7,"name")="set_jnl_options.autoswitchlimit_specified" + Set gtmtypes("set_jnl_options",7,"off")=24 + Set gtmtypes("set_jnl_options",7,"len")=4 + Set gtmtypes("set_jnl_options",7,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","autoswitchlimit_specified")=7 + Set gtmtypes("set_jnl_options",8,"name")="set_jnl_options.image_type_specified" + Set gtmtypes("set_jnl_options",8,"off")=28 + Set gtmtypes("set_jnl_options",8,"len")=4 + Set gtmtypes("set_jnl_options",8,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","image_type_specified")=8 + Set gtmtypes("set_jnl_options",9,"name")="set_jnl_options.buffer_size_specified" + Set gtmtypes("set_jnl_options",9,"off")=32 + Set gtmtypes("set_jnl_options",9,"len")=4 + Set gtmtypes("set_jnl_options",9,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","buffer_size_specified")=9 + Set gtmtypes("set_jnl_options",10,"name")="set_jnl_options.epoch_interval_specified" + Set gtmtypes("set_jnl_options",10,"off")=36 + Set gtmtypes("set_jnl_options",10,"len")=4 + Set gtmtypes("set_jnl_options",10,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","epoch_interval_specified")=10 + Set gtmtypes("set_jnl_options",11,"name")="set_jnl_options.extension_specified" + Set gtmtypes("set_jnl_options",11,"off")=40 + Set gtmtypes("set_jnl_options",11,"len")=4 + Set gtmtypes("set_jnl_options",11,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","extension_specified")=11 + Set gtmtypes("set_jnl_options",12,"name")="set_jnl_options.filename_specified" + Set gtmtypes("set_jnl_options",12,"off")=44 + Set gtmtypes("set_jnl_options",12,"len")=4 + Set gtmtypes("set_jnl_options",12,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","filename_specified")=12 + Set gtmtypes("set_jnl_options",13,"name")="set_jnl_options.sync_io_specified" + Set gtmtypes("set_jnl_options",13,"off")=48 + Set gtmtypes("set_jnl_options",13,"len")=4 + Set gtmtypes("set_jnl_options",13,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","sync_io_specified")=13 + Set gtmtypes("set_jnl_options",14,"name")="set_jnl_options.yield_limit_specified" + Set gtmtypes("set_jnl_options",14,"off")=52 + Set gtmtypes("set_jnl_options",14,"len")=4 + Set gtmtypes("set_jnl_options",14,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","yield_limit_specified")=14 + Set gtmtypes("set_jnl_options",15,"name")="set_jnl_options.sync_io" + Set gtmtypes("set_jnl_options",15,"off")=56 + Set gtmtypes("set_jnl_options",15,"len")=4 + Set gtmtypes("set_jnl_options",15,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","sync_io")=15 + Set gtmtypes("set_jnl_options",16,"name")="set_jnl_options.yield_limit" + Set gtmtypes("set_jnl_options",16,"off")=60 + Set gtmtypes("set_jnl_options",16,"len")=4 + Set gtmtypes("set_jnl_options",16,"type")="int" + Set gtmtypfldindx("set_jnl_options","yield_limit")=16 + ; + Set gtmtypes("sgbg_addrs")="struct" + Set gtmtypes("sgbg_addrs",0)=2 + Set gtmtypes("sgbg_addrs","len")=8 + Set gtmtypes("sgbg_addrs",1,"name")="sgbg_addrs.cache_state" + Set gtmtypes("sgbg_addrs",1,"off")=0 + Set gtmtypes("sgbg_addrs",1,"len")=4 + Set gtmtypes("sgbg_addrs",1,"type")="addr" + Set gtmtypfldindx("sgbg_addrs","cache_state")=1 + Set gtmtypes("sgbg_addrs",2,"name")="sgbg_addrs.fill1" + Set gtmtypes("sgbg_addrs",2,"off")=4 + Set gtmtypes("sgbg_addrs",2,"len")=4 + Set gtmtypes("sgbg_addrs",2,"type")="addr" + Set gtmtypfldindx("sgbg_addrs","fill1")=2 + ; + Set gtmtypes("sgm_info")="struct" + Set gtmtypes("sgm_info",0)=39 + Set gtmtypes("sgm_info","len")=160 + Set gtmtypes("sgm_info",1,"name")="sgm_info.next_sgm_info" + Set gtmtypes("sgm_info",1,"off")=0 + Set gtmtypes("sgm_info",1,"len")=4 + Set gtmtypes("sgm_info",1,"type")="addr" + Set gtmtypfldindx("sgm_info","next_sgm_info")=1 + Set gtmtypes("sgm_info",2,"name")="sgm_info.next_tp_si_by_ftok" + Set gtmtypes("sgm_info",2,"off")=4 + Set gtmtypes("sgm_info",2,"len")=4 + Set gtmtypes("sgm_info",2,"type")="addr" + Set gtmtypfldindx("sgm_info","next_tp_si_by_ftok")=2 + Set gtmtypes("sgm_info",3,"name")="sgm_info.first_tp_hist" + Set gtmtypes("sgm_info",3,"off")=8 + Set gtmtypes("sgm_info",3,"len")=4 + Set gtmtypes("sgm_info",3,"type")="addr" + Set gtmtypfldindx("sgm_info","first_tp_hist")=3 + Set gtmtypes("sgm_info",4,"name")="sgm_info.last_tp_hist" + Set gtmtypes("sgm_info",4,"off")=12 + Set gtmtypes("sgm_info",4,"len")=4 + Set gtmtypes("sgm_info",4,"type")="addr" + Set gtmtypfldindx("sgm_info","last_tp_hist")=4 + Set gtmtypes("sgm_info",5,"name")="sgm_info.blks_in_use" + Set gtmtypes("sgm_info",5,"off")=16 + Set gtmtypes("sgm_info",5,"len")=4 + Set gtmtypes("sgm_info",5,"type")="addr" + Set gtmtypfldindx("sgm_info","blks_in_use")=5 + Set gtmtypes("sgm_info",6,"name")="sgm_info.start_tn" + Set gtmtypes("sgm_info",6,"off")=20 + Set gtmtypes("sgm_info",6,"len")=8 + Set gtmtypes("sgm_info",6,"type")="uint64_t" + Set gtmtypfldindx("sgm_info","start_tn")=6 + Set gtmtypes("sgm_info",7,"name")="sgm_info.gv_cur_region" + Set gtmtypes("sgm_info",7,"off")=28 + Set gtmtypes("sgm_info",7,"len")=4 + Set gtmtypes("sgm_info",7,"type")="addr" + Set gtmtypfldindx("sgm_info","gv_cur_region")=7 + Set gtmtypes("sgm_info",8,"name")="sgm_info.update_trans" + Set gtmtypes("sgm_info",8,"off")=32 + Set gtmtypes("sgm_info",8,"len")=4 + Set gtmtypes("sgm_info",8,"type")="unsigned-int" + Set gtmtypfldindx("sgm_info","update_trans")=8 + Set gtmtypes("sgm_info",9,"name")="sgm_info.first_cw_set" + Set gtmtypes("sgm_info",9,"off")=36 + Set gtmtypes("sgm_info",9,"len")=4 + Set gtmtypes("sgm_info",9,"type")="addr" + Set gtmtypfldindx("sgm_info","first_cw_set")=9 + Set gtmtypes("sgm_info",10,"name")="sgm_info.last_cw_set" + Set gtmtypes("sgm_info",10,"off")=40 + Set gtmtypes("sgm_info",10,"len")=4 + Set gtmtypes("sgm_info",10,"type")="addr" + Set gtmtypfldindx("sgm_info","last_cw_set")=10 + Set gtmtypes("sgm_info",11,"name")="sgm_info.first_cw_bitmap" + Set gtmtypes("sgm_info",11,"off")=44 + Set gtmtypes("sgm_info",11,"len")=4 + Set gtmtypes("sgm_info",11,"type")="addr" + Set gtmtypfldindx("sgm_info","first_cw_bitmap")=11 + Set gtmtypes("sgm_info",12,"name")="sgm_info.cw_set_list" + Set gtmtypes("sgm_info",12,"off")=48 + Set gtmtypes("sgm_info",12,"len")=4 + Set gtmtypes("sgm_info",12,"type")="addr" + Set gtmtypfldindx("sgm_info","cw_set_list")=12 + Set gtmtypes("sgm_info",13,"name")="sgm_info.tlvl_cw_set_list" + Set gtmtypes("sgm_info",13,"off")=52 + Set gtmtypes("sgm_info",13,"len")=4 + Set gtmtypes("sgm_info",13,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_cw_set_list")=13 + Set gtmtypes("sgm_info",14,"name")="sgm_info.new_buff_list" + Set gtmtypes("sgm_info",14,"off")=56 + Set gtmtypes("sgm_info",14,"len")=4 + Set gtmtypes("sgm_info",14,"type")="addr" + Set gtmtypfldindx("sgm_info","new_buff_list")=14 + Set gtmtypes("sgm_info",15,"name")="sgm_info.recompute_list" + Set gtmtypes("sgm_info",15,"off")=60 + Set gtmtypes("sgm_info",15,"len")=4 + Set gtmtypes("sgm_info",15,"type")="addr" + Set gtmtypfldindx("sgm_info","recompute_list")=15 + Set gtmtypes("sgm_info",16,"name")="sgm_info.tlvl_info_list" + Set gtmtypes("sgm_info",16,"off")=64 + Set gtmtypes("sgm_info",16,"len")=4 + Set gtmtypes("sgm_info",16,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_info_list")=16 + Set gtmtypes("sgm_info",17,"name")="sgm_info.cr_array" + Set gtmtypes("sgm_info",17,"off")=68 + Set gtmtypes("sgm_info",17,"len")=4 + Set gtmtypes("sgm_info",17,"type")="addr" + Set gtmtypfldindx("sgm_info","cr_array")=17 + Set gtmtypes("sgm_info",18,"name")="sgm_info.tp_csd" + Set gtmtypes("sgm_info",18,"off")=72 + Set gtmtypes("sgm_info",18,"len")=4 + Set gtmtypes("sgm_info",18,"type")="addr" + Set gtmtypfldindx("sgm_info","tp_csd")=18 + Set gtmtypes("sgm_info",19,"name")="sgm_info.tp_csa" + Set gtmtypes("sgm_info",19,"off")=76 + Set gtmtypes("sgm_info",19,"len")=4 + Set gtmtypes("sgm_info",19,"type")="addr" + Set gtmtypfldindx("sgm_info","tp_csa")=19 + Set gtmtypes("sgm_info",20,"name")="sgm_info.kill_set_head" + Set gtmtypes("sgm_info",20,"off")=80 + Set gtmtypes("sgm_info",20,"len")=4 + Set gtmtypes("sgm_info",20,"type")="addr" + Set gtmtypfldindx("sgm_info","kill_set_head")=20 + Set gtmtypes("sgm_info",21,"name")="sgm_info.kill_set_tail" + Set gtmtypes("sgm_info",21,"off")=84 + Set gtmtypes("sgm_info",21,"len")=4 + Set gtmtypes("sgm_info",21,"type")="addr" + Set gtmtypfldindx("sgm_info","kill_set_tail")=21 + Set gtmtypes("sgm_info",22,"name")="sgm_info.tlvl_info_head" + Set gtmtypes("sgm_info",22,"off")=88 + Set gtmtypes("sgm_info",22,"len")=4 + Set gtmtypes("sgm_info",22,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_info_head")=22 + Set gtmtypes("sgm_info",23,"name")="sgm_info.jnl_head" + Set gtmtypes("sgm_info",23,"off")=92 + Set gtmtypes("sgm_info",23,"len")=4 + Set gtmtypes("sgm_info",23,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_head")=23 + Set gtmtypes("sgm_info",24,"name")="sgm_info.jnl_tail" + Set gtmtypes("sgm_info",24,"off")=96 + Set gtmtypes("sgm_info",24,"len")=4 + Set gtmtypes("sgm_info",24,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_tail")=24 + Set gtmtypes("sgm_info",25,"name")="sgm_info.format_buff_list" + Set gtmtypes("sgm_info",25,"off")=100 + Set gtmtypes("sgm_info",25,"len")=4 + Set gtmtypes("sgm_info",25,"type")="addr" + Set gtmtypfldindx("sgm_info","format_buff_list")=25 + Set gtmtypes("sgm_info",26,"name")="sgm_info.jnl_list" + Set gtmtypes("sgm_info",26,"off")=104 + Set gtmtypes("sgm_info",26,"len")=4 + Set gtmtypes("sgm_info",26,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_list")=26 + Set gtmtypes("sgm_info",27,"name")="sgm_info.cw_set_depth" + Set gtmtypes("sgm_info",27,"off")=108 + Set gtmtypes("sgm_info",27,"len")=4 + Set gtmtypes("sgm_info",27,"type")="int" + Set gtmtypfldindx("sgm_info","cw_set_depth")=27 + Set gtmtypes("sgm_info",28,"name")="sgm_info.cr_array_index" + Set gtmtypes("sgm_info",28,"off")=112 + Set gtmtypes("sgm_info",28,"len")=4 + Set gtmtypes("sgm_info",28,"type")="int" + Set gtmtypfldindx("sgm_info","cr_array_index")=28 + Set gtmtypes("sgm_info",29,"name")="sgm_info.num_of_blks" + Set gtmtypes("sgm_info",29,"off")=116 + Set gtmtypes("sgm_info",29,"len")=4 + Set gtmtypes("sgm_info",29,"type")="int" + Set gtmtypfldindx("sgm_info","num_of_blks")=29 + Set gtmtypes("sgm_info",30,"name")="sgm_info.tp_hist_size" + Set gtmtypes("sgm_info",30,"off")=120 + Set gtmtypes("sgm_info",30,"len")=4 + Set gtmtypes("sgm_info",30,"type")="int" + Set gtmtypfldindx("sgm_info","tp_hist_size")=30 + Set gtmtypes("sgm_info",31,"name")="sgm_info.cur_tp_hist_size" + Set gtmtypes("sgm_info",31,"off")=124 + Set gtmtypes("sgm_info",31,"len")=4 + Set gtmtypes("sgm_info",31,"type")="int" + Set gtmtypfldindx("sgm_info","cur_tp_hist_size")=31 + Set gtmtypes("sgm_info",32,"name")="sgm_info.total_jnl_rec_size" + Set gtmtypes("sgm_info",32,"off")=128 + Set gtmtypes("sgm_info",32,"len")=4 + Set gtmtypes("sgm_info",32,"type")="int" + Set gtmtypfldindx("sgm_info","total_jnl_rec_size")=32 + Set gtmtypes("sgm_info",33,"name")="sgm_info.cr_array_size" + Set gtmtypes("sgm_info",33,"off")=132 + Set gtmtypes("sgm_info",33,"len")=4 + Set gtmtypes("sgm_info",33,"type")="int" + Set gtmtypfldindx("sgm_info","cr_array_size")=33 + Set gtmtypes("sgm_info",34,"name")="sgm_info.tp_set_sgm_done" + Set gtmtypes("sgm_info",34,"off")=136 + Set gtmtypes("sgm_info",34,"len")=4 + Set gtmtypes("sgm_info",34,"type")="boolean_t" + Set gtmtypfldindx("sgm_info","tp_set_sgm_done")=34 + Set gtmtypes("sgm_info",35,"name")="sgm_info.crash_count" + Set gtmtypes("sgm_info",35,"off")=140 + Set gtmtypes("sgm_info",35,"len")=4 + Set gtmtypes("sgm_info",35,"type")="int" + Set gtmtypfldindx("sgm_info","crash_count")=35 + Set gtmtypes("sgm_info",36,"name")="sgm_info.backup_block_saved" + Set gtmtypes("sgm_info",36,"off")=144 + Set gtmtypes("sgm_info",36,"len")=4 + Set gtmtypes("sgm_info",36,"type")="boolean_t" + Set gtmtypfldindx("sgm_info","backup_block_saved")=36 + Set gtmtypes("sgm_info",37,"name")="sgm_info.kip_csa" + Set gtmtypes("sgm_info",37,"off")=148 + Set gtmtypes("sgm_info",37,"len")=4 + Set gtmtypes("sgm_info",37,"type")="addr" + Set gtmtypfldindx("sgm_info","kip_csa")=37 + Set gtmtypes("sgm_info",38,"name")="sgm_info.tmp_cw_set_depth" + Set gtmtypes("sgm_info",38,"off")=152 + Set gtmtypes("sgm_info",38,"len")=4 + Set gtmtypes("sgm_info",38,"type")="int" + Set gtmtypfldindx("sgm_info","tmp_cw_set_depth")=38 + Set gtmtypes("sgm_info",39,"name")="sgm_info.tot_jrec_size" + Set gtmtypes("sgm_info",39,"off")=156 + Set gtmtypes("sgm_info",39,"len")=4 + Set gtmtypes("sgm_info",39,"type")="unsigned-int" + Set gtmtypfldindx("sgm_info","tot_jrec_size")=39 + ; + Set gtmtypes("sgmm_addrs")="struct" + Set gtmtypes("sgmm_addrs",0)=1 + Set gtmtypes("sgmm_addrs","len")=4 + Set gtmtypes("sgmm_addrs",1,"name")="sgmm_addrs.filler" + Set gtmtypes("sgmm_addrs",1,"off")=0 + Set gtmtypes("sgmm_addrs",1,"len")=4 + Set gtmtypes("sgmm_addrs",1,"type")="int" + Set gtmtypfldindx("sgmm_addrs","filler")=1 + ; + Set gtmtypes("sgmnt_addrs")="struct" + Set gtmtypes("sgmnt_addrs",0)=143 + Set gtmtypes("sgmnt_addrs","len")=820 + Set gtmtypes("sgmnt_addrs",1,"name")="sgmnt_addrs.hdr" + Set gtmtypes("sgmnt_addrs",1,"off")=0 + Set gtmtypes("sgmnt_addrs",1,"len")=4 + Set gtmtypes("sgmnt_addrs",1,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","hdr")=1 + Set gtmtypes("sgmnt_addrs",2,"name")="sgmnt_addrs.bmm" + Set gtmtypes("sgmnt_addrs",2,"off")=4 + Set gtmtypes("sgmnt_addrs",2,"len")=4 + Set gtmtypes("sgmnt_addrs",2,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bmm")=2 + Set gtmtypes("sgmnt_addrs",3,"name")="sgmnt_addrs.wc" + Set gtmtypes("sgmnt_addrs",3,"off")=8 + Set gtmtypes("sgmnt_addrs",3,"len")=4 + Set gtmtypes("sgmnt_addrs",3,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","wc")=3 + Set gtmtypes("sgmnt_addrs",4,"name")="sgmnt_addrs.bt_header" + Set gtmtypes("sgmnt_addrs",4,"off")=12 + Set gtmtypes("sgmnt_addrs",4,"len")=4 + Set gtmtypes("sgmnt_addrs",4,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bt_header")=4 + Set gtmtypes("sgmnt_addrs",5,"name")="sgmnt_addrs.bt_base" + Set gtmtypes("sgmnt_addrs",5,"off")=16 + Set gtmtypes("sgmnt_addrs",5,"len")=4 + Set gtmtypes("sgmnt_addrs",5,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bt_base")=5 + Set gtmtypes("sgmnt_addrs",6,"name")="sgmnt_addrs.th_base" + Set gtmtypes("sgmnt_addrs",6,"off")=20 + Set gtmtypes("sgmnt_addrs",6,"len")=4 + Set gtmtypes("sgmnt_addrs",6,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","th_base")=6 + Set gtmtypes("sgmnt_addrs",7,"name")="sgmnt_addrs.ti" + Set gtmtypes("sgmnt_addrs",7,"off")=24 + Set gtmtypes("sgmnt_addrs",7,"len")=4 + Set gtmtypes("sgmnt_addrs",7,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","ti")=7 + Set gtmtypes("sgmnt_addrs",8,"name")="sgmnt_addrs.nl" + Set gtmtypes("sgmnt_addrs",8,"off")=28 + Set gtmtypes("sgmnt_addrs",8,"len")=4 + Set gtmtypes("sgmnt_addrs",8,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","nl")=8 + Set gtmtypes("sgmnt_addrs",9,"name")="sgmnt_addrs.critical" + Set gtmtypes("sgmnt_addrs",9,"off")=32 + Set gtmtypes("sgmnt_addrs",9,"len")=4 + Set gtmtypes("sgmnt_addrs",9,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","critical")=9 + Set gtmtypes("sgmnt_addrs",10,"name")="sgmnt_addrs.shmpool_buffer" + Set gtmtypes("sgmnt_addrs",10,"off")=36 + Set gtmtypes("sgmnt_addrs",10,"len")=4 + Set gtmtypes("sgmnt_addrs",10,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","shmpool_buffer")=10 + Set gtmtypes("sgmnt_addrs",11,"name")="sgmnt_addrs.db_addrs" + Set gtmtypes("sgmnt_addrs",11,"off")=40 + Set gtmtypes("sgmnt_addrs",11,"len")=8 + Set gtmtypes("sgmnt_addrs",11,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","db_addrs")=11 + Set gtmtypes("sgmnt_addrs",11,"dim")=2 + Set gtmtypes("sgmnt_addrs",12,"name")="sgmnt_addrs.lock_addrs" + Set gtmtypes("sgmnt_addrs",12,"off")=48 + Set gtmtypes("sgmnt_addrs",12,"len")=8 + Set gtmtypes("sgmnt_addrs",12,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","lock_addrs")=12 + Set gtmtypes("sgmnt_addrs",12,"dim")=2 + Set gtmtypes("sgmnt_addrs",13,"name")="sgmnt_addrs.dir_tree" + Set gtmtypes("sgmnt_addrs",13,"off")=56 + Set gtmtypes("sgmnt_addrs",13,"len")=4 + Set gtmtypes("sgmnt_addrs",13,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","dir_tree")=13 + Set gtmtypes("sgmnt_addrs",14,"name")="sgmnt_addrs.hasht_tree" + Set gtmtypes("sgmnt_addrs",14,"off")=60 + Set gtmtypes("sgmnt_addrs",14,"len")=4 + Set gtmtypes("sgmnt_addrs",14,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","hasht_tree")=14 + Set gtmtypes("sgmnt_addrs",15,"name")="sgmnt_addrs.next_fenced" + Set gtmtypes("sgmnt_addrs",15,"off")=64 + Set gtmtypes("sgmnt_addrs",15,"len")=4 + Set gtmtypes("sgmnt_addrs",15,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","next_fenced")=15 + Set gtmtypes("sgmnt_addrs",16,"name")="sgmnt_addrs.jnl" + Set gtmtypes("sgmnt_addrs",16,"off")=68 + Set gtmtypes("sgmnt_addrs",16,"len")=4 + Set gtmtypes("sgmnt_addrs",16,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","jnl")=16 + Set gtmtypes("sgmnt_addrs",17,"name")="sgmnt_addrs.sgm_info_ptr" + Set gtmtypes("sgmnt_addrs",17,"off")=72 + Set gtmtypes("sgmnt_addrs",17,"len")=4 + Set gtmtypes("sgmnt_addrs",17,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","sgm_info_ptr")=17 + Set gtmtypes("sgmnt_addrs",18,"name")="sgmnt_addrs.region" + Set gtmtypes("sgmnt_addrs",18,"off")=76 + Set gtmtypes("sgmnt_addrs",18,"len")=4 + Set gtmtypes("sgmnt_addrs",18,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","region")=18 + Set gtmtypes("sgmnt_addrs",19,"name")="sgmnt_addrs.gvt_hashtab" + Set gtmtypes("sgmnt_addrs",19,"off")=80 + Set gtmtypes("sgmnt_addrs",19,"len")=4 + Set gtmtypes("sgmnt_addrs",19,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","gvt_hashtab")=19 + Set gtmtypes("sgmnt_addrs",20,"name")="sgmnt_addrs.miscptr" + Set gtmtypes("sgmnt_addrs",20,"off")=84 + Set gtmtypes("sgmnt_addrs",20,"len")=4 + Set gtmtypes("sgmnt_addrs",20,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","miscptr")=20 + Set gtmtypes("sgmnt_addrs",21,"name")="sgmnt_addrs.next_csa" + Set gtmtypes("sgmnt_addrs",21,"off")=88 + Set gtmtypes("sgmnt_addrs",21,"len")=4 + Set gtmtypes("sgmnt_addrs",21,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","next_csa")=21 + Set gtmtypes("sgmnt_addrs",22,"name")="sgmnt_addrs.encr_key_handle" + Set gtmtypes("sgmnt_addrs",22,"off")=92 + Set gtmtypes("sgmnt_addrs",22,"len")=4 + Set gtmtypes("sgmnt_addrs",22,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_key_handle")=22 + Set gtmtypes("sgmnt_addrs",23,"name")="sgmnt_addrs.encr_key_handle2" + Set gtmtypes("sgmnt_addrs",23,"off")=96 + Set gtmtypes("sgmnt_addrs",23,"len")=4 + Set gtmtypes("sgmnt_addrs",23,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_key_handle2")=23 + Set gtmtypes("sgmnt_addrs",24,"name")="sgmnt_addrs.encr_ptr" + Set gtmtypes("sgmnt_addrs",24,"off")=100 + Set gtmtypes("sgmnt_addrs",24,"len")=4 + Set gtmtypes("sgmnt_addrs",24,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_ptr")=24 + Set gtmtypes("sgmnt_addrs",25,"name")="sgmnt_addrs.ss_ctx" + Set gtmtypes("sgmnt_addrs",25,"off")=104 + Set gtmtypes("sgmnt_addrs",25,"len")=4 + Set gtmtypes("sgmnt_addrs",25,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","ss_ctx")=25 + Set gtmtypes("sgmnt_addrs",26,"name")="sgmnt_addrs.acc_meth" + Set gtmtypes("sgmnt_addrs",26,"off")=108 + Set gtmtypes("sgmnt_addrs",26,"len")=8 + Set gtmtypes("sgmnt_addrs",26,"type")="union" + Set gtmtypfldindx("sgmnt_addrs","acc_meth")=26 + Set gtmtypes("sgmnt_addrs",27,"name")="sgmnt_addrs.acc_meth.mm" + Set gtmtypes("sgmnt_addrs",27,"off")=108 + Set gtmtypes("sgmnt_addrs",27,"len")=4 + Set gtmtypes("sgmnt_addrs",27,"type")="sgmm_addrs" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.mm")=27 + Set gtmtypes("sgmnt_addrs",28,"name")="sgmnt_addrs.acc_meth.mm.filler" + Set gtmtypes("sgmnt_addrs",28,"off")=108 + Set gtmtypes("sgmnt_addrs",28,"len")=4 + Set gtmtypes("sgmnt_addrs",28,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.mm.filler")=28 + Set gtmtypes("sgmnt_addrs",29,"name")="sgmnt_addrs.acc_meth.bg" + Set gtmtypes("sgmnt_addrs",29,"off")=108 + Set gtmtypes("sgmnt_addrs",29,"len")=8 + Set gtmtypes("sgmnt_addrs",29,"type")="sgbg_addrs" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg")=29 + Set gtmtypes("sgmnt_addrs",30,"name")="sgmnt_addrs.acc_meth.bg.cache_state" + Set gtmtypes("sgmnt_addrs",30,"off")=108 + Set gtmtypes("sgmnt_addrs",30,"len")=4 + Set gtmtypes("sgmnt_addrs",30,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg.cache_state")=30 + Set gtmtypes("sgmnt_addrs",31,"name")="sgmnt_addrs.acc_meth.bg.fill1" + Set gtmtypes("sgmnt_addrs",31,"off")=112 + Set gtmtypes("sgmnt_addrs",31,"len")=4 + Set gtmtypes("sgmnt_addrs",31,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg.fill1")=31 + Set gtmtypes("sgmnt_addrs",32,"name")="sgmnt_addrs.gvstats_rec" + Set gtmtypes("sgmnt_addrs",32,"off")=116 + Set gtmtypes("sgmnt_addrs",32,"len")=464 + Set gtmtypes("sgmnt_addrs",32,"type")="gvstats_rec_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec")=32 + Set gtmtypes("sgmnt_addrs",33,"name")="sgmnt_addrs.gvstats_rec.n_set" + Set gtmtypes("sgmnt_addrs",33,"off")=116 + Set gtmtypes("sgmnt_addrs",33,"len")=8 + Set gtmtypes("sgmnt_addrs",33,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_set")=33 + Set gtmtypes("sgmnt_addrs",34,"name")="sgmnt_addrs.gvstats_rec.n_kill" + Set gtmtypes("sgmnt_addrs",34,"off")=124 + Set gtmtypes("sgmnt_addrs",34,"len")=8 + Set gtmtypes("sgmnt_addrs",34,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_kill")=34 + Set gtmtypes("sgmnt_addrs",35,"name")="sgmnt_addrs.gvstats_rec.n_get" + Set gtmtypes("sgmnt_addrs",35,"off")=132 + Set gtmtypes("sgmnt_addrs",35,"len")=8 + Set gtmtypes("sgmnt_addrs",35,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_get")=35 + Set gtmtypes("sgmnt_addrs",36,"name")="sgmnt_addrs.gvstats_rec.n_data" + Set gtmtypes("sgmnt_addrs",36,"off")=140 + Set gtmtypes("sgmnt_addrs",36,"len")=8 + Set gtmtypes("sgmnt_addrs",36,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_data")=36 + Set gtmtypes("sgmnt_addrs",37,"name")="sgmnt_addrs.gvstats_rec.n_order" + Set gtmtypes("sgmnt_addrs",37,"off")=148 + Set gtmtypes("sgmnt_addrs",37,"len")=8 + Set gtmtypes("sgmnt_addrs",37,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_order")=37 + Set gtmtypes("sgmnt_addrs",38,"name")="sgmnt_addrs.gvstats_rec.n_zprev" + Set gtmtypes("sgmnt_addrs",38,"off")=156 + Set gtmtypes("sgmnt_addrs",38,"len")=8 + Set gtmtypes("sgmnt_addrs",38,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_zprev")=38 + Set gtmtypes("sgmnt_addrs",39,"name")="sgmnt_addrs.gvstats_rec.n_query" + Set gtmtypes("sgmnt_addrs",39,"off")=164 + Set gtmtypes("sgmnt_addrs",39,"len")=8 + Set gtmtypes("sgmnt_addrs",39,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_query")=39 + Set gtmtypes("sgmnt_addrs",40,"name")="sgmnt_addrs.gvstats_rec.n_lock_success" + Set gtmtypes("sgmnt_addrs",40,"off")=172 + Set gtmtypes("sgmnt_addrs",40,"len")=8 + Set gtmtypes("sgmnt_addrs",40,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_lock_success")=40 + Set gtmtypes("sgmnt_addrs",41,"name")="sgmnt_addrs.gvstats_rec.n_lock_fail" + Set gtmtypes("sgmnt_addrs",41,"off")=180 + Set gtmtypes("sgmnt_addrs",41,"len")=8 + Set gtmtypes("sgmnt_addrs",41,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_lock_fail")=41 + Set gtmtypes("sgmnt_addrs",42,"name")="sgmnt_addrs.gvstats_rec.db_curr_tn" + Set gtmtypes("sgmnt_addrs",42,"off")=188 + Set gtmtypes("sgmnt_addrs",42,"len")=8 + Set gtmtypes("sgmnt_addrs",42,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.db_curr_tn")=42 + Set gtmtypes("sgmnt_addrs",43,"name")="sgmnt_addrs.gvstats_rec.n_dsk_read" + Set gtmtypes("sgmnt_addrs",43,"off")=196 + Set gtmtypes("sgmnt_addrs",43,"len")=8 + Set gtmtypes("sgmnt_addrs",43,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_dsk_read")=43 + Set gtmtypes("sgmnt_addrs",44,"name")="sgmnt_addrs.gvstats_rec.n_dsk_write" + Set gtmtypes("sgmnt_addrs",44,"off")=204 + Set gtmtypes("sgmnt_addrs",44,"len")=8 + Set gtmtypes("sgmnt_addrs",44,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_dsk_write")=44 + Set gtmtypes("sgmnt_addrs",45,"name")="sgmnt_addrs.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("sgmnt_addrs",45,"off")=212 + Set gtmtypes("sgmnt_addrs",45,"len")=8 + Set gtmtypes("sgmnt_addrs",45,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_readwrite")=45 + Set gtmtypes("sgmnt_addrs",46,"name")="sgmnt_addrs.gvstats_rec.n_nontp_readonly" + Set gtmtypes("sgmnt_addrs",46,"off")=220 + Set gtmtypes("sgmnt_addrs",46,"len")=8 + Set gtmtypes("sgmnt_addrs",46,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_readonly")=46 + Set gtmtypes("sgmnt_addrs",47,"name")="sgmnt_addrs.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("sgmnt_addrs",47,"off")=228 + Set gtmtypes("sgmnt_addrs",47,"len")=8 + Set gtmtypes("sgmnt_addrs",47,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_blkwrite")=47 + Set gtmtypes("sgmnt_addrs",48,"name")="sgmnt_addrs.gvstats_rec.n_nontp_blkread" + Set gtmtypes("sgmnt_addrs",48,"off")=236 + Set gtmtypes("sgmnt_addrs",48,"len")=8 + Set gtmtypes("sgmnt_addrs",48,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_blkread")=48 + Set gtmtypes("sgmnt_addrs",49,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("sgmnt_addrs",49,"off")=244 + Set gtmtypes("sgmnt_addrs",49,"len")=8 + Set gtmtypes("sgmnt_addrs",49,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_0")=49 + Set gtmtypes("sgmnt_addrs",50,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("sgmnt_addrs",50,"off")=252 + Set gtmtypes("sgmnt_addrs",50,"len")=8 + Set gtmtypes("sgmnt_addrs",50,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_1")=50 + Set gtmtypes("sgmnt_addrs",51,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("sgmnt_addrs",51,"off")=260 + Set gtmtypes("sgmnt_addrs",51,"len")=8 + Set gtmtypes("sgmnt_addrs",51,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_2")=51 + Set gtmtypes("sgmnt_addrs",52,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("sgmnt_addrs",52,"off")=268 + Set gtmtypes("sgmnt_addrs",52,"len")=8 + Set gtmtypes("sgmnt_addrs",52,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_3")=52 + Set gtmtypes("sgmnt_addrs",53,"name")="sgmnt_addrs.gvstats_rec.n_tp_readwrite" + Set gtmtypes("sgmnt_addrs",53,"off")=276 + Set gtmtypes("sgmnt_addrs",53,"len")=8 + Set gtmtypes("sgmnt_addrs",53,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_readwrite")=53 + Set gtmtypes("sgmnt_addrs",54,"name")="sgmnt_addrs.gvstats_rec.n_tp_readonly" + Set gtmtypes("sgmnt_addrs",54,"off")=284 + Set gtmtypes("sgmnt_addrs",54,"len")=8 + Set gtmtypes("sgmnt_addrs",54,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_readonly")=54 + Set gtmtypes("sgmnt_addrs",55,"name")="sgmnt_addrs.gvstats_rec.n_tp_rolledback" + Set gtmtypes("sgmnt_addrs",55,"off")=292 + Set gtmtypes("sgmnt_addrs",55,"len")=8 + Set gtmtypes("sgmnt_addrs",55,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_rolledback")=55 + Set gtmtypes("sgmnt_addrs",56,"name")="sgmnt_addrs.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("sgmnt_addrs",56,"off")=300 + Set gtmtypes("sgmnt_addrs",56,"len")=8 + Set gtmtypes("sgmnt_addrs",56,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_blkwrite")=56 + Set gtmtypes("sgmnt_addrs",57,"name")="sgmnt_addrs.gvstats_rec.n_tp_blkread" + Set gtmtypes("sgmnt_addrs",57,"off")=308 + Set gtmtypes("sgmnt_addrs",57,"len")=8 + Set gtmtypes("sgmnt_addrs",57,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_blkread")=57 + Set gtmtypes("sgmnt_addrs",58,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("sgmnt_addrs",58,"off")=316 + Set gtmtypes("sgmnt_addrs",58,"len")=8 + Set gtmtypes("sgmnt_addrs",58,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_0")=58 + Set gtmtypes("sgmnt_addrs",59,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("sgmnt_addrs",59,"off")=324 + Set gtmtypes("sgmnt_addrs",59,"len")=8 + Set gtmtypes("sgmnt_addrs",59,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_1")=59 + Set gtmtypes("sgmnt_addrs",60,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("sgmnt_addrs",60,"off")=332 + Set gtmtypes("sgmnt_addrs",60,"len")=8 + Set gtmtypes("sgmnt_addrs",60,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_2")=60 + Set gtmtypes("sgmnt_addrs",61,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("sgmnt_addrs",61,"off")=340 + Set gtmtypes("sgmnt_addrs",61,"len")=8 + Set gtmtypes("sgmnt_addrs",61,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_3")=61 + Set gtmtypes("sgmnt_addrs",62,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("sgmnt_addrs",62,"off")=348 + Set gtmtypes("sgmnt_addrs",62,"len")=8 + Set gtmtypes("sgmnt_addrs",62,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_4")=62 + Set gtmtypes("sgmnt_addrs",63,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("sgmnt_addrs",63,"off")=356 + Set gtmtypes("sgmnt_addrs",63,"len")=8 + Set gtmtypes("sgmnt_addrs",63,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_0")=63 + Set gtmtypes("sgmnt_addrs",64,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("sgmnt_addrs",64,"off")=364 + Set gtmtypes("sgmnt_addrs",64,"len")=8 + Set gtmtypes("sgmnt_addrs",64,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_1")=64 + Set gtmtypes("sgmnt_addrs",65,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("sgmnt_addrs",65,"off")=372 + Set gtmtypes("sgmnt_addrs",65,"len")=8 + Set gtmtypes("sgmnt_addrs",65,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_2")=65 + Set gtmtypes("sgmnt_addrs",66,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("sgmnt_addrs",66,"off")=380 + Set gtmtypes("sgmnt_addrs",66,"len")=8 + Set gtmtypes("sgmnt_addrs",66,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_3")=66 + Set gtmtypes("sgmnt_addrs",67,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("sgmnt_addrs",67,"off")=388 + Set gtmtypes("sgmnt_addrs",67,"len")=8 + Set gtmtypes("sgmnt_addrs",67,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_4")=67 + Set gtmtypes("sgmnt_addrs",68,"name")="sgmnt_addrs.gvstats_rec.n_ztrigger" + Set gtmtypes("sgmnt_addrs",68,"off")=396 + Set gtmtypes("sgmnt_addrs",68,"len")=8 + Set gtmtypes("sgmnt_addrs",68,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_ztrigger")=68 + Set gtmtypes("sgmnt_addrs",69,"name")="sgmnt_addrs.gvstats_rec.n_db_flush" + Set gtmtypes("sgmnt_addrs",69,"off")=404 + Set gtmtypes("sgmnt_addrs",69,"len")=8 + Set gtmtypes("sgmnt_addrs",69,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_flush")=69 + Set gtmtypes("sgmnt_addrs",70,"name")="sgmnt_addrs.gvstats_rec.n_db_fsync" + Set gtmtypes("sgmnt_addrs",70,"off")=412 + Set gtmtypes("sgmnt_addrs",70,"len")=8 + Set gtmtypes("sgmnt_addrs",70,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_fsync")=70 + Set gtmtypes("sgmnt_addrs",71,"name")="sgmnt_addrs.gvstats_rec.n_jnl_flush" + Set gtmtypes("sgmnt_addrs",71,"off")=420 + Set gtmtypes("sgmnt_addrs",71,"len")=8 + Set gtmtypes("sgmnt_addrs",71,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_flush")=71 + Set gtmtypes("sgmnt_addrs",72,"name")="sgmnt_addrs.gvstats_rec.n_jnl_fsync" + Set gtmtypes("sgmnt_addrs",72,"off")=428 + Set gtmtypes("sgmnt_addrs",72,"len")=8 + Set gtmtypes("sgmnt_addrs",72,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_fsync")=72 + Set gtmtypes("sgmnt_addrs",73,"name")="sgmnt_addrs.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("sgmnt_addrs",73,"off")=436 + Set gtmtypes("sgmnt_addrs",73,"len")=8 + Set gtmtypes("sgmnt_addrs",73,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jbuff_bytes")=73 + Set gtmtypes("sgmnt_addrs",74,"name")="sgmnt_addrs.gvstats_rec.n_jfile_bytes" + Set gtmtypes("sgmnt_addrs",74,"off")=444 + Set gtmtypes("sgmnt_addrs",74,"len")=8 + Set gtmtypes("sgmnt_addrs",74,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jfile_bytes")=74 + Set gtmtypes("sgmnt_addrs",75,"name")="sgmnt_addrs.gvstats_rec.n_jfile_writes" + Set gtmtypes("sgmnt_addrs",75,"off")=452 + Set gtmtypes("sgmnt_addrs",75,"len")=8 + Set gtmtypes("sgmnt_addrs",75,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jfile_writes")=75 + Set gtmtypes("sgmnt_addrs",76,"name")="sgmnt_addrs.gvstats_rec.n_jrec_logical" + Set gtmtypes("sgmnt_addrs",76,"off")=460 + Set gtmtypes("sgmnt_addrs",76,"len")=8 + Set gtmtypes("sgmnt_addrs",76,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_logical")=76 + Set gtmtypes("sgmnt_addrs",77,"name")="sgmnt_addrs.gvstats_rec.n_jrec_pblk" + Set gtmtypes("sgmnt_addrs",77,"off")=468 + Set gtmtypes("sgmnt_addrs",77,"len")=8 + Set gtmtypes("sgmnt_addrs",77,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_pblk")=77 + Set gtmtypes("sgmnt_addrs",78,"name")="sgmnt_addrs.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("sgmnt_addrs",78,"off")=476 + Set gtmtypes("sgmnt_addrs",78,"len")=8 + Set gtmtypes("sgmnt_addrs",78,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_epoch_regular")=78 + Set gtmtypes("sgmnt_addrs",79,"name")="sgmnt_addrs.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("sgmnt_addrs",79,"off")=484 + Set gtmtypes("sgmnt_addrs",79,"len")=8 + Set gtmtypes("sgmnt_addrs",79,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_epoch_idle")=79 + Set gtmtypes("sgmnt_addrs",80,"name")="sgmnt_addrs.gvstats_rec.n_jrec_other" + Set gtmtypes("sgmnt_addrs",80,"off")=492 + Set gtmtypes("sgmnt_addrs",80,"len")=8 + Set gtmtypes("sgmnt_addrs",80,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_other")=80 + Set gtmtypes("sgmnt_addrs",81,"name")="sgmnt_addrs.gvstats_rec.n_jnl_extends" + Set gtmtypes("sgmnt_addrs",81,"off")=500 + Set gtmtypes("sgmnt_addrs",81,"len")=8 + Set gtmtypes("sgmnt_addrs",81,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_extends")=81 + Set gtmtypes("sgmnt_addrs",82,"name")="sgmnt_addrs.gvstats_rec.n_db_extends" + Set gtmtypes("sgmnt_addrs",82,"off")=508 + Set gtmtypes("sgmnt_addrs",82,"len")=8 + Set gtmtypes("sgmnt_addrs",82,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_extends")=82 + Set gtmtypes("sgmnt_addrs",83,"name")="sgmnt_addrs.gvstats_rec.n_crit_success" + Set gtmtypes("sgmnt_addrs",83,"off")=516 + Set gtmtypes("sgmnt_addrs",83,"len")=8 + Set gtmtypes("sgmnt_addrs",83,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_success")=83 + Set gtmtypes("sgmnt_addrs",84,"name")="sgmnt_addrs.gvstats_rec.n_crits_in_epch" + Set gtmtypes("sgmnt_addrs",84,"off")=524 + Set gtmtypes("sgmnt_addrs",84,"len")=8 + Set gtmtypes("sgmnt_addrs",84,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crits_in_epch")=84 + Set gtmtypes("sgmnt_addrs",85,"name")="sgmnt_addrs.gvstats_rec.sq_crit_failed" + Set gtmtypes("sgmnt_addrs",85,"off")=532 + Set gtmtypes("sgmnt_addrs",85,"len")=8 + Set gtmtypes("sgmnt_addrs",85,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_failed")=85 + Set gtmtypes("sgmnt_addrs",86,"name")="sgmnt_addrs.gvstats_rec.n_crit_failed" + Set gtmtypes("sgmnt_addrs",86,"off")=540 + Set gtmtypes("sgmnt_addrs",86,"len")=8 + Set gtmtypes("sgmnt_addrs",86,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_failed")=86 + Set gtmtypes("sgmnt_addrs",87,"name")="sgmnt_addrs.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("sgmnt_addrs",87,"off")=548 + Set gtmtypes("sgmnt_addrs",87,"len")=8 + Set gtmtypes("sgmnt_addrs",87,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_que_slps")=87 + Set gtmtypes("sgmnt_addrs",88,"name")="sgmnt_addrs.gvstats_rec.n_crit_que_slps" + Set gtmtypes("sgmnt_addrs",88,"off")=556 + Set gtmtypes("sgmnt_addrs",88,"len")=8 + Set gtmtypes("sgmnt_addrs",88,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_que_slps")=88 + Set gtmtypes("sgmnt_addrs",89,"name")="sgmnt_addrs.gvstats_rec.sq_crit_yields" + Set gtmtypes("sgmnt_addrs",89,"off")=564 + Set gtmtypes("sgmnt_addrs",89,"len")=8 + Set gtmtypes("sgmnt_addrs",89,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_yields")=89 + Set gtmtypes("sgmnt_addrs",90,"name")="sgmnt_addrs.gvstats_rec.n_crit_yields" + Set gtmtypes("sgmnt_addrs",90,"off")=572 + Set gtmtypes("sgmnt_addrs",90,"len")=8 + Set gtmtypes("sgmnt_addrs",90,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_yields")=90 + Set gtmtypes("sgmnt_addrs",91,"name")="sgmnt_addrs.dbsync_timer_tn" + Set gtmtypes("sgmnt_addrs",91,"off")=580 + Set gtmtypes("sgmnt_addrs",91,"len")=8 + Set gtmtypes("sgmnt_addrs",91,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","dbsync_timer_tn")=91 + Set gtmtypes("sgmnt_addrs",92,"name")="sgmnt_addrs.fullblockwrite_len" + Set gtmtypes("sgmnt_addrs",92,"off")=588 + Set gtmtypes("sgmnt_addrs",92,"len")=4 + Set gtmtypes("sgmnt_addrs",92,"type")="size_t" + Set gtmtypfldindx("sgmnt_addrs","fullblockwrite_len")=92 + Set gtmtypes("sgmnt_addrs",93,"name")="sgmnt_addrs.total_blks" + Set gtmtypes("sgmnt_addrs",93,"off")=592 + Set gtmtypes("sgmnt_addrs",93,"len")=4 + Set gtmtypes("sgmnt_addrs",93,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","total_blks")=93 + Set gtmtypes("sgmnt_addrs",94,"name")="sgmnt_addrs.prev_free_blks" + Set gtmtypes("sgmnt_addrs",94,"off")=596 + Set gtmtypes("sgmnt_addrs",94,"len")=4 + Set gtmtypes("sgmnt_addrs",94,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","prev_free_blks")=94 + Set gtmtypes("sgmnt_addrs",95,"name")="sgmnt_addrs.timer" + Set gtmtypes("sgmnt_addrs",95,"off")=600 + Set gtmtypes("sgmnt_addrs",95,"len")=4 + Set gtmtypes("sgmnt_addrs",95,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","timer")=95 + Set gtmtypes("sgmnt_addrs",96,"name")="sgmnt_addrs.in_wtstart" + Set gtmtypes("sgmnt_addrs",96,"off")=604 + Set gtmtypes("sgmnt_addrs",96,"len")=4 + Set gtmtypes("sgmnt_addrs",96,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","in_wtstart")=96 + Set gtmtypes("sgmnt_addrs",97,"name")="sgmnt_addrs.now_crit" + Set gtmtypes("sgmnt_addrs",97,"off")=608 + Set gtmtypes("sgmnt_addrs",97,"len")=4 + Set gtmtypes("sgmnt_addrs",97,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","now_crit")=97 + Set gtmtypes("sgmnt_addrs",98,"name")="sgmnt_addrs.wbuf_dqd" + Set gtmtypes("sgmnt_addrs",98,"off")=612 + Set gtmtypes("sgmnt_addrs",98,"len")=4 + Set gtmtypes("sgmnt_addrs",98,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","wbuf_dqd")=98 + Set gtmtypes("sgmnt_addrs",99,"name")="sgmnt_addrs.stale_defer" + Set gtmtypes("sgmnt_addrs",99,"off")=616 + Set gtmtypes("sgmnt_addrs",99,"len")=4 + Set gtmtypes("sgmnt_addrs",99,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","stale_defer")=99 + Set gtmtypes("sgmnt_addrs",100,"name")="sgmnt_addrs.freeze" + Set gtmtypes("sgmnt_addrs",100,"off")=620 + Set gtmtypes("sgmnt_addrs",100,"len")=4 + Set gtmtypes("sgmnt_addrs",100,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","freeze")=100 + Set gtmtypes("sgmnt_addrs",101,"name")="sgmnt_addrs.dbsync_timer" + Set gtmtypes("sgmnt_addrs",101,"off")=624 + Set gtmtypes("sgmnt_addrs",101,"len")=4 + Set gtmtypes("sgmnt_addrs",101,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dbsync_timer")=101 + Set gtmtypes("sgmnt_addrs",102,"name")="sgmnt_addrs.reorg_last_dest" + Set gtmtypes("sgmnt_addrs",102,"off")=628 + Set gtmtypes("sgmnt_addrs",102,"len")=4 + Set gtmtypes("sgmnt_addrs",102,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","reorg_last_dest")=102 + Set gtmtypes("sgmnt_addrs",103,"name")="sgmnt_addrs.jnl_before_image" + Set gtmtypes("sgmnt_addrs",103,"off")=632 + Set gtmtypes("sgmnt_addrs",103,"len")=4 + Set gtmtypes("sgmnt_addrs",103,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","jnl_before_image")=103 + Set gtmtypes("sgmnt_addrs",104,"name")="sgmnt_addrs.read_write" + Set gtmtypes("sgmnt_addrs",104,"off")=636 + Set gtmtypes("sgmnt_addrs",104,"len")=4 + Set gtmtypes("sgmnt_addrs",104,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","read_write")=104 + Set gtmtypes("sgmnt_addrs",105,"name")="sgmnt_addrs.persistent_freeze" + Set gtmtypes("sgmnt_addrs",105,"off")=640 + Set gtmtypes("sgmnt_addrs",105,"len")=4 + Set gtmtypes("sgmnt_addrs",105,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","persistent_freeze")=105 + Set gtmtypes("sgmnt_addrs",106,"name")="sgmnt_addrs.pblk_align_jrecsize" + Set gtmtypes("sgmnt_addrs",106,"off")=644 + Set gtmtypes("sgmnt_addrs",106,"len")=4 + Set gtmtypes("sgmnt_addrs",106,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","pblk_align_jrecsize")=106 + Set gtmtypes("sgmnt_addrs",107,"name")="sgmnt_addrs.min_total_tpjnl_rec_size" + Set gtmtypes("sgmnt_addrs",107,"off")=648 + Set gtmtypes("sgmnt_addrs",107,"len")=4 + Set gtmtypes("sgmnt_addrs",107,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","min_total_tpjnl_rec_size")=107 + Set gtmtypes("sgmnt_addrs",108,"name")="sgmnt_addrs.min_total_nontpjnl_rec_size" + Set gtmtypes("sgmnt_addrs",108,"off")=652 + Set gtmtypes("sgmnt_addrs",108,"len")=4 + Set gtmtypes("sgmnt_addrs",108,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","min_total_nontpjnl_rec_size")=108 + Set gtmtypes("sgmnt_addrs",109,"name")="sgmnt_addrs.jnl_state" + Set gtmtypes("sgmnt_addrs",109,"off")=656 + Set gtmtypes("sgmnt_addrs",109,"len")=4 + Set gtmtypes("sgmnt_addrs",109,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","jnl_state")=109 + Set gtmtypes("sgmnt_addrs",110,"name")="sgmnt_addrs.repl_state" + Set gtmtypes("sgmnt_addrs",110,"off")=660 + Set gtmtypes("sgmnt_addrs",110,"len")=4 + Set gtmtypes("sgmnt_addrs",110,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","repl_state")=110 + Set gtmtypes("sgmnt_addrs",111,"name")="sgmnt_addrs.crit_check_cycle" + Set gtmtypes("sgmnt_addrs",111,"off")=664 + Set gtmtypes("sgmnt_addrs",111,"len")=4 + Set gtmtypes("sgmnt_addrs",111,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","crit_check_cycle")=111 + Set gtmtypes("sgmnt_addrs",112,"name")="sgmnt_addrs.backup_in_prog" + Set gtmtypes("sgmnt_addrs",112,"off")=668 + Set gtmtypes("sgmnt_addrs",112,"len")=4 + Set gtmtypes("sgmnt_addrs",112,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","backup_in_prog")=112 + Set gtmtypes("sgmnt_addrs",113,"name")="sgmnt_addrs.snapshot_in_prog" + Set gtmtypes("sgmnt_addrs",113,"off")=672 + Set gtmtypes("sgmnt_addrs",113,"len")=4 + Set gtmtypes("sgmnt_addrs",113,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","snapshot_in_prog")=113 + Set gtmtypes("sgmnt_addrs",114,"name")="sgmnt_addrs.ref_cnt" + Set gtmtypes("sgmnt_addrs",114,"off")=676 + Set gtmtypes("sgmnt_addrs",114,"len")=4 + Set gtmtypes("sgmnt_addrs",114,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","ref_cnt")=114 + Set gtmtypes("sgmnt_addrs",115,"name")="sgmnt_addrs.fid_index" + Set gtmtypes("sgmnt_addrs",115,"off")=680 + Set gtmtypes("sgmnt_addrs",115,"len")=4 + Set gtmtypes("sgmnt_addrs",115,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","fid_index")=115 + Set gtmtypes("sgmnt_addrs",116,"name")="sgmnt_addrs.do_fullblockwrites" + Set gtmtypes("sgmnt_addrs",116,"off")=684 + Set gtmtypes("sgmnt_addrs",116,"len")=4 + Set gtmtypes("sgmnt_addrs",116,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","do_fullblockwrites")=116 + Set gtmtypes("sgmnt_addrs",117,"name")="sgmnt_addrs.regnum" + Set gtmtypes("sgmnt_addrs",117,"off")=688 + Set gtmtypes("sgmnt_addrs",117,"len")=4 + Set gtmtypes("sgmnt_addrs",117,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","regnum")=117 + Set gtmtypes("sgmnt_addrs",118,"name")="sgmnt_addrs.n_pre_read_trigger" + Set gtmtypes("sgmnt_addrs",118,"off")=692 + Set gtmtypes("sgmnt_addrs",118,"len")=4 + Set gtmtypes("sgmnt_addrs",118,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","n_pre_read_trigger")=118 + Set gtmtypes("sgmnt_addrs",119,"name")="sgmnt_addrs.jnlpool_validate_check" + Set gtmtypes("sgmnt_addrs",119,"off")=696 + Set gtmtypes("sgmnt_addrs",119,"len")=4 + Set gtmtypes("sgmnt_addrs",119,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","jnlpool_validate_check")=119 + Set gtmtypes("sgmnt_addrs",120,"name")="sgmnt_addrs.regcnt" + Set gtmtypes("sgmnt_addrs",120,"off")=700 + Set gtmtypes("sgmnt_addrs",120,"len")=4 + Set gtmtypes("sgmnt_addrs",120,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","regcnt")=120 + Set gtmtypes("sgmnt_addrs",121,"name")="sgmnt_addrs.t_commit_crit" + Set gtmtypes("sgmnt_addrs",121,"off")=704 + Set gtmtypes("sgmnt_addrs",121,"len")=4 + Set gtmtypes("sgmnt_addrs",121,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","t_commit_crit")=121 + Set gtmtypes("sgmnt_addrs",122,"name")="sgmnt_addrs.wcs_pidcnt_incremented" + Set gtmtypes("sgmnt_addrs",122,"off")=708 + Set gtmtypes("sgmnt_addrs",122,"len")=4 + Set gtmtypes("sgmnt_addrs",122,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","wcs_pidcnt_incremented")=122 + Set gtmtypes("sgmnt_addrs",123,"name")="sgmnt_addrs.incr_db_trigger_cycle" + Set gtmtypes("sgmnt_addrs",123,"off")=712 + Set gtmtypes("sgmnt_addrs",123,"len")=4 + Set gtmtypes("sgmnt_addrs",123,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","incr_db_trigger_cycle")=123 + Set gtmtypes("sgmnt_addrs",124,"name")="sgmnt_addrs.db_trigger_cycle" + Set gtmtypes("sgmnt_addrs",124,"off")=716 + Set gtmtypes("sgmnt_addrs",124,"len")=4 + Set gtmtypes("sgmnt_addrs",124,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_trigger_cycle")=124 + Set gtmtypes("sgmnt_addrs",125,"name")="sgmnt_addrs.db_dztrigger_cycle" + Set gtmtypes("sgmnt_addrs",125,"off")=720 + Set gtmtypes("sgmnt_addrs",125,"len")=4 + Set gtmtypes("sgmnt_addrs",125,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_dztrigger_cycle")=125 + Set gtmtypes("sgmnt_addrs",126,"name")="sgmnt_addrs.hold_onto_crit" + Set gtmtypes("sgmnt_addrs",126,"off")=724 + Set gtmtypes("sgmnt_addrs",126,"len")=4 + Set gtmtypes("sgmnt_addrs",126,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","hold_onto_crit")=126 + Set gtmtypes("sgmnt_addrs",127,"name")="sgmnt_addrs.dse_crit_seize_done" + Set gtmtypes("sgmnt_addrs",127,"off")=728 + Set gtmtypes("sgmnt_addrs",127,"len")=4 + Set gtmtypes("sgmnt_addrs",127,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dse_crit_seize_done")=127 + Set gtmtypes("sgmnt_addrs",128,"name")="sgmnt_addrs.gbuff_limit" + Set gtmtypes("sgmnt_addrs",128,"off")=732 + Set gtmtypes("sgmnt_addrs",128,"len")=4 + Set gtmtypes("sgmnt_addrs",128,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","gbuff_limit")=128 + Set gtmtypes("sgmnt_addrs",129,"name")="sgmnt_addrs.our_midnite" + Set gtmtypes("sgmnt_addrs",129,"off")=736 + Set gtmtypes("sgmnt_addrs",129,"len")=4 + Set gtmtypes("sgmnt_addrs",129,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","our_midnite")=129 + Set gtmtypes("sgmnt_addrs",130,"name")="sgmnt_addrs.root_search_cycle" + Set gtmtypes("sgmnt_addrs",130,"off")=740 + Set gtmtypes("sgmnt_addrs",130,"len")=4 + Set gtmtypes("sgmnt_addrs",130,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","root_search_cycle")=130 + Set gtmtypes("sgmnt_addrs",131,"name")="sgmnt_addrs.onln_rlbk_cycle" + Set gtmtypes("sgmnt_addrs",131,"off")=744 + Set gtmtypes("sgmnt_addrs",131,"len")=4 + Set gtmtypes("sgmnt_addrs",131,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","onln_rlbk_cycle")=131 + Set gtmtypes("sgmnt_addrs",132,"name")="sgmnt_addrs.db_onln_rlbkd_cycle" + Set gtmtypes("sgmnt_addrs",132,"off")=748 + Set gtmtypes("sgmnt_addrs",132,"len")=4 + Set gtmtypes("sgmnt_addrs",132,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_onln_rlbkd_cycle")=132 + Set gtmtypes("sgmnt_addrs",133,"name")="sgmnt_addrs.dbinit_shm_created" + Set gtmtypes("sgmnt_addrs",133,"off")=752 + Set gtmtypes("sgmnt_addrs",133,"len")=4 + Set gtmtypes("sgmnt_addrs",133,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dbinit_shm_created")=133 + Set gtmtypes("sgmnt_addrs",134,"name")="sgmnt_addrs.read_only_fs" + Set gtmtypes("sgmnt_addrs",134,"off")=756 + Set gtmtypes("sgmnt_addrs",134,"len")=4 + Set gtmtypes("sgmnt_addrs",134,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","read_only_fs")=134 + Set gtmtypes("sgmnt_addrs",135,"name")="sgmnt_addrs.crit_probe" + Set gtmtypes("sgmnt_addrs",135,"off")=760 + Set gtmtypes("sgmnt_addrs",135,"len")=4 + Set gtmtypes("sgmnt_addrs",135,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","crit_probe")=135 + Set gtmtypes("sgmnt_addrs",136,"name")="sgmnt_addrs.probecrit_rec" + Set gtmtypes("sgmnt_addrs",136,"off")=764 + Set gtmtypes("sgmnt_addrs",136,"len")=56 + Set gtmtypes("sgmnt_addrs",136,"type")="probecrit_rec_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec")=136 + Set gtmtypes("sgmnt_addrs",137,"name")="sgmnt_addrs.probecrit_rec.t_get_crit" + Set gtmtypes("sgmnt_addrs",137,"off")=764 + Set gtmtypes("sgmnt_addrs",137,"len")=8 + Set gtmtypes("sgmnt_addrs",137,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.t_get_crit")=137 + Set gtmtypes("sgmnt_addrs",138,"name")="sgmnt_addrs.probecrit_rec.p_crit_failed" + Set gtmtypes("sgmnt_addrs",138,"off")=772 + Set gtmtypes("sgmnt_addrs",138,"len")=8 + Set gtmtypes("sgmnt_addrs",138,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_failed")=138 + Set gtmtypes("sgmnt_addrs",139,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_slps" + Set gtmtypes("sgmnt_addrs",139,"off")=780 + Set gtmtypes("sgmnt_addrs",139,"len")=8 + Set gtmtypes("sgmnt_addrs",139,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_slps")=139 + Set gtmtypes("sgmnt_addrs",140,"name")="sgmnt_addrs.probecrit_rec.p_crit_yields" + Set gtmtypes("sgmnt_addrs",140,"off")=788 + Set gtmtypes("sgmnt_addrs",140,"len")=8 + Set gtmtypes("sgmnt_addrs",140,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_yields")=140 + Set gtmtypes("sgmnt_addrs",141,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_full" + Set gtmtypes("sgmnt_addrs",141,"off")=796 + Set gtmtypes("sgmnt_addrs",141,"len")=8 + Set gtmtypes("sgmnt_addrs",141,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_full")=141 + Set gtmtypes("sgmnt_addrs",142,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_slots" + Set gtmtypes("sgmnt_addrs",142,"off")=804 + Set gtmtypes("sgmnt_addrs",142,"len")=8 + Set gtmtypes("sgmnt_addrs",142,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_slots")=142 + Set gtmtypes("sgmnt_addrs",143,"name")="sgmnt_addrs.probecrit_rec.p_crit_success" + Set gtmtypes("sgmnt_addrs",143,"off")=812 + Set gtmtypes("sgmnt_addrs",143,"len")=8 + Set gtmtypes("sgmnt_addrs",143,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_success")=143 + ; + Set gtmtypes("sgmnt_data")="struct" + Set gtmtypes("sgmnt_data",0)=565 + Set gtmtypes("sgmnt_data","len")=8192 + Set gtmtypes("sgmnt_data",1,"name")="sgmnt_data.label" + Set gtmtypes("sgmnt_data",1,"off")=0 + Set gtmtypes("sgmnt_data",1,"len")=12 + Set gtmtypes("sgmnt_data",1,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","label")=1 + Set gtmtypes("sgmnt_data",2,"name")="sgmnt_data.blk_size" + Set gtmtypes("sgmnt_data",2,"off")=12 + Set gtmtypes("sgmnt_data",2,"len")=4 + Set gtmtypes("sgmnt_data",2,"type")="int" + Set gtmtypfldindx("sgmnt_data","blk_size")=2 + Set gtmtypes("sgmnt_data",3,"name")="sgmnt_data.master_map_len" + Set gtmtypes("sgmnt_data",3,"off")=16 + Set gtmtypes("sgmnt_data",3,"len")=4 + Set gtmtypes("sgmnt_data",3,"type")="int" + Set gtmtypfldindx("sgmnt_data","master_map_len")=3 + Set gtmtypes("sgmnt_data",4,"name")="sgmnt_data.bplmap" + Set gtmtypes("sgmnt_data",4,"off")=20 + Set gtmtypes("sgmnt_data",4,"len")=4 + Set gtmtypes("sgmnt_data",4,"type")="int" + Set gtmtypfldindx("sgmnt_data","bplmap")=4 + Set gtmtypes("sgmnt_data",5,"name")="sgmnt_data.start_vbn" + Set gtmtypes("sgmnt_data",5,"off")=24 + Set gtmtypes("sgmnt_data",5,"len")=4 + Set gtmtypes("sgmnt_data",5,"type")="int" + Set gtmtypfldindx("sgmnt_data","start_vbn")=5 + Set gtmtypes("sgmnt_data",6,"name")="sgmnt_data.acc_meth" + Set gtmtypes("sgmnt_data",6,"off")=28 + Set gtmtypes("sgmnt_data",6,"len")=4 + Set gtmtypes("sgmnt_data",6,"type")="int" + Set gtmtypfldindx("sgmnt_data","acc_meth")=6 + Set gtmtypes("sgmnt_data",7,"name")="sgmnt_data.max_bts" + Set gtmtypes("sgmnt_data",7,"off")=32 + Set gtmtypes("sgmnt_data",7,"len")=4 + Set gtmtypes("sgmnt_data",7,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","max_bts")=7 + Set gtmtypes("sgmnt_data",8,"name")="sgmnt_data.n_bts" + Set gtmtypes("sgmnt_data",8,"off")=36 + Set gtmtypes("sgmnt_data",8,"len")=4 + Set gtmtypes("sgmnt_data",8,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bts")=8 + Set gtmtypes("sgmnt_data",9,"name")="sgmnt_data.bt_buckets" + Set gtmtypes("sgmnt_data",9,"off")=40 + Set gtmtypes("sgmnt_data",9,"len")=4 + Set gtmtypes("sgmnt_data",9,"type")="int" + Set gtmtypfldindx("sgmnt_data","bt_buckets")=9 + Set gtmtypes("sgmnt_data",10,"name")="sgmnt_data.reserved_bytes" + Set gtmtypes("sgmnt_data",10,"off")=44 + Set gtmtypes("sgmnt_data",10,"len")=4 + Set gtmtypes("sgmnt_data",10,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bytes")=10 + Set gtmtypes("sgmnt_data",11,"name")="sgmnt_data.max_rec_size" + Set gtmtypes("sgmnt_data",11,"off")=48 + Set gtmtypes("sgmnt_data",11,"len")=4 + Set gtmtypes("sgmnt_data",11,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_rec_size")=11 + Set gtmtypes("sgmnt_data",12,"name")="sgmnt_data.max_key_size" + Set gtmtypes("sgmnt_data",12,"off")=52 + Set gtmtypes("sgmnt_data",12,"len")=4 + Set gtmtypes("sgmnt_data",12,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_key_size")=12 + Set gtmtypes("sgmnt_data",13,"name")="sgmnt_data.lock_space_size" + Set gtmtypes("sgmnt_data",13,"off")=56 + Set gtmtypes("sgmnt_data",13,"len")=4 + Set gtmtypes("sgmnt_data",13,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","lock_space_size")=13 + Set gtmtypes("sgmnt_data",14,"name")="sgmnt_data.extension_size" + Set gtmtypes("sgmnt_data",14,"off")=60 + Set gtmtypes("sgmnt_data",14,"len")=4 + Set gtmtypes("sgmnt_data",14,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","extension_size")=14 + Set gtmtypes("sgmnt_data",15,"name")="sgmnt_data.def_coll" + Set gtmtypes("sgmnt_data",15,"off")=64 + Set gtmtypes("sgmnt_data",15,"len")=4 + Set gtmtypes("sgmnt_data",15,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","def_coll")=15 + Set gtmtypes("sgmnt_data",16,"name")="sgmnt_data.def_coll_ver" + Set gtmtypes("sgmnt_data",16,"off")=68 + Set gtmtypes("sgmnt_data",16,"len")=4 + Set gtmtypes("sgmnt_data",16,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","def_coll_ver")=16 + Set gtmtypes("sgmnt_data",17,"name")="sgmnt_data.std_null_coll" + Set gtmtypes("sgmnt_data",17,"off")=72 + Set gtmtypes("sgmnt_data",17,"len")=4 + Set gtmtypes("sgmnt_data",17,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","std_null_coll")=17 + Set gtmtypes("sgmnt_data",18,"name")="sgmnt_data.null_subs" + Set gtmtypes("sgmnt_data",18,"off")=76 + Set gtmtypes("sgmnt_data",18,"len")=4 + Set gtmtypes("sgmnt_data",18,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","null_subs")=18 + Set gtmtypes("sgmnt_data",19,"name")="sgmnt_data.free_space" + Set gtmtypes("sgmnt_data",19,"off")=80 + Set gtmtypes("sgmnt_data",19,"len")=4 + Set gtmtypes("sgmnt_data",19,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","free_space")=19 + Set gtmtypes("sgmnt_data",20,"name")="sgmnt_data.mutex_spin_parms" + Set gtmtypes("sgmnt_data",20,"off")=84 + Set gtmtypes("sgmnt_data",20,"len")=16 + Set gtmtypes("sgmnt_data",20,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms")=20 + Set gtmtypes("sgmnt_data",21,"name")="sgmnt_data.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("sgmnt_data",21,"off")=84 + Set gtmtypes("sgmnt_data",21,"len")=4 + Set gtmtypes("sgmnt_data",21,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_hard_spin_count")=21 + Set gtmtypes("sgmnt_data",22,"name")="sgmnt_data.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("sgmnt_data",22,"off")=88 + Set gtmtypes("sgmnt_data",22,"len")=4 + Set gtmtypes("sgmnt_data",22,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_sleep_spin_count")=22 + Set gtmtypes("sgmnt_data",23,"name")="sgmnt_data.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("sgmnt_data",23,"off")=92 + Set gtmtypes("sgmnt_data",23,"len")=4 + Set gtmtypes("sgmnt_data",23,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_spin_sleep_mask")=23 + Set gtmtypes("sgmnt_data",24,"name")="sgmnt_data.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("sgmnt_data",24,"off")=96 + Set gtmtypes("sgmnt_data",24,"len")=4 + Set gtmtypes("sgmnt_data",24,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_que_entry_space_size")=24 + Set gtmtypes("sgmnt_data",25,"name")="sgmnt_data.max_update_array_size" + Set gtmtypes("sgmnt_data",25,"off")=100 + Set gtmtypes("sgmnt_data",25,"len")=4 + Set gtmtypes("sgmnt_data",25,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_update_array_size")=25 + Set gtmtypes("sgmnt_data",26,"name")="sgmnt_data.max_non_bm_update_array_size" + Set gtmtypes("sgmnt_data",26,"off")=104 + Set gtmtypes("sgmnt_data",26,"len")=4 + Set gtmtypes("sgmnt_data",26,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_non_bm_update_array_size")=26 + Set gtmtypes("sgmnt_data",27,"name")="sgmnt_data.file_corrupt" + Set gtmtypes("sgmnt_data",27,"off")=108 + Set gtmtypes("sgmnt_data",27,"len")=4 + Set gtmtypes("sgmnt_data",27,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","file_corrupt")=27 + Set gtmtypes("sgmnt_data",28,"name")="sgmnt_data.minor_dbver" + Set gtmtypes("sgmnt_data",28,"off")=112 + Set gtmtypes("sgmnt_data",28,"len")=4 + Set gtmtypes("sgmnt_data",28,"type")="int" + Set gtmtypfldindx("sgmnt_data","minor_dbver")=28 + Set gtmtypes("sgmnt_data",29,"name")="sgmnt_data.jnl_checksum" + Set gtmtypes("sgmnt_data",29,"off")=116 + Set gtmtypes("sgmnt_data",29,"len")=4 + Set gtmtypes("sgmnt_data",29,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_checksum")=29 + Set gtmtypes("sgmnt_data",30,"name")="sgmnt_data.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("sgmnt_data",30,"off")=120 + Set gtmtypes("sgmnt_data",30,"len")=4 + Set gtmtypes("sgmnt_data",30,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","wcs_phase2_commit_wait_spincnt")=30 + Set gtmtypes("sgmnt_data",31,"name")="sgmnt_data.last_mdb_ver" + Set gtmtypes("sgmnt_data",31,"off")=124 + Set gtmtypes("sgmnt_data",31,"len")=4 + Set gtmtypes("sgmnt_data",31,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_mdb_ver")=31 + Set gtmtypes("sgmnt_data",32,"name")="sgmnt_data.filler_created" + Set gtmtypes("sgmnt_data",32,"off")=128 + Set gtmtypes("sgmnt_data",32,"len")=52 + Set gtmtypes("sgmnt_data",32,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_created")=32 + Set gtmtypes("sgmnt_data",33,"name")="sgmnt_data.createinprogress" + Set gtmtypes("sgmnt_data",33,"off")=180 + Set gtmtypes("sgmnt_data",33,"len")=4 + Set gtmtypes("sgmnt_data",33,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","createinprogress")=33 + Set gtmtypes("sgmnt_data",34,"name")="sgmnt_data.creation_time4" + Set gtmtypes("sgmnt_data",34,"off")=184 + Set gtmtypes("sgmnt_data",34,"len")=4 + Set gtmtypes("sgmnt_data",34,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_time4")=34 + Set gtmtypes("sgmnt_data",35,"name")="sgmnt_data.creation_filler_8byte" + Set gtmtypes("sgmnt_data",35,"off")=188 + Set gtmtypes("sgmnt_data",35,"len")=4 + Set gtmtypes("sgmnt_data",35,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_filler_8byte")=35 + Set gtmtypes("sgmnt_data",36,"name")="sgmnt_data.max_tn" + Set gtmtypes("sgmnt_data",36,"off")=192 + Set gtmtypes("sgmnt_data",36,"len")=8 + Set gtmtypes("sgmnt_data",36,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","max_tn")=36 + Set gtmtypes("sgmnt_data",37,"name")="sgmnt_data.max_tn_warn" + Set gtmtypes("sgmnt_data",37,"off")=200 + Set gtmtypes("sgmnt_data",37,"len")=8 + Set gtmtypes("sgmnt_data",37,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","max_tn_warn")=37 + Set gtmtypes("sgmnt_data",38,"name")="sgmnt_data.last_inc_backup" + Set gtmtypes("sgmnt_data",38,"off")=208 + Set gtmtypes("sgmnt_data",38,"len")=8 + Set gtmtypes("sgmnt_data",38,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_inc_backup")=38 + Set gtmtypes("sgmnt_data",39,"name")="sgmnt_data.last_com_backup" + Set gtmtypes("sgmnt_data",39,"off")=216 + Set gtmtypes("sgmnt_data",39,"len")=8 + Set gtmtypes("sgmnt_data",39,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_com_backup")=39 + Set gtmtypes("sgmnt_data",40,"name")="sgmnt_data.last_rec_backup" + Set gtmtypes("sgmnt_data",40,"off")=224 + Set gtmtypes("sgmnt_data",40,"len")=8 + Set gtmtypes("sgmnt_data",40,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_rec_backup")=40 + Set gtmtypes("sgmnt_data",41,"name")="sgmnt_data.last_inc_bkup_last_blk" + Set gtmtypes("sgmnt_data",41,"off")=232 + Set gtmtypes("sgmnt_data",41,"len")=4 + Set gtmtypes("sgmnt_data",41,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_inc_bkup_last_blk")=41 + Set gtmtypes("sgmnt_data",42,"name")="sgmnt_data.last_com_bkup_last_blk" + Set gtmtypes("sgmnt_data",42,"off")=236 + Set gtmtypes("sgmnt_data",42,"len")=4 + Set gtmtypes("sgmnt_data",42,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_com_bkup_last_blk")=42 + Set gtmtypes("sgmnt_data",43,"name")="sgmnt_data.last_rec_bkup_last_blk" + Set gtmtypes("sgmnt_data",43,"off")=240 + Set gtmtypes("sgmnt_data",43,"len")=4 + Set gtmtypes("sgmnt_data",43,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_rec_bkup_last_blk")=43 + Set gtmtypes("sgmnt_data",44,"name")="sgmnt_data.reorg_restart_block" + Set gtmtypes("sgmnt_data",44,"off")=244 + Set gtmtypes("sgmnt_data",44,"len")=4 + Set gtmtypes("sgmnt_data",44,"type")="int" + Set gtmtypfldindx("sgmnt_data","reorg_restart_block")=44 + Set gtmtypes("sgmnt_data",45,"name")="sgmnt_data.filler_256" + Set gtmtypes("sgmnt_data",45,"off")=248 + Set gtmtypes("sgmnt_data",45,"len")=8 + Set gtmtypes("sgmnt_data",45,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_256")=45 + Set gtmtypes("sgmnt_data",46,"name")="sgmnt_data.now_running" + Set gtmtypes("sgmnt_data",46,"off")=256 + Set gtmtypes("sgmnt_data",46,"len")=36 + Set gtmtypes("sgmnt_data",46,"type")="char" + Set gtmtypfldindx("sgmnt_data","now_running")=46 + Set gtmtypes("sgmnt_data",47,"name")="sgmnt_data.filler_owner_node" + Set gtmtypes("sgmnt_data",47,"off")=292 + Set gtmtypes("sgmnt_data",47,"len")=4 + Set gtmtypes("sgmnt_data",47,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_owner_node")=47 + Set gtmtypes("sgmnt_data",48,"name")="sgmnt_data.image_count" + Set gtmtypes("sgmnt_data",48,"off")=296 + Set gtmtypes("sgmnt_data",48,"len")=4 + Set gtmtypes("sgmnt_data",48,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","image_count")=48 + Set gtmtypes("sgmnt_data",49,"name")="sgmnt_data.freeze" + Set gtmtypes("sgmnt_data",49,"off")=300 + Set gtmtypes("sgmnt_data",49,"len")=4 + Set gtmtypes("sgmnt_data",49,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","freeze")=49 + Set gtmtypes("sgmnt_data",50,"name")="sgmnt_data.kill_in_prog" + Set gtmtypes("sgmnt_data",50,"off")=304 + Set gtmtypes("sgmnt_data",50,"len")=4 + Set gtmtypes("sgmnt_data",50,"type")="int" + Set gtmtypfldindx("sgmnt_data","kill_in_prog")=50 + Set gtmtypes("sgmnt_data",51,"name")="sgmnt_data.abandoned_kills" + Set gtmtypes("sgmnt_data",51,"off")=308 + Set gtmtypes("sgmnt_data",51,"len")=4 + Set gtmtypes("sgmnt_data",51,"type")="int" + Set gtmtypfldindx("sgmnt_data","abandoned_kills")=51 + Set gtmtypes("sgmnt_data",52,"name")="sgmnt_data.filler_320" + Set gtmtypes("sgmnt_data",52,"off")=312 + Set gtmtypes("sgmnt_data",52,"len")=8 + Set gtmtypes("sgmnt_data",52,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_320")=52 + Set gtmtypes("sgmnt_data",53,"name")="sgmnt_data.tn_upgrd_blks_0" + Set gtmtypes("sgmnt_data",53,"off")=320 + Set gtmtypes("sgmnt_data",53,"len")=8 + Set gtmtypes("sgmnt_data",53,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","tn_upgrd_blks_0")=53 + Set gtmtypes("sgmnt_data",54,"name")="sgmnt_data.desired_db_format_tn" + Set gtmtypes("sgmnt_data",54,"off")=328 + Set gtmtypes("sgmnt_data",54,"len")=8 + Set gtmtypes("sgmnt_data",54,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","desired_db_format_tn")=54 + Set gtmtypes("sgmnt_data",55,"name")="sgmnt_data.reorg_db_fmt_start_tn" + Set gtmtypes("sgmnt_data",55,"off")=336 + Set gtmtypes("sgmnt_data",55,"len")=8 + Set gtmtypes("sgmnt_data",55,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reorg_db_fmt_start_tn")=55 + Set gtmtypes("sgmnt_data",56,"name")="sgmnt_data.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("sgmnt_data",56,"off")=344 + Set gtmtypes("sgmnt_data",56,"len")=4 + Set gtmtypes("sgmnt_data",56,"type")="int" + Set gtmtypfldindx("sgmnt_data","reorg_upgrd_dwngrd_restart_block")=56 + Set gtmtypes("sgmnt_data",57,"name")="sgmnt_data.blks_to_upgrd" + Set gtmtypes("sgmnt_data",57,"off")=348 + Set gtmtypes("sgmnt_data",57,"len")=4 + Set gtmtypes("sgmnt_data",57,"type")="int" + Set gtmtypfldindx("sgmnt_data","blks_to_upgrd")=57 + Set gtmtypes("sgmnt_data",58,"name")="sgmnt_data.blks_to_upgrd_subzero_error" + Set gtmtypes("sgmnt_data",58,"off")=352 + Set gtmtypes("sgmnt_data",58,"len")=4 + Set gtmtypes("sgmnt_data",58,"type")="int" + Set gtmtypfldindx("sgmnt_data","blks_to_upgrd_subzero_error")=58 + Set gtmtypes("sgmnt_data",59,"name")="sgmnt_data.desired_db_format" + Set gtmtypes("sgmnt_data",59,"off")=356 + Set gtmtypes("sgmnt_data",59,"len")=4 + Set gtmtypes("sgmnt_data",59,"type")="int" + Set gtmtypfldindx("sgmnt_data","desired_db_format")=59 + Set gtmtypes("sgmnt_data",60,"name")="sgmnt_data.fully_upgraded" + Set gtmtypes("sgmnt_data",60,"off")=360 + Set gtmtypes("sgmnt_data",60,"len")=4 + Set gtmtypes("sgmnt_data",60,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","fully_upgraded")=60 + Set gtmtypes("sgmnt_data",61,"name")="sgmnt_data.db_got_to_v5_once" + Set gtmtypes("sgmnt_data",61,"off")=364 + Set gtmtypes("sgmnt_data",61,"len")=4 + Set gtmtypes("sgmnt_data",61,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","db_got_to_v5_once")=61 + Set gtmtypes("sgmnt_data",62,"name")="sgmnt_data.opened_by_gtmv53" + Set gtmtypes("sgmnt_data",62,"off")=368 + Set gtmtypes("sgmnt_data",62,"len")=4 + Set gtmtypes("sgmnt_data",62,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","opened_by_gtmv53")=62 + Set gtmtypes("sgmnt_data",63,"name")="sgmnt_data.filler_384" + Set gtmtypes("sgmnt_data",63,"off")=372 + Set gtmtypes("sgmnt_data",63,"len")=12 + Set gtmtypes("sgmnt_data",63,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_384")=63 + Set gtmtypes("sgmnt_data",64,"name")="sgmnt_data.trans_hist" + Set gtmtypes("sgmnt_data",64,"off")=384 + Set gtmtypes("sgmnt_data",64,"len")=56 + Set gtmtypes("sgmnt_data",64,"type")="th_index" + Set gtmtypfldindx("sgmnt_data","trans_hist")=64 + Set gtmtypes("sgmnt_data",65,"name")="sgmnt_data.trans_hist.curr_tn" + Set gtmtypes("sgmnt_data",65,"off")=384 + Set gtmtypes("sgmnt_data",65,"len")=8 + Set gtmtypes("sgmnt_data",65,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.curr_tn")=65 + Set gtmtypes("sgmnt_data",66,"name")="sgmnt_data.trans_hist.early_tn" + Set gtmtypes("sgmnt_data",66,"off")=392 + Set gtmtypes("sgmnt_data",66,"len")=8 + Set gtmtypes("sgmnt_data",66,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.early_tn")=66 + Set gtmtypes("sgmnt_data",67,"name")="sgmnt_data.trans_hist.last_mm_sync" + Set gtmtypes("sgmnt_data",67,"off")=400 + Set gtmtypes("sgmnt_data",67,"len")=8 + Set gtmtypes("sgmnt_data",67,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.last_mm_sync")=67 + Set gtmtypes("sgmnt_data",68,"name")="sgmnt_data.trans_hist.filler_8byte" + Set gtmtypes("sgmnt_data",68,"off")=408 + Set gtmtypes("sgmnt_data",68,"len")=8 + Set gtmtypes("sgmnt_data",68,"type")="char" + Set gtmtypfldindx("sgmnt_data","trans_hist.filler_8byte")=68 + Set gtmtypes("sgmnt_data",69,"name")="sgmnt_data.trans_hist.mm_tn" + Set gtmtypes("sgmnt_data",69,"off")=416 + Set gtmtypes("sgmnt_data",69,"len")=8 + Set gtmtypes("sgmnt_data",69,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.mm_tn")=69 + Set gtmtypes("sgmnt_data",70,"name")="sgmnt_data.trans_hist.lock_sequence" + Set gtmtypes("sgmnt_data",70,"off")=424 + Set gtmtypes("sgmnt_data",70,"len")=4 + Set gtmtypes("sgmnt_data",70,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.lock_sequence")=70 + Set gtmtypes("sgmnt_data",71,"name")="sgmnt_data.trans_hist.ccp_jnl_filesize" + Set gtmtypes("sgmnt_data",71,"off")=428 + Set gtmtypes("sgmnt_data",71,"len")=4 + Set gtmtypes("sgmnt_data",71,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.ccp_jnl_filesize")=71 + Set gtmtypes("sgmnt_data",72,"name")="sgmnt_data.trans_hist.total_blks" + Set gtmtypes("sgmnt_data",72,"off")=432 + Set gtmtypes("sgmnt_data",72,"len")=4 + Set gtmtypes("sgmnt_data",72,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.total_blks")=72 + Set gtmtypes("sgmnt_data",73,"name")="sgmnt_data.trans_hist.free_blocks" + Set gtmtypes("sgmnt_data",73,"off")=436 + Set gtmtypes("sgmnt_data",73,"len")=4 + Set gtmtypes("sgmnt_data",73,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.free_blocks")=73 + Set gtmtypes("sgmnt_data",74,"name")="sgmnt_data.filler_trans_hist" + Set gtmtypes("sgmnt_data",74,"off")=440 + Set gtmtypes("sgmnt_data",74,"len")=8 + Set gtmtypes("sgmnt_data",74,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_trans_hist")=74 + Set gtmtypes("sgmnt_data",75,"name")="sgmnt_data.flush_time" + Set gtmtypes("sgmnt_data",75,"off")=448 + Set gtmtypes("sgmnt_data",75,"len")=8 + Set gtmtypes("sgmnt_data",75,"type")="int" + Set gtmtypfldindx("sgmnt_data","flush_time")=75 + Set gtmtypes("sgmnt_data",75,"dim")=2 + Set gtmtypes("sgmnt_data",76,"name")="sgmnt_data.flush_trigger" + Set gtmtypes("sgmnt_data",76,"off")=456 + Set gtmtypes("sgmnt_data",76,"len")=4 + Set gtmtypes("sgmnt_data",76,"type")="int" + Set gtmtypfldindx("sgmnt_data","flush_trigger")=76 + Set gtmtypes("sgmnt_data",77,"name")="sgmnt_data.n_wrt_per_flu" + Set gtmtypes("sgmnt_data",77,"off")=460 + Set gtmtypes("sgmnt_data",77,"len")=4 + Set gtmtypes("sgmnt_data",77,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_wrt_per_flu")=77 + Set gtmtypes("sgmnt_data",78,"name")="sgmnt_data.wait_disk_space" + Set gtmtypes("sgmnt_data",78,"off")=464 + Set gtmtypes("sgmnt_data",78,"len")=4 + Set gtmtypes("sgmnt_data",78,"type")="int" + Set gtmtypfldindx("sgmnt_data","wait_disk_space")=78 + Set gtmtypes("sgmnt_data",79,"name")="sgmnt_data.defer_time" + Set gtmtypes("sgmnt_data",79,"off")=468 + Set gtmtypes("sgmnt_data",79,"len")=4 + Set gtmtypes("sgmnt_data",79,"type")="int" + Set gtmtypfldindx("sgmnt_data","defer_time")=79 + Set gtmtypes("sgmnt_data",80,"name")="sgmnt_data.filler_wc_blocked" + Set gtmtypes("sgmnt_data",80,"off")=472 + Set gtmtypes("sgmnt_data",80,"len")=4 + Set gtmtypes("sgmnt_data",80,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","filler_wc_blocked")=80 + Set gtmtypes("sgmnt_data",81,"name")="sgmnt_data.mumps_can_bypass" + Set gtmtypes("sgmnt_data",81,"off")=476 + Set gtmtypes("sgmnt_data",81,"len")=4 + Set gtmtypes("sgmnt_data",81,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","mumps_can_bypass")=81 + Set gtmtypes("sgmnt_data",82,"name")="sgmnt_data.epoch_taper" + Set gtmtypes("sgmnt_data",82,"off")=480 + Set gtmtypes("sgmnt_data",82,"len")=4 + Set gtmtypes("sgmnt_data",82,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","epoch_taper")=82 + Set gtmtypes("sgmnt_data",83,"name")="sgmnt_data.epoch_taper_time_pct" + Set gtmtypes("sgmnt_data",83,"off")=484 + Set gtmtypes("sgmnt_data",83,"len")=4 + Set gtmtypes("sgmnt_data",83,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","epoch_taper_time_pct")=83 + Set gtmtypes("sgmnt_data",84,"name")="sgmnt_data.epoch_taper_jnl_pct" + Set gtmtypes("sgmnt_data",84,"off")=488 + Set gtmtypes("sgmnt_data",84,"len")=4 + Set gtmtypes("sgmnt_data",84,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","epoch_taper_jnl_pct")=84 + Set gtmtypes("sgmnt_data",85,"name")="sgmnt_data.filler_512" + Set gtmtypes("sgmnt_data",85,"off")=492 + Set gtmtypes("sgmnt_data",85,"len")=4 + Set gtmtypes("sgmnt_data",85,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_512")=85 + Set gtmtypes("sgmnt_data",86,"name")="sgmnt_data.reserved_for_upd" + Set gtmtypes("sgmnt_data",86,"off")=496 + Set gtmtypes("sgmnt_data",86,"len")=4 + Set gtmtypes("sgmnt_data",86,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","reserved_for_upd")=86 + Set gtmtypes("sgmnt_data",87,"name")="sgmnt_data.avg_blks_per_100gbl" + Set gtmtypes("sgmnt_data",87,"off")=500 + Set gtmtypes("sgmnt_data",87,"len")=4 + Set gtmtypes("sgmnt_data",87,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","avg_blks_per_100gbl")=87 + Set gtmtypes("sgmnt_data",88,"name")="sgmnt_data.pre_read_trigger_factor" + Set gtmtypes("sgmnt_data",88,"off")=504 + Set gtmtypes("sgmnt_data",88,"len")=4 + Set gtmtypes("sgmnt_data",88,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","pre_read_trigger_factor")=88 + Set gtmtypes("sgmnt_data",89,"name")="sgmnt_data.writer_trigger_factor" + Set gtmtypes("sgmnt_data",89,"off")=508 + Set gtmtypes("sgmnt_data",89,"len")=4 + Set gtmtypes("sgmnt_data",89,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","writer_trigger_factor")=89 + Set gtmtypes("sgmnt_data",90,"name")="sgmnt_data.semid" + Set gtmtypes("sgmnt_data",90,"off")=512 + Set gtmtypes("sgmnt_data",90,"len")=4 + Set gtmtypes("sgmnt_data",90,"type")="int" + Set gtmtypfldindx("sgmnt_data","semid")=90 + Set gtmtypes("sgmnt_data",91,"name")="sgmnt_data.shmid" + Set gtmtypes("sgmnt_data",91,"off")=516 + Set gtmtypes("sgmnt_data",91,"len")=4 + Set gtmtypes("sgmnt_data",91,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmid")=91 + Set gtmtypes("sgmnt_data",92,"name")="sgmnt_data.gt_sem_ctime" + Set gtmtypes("sgmnt_data",92,"off")=520 + Set gtmtypes("sgmnt_data",92,"len")=8 + Set gtmtypes("sgmnt_data",92,"type")="gtm_time8" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime")=92 + Set gtmtypes("sgmnt_data",93,"name")="sgmnt_data.gt_sem_ctime.ctime" + Set gtmtypes("sgmnt_data",93,"off")=520 + Set gtmtypes("sgmnt_data",93,"len")=4 + Set gtmtypes("sgmnt_data",93,"type")="time_t" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime.ctime")=93 + Set gtmtypes("sgmnt_data",94,"name")="sgmnt_data.gt_sem_ctime.filler" + Set gtmtypes("sgmnt_data",94,"off")=520 + Set gtmtypes("sgmnt_data",94,"len")=8 + Set gtmtypes("sgmnt_data",94,"type")="int" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime.filler")=94 + Set gtmtypes("sgmnt_data",94,"dim")=2 + Set gtmtypes("sgmnt_data",95,"name")="sgmnt_data.gt_shm_ctime" + Set gtmtypes("sgmnt_data",95,"off")=528 + Set gtmtypes("sgmnt_data",95,"len")=8 + Set gtmtypes("sgmnt_data",95,"type")="gtm_time8" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime")=95 + Set gtmtypes("sgmnt_data",96,"name")="sgmnt_data.gt_shm_ctime.ctime" + Set gtmtypes("sgmnt_data",96,"off")=528 + Set gtmtypes("sgmnt_data",96,"len")=4 + Set gtmtypes("sgmnt_data",96,"type")="time_t" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime.ctime")=96 + Set gtmtypes("sgmnt_data",97,"name")="sgmnt_data.gt_shm_ctime.filler" + Set gtmtypes("sgmnt_data",97,"off")=528 + Set gtmtypes("sgmnt_data",97,"len")=8 + Set gtmtypes("sgmnt_data",97,"type")="int" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime.filler")=97 + Set gtmtypes("sgmnt_data",97,"dim")=2 + Set gtmtypes("sgmnt_data",98,"name")="sgmnt_data.filler_unixonly" + Set gtmtypes("sgmnt_data",98,"off")=536 + Set gtmtypes("sgmnt_data",98,"len")=40 + Set gtmtypes("sgmnt_data",98,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_unixonly")=98 + Set gtmtypes("sgmnt_data",99,"name")="sgmnt_data.filler_n_retries" + Set gtmtypes("sgmnt_data",99,"off")=576 + Set gtmtypes("sgmnt_data",99,"len")=20 + Set gtmtypes("sgmnt_data",99,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_retries")=99 + Set gtmtypes("sgmnt_data",99,"dim")=5 + Set gtmtypes("sgmnt_data",100,"name")="sgmnt_data.filler_n_puts" + Set gtmtypes("sgmnt_data",100,"off")=596 + Set gtmtypes("sgmnt_data",100,"len")=4 + Set gtmtypes("sgmnt_data",100,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_puts")=100 + Set gtmtypes("sgmnt_data",101,"name")="sgmnt_data.filler_n_kills" + Set gtmtypes("sgmnt_data",101,"off")=600 + Set gtmtypes("sgmnt_data",101,"len")=4 + Set gtmtypes("sgmnt_data",101,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_kills")=101 + Set gtmtypes("sgmnt_data",102,"name")="sgmnt_data.filler_n_queries" + Set gtmtypes("sgmnt_data",102,"off")=604 + Set gtmtypes("sgmnt_data",102,"len")=4 + Set gtmtypes("sgmnt_data",102,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_queries")=102 + Set gtmtypes("sgmnt_data",103,"name")="sgmnt_data.filler_n_gets" + Set gtmtypes("sgmnt_data",103,"off")=608 + Set gtmtypes("sgmnt_data",103,"len")=4 + Set gtmtypes("sgmnt_data",103,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_gets")=103 + Set gtmtypes("sgmnt_data",104,"name")="sgmnt_data.filler_n_order" + Set gtmtypes("sgmnt_data",104,"off")=612 + Set gtmtypes("sgmnt_data",104,"len")=4 + Set gtmtypes("sgmnt_data",104,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_order")=104 + Set gtmtypes("sgmnt_data",105,"name")="sgmnt_data.filler_n_zprevs" + Set gtmtypes("sgmnt_data",105,"off")=616 + Set gtmtypes("sgmnt_data",105,"len")=4 + Set gtmtypes("sgmnt_data",105,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_zprevs")=105 + Set gtmtypes("sgmnt_data",106,"name")="sgmnt_data.filler_n_data" + Set gtmtypes("sgmnt_data",106,"off")=620 + Set gtmtypes("sgmnt_data",106,"len")=4 + Set gtmtypes("sgmnt_data",106,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_data")=106 + Set gtmtypes("sgmnt_data",107,"name")="sgmnt_data.filler_n_puts_duplicate" + Set gtmtypes("sgmnt_data",107,"off")=624 + Set gtmtypes("sgmnt_data",107,"len")=4 + Set gtmtypes("sgmnt_data",107,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_puts_duplicate")=107 + Set gtmtypes("sgmnt_data",108,"name")="sgmnt_data.filler_n_tp_updates" + Set gtmtypes("sgmnt_data",108,"off")=628 + Set gtmtypes("sgmnt_data",108,"len")=4 + Set gtmtypes("sgmnt_data",108,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_updates")=108 + Set gtmtypes("sgmnt_data",109,"name")="sgmnt_data.filler_n_tp_updates_duplicate" + Set gtmtypes("sgmnt_data",109,"off")=632 + Set gtmtypes("sgmnt_data",109,"len")=4 + Set gtmtypes("sgmnt_data",109,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_updates_duplicate")=109 + Set gtmtypes("sgmnt_data",110,"name")="sgmnt_data.filler_accounting_64_align" + Set gtmtypes("sgmnt_data",110,"off")=636 + Set gtmtypes("sgmnt_data",110,"len")=4 + Set gtmtypes("sgmnt_data",110,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_accounting_64_align")=110 + Set gtmtypes("sgmnt_data",111,"name")="sgmnt_data.staleness" + Set gtmtypes("sgmnt_data",111,"off")=640 + Set gtmtypes("sgmnt_data",111,"len")=8 + Set gtmtypes("sgmnt_data",111,"type")="int" + Set gtmtypfldindx("sgmnt_data","staleness")=111 + Set gtmtypes("sgmnt_data",111,"dim")=2 + Set gtmtypes("sgmnt_data",112,"name")="sgmnt_data.ccp_tick_interval" + Set gtmtypes("sgmnt_data",112,"off")=648 + Set gtmtypes("sgmnt_data",112,"len")=8 + Set gtmtypes("sgmnt_data",112,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_tick_interval")=112 + Set gtmtypes("sgmnt_data",112,"dim")=2 + Set gtmtypes("sgmnt_data",113,"name")="sgmnt_data.ccp_quantum_interval" + Set gtmtypes("sgmnt_data",113,"off")=656 + Set gtmtypes("sgmnt_data",113,"len")=8 + Set gtmtypes("sgmnt_data",113,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_quantum_interval")=113 + Set gtmtypes("sgmnt_data",113,"dim")=2 + Set gtmtypes("sgmnt_data",114,"name")="sgmnt_data.ccp_response_interval" + Set gtmtypes("sgmnt_data",114,"off")=664 + Set gtmtypes("sgmnt_data",114,"len")=8 + Set gtmtypes("sgmnt_data",114,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_response_interval")=114 + Set gtmtypes("sgmnt_data",114,"dim")=2 + Set gtmtypes("sgmnt_data",115,"name")="sgmnt_data.ccp_jnl_before" + Set gtmtypes("sgmnt_data",115,"off")=672 + Set gtmtypes("sgmnt_data",115,"len")=4 + Set gtmtypes("sgmnt_data",115,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","ccp_jnl_before")=115 + Set gtmtypes("sgmnt_data",116,"name")="sgmnt_data.clustered" + Set gtmtypes("sgmnt_data",116,"off")=676 + Set gtmtypes("sgmnt_data",116,"len")=4 + Set gtmtypes("sgmnt_data",116,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","clustered")=116 + Set gtmtypes("sgmnt_data",117,"name")="sgmnt_data.unbacked_cache" + Set gtmtypes("sgmnt_data",117,"off")=680 + Set gtmtypes("sgmnt_data",117,"len")=4 + Set gtmtypes("sgmnt_data",117,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","unbacked_cache")=117 + Set gtmtypes("sgmnt_data",118,"name")="sgmnt_data.rc_srv_cnt" + Set gtmtypes("sgmnt_data",118,"off")=684 + Set gtmtypes("sgmnt_data",118,"len")=4 + Set gtmtypes("sgmnt_data",118,"type")="int" + Set gtmtypfldindx("sgmnt_data","rc_srv_cnt")=118 + Set gtmtypes("sgmnt_data",119,"name")="sgmnt_data.dsid" + Set gtmtypes("sgmnt_data",119,"off")=688 + Set gtmtypes("sgmnt_data",119,"len")=4 + Set gtmtypes("sgmnt_data",119,"type")="int" + Set gtmtypfldindx("sgmnt_data","dsid")=119 + Set gtmtypes("sgmnt_data",120,"name")="sgmnt_data.rc_node" + Set gtmtypes("sgmnt_data",120,"off")=692 + Set gtmtypes("sgmnt_data",120,"len")=4 + Set gtmtypes("sgmnt_data",120,"type")="int" + Set gtmtypfldindx("sgmnt_data","rc_node")=120 + Set gtmtypes("sgmnt_data",121,"name")="sgmnt_data.filler_ccp_rc" + Set gtmtypes("sgmnt_data",121,"off")=696 + Set gtmtypes("sgmnt_data",121,"len")=8 + Set gtmtypes("sgmnt_data",121,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_ccp_rc")=121 + Set gtmtypes("sgmnt_data",122,"name")="sgmnt_data.reg_seqno" + Set gtmtypes("sgmnt_data",122,"off")=704 + Set gtmtypes("sgmnt_data",122,"len")=8 + Set gtmtypes("sgmnt_data",122,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reg_seqno")=122 + Set gtmtypes("sgmnt_data",123,"name")="sgmnt_data.pre_multisite_resync_seqno" + Set gtmtypes("sgmnt_data",123,"off")=712 + Set gtmtypes("sgmnt_data",123,"len")=8 + Set gtmtypes("sgmnt_data",123,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","pre_multisite_resync_seqno")=123 + Set gtmtypes("sgmnt_data",124,"name")="sgmnt_data.zqgblmod_tn" + Set gtmtypes("sgmnt_data",124,"off")=720 + Set gtmtypes("sgmnt_data",124,"len")=8 + Set gtmtypes("sgmnt_data",124,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","zqgblmod_tn")=124 + Set gtmtypes("sgmnt_data",125,"name")="sgmnt_data.zqgblmod_seqno" + Set gtmtypes("sgmnt_data",125,"off")=728 + Set gtmtypes("sgmnt_data",125,"len")=8 + Set gtmtypes("sgmnt_data",125,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","zqgblmod_seqno")=125 + Set gtmtypes("sgmnt_data",126,"name")="sgmnt_data.repl_state" + Set gtmtypes("sgmnt_data",126,"off")=736 + Set gtmtypes("sgmnt_data",126,"len")=4 + Set gtmtypes("sgmnt_data",126,"type")="int" + Set gtmtypfldindx("sgmnt_data","repl_state")=126 + Set gtmtypes("sgmnt_data",127,"name")="sgmnt_data.multi_site_open" + Set gtmtypes("sgmnt_data",127,"off")=740 + Set gtmtypes("sgmnt_data",127,"len")=4 + Set gtmtypes("sgmnt_data",127,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","multi_site_open")=127 + Set gtmtypes("sgmnt_data",128,"name")="sgmnt_data.filler_seqno" + Set gtmtypes("sgmnt_data",128,"off")=744 + Set gtmtypes("sgmnt_data",128,"len")=8 + Set gtmtypes("sgmnt_data",128,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","filler_seqno")=128 + Set gtmtypes("sgmnt_data",129,"name")="sgmnt_data.filler_repl" + Set gtmtypes("sgmnt_data",129,"off")=752 + Set gtmtypes("sgmnt_data",129,"len")=16 + Set gtmtypes("sgmnt_data",129,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_repl")=129 + Set gtmtypes("sgmnt_data",130,"name")="sgmnt_data.filler_n_tp_retries" + Set gtmtypes("sgmnt_data",130,"off")=768 + Set gtmtypes("sgmnt_data",130,"len")=48 + Set gtmtypes("sgmnt_data",130,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_retries")=130 + Set gtmtypes("sgmnt_data",130,"dim")=12 + Set gtmtypes("sgmnt_data",131,"name")="sgmnt_data.filler_n_tp_retries_conflicts" + Set gtmtypes("sgmnt_data",131,"off")=816 + Set gtmtypes("sgmnt_data",131,"len")=48 + Set gtmtypes("sgmnt_data",131,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_retries_conflicts")=131 + Set gtmtypes("sgmnt_data",131,"dim")=12 + Set gtmtypes("sgmnt_data",132,"name")="sgmnt_data.tp_cdb_sc_blkmod" + Set gtmtypes("sgmnt_data",132,"off")=864 + Set gtmtypes("sgmnt_data",132,"len")=32 + Set gtmtypes("sgmnt_data",132,"type")="int" + Set gtmtypfldindx("sgmnt_data","tp_cdb_sc_blkmod")=132 + Set gtmtypes("sgmnt_data",132,"dim")=8 + Set gtmtypes("sgmnt_data",133,"name")="sgmnt_data.jnl_alq" + Set gtmtypes("sgmnt_data",133,"off")=896 + Set gtmtypes("sgmnt_data",133,"len")=4 + Set gtmtypes("sgmnt_data",133,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_alq")=133 + Set gtmtypes("sgmnt_data",134,"name")="sgmnt_data.jnl_deq" + Set gtmtypes("sgmnt_data",134,"off")=900 + Set gtmtypes("sgmnt_data",134,"len")=4 + Set gtmtypes("sgmnt_data",134,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_deq")=134 + Set gtmtypes("sgmnt_data",135,"name")="sgmnt_data.jnl_buffer_size" + Set gtmtypes("sgmnt_data",135,"off")=904 + Set gtmtypes("sgmnt_data",135,"len")=4 + Set gtmtypes("sgmnt_data",135,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_buffer_size")=135 + Set gtmtypes("sgmnt_data",136,"name")="sgmnt_data.jnl_before_image" + Set gtmtypes("sgmnt_data",136,"off")=908 + Set gtmtypes("sgmnt_data",136,"len")=4 + Set gtmtypes("sgmnt_data",136,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","jnl_before_image")=136 + Set gtmtypes("sgmnt_data",137,"name")="sgmnt_data.jnl_state" + Set gtmtypes("sgmnt_data",137,"off")=912 + Set gtmtypes("sgmnt_data",137,"len")=4 + Set gtmtypes("sgmnt_data",137,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_state")=137 + Set gtmtypes("sgmnt_data",138,"name")="sgmnt_data.jnl_file_len" + Set gtmtypes("sgmnt_data",138,"off")=916 + Set gtmtypes("sgmnt_data",138,"len")=4 + Set gtmtypes("sgmnt_data",138,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_file_len")=138 + Set gtmtypes("sgmnt_data",139,"name")="sgmnt_data.autoswitchlimit" + Set gtmtypes("sgmnt_data",139,"off")=920 + Set gtmtypes("sgmnt_data",139,"len")=4 + Set gtmtypes("sgmnt_data",139,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","autoswitchlimit")=139 + Set gtmtypes("sgmnt_data",140,"name")="sgmnt_data.epoch_interval" + Set gtmtypes("sgmnt_data",140,"off")=924 + Set gtmtypes("sgmnt_data",140,"len")=4 + Set gtmtypes("sgmnt_data",140,"type")="int" + Set gtmtypfldindx("sgmnt_data","epoch_interval")=140 + Set gtmtypes("sgmnt_data",141,"name")="sgmnt_data.alignsize" + Set gtmtypes("sgmnt_data",141,"off")=928 + Set gtmtypes("sgmnt_data",141,"len")=4 + Set gtmtypes("sgmnt_data",141,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","alignsize")=141 + Set gtmtypes("sgmnt_data",142,"name")="sgmnt_data.jnl_sync_io" + Set gtmtypes("sgmnt_data",142,"off")=932 + Set gtmtypes("sgmnt_data",142,"len")=4 + Set gtmtypes("sgmnt_data",142,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_sync_io")=142 + Set gtmtypes("sgmnt_data",143,"name")="sgmnt_data.yield_lmt" + Set gtmtypes("sgmnt_data",143,"off")=936 + Set gtmtypes("sgmnt_data",143,"len")=4 + Set gtmtypes("sgmnt_data",143,"type")="int" + Set gtmtypfldindx("sgmnt_data","yield_lmt")=143 + Set gtmtypes("sgmnt_data",144,"name")="sgmnt_data.turn_around_point" + Set gtmtypes("sgmnt_data",144,"off")=940 + Set gtmtypes("sgmnt_data",144,"len")=4 + Set gtmtypes("sgmnt_data",144,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","turn_around_point")=144 + Set gtmtypes("sgmnt_data",145,"name")="sgmnt_data.jnl_eovtn" + Set gtmtypes("sgmnt_data",145,"off")=944 + Set gtmtypes("sgmnt_data",145,"len")=8 + Set gtmtypes("sgmnt_data",145,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_eovtn")=145 + Set gtmtypes("sgmnt_data",146,"name")="sgmnt_data.filler_jnl" + Set gtmtypes("sgmnt_data",146,"off")=952 + Set gtmtypes("sgmnt_data",146,"len")=8 + Set gtmtypes("sgmnt_data",146,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_jnl")=146 + Set gtmtypes("sgmnt_data",147,"name")="sgmnt_data.intrpt_recov_resync_seqno" + Set gtmtypes("sgmnt_data",147,"off")=960 + Set gtmtypes("sgmnt_data",147,"len")=8 + Set gtmtypes("sgmnt_data",147,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_resync_seqno")=147 + Set gtmtypes("sgmnt_data",148,"name")="sgmnt_data.intrpt_recov_tp_resolve_time" + Set gtmtypes("sgmnt_data",148,"off")=968 + Set gtmtypes("sgmnt_data",148,"len")=4 + Set gtmtypes("sgmnt_data",148,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_tp_resolve_time")=148 + Set gtmtypes("sgmnt_data",149,"name")="sgmnt_data.recov_interrupted" + Set gtmtypes("sgmnt_data",149,"off")=972 + Set gtmtypes("sgmnt_data",149,"len")=4 + Set gtmtypes("sgmnt_data",149,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","recov_interrupted")=149 + Set gtmtypes("sgmnt_data",150,"name")="sgmnt_data.intrpt_recov_jnl_state" + Set gtmtypes("sgmnt_data",150,"off")=976 + Set gtmtypes("sgmnt_data",150,"len")=4 + Set gtmtypes("sgmnt_data",150,"type")="int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_jnl_state")=150 + Set gtmtypes("sgmnt_data",151,"name")="sgmnt_data.intrpt_recov_repl_state" + Set gtmtypes("sgmnt_data",151,"off")=980 + Set gtmtypes("sgmnt_data",151,"len")=4 + Set gtmtypes("sgmnt_data",151,"type")="int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_repl_state")=151 + Set gtmtypes("sgmnt_data",152,"name")="sgmnt_data.before_trunc_total_blks" + Set gtmtypes("sgmnt_data",152,"off")=984 + Set gtmtypes("sgmnt_data",152,"len")=4 + Set gtmtypes("sgmnt_data",152,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","before_trunc_total_blks")=152 + Set gtmtypes("sgmnt_data",153,"name")="sgmnt_data.after_trunc_total_blks" + Set gtmtypes("sgmnt_data",153,"off")=988 + Set gtmtypes("sgmnt_data",153,"len")=4 + Set gtmtypes("sgmnt_data",153,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","after_trunc_total_blks")=153 + Set gtmtypes("sgmnt_data",154,"name")="sgmnt_data.before_trunc_free_blocks" + Set gtmtypes("sgmnt_data",154,"off")=992 + Set gtmtypes("sgmnt_data",154,"len")=4 + Set gtmtypes("sgmnt_data",154,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","before_trunc_free_blocks")=154 + Set gtmtypes("sgmnt_data",155,"name")="sgmnt_data.filler_trunc" + Set gtmtypes("sgmnt_data",155,"off")=996 + Set gtmtypes("sgmnt_data",155,"len")=4 + Set gtmtypes("sgmnt_data",155,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_trunc")=155 + Set gtmtypes("sgmnt_data",156,"name")="sgmnt_data.filler_1k" + Set gtmtypes("sgmnt_data",156,"off")=1000 + Set gtmtypes("sgmnt_data",156,"len")=24 + Set gtmtypes("sgmnt_data",156,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_1k")=156 + Set gtmtypes("sgmnt_data",157,"name")="sgmnt_data.jnl_file_name" + Set gtmtypes("sgmnt_data",157,"off")=1024 + Set gtmtypes("sgmnt_data",157,"len")=256 + Set gtmtypes("sgmnt_data",157,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","jnl_file_name")=157 + Set gtmtypes("sgmnt_data",158,"name")="sgmnt_data.reorg_restart_key" + Set gtmtypes("sgmnt_data",158,"off")=1280 + Set gtmtypes("sgmnt_data",158,"len")=256 + Set gtmtypes("sgmnt_data",158,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","reorg_restart_key")=158 + Set gtmtypes("sgmnt_data",159,"name")="sgmnt_data.machine_name" + Set gtmtypes("sgmnt_data",159,"off")=1536 + Set gtmtypes("sgmnt_data",159,"len")=256 + Set gtmtypes("sgmnt_data",159,"type")="char" + Set gtmtypfldindx("sgmnt_data","machine_name")=159 + Set gtmtypes("sgmnt_data",160,"name")="sgmnt_data.encryption_hash" + Set gtmtypes("sgmnt_data",160,"off")=1792 + Set gtmtypes("sgmnt_data",160,"len")=80 + Set gtmtypes("sgmnt_data",160,"type")="char" + Set gtmtypfldindx("sgmnt_data","encryption_hash")=160 + Set gtmtypes("sgmnt_data",161,"name")="sgmnt_data.encryption_hash2" + Set gtmtypes("sgmnt_data",161,"off")=1872 + Set gtmtypes("sgmnt_data",161,"len")=80 + Set gtmtypes("sgmnt_data",161,"type")="char" + Set gtmtypfldindx("sgmnt_data","encryption_hash2")=161 + Set gtmtypes("sgmnt_data",162,"name")="sgmnt_data.non_null_iv" + Set gtmtypes("sgmnt_data",162,"off")=1952 + Set gtmtypes("sgmnt_data",162,"len")=4 + Set gtmtypes("sgmnt_data",162,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","non_null_iv")=162 + Set gtmtypes("sgmnt_data",163,"name")="sgmnt_data.encryption_hash_cutoff" + Set gtmtypes("sgmnt_data",163,"off")=1956 + Set gtmtypes("sgmnt_data",163,"len")=4 + Set gtmtypes("sgmnt_data",163,"type")="int" + Set gtmtypfldindx("sgmnt_data","encryption_hash_cutoff")=163 + Set gtmtypes("sgmnt_data",164,"name")="sgmnt_data.encryption_hash2_start_tn" + Set gtmtypes("sgmnt_data",164,"off")=1960 + Set gtmtypes("sgmnt_data",164,"len")=8 + Set gtmtypes("sgmnt_data",164,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","encryption_hash2_start_tn")=164 + Set gtmtypes("sgmnt_data",165,"name")="sgmnt_data.filler_encrypt" + Set gtmtypes("sgmnt_data",165,"off")=1968 + Set gtmtypes("sgmnt_data",165,"len")=80 + Set gtmtypes("sgmnt_data",165,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_encrypt")=165 + Set gtmtypes("sgmnt_data",166,"name")="sgmnt_data.total_buffer_flush_tn" + Set gtmtypes("sgmnt_data",166,"off")=2048 + Set gtmtypes("sgmnt_data",166,"len")=8 + Set gtmtypes("sgmnt_data",166,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","total_buffer_flush_tn")=166 + Set gtmtypes("sgmnt_data",167,"name")="sgmnt_data.bufct_buffer_flush_tn" + Set gtmtypes("sgmnt_data",167,"off")=2056 + Set gtmtypes("sgmnt_data",167,"len")=8 + Set gtmtypes("sgmnt_data",167,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_tn")=167 + Set gtmtypes("sgmnt_data",168,"name")="sgmnt_data.bufct_buffer_flush_loop_tn" + Set gtmtypes("sgmnt_data",168,"off")=2064 + Set gtmtypes("sgmnt_data",168,"len")=8 + Set gtmtypes("sgmnt_data",168,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_loop_tn")=168 + Set gtmtypes("sgmnt_data",169,"name")="sgmnt_data.wrt_calls_tn" + Set gtmtypes("sgmnt_data",169,"off")=2072 + Set gtmtypes("sgmnt_data",169,"len")=8 + Set gtmtypes("sgmnt_data",169,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_calls_tn")=169 + Set gtmtypes("sgmnt_data",170,"name")="sgmnt_data.wrt_count_tn" + Set gtmtypes("sgmnt_data",170,"off")=2080 + Set gtmtypes("sgmnt_data",170,"len")=8 + Set gtmtypes("sgmnt_data",170,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_count_tn")=170 + Set gtmtypes("sgmnt_data",171,"name")="sgmnt_data.wrt_blocked_tn" + Set gtmtypes("sgmnt_data",171,"off")=2088 + Set gtmtypes("sgmnt_data",171,"len")=8 + Set gtmtypes("sgmnt_data",171,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_blocked_tn")=171 + Set gtmtypes("sgmnt_data",172,"name")="sgmnt_data.wrt_busy_tn" + Set gtmtypes("sgmnt_data",172,"off")=2096 + Set gtmtypes("sgmnt_data",172,"len")=8 + Set gtmtypes("sgmnt_data",172,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_busy_tn")=172 + Set gtmtypes("sgmnt_data",173,"name")="sgmnt_data.wrt_noblks_wrtn_tn" + Set gtmtypes("sgmnt_data",173,"off")=2104 + Set gtmtypes("sgmnt_data",173,"len")=8 + Set gtmtypes("sgmnt_data",173,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_noblks_wrtn_tn")=173 + Set gtmtypes("sgmnt_data",174,"name")="sgmnt_data.reserved_bgtrcrec1_tn" + Set gtmtypes("sgmnt_data",174,"off")=2112 + Set gtmtypes("sgmnt_data",174,"len")=8 + Set gtmtypes("sgmnt_data",174,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec1_tn")=174 + Set gtmtypes("sgmnt_data",175,"name")="sgmnt_data.reserved_bgtrcrec2_tn" + Set gtmtypes("sgmnt_data",175,"off")=2120 + Set gtmtypes("sgmnt_data",175,"len")=8 + Set gtmtypes("sgmnt_data",175,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec2_tn")=175 + Set gtmtypes("sgmnt_data",176,"name")="sgmnt_data.reserved_bgtrcrec3_tn" + Set gtmtypes("sgmnt_data",176,"off")=2128 + Set gtmtypes("sgmnt_data",176,"len")=8 + Set gtmtypes("sgmnt_data",176,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec3_tn")=176 + Set gtmtypes("sgmnt_data",177,"name")="sgmnt_data.lost_block_recovery_tn" + Set gtmtypes("sgmnt_data",177,"off")=2136 + Set gtmtypes("sgmnt_data",177,"len")=8 + Set gtmtypes("sgmnt_data",177,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","lost_block_recovery_tn")=177 + Set gtmtypes("sgmnt_data",178,"name")="sgmnt_data.wc_blocked_onln_rlbk_tn" + Set gtmtypes("sgmnt_data",178,"off")=2144 + Set gtmtypes("sgmnt_data",178,"len")=8 + Set gtmtypes("sgmnt_data",178,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_onln_rlbk_tn")=178 + Set gtmtypes("sgmnt_data",179,"name")="sgmnt_data.stale_tn" + Set gtmtypes("sgmnt_data",179,"off")=2152 + Set gtmtypes("sgmnt_data",179,"len")=8 + Set gtmtypes("sgmnt_data",179,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_tn")=179 + Set gtmtypes("sgmnt_data",180,"name")="sgmnt_data.starved_tn" + Set gtmtypes("sgmnt_data",180,"off")=2160 + Set gtmtypes("sgmnt_data",180,"len")=8 + Set gtmtypes("sgmnt_data",180,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","starved_tn")=180 + Set gtmtypes("sgmnt_data",181,"name")="sgmnt_data.stale_timer_started_tn" + Set gtmtypes("sgmnt_data",181,"off")=2168 + Set gtmtypes("sgmnt_data",181,"len")=8 + Set gtmtypes("sgmnt_data",181,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_timer_started_tn")=181 + Set gtmtypes("sgmnt_data",182,"name")="sgmnt_data.stale_timer_pop_tn" + Set gtmtypes("sgmnt_data",182,"off")=2176 + Set gtmtypes("sgmnt_data",182,"len")=8 + Set gtmtypes("sgmnt_data",182,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_timer_pop_tn")=182 + Set gtmtypes("sgmnt_data",183,"name")="sgmnt_data.stale_process_defer_tn" + Set gtmtypes("sgmnt_data",183,"off")=2184 + Set gtmtypes("sgmnt_data",183,"len")=8 + Set gtmtypes("sgmnt_data",183,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_process_defer_tn")=183 + Set gtmtypes("sgmnt_data",184,"name")="sgmnt_data.stale_defer_processed_tn" + Set gtmtypes("sgmnt_data",184,"off")=2192 + Set gtmtypes("sgmnt_data",184,"len")=8 + Set gtmtypes("sgmnt_data",184,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_defer_processed_tn")=184 + Set gtmtypes("sgmnt_data",185,"name")="sgmnt_data.spcfc_buffer_flush_tn" + Set gtmtypes("sgmnt_data",185,"off")=2200 + Set gtmtypes("sgmnt_data",185,"len")=8 + Set gtmtypes("sgmnt_data",185,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_tn")=185 + Set gtmtypes("sgmnt_data",186,"name")="sgmnt_data.spcfc_buffer_flush_loop_tn" + Set gtmtypes("sgmnt_data",186,"off")=2208 + Set gtmtypes("sgmnt_data",186,"len")=8 + Set gtmtypes("sgmnt_data",186,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_loop_tn")=186 + Set gtmtypes("sgmnt_data",187,"name")="sgmnt_data.spcfc_buffer_flush_retries_tn" + Set gtmtypes("sgmnt_data",187,"off")=2216 + Set gtmtypes("sgmnt_data",187,"len")=8 + Set gtmtypes("sgmnt_data",187,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_retries_tn")=187 + Set gtmtypes("sgmnt_data",188,"name")="sgmnt_data.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("sgmnt_data",188,"off")=2224 + Set gtmtypes("sgmnt_data",188,"len")=8 + Set gtmtypes("sgmnt_data",188,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flushed_during_lockwait_tn")=188 + Set gtmtypes("sgmnt_data",189,"name")="sgmnt_data.tp_crit_retries_tn" + Set gtmtypes("sgmnt_data",189,"off")=2232 + Set gtmtypes("sgmnt_data",189,"len")=8 + Set gtmtypes("sgmnt_data",189,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","tp_crit_retries_tn")=189 + Set gtmtypes("sgmnt_data",190,"name")="sgmnt_data.db_csh_getn_flush_dirty_tn" + Set gtmtypes("sgmnt_data",190,"off")=2240 + Set gtmtypes("sgmnt_data",190,"len")=8 + Set gtmtypes("sgmnt_data",190,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_flush_dirty_tn")=190 + Set gtmtypes("sgmnt_data",191,"name")="sgmnt_data.db_csh_getn_rip_wait_tn" + Set gtmtypes("sgmnt_data",191,"off")=2248 + Set gtmtypes("sgmnt_data",191,"len")=8 + Set gtmtypes("sgmnt_data",191,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_rip_wait_tn")=191 + Set gtmtypes("sgmnt_data",192,"name")="sgmnt_data.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("sgmnt_data",192,"off")=2256 + Set gtmtypes("sgmnt_data",192,"len")=8 + Set gtmtypes("sgmnt_data",192,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_buf_owner_stuck_tn")=192 + Set gtmtypes("sgmnt_data",193,"name")="sgmnt_data.db_csh_getn_out_of_design_tn" + Set gtmtypes("sgmnt_data",193,"off")=2264 + Set gtmtypes("sgmnt_data",193,"len")=8 + Set gtmtypes("sgmnt_data",193,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_out_of_design_tn")=193 + Set gtmtypes("sgmnt_data",194,"name")="sgmnt_data.t_qread_buf_owner_stuck_tn" + Set gtmtypes("sgmnt_data",194,"off")=2272 + Set gtmtypes("sgmnt_data",194,"len")=8 + Set gtmtypes("sgmnt_data",194,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_buf_owner_stuck_tn")=194 + Set gtmtypes("sgmnt_data",195,"name")="sgmnt_data.t_qread_out_of_design_tn" + Set gtmtypes("sgmnt_data",195,"off")=2280 + Set gtmtypes("sgmnt_data",195,"len")=8 + Set gtmtypes("sgmnt_data",195,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_out_of_design_tn")=195 + Set gtmtypes("sgmnt_data",196,"name")="sgmnt_data.bt_put_flush_dirty_tn" + Set gtmtypes("sgmnt_data",196,"off")=2288 + Set gtmtypes("sgmnt_data",196,"len")=8 + Set gtmtypes("sgmnt_data",196,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bt_put_flush_dirty_tn")=196 + Set gtmtypes("sgmnt_data",197,"name")="sgmnt_data.mlock_wakeups_tn" + Set gtmtypes("sgmnt_data",197,"off")=2296 + Set gtmtypes("sgmnt_data",197,"len")=8 + Set gtmtypes("sgmnt_data",197,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","mlock_wakeups_tn")=197 + Set gtmtypes("sgmnt_data",198,"name")="sgmnt_data.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("sgmnt_data",198,"off")=2304 + Set gtmtypes("sgmnt_data",198,"len")=8 + Set gtmtypes("sgmnt_data",198,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_recover_invoked_tn")=198 + Set gtmtypes("sgmnt_data",199,"name")="sgmnt_data.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("sgmnt_data",199,"off")=2312 + Set gtmtypes("sgmnt_data",199,"len")=8 + Set gtmtypes("sgmnt_data",199,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_verify_passed_tn")=199 + Set gtmtypes("sgmnt_data",200,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("sgmnt_data",200,"off")=2320 + Set gtmtypes("sgmnt_data",200,"len")=8 + Set gtmtypes("sgmnt_data",200,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=200 + Set gtmtypes("sgmnt_data",201,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("sgmnt_data",201,"off")=2328 + Set gtmtypes("sgmnt_data",201,"len")=8 + Set gtmtypes("sgmnt_data",201,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=201 + Set gtmtypes("sgmnt_data",202,"name")="sgmnt_data.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("sgmnt_data",202,"off")=2336 + Set gtmtypes("sgmnt_data",202,"len")=8 + Set gtmtypes("sgmnt_data",202,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_loopexceed_tn")=202 + Set gtmtypes("sgmnt_data",203,"name")="sgmnt_data.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("sgmnt_data",203,"off")=2344 + Set gtmtypes("sgmnt_data",203,"len")=8 + Set gtmtypes("sgmnt_data",203,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_wcsstarvewrt_tn")=203 + Set gtmtypes("sgmnt_data",204,"name")="sgmnt_data.wc_blocked_db_csh_get_tn" + Set gtmtypes("sgmnt_data",204,"off")=2352 + Set gtmtypes("sgmnt_data",204,"len")=8 + Set gtmtypes("sgmnt_data",204,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_get_tn")=204 + Set gtmtypes("sgmnt_data",205,"name")="sgmnt_data.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("sgmnt_data",205,"off")=2360 + Set gtmtypes("sgmnt_data",205,"len")=8 + Set gtmtypes("sgmnt_data",205,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_wcsgetspace_tn")=205 + Set gtmtypes("sgmnt_data",206,"name")="sgmnt_data.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("sgmnt_data",206,"off")=2368 + Set gtmtypes("sgmnt_data",206,"len")=8 + Set gtmtypes("sgmnt_data",206,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_t1_tn")=206 + Set gtmtypes("sgmnt_data",207,"name")="sgmnt_data.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("sgmnt_data",207,"off")=2376 + Set gtmtypes("sgmnt_data",207,"len")=8 + Set gtmtypes("sgmnt_data",207,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_bitmap_tn")=207 + Set gtmtypes("sgmnt_data",208,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("sgmnt_data",208,"off")=2384 + Set gtmtypes("sgmnt_data",208,"len")=8 + Set gtmtypes("sgmnt_data",208,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_cwset_tn")=208 + Set gtmtypes("sgmnt_data",209,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("sgmnt_data",209,"off")=2392 + Set gtmtypes("sgmnt_data",209,"len")=8 + Set gtmtypes("sgmnt_data",209,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_wcsflu_tn")=209 + Set gtmtypes("sgmnt_data",210,"name")="sgmnt_data.wc_blocked_t_end_hist_tn" + Set gtmtypes("sgmnt_data",210,"off")=2400 + Set gtmtypes("sgmnt_data",210,"len")=8 + Set gtmtypes("sgmnt_data",210,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist_tn")=210 + Set gtmtypes("sgmnt_data",211,"name")="sgmnt_data.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("sgmnt_data",211,"off")=2408 + Set gtmtypes("sgmnt_data",211,"len")=8 + Set gtmtypes("sgmnt_data",211,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nullbt_tn")=211 + Set gtmtypes("sgmnt_data",212,"name")="sgmnt_data.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("sgmnt_data",212,"off")=2416 + Set gtmtypes("sgmnt_data",212,"len")=8 + Set gtmtypes("sgmnt_data",212,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nonnullbt_tn")=212 + Set gtmtypes("sgmnt_data",213,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("sgmnt_data",213,"off")=2424 + Set gtmtypes("sgmnt_data",213,"len")=8 + Set gtmtypes("sgmnt_data",213,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nullbt_tn")=213 + Set gtmtypes("sgmnt_data",214,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("sgmnt_data",214,"off")=2432 + Set gtmtypes("sgmnt_data",214,"len")=8 + Set gtmtypes("sgmnt_data",214,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nonnullbt_tn")=214 + Set gtmtypes("sgmnt_data",215,"name")="sgmnt_data.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("sgmnt_data",215,"off")=2440 + Set gtmtypes("sgmnt_data",215,"len")=8 + Set gtmtypes("sgmnt_data",215,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_cwset_tn")=215 + Set gtmtypes("sgmnt_data",216,"name")="sgmnt_data.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("sgmnt_data",216,"off")=2448 + Set gtmtypes("sgmnt_data",216,"len")=8 + Set gtmtypes("sgmnt_data",216,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_wcsflu_tn")=216 + Set gtmtypes("sgmnt_data",217,"name")="sgmnt_data.db_csh_get_too_many_loops_tn" + Set gtmtypes("sgmnt_data",217,"off")=2456 + Set gtmtypes("sgmnt_data",217,"len")=8 + Set gtmtypes("sgmnt_data",217,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_get_too_many_loops_tn")=217 + Set gtmtypes("sgmnt_data",218,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("sgmnt_data",218,"off")=2464 + Set gtmtypes("sgmnt_data",218,"len")=8 + Set gtmtypes("sgmnt_data",218,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nullbt_tn")=218 + Set gtmtypes("sgmnt_data",219,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("sgmnt_data",219,"off")=2472 + Set gtmtypes("sgmnt_data",219,"len")=8 + Set gtmtypes("sgmnt_data",219,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nonnullbt_tn")=219 + Set gtmtypes("sgmnt_data",220,"name")="sgmnt_data.jnl_blocked_writer_lost_tn" + Set gtmtypes("sgmnt_data",220,"off")=2480 + Set gtmtypes("sgmnt_data",220,"len")=8 + Set gtmtypes("sgmnt_data",220,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_lost_tn")=220 + Set gtmtypes("sgmnt_data",221,"name")="sgmnt_data.jnl_blocked_writer_stuck_tn" + Set gtmtypes("sgmnt_data",221,"off")=2488 + Set gtmtypes("sgmnt_data",221,"len")=8 + Set gtmtypes("sgmnt_data",221,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_stuck_tn")=221 + Set gtmtypes("sgmnt_data",222,"name")="sgmnt_data.jnl_blocked_writer_blocked_tn" + Set gtmtypes("sgmnt_data",222,"off")=2496 + Set gtmtypes("sgmnt_data",222,"len")=8 + Set gtmtypes("sgmnt_data",222,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_blocked_tn")=222 + Set gtmtypes("sgmnt_data",223,"name")="sgmnt_data.n_jnl_fsyncs_tn" + Set gtmtypes("sgmnt_data",223,"off")=2504 + Set gtmtypes("sgmnt_data",223,"len")=8 + Set gtmtypes("sgmnt_data",223,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsyncs_tn")=223 + Set gtmtypes("sgmnt_data",224,"name")="sgmnt_data.n_jnl_fsync_tries_tn" + Set gtmtypes("sgmnt_data",224,"off")=2512 + Set gtmtypes("sgmnt_data",224,"len")=8 + Set gtmtypes("sgmnt_data",224,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_tries_tn")=224 + Set gtmtypes("sgmnt_data",225,"name")="sgmnt_data.n_jnl_fsync_recovers_tn" + Set gtmtypes("sgmnt_data",225,"off")=2520 + Set gtmtypes("sgmnt_data",225,"len")=8 + Set gtmtypes("sgmnt_data",225,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_recovers_tn")=225 + Set gtmtypes("sgmnt_data",226,"name")="sgmnt_data.n_db_fsyncs_tn" + Set gtmtypes("sgmnt_data",226,"off")=2528 + Set gtmtypes("sgmnt_data",226,"len")=8 + Set gtmtypes("sgmnt_data",226,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_tn")=226 + Set gtmtypes("sgmnt_data",227,"name")="sgmnt_data.n_db_fsyncs_in_crit_tn" + Set gtmtypes("sgmnt_data",227,"off")=2536 + Set gtmtypes("sgmnt_data",227,"len")=8 + Set gtmtypes("sgmnt_data",227,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_in_crit_tn")=227 + Set gtmtypes("sgmnt_data",228,"name")="sgmnt_data.n_dbsync_timers_tn" + Set gtmtypes("sgmnt_data",228,"off")=2544 + Set gtmtypes("sgmnt_data",228,"len")=8 + Set gtmtypes("sgmnt_data",228,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_dbsync_timers_tn")=228 + Set gtmtypes("sgmnt_data",229,"name")="sgmnt_data.n_dbsync_writes_tn" + Set gtmtypes("sgmnt_data",229,"off")=2552 + Set gtmtypes("sgmnt_data",229,"len")=8 + Set gtmtypes("sgmnt_data",229,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_dbsync_writes_tn")=229 + Set gtmtypes("sgmnt_data",230,"name")="sgmnt_data.mutex_queue_full_tn" + Set gtmtypes("sgmnt_data",230,"off")=2560 + Set gtmtypes("sgmnt_data",230,"len")=8 + Set gtmtypes("sgmnt_data",230,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","mutex_queue_full_tn")=230 + Set gtmtypes("sgmnt_data",231,"name")="sgmnt_data.wcb_bt_put_tn" + Set gtmtypes("sgmnt_data",231,"off")=2568 + Set gtmtypes("sgmnt_data",231,"len")=8 + Set gtmtypes("sgmnt_data",231,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bt_put_tn")=231 + Set gtmtypes("sgmnt_data",232,"name")="sgmnt_data.wcb_mutex_salvage_tn" + Set gtmtypes("sgmnt_data",232,"off")=2576 + Set gtmtypes("sgmnt_data",232,"len")=8 + Set gtmtypes("sgmnt_data",232,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_mutex_salvage_tn")=232 + Set gtmtypes("sgmnt_data",233,"name")="sgmnt_data.wcb_tp_grab_crit_tn" + Set gtmtypes("sgmnt_data",233,"off")=2584 + Set gtmtypes("sgmnt_data",233,"len")=8 + Set gtmtypes("sgmnt_data",233,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_tp_grab_crit_tn")=233 + Set gtmtypes("sgmnt_data",234,"name")="sgmnt_data.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("sgmnt_data",234,"off")=2592 + Set gtmtypes("sgmnt_data",234,"len")=8 + Set gtmtypes("sgmnt_data",234,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_nocr_invcr_tn")=234 + Set gtmtypes("sgmnt_data",235,"name")="sgmnt_data.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("sgmnt_data",235,"off")=2600 + Set gtmtypes("sgmnt_data",235,"len")=8 + Set gtmtypes("sgmnt_data",235,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_cr_invcr_tn")=235 + Set gtmtypes("sgmnt_data",236,"name")="sgmnt_data.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("sgmnt_data",236,"off")=2608 + Set gtmtypes("sgmnt_data",236,"len")=8 + Set gtmtypes("sgmnt_data",236,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_rip_wait_tn")=236 + Set gtmtypes("sgmnt_data",237,"name")="sgmnt_data.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("sgmnt_data",237,"off")=2616 + Set gtmtypes("sgmnt_data",237,"len")=8 + Set gtmtypes("sgmnt_data",237,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtyripwait_tn")=237 + Set gtmtypes("sgmnt_data",238,"name")="sgmnt_data.wcb_gds_rundown_tn" + Set gtmtypes("sgmnt_data",238,"off")=2624 + Set gtmtypes("sgmnt_data",238,"len")=8 + Set gtmtypes("sgmnt_data",238,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_gds_rundown_tn")=238 + Set gtmtypes("sgmnt_data",239,"name")="sgmnt_data.wcb_wcs_flu1_tn" + Set gtmtypes("sgmnt_data",239,"off")=2632 + Set gtmtypes("sgmnt_data",239,"len")=8 + Set gtmtypes("sgmnt_data",239,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wcs_flu1_tn")=239 + Set gtmtypes("sgmnt_data",240,"name")="sgmnt_data.wcb_mu_back_tn" + Set gtmtypes("sgmnt_data",240,"off")=2640 + Set gtmtypes("sgmnt_data",240,"len")=8 + Set gtmtypes("sgmnt_data",240,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_mu_back_tn")=240 + Set gtmtypes("sgmnt_data",241,"name")="sgmnt_data.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("sgmnt_data",241,"off")=2648 + Set gtmtypes("sgmnt_data",241,"len")=8 + Set gtmtypes("sgmnt_data",241,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirty_invcr_tn")=241 + Set gtmtypes("sgmnt_data",242,"name")="sgmnt_data.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("sgmnt_data",242,"off")=2656 + Set gtmtypes("sgmnt_data",242,"len")=8 + Set gtmtypes("sgmnt_data",242,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_wtfini_fail_tn")=242 + Set gtmtypes("sgmnt_data",243,"name")="sgmnt_data.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("sgmnt_data",243,"off")=2664 + Set gtmtypes("sgmnt_data",243,"len")=8 + Set gtmtypes("sgmnt_data",243,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_twin_stuck_tn")=243 + Set gtmtypes("sgmnt_data",244,"name")="sgmnt_data.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("sgmnt_data",244,"off")=2672 + Set gtmtypes("sgmnt_data",244,"len")=8 + Set gtmtypes("sgmnt_data",244,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_wrt_latch_stuck_tn")=244 + Set gtmtypes("sgmnt_data",245,"name")="sgmnt_data.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("sgmnt_data",245,"off")=2680 + Set gtmtypes("sgmnt_data",245,"len")=8 + Set gtmtypes("sgmnt_data",245,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_now_crit_tn")=245 + Set gtmtypes("sgmnt_data",246,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("sgmnt_data",246,"off")=2688 + Set gtmtypes("sgmnt_data",246,"len")=8 + Set gtmtypes("sgmnt_data",246,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index1_tn")=246 + Set gtmtypes("sgmnt_data",247,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("sgmnt_data",247,"off")=2696 + Set gtmtypes("sgmnt_data",247,"len")=8 + Set gtmtypes("sgmnt_data",247,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index2_tn")=247 + Set gtmtypes("sgmnt_data",248,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("sgmnt_data",248,"off")=2704 + Set gtmtypes("sgmnt_data",248,"len")=8 + Set gtmtypes("sgmnt_data",248,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch1_tn")=248 + Set gtmtypes("sgmnt_data",249,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("sgmnt_data",249,"off")=2712 + Set gtmtypes("sgmnt_data",249,"len")=8 + Set gtmtypes("sgmnt_data",249,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch2_tn")=249 + Set gtmtypes("sgmnt_data",250,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("sgmnt_data",250,"off")=2720 + Set gtmtypes("sgmnt_data",250,"len")=8 + Set gtmtypes("sgmnt_data",250,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch3_tn")=250 + Set gtmtypes("sgmnt_data",251,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("sgmnt_data",251,"off")=2728 + Set gtmtypes("sgmnt_data",251,"len")=8 + Set gtmtypes("sgmnt_data",251,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch1_tn")=251 + Set gtmtypes("sgmnt_data",252,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("sgmnt_data",252,"off")=2736 + Set gtmtypes("sgmnt_data",252,"len")=8 + Set gtmtypes("sgmnt_data",252,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch2_tn")=252 + Set gtmtypes("sgmnt_data",253,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("sgmnt_data",253,"off")=2744 + Set gtmtypes("sgmnt_data",253,"len")=8 + Set gtmtypes("sgmnt_data",253,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch3_tn")=253 + Set gtmtypes("sgmnt_data",254,"name")="sgmnt_data.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("sgmnt_data",254,"off")=2752 + Set gtmtypes("sgmnt_data",254,"len")=8 + Set gtmtypes("sgmnt_data",254,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtstart_bad_cr_tn")=254 + Set gtmtypes("sgmnt_data",255,"name")="sgmnt_data.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("sgmnt_data",255,"off")=2760 + Set gtmtypes("sgmnt_data",255,"len")=8 + Set gtmtypes("sgmnt_data",255,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtfini_bad_cr_tn")=255 + Set gtmtypes("sgmnt_data",256,"name")="sgmnt_data.wc_blocked_bt_get_tn" + Set gtmtypes("sgmnt_data",256,"off")=2768 + Set gtmtypes("sgmnt_data",256,"len")=8 + Set gtmtypes("sgmnt_data",256,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_bt_get_tn")=256 + Set gtmtypes("sgmnt_data",257,"name")="sgmnt_data.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("sgmnt_data",257,"off")=2776 + Set gtmtypes("sgmnt_data",257,"len")=8 + Set gtmtypes("sgmnt_data",257,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_cdb_sc_final_retry_tn")=257 + Set gtmtypes("sgmnt_data",258,"name")="sgmnt_data.wcb_bg_update_lckfail1_tn" + Set gtmtypes("sgmnt_data",258,"off")=2784 + Set gtmtypes("sgmnt_data",258,"len")=8 + Set gtmtypes("sgmnt_data",258,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail1_tn")=258 + Set gtmtypes("sgmnt_data",259,"name")="sgmnt_data.wcb_bg_update_lckfail2_tn" + Set gtmtypes("sgmnt_data",259,"off")=2792 + Set gtmtypes("sgmnt_data",259,"len")=8 + Set gtmtypes("sgmnt_data",259,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail2_tn")=259 + Set gtmtypes("sgmnt_data",260,"name")="sgmnt_data.wcb_wtstart_lckfail1_tn" + Set gtmtypes("sgmnt_data",260,"off")=2800 + Set gtmtypes("sgmnt_data",260,"len")=8 + Set gtmtypes("sgmnt_data",260,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail1_tn")=260 + Set gtmtypes("sgmnt_data",261,"name")="sgmnt_data.wcb_wtstart_lckfail2_tn" + Set gtmtypes("sgmnt_data",261,"off")=2808 + Set gtmtypes("sgmnt_data",261,"len")=8 + Set gtmtypes("sgmnt_data",261,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail2_tn")=261 + Set gtmtypes("sgmnt_data",262,"name")="sgmnt_data.wcb_wtstart_lckfail3_tn" + Set gtmtypes("sgmnt_data",262,"off")=2816 + Set gtmtypes("sgmnt_data",262,"len")=8 + Set gtmtypes("sgmnt_data",262,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail3_tn")=262 + Set gtmtypes("sgmnt_data",263,"name")="sgmnt_data.wcb_wtstart_lckfail4_tn" + Set gtmtypes("sgmnt_data",263,"off")=2824 + Set gtmtypes("sgmnt_data",263,"len")=8 + Set gtmtypes("sgmnt_data",263,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail4_tn")=263 + Set gtmtypes("sgmnt_data",264,"name")="sgmnt_data.wcb_wtfini_lckfail1_tn" + Set gtmtypes("sgmnt_data",264,"off")=2832 + Set gtmtypes("sgmnt_data",264,"len")=8 + Set gtmtypes("sgmnt_data",264,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail1_tn")=264 + Set gtmtypes("sgmnt_data",265,"name")="sgmnt_data.wcb_wtfini_lckfail2_tn" + Set gtmtypes("sgmnt_data",265,"off")=2840 + Set gtmtypes("sgmnt_data",265,"len")=8 + Set gtmtypes("sgmnt_data",265,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail2_tn")=265 + Set gtmtypes("sgmnt_data",266,"name")="sgmnt_data.wcb_wtfini_lckfail3_tn" + Set gtmtypes("sgmnt_data",266,"off")=2848 + Set gtmtypes("sgmnt_data",266,"len")=8 + Set gtmtypes("sgmnt_data",266,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail3_tn")=266 + Set gtmtypes("sgmnt_data",267,"name")="sgmnt_data.wcb_wtfini_lckfail4_tn" + Set gtmtypes("sgmnt_data",267,"off")=2856 + Set gtmtypes("sgmnt_data",267,"len")=8 + Set gtmtypes("sgmnt_data",267,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail4_tn")=267 + Set gtmtypes("sgmnt_data",268,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("sgmnt_data",268,"off")=2864 + Set gtmtypes("sgmnt_data",268,"len")=8 + Set gtmtypes("sgmnt_data",268,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck1_tn")=268 + Set gtmtypes("sgmnt_data",269,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("sgmnt_data",269,"off")=2872 + Set gtmtypes("sgmnt_data",269,"len")=8 + Set gtmtypes("sgmnt_data",269,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck2_tn")=269 + Set gtmtypes("sgmnt_data",270,"name")="sgmnt_data.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("sgmnt_data",270,"off")=2880 + Set gtmtypes("sgmnt_data",270,"len")=8 + Set gtmtypes("sgmnt_data",270,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_wbuf_dqd_tn")=270 + Set gtmtypes("sgmnt_data",271,"name")="sgmnt_data.dwngrd_refmts_syncio_tn" + Set gtmtypes("sgmnt_data",271,"off")=2888 + Set gtmtypes("sgmnt_data",271,"len")=8 + Set gtmtypes("sgmnt_data",271,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_syncio_tn")=271 + Set gtmtypes("sgmnt_data",272,"name")="sgmnt_data.dwngrd_refmts_asyncio_tn" + Set gtmtypes("sgmnt_data",272,"off")=2896 + Set gtmtypes("sgmnt_data",272,"len")=8 + Set gtmtypes("sgmnt_data",272,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_asyncio_tn")=272 + Set gtmtypes("sgmnt_data",273,"name")="sgmnt_data.shmpool_refmt_harvests_tn" + Set gtmtypes("sgmnt_data",273,"off")=2904 + Set gtmtypes("sgmnt_data",273,"len")=8 + Set gtmtypes("sgmnt_data",273,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_refmt_harvests_tn")=273 + Set gtmtypes("sgmnt_data",274,"name")="sgmnt_data.shmpool_recovery_tn" + Set gtmtypes("sgmnt_data",274,"off")=2912 + Set gtmtypes("sgmnt_data",274,"len")=8 + Set gtmtypes("sgmnt_data",274,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_recovery_tn")=274 + Set gtmtypes("sgmnt_data",275,"name")="sgmnt_data.shmpool_blkd_by_sdc_tn" + Set gtmtypes("sgmnt_data",275,"off")=2920 + Set gtmtypes("sgmnt_data",275,"len")=8 + Set gtmtypes("sgmnt_data",275,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_blkd_by_sdc_tn")=275 + Set gtmtypes("sgmnt_data",276,"name")="sgmnt_data.shmpool_alloc_bbflush_tn" + Set gtmtypes("sgmnt_data",276,"off")=2928 + Set gtmtypes("sgmnt_data",276,"len")=8 + Set gtmtypes("sgmnt_data",276,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_alloc_bbflush_tn")=276 + Set gtmtypes("sgmnt_data",277,"name")="sgmnt_data.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("sgmnt_data",277,"off")=2936 + Set gtmtypes("sgmnt_data",277,"len")=8 + Set gtmtypes("sgmnt_data",277,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_replaced_tn")=277 + Set gtmtypes("sgmnt_data",278,"name")="sgmnt_data.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("sgmnt_data",278,"off")=2944 + Set gtmtypes("sgmnt_data",278,"len")=8 + Set gtmtypes("sgmnt_data",278,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_io_complete_tn")=278 + Set gtmtypes("sgmnt_data",279,"name")="sgmnt_data.refmt_hvst_blk_kept_tn" + Set gtmtypes("sgmnt_data",279,"off")=2952 + Set gtmtypes("sgmnt_data",279,"len")=8 + Set gtmtypes("sgmnt_data",279,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_kept_tn")=279 + Set gtmtypes("sgmnt_data",280,"name")="sgmnt_data.refmt_hvst_blk_ignored_tn" + Set gtmtypes("sgmnt_data",280,"off")=2960 + Set gtmtypes("sgmnt_data",280,"len")=8 + Set gtmtypes("sgmnt_data",280,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_ignored_tn")=280 + Set gtmtypes("sgmnt_data",281,"name")="sgmnt_data.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("sgmnt_data",281,"off")=2968 + Set gtmtypes("sgmnt_data",281,"len")=8 + Set gtmtypes("sgmnt_data",281,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_freed_tn")=281 + Set gtmtypes("sgmnt_data",282,"name")="sgmnt_data.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("sgmnt_data",282,"off")=2976 + Set gtmtypes("sgmnt_data",282,"len")=8 + Set gtmtypes("sgmnt_data",282,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_kept_tn")=282 + Set gtmtypes("sgmnt_data",283,"name")="sgmnt_data.active_lvl_trigger_tn" + Set gtmtypes("sgmnt_data",283,"off")=2984 + Set gtmtypes("sgmnt_data",283,"len")=8 + Set gtmtypes("sgmnt_data",283,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","active_lvl_trigger_tn")=283 + Set gtmtypes("sgmnt_data",284,"name")="sgmnt_data.new_buff_tn" + Set gtmtypes("sgmnt_data",284,"off")=2992 + Set gtmtypes("sgmnt_data",284,"len")=8 + Set gtmtypes("sgmnt_data",284,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","new_buff_tn")=284 + Set gtmtypes("sgmnt_data",285,"name")="sgmnt_data.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("sgmnt_data",285,"off")=3000 + Set gtmtypes("sgmnt_data",285,"len")=8 + Set gtmtypes("sgmnt_data",285,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_in_crit_tn")=285 + Set gtmtypes("sgmnt_data",286,"name")="sgmnt_data.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("sgmnt_data",286,"off")=3008 + Set gtmtypes("sgmnt_data",286,"len")=8 + Set gtmtypes("sgmnt_data",286,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_no_crit_tn")=286 + Set gtmtypes("sgmnt_data",287,"name")="sgmnt_data.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("sgmnt_data",287,"off")=3016 + Set gtmtypes("sgmnt_data",287,"len")=8 + Set gtmtypes("sgmnt_data",287,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_pidcnt_tn")=287 + Set gtmtypes("sgmnt_data",288,"name")="sgmnt_data.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("sgmnt_data",288,"off")=3024 + Set gtmtypes("sgmnt_data",288,"len")=8 + Set gtmtypes("sgmnt_data",288,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_intend_wait_tn")=288 + Set gtmtypes("sgmnt_data",289,"name")="sgmnt_data.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("sgmnt_data",289,"off")=3032 + Set gtmtypes("sgmnt_data",289,"len")=8 + Set gtmtypes("sgmnt_data",289,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_phase2_clnup_tn")=289 + Set gtmtypes("sgmnt_data",290,"name")="sgmnt_data.wcb_phase2_commit_wait_tn" + Set gtmtypes("sgmnt_data",290,"off")=3040 + Set gtmtypes("sgmnt_data",290,"len")=8 + Set gtmtypes("sgmnt_data",290,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_phase2_commit_wait_tn")=290 + Set gtmtypes("sgmnt_data",291,"name")="sgmnt_data.recompute_upd_array_calls_tn" + Set gtmtypes("sgmnt_data",291,"off")=3048 + Set gtmtypes("sgmnt_data",291,"len")=8 + Set gtmtypes("sgmnt_data",291,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_calls_tn")=291 + Set gtmtypes("sgmnt_data",292,"name")="sgmnt_data.recompute_upd_array_rip_tn" + Set gtmtypes("sgmnt_data",292,"off")=3056 + Set gtmtypes("sgmnt_data",292,"len")=8 + Set gtmtypes("sgmnt_data",292,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rip_tn")=292 + Set gtmtypes("sgmnt_data",293,"name")="sgmnt_data.recompute_upd_array_in_tend_tn" + Set gtmtypes("sgmnt_data",293,"off")=3064 + Set gtmtypes("sgmnt_data",293,"len")=8 + Set gtmtypes("sgmnt_data",293,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_in_tend_tn")=293 + Set gtmtypes("sgmnt_data",294,"name")="sgmnt_data.recompute_upd_array_search_blk_tn" + Set gtmtypes("sgmnt_data",294,"off")=3072 + Set gtmtypes("sgmnt_data",294,"len")=8 + Set gtmtypes("sgmnt_data",294,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_search_blk_tn")=294 + Set gtmtypes("sgmnt_data",295,"name")="sgmnt_data.recompute_upd_array_new_rec_tn" + Set gtmtypes("sgmnt_data",295,"off")=3080 + Set gtmtypes("sgmnt_data",295,"len")=8 + Set gtmtypes("sgmnt_data",295,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_new_rec_tn")=295 + Set gtmtypes("sgmnt_data",296,"name")="sgmnt_data.recompute_upd_array_rec_size_tn" + Set gtmtypes("sgmnt_data",296,"off")=3088 + Set gtmtypes("sgmnt_data",296,"len")=8 + Set gtmtypes("sgmnt_data",296,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_size_tn")=296 + Set gtmtypes("sgmnt_data",297,"name")="sgmnt_data.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("sgmnt_data",297,"off")=3096 + Set gtmtypes("sgmnt_data",297,"len")=8 + Set gtmtypes("sgmnt_data",297,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_cmpc_tn")=297 + Set gtmtypes("sgmnt_data",298,"name")="sgmnt_data.recompute_upd_array_blk_fini_tn" + Set gtmtypes("sgmnt_data",298,"off")=3104 + Set gtmtypes("sgmnt_data",298,"len")=8 + Set gtmtypes("sgmnt_data",298,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_fini_tn")=298 + Set gtmtypes("sgmnt_data",299,"name")="sgmnt_data.recompute_upd_array_blk_split_tn" + Set gtmtypes("sgmnt_data",299,"off")=3112 + Set gtmtypes("sgmnt_data",299,"len")=8 + Set gtmtypes("sgmnt_data",299,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_split_tn")=299 + Set gtmtypes("sgmnt_data",300,"name")="sgmnt_data.t_qread_ripsleep_cnt_tn" + Set gtmtypes("sgmnt_data",300,"off")=3120 + Set gtmtypes("sgmnt_data",300,"len")=8 + Set gtmtypes("sgmnt_data",300,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_cnt_tn")=300 + Set gtmtypes("sgmnt_data",301,"name")="sgmnt_data.t_qread_ripsleep_nblks_tn" + Set gtmtypes("sgmnt_data",301,"off")=3128 + Set gtmtypes("sgmnt_data",301,"len")=8 + Set gtmtypes("sgmnt_data",301,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_nblks_tn")=301 + Set gtmtypes("sgmnt_data",302,"name")="sgmnt_data.bg_trc_rec_tn_filler" + Set gtmtypes("sgmnt_data",302,"off")=3136 + Set gtmtypes("sgmnt_data",302,"len")=112 + Set gtmtypes("sgmnt_data",302,"type")="char" + Set gtmtypfldindx("sgmnt_data","bg_trc_rec_tn_filler")=302 + Set gtmtypes("sgmnt_data",303,"name")="sgmnt_data.total_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",303,"off")=3248 + Set gtmtypes("sgmnt_data",303,"len")=4 + Set gtmtypes("sgmnt_data",303,"type")="int" + Set gtmtypfldindx("sgmnt_data","total_buffer_flush_cntr")=303 + Set gtmtypes("sgmnt_data",304,"name")="sgmnt_data.bufct_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",304,"off")=3252 + Set gtmtypes("sgmnt_data",304,"len")=4 + Set gtmtypes("sgmnt_data",304,"type")="int" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_cntr")=304 + Set gtmtypes("sgmnt_data",305,"name")="sgmnt_data.bufct_buffer_flush_loop_cntr" + Set gtmtypes("sgmnt_data",305,"off")=3256 + Set gtmtypes("sgmnt_data",305,"len")=4 + Set gtmtypes("sgmnt_data",305,"type")="int" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_loop_cntr")=305 + Set gtmtypes("sgmnt_data",306,"name")="sgmnt_data.wrt_calls_cntr" + Set gtmtypes("sgmnt_data",306,"off")=3260 + Set gtmtypes("sgmnt_data",306,"len")=4 + Set gtmtypes("sgmnt_data",306,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_calls_cntr")=306 + Set gtmtypes("sgmnt_data",307,"name")="sgmnt_data.wrt_count_cntr" + Set gtmtypes("sgmnt_data",307,"off")=3264 + Set gtmtypes("sgmnt_data",307,"len")=4 + Set gtmtypes("sgmnt_data",307,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_count_cntr")=307 + Set gtmtypes("sgmnt_data",308,"name")="sgmnt_data.wrt_blocked_cntr" + Set gtmtypes("sgmnt_data",308,"off")=3268 + Set gtmtypes("sgmnt_data",308,"len")=4 + Set gtmtypes("sgmnt_data",308,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_blocked_cntr")=308 + Set gtmtypes("sgmnt_data",309,"name")="sgmnt_data.wrt_busy_cntr" + Set gtmtypes("sgmnt_data",309,"off")=3272 + Set gtmtypes("sgmnt_data",309,"len")=4 + Set gtmtypes("sgmnt_data",309,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_busy_cntr")=309 + Set gtmtypes("sgmnt_data",310,"name")="sgmnt_data.wrt_noblks_wrtn_cntr" + Set gtmtypes("sgmnt_data",310,"off")=3276 + Set gtmtypes("sgmnt_data",310,"len")=4 + Set gtmtypes("sgmnt_data",310,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_noblks_wrtn_cntr")=310 + Set gtmtypes("sgmnt_data",311,"name")="sgmnt_data.reserved_bgtrcrec1_cntr" + Set gtmtypes("sgmnt_data",311,"off")=3280 + Set gtmtypes("sgmnt_data",311,"len")=4 + Set gtmtypes("sgmnt_data",311,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec1_cntr")=311 + Set gtmtypes("sgmnt_data",312,"name")="sgmnt_data.reserved_bgtrcrec2_cntr" + Set gtmtypes("sgmnt_data",312,"off")=3284 + Set gtmtypes("sgmnt_data",312,"len")=4 + Set gtmtypes("sgmnt_data",312,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec2_cntr")=312 + Set gtmtypes("sgmnt_data",313,"name")="sgmnt_data.reserved_bgtrcrec3_cntr" + Set gtmtypes("sgmnt_data",313,"off")=3288 + Set gtmtypes("sgmnt_data",313,"len")=4 + Set gtmtypes("sgmnt_data",313,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec3_cntr")=313 + Set gtmtypes("sgmnt_data",314,"name")="sgmnt_data.lost_block_recovery_cntr" + Set gtmtypes("sgmnt_data",314,"off")=3292 + Set gtmtypes("sgmnt_data",314,"len")=4 + Set gtmtypes("sgmnt_data",314,"type")="int" + Set gtmtypfldindx("sgmnt_data","lost_block_recovery_cntr")=314 + Set gtmtypes("sgmnt_data",315,"name")="sgmnt_data.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("sgmnt_data",315,"off")=3296 + Set gtmtypes("sgmnt_data",315,"len")=4 + Set gtmtypes("sgmnt_data",315,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_onln_rlbk_cntr")=315 + Set gtmtypes("sgmnt_data",316,"name")="sgmnt_data.stale_cntr" + Set gtmtypes("sgmnt_data",316,"off")=3300 + Set gtmtypes("sgmnt_data",316,"len")=4 + Set gtmtypes("sgmnt_data",316,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_cntr")=316 + Set gtmtypes("sgmnt_data",317,"name")="sgmnt_data.starved_cntr" + Set gtmtypes("sgmnt_data",317,"off")=3304 + Set gtmtypes("sgmnt_data",317,"len")=4 + Set gtmtypes("sgmnt_data",317,"type")="int" + Set gtmtypfldindx("sgmnt_data","starved_cntr")=317 + Set gtmtypes("sgmnt_data",318,"name")="sgmnt_data.stale_timer_started_cntr" + Set gtmtypes("sgmnt_data",318,"off")=3308 + Set gtmtypes("sgmnt_data",318,"len")=4 + Set gtmtypes("sgmnt_data",318,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_timer_started_cntr")=318 + Set gtmtypes("sgmnt_data",319,"name")="sgmnt_data.stale_timer_pop_cntr" + Set gtmtypes("sgmnt_data",319,"off")=3312 + Set gtmtypes("sgmnt_data",319,"len")=4 + Set gtmtypes("sgmnt_data",319,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_timer_pop_cntr")=319 + Set gtmtypes("sgmnt_data",320,"name")="sgmnt_data.stale_process_defer_cntr" + Set gtmtypes("sgmnt_data",320,"off")=3316 + Set gtmtypes("sgmnt_data",320,"len")=4 + Set gtmtypes("sgmnt_data",320,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_process_defer_cntr")=320 + Set gtmtypes("sgmnt_data",321,"name")="sgmnt_data.stale_defer_processed_cntr" + Set gtmtypes("sgmnt_data",321,"off")=3320 + Set gtmtypes("sgmnt_data",321,"len")=4 + Set gtmtypes("sgmnt_data",321,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_defer_processed_cntr")=321 + Set gtmtypes("sgmnt_data",322,"name")="sgmnt_data.spcfc_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",322,"off")=3324 + Set gtmtypes("sgmnt_data",322,"len")=4 + Set gtmtypes("sgmnt_data",322,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_cntr")=322 + Set gtmtypes("sgmnt_data",323,"name")="sgmnt_data.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("sgmnt_data",323,"off")=3328 + Set gtmtypes("sgmnt_data",323,"len")=4 + Set gtmtypes("sgmnt_data",323,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_loop_cntr")=323 + Set gtmtypes("sgmnt_data",324,"name")="sgmnt_data.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("sgmnt_data",324,"off")=3332 + Set gtmtypes("sgmnt_data",324,"len")=4 + Set gtmtypes("sgmnt_data",324,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_retries_cntr")=324 + Set gtmtypes("sgmnt_data",325,"name")="sgmnt_data.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("sgmnt_data",325,"off")=3336 + Set gtmtypes("sgmnt_data",325,"len")=4 + Set gtmtypes("sgmnt_data",325,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flushed_during_lockwait_cntr")=325 + Set gtmtypes("sgmnt_data",326,"name")="sgmnt_data.tp_crit_retries_cntr" + Set gtmtypes("sgmnt_data",326,"off")=3340 + Set gtmtypes("sgmnt_data",326,"len")=4 + Set gtmtypes("sgmnt_data",326,"type")="int" + Set gtmtypfldindx("sgmnt_data","tp_crit_retries_cntr")=326 + Set gtmtypes("sgmnt_data",327,"name")="sgmnt_data.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("sgmnt_data",327,"off")=3344 + Set gtmtypes("sgmnt_data",327,"len")=4 + Set gtmtypes("sgmnt_data",327,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_flush_dirty_cntr")=327 + Set gtmtypes("sgmnt_data",328,"name")="sgmnt_data.db_csh_getn_rip_wait_cntr" + Set gtmtypes("sgmnt_data",328,"off")=3348 + Set gtmtypes("sgmnt_data",328,"len")=4 + Set gtmtypes("sgmnt_data",328,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_rip_wait_cntr")=328 + Set gtmtypes("sgmnt_data",329,"name")="sgmnt_data.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("sgmnt_data",329,"off")=3352 + Set gtmtypes("sgmnt_data",329,"len")=4 + Set gtmtypes("sgmnt_data",329,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_buf_owner_stuck_cntr")=329 + Set gtmtypes("sgmnt_data",330,"name")="sgmnt_data.db_csh_getn_out_of_design_cntr" + Set gtmtypes("sgmnt_data",330,"off")=3356 + Set gtmtypes("sgmnt_data",330,"len")=4 + Set gtmtypes("sgmnt_data",330,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_out_of_design_cntr")=330 + Set gtmtypes("sgmnt_data",331,"name")="sgmnt_data.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("sgmnt_data",331,"off")=3360 + Set gtmtypes("sgmnt_data",331,"len")=4 + Set gtmtypes("sgmnt_data",331,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_buf_owner_stuck_cntr")=331 + Set gtmtypes("sgmnt_data",332,"name")="sgmnt_data.t_qread_out_of_design_cntr" + Set gtmtypes("sgmnt_data",332,"off")=3364 + Set gtmtypes("sgmnt_data",332,"len")=4 + Set gtmtypes("sgmnt_data",332,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_out_of_design_cntr")=332 + Set gtmtypes("sgmnt_data",333,"name")="sgmnt_data.bt_put_flush_dirty_cntr" + Set gtmtypes("sgmnt_data",333,"off")=3368 + Set gtmtypes("sgmnt_data",333,"len")=4 + Set gtmtypes("sgmnt_data",333,"type")="int" + Set gtmtypfldindx("sgmnt_data","bt_put_flush_dirty_cntr")=333 + Set gtmtypes("sgmnt_data",334,"name")="sgmnt_data.mlock_wakeups_cntr" + Set gtmtypes("sgmnt_data",334,"off")=3372 + Set gtmtypes("sgmnt_data",334,"len")=4 + Set gtmtypes("sgmnt_data",334,"type")="int" + Set gtmtypfldindx("sgmnt_data","mlock_wakeups_cntr")=334 + Set gtmtypes("sgmnt_data",335,"name")="sgmnt_data.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("sgmnt_data",335,"off")=3376 + Set gtmtypes("sgmnt_data",335,"len")=4 + Set gtmtypes("sgmnt_data",335,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_recover_invoked_cntr")=335 + Set gtmtypes("sgmnt_data",336,"name")="sgmnt_data.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("sgmnt_data",336,"off")=3380 + Set gtmtypes("sgmnt_data",336,"len")=4 + Set gtmtypes("sgmnt_data",336,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_verify_passed_cntr")=336 + Set gtmtypes("sgmnt_data",337,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("sgmnt_data",337,"off")=3384 + Set gtmtypes("sgmnt_data",337,"len")=4 + Set gtmtypes("sgmnt_data",337,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=337 + Set gtmtypes("sgmnt_data",338,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("sgmnt_data",338,"off")=3388 + Set gtmtypes("sgmnt_data",338,"len")=4 + Set gtmtypes("sgmnt_data",338,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=338 + Set gtmtypes("sgmnt_data",339,"name")="sgmnt_data.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("sgmnt_data",339,"off")=3392 + Set gtmtypes("sgmnt_data",339,"len")=4 + Set gtmtypes("sgmnt_data",339,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_loopexceed_cntr")=339 + Set gtmtypes("sgmnt_data",340,"name")="sgmnt_data.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("sgmnt_data",340,"off")=3396 + Set gtmtypes("sgmnt_data",340,"len")=4 + Set gtmtypes("sgmnt_data",340,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=340 + Set gtmtypes("sgmnt_data",341,"name")="sgmnt_data.wc_blocked_db_csh_get_cntr" + Set gtmtypes("sgmnt_data",341,"off")=3400 + Set gtmtypes("sgmnt_data",341,"len")=4 + Set gtmtypes("sgmnt_data",341,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_get_cntr")=341 + Set gtmtypes("sgmnt_data",342,"name")="sgmnt_data.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("sgmnt_data",342,"off")=3404 + Set gtmtypes("sgmnt_data",342,"len")=4 + Set gtmtypes("sgmnt_data",342,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_wcsgetspace_cntr")=342 + Set gtmtypes("sgmnt_data",343,"name")="sgmnt_data.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("sgmnt_data",343,"off")=3408 + Set gtmtypes("sgmnt_data",343,"len")=4 + Set gtmtypes("sgmnt_data",343,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_t1_cntr")=343 + Set gtmtypes("sgmnt_data",344,"name")="sgmnt_data.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("sgmnt_data",344,"off")=3412 + Set gtmtypes("sgmnt_data",344,"len")=4 + Set gtmtypes("sgmnt_data",344,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_bitmap_cntr")=344 + Set gtmtypes("sgmnt_data",345,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("sgmnt_data",345,"off")=3416 + Set gtmtypes("sgmnt_data",345,"len")=4 + Set gtmtypes("sgmnt_data",345,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_cwset_cntr")=345 + Set gtmtypes("sgmnt_data",346,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("sgmnt_data",346,"off")=3420 + Set gtmtypes("sgmnt_data",346,"len")=4 + Set gtmtypes("sgmnt_data",346,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_wcsflu_cntr")=346 + Set gtmtypes("sgmnt_data",347,"name")="sgmnt_data.wc_blocked_t_end_hist_cntr" + Set gtmtypes("sgmnt_data",347,"off")=3424 + Set gtmtypes("sgmnt_data",347,"len")=4 + Set gtmtypes("sgmnt_data",347,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist_cntr")=347 + Set gtmtypes("sgmnt_data",348,"name")="sgmnt_data.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("sgmnt_data",348,"off")=3428 + Set gtmtypes("sgmnt_data",348,"len")=4 + Set gtmtypes("sgmnt_data",348,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nullbt_cntr")=348 + Set gtmtypes("sgmnt_data",349,"name")="sgmnt_data.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",349,"off")=3432 + Set gtmtypes("sgmnt_data",349,"len")=4 + Set gtmtypes("sgmnt_data",349,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nonnullbt_cntr")=349 + Set gtmtypes("sgmnt_data",350,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("sgmnt_data",350,"off")=3436 + Set gtmtypes("sgmnt_data",350,"len")=4 + Set gtmtypes("sgmnt_data",350,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nullbt_cntr")=350 + Set gtmtypes("sgmnt_data",351,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",351,"off")=3440 + Set gtmtypes("sgmnt_data",351,"len")=4 + Set gtmtypes("sgmnt_data",351,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nonnullbt_cntr")=351 + Set gtmtypes("sgmnt_data",352,"name")="sgmnt_data.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("sgmnt_data",352,"off")=3444 + Set gtmtypes("sgmnt_data",352,"len")=4 + Set gtmtypes("sgmnt_data",352,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_cwset_cntr")=352 + Set gtmtypes("sgmnt_data",353,"name")="sgmnt_data.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("sgmnt_data",353,"off")=3448 + Set gtmtypes("sgmnt_data",353,"len")=4 + Set gtmtypes("sgmnt_data",353,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_wcsflu_cntr")=353 + Set gtmtypes("sgmnt_data",354,"name")="sgmnt_data.db_csh_get_too_many_loops_cntr" + Set gtmtypes("sgmnt_data",354,"off")=3452 + Set gtmtypes("sgmnt_data",354,"len")=4 + Set gtmtypes("sgmnt_data",354,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_get_too_many_loops_cntr")=354 + Set gtmtypes("sgmnt_data",355,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("sgmnt_data",355,"off")=3456 + Set gtmtypes("sgmnt_data",355,"len")=4 + Set gtmtypes("sgmnt_data",355,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nullbt_cntr")=355 + Set gtmtypes("sgmnt_data",356,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",356,"off")=3460 + Set gtmtypes("sgmnt_data",356,"len")=4 + Set gtmtypes("sgmnt_data",356,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nonnullbt_cntr")=356 + Set gtmtypes("sgmnt_data",357,"name")="sgmnt_data.jnl_blocked_writer_lost_cntr" + Set gtmtypes("sgmnt_data",357,"off")=3464 + Set gtmtypes("sgmnt_data",357,"len")=4 + Set gtmtypes("sgmnt_data",357,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_lost_cntr")=357 + Set gtmtypes("sgmnt_data",358,"name")="sgmnt_data.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("sgmnt_data",358,"off")=3468 + Set gtmtypes("sgmnt_data",358,"len")=4 + Set gtmtypes("sgmnt_data",358,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_stuck_cntr")=358 + Set gtmtypes("sgmnt_data",359,"name")="sgmnt_data.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("sgmnt_data",359,"off")=3472 + Set gtmtypes("sgmnt_data",359,"len")=4 + Set gtmtypes("sgmnt_data",359,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_blocked_cntr")=359 + Set gtmtypes("sgmnt_data",360,"name")="sgmnt_data.n_jnl_fsyncs_cntr" + Set gtmtypes("sgmnt_data",360,"off")=3476 + Set gtmtypes("sgmnt_data",360,"len")=4 + Set gtmtypes("sgmnt_data",360,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsyncs_cntr")=360 + Set gtmtypes("sgmnt_data",361,"name")="sgmnt_data.n_jnl_fsync_tries_cntr" + Set gtmtypes("sgmnt_data",361,"off")=3480 + Set gtmtypes("sgmnt_data",361,"len")=4 + Set gtmtypes("sgmnt_data",361,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_tries_cntr")=361 + Set gtmtypes("sgmnt_data",362,"name")="sgmnt_data.n_jnl_fsync_recovers_cntr" + Set gtmtypes("sgmnt_data",362,"off")=3484 + Set gtmtypes("sgmnt_data",362,"len")=4 + Set gtmtypes("sgmnt_data",362,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_recovers_cntr")=362 + Set gtmtypes("sgmnt_data",363,"name")="sgmnt_data.n_db_fsyncs_cntr" + Set gtmtypes("sgmnt_data",363,"off")=3488 + Set gtmtypes("sgmnt_data",363,"len")=4 + Set gtmtypes("sgmnt_data",363,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_cntr")=363 + Set gtmtypes("sgmnt_data",364,"name")="sgmnt_data.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("sgmnt_data",364,"off")=3492 + Set gtmtypes("sgmnt_data",364,"len")=4 + Set gtmtypes("sgmnt_data",364,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_in_crit_cntr")=364 + Set gtmtypes("sgmnt_data",365,"name")="sgmnt_data.n_dbsync_timers_cntr" + Set gtmtypes("sgmnt_data",365,"off")=3496 + Set gtmtypes("sgmnt_data",365,"len")=4 + Set gtmtypes("sgmnt_data",365,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_dbsync_timers_cntr")=365 + Set gtmtypes("sgmnt_data",366,"name")="sgmnt_data.n_dbsync_writes_cntr" + Set gtmtypes("sgmnt_data",366,"off")=3500 + Set gtmtypes("sgmnt_data",366,"len")=4 + Set gtmtypes("sgmnt_data",366,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_dbsync_writes_cntr")=366 + Set gtmtypes("sgmnt_data",367,"name")="sgmnt_data.mutex_queue_full_cntr" + Set gtmtypes("sgmnt_data",367,"off")=3504 + Set gtmtypes("sgmnt_data",367,"len")=4 + Set gtmtypes("sgmnt_data",367,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_queue_full_cntr")=367 + Set gtmtypes("sgmnt_data",368,"name")="sgmnt_data.wcb_bt_put_cntr" + Set gtmtypes("sgmnt_data",368,"off")=3508 + Set gtmtypes("sgmnt_data",368,"len")=4 + Set gtmtypes("sgmnt_data",368,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bt_put_cntr")=368 + Set gtmtypes("sgmnt_data",369,"name")="sgmnt_data.wcb_mutex_salvage_cntr" + Set gtmtypes("sgmnt_data",369,"off")=3512 + Set gtmtypes("sgmnt_data",369,"len")=4 + Set gtmtypes("sgmnt_data",369,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_mutex_salvage_cntr")=369 + Set gtmtypes("sgmnt_data",370,"name")="sgmnt_data.wcb_tp_grab_crit_cntr" + Set gtmtypes("sgmnt_data",370,"off")=3516 + Set gtmtypes("sgmnt_data",370,"len")=4 + Set gtmtypes("sgmnt_data",370,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_tp_grab_crit_cntr")=370 + Set gtmtypes("sgmnt_data",371,"name")="sgmnt_data.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("sgmnt_data",371,"off")=3520 + Set gtmtypes("sgmnt_data",371,"len")=4 + Set gtmtypes("sgmnt_data",371,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_nocr_invcr_cntr")=371 + Set gtmtypes("sgmnt_data",372,"name")="sgmnt_data.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("sgmnt_data",372,"off")=3524 + Set gtmtypes("sgmnt_data",372,"len")=4 + Set gtmtypes("sgmnt_data",372,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_cr_invcr_cntr")=372 + Set gtmtypes("sgmnt_data",373,"name")="sgmnt_data.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("sgmnt_data",373,"off")=3528 + Set gtmtypes("sgmnt_data",373,"len")=4 + Set gtmtypes("sgmnt_data",373,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_rip_wait_cntr")=373 + Set gtmtypes("sgmnt_data",374,"name")="sgmnt_data.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("sgmnt_data",374,"off")=3532 + Set gtmtypes("sgmnt_data",374,"len")=4 + Set gtmtypes("sgmnt_data",374,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtyripwait_cntr")=374 + Set gtmtypes("sgmnt_data",375,"name")="sgmnt_data.wcb_gds_rundown_cntr" + Set gtmtypes("sgmnt_data",375,"off")=3536 + Set gtmtypes("sgmnt_data",375,"len")=4 + Set gtmtypes("sgmnt_data",375,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_gds_rundown_cntr")=375 + Set gtmtypes("sgmnt_data",376,"name")="sgmnt_data.wcb_wcs_flu1_cntr" + Set gtmtypes("sgmnt_data",376,"off")=3540 + Set gtmtypes("sgmnt_data",376,"len")=4 + Set gtmtypes("sgmnt_data",376,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wcs_flu1_cntr")=376 + Set gtmtypes("sgmnt_data",377,"name")="sgmnt_data.wcb_mu_back_cntr" + Set gtmtypes("sgmnt_data",377,"off")=3544 + Set gtmtypes("sgmnt_data",377,"len")=4 + Set gtmtypes("sgmnt_data",377,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_mu_back_cntr")=377 + Set gtmtypes("sgmnt_data",378,"name")="sgmnt_data.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("sgmnt_data",378,"off")=3548 + Set gtmtypes("sgmnt_data",378,"len")=4 + Set gtmtypes("sgmnt_data",378,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirty_invcr_cntr")=378 + Set gtmtypes("sgmnt_data",379,"name")="sgmnt_data.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("sgmnt_data",379,"off")=3552 + Set gtmtypes("sgmnt_data",379,"len")=4 + Set gtmtypes("sgmnt_data",379,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_wtfini_fail_cntr")=379 + Set gtmtypes("sgmnt_data",380,"name")="sgmnt_data.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("sgmnt_data",380,"off")=3556 + Set gtmtypes("sgmnt_data",380,"len")=4 + Set gtmtypes("sgmnt_data",380,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_twin_stuck_cntr")=380 + Set gtmtypes("sgmnt_data",381,"name")="sgmnt_data.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("sgmnt_data",381,"off")=3560 + Set gtmtypes("sgmnt_data",381,"len")=4 + Set gtmtypes("sgmnt_data",381,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_wrt_latch_stuck_cntr")=381 + Set gtmtypes("sgmnt_data",382,"name")="sgmnt_data.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("sgmnt_data",382,"off")=3564 + Set gtmtypes("sgmnt_data",382,"len")=4 + Set gtmtypes("sgmnt_data",382,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_now_crit_cntr")=382 + Set gtmtypes("sgmnt_data",383,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("sgmnt_data",383,"off")=3568 + Set gtmtypes("sgmnt_data",383,"len")=4 + Set gtmtypes("sgmnt_data",383,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index1_cntr")=383 + Set gtmtypes("sgmnt_data",384,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("sgmnt_data",384,"off")=3572 + Set gtmtypes("sgmnt_data",384,"len")=4 + Set gtmtypes("sgmnt_data",384,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index2_cntr")=384 + Set gtmtypes("sgmnt_data",385,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("sgmnt_data",385,"off")=3576 + Set gtmtypes("sgmnt_data",385,"len")=4 + Set gtmtypes("sgmnt_data",385,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch1_cntr")=385 + Set gtmtypes("sgmnt_data",386,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("sgmnt_data",386,"off")=3580 + Set gtmtypes("sgmnt_data",386,"len")=4 + Set gtmtypes("sgmnt_data",386,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch2_cntr")=386 + Set gtmtypes("sgmnt_data",387,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("sgmnt_data",387,"off")=3584 + Set gtmtypes("sgmnt_data",387,"len")=4 + Set gtmtypes("sgmnt_data",387,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch3_cntr")=387 + Set gtmtypes("sgmnt_data",388,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("sgmnt_data",388,"off")=3588 + Set gtmtypes("sgmnt_data",388,"len")=4 + Set gtmtypes("sgmnt_data",388,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch1_cntr")=388 + Set gtmtypes("sgmnt_data",389,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("sgmnt_data",389,"off")=3592 + Set gtmtypes("sgmnt_data",389,"len")=4 + Set gtmtypes("sgmnt_data",389,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch2_cntr")=389 + Set gtmtypes("sgmnt_data",390,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("sgmnt_data",390,"off")=3596 + Set gtmtypes("sgmnt_data",390,"len")=4 + Set gtmtypes("sgmnt_data",390,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch3_cntr")=390 + Set gtmtypes("sgmnt_data",391,"name")="sgmnt_data.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("sgmnt_data",391,"off")=3600 + Set gtmtypes("sgmnt_data",391,"len")=4 + Set gtmtypes("sgmnt_data",391,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtstart_bad_cr_cntr")=391 + Set gtmtypes("sgmnt_data",392,"name")="sgmnt_data.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("sgmnt_data",392,"off")=3604 + Set gtmtypes("sgmnt_data",392,"len")=4 + Set gtmtypes("sgmnt_data",392,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtfini_bad_cr_cntr")=392 + Set gtmtypes("sgmnt_data",393,"name")="sgmnt_data.wc_blocked_bt_get_cntr" + Set gtmtypes("sgmnt_data",393,"off")=3608 + Set gtmtypes("sgmnt_data",393,"len")=4 + Set gtmtypes("sgmnt_data",393,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_bt_get_cntr")=393 + Set gtmtypes("sgmnt_data",394,"name")="sgmnt_data.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("sgmnt_data",394,"off")=3612 + Set gtmtypes("sgmnt_data",394,"len")=4 + Set gtmtypes("sgmnt_data",394,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_cdb_sc_final_retry_cntr")=394 + Set gtmtypes("sgmnt_data",395,"name")="sgmnt_data.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("sgmnt_data",395,"off")=3616 + Set gtmtypes("sgmnt_data",395,"len")=4 + Set gtmtypes("sgmnt_data",395,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail1_cntr")=395 + Set gtmtypes("sgmnt_data",396,"name")="sgmnt_data.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("sgmnt_data",396,"off")=3620 + Set gtmtypes("sgmnt_data",396,"len")=4 + Set gtmtypes("sgmnt_data",396,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail2_cntr")=396 + Set gtmtypes("sgmnt_data",397,"name")="sgmnt_data.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("sgmnt_data",397,"off")=3624 + Set gtmtypes("sgmnt_data",397,"len")=4 + Set gtmtypes("sgmnt_data",397,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail1_cntr")=397 + Set gtmtypes("sgmnt_data",398,"name")="sgmnt_data.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("sgmnt_data",398,"off")=3628 + Set gtmtypes("sgmnt_data",398,"len")=4 + Set gtmtypes("sgmnt_data",398,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail2_cntr")=398 + Set gtmtypes("sgmnt_data",399,"name")="sgmnt_data.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("sgmnt_data",399,"off")=3632 + Set gtmtypes("sgmnt_data",399,"len")=4 + Set gtmtypes("sgmnt_data",399,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail3_cntr")=399 + Set gtmtypes("sgmnt_data",400,"name")="sgmnt_data.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("sgmnt_data",400,"off")=3636 + Set gtmtypes("sgmnt_data",400,"len")=4 + Set gtmtypes("sgmnt_data",400,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail4_cntr")=400 + Set gtmtypes("sgmnt_data",401,"name")="sgmnt_data.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("sgmnt_data",401,"off")=3640 + Set gtmtypes("sgmnt_data",401,"len")=4 + Set gtmtypes("sgmnt_data",401,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail1_cntr")=401 + Set gtmtypes("sgmnt_data",402,"name")="sgmnt_data.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("sgmnt_data",402,"off")=3644 + Set gtmtypes("sgmnt_data",402,"len")=4 + Set gtmtypes("sgmnt_data",402,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail2_cntr")=402 + Set gtmtypes("sgmnt_data",403,"name")="sgmnt_data.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("sgmnt_data",403,"off")=3648 + Set gtmtypes("sgmnt_data",403,"len")=4 + Set gtmtypes("sgmnt_data",403,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail3_cntr")=403 + Set gtmtypes("sgmnt_data",404,"name")="sgmnt_data.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("sgmnt_data",404,"off")=3652 + Set gtmtypes("sgmnt_data",404,"len")=4 + Set gtmtypes("sgmnt_data",404,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail4_cntr")=404 + Set gtmtypes("sgmnt_data",405,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("sgmnt_data",405,"off")=3656 + Set gtmtypes("sgmnt_data",405,"len")=4 + Set gtmtypes("sgmnt_data",405,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck1_cntr")=405 + Set gtmtypes("sgmnt_data",406,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("sgmnt_data",406,"off")=3660 + Set gtmtypes("sgmnt_data",406,"len")=4 + Set gtmtypes("sgmnt_data",406,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck2_cntr")=406 + Set gtmtypes("sgmnt_data",407,"name")="sgmnt_data.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("sgmnt_data",407,"off")=3664 + Set gtmtypes("sgmnt_data",407,"len")=4 + Set gtmtypes("sgmnt_data",407,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_wbuf_dqd_cntr")=407 + Set gtmtypes("sgmnt_data",408,"name")="sgmnt_data.dwngrd_refmts_syncio_cntr" + Set gtmtypes("sgmnt_data",408,"off")=3668 + Set gtmtypes("sgmnt_data",408,"len")=4 + Set gtmtypes("sgmnt_data",408,"type")="int" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_syncio_cntr")=408 + Set gtmtypes("sgmnt_data",409,"name")="sgmnt_data.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("sgmnt_data",409,"off")=3672 + Set gtmtypes("sgmnt_data",409,"len")=4 + Set gtmtypes("sgmnt_data",409,"type")="int" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_asyncio_cntr")=409 + Set gtmtypes("sgmnt_data",410,"name")="sgmnt_data.shmpool_refmt_harvests_cntr" + Set gtmtypes("sgmnt_data",410,"off")=3676 + Set gtmtypes("sgmnt_data",410,"len")=4 + Set gtmtypes("sgmnt_data",410,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_refmt_harvests_cntr")=410 + Set gtmtypes("sgmnt_data",411,"name")="sgmnt_data.shmpool_recovery_cntr" + Set gtmtypes("sgmnt_data",411,"off")=3680 + Set gtmtypes("sgmnt_data",411,"len")=4 + Set gtmtypes("sgmnt_data",411,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_recovery_cntr")=411 + Set gtmtypes("sgmnt_data",412,"name")="sgmnt_data.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("sgmnt_data",412,"off")=3684 + Set gtmtypes("sgmnt_data",412,"len")=4 + Set gtmtypes("sgmnt_data",412,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_blkd_by_sdc_cntr")=412 + Set gtmtypes("sgmnt_data",413,"name")="sgmnt_data.shmpool_alloc_bbflush_cntr" + Set gtmtypes("sgmnt_data",413,"off")=3688 + Set gtmtypes("sgmnt_data",413,"len")=4 + Set gtmtypes("sgmnt_data",413,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_alloc_bbflush_cntr")=413 + Set gtmtypes("sgmnt_data",414,"name")="sgmnt_data.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("sgmnt_data",414,"off")=3692 + Set gtmtypes("sgmnt_data",414,"len")=4 + Set gtmtypes("sgmnt_data",414,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_replaced_cntr")=414 + Set gtmtypes("sgmnt_data",415,"name")="sgmnt_data.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("sgmnt_data",415,"off")=3696 + Set gtmtypes("sgmnt_data",415,"len")=4 + Set gtmtypes("sgmnt_data",415,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_io_complete_cntr")=415 + Set gtmtypes("sgmnt_data",416,"name")="sgmnt_data.refmt_hvst_blk_kept_cntr" + Set gtmtypes("sgmnt_data",416,"off")=3700 + Set gtmtypes("sgmnt_data",416,"len")=4 + Set gtmtypes("sgmnt_data",416,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_kept_cntr")=416 + Set gtmtypes("sgmnt_data",417,"name")="sgmnt_data.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("sgmnt_data",417,"off")=3704 + Set gtmtypes("sgmnt_data",417,"len")=4 + Set gtmtypes("sgmnt_data",417,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_ignored_cntr")=417 + Set gtmtypes("sgmnt_data",418,"name")="sgmnt_data.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("sgmnt_data",418,"off")=3708 + Set gtmtypes("sgmnt_data",418,"len")=4 + Set gtmtypes("sgmnt_data",418,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_freed_cntr")=418 + Set gtmtypes("sgmnt_data",419,"name")="sgmnt_data.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("sgmnt_data",419,"off")=3712 + Set gtmtypes("sgmnt_data",419,"len")=4 + Set gtmtypes("sgmnt_data",419,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_kept_cntr")=419 + Set gtmtypes("sgmnt_data",420,"name")="sgmnt_data.active_lvl_trigger_cntr" + Set gtmtypes("sgmnt_data",420,"off")=3716 + Set gtmtypes("sgmnt_data",420,"len")=4 + Set gtmtypes("sgmnt_data",420,"type")="int" + Set gtmtypfldindx("sgmnt_data","active_lvl_trigger_cntr")=420 + Set gtmtypes("sgmnt_data",421,"name")="sgmnt_data.new_buff_cntr" + Set gtmtypes("sgmnt_data",421,"off")=3720 + Set gtmtypes("sgmnt_data",421,"len")=4 + Set gtmtypes("sgmnt_data",421,"type")="int" + Set gtmtypfldindx("sgmnt_data","new_buff_cntr")=421 + Set gtmtypes("sgmnt_data",422,"name")="sgmnt_data.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("sgmnt_data",422,"off")=3724 + Set gtmtypes("sgmnt_data",422,"len")=4 + Set gtmtypes("sgmnt_data",422,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_in_crit_cntr")=422 + Set gtmtypes("sgmnt_data",423,"name")="sgmnt_data.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("sgmnt_data",423,"off")=3728 + Set gtmtypes("sgmnt_data",423,"len")=4 + Set gtmtypes("sgmnt_data",423,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_no_crit_cntr")=423 + Set gtmtypes("sgmnt_data",424,"name")="sgmnt_data.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("sgmnt_data",424,"off")=3732 + Set gtmtypes("sgmnt_data",424,"len")=4 + Set gtmtypes("sgmnt_data",424,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_pidcnt_cntr")=424 + Set gtmtypes("sgmnt_data",425,"name")="sgmnt_data.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("sgmnt_data",425,"off")=3736 + Set gtmtypes("sgmnt_data",425,"len")=4 + Set gtmtypes("sgmnt_data",425,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_intend_wait_cntr")=425 + Set gtmtypes("sgmnt_data",426,"name")="sgmnt_data.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("sgmnt_data",426,"off")=3740 + Set gtmtypes("sgmnt_data",426,"len")=4 + Set gtmtypes("sgmnt_data",426,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_phase2_clnup_cntr")=426 + Set gtmtypes("sgmnt_data",427,"name")="sgmnt_data.wcb_phase2_commit_wait_cntr" + Set gtmtypes("sgmnt_data",427,"off")=3744 + Set gtmtypes("sgmnt_data",427,"len")=4 + Set gtmtypes("sgmnt_data",427,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_phase2_commit_wait_cntr")=427 + Set gtmtypes("sgmnt_data",428,"name")="sgmnt_data.recompute_upd_array_calls_cntr" + Set gtmtypes("sgmnt_data",428,"off")=3748 + Set gtmtypes("sgmnt_data",428,"len")=4 + Set gtmtypes("sgmnt_data",428,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_calls_cntr")=428 + Set gtmtypes("sgmnt_data",429,"name")="sgmnt_data.recompute_upd_array_rip_cntr" + Set gtmtypes("sgmnt_data",429,"off")=3752 + Set gtmtypes("sgmnt_data",429,"len")=4 + Set gtmtypes("sgmnt_data",429,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rip_cntr")=429 + Set gtmtypes("sgmnt_data",430,"name")="sgmnt_data.recompute_upd_array_in_tend_cntr" + Set gtmtypes("sgmnt_data",430,"off")=3756 + Set gtmtypes("sgmnt_data",430,"len")=4 + Set gtmtypes("sgmnt_data",430,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_in_tend_cntr")=430 + Set gtmtypes("sgmnt_data",431,"name")="sgmnt_data.recompute_upd_array_search_blk_cntr" + Set gtmtypes("sgmnt_data",431,"off")=3760 + Set gtmtypes("sgmnt_data",431,"len")=4 + Set gtmtypes("sgmnt_data",431,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_search_blk_cntr")=431 + Set gtmtypes("sgmnt_data",432,"name")="sgmnt_data.recompute_upd_array_new_rec_cntr" + Set gtmtypes("sgmnt_data",432,"off")=3764 + Set gtmtypes("sgmnt_data",432,"len")=4 + Set gtmtypes("sgmnt_data",432,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_new_rec_cntr")=432 + Set gtmtypes("sgmnt_data",433,"name")="sgmnt_data.recompute_upd_array_rec_size_cntr" + Set gtmtypes("sgmnt_data",433,"off")=3768 + Set gtmtypes("sgmnt_data",433,"len")=4 + Set gtmtypes("sgmnt_data",433,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_size_cntr")=433 + Set gtmtypes("sgmnt_data",434,"name")="sgmnt_data.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("sgmnt_data",434,"off")=3772 + Set gtmtypes("sgmnt_data",434,"len")=4 + Set gtmtypes("sgmnt_data",434,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_cmpc_cntr")=434 + Set gtmtypes("sgmnt_data",435,"name")="sgmnt_data.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("sgmnt_data",435,"off")=3776 + Set gtmtypes("sgmnt_data",435,"len")=4 + Set gtmtypes("sgmnt_data",435,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_fini_cntr")=435 + Set gtmtypes("sgmnt_data",436,"name")="sgmnt_data.recompute_upd_array_blk_split_cntr" + Set gtmtypes("sgmnt_data",436,"off")=3780 + Set gtmtypes("sgmnt_data",436,"len")=4 + Set gtmtypes("sgmnt_data",436,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_split_cntr")=436 + Set gtmtypes("sgmnt_data",437,"name")="sgmnt_data.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("sgmnt_data",437,"off")=3784 + Set gtmtypes("sgmnt_data",437,"len")=4 + Set gtmtypes("sgmnt_data",437,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_cnt_cntr")=437 + Set gtmtypes("sgmnt_data",438,"name")="sgmnt_data.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("sgmnt_data",438,"off")=3788 + Set gtmtypes("sgmnt_data",438,"len")=4 + Set gtmtypes("sgmnt_data",438,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_nblks_cntr")=438 + Set gtmtypes("sgmnt_data",439,"name")="sgmnt_data.bg_trc_rec_cntr_filler" + Set gtmtypes("sgmnt_data",439,"off")=3792 + Set gtmtypes("sgmnt_data",439,"len")=56 + Set gtmtypes("sgmnt_data",439,"type")="char" + Set gtmtypfldindx("sgmnt_data","bg_trc_rec_cntr_filler")=439 + Set gtmtypes("sgmnt_data",440,"name")="sgmnt_data.n_gvcst_srches" + Set gtmtypes("sgmnt_data",440,"off")=3848 + Set gtmtypes("sgmnt_data",440,"len")=8 + Set gtmtypes("sgmnt_data",440,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches")=440 + Set gtmtypes("sgmnt_data",441,"name")="sgmnt_data.n_gvcst_srches.curr_count" + Set gtmtypes("sgmnt_data",441,"off")=3848 + Set gtmtypes("sgmnt_data",441,"len")=4 + Set gtmtypes("sgmnt_data",441,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches.curr_count")=441 + Set gtmtypes("sgmnt_data",442,"name")="sgmnt_data.n_gvcst_srches.cumul_count" + Set gtmtypes("sgmnt_data",442,"off")=3852 + Set gtmtypes("sgmnt_data",442,"len")=4 + Set gtmtypes("sgmnt_data",442,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches.cumul_count")=442 + Set gtmtypes("sgmnt_data",443,"name")="sgmnt_data.n_gvcst_srch_clues" + Set gtmtypes("sgmnt_data",443,"off")=3856 + Set gtmtypes("sgmnt_data",443,"len")=8 + Set gtmtypes("sgmnt_data",443,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues")=443 + Set gtmtypes("sgmnt_data",444,"name")="sgmnt_data.n_gvcst_srch_clues.curr_count" + Set gtmtypes("sgmnt_data",444,"off")=3856 + Set gtmtypes("sgmnt_data",444,"len")=4 + Set gtmtypes("sgmnt_data",444,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues.curr_count")=444 + Set gtmtypes("sgmnt_data",445,"name")="sgmnt_data.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("sgmnt_data",445,"off")=3860 + Set gtmtypes("sgmnt_data",445,"len")=4 + Set gtmtypes("sgmnt_data",445,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues.cumul_count")=445 + Set gtmtypes("sgmnt_data",446,"name")="sgmnt_data.n_clue_used_head" + Set gtmtypes("sgmnt_data",446,"off")=3864 + Set gtmtypes("sgmnt_data",446,"len")=8 + Set gtmtypes("sgmnt_data",446,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head")=446 + Set gtmtypes("sgmnt_data",447,"name")="sgmnt_data.n_clue_used_head.curr_count" + Set gtmtypes("sgmnt_data",447,"off")=3864 + Set gtmtypes("sgmnt_data",447,"len")=4 + Set gtmtypes("sgmnt_data",447,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head.curr_count")=447 + Set gtmtypes("sgmnt_data",448,"name")="sgmnt_data.n_clue_used_head.cumul_count" + Set gtmtypes("sgmnt_data",448,"off")=3868 + Set gtmtypes("sgmnt_data",448,"len")=4 + Set gtmtypes("sgmnt_data",448,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head.cumul_count")=448 + Set gtmtypes("sgmnt_data",449,"name")="sgmnt_data.n_clue_used_same" + Set gtmtypes("sgmnt_data",449,"off")=3872 + Set gtmtypes("sgmnt_data",449,"len")=8 + Set gtmtypes("sgmnt_data",449,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same")=449 + Set gtmtypes("sgmnt_data",450,"name")="sgmnt_data.n_clue_used_same.curr_count" + Set gtmtypes("sgmnt_data",450,"off")=3872 + Set gtmtypes("sgmnt_data",450,"len")=4 + Set gtmtypes("sgmnt_data",450,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same.curr_count")=450 + Set gtmtypes("sgmnt_data",451,"name")="sgmnt_data.n_clue_used_same.cumul_count" + Set gtmtypes("sgmnt_data",451,"off")=3876 + Set gtmtypes("sgmnt_data",451,"len")=4 + Set gtmtypes("sgmnt_data",451,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same.cumul_count")=451 + Set gtmtypes("sgmnt_data",452,"name")="sgmnt_data.n_clue_used_tail" + Set gtmtypes("sgmnt_data",452,"off")=3880 + Set gtmtypes("sgmnt_data",452,"len")=8 + Set gtmtypes("sgmnt_data",452,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail")=452 + Set gtmtypes("sgmnt_data",453,"name")="sgmnt_data.n_clue_used_tail.curr_count" + Set gtmtypes("sgmnt_data",453,"off")=3880 + Set gtmtypes("sgmnt_data",453,"len")=4 + Set gtmtypes("sgmnt_data",453,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail.curr_count")=453 + Set gtmtypes("sgmnt_data",454,"name")="sgmnt_data.n_clue_used_tail.cumul_count" + Set gtmtypes("sgmnt_data",454,"off")=3884 + Set gtmtypes("sgmnt_data",454,"len")=4 + Set gtmtypes("sgmnt_data",454,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail.cumul_count")=454 + Set gtmtypes("sgmnt_data",455,"name")="sgmnt_data.n_t_qreads" + Set gtmtypes("sgmnt_data",455,"off")=3888 + Set gtmtypes("sgmnt_data",455,"len")=8 + Set gtmtypes("sgmnt_data",455,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_t_qreads")=455 + Set gtmtypes("sgmnt_data",456,"name")="sgmnt_data.n_t_qreads.curr_count" + Set gtmtypes("sgmnt_data",456,"off")=3888 + Set gtmtypes("sgmnt_data",456,"len")=4 + Set gtmtypes("sgmnt_data",456,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_t_qreads.curr_count")=456 + Set gtmtypes("sgmnt_data",457,"name")="sgmnt_data.n_t_qreads.cumul_count" + Set gtmtypes("sgmnt_data",457,"off")=3892 + Set gtmtypes("sgmnt_data",457,"len")=4 + Set gtmtypes("sgmnt_data",457,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_t_qreads.cumul_count")=457 + Set gtmtypes("sgmnt_data",458,"name")="sgmnt_data.unused_dsk_reads" + Set gtmtypes("sgmnt_data",458,"off")=3896 + Set gtmtypes("sgmnt_data",458,"len")=8 + Set gtmtypes("sgmnt_data",458,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads")=458 + Set gtmtypes("sgmnt_data",459,"name")="sgmnt_data.unused_dsk_reads.curr_count" + Set gtmtypes("sgmnt_data",459,"off")=3896 + Set gtmtypes("sgmnt_data",459,"len")=4 + Set gtmtypes("sgmnt_data",459,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads.curr_count")=459 + Set gtmtypes("sgmnt_data",460,"name")="sgmnt_data.unused_dsk_reads.cumul_count" + Set gtmtypes("sgmnt_data",460,"off")=3900 + Set gtmtypes("sgmnt_data",460,"len")=4 + Set gtmtypes("sgmnt_data",460,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads.cumul_count")=460 + Set gtmtypes("sgmnt_data",461,"name")="sgmnt_data.n_bgmm_updates" + Set gtmtypes("sgmnt_data",461,"off")=3904 + Set gtmtypes("sgmnt_data",461,"len")=8 + Set gtmtypes("sgmnt_data",461,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates")=461 + Set gtmtypes("sgmnt_data",462,"name")="sgmnt_data.n_bgmm_updates.curr_count" + Set gtmtypes("sgmnt_data",462,"off")=3904 + Set gtmtypes("sgmnt_data",462,"len")=4 + Set gtmtypes("sgmnt_data",462,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates.curr_count")=462 + Set gtmtypes("sgmnt_data",463,"name")="sgmnt_data.n_bgmm_updates.cumul_count" + Set gtmtypes("sgmnt_data",463,"off")=3908 + Set gtmtypes("sgmnt_data",463,"len")=4 + Set gtmtypes("sgmnt_data",463,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates.cumul_count")=463 + Set gtmtypes("sgmnt_data",464,"name")="sgmnt_data.unused_dsk_writes" + Set gtmtypes("sgmnt_data",464,"off")=3912 + Set gtmtypes("sgmnt_data",464,"len")=8 + Set gtmtypes("sgmnt_data",464,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes")=464 + Set gtmtypes("sgmnt_data",465,"name")="sgmnt_data.unused_dsk_writes.curr_count" + Set gtmtypes("sgmnt_data",465,"off")=3912 + Set gtmtypes("sgmnt_data",465,"len")=4 + Set gtmtypes("sgmnt_data",465,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes.curr_count")=465 + Set gtmtypes("sgmnt_data",466,"name")="sgmnt_data.unused_dsk_writes.cumul_count" + Set gtmtypes("sgmnt_data",466,"off")=3916 + Set gtmtypes("sgmnt_data",466,"len")=4 + Set gtmtypes("sgmnt_data",466,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes.cumul_count")=466 + Set gtmtypes("sgmnt_data",467,"name")="sgmnt_data.n_bg_update_creates" + Set gtmtypes("sgmnt_data",467,"off")=3920 + Set gtmtypes("sgmnt_data",467,"len")=8 + Set gtmtypes("sgmnt_data",467,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates")=467 + Set gtmtypes("sgmnt_data",468,"name")="sgmnt_data.n_bg_update_creates.curr_count" + Set gtmtypes("sgmnt_data",468,"off")=3920 + Set gtmtypes("sgmnt_data",468,"len")=4 + Set gtmtypes("sgmnt_data",468,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates.curr_count")=468 + Set gtmtypes("sgmnt_data",469,"name")="sgmnt_data.n_bg_update_creates.cumul_count" + Set gtmtypes("sgmnt_data",469,"off")=3924 + Set gtmtypes("sgmnt_data",469,"len")=4 + Set gtmtypes("sgmnt_data",469,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates.cumul_count")=469 + Set gtmtypes("sgmnt_data",470,"name")="sgmnt_data.n_db_csh_getns" + Set gtmtypes("sgmnt_data",470,"off")=3928 + Set gtmtypes("sgmnt_data",470,"len")=8 + Set gtmtypes("sgmnt_data",470,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns")=470 + Set gtmtypes("sgmnt_data",471,"name")="sgmnt_data.n_db_csh_getns.curr_count" + Set gtmtypes("sgmnt_data",471,"off")=3928 + Set gtmtypes("sgmnt_data",471,"len")=4 + Set gtmtypes("sgmnt_data",471,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns.curr_count")=471 + Set gtmtypes("sgmnt_data",472,"name")="sgmnt_data.n_db_csh_getns.cumul_count" + Set gtmtypes("sgmnt_data",472,"off")=3932 + Set gtmtypes("sgmnt_data",472,"len")=4 + Set gtmtypes("sgmnt_data",472,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns.cumul_count")=472 + Set gtmtypes("sgmnt_data",473,"name")="sgmnt_data.n_db_csh_getn_lcnt" + Set gtmtypes("sgmnt_data",473,"off")=3936 + Set gtmtypes("sgmnt_data",473,"len")=8 + Set gtmtypes("sgmnt_data",473,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt")=473 + Set gtmtypes("sgmnt_data",474,"name")="sgmnt_data.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("sgmnt_data",474,"off")=3936 + Set gtmtypes("sgmnt_data",474,"len")=4 + Set gtmtypes("sgmnt_data",474,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt.curr_count")=474 + Set gtmtypes("sgmnt_data",475,"name")="sgmnt_data.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("sgmnt_data",475,"off")=3940 + Set gtmtypes("sgmnt_data",475,"len")=4 + Set gtmtypes("sgmnt_data",475,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt.cumul_count")=475 + Set gtmtypes("sgmnt_data",476,"name")="sgmnt_data.db_csh_acct_rec_filler_4k" + Set gtmtypes("sgmnt_data",476,"off")=3944 + Set gtmtypes("sgmnt_data",476,"len")=152 + Set gtmtypes("sgmnt_data",476,"type")="char" + Set gtmtypfldindx("sgmnt_data","db_csh_acct_rec_filler_4k")=476 + Set gtmtypes("sgmnt_data",477,"name")="sgmnt_data.gvstats_rec" + Set gtmtypes("sgmnt_data",477,"off")=4096 + Set gtmtypes("sgmnt_data",477,"len")=464 + Set gtmtypes("sgmnt_data",477,"type")="gvstats_rec_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec")=477 + Set gtmtypes("sgmnt_data",478,"name")="sgmnt_data.gvstats_rec.n_set" + Set gtmtypes("sgmnt_data",478,"off")=4096 + Set gtmtypes("sgmnt_data",478,"len")=8 + Set gtmtypes("sgmnt_data",478,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_set")=478 + Set gtmtypes("sgmnt_data",479,"name")="sgmnt_data.gvstats_rec.n_kill" + Set gtmtypes("sgmnt_data",479,"off")=4104 + Set gtmtypes("sgmnt_data",479,"len")=8 + Set gtmtypes("sgmnt_data",479,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_kill")=479 + Set gtmtypes("sgmnt_data",480,"name")="sgmnt_data.gvstats_rec.n_get" + Set gtmtypes("sgmnt_data",480,"off")=4112 + Set gtmtypes("sgmnt_data",480,"len")=8 + Set gtmtypes("sgmnt_data",480,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_get")=480 + Set gtmtypes("sgmnt_data",481,"name")="sgmnt_data.gvstats_rec.n_data" + Set gtmtypes("sgmnt_data",481,"off")=4120 + Set gtmtypes("sgmnt_data",481,"len")=8 + Set gtmtypes("sgmnt_data",481,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_data")=481 + Set gtmtypes("sgmnt_data",482,"name")="sgmnt_data.gvstats_rec.n_order" + Set gtmtypes("sgmnt_data",482,"off")=4128 + Set gtmtypes("sgmnt_data",482,"len")=8 + Set gtmtypes("sgmnt_data",482,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_order")=482 + Set gtmtypes("sgmnt_data",483,"name")="sgmnt_data.gvstats_rec.n_zprev" + Set gtmtypes("sgmnt_data",483,"off")=4136 + Set gtmtypes("sgmnt_data",483,"len")=8 + Set gtmtypes("sgmnt_data",483,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_zprev")=483 + Set gtmtypes("sgmnt_data",484,"name")="sgmnt_data.gvstats_rec.n_query" + Set gtmtypes("sgmnt_data",484,"off")=4144 + Set gtmtypes("sgmnt_data",484,"len")=8 + Set gtmtypes("sgmnt_data",484,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_query")=484 + Set gtmtypes("sgmnt_data",485,"name")="sgmnt_data.gvstats_rec.n_lock_success" + Set gtmtypes("sgmnt_data",485,"off")=4152 + Set gtmtypes("sgmnt_data",485,"len")=8 + Set gtmtypes("sgmnt_data",485,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_lock_success")=485 + Set gtmtypes("sgmnt_data",486,"name")="sgmnt_data.gvstats_rec.n_lock_fail" + Set gtmtypes("sgmnt_data",486,"off")=4160 + Set gtmtypes("sgmnt_data",486,"len")=8 + Set gtmtypes("sgmnt_data",486,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_lock_fail")=486 + Set gtmtypes("sgmnt_data",487,"name")="sgmnt_data.gvstats_rec.db_curr_tn" + Set gtmtypes("sgmnt_data",487,"off")=4168 + Set gtmtypes("sgmnt_data",487,"len")=8 + Set gtmtypes("sgmnt_data",487,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.db_curr_tn")=487 + Set gtmtypes("sgmnt_data",488,"name")="sgmnt_data.gvstats_rec.n_dsk_read" + Set gtmtypes("sgmnt_data",488,"off")=4176 + Set gtmtypes("sgmnt_data",488,"len")=8 + Set gtmtypes("sgmnt_data",488,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_dsk_read")=488 + Set gtmtypes("sgmnt_data",489,"name")="sgmnt_data.gvstats_rec.n_dsk_write" + Set gtmtypes("sgmnt_data",489,"off")=4184 + Set gtmtypes("sgmnt_data",489,"len")=8 + Set gtmtypes("sgmnt_data",489,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_dsk_write")=489 + Set gtmtypes("sgmnt_data",490,"name")="sgmnt_data.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("sgmnt_data",490,"off")=4192 + Set gtmtypes("sgmnt_data",490,"len")=8 + Set gtmtypes("sgmnt_data",490,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_readwrite")=490 + Set gtmtypes("sgmnt_data",491,"name")="sgmnt_data.gvstats_rec.n_nontp_readonly" + Set gtmtypes("sgmnt_data",491,"off")=4200 + Set gtmtypes("sgmnt_data",491,"len")=8 + Set gtmtypes("sgmnt_data",491,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_readonly")=491 + Set gtmtypes("sgmnt_data",492,"name")="sgmnt_data.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("sgmnt_data",492,"off")=4208 + Set gtmtypes("sgmnt_data",492,"len")=8 + Set gtmtypes("sgmnt_data",492,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_blkwrite")=492 + Set gtmtypes("sgmnt_data",493,"name")="sgmnt_data.gvstats_rec.n_nontp_blkread" + Set gtmtypes("sgmnt_data",493,"off")=4216 + Set gtmtypes("sgmnt_data",493,"len")=8 + Set gtmtypes("sgmnt_data",493,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_blkread")=493 + Set gtmtypes("sgmnt_data",494,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("sgmnt_data",494,"off")=4224 + Set gtmtypes("sgmnt_data",494,"len")=8 + Set gtmtypes("sgmnt_data",494,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_0")=494 + Set gtmtypes("sgmnt_data",495,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("sgmnt_data",495,"off")=4232 + Set gtmtypes("sgmnt_data",495,"len")=8 + Set gtmtypes("sgmnt_data",495,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_1")=495 + Set gtmtypes("sgmnt_data",496,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("sgmnt_data",496,"off")=4240 + Set gtmtypes("sgmnt_data",496,"len")=8 + Set gtmtypes("sgmnt_data",496,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_2")=496 + Set gtmtypes("sgmnt_data",497,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("sgmnt_data",497,"off")=4248 + Set gtmtypes("sgmnt_data",497,"len")=8 + Set gtmtypes("sgmnt_data",497,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_3")=497 + Set gtmtypes("sgmnt_data",498,"name")="sgmnt_data.gvstats_rec.n_tp_readwrite" + Set gtmtypes("sgmnt_data",498,"off")=4256 + Set gtmtypes("sgmnt_data",498,"len")=8 + Set gtmtypes("sgmnt_data",498,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_readwrite")=498 + Set gtmtypes("sgmnt_data",499,"name")="sgmnt_data.gvstats_rec.n_tp_readonly" + Set gtmtypes("sgmnt_data",499,"off")=4264 + Set gtmtypes("sgmnt_data",499,"len")=8 + Set gtmtypes("sgmnt_data",499,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_readonly")=499 + Set gtmtypes("sgmnt_data",500,"name")="sgmnt_data.gvstats_rec.n_tp_rolledback" + Set gtmtypes("sgmnt_data",500,"off")=4272 + Set gtmtypes("sgmnt_data",500,"len")=8 + Set gtmtypes("sgmnt_data",500,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_rolledback")=500 + Set gtmtypes("sgmnt_data",501,"name")="sgmnt_data.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("sgmnt_data",501,"off")=4280 + Set gtmtypes("sgmnt_data",501,"len")=8 + Set gtmtypes("sgmnt_data",501,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_blkwrite")=501 + Set gtmtypes("sgmnt_data",502,"name")="sgmnt_data.gvstats_rec.n_tp_blkread" + Set gtmtypes("sgmnt_data",502,"off")=4288 + Set gtmtypes("sgmnt_data",502,"len")=8 + Set gtmtypes("sgmnt_data",502,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_blkread")=502 + Set gtmtypes("sgmnt_data",503,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("sgmnt_data",503,"off")=4296 + Set gtmtypes("sgmnt_data",503,"len")=8 + Set gtmtypes("sgmnt_data",503,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_0")=503 + Set gtmtypes("sgmnt_data",504,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("sgmnt_data",504,"off")=4304 + Set gtmtypes("sgmnt_data",504,"len")=8 + Set gtmtypes("sgmnt_data",504,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_1")=504 + Set gtmtypes("sgmnt_data",505,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("sgmnt_data",505,"off")=4312 + Set gtmtypes("sgmnt_data",505,"len")=8 + Set gtmtypes("sgmnt_data",505,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_2")=505 + Set gtmtypes("sgmnt_data",506,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("sgmnt_data",506,"off")=4320 + Set gtmtypes("sgmnt_data",506,"len")=8 + Set gtmtypes("sgmnt_data",506,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_3")=506 + Set gtmtypes("sgmnt_data",507,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("sgmnt_data",507,"off")=4328 + Set gtmtypes("sgmnt_data",507,"len")=8 + Set gtmtypes("sgmnt_data",507,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_4")=507 + Set gtmtypes("sgmnt_data",508,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("sgmnt_data",508,"off")=4336 + Set gtmtypes("sgmnt_data",508,"len")=8 + Set gtmtypes("sgmnt_data",508,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_0")=508 + Set gtmtypes("sgmnt_data",509,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("sgmnt_data",509,"off")=4344 + Set gtmtypes("sgmnt_data",509,"len")=8 + Set gtmtypes("sgmnt_data",509,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_1")=509 + Set gtmtypes("sgmnt_data",510,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("sgmnt_data",510,"off")=4352 + Set gtmtypes("sgmnt_data",510,"len")=8 + Set gtmtypes("sgmnt_data",510,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_2")=510 + Set gtmtypes("sgmnt_data",511,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("sgmnt_data",511,"off")=4360 + Set gtmtypes("sgmnt_data",511,"len")=8 + Set gtmtypes("sgmnt_data",511,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_3")=511 + Set gtmtypes("sgmnt_data",512,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("sgmnt_data",512,"off")=4368 + Set gtmtypes("sgmnt_data",512,"len")=8 + Set gtmtypes("sgmnt_data",512,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_4")=512 + Set gtmtypes("sgmnt_data",513,"name")="sgmnt_data.gvstats_rec.n_ztrigger" + Set gtmtypes("sgmnt_data",513,"off")=4376 + Set gtmtypes("sgmnt_data",513,"len")=8 + Set gtmtypes("sgmnt_data",513,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_ztrigger")=513 + Set gtmtypes("sgmnt_data",514,"name")="sgmnt_data.gvstats_rec.n_db_flush" + Set gtmtypes("sgmnt_data",514,"off")=4384 + Set gtmtypes("sgmnt_data",514,"len")=8 + Set gtmtypes("sgmnt_data",514,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_flush")=514 + Set gtmtypes("sgmnt_data",515,"name")="sgmnt_data.gvstats_rec.n_db_fsync" + Set gtmtypes("sgmnt_data",515,"off")=4392 + Set gtmtypes("sgmnt_data",515,"len")=8 + Set gtmtypes("sgmnt_data",515,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_fsync")=515 + Set gtmtypes("sgmnt_data",516,"name")="sgmnt_data.gvstats_rec.n_jnl_flush" + Set gtmtypes("sgmnt_data",516,"off")=4400 + Set gtmtypes("sgmnt_data",516,"len")=8 + Set gtmtypes("sgmnt_data",516,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_flush")=516 + Set gtmtypes("sgmnt_data",517,"name")="sgmnt_data.gvstats_rec.n_jnl_fsync" + Set gtmtypes("sgmnt_data",517,"off")=4408 + Set gtmtypes("sgmnt_data",517,"len")=8 + Set gtmtypes("sgmnt_data",517,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_fsync")=517 + Set gtmtypes("sgmnt_data",518,"name")="sgmnt_data.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("sgmnt_data",518,"off")=4416 + Set gtmtypes("sgmnt_data",518,"len")=8 + Set gtmtypes("sgmnt_data",518,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jbuff_bytes")=518 + Set gtmtypes("sgmnt_data",519,"name")="sgmnt_data.gvstats_rec.n_jfile_bytes" + Set gtmtypes("sgmnt_data",519,"off")=4424 + Set gtmtypes("sgmnt_data",519,"len")=8 + Set gtmtypes("sgmnt_data",519,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jfile_bytes")=519 + Set gtmtypes("sgmnt_data",520,"name")="sgmnt_data.gvstats_rec.n_jfile_writes" + Set gtmtypes("sgmnt_data",520,"off")=4432 + Set gtmtypes("sgmnt_data",520,"len")=8 + Set gtmtypes("sgmnt_data",520,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jfile_writes")=520 + Set gtmtypes("sgmnt_data",521,"name")="sgmnt_data.gvstats_rec.n_jrec_logical" + Set gtmtypes("sgmnt_data",521,"off")=4440 + Set gtmtypes("sgmnt_data",521,"len")=8 + Set gtmtypes("sgmnt_data",521,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_logical")=521 + Set gtmtypes("sgmnt_data",522,"name")="sgmnt_data.gvstats_rec.n_jrec_pblk" + Set gtmtypes("sgmnt_data",522,"off")=4448 + Set gtmtypes("sgmnt_data",522,"len")=8 + Set gtmtypes("sgmnt_data",522,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_pblk")=522 + Set gtmtypes("sgmnt_data",523,"name")="sgmnt_data.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("sgmnt_data",523,"off")=4456 + Set gtmtypes("sgmnt_data",523,"len")=8 + Set gtmtypes("sgmnt_data",523,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_epoch_regular")=523 + Set gtmtypes("sgmnt_data",524,"name")="sgmnt_data.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("sgmnt_data",524,"off")=4464 + Set gtmtypes("sgmnt_data",524,"len")=8 + Set gtmtypes("sgmnt_data",524,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_epoch_idle")=524 + Set gtmtypes("sgmnt_data",525,"name")="sgmnt_data.gvstats_rec.n_jrec_other" + Set gtmtypes("sgmnt_data",525,"off")=4472 + Set gtmtypes("sgmnt_data",525,"len")=8 + Set gtmtypes("sgmnt_data",525,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_other")=525 + Set gtmtypes("sgmnt_data",526,"name")="sgmnt_data.gvstats_rec.n_jnl_extends" + Set gtmtypes("sgmnt_data",526,"off")=4480 + Set gtmtypes("sgmnt_data",526,"len")=8 + Set gtmtypes("sgmnt_data",526,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_extends")=526 + Set gtmtypes("sgmnt_data",527,"name")="sgmnt_data.gvstats_rec.n_db_extends" + Set gtmtypes("sgmnt_data",527,"off")=4488 + Set gtmtypes("sgmnt_data",527,"len")=8 + Set gtmtypes("sgmnt_data",527,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_extends")=527 + Set gtmtypes("sgmnt_data",528,"name")="sgmnt_data.gvstats_rec.n_crit_success" + Set gtmtypes("sgmnt_data",528,"off")=4496 + Set gtmtypes("sgmnt_data",528,"len")=8 + Set gtmtypes("sgmnt_data",528,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_success")=528 + Set gtmtypes("sgmnt_data",529,"name")="sgmnt_data.gvstats_rec.n_crits_in_epch" + Set gtmtypes("sgmnt_data",529,"off")=4504 + Set gtmtypes("sgmnt_data",529,"len")=8 + Set gtmtypes("sgmnt_data",529,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crits_in_epch")=529 + Set gtmtypes("sgmnt_data",530,"name")="sgmnt_data.gvstats_rec.sq_crit_failed" + Set gtmtypes("sgmnt_data",530,"off")=4512 + Set gtmtypes("sgmnt_data",530,"len")=8 + Set gtmtypes("sgmnt_data",530,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_failed")=530 + Set gtmtypes("sgmnt_data",531,"name")="sgmnt_data.gvstats_rec.n_crit_failed" + Set gtmtypes("sgmnt_data",531,"off")=4520 + Set gtmtypes("sgmnt_data",531,"len")=8 + Set gtmtypes("sgmnt_data",531,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_failed")=531 + Set gtmtypes("sgmnt_data",532,"name")="sgmnt_data.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("sgmnt_data",532,"off")=4528 + Set gtmtypes("sgmnt_data",532,"len")=8 + Set gtmtypes("sgmnt_data",532,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_que_slps")=532 + Set gtmtypes("sgmnt_data",533,"name")="sgmnt_data.gvstats_rec.n_crit_que_slps" + Set gtmtypes("sgmnt_data",533,"off")=4536 + Set gtmtypes("sgmnt_data",533,"len")=8 + Set gtmtypes("sgmnt_data",533,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_que_slps")=533 + Set gtmtypes("sgmnt_data",534,"name")="sgmnt_data.gvstats_rec.sq_crit_yields" + Set gtmtypes("sgmnt_data",534,"off")=4544 + Set gtmtypes("sgmnt_data",534,"len")=8 + Set gtmtypes("sgmnt_data",534,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_yields")=534 + Set gtmtypes("sgmnt_data",535,"name")="sgmnt_data.gvstats_rec.n_crit_yields" + Set gtmtypes("sgmnt_data",535,"off")=4552 + Set gtmtypes("sgmnt_data",535,"len")=8 + Set gtmtypes("sgmnt_data",535,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_yields")=535 + Set gtmtypes("sgmnt_data",536,"name")="sgmnt_data.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("sgmnt_data",536,"off")=4560 + Set gtmtypes("sgmnt_data",536,"len")=48 + Set gtmtypes("sgmnt_data",536,"type")="char" + Set gtmtypfldindx("sgmnt_data","gvstats_rec_filler_4k_plus_512")=536 + Set gtmtypes("sgmnt_data",537,"name")="sgmnt_data.filler_4k_plus_512" + Set gtmtypes("sgmnt_data",537,"off")=4608 + Set gtmtypes("sgmnt_data",537,"len")=368 + Set gtmtypes("sgmnt_data",537,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_4k_plus_512")=537 + Set gtmtypes("sgmnt_data",538,"name")="sgmnt_data.intrpt_recov_resync_strm_seqno" + Set gtmtypes("sgmnt_data",538,"off")=4976 + Set gtmtypes("sgmnt_data",538,"len")=128 + Set gtmtypes("sgmnt_data",538,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_resync_strm_seqno")=538 + Set gtmtypes("sgmnt_data",538,"dim")=16 + Set gtmtypes("sgmnt_data",539,"name")="sgmnt_data.creation_db_ver" + Set gtmtypes("sgmnt_data",539,"off")=5104 + Set gtmtypes("sgmnt_data",539,"len")=4 + Set gtmtypes("sgmnt_data",539,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_db_ver")=539 + Set gtmtypes("sgmnt_data",540,"name")="sgmnt_data.creation_mdb_ver" + Set gtmtypes("sgmnt_data",540,"off")=5108 + Set gtmtypes("sgmnt_data",540,"len")=4 + Set gtmtypes("sgmnt_data",540,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_mdb_ver")=540 + Set gtmtypes("sgmnt_data",541,"name")="sgmnt_data.certified_for_upgrade_to" + Set gtmtypes("sgmnt_data",541,"off")=5112 + Set gtmtypes("sgmnt_data",541,"len")=4 + Set gtmtypes("sgmnt_data",541,"type")="int" + Set gtmtypfldindx("sgmnt_data","certified_for_upgrade_to")=541 + Set gtmtypes("sgmnt_data",542,"name")="sgmnt_data.filler_5k" + Set gtmtypes("sgmnt_data",542,"off")=5116 + Set gtmtypes("sgmnt_data",542,"len")=4 + Set gtmtypes("sgmnt_data",542,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_5k")=542 + Set gtmtypes("sgmnt_data",543,"name")="sgmnt_data.secshr_ops_index_filler" + Set gtmtypes("sgmnt_data",543,"off")=5120 + Set gtmtypes("sgmnt_data",543,"len")=4 + Set gtmtypes("sgmnt_data",543,"type")="int" + Set gtmtypfldindx("sgmnt_data","secshr_ops_index_filler")=543 + Set gtmtypes("sgmnt_data",544,"name")="sgmnt_data.secshr_ops_array_filler" + Set gtmtypes("sgmnt_data",544,"off")=5124 + Set gtmtypes("sgmnt_data",544,"len")=1020 + Set gtmtypes("sgmnt_data",544,"type")="int" + Set gtmtypfldindx("sgmnt_data","secshr_ops_array_filler")=544 + Set gtmtypes("sgmnt_data",544,"dim")=255 + Set gtmtypes("sgmnt_data",545,"name")="sgmnt_data.next_upgrd_warn" + Set gtmtypes("sgmnt_data",545,"off")=6144 + Set gtmtypes("sgmnt_data",545,"len")=24 + Set gtmtypes("sgmnt_data",545,"type")="compswap_time_field" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn")=545 + Set gtmtypes("sgmnt_data",546,"name")="sgmnt_data.next_upgrd_warn.time_latch" + Set gtmtypes("sgmnt_data",546,"off")=6144 + Set gtmtypes("sgmnt_data",546,"len")=8 + Set gtmtypes("sgmnt_data",546,"type")="global_latch_t" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch")=546 + Set gtmtypes("sgmnt_data",547,"name")="sgmnt_data.next_upgrd_warn.time_latch.u" + Set gtmtypes("sgmnt_data",547,"off")=6144 + Set gtmtypes("sgmnt_data",547,"len")=8 + Set gtmtypes("sgmnt_data",547,"type")="union" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u")=547 + Set gtmtypes("sgmnt_data",548,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("sgmnt_data",548,"off")=6144 + Set gtmtypes("sgmnt_data",548,"len")=8 + Set gtmtypes("sgmnt_data",548,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.pid_imgcnt")=548 + Set gtmtypes("sgmnt_data",549,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("sgmnt_data",549,"off")=6144 + Set gtmtypes("sgmnt_data",549,"len")=8 + Set gtmtypes("sgmnt_data",549,"type")="struct" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts")=549 + Set gtmtypes("sgmnt_data",550,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("sgmnt_data",550,"off")=6144 + Set gtmtypes("sgmnt_data",550,"len")=4 + Set gtmtypes("sgmnt_data",550,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts.latch_pid")=550 + Set gtmtypes("sgmnt_data",551,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("sgmnt_data",551,"off")=6148 + Set gtmtypes("sgmnt_data",551,"len")=4 + Set gtmtypes("sgmnt_data",551,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts.latch_word")=551 + Set gtmtypes("sgmnt_data",552,"name")="sgmnt_data.next_upgrd_warn.hp_latch_space" + Set gtmtypes("sgmnt_data",552,"off")=6152 + Set gtmtypes("sgmnt_data",552,"len")=16 + Set gtmtypes("sgmnt_data",552,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.hp_latch_space")=552 + Set gtmtypes("sgmnt_data",552,"dim")=4 + Set gtmtypes("sgmnt_data",553,"name")="sgmnt_data.is_encrypted" + Set gtmtypes("sgmnt_data",553,"off")=6168 + Set gtmtypes("sgmnt_data",553,"len")=4 + Set gtmtypes("sgmnt_data",553,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","is_encrypted")=553 + Set gtmtypes("sgmnt_data",554,"name")="sgmnt_data.db_trigger_cycle" + Set gtmtypes("sgmnt_data",554,"off")=6172 + Set gtmtypes("sgmnt_data",554,"len")=4 + Set gtmtypes("sgmnt_data",554,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","db_trigger_cycle")=554 + Set gtmtypes("sgmnt_data",555,"name")="sgmnt_data.strm_reg_seqno" + Set gtmtypes("sgmnt_data",555,"off")=6176 + Set gtmtypes("sgmnt_data",555,"len")=128 + Set gtmtypes("sgmnt_data",555,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","strm_reg_seqno")=555 + Set gtmtypes("sgmnt_data",555,"dim")=16 + Set gtmtypes("sgmnt_data",556,"name")="sgmnt_data.save_strm_reg_seqno" + Set gtmtypes("sgmnt_data",556,"off")=6304 + Set gtmtypes("sgmnt_data",556,"len")=128 + Set gtmtypes("sgmnt_data",556,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","save_strm_reg_seqno")=556 + Set gtmtypes("sgmnt_data",556,"dim")=16 + Set gtmtypes("sgmnt_data",557,"name")="sgmnt_data.freeze_on_fail" + Set gtmtypes("sgmnt_data",557,"off")=6432 + Set gtmtypes("sgmnt_data",557,"len")=4 + Set gtmtypes("sgmnt_data",557,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","freeze_on_fail")=557 + Set gtmtypes("sgmnt_data",558,"name")="sgmnt_data.span_node_absent" + Set gtmtypes("sgmnt_data",558,"off")=6436 + Set gtmtypes("sgmnt_data",558,"len")=4 + Set gtmtypes("sgmnt_data",558,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","span_node_absent")=558 + Set gtmtypes("sgmnt_data",559,"name")="sgmnt_data.maxkeysz_assured" + Set gtmtypes("sgmnt_data",559,"off")=6440 + Set gtmtypes("sgmnt_data",559,"len")=4 + Set gtmtypes("sgmnt_data",559,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","maxkeysz_assured")=559 + Set gtmtypes("sgmnt_data",560,"name")="sgmnt_data.hasht_upgrade_needed" + Set gtmtypes("sgmnt_data",560,"off")=6444 + Set gtmtypes("sgmnt_data",560,"len")=4 + Set gtmtypes("sgmnt_data",560,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","hasht_upgrade_needed")=560 + Set gtmtypes("sgmnt_data",561,"name")="sgmnt_data.defer_allocate" + Set gtmtypes("sgmnt_data",561,"off")=6448 + Set gtmtypes("sgmnt_data",561,"len")=4 + Set gtmtypes("sgmnt_data",561,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","defer_allocate")=561 + Set gtmtypes("sgmnt_data",562,"name")="sgmnt_data.ftok_counter_halted" + Set gtmtypes("sgmnt_data",562,"off")=6452 + Set gtmtypes("sgmnt_data",562,"len")=4 + Set gtmtypes("sgmnt_data",562,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","ftok_counter_halted")=562 + Set gtmtypes("sgmnt_data",563,"name")="sgmnt_data.access_counter_halted" + Set gtmtypes("sgmnt_data",563,"off")=6456 + Set gtmtypes("sgmnt_data",563,"len")=4 + Set gtmtypes("sgmnt_data",563,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","access_counter_halted")=563 + Set gtmtypes("sgmnt_data",564,"name")="sgmnt_data.filler_7k" + Set gtmtypes("sgmnt_data",564,"off")=6460 + Set gtmtypes("sgmnt_data",564,"len")=708 + Set gtmtypes("sgmnt_data",564,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_7k")=564 + Set gtmtypes("sgmnt_data",565,"name")="sgmnt_data.filler_8k" + Set gtmtypes("sgmnt_data",565,"off")=7168 + Set gtmtypes("sgmnt_data",565,"len")=1024 + Set gtmtypes("sgmnt_data",565,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_8k")=565 + ; + Set gtmtypes("shm_forw_multi_t")="struct" + Set gtmtypes("shm_forw_multi_t",0)=20 + Set gtmtypes("shm_forw_multi_t","len")=60 + Set gtmtypes("shm_forw_multi_t",1,"name")="shm_forw_multi_t.free_chain" + Set gtmtypes("shm_forw_multi_t",1,"off")=0 + Set gtmtypes("shm_forw_multi_t",1,"len")=8 + Set gtmtypes("shm_forw_multi_t",1,"type")="que_ent" + Set gtmtypfldindx("shm_forw_multi_t","free_chain")=1 + Set gtmtypes("shm_forw_multi_t",2,"name")="shm_forw_multi_t.free_chain.fl" + Set gtmtypes("shm_forw_multi_t",2,"off")=0 + Set gtmtypes("shm_forw_multi_t",2,"len")=4 + Set gtmtypes("shm_forw_multi_t",2,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","free_chain.fl")=2 + Set gtmtypes("shm_forw_multi_t",3,"name")="shm_forw_multi_t.free_chain.bl" + Set gtmtypes("shm_forw_multi_t",3,"off")=4 + Set gtmtypes("shm_forw_multi_t",3,"len")=4 + Set gtmtypes("shm_forw_multi_t",3,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","free_chain.bl")=3 + Set gtmtypes("shm_forw_multi_t",4,"name")="shm_forw_multi_t.same_hash_chain" + Set gtmtypes("shm_forw_multi_t",4,"off")=8 + Set gtmtypes("shm_forw_multi_t",4,"len")=8 + Set gtmtypes("shm_forw_multi_t",4,"type")="que_ent" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain")=4 + Set gtmtypes("shm_forw_multi_t",5,"name")="shm_forw_multi_t.same_hash_chain.fl" + Set gtmtypes("shm_forw_multi_t",5,"off")=8 + Set gtmtypes("shm_forw_multi_t",5,"len")=4 + Set gtmtypes("shm_forw_multi_t",5,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain.fl")=5 + Set gtmtypes("shm_forw_multi_t",6,"name")="shm_forw_multi_t.same_hash_chain.bl" + Set gtmtypes("shm_forw_multi_t",6,"off")=12 + Set gtmtypes("shm_forw_multi_t",6,"len")=4 + Set gtmtypes("shm_forw_multi_t",6,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain.bl")=6 + Set gtmtypes("shm_forw_multi_t",7,"name")="shm_forw_multi_t.token" + Set gtmtypes("shm_forw_multi_t",7,"off")=16 + Set gtmtypes("shm_forw_multi_t",7,"len")=8 + Set gtmtypes("shm_forw_multi_t",7,"type")="uint64_t" + Set gtmtypfldindx("shm_forw_multi_t","token")=7 + Set gtmtypes("shm_forw_multi_t",8,"name")="shm_forw_multi_t.time" + Set gtmtypes("shm_forw_multi_t",8,"off")=24 + Set gtmtypes("shm_forw_multi_t",8,"len")=4 + Set gtmtypes("shm_forw_multi_t",8,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","time")=8 + Set gtmtypes("shm_forw_multi_t",9,"name")="shm_forw_multi_t.recstat" + Set gtmtypes("shm_forw_multi_t",9,"off")=28 + Set gtmtypes("shm_forw_multi_t",9,"len")=4 + Set gtmtypes("shm_forw_multi_t",9,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","recstat")=9 + Set gtmtypes("shm_forw_multi_t",10,"name")="shm_forw_multi_t.num_reg_total" + Set gtmtypes("shm_forw_multi_t",10,"off")=32 + Set gtmtypes("shm_forw_multi_t",10,"len")=4 + Set gtmtypes("shm_forw_multi_t",10,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_total")=10 + Set gtmtypes("shm_forw_multi_t",11,"name")="shm_forw_multi_t.num_reg_seen_backward" + Set gtmtypes("shm_forw_multi_t",11,"off")=36 + Set gtmtypes("shm_forw_multi_t",11,"len")=4 + Set gtmtypes("shm_forw_multi_t",11,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_seen_backward")=11 + Set gtmtypes("shm_forw_multi_t",12,"name")="shm_forw_multi_t.num_reg_seen_forward" + Set gtmtypes("shm_forw_multi_t",12,"off")=40 + Set gtmtypes("shm_forw_multi_t",12,"len")=4 + Set gtmtypes("shm_forw_multi_t",12,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_seen_forward")=12 + Set gtmtypes("shm_forw_multi_t",13,"name")="shm_forw_multi_t.num_procs" + Set gtmtypes("shm_forw_multi_t",13,"off")=44 + Set gtmtypes("shm_forw_multi_t",13,"len")=4 + Set gtmtypes("shm_forw_multi_t",13,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_procs")=13 + Set gtmtypes("shm_forw_multi_t",14,"name")="shm_forw_multi_t.hash_index" + Set gtmtypes("shm_forw_multi_t",14,"off")=48 + Set gtmtypes("shm_forw_multi_t",14,"len")=4 + Set gtmtypes("shm_forw_multi_t",14,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","hash_index")=14 + Set gtmtypes("shm_forw_multi_t",15,"name")="shm_forw_multi_t.mur_latch" + Set gtmtypes("shm_forw_multi_t",15,"off")=52 + Set gtmtypes("shm_forw_multi_t",15,"len")=8 + Set gtmtypes("shm_forw_multi_t",15,"type")="global_latch_t" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch")=15 + Set gtmtypes("shm_forw_multi_t",16,"name")="shm_forw_multi_t.mur_latch.u" + Set gtmtypes("shm_forw_multi_t",16,"off")=52 + Set gtmtypes("shm_forw_multi_t",16,"len")=8 + Set gtmtypes("shm_forw_multi_t",16,"type")="union" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u")=16 + Set gtmtypes("shm_forw_multi_t",17,"name")="shm_forw_multi_t.mur_latch.u.pid_imgcnt" + Set gtmtypes("shm_forw_multi_t",17,"off")=52 + Set gtmtypes("shm_forw_multi_t",17,"len")=8 + Set gtmtypes("shm_forw_multi_t",17,"type")="uint64_t" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.pid_imgcnt")=17 + Set gtmtypes("shm_forw_multi_t",18,"name")="shm_forw_multi_t.mur_latch.u.parts" + Set gtmtypes("shm_forw_multi_t",18,"off")=52 + Set gtmtypes("shm_forw_multi_t",18,"len")=8 + Set gtmtypes("shm_forw_multi_t",18,"type")="struct" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts")=18 + Set gtmtypes("shm_forw_multi_t",19,"name")="shm_forw_multi_t.mur_latch.u.parts.latch_pid" + Set gtmtypes("shm_forw_multi_t",19,"off")=52 + Set gtmtypes("shm_forw_multi_t",19,"len")=4 + Set gtmtypes("shm_forw_multi_t",19,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts.latch_pid")=19 + Set gtmtypes("shm_forw_multi_t",20,"name")="shm_forw_multi_t.mur_latch.u.parts.latch_word" + Set gtmtypes("shm_forw_multi_t",20,"off")=56 + Set gtmtypes("shm_forw_multi_t",20,"len")=4 + Set gtmtypes("shm_forw_multi_t",20,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts.latch_word")=20 + ; + Set gtmtypes("shm_parms")="struct" + Set gtmtypes("shm_parms",0)=3 + Set gtmtypes("shm_parms","len")=12 + Set gtmtypes("shm_parms",1,"name")="shm_parms.sgmnt_siz" + Set gtmtypes("shm_parms",1,"off")=0 + Set gtmtypes("shm_parms",1,"len")=4 + Set gtmtypes("shm_parms",1,"type")="ssize_t" + Set gtmtypfldindx("shm_parms","sgmnt_siz")=1 + Set gtmtypes("shm_parms",2,"name")="shm_parms.shmid" + Set gtmtypes("shm_parms",2,"off")=4 + Set gtmtypes("shm_parms",2,"len")=4 + Set gtmtypes("shm_parms",2,"type")="int" + Set gtmtypfldindx("shm_parms","shmid")=2 + Set gtmtypes("shm_parms",3,"name")="shm_parms.key" + Set gtmtypes("shm_parms",3,"off")=8 + Set gtmtypes("shm_parms",3,"len")=4 + Set gtmtypes("shm_parms",3,"type")="key_t" + Set gtmtypfldindx("shm_parms","key")=3 + ; + Set gtmtypes("shm_reg_ctl_t")="struct" + Set gtmtypes("shm_reg_ctl_t",0)=9 + Set gtmtypes("shm_reg_ctl_t","len")=56 + Set gtmtypes("shm_reg_ctl_t",1,"name")="shm_reg_ctl_t.shm_forw_multi" + Set gtmtypes("shm_reg_ctl_t",1,"off")=0 + Set gtmtypes("shm_reg_ctl_t",1,"len")=4 + Set gtmtypes("shm_reg_ctl_t",1,"type")="addr" + Set gtmtypfldindx("shm_reg_ctl_t","shm_forw_multi")=1 + Set gtmtypes("shm_reg_ctl_t",2,"name")="shm_reg_ctl_t.consist_jnl_seqno" + Set gtmtypes("shm_reg_ctl_t",2,"off")=4 + Set gtmtypes("shm_reg_ctl_t",2,"len")=8 + Set gtmtypes("shm_reg_ctl_t",2,"type")="uint64_t" + Set gtmtypfldindx("shm_reg_ctl_t","consist_jnl_seqno")=2 + Set gtmtypes("shm_reg_ctl_t",3,"name")="shm_reg_ctl_t.jnlext_shm_size" + Set gtmtypes("shm_reg_ctl_t",3,"off")=12 + Set gtmtypes("shm_reg_ctl_t",3,"len")=4 + Set gtmtypes("shm_reg_ctl_t",3,"type")="size_t" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_shm_size")=3 + Set gtmtypes("shm_reg_ctl_t",4,"name")="shm_reg_ctl_t.owning_pid" + Set gtmtypes("shm_reg_ctl_t",4,"off")=16 + Set gtmtypes("shm_reg_ctl_t",4,"len")=4 + Set gtmtypes("shm_reg_ctl_t",4,"type")="pid_t" + Set gtmtypfldindx("shm_reg_ctl_t","owning_pid")=4 + Set gtmtypes("shm_reg_ctl_t",5,"name")="shm_reg_ctl_t.err_cnt" + Set gtmtypes("shm_reg_ctl_t",5,"off")=20 + Set gtmtypes("shm_reg_ctl_t",5,"len")=4 + Set gtmtypes("shm_reg_ctl_t",5,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","err_cnt")=5 + Set gtmtypes("shm_reg_ctl_t",6,"name")="shm_reg_ctl_t.wrn_count" + Set gtmtypes("shm_reg_ctl_t",6,"off")=24 + Set gtmtypes("shm_reg_ctl_t",6,"len")=4 + Set gtmtypes("shm_reg_ctl_t",6,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","wrn_count")=6 + Set gtmtypes("shm_reg_ctl_t",7,"name")="shm_reg_ctl_t.extr_file_created" + Set gtmtypes("shm_reg_ctl_t",7,"off")=28 + Set gtmtypes("shm_reg_ctl_t",7,"len")=12 + Set gtmtypes("shm_reg_ctl_t",7,"type")="boolean_t" + Set gtmtypfldindx("shm_reg_ctl_t","extr_file_created")=7 + Set gtmtypes("shm_reg_ctl_t",7,"dim")=3 + Set gtmtypes("shm_reg_ctl_t",8,"name")="shm_reg_ctl_t.jnlext_shmid" + Set gtmtypes("shm_reg_ctl_t",8,"off")=40 + Set gtmtypes("shm_reg_ctl_t",8,"len")=4 + Set gtmtypes("shm_reg_ctl_t",8,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_shmid")=8 + Set gtmtypes("shm_reg_ctl_t",9,"name")="shm_reg_ctl_t.jnlext_list_size" + Set gtmtypes("shm_reg_ctl_t",9,"off")=44 + Set gtmtypes("shm_reg_ctl_t",9,"len")=12 + Set gtmtypes("shm_reg_ctl_t",9,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_list_size")=9 + Set gtmtypes("shm_reg_ctl_t",9,"dim")=3 + ; + Set gtmtypes("shm_snapshot_t")="struct" + Set gtmtypes("shm_snapshot_t",0)=587 + Set gtmtypes("shm_snapshot_t","len")=12360 + Set gtmtypes("shm_snapshot_t",1,"name")="shm_snapshot_t.ss_info" + Set gtmtypes("shm_snapshot_t",1,"off")=0 + Set gtmtypes("shm_snapshot_t",1,"len")=4136 + Set gtmtypes("shm_snapshot_t",1,"type")="snapshot_info_t" + Set gtmtypfldindx("shm_snapshot_t","ss_info")=1 + Set gtmtypes("shm_snapshot_t",2,"name")="shm_snapshot_t.ss_info.ss_pid" + Set gtmtypes("shm_snapshot_t",2,"off")=0 + Set gtmtypes("shm_snapshot_t",2,"len")=4 + Set gtmtypes("shm_snapshot_t",2,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_pid")=2 + Set gtmtypes("shm_snapshot_t",3,"name")="shm_snapshot_t.ss_info.snapshot_tn" + Set gtmtypes("shm_snapshot_t",3,"off")=4 + Set gtmtypes("shm_snapshot_t",3,"len")=8 + Set gtmtypes("shm_snapshot_t",3,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","ss_info.snapshot_tn")=3 + Set gtmtypes("shm_snapshot_t",4,"name")="shm_snapshot_t.ss_info.db_blk_size" + Set gtmtypes("shm_snapshot_t",4,"off")=12 + Set gtmtypes("shm_snapshot_t",4,"len")=4 + Set gtmtypes("shm_snapshot_t",4,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.db_blk_size")=4 + Set gtmtypes("shm_snapshot_t",5,"name")="shm_snapshot_t.ss_info.free_blks" + Set gtmtypes("shm_snapshot_t",5,"off")=16 + Set gtmtypes("shm_snapshot_t",5,"len")=4 + Set gtmtypes("shm_snapshot_t",5,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.free_blks")=5 + Set gtmtypes("shm_snapshot_t",6,"name")="shm_snapshot_t.ss_info.total_blks" + Set gtmtypes("shm_snapshot_t",6,"off")=20 + Set gtmtypes("shm_snapshot_t",6,"len")=4 + Set gtmtypes("shm_snapshot_t",6,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.total_blks")=6 + Set gtmtypes("shm_snapshot_t",7,"name")="shm_snapshot_t.ss_info.shadow_file" + Set gtmtypes("shm_snapshot_t",7,"off")=24 + Set gtmtypes("shm_snapshot_t",7,"len")=4097 + Set gtmtypes("shm_snapshot_t",7,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","ss_info.shadow_file")=7 + Set gtmtypes("shm_snapshot_t",8,"name")="shm_snapshot_t.ss_info.shadow_vbn" + Set gtmtypes("shm_snapshot_t",8,"off")=4124 + Set gtmtypes("shm_snapshot_t",8,"len")=4 + Set gtmtypes("shm_snapshot_t",8,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.shadow_vbn")=8 + Set gtmtypes("shm_snapshot_t",9,"name")="shm_snapshot_t.ss_info.ss_shmid" + Set gtmtypes("shm_snapshot_t",9,"off")=4128 + Set gtmtypes("shm_snapshot_t",9,"len")=4 + Set gtmtypes("shm_snapshot_t",9,"type")="long" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_shmid")=9 + Set gtmtypes("shm_snapshot_t",10,"name")="shm_snapshot_t.ss_info.ss_shmsize" + Set gtmtypes("shm_snapshot_t",10,"off")=4132 + Set gtmtypes("shm_snapshot_t",10,"len")=4 + Set gtmtypes("shm_snapshot_t",10,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_shmsize")=10 + Set gtmtypes("shm_snapshot_t",11,"name")="shm_snapshot_t.failure_errno" + Set gtmtypes("shm_snapshot_t",11,"off")=4136 + Set gtmtypes("shm_snapshot_t",11,"len")=4 + Set gtmtypes("shm_snapshot_t",11,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","failure_errno")=11 + Set gtmtypes("shm_snapshot_t",12,"name")="shm_snapshot_t.failed_pid" + Set gtmtypes("shm_snapshot_t",12,"off")=4140 + Set gtmtypes("shm_snapshot_t",12,"len")=4 + Set gtmtypes("shm_snapshot_t",12,"type")="pid_t" + Set gtmtypfldindx("shm_snapshot_t","failed_pid")=12 + Set gtmtypes("shm_snapshot_t",13,"name")="shm_snapshot_t.in_use" + Set gtmtypes("shm_snapshot_t",13,"off")=4144 + Set gtmtypes("shm_snapshot_t",13,"len")=4 + Set gtmtypes("shm_snapshot_t",13,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","in_use")=13 + Set gtmtypes("shm_snapshot_t",14,"name")="shm_snapshot_t.preserve_snapshot" + Set gtmtypes("shm_snapshot_t",14,"off")=4148 + Set gtmtypes("shm_snapshot_t",14,"len")=4 + Set gtmtypes("shm_snapshot_t",14,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","preserve_snapshot")=14 + Set gtmtypes("shm_snapshot_t",15,"name")="shm_snapshot_t.bitmap_latch" + Set gtmtypes("shm_snapshot_t",15,"off")=4152 + Set gtmtypes("shm_snapshot_t",15,"len")=8 + Set gtmtypes("shm_snapshot_t",15,"type")="global_latch_t" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch")=15 + Set gtmtypes("shm_snapshot_t",16,"name")="shm_snapshot_t.bitmap_latch.u" + Set gtmtypes("shm_snapshot_t",16,"off")=4152 + Set gtmtypes("shm_snapshot_t",16,"len")=8 + Set gtmtypes("shm_snapshot_t",16,"type")="union" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u")=16 + Set gtmtypes("shm_snapshot_t",17,"name")="shm_snapshot_t.bitmap_latch.u.pid_imgcnt" + Set gtmtypes("shm_snapshot_t",17,"off")=4152 + Set gtmtypes("shm_snapshot_t",17,"len")=8 + Set gtmtypes("shm_snapshot_t",17,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.pid_imgcnt")=17 + Set gtmtypes("shm_snapshot_t",18,"name")="shm_snapshot_t.bitmap_latch.u.parts" + Set gtmtypes("shm_snapshot_t",18,"off")=4152 + Set gtmtypes("shm_snapshot_t",18,"len")=8 + Set gtmtypes("shm_snapshot_t",18,"type")="struct" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts")=18 + Set gtmtypes("shm_snapshot_t",19,"name")="shm_snapshot_t.bitmap_latch.u.parts.latch_pid" + Set gtmtypes("shm_snapshot_t",19,"off")=4152 + Set gtmtypes("shm_snapshot_t",19,"len")=4 + Set gtmtypes("shm_snapshot_t",19,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts.latch_pid")=19 + Set gtmtypes("shm_snapshot_t",20,"name")="shm_snapshot_t.bitmap_latch.u.parts.latch_word" + Set gtmtypes("shm_snapshot_t",20,"off")=4156 + Set gtmtypes("shm_snapshot_t",20,"len")=4 + Set gtmtypes("shm_snapshot_t",20,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts.latch_word")=20 + Set gtmtypes("shm_snapshot_t",21,"name")="shm_snapshot_t.ss_tn_count" + Set gtmtypes("shm_snapshot_t",21,"off")=4160 + Set gtmtypes("shm_snapshot_t",21,"len")=8 + Set gtmtypes("shm_snapshot_t",21,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","ss_tn_count")=21 + Set gtmtypes("shm_snapshot_t",22,"name")="shm_snapshot_t.shadow_file_header" + Set gtmtypes("shm_snapshot_t",22,"off")=4168 + Set gtmtypes("shm_snapshot_t",22,"len")=8192 + Set gtmtypes("shm_snapshot_t",22,"type")="sgmnt_data" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header")=22 + Set gtmtypes("shm_snapshot_t",23,"name")="shm_snapshot_t.shadow_file_header.label" + Set gtmtypes("shm_snapshot_t",23,"off")=4168 + Set gtmtypes("shm_snapshot_t",23,"len")=12 + Set gtmtypes("shm_snapshot_t",23,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.label")=23 + Set gtmtypes("shm_snapshot_t",24,"name")="shm_snapshot_t.shadow_file_header.blk_size" + Set gtmtypes("shm_snapshot_t",24,"off")=4180 + Set gtmtypes("shm_snapshot_t",24,"len")=4 + Set gtmtypes("shm_snapshot_t",24,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blk_size")=24 + Set gtmtypes("shm_snapshot_t",25,"name")="shm_snapshot_t.shadow_file_header.master_map_len" + Set gtmtypes("shm_snapshot_t",25,"off")=4184 + Set gtmtypes("shm_snapshot_t",25,"len")=4 + Set gtmtypes("shm_snapshot_t",25,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.master_map_len")=25 + Set gtmtypes("shm_snapshot_t",26,"name")="shm_snapshot_t.shadow_file_header.bplmap" + Set gtmtypes("shm_snapshot_t",26,"off")=4188 + Set gtmtypes("shm_snapshot_t",26,"len")=4 + Set gtmtypes("shm_snapshot_t",26,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bplmap")=26 + Set gtmtypes("shm_snapshot_t",27,"name")="shm_snapshot_t.shadow_file_header.start_vbn" + Set gtmtypes("shm_snapshot_t",27,"off")=4192 + Set gtmtypes("shm_snapshot_t",27,"len")=4 + Set gtmtypes("shm_snapshot_t",27,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.start_vbn")=27 + Set gtmtypes("shm_snapshot_t",28,"name")="shm_snapshot_t.shadow_file_header.acc_meth" + Set gtmtypes("shm_snapshot_t",28,"off")=4196 + Set gtmtypes("shm_snapshot_t",28,"len")=4 + Set gtmtypes("shm_snapshot_t",28,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.acc_meth")=28 + Set gtmtypes("shm_snapshot_t",29,"name")="shm_snapshot_t.shadow_file_header.max_bts" + Set gtmtypes("shm_snapshot_t",29,"off")=4200 + Set gtmtypes("shm_snapshot_t",29,"len")=4 + Set gtmtypes("shm_snapshot_t",29,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_bts")=29 + Set gtmtypes("shm_snapshot_t",30,"name")="shm_snapshot_t.shadow_file_header.n_bts" + Set gtmtypes("shm_snapshot_t",30,"off")=4204 + Set gtmtypes("shm_snapshot_t",30,"len")=4 + Set gtmtypes("shm_snapshot_t",30,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bts")=30 + Set gtmtypes("shm_snapshot_t",31,"name")="shm_snapshot_t.shadow_file_header.bt_buckets" + Set gtmtypes("shm_snapshot_t",31,"off")=4208 + Set gtmtypes("shm_snapshot_t",31,"len")=4 + Set gtmtypes("shm_snapshot_t",31,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_buckets")=31 + Set gtmtypes("shm_snapshot_t",32,"name")="shm_snapshot_t.shadow_file_header.reserved_bytes" + Set gtmtypes("shm_snapshot_t",32,"off")=4212 + Set gtmtypes("shm_snapshot_t",32,"len")=4 + Set gtmtypes("shm_snapshot_t",32,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bytes")=32 + Set gtmtypes("shm_snapshot_t",33,"name")="shm_snapshot_t.shadow_file_header.max_rec_size" + Set gtmtypes("shm_snapshot_t",33,"off")=4216 + Set gtmtypes("shm_snapshot_t",33,"len")=4 + Set gtmtypes("shm_snapshot_t",33,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_rec_size")=33 + Set gtmtypes("shm_snapshot_t",34,"name")="shm_snapshot_t.shadow_file_header.max_key_size" + Set gtmtypes("shm_snapshot_t",34,"off")=4220 + Set gtmtypes("shm_snapshot_t",34,"len")=4 + Set gtmtypes("shm_snapshot_t",34,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_key_size")=34 + Set gtmtypes("shm_snapshot_t",35,"name")="shm_snapshot_t.shadow_file_header.lock_space_size" + Set gtmtypes("shm_snapshot_t",35,"off")=4224 + Set gtmtypes("shm_snapshot_t",35,"len")=4 + Set gtmtypes("shm_snapshot_t",35,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lock_space_size")=35 + Set gtmtypes("shm_snapshot_t",36,"name")="shm_snapshot_t.shadow_file_header.extension_size" + Set gtmtypes("shm_snapshot_t",36,"off")=4228 + Set gtmtypes("shm_snapshot_t",36,"len")=4 + Set gtmtypes("shm_snapshot_t",36,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.extension_size")=36 + Set gtmtypes("shm_snapshot_t",37,"name")="shm_snapshot_t.shadow_file_header.def_coll" + Set gtmtypes("shm_snapshot_t",37,"off")=4232 + Set gtmtypes("shm_snapshot_t",37,"len")=4 + Set gtmtypes("shm_snapshot_t",37,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.def_coll")=37 + Set gtmtypes("shm_snapshot_t",38,"name")="shm_snapshot_t.shadow_file_header.def_coll_ver" + Set gtmtypes("shm_snapshot_t",38,"off")=4236 + Set gtmtypes("shm_snapshot_t",38,"len")=4 + Set gtmtypes("shm_snapshot_t",38,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.def_coll_ver")=38 + Set gtmtypes("shm_snapshot_t",39,"name")="shm_snapshot_t.shadow_file_header.std_null_coll" + Set gtmtypes("shm_snapshot_t",39,"off")=4240 + Set gtmtypes("shm_snapshot_t",39,"len")=4 + Set gtmtypes("shm_snapshot_t",39,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.std_null_coll")=39 + Set gtmtypes("shm_snapshot_t",40,"name")="shm_snapshot_t.shadow_file_header.null_subs" + Set gtmtypes("shm_snapshot_t",40,"off")=4244 + Set gtmtypes("shm_snapshot_t",40,"len")=4 + Set gtmtypes("shm_snapshot_t",40,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.null_subs")=40 + Set gtmtypes("shm_snapshot_t",41,"name")="shm_snapshot_t.shadow_file_header.free_space" + Set gtmtypes("shm_snapshot_t",41,"off")=4248 + Set gtmtypes("shm_snapshot_t",41,"len")=4 + Set gtmtypes("shm_snapshot_t",41,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.free_space")=41 + Set gtmtypes("shm_snapshot_t",42,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms" + Set gtmtypes("shm_snapshot_t",42,"off")=4252 + Set gtmtypes("shm_snapshot_t",42,"len")=16 + Set gtmtypes("shm_snapshot_t",42,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms")=42 + Set gtmtypes("shm_snapshot_t",43,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("shm_snapshot_t",43,"off")=4252 + Set gtmtypes("shm_snapshot_t",43,"len")=4 + Set gtmtypes("shm_snapshot_t",43,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_hard_spin_count")=43 + Set gtmtypes("shm_snapshot_t",44,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("shm_snapshot_t",44,"off")=4256 + Set gtmtypes("shm_snapshot_t",44,"len")=4 + Set gtmtypes("shm_snapshot_t",44,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count")=44 + Set gtmtypes("shm_snapshot_t",45,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("shm_snapshot_t",45,"off")=4260 + Set gtmtypes("shm_snapshot_t",45,"len")=4 + Set gtmtypes("shm_snapshot_t",45,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask")=45 + Set gtmtypes("shm_snapshot_t",46,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("shm_snapshot_t",46,"off")=4264 + Set gtmtypes("shm_snapshot_t",46,"len")=4 + Set gtmtypes("shm_snapshot_t",46,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size")=46 + Set gtmtypes("shm_snapshot_t",47,"name")="shm_snapshot_t.shadow_file_header.max_update_array_size" + Set gtmtypes("shm_snapshot_t",47,"off")=4268 + Set gtmtypes("shm_snapshot_t",47,"len")=4 + Set gtmtypes("shm_snapshot_t",47,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_update_array_size")=47 + Set gtmtypes("shm_snapshot_t",48,"name")="shm_snapshot_t.shadow_file_header.max_non_bm_update_array_size" + Set gtmtypes("shm_snapshot_t",48,"off")=4272 + Set gtmtypes("shm_snapshot_t",48,"len")=4 + Set gtmtypes("shm_snapshot_t",48,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_non_bm_update_array_size")=48 + Set gtmtypes("shm_snapshot_t",49,"name")="shm_snapshot_t.shadow_file_header.file_corrupt" + Set gtmtypes("shm_snapshot_t",49,"off")=4276 + Set gtmtypes("shm_snapshot_t",49,"len")=4 + Set gtmtypes("shm_snapshot_t",49,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.file_corrupt")=49 + Set gtmtypes("shm_snapshot_t",50,"name")="shm_snapshot_t.shadow_file_header.minor_dbver" + Set gtmtypes("shm_snapshot_t",50,"off")=4280 + Set gtmtypes("shm_snapshot_t",50,"len")=4 + Set gtmtypes("shm_snapshot_t",50,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.minor_dbver")=50 + Set gtmtypes("shm_snapshot_t",51,"name")="shm_snapshot_t.shadow_file_header.jnl_checksum" + Set gtmtypes("shm_snapshot_t",51,"off")=4284 + Set gtmtypes("shm_snapshot_t",51,"len")=4 + Set gtmtypes("shm_snapshot_t",51,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_checksum")=51 + Set gtmtypes("shm_snapshot_t",52,"name")="shm_snapshot_t.shadow_file_header.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("shm_snapshot_t",52,"off")=4288 + Set gtmtypes("shm_snapshot_t",52,"len")=4 + Set gtmtypes("shm_snapshot_t",52,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcs_phase2_commit_wait_spincnt")=52 + Set gtmtypes("shm_snapshot_t",53,"name")="shm_snapshot_t.shadow_file_header.last_mdb_ver" + Set gtmtypes("shm_snapshot_t",53,"off")=4292 + Set gtmtypes("shm_snapshot_t",53,"len")=4 + Set gtmtypes("shm_snapshot_t",53,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_mdb_ver")=53 + Set gtmtypes("shm_snapshot_t",54,"name")="shm_snapshot_t.shadow_file_header.filler_created" + Set gtmtypes("shm_snapshot_t",54,"off")=4296 + Set gtmtypes("shm_snapshot_t",54,"len")=52 + Set gtmtypes("shm_snapshot_t",54,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_created")=54 + Set gtmtypes("shm_snapshot_t",55,"name")="shm_snapshot_t.shadow_file_header.createinprogress" + Set gtmtypes("shm_snapshot_t",55,"off")=4348 + Set gtmtypes("shm_snapshot_t",55,"len")=4 + Set gtmtypes("shm_snapshot_t",55,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.createinprogress")=55 + Set gtmtypes("shm_snapshot_t",56,"name")="shm_snapshot_t.shadow_file_header.creation_time4" + Set gtmtypes("shm_snapshot_t",56,"off")=4352 + Set gtmtypes("shm_snapshot_t",56,"len")=4 + Set gtmtypes("shm_snapshot_t",56,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_time4")=56 + Set gtmtypes("shm_snapshot_t",57,"name")="shm_snapshot_t.shadow_file_header.creation_filler_8byte" + Set gtmtypes("shm_snapshot_t",57,"off")=4356 + Set gtmtypes("shm_snapshot_t",57,"len")=4 + Set gtmtypes("shm_snapshot_t",57,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_filler_8byte")=57 + Set gtmtypes("shm_snapshot_t",58,"name")="shm_snapshot_t.shadow_file_header.max_tn" + Set gtmtypes("shm_snapshot_t",58,"off")=4360 + Set gtmtypes("shm_snapshot_t",58,"len")=8 + Set gtmtypes("shm_snapshot_t",58,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_tn")=58 + Set gtmtypes("shm_snapshot_t",59,"name")="shm_snapshot_t.shadow_file_header.max_tn_warn" + Set gtmtypes("shm_snapshot_t",59,"off")=4368 + Set gtmtypes("shm_snapshot_t",59,"len")=8 + Set gtmtypes("shm_snapshot_t",59,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_tn_warn")=59 + Set gtmtypes("shm_snapshot_t",60,"name")="shm_snapshot_t.shadow_file_header.last_inc_backup" + Set gtmtypes("shm_snapshot_t",60,"off")=4376 + Set gtmtypes("shm_snapshot_t",60,"len")=8 + Set gtmtypes("shm_snapshot_t",60,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_inc_backup")=60 + Set gtmtypes("shm_snapshot_t",61,"name")="shm_snapshot_t.shadow_file_header.last_com_backup" + Set gtmtypes("shm_snapshot_t",61,"off")=4384 + Set gtmtypes("shm_snapshot_t",61,"len")=8 + Set gtmtypes("shm_snapshot_t",61,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_com_backup")=61 + Set gtmtypes("shm_snapshot_t",62,"name")="shm_snapshot_t.shadow_file_header.last_rec_backup" + Set gtmtypes("shm_snapshot_t",62,"off")=4392 + Set gtmtypes("shm_snapshot_t",62,"len")=8 + Set gtmtypes("shm_snapshot_t",62,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_rec_backup")=62 + Set gtmtypes("shm_snapshot_t",63,"name")="shm_snapshot_t.shadow_file_header.last_inc_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",63,"off")=4400 + Set gtmtypes("shm_snapshot_t",63,"len")=4 + Set gtmtypes("shm_snapshot_t",63,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_inc_bkup_last_blk")=63 + Set gtmtypes("shm_snapshot_t",64,"name")="shm_snapshot_t.shadow_file_header.last_com_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",64,"off")=4404 + Set gtmtypes("shm_snapshot_t",64,"len")=4 + Set gtmtypes("shm_snapshot_t",64,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_com_bkup_last_blk")=64 + Set gtmtypes("shm_snapshot_t",65,"name")="shm_snapshot_t.shadow_file_header.last_rec_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",65,"off")=4408 + Set gtmtypes("shm_snapshot_t",65,"len")=4 + Set gtmtypes("shm_snapshot_t",65,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_rec_bkup_last_blk")=65 + Set gtmtypes("shm_snapshot_t",66,"name")="shm_snapshot_t.shadow_file_header.reorg_restart_block" + Set gtmtypes("shm_snapshot_t",66,"off")=4412 + Set gtmtypes("shm_snapshot_t",66,"len")=4 + Set gtmtypes("shm_snapshot_t",66,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_restart_block")=66 + Set gtmtypes("shm_snapshot_t",67,"name")="shm_snapshot_t.shadow_file_header.filler_256" + Set gtmtypes("shm_snapshot_t",67,"off")=4416 + Set gtmtypes("shm_snapshot_t",67,"len")=8 + Set gtmtypes("shm_snapshot_t",67,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_256")=67 + Set gtmtypes("shm_snapshot_t",68,"name")="shm_snapshot_t.shadow_file_header.now_running" + Set gtmtypes("shm_snapshot_t",68,"off")=4424 + Set gtmtypes("shm_snapshot_t",68,"len")=36 + Set gtmtypes("shm_snapshot_t",68,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.now_running")=68 + Set gtmtypes("shm_snapshot_t",69,"name")="shm_snapshot_t.shadow_file_header.filler_owner_node" + Set gtmtypes("shm_snapshot_t",69,"off")=4460 + Set gtmtypes("shm_snapshot_t",69,"len")=4 + Set gtmtypes("shm_snapshot_t",69,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_owner_node")=69 + Set gtmtypes("shm_snapshot_t",70,"name")="shm_snapshot_t.shadow_file_header.image_count" + Set gtmtypes("shm_snapshot_t",70,"off")=4464 + Set gtmtypes("shm_snapshot_t",70,"len")=4 + Set gtmtypes("shm_snapshot_t",70,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.image_count")=70 + Set gtmtypes("shm_snapshot_t",71,"name")="shm_snapshot_t.shadow_file_header.freeze" + Set gtmtypes("shm_snapshot_t",71,"off")=4468 + Set gtmtypes("shm_snapshot_t",71,"len")=4 + Set gtmtypes("shm_snapshot_t",71,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.freeze")=71 + Set gtmtypes("shm_snapshot_t",72,"name")="shm_snapshot_t.shadow_file_header.kill_in_prog" + Set gtmtypes("shm_snapshot_t",72,"off")=4472 + Set gtmtypes("shm_snapshot_t",72,"len")=4 + Set gtmtypes("shm_snapshot_t",72,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.kill_in_prog")=72 + Set gtmtypes("shm_snapshot_t",73,"name")="shm_snapshot_t.shadow_file_header.abandoned_kills" + Set gtmtypes("shm_snapshot_t",73,"off")=4476 + Set gtmtypes("shm_snapshot_t",73,"len")=4 + Set gtmtypes("shm_snapshot_t",73,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.abandoned_kills")=73 + Set gtmtypes("shm_snapshot_t",74,"name")="shm_snapshot_t.shadow_file_header.filler_320" + Set gtmtypes("shm_snapshot_t",74,"off")=4480 + Set gtmtypes("shm_snapshot_t",74,"len")=8 + Set gtmtypes("shm_snapshot_t",74,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_320")=74 + Set gtmtypes("shm_snapshot_t",75,"name")="shm_snapshot_t.shadow_file_header.tn_upgrd_blks_0" + Set gtmtypes("shm_snapshot_t",75,"off")=4488 + Set gtmtypes("shm_snapshot_t",75,"len")=8 + Set gtmtypes("shm_snapshot_t",75,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tn_upgrd_blks_0")=75 + Set gtmtypes("shm_snapshot_t",76,"name")="shm_snapshot_t.shadow_file_header.desired_db_format_tn" + Set gtmtypes("shm_snapshot_t",76,"off")=4496 + Set gtmtypes("shm_snapshot_t",76,"len")=8 + Set gtmtypes("shm_snapshot_t",76,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.desired_db_format_tn")=76 + Set gtmtypes("shm_snapshot_t",77,"name")="shm_snapshot_t.shadow_file_header.reorg_db_fmt_start_tn" + Set gtmtypes("shm_snapshot_t",77,"off")=4504 + Set gtmtypes("shm_snapshot_t",77,"len")=8 + Set gtmtypes("shm_snapshot_t",77,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_db_fmt_start_tn")=77 + Set gtmtypes("shm_snapshot_t",78,"name")="shm_snapshot_t.shadow_file_header.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("shm_snapshot_t",78,"off")=4512 + Set gtmtypes("shm_snapshot_t",78,"len")=4 + Set gtmtypes("shm_snapshot_t",78,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_upgrd_dwngrd_restart_block")=78 + Set gtmtypes("shm_snapshot_t",79,"name")="shm_snapshot_t.shadow_file_header.blks_to_upgrd" + Set gtmtypes("shm_snapshot_t",79,"off")=4516 + Set gtmtypes("shm_snapshot_t",79,"len")=4 + Set gtmtypes("shm_snapshot_t",79,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blks_to_upgrd")=79 + Set gtmtypes("shm_snapshot_t",80,"name")="shm_snapshot_t.shadow_file_header.blks_to_upgrd_subzero_error" + Set gtmtypes("shm_snapshot_t",80,"off")=4520 + Set gtmtypes("shm_snapshot_t",80,"len")=4 + Set gtmtypes("shm_snapshot_t",80,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blks_to_upgrd_subzero_error")=80 + Set gtmtypes("shm_snapshot_t",81,"name")="shm_snapshot_t.shadow_file_header.desired_db_format" + Set gtmtypes("shm_snapshot_t",81,"off")=4524 + Set gtmtypes("shm_snapshot_t",81,"len")=4 + Set gtmtypes("shm_snapshot_t",81,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.desired_db_format")=81 + Set gtmtypes("shm_snapshot_t",82,"name")="shm_snapshot_t.shadow_file_header.fully_upgraded" + Set gtmtypes("shm_snapshot_t",82,"off")=4528 + Set gtmtypes("shm_snapshot_t",82,"len")=4 + Set gtmtypes("shm_snapshot_t",82,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.fully_upgraded")=82 + Set gtmtypes("shm_snapshot_t",83,"name")="shm_snapshot_t.shadow_file_header.db_got_to_v5_once" + Set gtmtypes("shm_snapshot_t",83,"off")=4532 + Set gtmtypes("shm_snapshot_t",83,"len")=4 + Set gtmtypes("shm_snapshot_t",83,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_got_to_v5_once")=83 + Set gtmtypes("shm_snapshot_t",84,"name")="shm_snapshot_t.shadow_file_header.opened_by_gtmv53" + Set gtmtypes("shm_snapshot_t",84,"off")=4536 + Set gtmtypes("shm_snapshot_t",84,"len")=4 + Set gtmtypes("shm_snapshot_t",84,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.opened_by_gtmv53")=84 + Set gtmtypes("shm_snapshot_t",85,"name")="shm_snapshot_t.shadow_file_header.filler_384" + Set gtmtypes("shm_snapshot_t",85,"off")=4540 + Set gtmtypes("shm_snapshot_t",85,"len")=12 + Set gtmtypes("shm_snapshot_t",85,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_384")=85 + Set gtmtypes("shm_snapshot_t",86,"name")="shm_snapshot_t.shadow_file_header.trans_hist" + Set gtmtypes("shm_snapshot_t",86,"off")=4552 + Set gtmtypes("shm_snapshot_t",86,"len")=56 + Set gtmtypes("shm_snapshot_t",86,"type")="th_index" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist")=86 + Set gtmtypes("shm_snapshot_t",87,"name")="shm_snapshot_t.shadow_file_header.trans_hist.curr_tn" + Set gtmtypes("shm_snapshot_t",87,"off")=4552 + Set gtmtypes("shm_snapshot_t",87,"len")=8 + Set gtmtypes("shm_snapshot_t",87,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.curr_tn")=87 + Set gtmtypes("shm_snapshot_t",88,"name")="shm_snapshot_t.shadow_file_header.trans_hist.early_tn" + Set gtmtypes("shm_snapshot_t",88,"off")=4560 + Set gtmtypes("shm_snapshot_t",88,"len")=8 + Set gtmtypes("shm_snapshot_t",88,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.early_tn")=88 + Set gtmtypes("shm_snapshot_t",89,"name")="shm_snapshot_t.shadow_file_header.trans_hist.last_mm_sync" + Set gtmtypes("shm_snapshot_t",89,"off")=4568 + Set gtmtypes("shm_snapshot_t",89,"len")=8 + Set gtmtypes("shm_snapshot_t",89,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.last_mm_sync")=89 + Set gtmtypes("shm_snapshot_t",90,"name")="shm_snapshot_t.shadow_file_header.trans_hist.filler_8byte" + Set gtmtypes("shm_snapshot_t",90,"off")=4576 + Set gtmtypes("shm_snapshot_t",90,"len")=8 + Set gtmtypes("shm_snapshot_t",90,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.filler_8byte")=90 + Set gtmtypes("shm_snapshot_t",91,"name")="shm_snapshot_t.shadow_file_header.trans_hist.mm_tn" + Set gtmtypes("shm_snapshot_t",91,"off")=4584 + Set gtmtypes("shm_snapshot_t",91,"len")=8 + Set gtmtypes("shm_snapshot_t",91,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.mm_tn")=91 + Set gtmtypes("shm_snapshot_t",92,"name")="shm_snapshot_t.shadow_file_header.trans_hist.lock_sequence" + Set gtmtypes("shm_snapshot_t",92,"off")=4592 + Set gtmtypes("shm_snapshot_t",92,"len")=4 + Set gtmtypes("shm_snapshot_t",92,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.lock_sequence")=92 + Set gtmtypes("shm_snapshot_t",93,"name")="shm_snapshot_t.shadow_file_header.trans_hist.ccp_jnl_filesize" + Set gtmtypes("shm_snapshot_t",93,"off")=4596 + Set gtmtypes("shm_snapshot_t",93,"len")=4 + Set gtmtypes("shm_snapshot_t",93,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.ccp_jnl_filesize")=93 + Set gtmtypes("shm_snapshot_t",94,"name")="shm_snapshot_t.shadow_file_header.trans_hist.total_blks" + Set gtmtypes("shm_snapshot_t",94,"off")=4600 + Set gtmtypes("shm_snapshot_t",94,"len")=4 + Set gtmtypes("shm_snapshot_t",94,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.total_blks")=94 + Set gtmtypes("shm_snapshot_t",95,"name")="shm_snapshot_t.shadow_file_header.trans_hist.free_blocks" + Set gtmtypes("shm_snapshot_t",95,"off")=4604 + Set gtmtypes("shm_snapshot_t",95,"len")=4 + Set gtmtypes("shm_snapshot_t",95,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.free_blocks")=95 + Set gtmtypes("shm_snapshot_t",96,"name")="shm_snapshot_t.shadow_file_header.filler_trans_hist" + Set gtmtypes("shm_snapshot_t",96,"off")=4608 + Set gtmtypes("shm_snapshot_t",96,"len")=8 + Set gtmtypes("shm_snapshot_t",96,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_trans_hist")=96 + Set gtmtypes("shm_snapshot_t",97,"name")="shm_snapshot_t.shadow_file_header.flush_time" + Set gtmtypes("shm_snapshot_t",97,"off")=4616 + Set gtmtypes("shm_snapshot_t",97,"len")=8 + Set gtmtypes("shm_snapshot_t",97,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.flush_time")=97 + Set gtmtypes("shm_snapshot_t",97,"dim")=2 + Set gtmtypes("shm_snapshot_t",98,"name")="shm_snapshot_t.shadow_file_header.flush_trigger" + Set gtmtypes("shm_snapshot_t",98,"off")=4624 + Set gtmtypes("shm_snapshot_t",98,"len")=4 + Set gtmtypes("shm_snapshot_t",98,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.flush_trigger")=98 + Set gtmtypes("shm_snapshot_t",99,"name")="shm_snapshot_t.shadow_file_header.n_wrt_per_flu" + Set gtmtypes("shm_snapshot_t",99,"off")=4628 + Set gtmtypes("shm_snapshot_t",99,"len")=4 + Set gtmtypes("shm_snapshot_t",99,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_wrt_per_flu")=99 + Set gtmtypes("shm_snapshot_t",100,"name")="shm_snapshot_t.shadow_file_header.wait_disk_space" + Set gtmtypes("shm_snapshot_t",100,"off")=4632 + Set gtmtypes("shm_snapshot_t",100,"len")=4 + Set gtmtypes("shm_snapshot_t",100,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wait_disk_space")=100 + Set gtmtypes("shm_snapshot_t",101,"name")="shm_snapshot_t.shadow_file_header.defer_time" + Set gtmtypes("shm_snapshot_t",101,"off")=4636 + Set gtmtypes("shm_snapshot_t",101,"len")=4 + Set gtmtypes("shm_snapshot_t",101,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.defer_time")=101 + Set gtmtypes("shm_snapshot_t",102,"name")="shm_snapshot_t.shadow_file_header.filler_wc_blocked" + Set gtmtypes("shm_snapshot_t",102,"off")=4640 + Set gtmtypes("shm_snapshot_t",102,"len")=4 + Set gtmtypes("shm_snapshot_t",102,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_wc_blocked")=102 + Set gtmtypes("shm_snapshot_t",103,"name")="shm_snapshot_t.shadow_file_header.mumps_can_bypass" + Set gtmtypes("shm_snapshot_t",103,"off")=4644 + Set gtmtypes("shm_snapshot_t",103,"len")=4 + Set gtmtypes("shm_snapshot_t",103,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mumps_can_bypass")=103 + Set gtmtypes("shm_snapshot_t",104,"name")="shm_snapshot_t.shadow_file_header.epoch_taper" + Set gtmtypes("shm_snapshot_t",104,"off")=4648 + Set gtmtypes("shm_snapshot_t",104,"len")=4 + Set gtmtypes("shm_snapshot_t",104,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper")=104 + Set gtmtypes("shm_snapshot_t",105,"name")="shm_snapshot_t.shadow_file_header.epoch_taper_time_pct" + Set gtmtypes("shm_snapshot_t",105,"off")=4652 + Set gtmtypes("shm_snapshot_t",105,"len")=4 + Set gtmtypes("shm_snapshot_t",105,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper_time_pct")=105 + Set gtmtypes("shm_snapshot_t",106,"name")="shm_snapshot_t.shadow_file_header.epoch_taper_jnl_pct" + Set gtmtypes("shm_snapshot_t",106,"off")=4656 + Set gtmtypes("shm_snapshot_t",106,"len")=4 + Set gtmtypes("shm_snapshot_t",106,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper_jnl_pct")=106 + Set gtmtypes("shm_snapshot_t",107,"name")="shm_snapshot_t.shadow_file_header.filler_512" + Set gtmtypes("shm_snapshot_t",107,"off")=4660 + Set gtmtypes("shm_snapshot_t",107,"len")=4 + Set gtmtypes("shm_snapshot_t",107,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_512")=107 + Set gtmtypes("shm_snapshot_t",108,"name")="shm_snapshot_t.shadow_file_header.reserved_for_upd" + Set gtmtypes("shm_snapshot_t",108,"off")=4664 + Set gtmtypes("shm_snapshot_t",108,"len")=4 + Set gtmtypes("shm_snapshot_t",108,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_for_upd")=108 + Set gtmtypes("shm_snapshot_t",109,"name")="shm_snapshot_t.shadow_file_header.avg_blks_per_100gbl" + Set gtmtypes("shm_snapshot_t",109,"off")=4668 + Set gtmtypes("shm_snapshot_t",109,"len")=4 + Set gtmtypes("shm_snapshot_t",109,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.avg_blks_per_100gbl")=109 + Set gtmtypes("shm_snapshot_t",110,"name")="shm_snapshot_t.shadow_file_header.pre_read_trigger_factor" + Set gtmtypes("shm_snapshot_t",110,"off")=4672 + Set gtmtypes("shm_snapshot_t",110,"len")=4 + Set gtmtypes("shm_snapshot_t",110,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.pre_read_trigger_factor")=110 + Set gtmtypes("shm_snapshot_t",111,"name")="shm_snapshot_t.shadow_file_header.writer_trigger_factor" + Set gtmtypes("shm_snapshot_t",111,"off")=4676 + Set gtmtypes("shm_snapshot_t",111,"len")=4 + Set gtmtypes("shm_snapshot_t",111,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.writer_trigger_factor")=111 + Set gtmtypes("shm_snapshot_t",112,"name")="shm_snapshot_t.shadow_file_header.semid" + Set gtmtypes("shm_snapshot_t",112,"off")=4680 + Set gtmtypes("shm_snapshot_t",112,"len")=4 + Set gtmtypes("shm_snapshot_t",112,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.semid")=112 + Set gtmtypes("shm_snapshot_t",113,"name")="shm_snapshot_t.shadow_file_header.shmid" + Set gtmtypes("shm_snapshot_t",113,"off")=4684 + Set gtmtypes("shm_snapshot_t",113,"len")=4 + Set gtmtypes("shm_snapshot_t",113,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmid")=113 + Set gtmtypes("shm_snapshot_t",114,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime" + Set gtmtypes("shm_snapshot_t",114,"off")=4688 + Set gtmtypes("shm_snapshot_t",114,"len")=8 + Set gtmtypes("shm_snapshot_t",114,"type")="gtm_time8" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime")=114 + Set gtmtypes("shm_snapshot_t",115,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime.ctime" + Set gtmtypes("shm_snapshot_t",115,"off")=4688 + Set gtmtypes("shm_snapshot_t",115,"len")=4 + Set gtmtypes("shm_snapshot_t",115,"type")="time_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime.ctime")=115 + Set gtmtypes("shm_snapshot_t",116,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime.filler" + Set gtmtypes("shm_snapshot_t",116,"off")=4688 + Set gtmtypes("shm_snapshot_t",116,"len")=8 + Set gtmtypes("shm_snapshot_t",116,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime.filler")=116 + Set gtmtypes("shm_snapshot_t",116,"dim")=2 + Set gtmtypes("shm_snapshot_t",117,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime" + Set gtmtypes("shm_snapshot_t",117,"off")=4696 + Set gtmtypes("shm_snapshot_t",117,"len")=8 + Set gtmtypes("shm_snapshot_t",117,"type")="gtm_time8" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime")=117 + Set gtmtypes("shm_snapshot_t",118,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime.ctime" + Set gtmtypes("shm_snapshot_t",118,"off")=4696 + Set gtmtypes("shm_snapshot_t",118,"len")=4 + Set gtmtypes("shm_snapshot_t",118,"type")="time_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime.ctime")=118 + Set gtmtypes("shm_snapshot_t",119,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime.filler" + Set gtmtypes("shm_snapshot_t",119,"off")=4696 + Set gtmtypes("shm_snapshot_t",119,"len")=8 + Set gtmtypes("shm_snapshot_t",119,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime.filler")=119 + Set gtmtypes("shm_snapshot_t",119,"dim")=2 + Set gtmtypes("shm_snapshot_t",120,"name")="shm_snapshot_t.shadow_file_header.filler_unixonly" + Set gtmtypes("shm_snapshot_t",120,"off")=4704 + Set gtmtypes("shm_snapshot_t",120,"len")=40 + Set gtmtypes("shm_snapshot_t",120,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_unixonly")=120 + Set gtmtypes("shm_snapshot_t",121,"name")="shm_snapshot_t.shadow_file_header.filler_n_retries" + Set gtmtypes("shm_snapshot_t",121,"off")=4744 + Set gtmtypes("shm_snapshot_t",121,"len")=20 + Set gtmtypes("shm_snapshot_t",121,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_retries")=121 + Set gtmtypes("shm_snapshot_t",121,"dim")=5 + Set gtmtypes("shm_snapshot_t",122,"name")="shm_snapshot_t.shadow_file_header.filler_n_puts" + Set gtmtypes("shm_snapshot_t",122,"off")=4764 + Set gtmtypes("shm_snapshot_t",122,"len")=4 + Set gtmtypes("shm_snapshot_t",122,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_puts")=122 + Set gtmtypes("shm_snapshot_t",123,"name")="shm_snapshot_t.shadow_file_header.filler_n_kills" + Set gtmtypes("shm_snapshot_t",123,"off")=4768 + Set gtmtypes("shm_snapshot_t",123,"len")=4 + Set gtmtypes("shm_snapshot_t",123,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_kills")=123 + Set gtmtypes("shm_snapshot_t",124,"name")="shm_snapshot_t.shadow_file_header.filler_n_queries" + Set gtmtypes("shm_snapshot_t",124,"off")=4772 + Set gtmtypes("shm_snapshot_t",124,"len")=4 + Set gtmtypes("shm_snapshot_t",124,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_queries")=124 + Set gtmtypes("shm_snapshot_t",125,"name")="shm_snapshot_t.shadow_file_header.filler_n_gets" + Set gtmtypes("shm_snapshot_t",125,"off")=4776 + Set gtmtypes("shm_snapshot_t",125,"len")=4 + Set gtmtypes("shm_snapshot_t",125,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_gets")=125 + Set gtmtypes("shm_snapshot_t",126,"name")="shm_snapshot_t.shadow_file_header.filler_n_order" + Set gtmtypes("shm_snapshot_t",126,"off")=4780 + Set gtmtypes("shm_snapshot_t",126,"len")=4 + Set gtmtypes("shm_snapshot_t",126,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_order")=126 + Set gtmtypes("shm_snapshot_t",127,"name")="shm_snapshot_t.shadow_file_header.filler_n_zprevs" + Set gtmtypes("shm_snapshot_t",127,"off")=4784 + Set gtmtypes("shm_snapshot_t",127,"len")=4 + Set gtmtypes("shm_snapshot_t",127,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_zprevs")=127 + Set gtmtypes("shm_snapshot_t",128,"name")="shm_snapshot_t.shadow_file_header.filler_n_data" + Set gtmtypes("shm_snapshot_t",128,"off")=4788 + Set gtmtypes("shm_snapshot_t",128,"len")=4 + Set gtmtypes("shm_snapshot_t",128,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_data")=128 + Set gtmtypes("shm_snapshot_t",129,"name")="shm_snapshot_t.shadow_file_header.filler_n_puts_duplicate" + Set gtmtypes("shm_snapshot_t",129,"off")=4792 + Set gtmtypes("shm_snapshot_t",129,"len")=4 + Set gtmtypes("shm_snapshot_t",129,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_puts_duplicate")=129 + Set gtmtypes("shm_snapshot_t",130,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_updates" + Set gtmtypes("shm_snapshot_t",130,"off")=4796 + Set gtmtypes("shm_snapshot_t",130,"len")=4 + Set gtmtypes("shm_snapshot_t",130,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_updates")=130 + Set gtmtypes("shm_snapshot_t",131,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_updates_duplicate" + Set gtmtypes("shm_snapshot_t",131,"off")=4800 + Set gtmtypes("shm_snapshot_t",131,"len")=4 + Set gtmtypes("shm_snapshot_t",131,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_updates_duplicate")=131 + Set gtmtypes("shm_snapshot_t",132,"name")="shm_snapshot_t.shadow_file_header.filler_accounting_64_align" + Set gtmtypes("shm_snapshot_t",132,"off")=4804 + Set gtmtypes("shm_snapshot_t",132,"len")=4 + Set gtmtypes("shm_snapshot_t",132,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_accounting_64_align")=132 + Set gtmtypes("shm_snapshot_t",133,"name")="shm_snapshot_t.shadow_file_header.staleness" + Set gtmtypes("shm_snapshot_t",133,"off")=4808 + Set gtmtypes("shm_snapshot_t",133,"len")=8 + Set gtmtypes("shm_snapshot_t",133,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.staleness")=133 + Set gtmtypes("shm_snapshot_t",133,"dim")=2 + Set gtmtypes("shm_snapshot_t",134,"name")="shm_snapshot_t.shadow_file_header.ccp_tick_interval" + Set gtmtypes("shm_snapshot_t",134,"off")=4816 + Set gtmtypes("shm_snapshot_t",134,"len")=8 + Set gtmtypes("shm_snapshot_t",134,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_tick_interval")=134 + Set gtmtypes("shm_snapshot_t",134,"dim")=2 + Set gtmtypes("shm_snapshot_t",135,"name")="shm_snapshot_t.shadow_file_header.ccp_quantum_interval" + Set gtmtypes("shm_snapshot_t",135,"off")=4824 + Set gtmtypes("shm_snapshot_t",135,"len")=8 + Set gtmtypes("shm_snapshot_t",135,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_quantum_interval")=135 + Set gtmtypes("shm_snapshot_t",135,"dim")=2 + Set gtmtypes("shm_snapshot_t",136,"name")="shm_snapshot_t.shadow_file_header.ccp_response_interval" + Set gtmtypes("shm_snapshot_t",136,"off")=4832 + Set gtmtypes("shm_snapshot_t",136,"len")=8 + Set gtmtypes("shm_snapshot_t",136,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_response_interval")=136 + Set gtmtypes("shm_snapshot_t",136,"dim")=2 + Set gtmtypes("shm_snapshot_t",137,"name")="shm_snapshot_t.shadow_file_header.ccp_jnl_before" + Set gtmtypes("shm_snapshot_t",137,"off")=4840 + Set gtmtypes("shm_snapshot_t",137,"len")=4 + Set gtmtypes("shm_snapshot_t",137,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_jnl_before")=137 + Set gtmtypes("shm_snapshot_t",138,"name")="shm_snapshot_t.shadow_file_header.clustered" + Set gtmtypes("shm_snapshot_t",138,"off")=4844 + Set gtmtypes("shm_snapshot_t",138,"len")=4 + Set gtmtypes("shm_snapshot_t",138,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.clustered")=138 + Set gtmtypes("shm_snapshot_t",139,"name")="shm_snapshot_t.shadow_file_header.unbacked_cache" + Set gtmtypes("shm_snapshot_t",139,"off")=4848 + Set gtmtypes("shm_snapshot_t",139,"len")=4 + Set gtmtypes("shm_snapshot_t",139,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unbacked_cache")=139 + Set gtmtypes("shm_snapshot_t",140,"name")="shm_snapshot_t.shadow_file_header.rc_srv_cnt" + Set gtmtypes("shm_snapshot_t",140,"off")=4852 + Set gtmtypes("shm_snapshot_t",140,"len")=4 + Set gtmtypes("shm_snapshot_t",140,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.rc_srv_cnt")=140 + Set gtmtypes("shm_snapshot_t",141,"name")="shm_snapshot_t.shadow_file_header.dsid" + Set gtmtypes("shm_snapshot_t",141,"off")=4856 + Set gtmtypes("shm_snapshot_t",141,"len")=4 + Set gtmtypes("shm_snapshot_t",141,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dsid")=141 + Set gtmtypes("shm_snapshot_t",142,"name")="shm_snapshot_t.shadow_file_header.rc_node" + Set gtmtypes("shm_snapshot_t",142,"off")=4860 + Set gtmtypes("shm_snapshot_t",142,"len")=4 + Set gtmtypes("shm_snapshot_t",142,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.rc_node")=142 + Set gtmtypes("shm_snapshot_t",143,"name")="shm_snapshot_t.shadow_file_header.filler_ccp_rc" + Set gtmtypes("shm_snapshot_t",143,"off")=4864 + Set gtmtypes("shm_snapshot_t",143,"len")=8 + Set gtmtypes("shm_snapshot_t",143,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_ccp_rc")=143 + Set gtmtypes("shm_snapshot_t",144,"name")="shm_snapshot_t.shadow_file_header.reg_seqno" + Set gtmtypes("shm_snapshot_t",144,"off")=4872 + Set gtmtypes("shm_snapshot_t",144,"len")=8 + Set gtmtypes("shm_snapshot_t",144,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reg_seqno")=144 + Set gtmtypes("shm_snapshot_t",145,"name")="shm_snapshot_t.shadow_file_header.pre_multisite_resync_seqno" + Set gtmtypes("shm_snapshot_t",145,"off")=4880 + Set gtmtypes("shm_snapshot_t",145,"len")=8 + Set gtmtypes("shm_snapshot_t",145,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.pre_multisite_resync_seqno")=145 + Set gtmtypes("shm_snapshot_t",146,"name")="shm_snapshot_t.shadow_file_header.zqgblmod_tn" + Set gtmtypes("shm_snapshot_t",146,"off")=4888 + Set gtmtypes("shm_snapshot_t",146,"len")=8 + Set gtmtypes("shm_snapshot_t",146,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.zqgblmod_tn")=146 + Set gtmtypes("shm_snapshot_t",147,"name")="shm_snapshot_t.shadow_file_header.zqgblmod_seqno" + Set gtmtypes("shm_snapshot_t",147,"off")=4896 + Set gtmtypes("shm_snapshot_t",147,"len")=8 + Set gtmtypes("shm_snapshot_t",147,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.zqgblmod_seqno")=147 + Set gtmtypes("shm_snapshot_t",148,"name")="shm_snapshot_t.shadow_file_header.repl_state" + Set gtmtypes("shm_snapshot_t",148,"off")=4904 + Set gtmtypes("shm_snapshot_t",148,"len")=4 + Set gtmtypes("shm_snapshot_t",148,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.repl_state")=148 + Set gtmtypes("shm_snapshot_t",149,"name")="shm_snapshot_t.shadow_file_header.multi_site_open" + Set gtmtypes("shm_snapshot_t",149,"off")=4908 + Set gtmtypes("shm_snapshot_t",149,"len")=4 + Set gtmtypes("shm_snapshot_t",149,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.multi_site_open")=149 + Set gtmtypes("shm_snapshot_t",150,"name")="shm_snapshot_t.shadow_file_header.filler_seqno" + Set gtmtypes("shm_snapshot_t",150,"off")=4912 + Set gtmtypes("shm_snapshot_t",150,"len")=8 + Set gtmtypes("shm_snapshot_t",150,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_seqno")=150 + Set gtmtypes("shm_snapshot_t",151,"name")="shm_snapshot_t.shadow_file_header.filler_repl" + Set gtmtypes("shm_snapshot_t",151,"off")=4920 + Set gtmtypes("shm_snapshot_t",151,"len")=16 + Set gtmtypes("shm_snapshot_t",151,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_repl")=151 + Set gtmtypes("shm_snapshot_t",152,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_retries" + Set gtmtypes("shm_snapshot_t",152,"off")=4936 + Set gtmtypes("shm_snapshot_t",152,"len")=48 + Set gtmtypes("shm_snapshot_t",152,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_retries")=152 + Set gtmtypes("shm_snapshot_t",152,"dim")=12 + Set gtmtypes("shm_snapshot_t",153,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_retries_conflicts" + Set gtmtypes("shm_snapshot_t",153,"off")=4984 + Set gtmtypes("shm_snapshot_t",153,"len")=48 + Set gtmtypes("shm_snapshot_t",153,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_retries_conflicts")=153 + Set gtmtypes("shm_snapshot_t",153,"dim")=12 + Set gtmtypes("shm_snapshot_t",154,"name")="shm_snapshot_t.shadow_file_header.tp_cdb_sc_blkmod" + Set gtmtypes("shm_snapshot_t",154,"off")=5032 + Set gtmtypes("shm_snapshot_t",154,"len")=32 + Set gtmtypes("shm_snapshot_t",154,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_cdb_sc_blkmod")=154 + Set gtmtypes("shm_snapshot_t",154,"dim")=8 + Set gtmtypes("shm_snapshot_t",155,"name")="shm_snapshot_t.shadow_file_header.jnl_alq" + Set gtmtypes("shm_snapshot_t",155,"off")=5064 + Set gtmtypes("shm_snapshot_t",155,"len")=4 + Set gtmtypes("shm_snapshot_t",155,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_alq")=155 + Set gtmtypes("shm_snapshot_t",156,"name")="shm_snapshot_t.shadow_file_header.jnl_deq" + Set gtmtypes("shm_snapshot_t",156,"off")=5068 + Set gtmtypes("shm_snapshot_t",156,"len")=4 + Set gtmtypes("shm_snapshot_t",156,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_deq")=156 + Set gtmtypes("shm_snapshot_t",157,"name")="shm_snapshot_t.shadow_file_header.jnl_buffer_size" + Set gtmtypes("shm_snapshot_t",157,"off")=5072 + Set gtmtypes("shm_snapshot_t",157,"len")=4 + Set gtmtypes("shm_snapshot_t",157,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_buffer_size")=157 + Set gtmtypes("shm_snapshot_t",158,"name")="shm_snapshot_t.shadow_file_header.jnl_before_image" + Set gtmtypes("shm_snapshot_t",158,"off")=5076 + Set gtmtypes("shm_snapshot_t",158,"len")=4 + Set gtmtypes("shm_snapshot_t",158,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_before_image")=158 + Set gtmtypes("shm_snapshot_t",159,"name")="shm_snapshot_t.shadow_file_header.jnl_state" + Set gtmtypes("shm_snapshot_t",159,"off")=5080 + Set gtmtypes("shm_snapshot_t",159,"len")=4 + Set gtmtypes("shm_snapshot_t",159,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_state")=159 + Set gtmtypes("shm_snapshot_t",160,"name")="shm_snapshot_t.shadow_file_header.jnl_file_len" + Set gtmtypes("shm_snapshot_t",160,"off")=5084 + Set gtmtypes("shm_snapshot_t",160,"len")=4 + Set gtmtypes("shm_snapshot_t",160,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_file_len")=160 + Set gtmtypes("shm_snapshot_t",161,"name")="shm_snapshot_t.shadow_file_header.autoswitchlimit" + Set gtmtypes("shm_snapshot_t",161,"off")=5088 + Set gtmtypes("shm_snapshot_t",161,"len")=4 + Set gtmtypes("shm_snapshot_t",161,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.autoswitchlimit")=161 + Set gtmtypes("shm_snapshot_t",162,"name")="shm_snapshot_t.shadow_file_header.epoch_interval" + Set gtmtypes("shm_snapshot_t",162,"off")=5092 + Set gtmtypes("shm_snapshot_t",162,"len")=4 + Set gtmtypes("shm_snapshot_t",162,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_interval")=162 + Set gtmtypes("shm_snapshot_t",163,"name")="shm_snapshot_t.shadow_file_header.alignsize" + Set gtmtypes("shm_snapshot_t",163,"off")=5096 + Set gtmtypes("shm_snapshot_t",163,"len")=4 + Set gtmtypes("shm_snapshot_t",163,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.alignsize")=163 + Set gtmtypes("shm_snapshot_t",164,"name")="shm_snapshot_t.shadow_file_header.jnl_sync_io" + Set gtmtypes("shm_snapshot_t",164,"off")=5100 + Set gtmtypes("shm_snapshot_t",164,"len")=4 + Set gtmtypes("shm_snapshot_t",164,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_sync_io")=164 + Set gtmtypes("shm_snapshot_t",165,"name")="shm_snapshot_t.shadow_file_header.yield_lmt" + Set gtmtypes("shm_snapshot_t",165,"off")=5104 + Set gtmtypes("shm_snapshot_t",165,"len")=4 + Set gtmtypes("shm_snapshot_t",165,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.yield_lmt")=165 + Set gtmtypes("shm_snapshot_t",166,"name")="shm_snapshot_t.shadow_file_header.turn_around_point" + Set gtmtypes("shm_snapshot_t",166,"off")=5108 + Set gtmtypes("shm_snapshot_t",166,"len")=4 + Set gtmtypes("shm_snapshot_t",166,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.turn_around_point")=166 + Set gtmtypes("shm_snapshot_t",167,"name")="shm_snapshot_t.shadow_file_header.jnl_eovtn" + Set gtmtypes("shm_snapshot_t",167,"off")=5112 + Set gtmtypes("shm_snapshot_t",167,"len")=8 + Set gtmtypes("shm_snapshot_t",167,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_eovtn")=167 + Set gtmtypes("shm_snapshot_t",168,"name")="shm_snapshot_t.shadow_file_header.filler_jnl" + Set gtmtypes("shm_snapshot_t",168,"off")=5120 + Set gtmtypes("shm_snapshot_t",168,"len")=8 + Set gtmtypes("shm_snapshot_t",168,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_jnl")=168 + Set gtmtypes("shm_snapshot_t",169,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_resync_seqno" + Set gtmtypes("shm_snapshot_t",169,"off")=5128 + Set gtmtypes("shm_snapshot_t",169,"len")=8 + Set gtmtypes("shm_snapshot_t",169,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_resync_seqno")=169 + Set gtmtypes("shm_snapshot_t",170,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_tp_resolve_time" + Set gtmtypes("shm_snapshot_t",170,"off")=5136 + Set gtmtypes("shm_snapshot_t",170,"len")=4 + Set gtmtypes("shm_snapshot_t",170,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_tp_resolve_time")=170 + Set gtmtypes("shm_snapshot_t",171,"name")="shm_snapshot_t.shadow_file_header.recov_interrupted" + Set gtmtypes("shm_snapshot_t",171,"off")=5140 + Set gtmtypes("shm_snapshot_t",171,"len")=4 + Set gtmtypes("shm_snapshot_t",171,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recov_interrupted")=171 + Set gtmtypes("shm_snapshot_t",172,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_jnl_state" + Set gtmtypes("shm_snapshot_t",172,"off")=5144 + Set gtmtypes("shm_snapshot_t",172,"len")=4 + Set gtmtypes("shm_snapshot_t",172,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_jnl_state")=172 + Set gtmtypes("shm_snapshot_t",173,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_repl_state" + Set gtmtypes("shm_snapshot_t",173,"off")=5148 + Set gtmtypes("shm_snapshot_t",173,"len")=4 + Set gtmtypes("shm_snapshot_t",173,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_repl_state")=173 + Set gtmtypes("shm_snapshot_t",174,"name")="shm_snapshot_t.shadow_file_header.before_trunc_total_blks" + Set gtmtypes("shm_snapshot_t",174,"off")=5152 + Set gtmtypes("shm_snapshot_t",174,"len")=4 + Set gtmtypes("shm_snapshot_t",174,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.before_trunc_total_blks")=174 + Set gtmtypes("shm_snapshot_t",175,"name")="shm_snapshot_t.shadow_file_header.after_trunc_total_blks" + Set gtmtypes("shm_snapshot_t",175,"off")=5156 + Set gtmtypes("shm_snapshot_t",175,"len")=4 + Set gtmtypes("shm_snapshot_t",175,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.after_trunc_total_blks")=175 + Set gtmtypes("shm_snapshot_t",176,"name")="shm_snapshot_t.shadow_file_header.before_trunc_free_blocks" + Set gtmtypes("shm_snapshot_t",176,"off")=5160 + Set gtmtypes("shm_snapshot_t",176,"len")=4 + Set gtmtypes("shm_snapshot_t",176,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.before_trunc_free_blocks")=176 + Set gtmtypes("shm_snapshot_t",177,"name")="shm_snapshot_t.shadow_file_header.filler_trunc" + Set gtmtypes("shm_snapshot_t",177,"off")=5164 + Set gtmtypes("shm_snapshot_t",177,"len")=4 + Set gtmtypes("shm_snapshot_t",177,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_trunc")=177 + Set gtmtypes("shm_snapshot_t",178,"name")="shm_snapshot_t.shadow_file_header.filler_1k" + Set gtmtypes("shm_snapshot_t",178,"off")=5168 + Set gtmtypes("shm_snapshot_t",178,"len")=24 + Set gtmtypes("shm_snapshot_t",178,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_1k")=178 + Set gtmtypes("shm_snapshot_t",179,"name")="shm_snapshot_t.shadow_file_header.jnl_file_name" + Set gtmtypes("shm_snapshot_t",179,"off")=5192 + Set gtmtypes("shm_snapshot_t",179,"len")=256 + Set gtmtypes("shm_snapshot_t",179,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_file_name")=179 + Set gtmtypes("shm_snapshot_t",180,"name")="shm_snapshot_t.shadow_file_header.reorg_restart_key" + Set gtmtypes("shm_snapshot_t",180,"off")=5448 + Set gtmtypes("shm_snapshot_t",180,"len")=256 + Set gtmtypes("shm_snapshot_t",180,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_restart_key")=180 + Set gtmtypes("shm_snapshot_t",181,"name")="shm_snapshot_t.shadow_file_header.machine_name" + Set gtmtypes("shm_snapshot_t",181,"off")=5704 + Set gtmtypes("shm_snapshot_t",181,"len")=256 + Set gtmtypes("shm_snapshot_t",181,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.machine_name")=181 + Set gtmtypes("shm_snapshot_t",182,"name")="shm_snapshot_t.shadow_file_header.encryption_hash" + Set gtmtypes("shm_snapshot_t",182,"off")=5960 + Set gtmtypes("shm_snapshot_t",182,"len")=80 + Set gtmtypes("shm_snapshot_t",182,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash")=182 + Set gtmtypes("shm_snapshot_t",183,"name")="shm_snapshot_t.shadow_file_header.encryption_hash2" + Set gtmtypes("shm_snapshot_t",183,"off")=6040 + Set gtmtypes("shm_snapshot_t",183,"len")=80 + Set gtmtypes("shm_snapshot_t",183,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash2")=183 + Set gtmtypes("shm_snapshot_t",184,"name")="shm_snapshot_t.shadow_file_header.non_null_iv" + Set gtmtypes("shm_snapshot_t",184,"off")=6120 + Set gtmtypes("shm_snapshot_t",184,"len")=4 + Set gtmtypes("shm_snapshot_t",184,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.non_null_iv")=184 + Set gtmtypes("shm_snapshot_t",185,"name")="shm_snapshot_t.shadow_file_header.encryption_hash_cutoff" + Set gtmtypes("shm_snapshot_t",185,"off")=6124 + Set gtmtypes("shm_snapshot_t",185,"len")=4 + Set gtmtypes("shm_snapshot_t",185,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash_cutoff")=185 + Set gtmtypes("shm_snapshot_t",186,"name")="shm_snapshot_t.shadow_file_header.encryption_hash2_start_tn" + Set gtmtypes("shm_snapshot_t",186,"off")=6128 + Set gtmtypes("shm_snapshot_t",186,"len")=8 + Set gtmtypes("shm_snapshot_t",186,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash2_start_tn")=186 + Set gtmtypes("shm_snapshot_t",187,"name")="shm_snapshot_t.shadow_file_header.filler_encrypt" + Set gtmtypes("shm_snapshot_t",187,"off")=6136 + Set gtmtypes("shm_snapshot_t",187,"len")=80 + Set gtmtypes("shm_snapshot_t",187,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_encrypt")=187 + Set gtmtypes("shm_snapshot_t",188,"name")="shm_snapshot_t.shadow_file_header.total_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",188,"off")=6216 + Set gtmtypes("shm_snapshot_t",188,"len")=8 + Set gtmtypes("shm_snapshot_t",188,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.total_buffer_flush_tn")=188 + Set gtmtypes("shm_snapshot_t",189,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",189,"off")=6224 + Set gtmtypes("shm_snapshot_t",189,"len")=8 + Set gtmtypes("shm_snapshot_t",189,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_tn")=189 + Set gtmtypes("shm_snapshot_t",190,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_loop_tn" + Set gtmtypes("shm_snapshot_t",190,"off")=6232 + Set gtmtypes("shm_snapshot_t",190,"len")=8 + Set gtmtypes("shm_snapshot_t",190,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_loop_tn")=190 + Set gtmtypes("shm_snapshot_t",191,"name")="shm_snapshot_t.shadow_file_header.wrt_calls_tn" + Set gtmtypes("shm_snapshot_t",191,"off")=6240 + Set gtmtypes("shm_snapshot_t",191,"len")=8 + Set gtmtypes("shm_snapshot_t",191,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_calls_tn")=191 + Set gtmtypes("shm_snapshot_t",192,"name")="shm_snapshot_t.shadow_file_header.wrt_count_tn" + Set gtmtypes("shm_snapshot_t",192,"off")=6248 + Set gtmtypes("shm_snapshot_t",192,"len")=8 + Set gtmtypes("shm_snapshot_t",192,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_count_tn")=192 + Set gtmtypes("shm_snapshot_t",193,"name")="shm_snapshot_t.shadow_file_header.wrt_blocked_tn" + Set gtmtypes("shm_snapshot_t",193,"off")=6256 + Set gtmtypes("shm_snapshot_t",193,"len")=8 + Set gtmtypes("shm_snapshot_t",193,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_blocked_tn")=193 + Set gtmtypes("shm_snapshot_t",194,"name")="shm_snapshot_t.shadow_file_header.wrt_busy_tn" + Set gtmtypes("shm_snapshot_t",194,"off")=6264 + Set gtmtypes("shm_snapshot_t",194,"len")=8 + Set gtmtypes("shm_snapshot_t",194,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_busy_tn")=194 + Set gtmtypes("shm_snapshot_t",195,"name")="shm_snapshot_t.shadow_file_header.wrt_noblks_wrtn_tn" + Set gtmtypes("shm_snapshot_t",195,"off")=6272 + Set gtmtypes("shm_snapshot_t",195,"len")=8 + Set gtmtypes("shm_snapshot_t",195,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_noblks_wrtn_tn")=195 + Set gtmtypes("shm_snapshot_t",196,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec1_tn" + Set gtmtypes("shm_snapshot_t",196,"off")=6280 + Set gtmtypes("shm_snapshot_t",196,"len")=8 + Set gtmtypes("shm_snapshot_t",196,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec1_tn")=196 + Set gtmtypes("shm_snapshot_t",197,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec2_tn" + Set gtmtypes("shm_snapshot_t",197,"off")=6288 + Set gtmtypes("shm_snapshot_t",197,"len")=8 + Set gtmtypes("shm_snapshot_t",197,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec2_tn")=197 + Set gtmtypes("shm_snapshot_t",198,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec3_tn" + Set gtmtypes("shm_snapshot_t",198,"off")=6296 + Set gtmtypes("shm_snapshot_t",198,"len")=8 + Set gtmtypes("shm_snapshot_t",198,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec3_tn")=198 + Set gtmtypes("shm_snapshot_t",199,"name")="shm_snapshot_t.shadow_file_header.lost_block_recovery_tn" + Set gtmtypes("shm_snapshot_t",199,"off")=6304 + Set gtmtypes("shm_snapshot_t",199,"len")=8 + Set gtmtypes("shm_snapshot_t",199,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lost_block_recovery_tn")=199 + Set gtmtypes("shm_snapshot_t",200,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_onln_rlbk_tn" + Set gtmtypes("shm_snapshot_t",200,"off")=6312 + Set gtmtypes("shm_snapshot_t",200,"len")=8 + Set gtmtypes("shm_snapshot_t",200,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_onln_rlbk_tn")=200 + Set gtmtypes("shm_snapshot_t",201,"name")="shm_snapshot_t.shadow_file_header.stale_tn" + Set gtmtypes("shm_snapshot_t",201,"off")=6320 + Set gtmtypes("shm_snapshot_t",201,"len")=8 + Set gtmtypes("shm_snapshot_t",201,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_tn")=201 + Set gtmtypes("shm_snapshot_t",202,"name")="shm_snapshot_t.shadow_file_header.starved_tn" + Set gtmtypes("shm_snapshot_t",202,"off")=6328 + Set gtmtypes("shm_snapshot_t",202,"len")=8 + Set gtmtypes("shm_snapshot_t",202,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.starved_tn")=202 + Set gtmtypes("shm_snapshot_t",203,"name")="shm_snapshot_t.shadow_file_header.stale_timer_started_tn" + Set gtmtypes("shm_snapshot_t",203,"off")=6336 + Set gtmtypes("shm_snapshot_t",203,"len")=8 + Set gtmtypes("shm_snapshot_t",203,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_started_tn")=203 + Set gtmtypes("shm_snapshot_t",204,"name")="shm_snapshot_t.shadow_file_header.stale_timer_pop_tn" + Set gtmtypes("shm_snapshot_t",204,"off")=6344 + Set gtmtypes("shm_snapshot_t",204,"len")=8 + Set gtmtypes("shm_snapshot_t",204,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_pop_tn")=204 + Set gtmtypes("shm_snapshot_t",205,"name")="shm_snapshot_t.shadow_file_header.stale_process_defer_tn" + Set gtmtypes("shm_snapshot_t",205,"off")=6352 + Set gtmtypes("shm_snapshot_t",205,"len")=8 + Set gtmtypes("shm_snapshot_t",205,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_process_defer_tn")=205 + Set gtmtypes("shm_snapshot_t",206,"name")="shm_snapshot_t.shadow_file_header.stale_defer_processed_tn" + Set gtmtypes("shm_snapshot_t",206,"off")=6360 + Set gtmtypes("shm_snapshot_t",206,"len")=8 + Set gtmtypes("shm_snapshot_t",206,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_defer_processed_tn")=206 + Set gtmtypes("shm_snapshot_t",207,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",207,"off")=6368 + Set gtmtypes("shm_snapshot_t",207,"len")=8 + Set gtmtypes("shm_snapshot_t",207,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_tn")=207 + Set gtmtypes("shm_snapshot_t",208,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_loop_tn" + Set gtmtypes("shm_snapshot_t",208,"off")=6376 + Set gtmtypes("shm_snapshot_t",208,"len")=8 + Set gtmtypes("shm_snapshot_t",208,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_loop_tn")=208 + Set gtmtypes("shm_snapshot_t",209,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_retries_tn" + Set gtmtypes("shm_snapshot_t",209,"off")=6384 + Set gtmtypes("shm_snapshot_t",209,"len")=8 + Set gtmtypes("shm_snapshot_t",209,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_retries_tn")=209 + Set gtmtypes("shm_snapshot_t",210,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("shm_snapshot_t",210,"off")=6392 + Set gtmtypes("shm_snapshot_t",210,"len")=8 + Set gtmtypes("shm_snapshot_t",210,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn")=210 + Set gtmtypes("shm_snapshot_t",211,"name")="shm_snapshot_t.shadow_file_header.tp_crit_retries_tn" + Set gtmtypes("shm_snapshot_t",211,"off")=6400 + Set gtmtypes("shm_snapshot_t",211,"len")=8 + Set gtmtypes("shm_snapshot_t",211,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_crit_retries_tn")=211 + Set gtmtypes("shm_snapshot_t",212,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_flush_dirty_tn" + Set gtmtypes("shm_snapshot_t",212,"off")=6408 + Set gtmtypes("shm_snapshot_t",212,"len")=8 + Set gtmtypes("shm_snapshot_t",212,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_flush_dirty_tn")=212 + Set gtmtypes("shm_snapshot_t",213,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_rip_wait_tn" + Set gtmtypes("shm_snapshot_t",213,"off")=6416 + Set gtmtypes("shm_snapshot_t",213,"len")=8 + Set gtmtypes("shm_snapshot_t",213,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_rip_wait_tn")=213 + Set gtmtypes("shm_snapshot_t",214,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("shm_snapshot_t",214,"off")=6424 + Set gtmtypes("shm_snapshot_t",214,"len")=8 + Set gtmtypes("shm_snapshot_t",214,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_buf_owner_stuck_tn")=214 + Set gtmtypes("shm_snapshot_t",215,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_out_of_design_tn" + Set gtmtypes("shm_snapshot_t",215,"off")=6432 + Set gtmtypes("shm_snapshot_t",215,"len")=8 + Set gtmtypes("shm_snapshot_t",215,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_out_of_design_tn")=215 + Set gtmtypes("shm_snapshot_t",216,"name")="shm_snapshot_t.shadow_file_header.t_qread_buf_owner_stuck_tn" + Set gtmtypes("shm_snapshot_t",216,"off")=6440 + Set gtmtypes("shm_snapshot_t",216,"len")=8 + Set gtmtypes("shm_snapshot_t",216,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_buf_owner_stuck_tn")=216 + Set gtmtypes("shm_snapshot_t",217,"name")="shm_snapshot_t.shadow_file_header.t_qread_out_of_design_tn" + Set gtmtypes("shm_snapshot_t",217,"off")=6448 + Set gtmtypes("shm_snapshot_t",217,"len")=8 + Set gtmtypes("shm_snapshot_t",217,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_out_of_design_tn")=217 + Set gtmtypes("shm_snapshot_t",218,"name")="shm_snapshot_t.shadow_file_header.bt_put_flush_dirty_tn" + Set gtmtypes("shm_snapshot_t",218,"off")=6456 + Set gtmtypes("shm_snapshot_t",218,"len")=8 + Set gtmtypes("shm_snapshot_t",218,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_put_flush_dirty_tn")=218 + Set gtmtypes("shm_snapshot_t",219,"name")="shm_snapshot_t.shadow_file_header.mlock_wakeups_tn" + Set gtmtypes("shm_snapshot_t",219,"off")=6464 + Set gtmtypes("shm_snapshot_t",219,"len")=8 + Set gtmtypes("shm_snapshot_t",219,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mlock_wakeups_tn")=219 + Set gtmtypes("shm_snapshot_t",220,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("shm_snapshot_t",220,"off")=6472 + Set gtmtypes("shm_snapshot_t",220,"len")=8 + Set gtmtypes("shm_snapshot_t",220,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_recover_invoked_tn")=220 + Set gtmtypes("shm_snapshot_t",221,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("shm_snapshot_t",221,"off")=6480 + Set gtmtypes("shm_snapshot_t",221,"len")=8 + Set gtmtypes("shm_snapshot_t",221,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_verify_passed_tn")=221 + Set gtmtypes("shm_snapshot_t",222,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("shm_snapshot_t",222,"off")=6488 + Set gtmtypes("shm_snapshot_t",222,"len")=8 + Set gtmtypes("shm_snapshot_t",222,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=222 + Set gtmtypes("shm_snapshot_t",223,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("shm_snapshot_t",223,"off")=6496 + Set gtmtypes("shm_snapshot_t",223,"len")=8 + Set gtmtypes("shm_snapshot_t",223,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=223 + Set gtmtypes("shm_snapshot_t",224,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("shm_snapshot_t",224,"off")=6504 + Set gtmtypes("shm_snapshot_t",224,"len")=8 + Set gtmtypes("shm_snapshot_t",224,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn")=224 + Set gtmtypes("shm_snapshot_t",225,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("shm_snapshot_t",225,"off")=6512 + Set gtmtypes("shm_snapshot_t",225,"len")=8 + Set gtmtypes("shm_snapshot_t",225,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn")=225 + Set gtmtypes("shm_snapshot_t",226,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_get_tn" + Set gtmtypes("shm_snapshot_t",226,"off")=6520 + Set gtmtypes("shm_snapshot_t",226,"len")=8 + Set gtmtypes("shm_snapshot_t",226,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_get_tn")=226 + Set gtmtypes("shm_snapshot_t",227,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("shm_snapshot_t",227,"off")=6528 + Set gtmtypes("shm_snapshot_t",227,"len")=8 + Set gtmtypes("shm_snapshot_t",227,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn")=227 + Set gtmtypes("shm_snapshot_t",228,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("shm_snapshot_t",228,"off")=6536 + Set gtmtypes("shm_snapshot_t",228,"len")=8 + Set gtmtypes("shm_snapshot_t",228,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_t1_tn")=228 + Set gtmtypes("shm_snapshot_t",229,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("shm_snapshot_t",229,"off")=6544 + Set gtmtypes("shm_snapshot_t",229,"len")=8 + Set gtmtypes("shm_snapshot_t",229,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_bitmap_tn")=229 + Set gtmtypes("shm_snapshot_t",230,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("shm_snapshot_t",230,"off")=6552 + Set gtmtypes("shm_snapshot_t",230,"len")=8 + Set gtmtypes("shm_snapshot_t",230,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn")=230 + Set gtmtypes("shm_snapshot_t",231,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("shm_snapshot_t",231,"off")=6560 + Set gtmtypes("shm_snapshot_t",231,"len")=8 + Set gtmtypes("shm_snapshot_t",231,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn")=231 + Set gtmtypes("shm_snapshot_t",232,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist_tn" + Set gtmtypes("shm_snapshot_t",232,"off")=6568 + Set gtmtypes("shm_snapshot_t",232,"len")=8 + Set gtmtypes("shm_snapshot_t",232,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist_tn")=232 + Set gtmtypes("shm_snapshot_t",233,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("shm_snapshot_t",233,"off")=6576 + Set gtmtypes("shm_snapshot_t",233,"len")=8 + Set gtmtypes("shm_snapshot_t",233,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn")=233 + Set gtmtypes("shm_snapshot_t",234,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",234,"off")=6584 + Set gtmtypes("shm_snapshot_t",234,"len")=8 + Set gtmtypes("shm_snapshot_t",234,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn")=234 + Set gtmtypes("shm_snapshot_t",235,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("shm_snapshot_t",235,"off")=6592 + Set gtmtypes("shm_snapshot_t",235,"len")=8 + Set gtmtypes("shm_snapshot_t",235,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn")=235 + Set gtmtypes("shm_snapshot_t",236,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",236,"off")=6600 + Set gtmtypes("shm_snapshot_t",236,"len")=8 + Set gtmtypes("shm_snapshot_t",236,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn")=236 + Set gtmtypes("shm_snapshot_t",237,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("shm_snapshot_t",237,"off")=6608 + Set gtmtypes("shm_snapshot_t",237,"len")=8 + Set gtmtypes("shm_snapshot_t",237,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_cwset_tn")=237 + Set gtmtypes("shm_snapshot_t",238,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("shm_snapshot_t",238,"off")=6616 + Set gtmtypes("shm_snapshot_t",238,"len")=8 + Set gtmtypes("shm_snapshot_t",238,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn")=238 + Set gtmtypes("shm_snapshot_t",239,"name")="shm_snapshot_t.shadow_file_header.db_csh_get_too_many_loops_tn" + Set gtmtypes("shm_snapshot_t",239,"off")=6624 + Set gtmtypes("shm_snapshot_t",239,"len")=8 + Set gtmtypes("shm_snapshot_t",239,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_get_too_many_loops_tn")=239 + Set gtmtypes("shm_snapshot_t",240,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("shm_snapshot_t",240,"off")=6632 + Set gtmtypes("shm_snapshot_t",240,"len")=8 + Set gtmtypes("shm_snapshot_t",240,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn")=240 + Set gtmtypes("shm_snapshot_t",241,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",241,"off")=6640 + Set gtmtypes("shm_snapshot_t",241,"len")=8 + Set gtmtypes("shm_snapshot_t",241,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn")=241 + Set gtmtypes("shm_snapshot_t",242,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_lost_tn" + Set gtmtypes("shm_snapshot_t",242,"off")=6648 + Set gtmtypes("shm_snapshot_t",242,"len")=8 + Set gtmtypes("shm_snapshot_t",242,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_lost_tn")=242 + Set gtmtypes("shm_snapshot_t",243,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_stuck_tn" + Set gtmtypes("shm_snapshot_t",243,"off")=6656 + Set gtmtypes("shm_snapshot_t",243,"len")=8 + Set gtmtypes("shm_snapshot_t",243,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_stuck_tn")=243 + Set gtmtypes("shm_snapshot_t",244,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_blocked_tn" + Set gtmtypes("shm_snapshot_t",244,"off")=6664 + Set gtmtypes("shm_snapshot_t",244,"len")=8 + Set gtmtypes("shm_snapshot_t",244,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_blocked_tn")=244 + Set gtmtypes("shm_snapshot_t",245,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsyncs_tn" + Set gtmtypes("shm_snapshot_t",245,"off")=6672 + Set gtmtypes("shm_snapshot_t",245,"len")=8 + Set gtmtypes("shm_snapshot_t",245,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsyncs_tn")=245 + Set gtmtypes("shm_snapshot_t",246,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_tries_tn" + Set gtmtypes("shm_snapshot_t",246,"off")=6680 + Set gtmtypes("shm_snapshot_t",246,"len")=8 + Set gtmtypes("shm_snapshot_t",246,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_tries_tn")=246 + Set gtmtypes("shm_snapshot_t",247,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_recovers_tn" + Set gtmtypes("shm_snapshot_t",247,"off")=6688 + Set gtmtypes("shm_snapshot_t",247,"len")=8 + Set gtmtypes("shm_snapshot_t",247,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_recovers_tn")=247 + Set gtmtypes("shm_snapshot_t",248,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_tn" + Set gtmtypes("shm_snapshot_t",248,"off")=6696 + Set gtmtypes("shm_snapshot_t",248,"len")=8 + Set gtmtypes("shm_snapshot_t",248,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_tn")=248 + Set gtmtypes("shm_snapshot_t",249,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_in_crit_tn" + Set gtmtypes("shm_snapshot_t",249,"off")=6704 + Set gtmtypes("shm_snapshot_t",249,"len")=8 + Set gtmtypes("shm_snapshot_t",249,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_in_crit_tn")=249 + Set gtmtypes("shm_snapshot_t",250,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_timers_tn" + Set gtmtypes("shm_snapshot_t",250,"off")=6712 + Set gtmtypes("shm_snapshot_t",250,"len")=8 + Set gtmtypes("shm_snapshot_t",250,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_timers_tn")=250 + Set gtmtypes("shm_snapshot_t",251,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_writes_tn" + Set gtmtypes("shm_snapshot_t",251,"off")=6720 + Set gtmtypes("shm_snapshot_t",251,"len")=8 + Set gtmtypes("shm_snapshot_t",251,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_writes_tn")=251 + Set gtmtypes("shm_snapshot_t",252,"name")="shm_snapshot_t.shadow_file_header.mutex_queue_full_tn" + Set gtmtypes("shm_snapshot_t",252,"off")=6728 + Set gtmtypes("shm_snapshot_t",252,"len")=8 + Set gtmtypes("shm_snapshot_t",252,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_queue_full_tn")=252 + Set gtmtypes("shm_snapshot_t",253,"name")="shm_snapshot_t.shadow_file_header.wcb_bt_put_tn" + Set gtmtypes("shm_snapshot_t",253,"off")=6736 + Set gtmtypes("shm_snapshot_t",253,"len")=8 + Set gtmtypes("shm_snapshot_t",253,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bt_put_tn")=253 + Set gtmtypes("shm_snapshot_t",254,"name")="shm_snapshot_t.shadow_file_header.wcb_mutex_salvage_tn" + Set gtmtypes("shm_snapshot_t",254,"off")=6744 + Set gtmtypes("shm_snapshot_t",254,"len")=8 + Set gtmtypes("shm_snapshot_t",254,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mutex_salvage_tn")=254 + Set gtmtypes("shm_snapshot_t",255,"name")="shm_snapshot_t.shadow_file_header.wcb_tp_grab_crit_tn" + Set gtmtypes("shm_snapshot_t",255,"off")=6752 + Set gtmtypes("shm_snapshot_t",255,"len")=8 + Set gtmtypes("shm_snapshot_t",255,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_tp_grab_crit_tn")=255 + Set gtmtypes("shm_snapshot_t",256,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("shm_snapshot_t",256,"off")=6760 + Set gtmtypes("shm_snapshot_t",256,"len")=8 + Set gtmtypes("shm_snapshot_t",256,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn")=256 + Set gtmtypes("shm_snapshot_t",257,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("shm_snapshot_t",257,"off")=6768 + Set gtmtypes("shm_snapshot_t",257,"len")=8 + Set gtmtypes("shm_snapshot_t",257,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_cr_invcr_tn")=257 + Set gtmtypes("shm_snapshot_t",258,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("shm_snapshot_t",258,"off")=6776 + Set gtmtypes("shm_snapshot_t",258,"len")=8 + Set gtmtypes("shm_snapshot_t",258,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_rip_wait_tn")=258 + Set gtmtypes("shm_snapshot_t",259,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("shm_snapshot_t",259,"off")=6784 + Set gtmtypes("shm_snapshot_t",259,"len")=8 + Set gtmtypes("shm_snapshot_t",259,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn")=259 + Set gtmtypes("shm_snapshot_t",260,"name")="shm_snapshot_t.shadow_file_header.wcb_gds_rundown_tn" + Set gtmtypes("shm_snapshot_t",260,"off")=6792 + Set gtmtypes("shm_snapshot_t",260,"len")=8 + Set gtmtypes("shm_snapshot_t",260,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_gds_rundown_tn")=260 + Set gtmtypes("shm_snapshot_t",261,"name")="shm_snapshot_t.shadow_file_header.wcb_wcs_flu1_tn" + Set gtmtypes("shm_snapshot_t",261,"off")=6800 + Set gtmtypes("shm_snapshot_t",261,"len")=8 + Set gtmtypes("shm_snapshot_t",261,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wcs_flu1_tn")=261 + Set gtmtypes("shm_snapshot_t",262,"name")="shm_snapshot_t.shadow_file_header.wcb_mu_back_tn" + Set gtmtypes("shm_snapshot_t",262,"off")=6808 + Set gtmtypes("shm_snapshot_t",262,"len")=8 + Set gtmtypes("shm_snapshot_t",262,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mu_back_tn")=262 + Set gtmtypes("shm_snapshot_t",263,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("shm_snapshot_t",263,"off")=6816 + Set gtmtypes("shm_snapshot_t",263,"len")=8 + Set gtmtypes("shm_snapshot_t",263,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn")=263 + Set gtmtypes("shm_snapshot_t",264,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("shm_snapshot_t",264,"off")=6824 + Set gtmtypes("shm_snapshot_t",264,"len")=8 + Set gtmtypes("shm_snapshot_t",264,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn")=264 + Set gtmtypes("shm_snapshot_t",265,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("shm_snapshot_t",265,"off")=6832 + Set gtmtypes("shm_snapshot_t",265,"len")=8 + Set gtmtypes("shm_snapshot_t",265,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_twin_stuck_tn")=265 + Set gtmtypes("shm_snapshot_t",266,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("shm_snapshot_t",266,"off")=6840 + Set gtmtypes("shm_snapshot_t",266,"len")=8 + Set gtmtypes("shm_snapshot_t",266,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_wrt_latch_stuck_tn")=266 + Set gtmtypes("shm_snapshot_t",267,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("shm_snapshot_t",267,"off")=6848 + Set gtmtypes("shm_snapshot_t",267,"len")=8 + Set gtmtypes("shm_snapshot_t",267,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_now_crit_tn")=267 + Set gtmtypes("shm_snapshot_t",268,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("shm_snapshot_t",268,"off")=6856 + Set gtmtypes("shm_snapshot_t",268,"len")=8 + Set gtmtypes("shm_snapshot_t",268,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn")=268 + Set gtmtypes("shm_snapshot_t",269,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("shm_snapshot_t",269,"off")=6864 + Set gtmtypes("shm_snapshot_t",269,"len")=8 + Set gtmtypes("shm_snapshot_t",269,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn")=269 + Set gtmtypes("shm_snapshot_t",270,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("shm_snapshot_t",270,"off")=6872 + Set gtmtypes("shm_snapshot_t",270,"len")=8 + Set gtmtypes("shm_snapshot_t",270,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn")=270 + Set gtmtypes("shm_snapshot_t",271,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("shm_snapshot_t",271,"off")=6880 + Set gtmtypes("shm_snapshot_t",271,"len")=8 + Set gtmtypes("shm_snapshot_t",271,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn")=271 + Set gtmtypes("shm_snapshot_t",272,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("shm_snapshot_t",272,"off")=6888 + Set gtmtypes("shm_snapshot_t",272,"len")=8 + Set gtmtypes("shm_snapshot_t",272,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn")=272 + Set gtmtypes("shm_snapshot_t",273,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("shm_snapshot_t",273,"off")=6896 + Set gtmtypes("shm_snapshot_t",273,"len")=8 + Set gtmtypes("shm_snapshot_t",273,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn")=273 + Set gtmtypes("shm_snapshot_t",274,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("shm_snapshot_t",274,"off")=6904 + Set gtmtypes("shm_snapshot_t",274,"len")=8 + Set gtmtypes("shm_snapshot_t",274,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn")=274 + Set gtmtypes("shm_snapshot_t",275,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("shm_snapshot_t",275,"off")=6912 + Set gtmtypes("shm_snapshot_t",275,"len")=8 + Set gtmtypes("shm_snapshot_t",275,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn")=275 + Set gtmtypes("shm_snapshot_t",276,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("shm_snapshot_t",276,"off")=6920 + Set gtmtypes("shm_snapshot_t",276,"len")=8 + Set gtmtypes("shm_snapshot_t",276,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn")=276 + Set gtmtypes("shm_snapshot_t",277,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("shm_snapshot_t",277,"off")=6928 + Set gtmtypes("shm_snapshot_t",277,"len")=8 + Set gtmtypes("shm_snapshot_t",277,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn")=277 + Set gtmtypes("shm_snapshot_t",278,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_bt_get_tn" + Set gtmtypes("shm_snapshot_t",278,"off")=6936 + Set gtmtypes("shm_snapshot_t",278,"len")=8 + Set gtmtypes("shm_snapshot_t",278,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_bt_get_tn")=278 + Set gtmtypes("shm_snapshot_t",279,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("shm_snapshot_t",279,"off")=6944 + Set gtmtypes("shm_snapshot_t",279,"len")=8 + Set gtmtypes("shm_snapshot_t",279,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn")=279 + Set gtmtypes("shm_snapshot_t",280,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",280,"off")=6952 + Set gtmtypes("shm_snapshot_t",280,"len")=8 + Set gtmtypes("shm_snapshot_t",280,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail1_tn")=280 + Set gtmtypes("shm_snapshot_t",281,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",281,"off")=6960 + Set gtmtypes("shm_snapshot_t",281,"len")=8 + Set gtmtypes("shm_snapshot_t",281,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail2_tn")=281 + Set gtmtypes("shm_snapshot_t",282,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",282,"off")=6968 + Set gtmtypes("shm_snapshot_t",282,"len")=8 + Set gtmtypes("shm_snapshot_t",282,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail1_tn")=282 + Set gtmtypes("shm_snapshot_t",283,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",283,"off")=6976 + Set gtmtypes("shm_snapshot_t",283,"len")=8 + Set gtmtypes("shm_snapshot_t",283,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail2_tn")=283 + Set gtmtypes("shm_snapshot_t",284,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail3_tn" + Set gtmtypes("shm_snapshot_t",284,"off")=6984 + Set gtmtypes("shm_snapshot_t",284,"len")=8 + Set gtmtypes("shm_snapshot_t",284,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail3_tn")=284 + Set gtmtypes("shm_snapshot_t",285,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail4_tn" + Set gtmtypes("shm_snapshot_t",285,"off")=6992 + Set gtmtypes("shm_snapshot_t",285,"len")=8 + Set gtmtypes("shm_snapshot_t",285,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail4_tn")=285 + Set gtmtypes("shm_snapshot_t",286,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",286,"off")=7000 + Set gtmtypes("shm_snapshot_t",286,"len")=8 + Set gtmtypes("shm_snapshot_t",286,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail1_tn")=286 + Set gtmtypes("shm_snapshot_t",287,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",287,"off")=7008 + Set gtmtypes("shm_snapshot_t",287,"len")=8 + Set gtmtypes("shm_snapshot_t",287,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail2_tn")=287 + Set gtmtypes("shm_snapshot_t",288,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail3_tn" + Set gtmtypes("shm_snapshot_t",288,"off")=7016 + Set gtmtypes("shm_snapshot_t",288,"len")=8 + Set gtmtypes("shm_snapshot_t",288,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail3_tn")=288 + Set gtmtypes("shm_snapshot_t",289,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail4_tn" + Set gtmtypes("shm_snapshot_t",289,"off")=7024 + Set gtmtypes("shm_snapshot_t",289,"len")=8 + Set gtmtypes("shm_snapshot_t",289,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail4_tn")=289 + Set gtmtypes("shm_snapshot_t",290,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("shm_snapshot_t",290,"off")=7032 + Set gtmtypes("shm_snapshot_t",290,"len")=8 + Set gtmtypes("shm_snapshot_t",290,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn")=290 + Set gtmtypes("shm_snapshot_t",291,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("shm_snapshot_t",291,"off")=7040 + Set gtmtypes("shm_snapshot_t",291,"len")=8 + Set gtmtypes("shm_snapshot_t",291,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn")=291 + Set gtmtypes("shm_snapshot_t",292,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("shm_snapshot_t",292,"off")=7048 + Set gtmtypes("shm_snapshot_t",292,"len")=8 + Set gtmtypes("shm_snapshot_t",292,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn")=292 + Set gtmtypes("shm_snapshot_t",293,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_syncio_tn" + Set gtmtypes("shm_snapshot_t",293,"off")=7056 + Set gtmtypes("shm_snapshot_t",293,"len")=8 + Set gtmtypes("shm_snapshot_t",293,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_syncio_tn")=293 + Set gtmtypes("shm_snapshot_t",294,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_asyncio_tn" + Set gtmtypes("shm_snapshot_t",294,"off")=7064 + Set gtmtypes("shm_snapshot_t",294,"len")=8 + Set gtmtypes("shm_snapshot_t",294,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_asyncio_tn")=294 + Set gtmtypes("shm_snapshot_t",295,"name")="shm_snapshot_t.shadow_file_header.shmpool_refmt_harvests_tn" + Set gtmtypes("shm_snapshot_t",295,"off")=7072 + Set gtmtypes("shm_snapshot_t",295,"len")=8 + Set gtmtypes("shm_snapshot_t",295,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_refmt_harvests_tn")=295 + Set gtmtypes("shm_snapshot_t",296,"name")="shm_snapshot_t.shadow_file_header.shmpool_recovery_tn" + Set gtmtypes("shm_snapshot_t",296,"off")=7080 + Set gtmtypes("shm_snapshot_t",296,"len")=8 + Set gtmtypes("shm_snapshot_t",296,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_recovery_tn")=296 + Set gtmtypes("shm_snapshot_t",297,"name")="shm_snapshot_t.shadow_file_header.shmpool_blkd_by_sdc_tn" + Set gtmtypes("shm_snapshot_t",297,"off")=7088 + Set gtmtypes("shm_snapshot_t",297,"len")=8 + Set gtmtypes("shm_snapshot_t",297,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_blkd_by_sdc_tn")=297 + Set gtmtypes("shm_snapshot_t",298,"name")="shm_snapshot_t.shadow_file_header.shmpool_alloc_bbflush_tn" + Set gtmtypes("shm_snapshot_t",298,"off")=7096 + Set gtmtypes("shm_snapshot_t",298,"len")=8 + Set gtmtypes("shm_snapshot_t",298,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_alloc_bbflush_tn")=298 + Set gtmtypes("shm_snapshot_t",299,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("shm_snapshot_t",299,"off")=7104 + Set gtmtypes("shm_snapshot_t",299,"len")=8 + Set gtmtypes("shm_snapshot_t",299,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_replaced_tn")=299 + Set gtmtypes("shm_snapshot_t",300,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("shm_snapshot_t",300,"off")=7112 + Set gtmtypes("shm_snapshot_t",300,"len")=8 + Set gtmtypes("shm_snapshot_t",300,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_io_complete_tn")=300 + Set gtmtypes("shm_snapshot_t",301,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_kept_tn" + Set gtmtypes("shm_snapshot_t",301,"off")=7120 + Set gtmtypes("shm_snapshot_t",301,"len")=8 + Set gtmtypes("shm_snapshot_t",301,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_kept_tn")=301 + Set gtmtypes("shm_snapshot_t",302,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_ignored_tn" + Set gtmtypes("shm_snapshot_t",302,"off")=7128 + Set gtmtypes("shm_snapshot_t",302,"len")=8 + Set gtmtypes("shm_snapshot_t",302,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_ignored_tn")=302 + Set gtmtypes("shm_snapshot_t",303,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("shm_snapshot_t",303,"off")=7136 + Set gtmtypes("shm_snapshot_t",303,"len")=8 + Set gtmtypes("shm_snapshot_t",303,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_freed_tn")=303 + Set gtmtypes("shm_snapshot_t",304,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("shm_snapshot_t",304,"off")=7144 + Set gtmtypes("shm_snapshot_t",304,"len")=8 + Set gtmtypes("shm_snapshot_t",304,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_kept_tn")=304 + Set gtmtypes("shm_snapshot_t",305,"name")="shm_snapshot_t.shadow_file_header.active_lvl_trigger_tn" + Set gtmtypes("shm_snapshot_t",305,"off")=7152 + Set gtmtypes("shm_snapshot_t",305,"len")=8 + Set gtmtypes("shm_snapshot_t",305,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.active_lvl_trigger_tn")=305 + Set gtmtypes("shm_snapshot_t",306,"name")="shm_snapshot_t.shadow_file_header.new_buff_tn" + Set gtmtypes("shm_snapshot_t",306,"off")=7160 + Set gtmtypes("shm_snapshot_t",306,"len")=8 + Set gtmtypes("shm_snapshot_t",306,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.new_buff_tn")=306 + Set gtmtypes("shm_snapshot_t",307,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("shm_snapshot_t",307,"off")=7168 + Set gtmtypes("shm_snapshot_t",307,"len")=8 + Set gtmtypes("shm_snapshot_t",307,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_in_crit_tn")=307 + Set gtmtypes("shm_snapshot_t",308,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("shm_snapshot_t",308,"off")=7176 + Set gtmtypes("shm_snapshot_t",308,"len")=8 + Set gtmtypes("shm_snapshot_t",308,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_no_crit_tn")=308 + Set gtmtypes("shm_snapshot_t",309,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("shm_snapshot_t",309,"off")=7184 + Set gtmtypes("shm_snapshot_t",309,"len")=8 + Set gtmtypes("shm_snapshot_t",309,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_pidcnt_tn")=309 + Set gtmtypes("shm_snapshot_t",310,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("shm_snapshot_t",310,"off")=7192 + Set gtmtypes("shm_snapshot_t",310,"len")=8 + Set gtmtypes("shm_snapshot_t",310,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_intend_wait_tn")=310 + Set gtmtypes("shm_snapshot_t",311,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("shm_snapshot_t",311,"off")=7200 + Set gtmtypes("shm_snapshot_t",311,"len")=8 + Set gtmtypes("shm_snapshot_t",311,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn")=311 + Set gtmtypes("shm_snapshot_t",312,"name")="shm_snapshot_t.shadow_file_header.wcb_phase2_commit_wait_tn" + Set gtmtypes("shm_snapshot_t",312,"off")=7208 + Set gtmtypes("shm_snapshot_t",312,"len")=8 + Set gtmtypes("shm_snapshot_t",312,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_phase2_commit_wait_tn")=312 + Set gtmtypes("shm_snapshot_t",313,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_calls_tn" + Set gtmtypes("shm_snapshot_t",313,"off")=7216 + Set gtmtypes("shm_snapshot_t",313,"len")=8 + Set gtmtypes("shm_snapshot_t",313,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_calls_tn")=313 + Set gtmtypes("shm_snapshot_t",314,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rip_tn" + Set gtmtypes("shm_snapshot_t",314,"off")=7224 + Set gtmtypes("shm_snapshot_t",314,"len")=8 + Set gtmtypes("shm_snapshot_t",314,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rip_tn")=314 + Set gtmtypes("shm_snapshot_t",315,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_in_tend_tn" + Set gtmtypes("shm_snapshot_t",315,"off")=7232 + Set gtmtypes("shm_snapshot_t",315,"len")=8 + Set gtmtypes("shm_snapshot_t",315,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_in_tend_tn")=315 + Set gtmtypes("shm_snapshot_t",316,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_search_blk_tn" + Set gtmtypes("shm_snapshot_t",316,"off")=7240 + Set gtmtypes("shm_snapshot_t",316,"len")=8 + Set gtmtypes("shm_snapshot_t",316,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_search_blk_tn")=316 + Set gtmtypes("shm_snapshot_t",317,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_new_rec_tn" + Set gtmtypes("shm_snapshot_t",317,"off")=7248 + Set gtmtypes("shm_snapshot_t",317,"len")=8 + Set gtmtypes("shm_snapshot_t",317,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_new_rec_tn")=317 + Set gtmtypes("shm_snapshot_t",318,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_size_tn" + Set gtmtypes("shm_snapshot_t",318,"off")=7256 + Set gtmtypes("shm_snapshot_t",318,"len")=8 + Set gtmtypes("shm_snapshot_t",318,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_size_tn")=318 + Set gtmtypes("shm_snapshot_t",319,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("shm_snapshot_t",319,"off")=7264 + Set gtmtypes("shm_snapshot_t",319,"len")=8 + Set gtmtypes("shm_snapshot_t",319,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_cmpc_tn")=319 + Set gtmtypes("shm_snapshot_t",320,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_fini_tn" + Set gtmtypes("shm_snapshot_t",320,"off")=7272 + Set gtmtypes("shm_snapshot_t",320,"len")=8 + Set gtmtypes("shm_snapshot_t",320,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_fini_tn")=320 + Set gtmtypes("shm_snapshot_t",321,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_split_tn" + Set gtmtypes("shm_snapshot_t",321,"off")=7280 + Set gtmtypes("shm_snapshot_t",321,"len")=8 + Set gtmtypes("shm_snapshot_t",321,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_split_tn")=321 + Set gtmtypes("shm_snapshot_t",322,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_cnt_tn" + Set gtmtypes("shm_snapshot_t",322,"off")=7288 + Set gtmtypes("shm_snapshot_t",322,"len")=8 + Set gtmtypes("shm_snapshot_t",322,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_cnt_tn")=322 + Set gtmtypes("shm_snapshot_t",323,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_nblks_tn" + Set gtmtypes("shm_snapshot_t",323,"off")=7296 + Set gtmtypes("shm_snapshot_t",323,"len")=8 + Set gtmtypes("shm_snapshot_t",323,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_nblks_tn")=323 + Set gtmtypes("shm_snapshot_t",324,"name")="shm_snapshot_t.shadow_file_header.bg_trc_rec_tn_filler" + Set gtmtypes("shm_snapshot_t",324,"off")=7304 + Set gtmtypes("shm_snapshot_t",324,"len")=112 + Set gtmtypes("shm_snapshot_t",324,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bg_trc_rec_tn_filler")=324 + Set gtmtypes("shm_snapshot_t",325,"name")="shm_snapshot_t.shadow_file_header.total_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",325,"off")=7416 + Set gtmtypes("shm_snapshot_t",325,"len")=4 + Set gtmtypes("shm_snapshot_t",325,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.total_buffer_flush_cntr")=325 + Set gtmtypes("shm_snapshot_t",326,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",326,"off")=7420 + Set gtmtypes("shm_snapshot_t",326,"len")=4 + Set gtmtypes("shm_snapshot_t",326,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_cntr")=326 + Set gtmtypes("shm_snapshot_t",327,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_loop_cntr" + Set gtmtypes("shm_snapshot_t",327,"off")=7424 + Set gtmtypes("shm_snapshot_t",327,"len")=4 + Set gtmtypes("shm_snapshot_t",327,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_loop_cntr")=327 + Set gtmtypes("shm_snapshot_t",328,"name")="shm_snapshot_t.shadow_file_header.wrt_calls_cntr" + Set gtmtypes("shm_snapshot_t",328,"off")=7428 + Set gtmtypes("shm_snapshot_t",328,"len")=4 + Set gtmtypes("shm_snapshot_t",328,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_calls_cntr")=328 + Set gtmtypes("shm_snapshot_t",329,"name")="shm_snapshot_t.shadow_file_header.wrt_count_cntr" + Set gtmtypes("shm_snapshot_t",329,"off")=7432 + Set gtmtypes("shm_snapshot_t",329,"len")=4 + Set gtmtypes("shm_snapshot_t",329,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_count_cntr")=329 + Set gtmtypes("shm_snapshot_t",330,"name")="shm_snapshot_t.shadow_file_header.wrt_blocked_cntr" + Set gtmtypes("shm_snapshot_t",330,"off")=7436 + Set gtmtypes("shm_snapshot_t",330,"len")=4 + Set gtmtypes("shm_snapshot_t",330,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_blocked_cntr")=330 + Set gtmtypes("shm_snapshot_t",331,"name")="shm_snapshot_t.shadow_file_header.wrt_busy_cntr" + Set gtmtypes("shm_snapshot_t",331,"off")=7440 + Set gtmtypes("shm_snapshot_t",331,"len")=4 + Set gtmtypes("shm_snapshot_t",331,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_busy_cntr")=331 + Set gtmtypes("shm_snapshot_t",332,"name")="shm_snapshot_t.shadow_file_header.wrt_noblks_wrtn_cntr" + Set gtmtypes("shm_snapshot_t",332,"off")=7444 + Set gtmtypes("shm_snapshot_t",332,"len")=4 + Set gtmtypes("shm_snapshot_t",332,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_noblks_wrtn_cntr")=332 + Set gtmtypes("shm_snapshot_t",333,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec1_cntr" + Set gtmtypes("shm_snapshot_t",333,"off")=7448 + Set gtmtypes("shm_snapshot_t",333,"len")=4 + Set gtmtypes("shm_snapshot_t",333,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec1_cntr")=333 + Set gtmtypes("shm_snapshot_t",334,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec2_cntr" + Set gtmtypes("shm_snapshot_t",334,"off")=7452 + Set gtmtypes("shm_snapshot_t",334,"len")=4 + Set gtmtypes("shm_snapshot_t",334,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec2_cntr")=334 + Set gtmtypes("shm_snapshot_t",335,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec3_cntr" + Set gtmtypes("shm_snapshot_t",335,"off")=7456 + Set gtmtypes("shm_snapshot_t",335,"len")=4 + Set gtmtypes("shm_snapshot_t",335,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec3_cntr")=335 + Set gtmtypes("shm_snapshot_t",336,"name")="shm_snapshot_t.shadow_file_header.lost_block_recovery_cntr" + Set gtmtypes("shm_snapshot_t",336,"off")=7460 + Set gtmtypes("shm_snapshot_t",336,"len")=4 + Set gtmtypes("shm_snapshot_t",336,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lost_block_recovery_cntr")=336 + Set gtmtypes("shm_snapshot_t",337,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("shm_snapshot_t",337,"off")=7464 + Set gtmtypes("shm_snapshot_t",337,"len")=4 + Set gtmtypes("shm_snapshot_t",337,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_onln_rlbk_cntr")=337 + Set gtmtypes("shm_snapshot_t",338,"name")="shm_snapshot_t.shadow_file_header.stale_cntr" + Set gtmtypes("shm_snapshot_t",338,"off")=7468 + Set gtmtypes("shm_snapshot_t",338,"len")=4 + Set gtmtypes("shm_snapshot_t",338,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_cntr")=338 + Set gtmtypes("shm_snapshot_t",339,"name")="shm_snapshot_t.shadow_file_header.starved_cntr" + Set gtmtypes("shm_snapshot_t",339,"off")=7472 + Set gtmtypes("shm_snapshot_t",339,"len")=4 + Set gtmtypes("shm_snapshot_t",339,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.starved_cntr")=339 + Set gtmtypes("shm_snapshot_t",340,"name")="shm_snapshot_t.shadow_file_header.stale_timer_started_cntr" + Set gtmtypes("shm_snapshot_t",340,"off")=7476 + Set gtmtypes("shm_snapshot_t",340,"len")=4 + Set gtmtypes("shm_snapshot_t",340,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_started_cntr")=340 + Set gtmtypes("shm_snapshot_t",341,"name")="shm_snapshot_t.shadow_file_header.stale_timer_pop_cntr" + Set gtmtypes("shm_snapshot_t",341,"off")=7480 + Set gtmtypes("shm_snapshot_t",341,"len")=4 + Set gtmtypes("shm_snapshot_t",341,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_pop_cntr")=341 + Set gtmtypes("shm_snapshot_t",342,"name")="shm_snapshot_t.shadow_file_header.stale_process_defer_cntr" + Set gtmtypes("shm_snapshot_t",342,"off")=7484 + Set gtmtypes("shm_snapshot_t",342,"len")=4 + Set gtmtypes("shm_snapshot_t",342,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_process_defer_cntr")=342 + Set gtmtypes("shm_snapshot_t",343,"name")="shm_snapshot_t.shadow_file_header.stale_defer_processed_cntr" + Set gtmtypes("shm_snapshot_t",343,"off")=7488 + Set gtmtypes("shm_snapshot_t",343,"len")=4 + Set gtmtypes("shm_snapshot_t",343,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_defer_processed_cntr")=343 + Set gtmtypes("shm_snapshot_t",344,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",344,"off")=7492 + Set gtmtypes("shm_snapshot_t",344,"len")=4 + Set gtmtypes("shm_snapshot_t",344,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_cntr")=344 + Set gtmtypes("shm_snapshot_t",345,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("shm_snapshot_t",345,"off")=7496 + Set gtmtypes("shm_snapshot_t",345,"len")=4 + Set gtmtypes("shm_snapshot_t",345,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_loop_cntr")=345 + Set gtmtypes("shm_snapshot_t",346,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("shm_snapshot_t",346,"off")=7500 + Set gtmtypes("shm_snapshot_t",346,"len")=4 + Set gtmtypes("shm_snapshot_t",346,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_retries_cntr")=346 + Set gtmtypes("shm_snapshot_t",347,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("shm_snapshot_t",347,"off")=7504 + Set gtmtypes("shm_snapshot_t",347,"len")=4 + Set gtmtypes("shm_snapshot_t",347,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr")=347 + Set gtmtypes("shm_snapshot_t",348,"name")="shm_snapshot_t.shadow_file_header.tp_crit_retries_cntr" + Set gtmtypes("shm_snapshot_t",348,"off")=7508 + Set gtmtypes("shm_snapshot_t",348,"len")=4 + Set gtmtypes("shm_snapshot_t",348,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_crit_retries_cntr")=348 + Set gtmtypes("shm_snapshot_t",349,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("shm_snapshot_t",349,"off")=7512 + Set gtmtypes("shm_snapshot_t",349,"len")=4 + Set gtmtypes("shm_snapshot_t",349,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_flush_dirty_cntr")=349 + Set gtmtypes("shm_snapshot_t",350,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_rip_wait_cntr" + Set gtmtypes("shm_snapshot_t",350,"off")=7516 + Set gtmtypes("shm_snapshot_t",350,"len")=4 + Set gtmtypes("shm_snapshot_t",350,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_rip_wait_cntr")=350 + Set gtmtypes("shm_snapshot_t",351,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("shm_snapshot_t",351,"off")=7520 + Set gtmtypes("shm_snapshot_t",351,"len")=4 + Set gtmtypes("shm_snapshot_t",351,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_buf_owner_stuck_cntr")=351 + Set gtmtypes("shm_snapshot_t",352,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_out_of_design_cntr" + Set gtmtypes("shm_snapshot_t",352,"off")=7524 + Set gtmtypes("shm_snapshot_t",352,"len")=4 + Set gtmtypes("shm_snapshot_t",352,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_out_of_design_cntr")=352 + Set gtmtypes("shm_snapshot_t",353,"name")="shm_snapshot_t.shadow_file_header.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("shm_snapshot_t",353,"off")=7528 + Set gtmtypes("shm_snapshot_t",353,"len")=4 + Set gtmtypes("shm_snapshot_t",353,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_buf_owner_stuck_cntr")=353 + Set gtmtypes("shm_snapshot_t",354,"name")="shm_snapshot_t.shadow_file_header.t_qread_out_of_design_cntr" + Set gtmtypes("shm_snapshot_t",354,"off")=7532 + Set gtmtypes("shm_snapshot_t",354,"len")=4 + Set gtmtypes("shm_snapshot_t",354,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_out_of_design_cntr")=354 + Set gtmtypes("shm_snapshot_t",355,"name")="shm_snapshot_t.shadow_file_header.bt_put_flush_dirty_cntr" + Set gtmtypes("shm_snapshot_t",355,"off")=7536 + Set gtmtypes("shm_snapshot_t",355,"len")=4 + Set gtmtypes("shm_snapshot_t",355,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_put_flush_dirty_cntr")=355 + Set gtmtypes("shm_snapshot_t",356,"name")="shm_snapshot_t.shadow_file_header.mlock_wakeups_cntr" + Set gtmtypes("shm_snapshot_t",356,"off")=7540 + Set gtmtypes("shm_snapshot_t",356,"len")=4 + Set gtmtypes("shm_snapshot_t",356,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mlock_wakeups_cntr")=356 + Set gtmtypes("shm_snapshot_t",357,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("shm_snapshot_t",357,"off")=7544 + Set gtmtypes("shm_snapshot_t",357,"len")=4 + Set gtmtypes("shm_snapshot_t",357,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_recover_invoked_cntr")=357 + Set gtmtypes("shm_snapshot_t",358,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("shm_snapshot_t",358,"off")=7548 + Set gtmtypes("shm_snapshot_t",358,"len")=4 + Set gtmtypes("shm_snapshot_t",358,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_verify_passed_cntr")=358 + Set gtmtypes("shm_snapshot_t",359,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("shm_snapshot_t",359,"off")=7552 + Set gtmtypes("shm_snapshot_t",359,"len")=4 + Set gtmtypes("shm_snapshot_t",359,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=359 + Set gtmtypes("shm_snapshot_t",360,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("shm_snapshot_t",360,"off")=7556 + Set gtmtypes("shm_snapshot_t",360,"len")=4 + Set gtmtypes("shm_snapshot_t",360,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=360 + Set gtmtypes("shm_snapshot_t",361,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("shm_snapshot_t",361,"off")=7560 + Set gtmtypes("shm_snapshot_t",361,"len")=4 + Set gtmtypes("shm_snapshot_t",361,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr")=361 + Set gtmtypes("shm_snapshot_t",362,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("shm_snapshot_t",362,"off")=7564 + Set gtmtypes("shm_snapshot_t",362,"len")=4 + Set gtmtypes("shm_snapshot_t",362,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=362 + Set gtmtypes("shm_snapshot_t",363,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_get_cntr" + Set gtmtypes("shm_snapshot_t",363,"off")=7568 + Set gtmtypes("shm_snapshot_t",363,"len")=4 + Set gtmtypes("shm_snapshot_t",363,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_get_cntr")=363 + Set gtmtypes("shm_snapshot_t",364,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("shm_snapshot_t",364,"off")=7572 + Set gtmtypes("shm_snapshot_t",364,"len")=4 + Set gtmtypes("shm_snapshot_t",364,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr")=364 + Set gtmtypes("shm_snapshot_t",365,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("shm_snapshot_t",365,"off")=7576 + Set gtmtypes("shm_snapshot_t",365,"len")=4 + Set gtmtypes("shm_snapshot_t",365,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_t1_cntr")=365 + Set gtmtypes("shm_snapshot_t",366,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("shm_snapshot_t",366,"off")=7580 + Set gtmtypes("shm_snapshot_t",366,"len")=4 + Set gtmtypes("shm_snapshot_t",366,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_bitmap_cntr")=366 + Set gtmtypes("shm_snapshot_t",367,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("shm_snapshot_t",367,"off")=7584 + Set gtmtypes("shm_snapshot_t",367,"len")=4 + Set gtmtypes("shm_snapshot_t",367,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr")=367 + Set gtmtypes("shm_snapshot_t",368,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("shm_snapshot_t",368,"off")=7588 + Set gtmtypes("shm_snapshot_t",368,"len")=4 + Set gtmtypes("shm_snapshot_t",368,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr")=368 + Set gtmtypes("shm_snapshot_t",369,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist_cntr" + Set gtmtypes("shm_snapshot_t",369,"off")=7592 + Set gtmtypes("shm_snapshot_t",369,"len")=4 + Set gtmtypes("shm_snapshot_t",369,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist_cntr")=369 + Set gtmtypes("shm_snapshot_t",370,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",370,"off")=7596 + Set gtmtypes("shm_snapshot_t",370,"len")=4 + Set gtmtypes("shm_snapshot_t",370,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr")=370 + Set gtmtypes("shm_snapshot_t",371,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",371,"off")=7600 + Set gtmtypes("shm_snapshot_t",371,"len")=4 + Set gtmtypes("shm_snapshot_t",371,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr")=371 + Set gtmtypes("shm_snapshot_t",372,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",372,"off")=7604 + Set gtmtypes("shm_snapshot_t",372,"len")=4 + Set gtmtypes("shm_snapshot_t",372,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr")=372 + Set gtmtypes("shm_snapshot_t",373,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",373,"off")=7608 + Set gtmtypes("shm_snapshot_t",373,"len")=4 + Set gtmtypes("shm_snapshot_t",373,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr")=373 + Set gtmtypes("shm_snapshot_t",374,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("shm_snapshot_t",374,"off")=7612 + Set gtmtypes("shm_snapshot_t",374,"len")=4 + Set gtmtypes("shm_snapshot_t",374,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr")=374 + Set gtmtypes("shm_snapshot_t",375,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("shm_snapshot_t",375,"off")=7616 + Set gtmtypes("shm_snapshot_t",375,"len")=4 + Set gtmtypes("shm_snapshot_t",375,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr")=375 + Set gtmtypes("shm_snapshot_t",376,"name")="shm_snapshot_t.shadow_file_header.db_csh_get_too_many_loops_cntr" + Set gtmtypes("shm_snapshot_t",376,"off")=7620 + Set gtmtypes("shm_snapshot_t",376,"len")=4 + Set gtmtypes("shm_snapshot_t",376,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_get_too_many_loops_cntr")=376 + Set gtmtypes("shm_snapshot_t",377,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",377,"off")=7624 + Set gtmtypes("shm_snapshot_t",377,"len")=4 + Set gtmtypes("shm_snapshot_t",377,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr")=377 + Set gtmtypes("shm_snapshot_t",378,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",378,"off")=7628 + Set gtmtypes("shm_snapshot_t",378,"len")=4 + Set gtmtypes("shm_snapshot_t",378,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr")=378 + Set gtmtypes("shm_snapshot_t",379,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_lost_cntr" + Set gtmtypes("shm_snapshot_t",379,"off")=7632 + Set gtmtypes("shm_snapshot_t",379,"len")=4 + Set gtmtypes("shm_snapshot_t",379,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_lost_cntr")=379 + Set gtmtypes("shm_snapshot_t",380,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("shm_snapshot_t",380,"off")=7636 + Set gtmtypes("shm_snapshot_t",380,"len")=4 + Set gtmtypes("shm_snapshot_t",380,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_stuck_cntr")=380 + Set gtmtypes("shm_snapshot_t",381,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("shm_snapshot_t",381,"off")=7640 + Set gtmtypes("shm_snapshot_t",381,"len")=4 + Set gtmtypes("shm_snapshot_t",381,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_blocked_cntr")=381 + Set gtmtypes("shm_snapshot_t",382,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsyncs_cntr" + Set gtmtypes("shm_snapshot_t",382,"off")=7644 + Set gtmtypes("shm_snapshot_t",382,"len")=4 + Set gtmtypes("shm_snapshot_t",382,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsyncs_cntr")=382 + Set gtmtypes("shm_snapshot_t",383,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_tries_cntr" + Set gtmtypes("shm_snapshot_t",383,"off")=7648 + Set gtmtypes("shm_snapshot_t",383,"len")=4 + Set gtmtypes("shm_snapshot_t",383,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_tries_cntr")=383 + Set gtmtypes("shm_snapshot_t",384,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_recovers_cntr" + Set gtmtypes("shm_snapshot_t",384,"off")=7652 + Set gtmtypes("shm_snapshot_t",384,"len")=4 + Set gtmtypes("shm_snapshot_t",384,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_recovers_cntr")=384 + Set gtmtypes("shm_snapshot_t",385,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_cntr" + Set gtmtypes("shm_snapshot_t",385,"off")=7656 + Set gtmtypes("shm_snapshot_t",385,"len")=4 + Set gtmtypes("shm_snapshot_t",385,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_cntr")=385 + Set gtmtypes("shm_snapshot_t",386,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("shm_snapshot_t",386,"off")=7660 + Set gtmtypes("shm_snapshot_t",386,"len")=4 + Set gtmtypes("shm_snapshot_t",386,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_in_crit_cntr")=386 + Set gtmtypes("shm_snapshot_t",387,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_timers_cntr" + Set gtmtypes("shm_snapshot_t",387,"off")=7664 + Set gtmtypes("shm_snapshot_t",387,"len")=4 + Set gtmtypes("shm_snapshot_t",387,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_timers_cntr")=387 + Set gtmtypes("shm_snapshot_t",388,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_writes_cntr" + Set gtmtypes("shm_snapshot_t",388,"off")=7668 + Set gtmtypes("shm_snapshot_t",388,"len")=4 + Set gtmtypes("shm_snapshot_t",388,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_writes_cntr")=388 + Set gtmtypes("shm_snapshot_t",389,"name")="shm_snapshot_t.shadow_file_header.mutex_queue_full_cntr" + Set gtmtypes("shm_snapshot_t",389,"off")=7672 + Set gtmtypes("shm_snapshot_t",389,"len")=4 + Set gtmtypes("shm_snapshot_t",389,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_queue_full_cntr")=389 + Set gtmtypes("shm_snapshot_t",390,"name")="shm_snapshot_t.shadow_file_header.wcb_bt_put_cntr" + Set gtmtypes("shm_snapshot_t",390,"off")=7676 + Set gtmtypes("shm_snapshot_t",390,"len")=4 + Set gtmtypes("shm_snapshot_t",390,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bt_put_cntr")=390 + Set gtmtypes("shm_snapshot_t",391,"name")="shm_snapshot_t.shadow_file_header.wcb_mutex_salvage_cntr" + Set gtmtypes("shm_snapshot_t",391,"off")=7680 + Set gtmtypes("shm_snapshot_t",391,"len")=4 + Set gtmtypes("shm_snapshot_t",391,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mutex_salvage_cntr")=391 + Set gtmtypes("shm_snapshot_t",392,"name")="shm_snapshot_t.shadow_file_header.wcb_tp_grab_crit_cntr" + Set gtmtypes("shm_snapshot_t",392,"off")=7684 + Set gtmtypes("shm_snapshot_t",392,"len")=4 + Set gtmtypes("shm_snapshot_t",392,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_tp_grab_crit_cntr")=392 + Set gtmtypes("shm_snapshot_t",393,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("shm_snapshot_t",393,"off")=7688 + Set gtmtypes("shm_snapshot_t",393,"len")=4 + Set gtmtypes("shm_snapshot_t",393,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr")=393 + Set gtmtypes("shm_snapshot_t",394,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("shm_snapshot_t",394,"off")=7692 + Set gtmtypes("shm_snapshot_t",394,"len")=4 + Set gtmtypes("shm_snapshot_t",394,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr")=394 + Set gtmtypes("shm_snapshot_t",395,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("shm_snapshot_t",395,"off")=7696 + Set gtmtypes("shm_snapshot_t",395,"len")=4 + Set gtmtypes("shm_snapshot_t",395,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_rip_wait_cntr")=395 + Set gtmtypes("shm_snapshot_t",396,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("shm_snapshot_t",396,"off")=7700 + Set gtmtypes("shm_snapshot_t",396,"len")=4 + Set gtmtypes("shm_snapshot_t",396,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr")=396 + Set gtmtypes("shm_snapshot_t",397,"name")="shm_snapshot_t.shadow_file_header.wcb_gds_rundown_cntr" + Set gtmtypes("shm_snapshot_t",397,"off")=7704 + Set gtmtypes("shm_snapshot_t",397,"len")=4 + Set gtmtypes("shm_snapshot_t",397,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_gds_rundown_cntr")=397 + Set gtmtypes("shm_snapshot_t",398,"name")="shm_snapshot_t.shadow_file_header.wcb_wcs_flu1_cntr" + Set gtmtypes("shm_snapshot_t",398,"off")=7708 + Set gtmtypes("shm_snapshot_t",398,"len")=4 + Set gtmtypes("shm_snapshot_t",398,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wcs_flu1_cntr")=398 + Set gtmtypes("shm_snapshot_t",399,"name")="shm_snapshot_t.shadow_file_header.wcb_mu_back_cntr" + Set gtmtypes("shm_snapshot_t",399,"off")=7712 + Set gtmtypes("shm_snapshot_t",399,"len")=4 + Set gtmtypes("shm_snapshot_t",399,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mu_back_cntr")=399 + Set gtmtypes("shm_snapshot_t",400,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("shm_snapshot_t",400,"off")=7716 + Set gtmtypes("shm_snapshot_t",400,"len")=4 + Set gtmtypes("shm_snapshot_t",400,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr")=400 + Set gtmtypes("shm_snapshot_t",401,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("shm_snapshot_t",401,"off")=7720 + Set gtmtypes("shm_snapshot_t",401,"len")=4 + Set gtmtypes("shm_snapshot_t",401,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr")=401 + Set gtmtypes("shm_snapshot_t",402,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("shm_snapshot_t",402,"off")=7724 + Set gtmtypes("shm_snapshot_t",402,"len")=4 + Set gtmtypes("shm_snapshot_t",402,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr")=402 + Set gtmtypes("shm_snapshot_t",403,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("shm_snapshot_t",403,"off")=7728 + Set gtmtypes("shm_snapshot_t",403,"len")=4 + Set gtmtypes("shm_snapshot_t",403,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr")=403 + Set gtmtypes("shm_snapshot_t",404,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("shm_snapshot_t",404,"off")=7732 + Set gtmtypes("shm_snapshot_t",404,"len")=4 + Set gtmtypes("shm_snapshot_t",404,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr")=404 + Set gtmtypes("shm_snapshot_t",405,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("shm_snapshot_t",405,"off")=7736 + Set gtmtypes("shm_snapshot_t",405,"len")=4 + Set gtmtypes("shm_snapshot_t",405,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr")=405 + Set gtmtypes("shm_snapshot_t",406,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("shm_snapshot_t",406,"off")=7740 + Set gtmtypes("shm_snapshot_t",406,"len")=4 + Set gtmtypes("shm_snapshot_t",406,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr")=406 + Set gtmtypes("shm_snapshot_t",407,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("shm_snapshot_t",407,"off")=7744 + Set gtmtypes("shm_snapshot_t",407,"len")=4 + Set gtmtypes("shm_snapshot_t",407,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr")=407 + Set gtmtypes("shm_snapshot_t",408,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("shm_snapshot_t",408,"off")=7748 + Set gtmtypes("shm_snapshot_t",408,"len")=4 + Set gtmtypes("shm_snapshot_t",408,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr")=408 + Set gtmtypes("shm_snapshot_t",409,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("shm_snapshot_t",409,"off")=7752 + Set gtmtypes("shm_snapshot_t",409,"len")=4 + Set gtmtypes("shm_snapshot_t",409,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr")=409 + Set gtmtypes("shm_snapshot_t",410,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("shm_snapshot_t",410,"off")=7756 + Set gtmtypes("shm_snapshot_t",410,"len")=4 + Set gtmtypes("shm_snapshot_t",410,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr")=410 + Set gtmtypes("shm_snapshot_t",411,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("shm_snapshot_t",411,"off")=7760 + Set gtmtypes("shm_snapshot_t",411,"len")=4 + Set gtmtypes("shm_snapshot_t",411,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr")=411 + Set gtmtypes("shm_snapshot_t",412,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("shm_snapshot_t",412,"off")=7764 + Set gtmtypes("shm_snapshot_t",412,"len")=4 + Set gtmtypes("shm_snapshot_t",412,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr")=412 + Set gtmtypes("shm_snapshot_t",413,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("shm_snapshot_t",413,"off")=7768 + Set gtmtypes("shm_snapshot_t",413,"len")=4 + Set gtmtypes("shm_snapshot_t",413,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr")=413 + Set gtmtypes("shm_snapshot_t",414,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("shm_snapshot_t",414,"off")=7772 + Set gtmtypes("shm_snapshot_t",414,"len")=4 + Set gtmtypes("shm_snapshot_t",414,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr")=414 + Set gtmtypes("shm_snapshot_t",415,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_bt_get_cntr" + Set gtmtypes("shm_snapshot_t",415,"off")=7776 + Set gtmtypes("shm_snapshot_t",415,"len")=4 + Set gtmtypes("shm_snapshot_t",415,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_bt_get_cntr")=415 + Set gtmtypes("shm_snapshot_t",416,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("shm_snapshot_t",416,"off")=7780 + Set gtmtypes("shm_snapshot_t",416,"len")=4 + Set gtmtypes("shm_snapshot_t",416,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr")=416 + Set gtmtypes("shm_snapshot_t",417,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",417,"off")=7784 + Set gtmtypes("shm_snapshot_t",417,"len")=4 + Set gtmtypes("shm_snapshot_t",417,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail1_cntr")=417 + Set gtmtypes("shm_snapshot_t",418,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",418,"off")=7788 + Set gtmtypes("shm_snapshot_t",418,"len")=4 + Set gtmtypes("shm_snapshot_t",418,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail2_cntr")=418 + Set gtmtypes("shm_snapshot_t",419,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",419,"off")=7792 + Set gtmtypes("shm_snapshot_t",419,"len")=4 + Set gtmtypes("shm_snapshot_t",419,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail1_cntr")=419 + Set gtmtypes("shm_snapshot_t",420,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",420,"off")=7796 + Set gtmtypes("shm_snapshot_t",420,"len")=4 + Set gtmtypes("shm_snapshot_t",420,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail2_cntr")=420 + Set gtmtypes("shm_snapshot_t",421,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("shm_snapshot_t",421,"off")=7800 + Set gtmtypes("shm_snapshot_t",421,"len")=4 + Set gtmtypes("shm_snapshot_t",421,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail3_cntr")=421 + Set gtmtypes("shm_snapshot_t",422,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("shm_snapshot_t",422,"off")=7804 + Set gtmtypes("shm_snapshot_t",422,"len")=4 + Set gtmtypes("shm_snapshot_t",422,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail4_cntr")=422 + Set gtmtypes("shm_snapshot_t",423,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",423,"off")=7808 + Set gtmtypes("shm_snapshot_t",423,"len")=4 + Set gtmtypes("shm_snapshot_t",423,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail1_cntr")=423 + Set gtmtypes("shm_snapshot_t",424,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",424,"off")=7812 + Set gtmtypes("shm_snapshot_t",424,"len")=4 + Set gtmtypes("shm_snapshot_t",424,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail2_cntr")=424 + Set gtmtypes("shm_snapshot_t",425,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("shm_snapshot_t",425,"off")=7816 + Set gtmtypes("shm_snapshot_t",425,"len")=4 + Set gtmtypes("shm_snapshot_t",425,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail3_cntr")=425 + Set gtmtypes("shm_snapshot_t",426,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("shm_snapshot_t",426,"off")=7820 + Set gtmtypes("shm_snapshot_t",426,"len")=4 + Set gtmtypes("shm_snapshot_t",426,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail4_cntr")=426 + Set gtmtypes("shm_snapshot_t",427,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("shm_snapshot_t",427,"off")=7824 + Set gtmtypes("shm_snapshot_t",427,"len")=4 + Set gtmtypes("shm_snapshot_t",427,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr")=427 + Set gtmtypes("shm_snapshot_t",428,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("shm_snapshot_t",428,"off")=7828 + Set gtmtypes("shm_snapshot_t",428,"len")=4 + Set gtmtypes("shm_snapshot_t",428,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr")=428 + Set gtmtypes("shm_snapshot_t",429,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("shm_snapshot_t",429,"off")=7832 + Set gtmtypes("shm_snapshot_t",429,"len")=4 + Set gtmtypes("shm_snapshot_t",429,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr")=429 + Set gtmtypes("shm_snapshot_t",430,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_syncio_cntr" + Set gtmtypes("shm_snapshot_t",430,"off")=7836 + Set gtmtypes("shm_snapshot_t",430,"len")=4 + Set gtmtypes("shm_snapshot_t",430,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_syncio_cntr")=430 + Set gtmtypes("shm_snapshot_t",431,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("shm_snapshot_t",431,"off")=7840 + Set gtmtypes("shm_snapshot_t",431,"len")=4 + Set gtmtypes("shm_snapshot_t",431,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_asyncio_cntr")=431 + Set gtmtypes("shm_snapshot_t",432,"name")="shm_snapshot_t.shadow_file_header.shmpool_refmt_harvests_cntr" + Set gtmtypes("shm_snapshot_t",432,"off")=7844 + Set gtmtypes("shm_snapshot_t",432,"len")=4 + Set gtmtypes("shm_snapshot_t",432,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_refmt_harvests_cntr")=432 + Set gtmtypes("shm_snapshot_t",433,"name")="shm_snapshot_t.shadow_file_header.shmpool_recovery_cntr" + Set gtmtypes("shm_snapshot_t",433,"off")=7848 + Set gtmtypes("shm_snapshot_t",433,"len")=4 + Set gtmtypes("shm_snapshot_t",433,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_recovery_cntr")=433 + Set gtmtypes("shm_snapshot_t",434,"name")="shm_snapshot_t.shadow_file_header.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("shm_snapshot_t",434,"off")=7852 + Set gtmtypes("shm_snapshot_t",434,"len")=4 + Set gtmtypes("shm_snapshot_t",434,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_blkd_by_sdc_cntr")=434 + Set gtmtypes("shm_snapshot_t",435,"name")="shm_snapshot_t.shadow_file_header.shmpool_alloc_bbflush_cntr" + Set gtmtypes("shm_snapshot_t",435,"off")=7856 + Set gtmtypes("shm_snapshot_t",435,"len")=4 + Set gtmtypes("shm_snapshot_t",435,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_alloc_bbflush_cntr")=435 + Set gtmtypes("shm_snapshot_t",436,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("shm_snapshot_t",436,"off")=7860 + Set gtmtypes("shm_snapshot_t",436,"len")=4 + Set gtmtypes("shm_snapshot_t",436,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_replaced_cntr")=436 + Set gtmtypes("shm_snapshot_t",437,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("shm_snapshot_t",437,"off")=7864 + Set gtmtypes("shm_snapshot_t",437,"len")=4 + Set gtmtypes("shm_snapshot_t",437,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_io_complete_cntr")=437 + Set gtmtypes("shm_snapshot_t",438,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_kept_cntr" + Set gtmtypes("shm_snapshot_t",438,"off")=7868 + Set gtmtypes("shm_snapshot_t",438,"len")=4 + Set gtmtypes("shm_snapshot_t",438,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_kept_cntr")=438 + Set gtmtypes("shm_snapshot_t",439,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("shm_snapshot_t",439,"off")=7872 + Set gtmtypes("shm_snapshot_t",439,"len")=4 + Set gtmtypes("shm_snapshot_t",439,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_ignored_cntr")=439 + Set gtmtypes("shm_snapshot_t",440,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("shm_snapshot_t",440,"off")=7876 + Set gtmtypes("shm_snapshot_t",440,"len")=4 + Set gtmtypes("shm_snapshot_t",440,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_freed_cntr")=440 + Set gtmtypes("shm_snapshot_t",441,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("shm_snapshot_t",441,"off")=7880 + Set gtmtypes("shm_snapshot_t",441,"len")=4 + Set gtmtypes("shm_snapshot_t",441,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_kept_cntr")=441 + Set gtmtypes("shm_snapshot_t",442,"name")="shm_snapshot_t.shadow_file_header.active_lvl_trigger_cntr" + Set gtmtypes("shm_snapshot_t",442,"off")=7884 + Set gtmtypes("shm_snapshot_t",442,"len")=4 + Set gtmtypes("shm_snapshot_t",442,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.active_lvl_trigger_cntr")=442 + Set gtmtypes("shm_snapshot_t",443,"name")="shm_snapshot_t.shadow_file_header.new_buff_cntr" + Set gtmtypes("shm_snapshot_t",443,"off")=7888 + Set gtmtypes("shm_snapshot_t",443,"len")=4 + Set gtmtypes("shm_snapshot_t",443,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.new_buff_cntr")=443 + Set gtmtypes("shm_snapshot_t",444,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("shm_snapshot_t",444,"off")=7892 + Set gtmtypes("shm_snapshot_t",444,"len")=4 + Set gtmtypes("shm_snapshot_t",444,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr")=444 + Set gtmtypes("shm_snapshot_t",445,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("shm_snapshot_t",445,"off")=7896 + Set gtmtypes("shm_snapshot_t",445,"len")=4 + Set gtmtypes("shm_snapshot_t",445,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr")=445 + Set gtmtypes("shm_snapshot_t",446,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("shm_snapshot_t",446,"off")=7900 + Set gtmtypes("shm_snapshot_t",446,"len")=4 + Set gtmtypes("shm_snapshot_t",446,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_pidcnt_cntr")=446 + Set gtmtypes("shm_snapshot_t",447,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("shm_snapshot_t",447,"off")=7904 + Set gtmtypes("shm_snapshot_t",447,"len")=4 + Set gtmtypes("shm_snapshot_t",447,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_intend_wait_cntr")=447 + Set gtmtypes("shm_snapshot_t",448,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("shm_snapshot_t",448,"off")=7908 + Set gtmtypes("shm_snapshot_t",448,"len")=4 + Set gtmtypes("shm_snapshot_t",448,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr")=448 + Set gtmtypes("shm_snapshot_t",449,"name")="shm_snapshot_t.shadow_file_header.wcb_phase2_commit_wait_cntr" + Set gtmtypes("shm_snapshot_t",449,"off")=7912 + Set gtmtypes("shm_snapshot_t",449,"len")=4 + Set gtmtypes("shm_snapshot_t",449,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_phase2_commit_wait_cntr")=449 + Set gtmtypes("shm_snapshot_t",450,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_calls_cntr" + Set gtmtypes("shm_snapshot_t",450,"off")=7916 + Set gtmtypes("shm_snapshot_t",450,"len")=4 + Set gtmtypes("shm_snapshot_t",450,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_calls_cntr")=450 + Set gtmtypes("shm_snapshot_t",451,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rip_cntr" + Set gtmtypes("shm_snapshot_t",451,"off")=7920 + Set gtmtypes("shm_snapshot_t",451,"len")=4 + Set gtmtypes("shm_snapshot_t",451,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rip_cntr")=451 + Set gtmtypes("shm_snapshot_t",452,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_in_tend_cntr" + Set gtmtypes("shm_snapshot_t",452,"off")=7924 + Set gtmtypes("shm_snapshot_t",452,"len")=4 + Set gtmtypes("shm_snapshot_t",452,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_in_tend_cntr")=452 + Set gtmtypes("shm_snapshot_t",453,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_search_blk_cntr" + Set gtmtypes("shm_snapshot_t",453,"off")=7928 + Set gtmtypes("shm_snapshot_t",453,"len")=4 + Set gtmtypes("shm_snapshot_t",453,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_search_blk_cntr")=453 + Set gtmtypes("shm_snapshot_t",454,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_new_rec_cntr" + Set gtmtypes("shm_snapshot_t",454,"off")=7932 + Set gtmtypes("shm_snapshot_t",454,"len")=4 + Set gtmtypes("shm_snapshot_t",454,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_new_rec_cntr")=454 + Set gtmtypes("shm_snapshot_t",455,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_size_cntr" + Set gtmtypes("shm_snapshot_t",455,"off")=7936 + Set gtmtypes("shm_snapshot_t",455,"len")=4 + Set gtmtypes("shm_snapshot_t",455,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_size_cntr")=455 + Set gtmtypes("shm_snapshot_t",456,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("shm_snapshot_t",456,"off")=7940 + Set gtmtypes("shm_snapshot_t",456,"len")=4 + Set gtmtypes("shm_snapshot_t",456,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_cmpc_cntr")=456 + Set gtmtypes("shm_snapshot_t",457,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("shm_snapshot_t",457,"off")=7944 + Set gtmtypes("shm_snapshot_t",457,"len")=4 + Set gtmtypes("shm_snapshot_t",457,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_fini_cntr")=457 + Set gtmtypes("shm_snapshot_t",458,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_split_cntr" + Set gtmtypes("shm_snapshot_t",458,"off")=7948 + Set gtmtypes("shm_snapshot_t",458,"len")=4 + Set gtmtypes("shm_snapshot_t",458,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_split_cntr")=458 + Set gtmtypes("shm_snapshot_t",459,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("shm_snapshot_t",459,"off")=7952 + Set gtmtypes("shm_snapshot_t",459,"len")=4 + Set gtmtypes("shm_snapshot_t",459,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_cnt_cntr")=459 + Set gtmtypes("shm_snapshot_t",460,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("shm_snapshot_t",460,"off")=7956 + Set gtmtypes("shm_snapshot_t",460,"len")=4 + Set gtmtypes("shm_snapshot_t",460,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_nblks_cntr")=460 + Set gtmtypes("shm_snapshot_t",461,"name")="shm_snapshot_t.shadow_file_header.bg_trc_rec_cntr_filler" + Set gtmtypes("shm_snapshot_t",461,"off")=7960 + Set gtmtypes("shm_snapshot_t",461,"len")=56 + Set gtmtypes("shm_snapshot_t",461,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bg_trc_rec_cntr_filler")=461 + Set gtmtypes("shm_snapshot_t",462,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches" + Set gtmtypes("shm_snapshot_t",462,"off")=8016 + Set gtmtypes("shm_snapshot_t",462,"len")=8 + Set gtmtypes("shm_snapshot_t",462,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches")=462 + Set gtmtypes("shm_snapshot_t",463,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches.curr_count" + Set gtmtypes("shm_snapshot_t",463,"off")=8016 + Set gtmtypes("shm_snapshot_t",463,"len")=4 + Set gtmtypes("shm_snapshot_t",463,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches.curr_count")=463 + Set gtmtypes("shm_snapshot_t",464,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches.cumul_count" + Set gtmtypes("shm_snapshot_t",464,"off")=8020 + Set gtmtypes("shm_snapshot_t",464,"len")=4 + Set gtmtypes("shm_snapshot_t",464,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches.cumul_count")=464 + Set gtmtypes("shm_snapshot_t",465,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues" + Set gtmtypes("shm_snapshot_t",465,"off")=8024 + Set gtmtypes("shm_snapshot_t",465,"len")=8 + Set gtmtypes("shm_snapshot_t",465,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues")=465 + Set gtmtypes("shm_snapshot_t",466,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues.curr_count" + Set gtmtypes("shm_snapshot_t",466,"off")=8024 + Set gtmtypes("shm_snapshot_t",466,"len")=4 + Set gtmtypes("shm_snapshot_t",466,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues.curr_count")=466 + Set gtmtypes("shm_snapshot_t",467,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("shm_snapshot_t",467,"off")=8028 + Set gtmtypes("shm_snapshot_t",467,"len")=4 + Set gtmtypes("shm_snapshot_t",467,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues.cumul_count")=467 + Set gtmtypes("shm_snapshot_t",468,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head" + Set gtmtypes("shm_snapshot_t",468,"off")=8032 + Set gtmtypes("shm_snapshot_t",468,"len")=8 + Set gtmtypes("shm_snapshot_t",468,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head")=468 + Set gtmtypes("shm_snapshot_t",469,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head.curr_count" + Set gtmtypes("shm_snapshot_t",469,"off")=8032 + Set gtmtypes("shm_snapshot_t",469,"len")=4 + Set gtmtypes("shm_snapshot_t",469,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head.curr_count")=469 + Set gtmtypes("shm_snapshot_t",470,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head.cumul_count" + Set gtmtypes("shm_snapshot_t",470,"off")=8036 + Set gtmtypes("shm_snapshot_t",470,"len")=4 + Set gtmtypes("shm_snapshot_t",470,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head.cumul_count")=470 + Set gtmtypes("shm_snapshot_t",471,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same" + Set gtmtypes("shm_snapshot_t",471,"off")=8040 + Set gtmtypes("shm_snapshot_t",471,"len")=8 + Set gtmtypes("shm_snapshot_t",471,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same")=471 + Set gtmtypes("shm_snapshot_t",472,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same.curr_count" + Set gtmtypes("shm_snapshot_t",472,"off")=8040 + Set gtmtypes("shm_snapshot_t",472,"len")=4 + Set gtmtypes("shm_snapshot_t",472,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same.curr_count")=472 + Set gtmtypes("shm_snapshot_t",473,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same.cumul_count" + Set gtmtypes("shm_snapshot_t",473,"off")=8044 + Set gtmtypes("shm_snapshot_t",473,"len")=4 + Set gtmtypes("shm_snapshot_t",473,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same.cumul_count")=473 + Set gtmtypes("shm_snapshot_t",474,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail" + Set gtmtypes("shm_snapshot_t",474,"off")=8048 + Set gtmtypes("shm_snapshot_t",474,"len")=8 + Set gtmtypes("shm_snapshot_t",474,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail")=474 + Set gtmtypes("shm_snapshot_t",475,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail.curr_count" + Set gtmtypes("shm_snapshot_t",475,"off")=8048 + Set gtmtypes("shm_snapshot_t",475,"len")=4 + Set gtmtypes("shm_snapshot_t",475,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail.curr_count")=475 + Set gtmtypes("shm_snapshot_t",476,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail.cumul_count" + Set gtmtypes("shm_snapshot_t",476,"off")=8052 + Set gtmtypes("shm_snapshot_t",476,"len")=4 + Set gtmtypes("shm_snapshot_t",476,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail.cumul_count")=476 + Set gtmtypes("shm_snapshot_t",477,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads" + Set gtmtypes("shm_snapshot_t",477,"off")=8056 + Set gtmtypes("shm_snapshot_t",477,"len")=8 + Set gtmtypes("shm_snapshot_t",477,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads")=477 + Set gtmtypes("shm_snapshot_t",478,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads.curr_count" + Set gtmtypes("shm_snapshot_t",478,"off")=8056 + Set gtmtypes("shm_snapshot_t",478,"len")=4 + Set gtmtypes("shm_snapshot_t",478,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads.curr_count")=478 + Set gtmtypes("shm_snapshot_t",479,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads.cumul_count" + Set gtmtypes("shm_snapshot_t",479,"off")=8060 + Set gtmtypes("shm_snapshot_t",479,"len")=4 + Set gtmtypes("shm_snapshot_t",479,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads.cumul_count")=479 + Set gtmtypes("shm_snapshot_t",480,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads" + Set gtmtypes("shm_snapshot_t",480,"off")=8064 + Set gtmtypes("shm_snapshot_t",480,"len")=8 + Set gtmtypes("shm_snapshot_t",480,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads")=480 + Set gtmtypes("shm_snapshot_t",481,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads.curr_count" + Set gtmtypes("shm_snapshot_t",481,"off")=8064 + Set gtmtypes("shm_snapshot_t",481,"len")=4 + Set gtmtypes("shm_snapshot_t",481,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads.curr_count")=481 + Set gtmtypes("shm_snapshot_t",482,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads.cumul_count" + Set gtmtypes("shm_snapshot_t",482,"off")=8068 + Set gtmtypes("shm_snapshot_t",482,"len")=4 + Set gtmtypes("shm_snapshot_t",482,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads.cumul_count")=482 + Set gtmtypes("shm_snapshot_t",483,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates" + Set gtmtypes("shm_snapshot_t",483,"off")=8072 + Set gtmtypes("shm_snapshot_t",483,"len")=8 + Set gtmtypes("shm_snapshot_t",483,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates")=483 + Set gtmtypes("shm_snapshot_t",484,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates.curr_count" + Set gtmtypes("shm_snapshot_t",484,"off")=8072 + Set gtmtypes("shm_snapshot_t",484,"len")=4 + Set gtmtypes("shm_snapshot_t",484,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates.curr_count")=484 + Set gtmtypes("shm_snapshot_t",485,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates.cumul_count" + Set gtmtypes("shm_snapshot_t",485,"off")=8076 + Set gtmtypes("shm_snapshot_t",485,"len")=4 + Set gtmtypes("shm_snapshot_t",485,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates.cumul_count")=485 + Set gtmtypes("shm_snapshot_t",486,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes" + Set gtmtypes("shm_snapshot_t",486,"off")=8080 + Set gtmtypes("shm_snapshot_t",486,"len")=8 + Set gtmtypes("shm_snapshot_t",486,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes")=486 + Set gtmtypes("shm_snapshot_t",487,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes.curr_count" + Set gtmtypes("shm_snapshot_t",487,"off")=8080 + Set gtmtypes("shm_snapshot_t",487,"len")=4 + Set gtmtypes("shm_snapshot_t",487,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes.curr_count")=487 + Set gtmtypes("shm_snapshot_t",488,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes.cumul_count" + Set gtmtypes("shm_snapshot_t",488,"off")=8084 + Set gtmtypes("shm_snapshot_t",488,"len")=4 + Set gtmtypes("shm_snapshot_t",488,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes.cumul_count")=488 + Set gtmtypes("shm_snapshot_t",489,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates" + Set gtmtypes("shm_snapshot_t",489,"off")=8088 + Set gtmtypes("shm_snapshot_t",489,"len")=8 + Set gtmtypes("shm_snapshot_t",489,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates")=489 + Set gtmtypes("shm_snapshot_t",490,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates.curr_count" + Set gtmtypes("shm_snapshot_t",490,"off")=8088 + Set gtmtypes("shm_snapshot_t",490,"len")=4 + Set gtmtypes("shm_snapshot_t",490,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates.curr_count")=490 + Set gtmtypes("shm_snapshot_t",491,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates.cumul_count" + Set gtmtypes("shm_snapshot_t",491,"off")=8092 + Set gtmtypes("shm_snapshot_t",491,"len")=4 + Set gtmtypes("shm_snapshot_t",491,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates.cumul_count")=491 + Set gtmtypes("shm_snapshot_t",492,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns" + Set gtmtypes("shm_snapshot_t",492,"off")=8096 + Set gtmtypes("shm_snapshot_t",492,"len")=8 + Set gtmtypes("shm_snapshot_t",492,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns")=492 + Set gtmtypes("shm_snapshot_t",493,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns.curr_count" + Set gtmtypes("shm_snapshot_t",493,"off")=8096 + Set gtmtypes("shm_snapshot_t",493,"len")=4 + Set gtmtypes("shm_snapshot_t",493,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns.curr_count")=493 + Set gtmtypes("shm_snapshot_t",494,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns.cumul_count" + Set gtmtypes("shm_snapshot_t",494,"off")=8100 + Set gtmtypes("shm_snapshot_t",494,"len")=4 + Set gtmtypes("shm_snapshot_t",494,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns.cumul_count")=494 + Set gtmtypes("shm_snapshot_t",495,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt" + Set gtmtypes("shm_snapshot_t",495,"off")=8104 + Set gtmtypes("shm_snapshot_t",495,"len")=8 + Set gtmtypes("shm_snapshot_t",495,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt")=495 + Set gtmtypes("shm_snapshot_t",496,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("shm_snapshot_t",496,"off")=8104 + Set gtmtypes("shm_snapshot_t",496,"len")=4 + Set gtmtypes("shm_snapshot_t",496,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt.curr_count")=496 + Set gtmtypes("shm_snapshot_t",497,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("shm_snapshot_t",497,"off")=8108 + Set gtmtypes("shm_snapshot_t",497,"len")=4 + Set gtmtypes("shm_snapshot_t",497,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt.cumul_count")=497 + Set gtmtypes("shm_snapshot_t",498,"name")="shm_snapshot_t.shadow_file_header.db_csh_acct_rec_filler_4k" + Set gtmtypes("shm_snapshot_t",498,"off")=8112 + Set gtmtypes("shm_snapshot_t",498,"len")=152 + Set gtmtypes("shm_snapshot_t",498,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_acct_rec_filler_4k")=498 + Set gtmtypes("shm_snapshot_t",499,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec" + Set gtmtypes("shm_snapshot_t",499,"off")=8264 + Set gtmtypes("shm_snapshot_t",499,"len")=464 + Set gtmtypes("shm_snapshot_t",499,"type")="gvstats_rec_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec")=499 + Set gtmtypes("shm_snapshot_t",500,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_set" + Set gtmtypes("shm_snapshot_t",500,"off")=8264 + Set gtmtypes("shm_snapshot_t",500,"len")=8 + Set gtmtypes("shm_snapshot_t",500,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_set")=500 + Set gtmtypes("shm_snapshot_t",501,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_kill" + Set gtmtypes("shm_snapshot_t",501,"off")=8272 + Set gtmtypes("shm_snapshot_t",501,"len")=8 + Set gtmtypes("shm_snapshot_t",501,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_kill")=501 + Set gtmtypes("shm_snapshot_t",502,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_get" + Set gtmtypes("shm_snapshot_t",502,"off")=8280 + Set gtmtypes("shm_snapshot_t",502,"len")=8 + Set gtmtypes("shm_snapshot_t",502,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_get")=502 + Set gtmtypes("shm_snapshot_t",503,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_data" + Set gtmtypes("shm_snapshot_t",503,"off")=8288 + Set gtmtypes("shm_snapshot_t",503,"len")=8 + Set gtmtypes("shm_snapshot_t",503,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_data")=503 + Set gtmtypes("shm_snapshot_t",504,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_order" + Set gtmtypes("shm_snapshot_t",504,"off")=8296 + Set gtmtypes("shm_snapshot_t",504,"len")=8 + Set gtmtypes("shm_snapshot_t",504,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_order")=504 + Set gtmtypes("shm_snapshot_t",505,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_zprev" + Set gtmtypes("shm_snapshot_t",505,"off")=8304 + Set gtmtypes("shm_snapshot_t",505,"len")=8 + Set gtmtypes("shm_snapshot_t",505,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_zprev")=505 + Set gtmtypes("shm_snapshot_t",506,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_query" + Set gtmtypes("shm_snapshot_t",506,"off")=8312 + Set gtmtypes("shm_snapshot_t",506,"len")=8 + Set gtmtypes("shm_snapshot_t",506,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_query")=506 + Set gtmtypes("shm_snapshot_t",507,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_lock_success" + Set gtmtypes("shm_snapshot_t",507,"off")=8320 + Set gtmtypes("shm_snapshot_t",507,"len")=8 + Set gtmtypes("shm_snapshot_t",507,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_lock_success")=507 + Set gtmtypes("shm_snapshot_t",508,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_lock_fail" + Set gtmtypes("shm_snapshot_t",508,"off")=8328 + Set gtmtypes("shm_snapshot_t",508,"len")=8 + Set gtmtypes("shm_snapshot_t",508,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_lock_fail")=508 + Set gtmtypes("shm_snapshot_t",509,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.db_curr_tn" + Set gtmtypes("shm_snapshot_t",509,"off")=8336 + Set gtmtypes("shm_snapshot_t",509,"len")=8 + Set gtmtypes("shm_snapshot_t",509,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.db_curr_tn")=509 + Set gtmtypes("shm_snapshot_t",510,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_dsk_read" + Set gtmtypes("shm_snapshot_t",510,"off")=8344 + Set gtmtypes("shm_snapshot_t",510,"len")=8 + Set gtmtypes("shm_snapshot_t",510,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_dsk_read")=510 + Set gtmtypes("shm_snapshot_t",511,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_dsk_write" + Set gtmtypes("shm_snapshot_t",511,"off")=8352 + Set gtmtypes("shm_snapshot_t",511,"len")=8 + Set gtmtypes("shm_snapshot_t",511,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_dsk_write")=511 + Set gtmtypes("shm_snapshot_t",512,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("shm_snapshot_t",512,"off")=8360 + Set gtmtypes("shm_snapshot_t",512,"len")=8 + Set gtmtypes("shm_snapshot_t",512,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_readwrite")=512 + Set gtmtypes("shm_snapshot_t",513,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_readonly" + Set gtmtypes("shm_snapshot_t",513,"off")=8368 + Set gtmtypes("shm_snapshot_t",513,"len")=8 + Set gtmtypes("shm_snapshot_t",513,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_readonly")=513 + Set gtmtypes("shm_snapshot_t",514,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("shm_snapshot_t",514,"off")=8376 + Set gtmtypes("shm_snapshot_t",514,"len")=8 + Set gtmtypes("shm_snapshot_t",514,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_blkwrite")=514 + Set gtmtypes("shm_snapshot_t",515,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_blkread" + Set gtmtypes("shm_snapshot_t",515,"off")=8384 + Set gtmtypes("shm_snapshot_t",515,"len")=8 + Set gtmtypes("shm_snapshot_t",515,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_blkread")=515 + Set gtmtypes("shm_snapshot_t",516,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("shm_snapshot_t",516,"off")=8392 + Set gtmtypes("shm_snapshot_t",516,"len")=8 + Set gtmtypes("shm_snapshot_t",516,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_0")=516 + Set gtmtypes("shm_snapshot_t",517,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("shm_snapshot_t",517,"off")=8400 + Set gtmtypes("shm_snapshot_t",517,"len")=8 + Set gtmtypes("shm_snapshot_t",517,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_1")=517 + Set gtmtypes("shm_snapshot_t",518,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("shm_snapshot_t",518,"off")=8408 + Set gtmtypes("shm_snapshot_t",518,"len")=8 + Set gtmtypes("shm_snapshot_t",518,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_2")=518 + Set gtmtypes("shm_snapshot_t",519,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("shm_snapshot_t",519,"off")=8416 + Set gtmtypes("shm_snapshot_t",519,"len")=8 + Set gtmtypes("shm_snapshot_t",519,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_3")=519 + Set gtmtypes("shm_snapshot_t",520,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_readwrite" + Set gtmtypes("shm_snapshot_t",520,"off")=8424 + Set gtmtypes("shm_snapshot_t",520,"len")=8 + Set gtmtypes("shm_snapshot_t",520,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_readwrite")=520 + Set gtmtypes("shm_snapshot_t",521,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_readonly" + Set gtmtypes("shm_snapshot_t",521,"off")=8432 + Set gtmtypes("shm_snapshot_t",521,"len")=8 + Set gtmtypes("shm_snapshot_t",521,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_readonly")=521 + Set gtmtypes("shm_snapshot_t",522,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_rolledback" + Set gtmtypes("shm_snapshot_t",522,"off")=8440 + Set gtmtypes("shm_snapshot_t",522,"len")=8 + Set gtmtypes("shm_snapshot_t",522,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_rolledback")=522 + Set gtmtypes("shm_snapshot_t",523,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("shm_snapshot_t",523,"off")=8448 + Set gtmtypes("shm_snapshot_t",523,"len")=8 + Set gtmtypes("shm_snapshot_t",523,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_blkwrite")=523 + Set gtmtypes("shm_snapshot_t",524,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_blkread" + Set gtmtypes("shm_snapshot_t",524,"off")=8456 + Set gtmtypes("shm_snapshot_t",524,"len")=8 + Set gtmtypes("shm_snapshot_t",524,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_blkread")=524 + Set gtmtypes("shm_snapshot_t",525,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("shm_snapshot_t",525,"off")=8464 + Set gtmtypes("shm_snapshot_t",525,"len")=8 + Set gtmtypes("shm_snapshot_t",525,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_0")=525 + Set gtmtypes("shm_snapshot_t",526,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("shm_snapshot_t",526,"off")=8472 + Set gtmtypes("shm_snapshot_t",526,"len")=8 + Set gtmtypes("shm_snapshot_t",526,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_1")=526 + Set gtmtypes("shm_snapshot_t",527,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("shm_snapshot_t",527,"off")=8480 + Set gtmtypes("shm_snapshot_t",527,"len")=8 + Set gtmtypes("shm_snapshot_t",527,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_2")=527 + Set gtmtypes("shm_snapshot_t",528,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("shm_snapshot_t",528,"off")=8488 + Set gtmtypes("shm_snapshot_t",528,"len")=8 + Set gtmtypes("shm_snapshot_t",528,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_3")=528 + Set gtmtypes("shm_snapshot_t",529,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("shm_snapshot_t",529,"off")=8496 + Set gtmtypes("shm_snapshot_t",529,"len")=8 + Set gtmtypes("shm_snapshot_t",529,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_4")=529 + Set gtmtypes("shm_snapshot_t",530,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("shm_snapshot_t",530,"off")=8504 + Set gtmtypes("shm_snapshot_t",530,"len")=8 + Set gtmtypes("shm_snapshot_t",530,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0")=530 + Set gtmtypes("shm_snapshot_t",531,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("shm_snapshot_t",531,"off")=8512 + Set gtmtypes("shm_snapshot_t",531,"len")=8 + Set gtmtypes("shm_snapshot_t",531,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1")=531 + Set gtmtypes("shm_snapshot_t",532,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("shm_snapshot_t",532,"off")=8520 + Set gtmtypes("shm_snapshot_t",532,"len")=8 + Set gtmtypes("shm_snapshot_t",532,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2")=532 + Set gtmtypes("shm_snapshot_t",533,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("shm_snapshot_t",533,"off")=8528 + Set gtmtypes("shm_snapshot_t",533,"len")=8 + Set gtmtypes("shm_snapshot_t",533,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3")=533 + Set gtmtypes("shm_snapshot_t",534,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("shm_snapshot_t",534,"off")=8536 + Set gtmtypes("shm_snapshot_t",534,"len")=8 + Set gtmtypes("shm_snapshot_t",534,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4")=534 + Set gtmtypes("shm_snapshot_t",535,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_ztrigger" + Set gtmtypes("shm_snapshot_t",535,"off")=8544 + Set gtmtypes("shm_snapshot_t",535,"len")=8 + Set gtmtypes("shm_snapshot_t",535,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_ztrigger")=535 + Set gtmtypes("shm_snapshot_t",536,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_flush" + Set gtmtypes("shm_snapshot_t",536,"off")=8552 + Set gtmtypes("shm_snapshot_t",536,"len")=8 + Set gtmtypes("shm_snapshot_t",536,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_flush")=536 + Set gtmtypes("shm_snapshot_t",537,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_fsync" + Set gtmtypes("shm_snapshot_t",537,"off")=8560 + Set gtmtypes("shm_snapshot_t",537,"len")=8 + Set gtmtypes("shm_snapshot_t",537,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_fsync")=537 + Set gtmtypes("shm_snapshot_t",538,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_flush" + Set gtmtypes("shm_snapshot_t",538,"off")=8568 + Set gtmtypes("shm_snapshot_t",538,"len")=8 + Set gtmtypes("shm_snapshot_t",538,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_flush")=538 + Set gtmtypes("shm_snapshot_t",539,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_fsync" + Set gtmtypes("shm_snapshot_t",539,"off")=8576 + Set gtmtypes("shm_snapshot_t",539,"len")=8 + Set gtmtypes("shm_snapshot_t",539,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_fsync")=539 + Set gtmtypes("shm_snapshot_t",540,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("shm_snapshot_t",540,"off")=8584 + Set gtmtypes("shm_snapshot_t",540,"len")=8 + Set gtmtypes("shm_snapshot_t",540,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jbuff_bytes")=540 + Set gtmtypes("shm_snapshot_t",541,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jfile_bytes" + Set gtmtypes("shm_snapshot_t",541,"off")=8592 + Set gtmtypes("shm_snapshot_t",541,"len")=8 + Set gtmtypes("shm_snapshot_t",541,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jfile_bytes")=541 + Set gtmtypes("shm_snapshot_t",542,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jfile_writes" + Set gtmtypes("shm_snapshot_t",542,"off")=8600 + Set gtmtypes("shm_snapshot_t",542,"len")=8 + Set gtmtypes("shm_snapshot_t",542,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jfile_writes")=542 + Set gtmtypes("shm_snapshot_t",543,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_logical" + Set gtmtypes("shm_snapshot_t",543,"off")=8608 + Set gtmtypes("shm_snapshot_t",543,"len")=8 + Set gtmtypes("shm_snapshot_t",543,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_logical")=543 + Set gtmtypes("shm_snapshot_t",544,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_pblk" + Set gtmtypes("shm_snapshot_t",544,"off")=8616 + Set gtmtypes("shm_snapshot_t",544,"len")=8 + Set gtmtypes("shm_snapshot_t",544,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_pblk")=544 + Set gtmtypes("shm_snapshot_t",545,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("shm_snapshot_t",545,"off")=8624 + Set gtmtypes("shm_snapshot_t",545,"len")=8 + Set gtmtypes("shm_snapshot_t",545,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_epoch_regular")=545 + Set gtmtypes("shm_snapshot_t",546,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("shm_snapshot_t",546,"off")=8632 + Set gtmtypes("shm_snapshot_t",546,"len")=8 + Set gtmtypes("shm_snapshot_t",546,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_epoch_idle")=546 + Set gtmtypes("shm_snapshot_t",547,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_other" + Set gtmtypes("shm_snapshot_t",547,"off")=8640 + Set gtmtypes("shm_snapshot_t",547,"len")=8 + Set gtmtypes("shm_snapshot_t",547,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_other")=547 + Set gtmtypes("shm_snapshot_t",548,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_extends" + Set gtmtypes("shm_snapshot_t",548,"off")=8648 + Set gtmtypes("shm_snapshot_t",548,"len")=8 + Set gtmtypes("shm_snapshot_t",548,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_extends")=548 + Set gtmtypes("shm_snapshot_t",549,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_extends" + Set gtmtypes("shm_snapshot_t",549,"off")=8656 + Set gtmtypes("shm_snapshot_t",549,"len")=8 + Set gtmtypes("shm_snapshot_t",549,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_extends")=549 + Set gtmtypes("shm_snapshot_t",550,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_success" + Set gtmtypes("shm_snapshot_t",550,"off")=8664 + Set gtmtypes("shm_snapshot_t",550,"len")=8 + Set gtmtypes("shm_snapshot_t",550,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_success")=550 + Set gtmtypes("shm_snapshot_t",551,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crits_in_epch" + Set gtmtypes("shm_snapshot_t",551,"off")=8672 + Set gtmtypes("shm_snapshot_t",551,"len")=8 + Set gtmtypes("shm_snapshot_t",551,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crits_in_epch")=551 + Set gtmtypes("shm_snapshot_t",552,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_failed" + Set gtmtypes("shm_snapshot_t",552,"off")=8680 + Set gtmtypes("shm_snapshot_t",552,"len")=8 + Set gtmtypes("shm_snapshot_t",552,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_failed")=552 + Set gtmtypes("shm_snapshot_t",553,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_failed" + Set gtmtypes("shm_snapshot_t",553,"off")=8688 + Set gtmtypes("shm_snapshot_t",553,"len")=8 + Set gtmtypes("shm_snapshot_t",553,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_failed")=553 + Set gtmtypes("shm_snapshot_t",554,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("shm_snapshot_t",554,"off")=8696 + Set gtmtypes("shm_snapshot_t",554,"len")=8 + Set gtmtypes("shm_snapshot_t",554,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_que_slps")=554 + Set gtmtypes("shm_snapshot_t",555,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_que_slps" + Set gtmtypes("shm_snapshot_t",555,"off")=8704 + Set gtmtypes("shm_snapshot_t",555,"len")=8 + Set gtmtypes("shm_snapshot_t",555,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_que_slps")=555 + Set gtmtypes("shm_snapshot_t",556,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_yields" + Set gtmtypes("shm_snapshot_t",556,"off")=8712 + Set gtmtypes("shm_snapshot_t",556,"len")=8 + Set gtmtypes("shm_snapshot_t",556,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_yields")=556 + Set gtmtypes("shm_snapshot_t",557,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_yields" + Set gtmtypes("shm_snapshot_t",557,"off")=8720 + Set gtmtypes("shm_snapshot_t",557,"len")=8 + Set gtmtypes("shm_snapshot_t",557,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_yields")=557 + Set gtmtypes("shm_snapshot_t",558,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("shm_snapshot_t",558,"off")=8728 + Set gtmtypes("shm_snapshot_t",558,"len")=48 + Set gtmtypes("shm_snapshot_t",558,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec_filler_4k_plus_512")=558 + Set gtmtypes("shm_snapshot_t",559,"name")="shm_snapshot_t.shadow_file_header.filler_4k_plus_512" + Set gtmtypes("shm_snapshot_t",559,"off")=8776 + Set gtmtypes("shm_snapshot_t",559,"len")=368 + Set gtmtypes("shm_snapshot_t",559,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_4k_plus_512")=559 + Set gtmtypes("shm_snapshot_t",560,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_resync_strm_seqno" + Set gtmtypes("shm_snapshot_t",560,"off")=9144 + Set gtmtypes("shm_snapshot_t",560,"len")=128 + Set gtmtypes("shm_snapshot_t",560,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_resync_strm_seqno")=560 + Set gtmtypes("shm_snapshot_t",560,"dim")=16 + Set gtmtypes("shm_snapshot_t",561,"name")="shm_snapshot_t.shadow_file_header.creation_db_ver" + Set gtmtypes("shm_snapshot_t",561,"off")=9272 + Set gtmtypes("shm_snapshot_t",561,"len")=4 + Set gtmtypes("shm_snapshot_t",561,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_db_ver")=561 + Set gtmtypes("shm_snapshot_t",562,"name")="shm_snapshot_t.shadow_file_header.creation_mdb_ver" + Set gtmtypes("shm_snapshot_t",562,"off")=9276 + Set gtmtypes("shm_snapshot_t",562,"len")=4 + Set gtmtypes("shm_snapshot_t",562,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_mdb_ver")=562 + Set gtmtypes("shm_snapshot_t",563,"name")="shm_snapshot_t.shadow_file_header.certified_for_upgrade_to" + Set gtmtypes("shm_snapshot_t",563,"off")=9280 + Set gtmtypes("shm_snapshot_t",563,"len")=4 + Set gtmtypes("shm_snapshot_t",563,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.certified_for_upgrade_to")=563 + Set gtmtypes("shm_snapshot_t",564,"name")="shm_snapshot_t.shadow_file_header.filler_5k" + Set gtmtypes("shm_snapshot_t",564,"off")=9284 + Set gtmtypes("shm_snapshot_t",564,"len")=4 + Set gtmtypes("shm_snapshot_t",564,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_5k")=564 + Set gtmtypes("shm_snapshot_t",565,"name")="shm_snapshot_t.shadow_file_header.secshr_ops_index_filler" + Set gtmtypes("shm_snapshot_t",565,"off")=9288 + Set gtmtypes("shm_snapshot_t",565,"len")=4 + Set gtmtypes("shm_snapshot_t",565,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.secshr_ops_index_filler")=565 + Set gtmtypes("shm_snapshot_t",566,"name")="shm_snapshot_t.shadow_file_header.secshr_ops_array_filler" + Set gtmtypes("shm_snapshot_t",566,"off")=9292 + Set gtmtypes("shm_snapshot_t",566,"len")=1020 + Set gtmtypes("shm_snapshot_t",566,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.secshr_ops_array_filler")=566 + Set gtmtypes("shm_snapshot_t",566,"dim")=255 + Set gtmtypes("shm_snapshot_t",567,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn" + Set gtmtypes("shm_snapshot_t",567,"off")=10312 + Set gtmtypes("shm_snapshot_t",567,"len")=24 + Set gtmtypes("shm_snapshot_t",567,"type")="compswap_time_field" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn")=567 + Set gtmtypes("shm_snapshot_t",568,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch" + Set gtmtypes("shm_snapshot_t",568,"off")=10312 + Set gtmtypes("shm_snapshot_t",568,"len")=8 + Set gtmtypes("shm_snapshot_t",568,"type")="global_latch_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch")=568 + Set gtmtypes("shm_snapshot_t",569,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u" + Set gtmtypes("shm_snapshot_t",569,"off")=10312 + Set gtmtypes("shm_snapshot_t",569,"len")=8 + Set gtmtypes("shm_snapshot_t",569,"type")="union" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u")=569 + Set gtmtypes("shm_snapshot_t",570,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("shm_snapshot_t",570,"off")=10312 + Set gtmtypes("shm_snapshot_t",570,"len")=8 + Set gtmtypes("shm_snapshot_t",570,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt")=570 + Set gtmtypes("shm_snapshot_t",571,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("shm_snapshot_t",571,"off")=10312 + Set gtmtypes("shm_snapshot_t",571,"len")=8 + Set gtmtypes("shm_snapshot_t",571,"type")="struct" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts")=571 + Set gtmtypes("shm_snapshot_t",572,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("shm_snapshot_t",572,"off")=10312 + Set gtmtypes("shm_snapshot_t",572,"len")=4 + Set gtmtypes("shm_snapshot_t",572,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid")=572 + Set gtmtypes("shm_snapshot_t",573,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("shm_snapshot_t",573,"off")=10316 + Set gtmtypes("shm_snapshot_t",573,"len")=4 + Set gtmtypes("shm_snapshot_t",573,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word")=573 + Set gtmtypes("shm_snapshot_t",574,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.hp_latch_space" + Set gtmtypes("shm_snapshot_t",574,"off")=10320 + Set gtmtypes("shm_snapshot_t",574,"len")=16 + Set gtmtypes("shm_snapshot_t",574,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.hp_latch_space")=574 + Set gtmtypes("shm_snapshot_t",574,"dim")=4 + Set gtmtypes("shm_snapshot_t",575,"name")="shm_snapshot_t.shadow_file_header.is_encrypted" + Set gtmtypes("shm_snapshot_t",575,"off")=10336 + Set gtmtypes("shm_snapshot_t",575,"len")=4 + Set gtmtypes("shm_snapshot_t",575,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.is_encrypted")=575 + Set gtmtypes("shm_snapshot_t",576,"name")="shm_snapshot_t.shadow_file_header.db_trigger_cycle" + Set gtmtypes("shm_snapshot_t",576,"off")=10340 + Set gtmtypes("shm_snapshot_t",576,"len")=4 + Set gtmtypes("shm_snapshot_t",576,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_trigger_cycle")=576 + Set gtmtypes("shm_snapshot_t",577,"name")="shm_snapshot_t.shadow_file_header.strm_reg_seqno" + Set gtmtypes("shm_snapshot_t",577,"off")=10344 + Set gtmtypes("shm_snapshot_t",577,"len")=128 + Set gtmtypes("shm_snapshot_t",577,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.strm_reg_seqno")=577 + Set gtmtypes("shm_snapshot_t",577,"dim")=16 + Set gtmtypes("shm_snapshot_t",578,"name")="shm_snapshot_t.shadow_file_header.save_strm_reg_seqno" + Set gtmtypes("shm_snapshot_t",578,"off")=10472 + Set gtmtypes("shm_snapshot_t",578,"len")=128 + Set gtmtypes("shm_snapshot_t",578,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.save_strm_reg_seqno")=578 + Set gtmtypes("shm_snapshot_t",578,"dim")=16 + Set gtmtypes("shm_snapshot_t",579,"name")="shm_snapshot_t.shadow_file_header.freeze_on_fail" + Set gtmtypes("shm_snapshot_t",579,"off")=10600 + Set gtmtypes("shm_snapshot_t",579,"len")=4 + Set gtmtypes("shm_snapshot_t",579,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.freeze_on_fail")=579 + Set gtmtypes("shm_snapshot_t",580,"name")="shm_snapshot_t.shadow_file_header.span_node_absent" + Set gtmtypes("shm_snapshot_t",580,"off")=10604 + Set gtmtypes("shm_snapshot_t",580,"len")=4 + Set gtmtypes("shm_snapshot_t",580,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.span_node_absent")=580 + Set gtmtypes("shm_snapshot_t",581,"name")="shm_snapshot_t.shadow_file_header.maxkeysz_assured" + Set gtmtypes("shm_snapshot_t",581,"off")=10608 + Set gtmtypes("shm_snapshot_t",581,"len")=4 + Set gtmtypes("shm_snapshot_t",581,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.maxkeysz_assured")=581 + Set gtmtypes("shm_snapshot_t",582,"name")="shm_snapshot_t.shadow_file_header.hasht_upgrade_needed" + Set gtmtypes("shm_snapshot_t",582,"off")=10612 + Set gtmtypes("shm_snapshot_t",582,"len")=4 + Set gtmtypes("shm_snapshot_t",582,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.hasht_upgrade_needed")=582 + Set gtmtypes("shm_snapshot_t",583,"name")="shm_snapshot_t.shadow_file_header.defer_allocate" + Set gtmtypes("shm_snapshot_t",583,"off")=10616 + Set gtmtypes("shm_snapshot_t",583,"len")=4 + Set gtmtypes("shm_snapshot_t",583,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.defer_allocate")=583 + Set gtmtypes("shm_snapshot_t",584,"name")="shm_snapshot_t.shadow_file_header.ftok_counter_halted" + Set gtmtypes("shm_snapshot_t",584,"off")=10620 + Set gtmtypes("shm_snapshot_t",584,"len")=4 + Set gtmtypes("shm_snapshot_t",584,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ftok_counter_halted")=584 + Set gtmtypes("shm_snapshot_t",585,"name")="shm_snapshot_t.shadow_file_header.access_counter_halted" + Set gtmtypes("shm_snapshot_t",585,"off")=10624 + Set gtmtypes("shm_snapshot_t",585,"len")=4 + Set gtmtypes("shm_snapshot_t",585,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.access_counter_halted")=585 + Set gtmtypes("shm_snapshot_t",586,"name")="shm_snapshot_t.shadow_file_header.filler_7k" + Set gtmtypes("shm_snapshot_t",586,"off")=10628 + Set gtmtypes("shm_snapshot_t",586,"len")=708 + Set gtmtypes("shm_snapshot_t",586,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_7k")=586 + Set gtmtypes("shm_snapshot_t",587,"name")="shm_snapshot_t.shadow_file_header.filler_8k" + Set gtmtypes("shm_snapshot_t",587,"off")=11336 + Set gtmtypes("shm_snapshot_t",587,"len")=1024 + Set gtmtypes("shm_snapshot_t",587,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_8k")=587 + ; + Set gtmtypes("shmpool_blk_hdr")="struct" + Set gtmtypes("shmpool_blk_hdr",0)=11 + Set gtmtypes("shmpool_blk_hdr","len")=32 + Set gtmtypes("shmpool_blk_hdr",1,"name")="shmpool_blk_hdr.sm_que" + Set gtmtypes("shmpool_blk_hdr",1,"off")=0 + Set gtmtypes("shmpool_blk_hdr",1,"len")=8 + Set gtmtypes("shmpool_blk_hdr",1,"type")="que_ent" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que")=1 + Set gtmtypes("shmpool_blk_hdr",2,"name")="shmpool_blk_hdr.sm_que.fl" + Set gtmtypes("shmpool_blk_hdr",2,"off")=0 + Set gtmtypes("shmpool_blk_hdr",2,"len")=4 + Set gtmtypes("shmpool_blk_hdr",2,"type")="intptr_t" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que.fl")=2 + Set gtmtypes("shmpool_blk_hdr",3,"name")="shmpool_blk_hdr.sm_que.bl" + Set gtmtypes("shmpool_blk_hdr",3,"off")=4 + Set gtmtypes("shmpool_blk_hdr",3,"len")=4 + Set gtmtypes("shmpool_blk_hdr",3,"type")="intptr_t" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que.bl")=3 + Set gtmtypes("shmpool_blk_hdr",4,"name")="shmpool_blk_hdr.blktype" + Set gtmtypes("shmpool_blk_hdr",4,"off")=8 + Set gtmtypes("shmpool_blk_hdr",4,"len")=4 + Set gtmtypes("shmpool_blk_hdr",4,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","blktype")=4 + Set gtmtypes("shmpool_blk_hdr",5,"name")="shmpool_blk_hdr.blkid" + Set gtmtypes("shmpool_blk_hdr",5,"off")=12 + Set gtmtypes("shmpool_blk_hdr",5,"len")=4 + Set gtmtypes("shmpool_blk_hdr",5,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","blkid")=5 + Set gtmtypes("shmpool_blk_hdr",6,"name")="shmpool_blk_hdr.use" + Set gtmtypes("shmpool_blk_hdr",6,"off")=16 + Set gtmtypes("shmpool_blk_hdr",6,"len")=4 + Set gtmtypes("shmpool_blk_hdr",6,"type")="union" + Set gtmtypfldindx("shmpool_blk_hdr","use")=6 + Set gtmtypes("shmpool_blk_hdr",7,"name")="shmpool_blk_hdr.use.bkup" + Set gtmtypes("shmpool_blk_hdr",7,"off")=16 + Set gtmtypes("shmpool_blk_hdr",7,"len")=4 + Set gtmtypes("shmpool_blk_hdr",7,"type")="struct" + Set gtmtypfldindx("shmpool_blk_hdr","use.bkup")=7 + Set gtmtypes("shmpool_blk_hdr",8,"name")="shmpool_blk_hdr.use.bkup.ondsk_blkver" + Set gtmtypes("shmpool_blk_hdr",8,"off")=16 + Set gtmtypes("shmpool_blk_hdr",8,"len")=4 + Set gtmtypes("shmpool_blk_hdr",8,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","use.bkup.ondsk_blkver")=8 + Set gtmtypes("shmpool_blk_hdr",9,"name")="shmpool_blk_hdr.holder_pid" + Set gtmtypes("shmpool_blk_hdr",9,"off")=20 + Set gtmtypes("shmpool_blk_hdr",9,"len")=4 + Set gtmtypes("shmpool_blk_hdr",9,"type")="pid_t" + Set gtmtypfldindx("shmpool_blk_hdr","holder_pid")=9 + Set gtmtypes("shmpool_blk_hdr",10,"name")="shmpool_blk_hdr.valid_data" + Set gtmtypes("shmpool_blk_hdr",10,"off")=24 + Set gtmtypes("shmpool_blk_hdr",10,"len")=4 + Set gtmtypes("shmpool_blk_hdr",10,"type")="boolean_t" + Set gtmtypfldindx("shmpool_blk_hdr","valid_data")=10 + Set gtmtypes("shmpool_blk_hdr",11,"name")="shmpool_blk_hdr.image_count" + Set gtmtypes("shmpool_blk_hdr",11,"off")=28 + Set gtmtypes("shmpool_blk_hdr",11,"len")=4 + Set gtmtypes("shmpool_blk_hdr",11,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","image_count")=11 + ; + Set gtmtypes("shmpool_buff_hdr")="struct" + Set gtmtypes("shmpool_buff_hdr",0)=594 + Set gtmtypes("shmpool_buff_hdr","len")=8544 + Set gtmtypes("shmpool_buff_hdr",1,"name")="shmpool_buff_hdr.shmpool_crit_latch" + Set gtmtypes("shmpool_buff_hdr",1,"off")=0 + Set gtmtypes("shmpool_buff_hdr",1,"len")=8 + Set gtmtypes("shmpool_buff_hdr",1,"type")="global_latch_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch")=1 + Set gtmtypes("shmpool_buff_hdr",2,"name")="shmpool_buff_hdr.shmpool_crit_latch.u" + Set gtmtypes("shmpool_buff_hdr",2,"off")=0 + Set gtmtypes("shmpool_buff_hdr",2,"len")=8 + Set gtmtypes("shmpool_buff_hdr",2,"type")="union" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u")=2 + Set gtmtypes("shmpool_buff_hdr",3,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.pid_imgcnt" + Set gtmtypes("shmpool_buff_hdr",3,"off")=0 + Set gtmtypes("shmpool_buff_hdr",3,"len")=8 + Set gtmtypes("shmpool_buff_hdr",3,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.pid_imgcnt")=3 + Set gtmtypes("shmpool_buff_hdr",4,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts" + Set gtmtypes("shmpool_buff_hdr",4,"off")=0 + Set gtmtypes("shmpool_buff_hdr",4,"len")=8 + Set gtmtypes("shmpool_buff_hdr",4,"type")="struct" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts")=4 + Set gtmtypes("shmpool_buff_hdr",5,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts.latch_pid" + Set gtmtypes("shmpool_buff_hdr",5,"off")=0 + Set gtmtypes("shmpool_buff_hdr",5,"len")=4 + Set gtmtypes("shmpool_buff_hdr",5,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts.latch_pid")=5 + Set gtmtypes("shmpool_buff_hdr",6,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts.latch_word" + Set gtmtypes("shmpool_buff_hdr",6,"off")=4 + Set gtmtypes("shmpool_buff_hdr",6,"len")=4 + Set gtmtypes("shmpool_buff_hdr",6,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts.latch_word")=6 + Set gtmtypes("shmpool_buff_hdr",7,"name")="shmpool_buff_hdr.dskaddr" + Set gtmtypes("shmpool_buff_hdr",7,"off")=8 + Set gtmtypes("shmpool_buff_hdr",7,"len")=8 + Set gtmtypes("shmpool_buff_hdr",7,"type")="off_t" + Set gtmtypfldindx("shmpool_buff_hdr","dskaddr")=7 + Set gtmtypes("shmpool_buff_hdr",8,"name")="shmpool_buff_hdr.backup_tn" + Set gtmtypes("shmpool_buff_hdr",8,"off")=16 + Set gtmtypes("shmpool_buff_hdr",8,"len")=8 + Set gtmtypes("shmpool_buff_hdr",8,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","backup_tn")=8 + Set gtmtypes("shmpool_buff_hdr",9,"name")="shmpool_buff_hdr.inc_backup_tn" + Set gtmtypes("shmpool_buff_hdr",9,"off")=24 + Set gtmtypes("shmpool_buff_hdr",9,"len")=8 + Set gtmtypes("shmpool_buff_hdr",9,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","inc_backup_tn")=9 + Set gtmtypes("shmpool_buff_hdr",10,"name")="shmpool_buff_hdr.tempfilename" + Set gtmtypes("shmpool_buff_hdr",10,"off")=32 + Set gtmtypes("shmpool_buff_hdr",10,"len")=256 + Set gtmtypes("shmpool_buff_hdr",10,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","tempfilename")=10 + Set gtmtypes("shmpool_buff_hdr",11,"name")="shmpool_buff_hdr.que_free" + Set gtmtypes("shmpool_buff_hdr",11,"off")=288 + Set gtmtypes("shmpool_buff_hdr",11,"len")=8 + Set gtmtypes("shmpool_buff_hdr",11,"type")="que_ent" + Set gtmtypfldindx("shmpool_buff_hdr","que_free")=11 + Set gtmtypes("shmpool_buff_hdr",12,"name")="shmpool_buff_hdr.que_free.fl" + Set gtmtypes("shmpool_buff_hdr",12,"off")=288 + Set gtmtypes("shmpool_buff_hdr",12,"len")=4 + Set gtmtypes("shmpool_buff_hdr",12,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_free.fl")=12 + Set gtmtypes("shmpool_buff_hdr",13,"name")="shmpool_buff_hdr.que_free.bl" + Set gtmtypes("shmpool_buff_hdr",13,"off")=292 + Set gtmtypes("shmpool_buff_hdr",13,"len")=4 + Set gtmtypes("shmpool_buff_hdr",13,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_free.bl")=13 + Set gtmtypes("shmpool_buff_hdr",14,"name")="shmpool_buff_hdr.que_backup" + Set gtmtypes("shmpool_buff_hdr",14,"off")=296 + Set gtmtypes("shmpool_buff_hdr",14,"len")=8 + Set gtmtypes("shmpool_buff_hdr",14,"type")="que_ent" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup")=14 + Set gtmtypes("shmpool_buff_hdr",15,"name")="shmpool_buff_hdr.que_backup.fl" + Set gtmtypes("shmpool_buff_hdr",15,"off")=296 + Set gtmtypes("shmpool_buff_hdr",15,"len")=4 + Set gtmtypes("shmpool_buff_hdr",15,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup.fl")=15 + Set gtmtypes("shmpool_buff_hdr",16,"name")="shmpool_buff_hdr.que_backup.bl" + Set gtmtypes("shmpool_buff_hdr",16,"off")=300 + Set gtmtypes("shmpool_buff_hdr",16,"len")=4 + Set gtmtypes("shmpool_buff_hdr",16,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup.bl")=16 + Set gtmtypes("shmpool_buff_hdr",17,"name")="shmpool_buff_hdr.free_cnt" + Set gtmtypes("shmpool_buff_hdr",17,"off")=304 + Set gtmtypes("shmpool_buff_hdr",17,"len")=4 + Set gtmtypes("shmpool_buff_hdr",17,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","free_cnt")=17 + Set gtmtypes("shmpool_buff_hdr",18,"name")="shmpool_buff_hdr.backup_cnt" + Set gtmtypes("shmpool_buff_hdr",18,"off")=308 + Set gtmtypes("shmpool_buff_hdr",18,"len")=4 + Set gtmtypes("shmpool_buff_hdr",18,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_cnt")=18 + Set gtmtypes("shmpool_buff_hdr",19,"name")="shmpool_buff_hdr.reformat_cnt" + Set gtmtypes("shmpool_buff_hdr",19,"off")=312 + Set gtmtypes("shmpool_buff_hdr",19,"len")=4 + Set gtmtypes("shmpool_buff_hdr",19,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","reformat_cnt")=19 + Set gtmtypes("shmpool_buff_hdr",20,"name")="shmpool_buff_hdr.allocs_since_chk" + Set gtmtypes("shmpool_buff_hdr",20,"off")=316 + Set gtmtypes("shmpool_buff_hdr",20,"len")=4 + Set gtmtypes("shmpool_buff_hdr",20,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","allocs_since_chk")=20 + Set gtmtypes("shmpool_buff_hdr",21,"name")="shmpool_buff_hdr.total_blks" + Set gtmtypes("shmpool_buff_hdr",21,"off")=320 + Set gtmtypes("shmpool_buff_hdr",21,"len")=4 + Set gtmtypes("shmpool_buff_hdr",21,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","total_blks")=21 + Set gtmtypes("shmpool_buff_hdr",22,"name")="shmpool_buff_hdr.blk_size" + Set gtmtypes("shmpool_buff_hdr",22,"off")=324 + Set gtmtypes("shmpool_buff_hdr",22,"len")=4 + Set gtmtypes("shmpool_buff_hdr",22,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","blk_size")=22 + Set gtmtypes("shmpool_buff_hdr",23,"name")="shmpool_buff_hdr.failed" + Set gtmtypes("shmpool_buff_hdr",23,"off")=328 + Set gtmtypes("shmpool_buff_hdr",23,"len")=4 + Set gtmtypes("shmpool_buff_hdr",23,"type")="pid_t" + Set gtmtypfldindx("shmpool_buff_hdr","failed")=23 + Set gtmtypes("shmpool_buff_hdr",24,"name")="shmpool_buff_hdr.backup_errno" + Set gtmtypes("shmpool_buff_hdr",24,"off")=332 + Set gtmtypes("shmpool_buff_hdr",24,"len")=4 + Set gtmtypes("shmpool_buff_hdr",24,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_errno")=24 + Set gtmtypes("shmpool_buff_hdr",25,"name")="shmpool_buff_hdr.backup_pid" + Set gtmtypes("shmpool_buff_hdr",25,"off")=336 + Set gtmtypes("shmpool_buff_hdr",25,"len")=4 + Set gtmtypes("shmpool_buff_hdr",25,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_pid")=25 + Set gtmtypes("shmpool_buff_hdr",26,"name")="shmpool_buff_hdr.backup_image_count" + Set gtmtypes("shmpool_buff_hdr",26,"off")=340 + Set gtmtypes("shmpool_buff_hdr",26,"len")=4 + Set gtmtypes("shmpool_buff_hdr",26,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_image_count")=26 + Set gtmtypes("shmpool_buff_hdr",27,"name")="shmpool_buff_hdr.shmpool_blocked" + Set gtmtypes("shmpool_buff_hdr",27,"off")=344 + Set gtmtypes("shmpool_buff_hdr",27,"len")=4 + Set gtmtypes("shmpool_buff_hdr",27,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_blocked")=27 + Set gtmtypes("shmpool_buff_hdr",28,"name")="shmpool_buff_hdr.filler" + Set gtmtypes("shmpool_buff_hdr",28,"off")=348 + Set gtmtypes("shmpool_buff_hdr",28,"len")=4 + Set gtmtypes("shmpool_buff_hdr",28,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","filler")=28 + Set gtmtypes("shmpool_buff_hdr",29,"name")="shmpool_buff_hdr.shadow_file_header" + Set gtmtypes("shmpool_buff_hdr",29,"off")=352 + Set gtmtypes("shmpool_buff_hdr",29,"len")=8192 + Set gtmtypes("shmpool_buff_hdr",29,"type")="sgmnt_data" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header")=29 + Set gtmtypes("shmpool_buff_hdr",30,"name")="shmpool_buff_hdr.shadow_file_header.label" + Set gtmtypes("shmpool_buff_hdr",30,"off")=352 + Set gtmtypes("shmpool_buff_hdr",30,"len")=12 + Set gtmtypes("shmpool_buff_hdr",30,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.label")=30 + Set gtmtypes("shmpool_buff_hdr",31,"name")="shmpool_buff_hdr.shadow_file_header.blk_size" + Set gtmtypes("shmpool_buff_hdr",31,"off")=364 + Set gtmtypes("shmpool_buff_hdr",31,"len")=4 + Set gtmtypes("shmpool_buff_hdr",31,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blk_size")=31 + Set gtmtypes("shmpool_buff_hdr",32,"name")="shmpool_buff_hdr.shadow_file_header.master_map_len" + Set gtmtypes("shmpool_buff_hdr",32,"off")=368 + Set gtmtypes("shmpool_buff_hdr",32,"len")=4 + Set gtmtypes("shmpool_buff_hdr",32,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.master_map_len")=32 + Set gtmtypes("shmpool_buff_hdr",33,"name")="shmpool_buff_hdr.shadow_file_header.bplmap" + Set gtmtypes("shmpool_buff_hdr",33,"off")=372 + Set gtmtypes("shmpool_buff_hdr",33,"len")=4 + Set gtmtypes("shmpool_buff_hdr",33,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bplmap")=33 + Set gtmtypes("shmpool_buff_hdr",34,"name")="shmpool_buff_hdr.shadow_file_header.start_vbn" + Set gtmtypes("shmpool_buff_hdr",34,"off")=376 + Set gtmtypes("shmpool_buff_hdr",34,"len")=4 + Set gtmtypes("shmpool_buff_hdr",34,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.start_vbn")=34 + Set gtmtypes("shmpool_buff_hdr",35,"name")="shmpool_buff_hdr.shadow_file_header.acc_meth" + Set gtmtypes("shmpool_buff_hdr",35,"off")=380 + Set gtmtypes("shmpool_buff_hdr",35,"len")=4 + Set gtmtypes("shmpool_buff_hdr",35,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.acc_meth")=35 + Set gtmtypes("shmpool_buff_hdr",36,"name")="shmpool_buff_hdr.shadow_file_header.max_bts" + Set gtmtypes("shmpool_buff_hdr",36,"off")=384 + Set gtmtypes("shmpool_buff_hdr",36,"len")=4 + Set gtmtypes("shmpool_buff_hdr",36,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_bts")=36 + Set gtmtypes("shmpool_buff_hdr",37,"name")="shmpool_buff_hdr.shadow_file_header.n_bts" + Set gtmtypes("shmpool_buff_hdr",37,"off")=388 + Set gtmtypes("shmpool_buff_hdr",37,"len")=4 + Set gtmtypes("shmpool_buff_hdr",37,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bts")=37 + Set gtmtypes("shmpool_buff_hdr",38,"name")="shmpool_buff_hdr.shadow_file_header.bt_buckets" + Set gtmtypes("shmpool_buff_hdr",38,"off")=392 + Set gtmtypes("shmpool_buff_hdr",38,"len")=4 + Set gtmtypes("shmpool_buff_hdr",38,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_buckets")=38 + Set gtmtypes("shmpool_buff_hdr",39,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bytes" + Set gtmtypes("shmpool_buff_hdr",39,"off")=396 + Set gtmtypes("shmpool_buff_hdr",39,"len")=4 + Set gtmtypes("shmpool_buff_hdr",39,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bytes")=39 + Set gtmtypes("shmpool_buff_hdr",40,"name")="shmpool_buff_hdr.shadow_file_header.max_rec_size" + Set gtmtypes("shmpool_buff_hdr",40,"off")=400 + Set gtmtypes("shmpool_buff_hdr",40,"len")=4 + Set gtmtypes("shmpool_buff_hdr",40,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_rec_size")=40 + Set gtmtypes("shmpool_buff_hdr",41,"name")="shmpool_buff_hdr.shadow_file_header.max_key_size" + Set gtmtypes("shmpool_buff_hdr",41,"off")=404 + Set gtmtypes("shmpool_buff_hdr",41,"len")=4 + Set gtmtypes("shmpool_buff_hdr",41,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_key_size")=41 + Set gtmtypes("shmpool_buff_hdr",42,"name")="shmpool_buff_hdr.shadow_file_header.lock_space_size" + Set gtmtypes("shmpool_buff_hdr",42,"off")=408 + Set gtmtypes("shmpool_buff_hdr",42,"len")=4 + Set gtmtypes("shmpool_buff_hdr",42,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lock_space_size")=42 + Set gtmtypes("shmpool_buff_hdr",43,"name")="shmpool_buff_hdr.shadow_file_header.extension_size" + Set gtmtypes("shmpool_buff_hdr",43,"off")=412 + Set gtmtypes("shmpool_buff_hdr",43,"len")=4 + Set gtmtypes("shmpool_buff_hdr",43,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.extension_size")=43 + Set gtmtypes("shmpool_buff_hdr",44,"name")="shmpool_buff_hdr.shadow_file_header.def_coll" + Set gtmtypes("shmpool_buff_hdr",44,"off")=416 + Set gtmtypes("shmpool_buff_hdr",44,"len")=4 + Set gtmtypes("shmpool_buff_hdr",44,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.def_coll")=44 + Set gtmtypes("shmpool_buff_hdr",45,"name")="shmpool_buff_hdr.shadow_file_header.def_coll_ver" + Set gtmtypes("shmpool_buff_hdr",45,"off")=420 + Set gtmtypes("shmpool_buff_hdr",45,"len")=4 + Set gtmtypes("shmpool_buff_hdr",45,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.def_coll_ver")=45 + Set gtmtypes("shmpool_buff_hdr",46,"name")="shmpool_buff_hdr.shadow_file_header.std_null_coll" + Set gtmtypes("shmpool_buff_hdr",46,"off")=424 + Set gtmtypes("shmpool_buff_hdr",46,"len")=4 + Set gtmtypes("shmpool_buff_hdr",46,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.std_null_coll")=46 + Set gtmtypes("shmpool_buff_hdr",47,"name")="shmpool_buff_hdr.shadow_file_header.null_subs" + Set gtmtypes("shmpool_buff_hdr",47,"off")=428 + Set gtmtypes("shmpool_buff_hdr",47,"len")=4 + Set gtmtypes("shmpool_buff_hdr",47,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.null_subs")=47 + Set gtmtypes("shmpool_buff_hdr",48,"name")="shmpool_buff_hdr.shadow_file_header.free_space" + Set gtmtypes("shmpool_buff_hdr",48,"off")=432 + Set gtmtypes("shmpool_buff_hdr",48,"len")=4 + Set gtmtypes("shmpool_buff_hdr",48,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.free_space")=48 + Set gtmtypes("shmpool_buff_hdr",49,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms" + Set gtmtypes("shmpool_buff_hdr",49,"off")=436 + Set gtmtypes("shmpool_buff_hdr",49,"len")=16 + Set gtmtypes("shmpool_buff_hdr",49,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms")=49 + Set gtmtypes("shmpool_buff_hdr",50,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("shmpool_buff_hdr",50,"off")=436 + Set gtmtypes("shmpool_buff_hdr",50,"len")=4 + Set gtmtypes("shmpool_buff_hdr",50,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_hard_spin_count")=50 + Set gtmtypes("shmpool_buff_hdr",51,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("shmpool_buff_hdr",51,"off")=440 + Set gtmtypes("shmpool_buff_hdr",51,"len")=4 + Set gtmtypes("shmpool_buff_hdr",51,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count")=51 + Set gtmtypes("shmpool_buff_hdr",52,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("shmpool_buff_hdr",52,"off")=444 + Set gtmtypes("shmpool_buff_hdr",52,"len")=4 + Set gtmtypes("shmpool_buff_hdr",52,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask")=52 + Set gtmtypes("shmpool_buff_hdr",53,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("shmpool_buff_hdr",53,"off")=448 + Set gtmtypes("shmpool_buff_hdr",53,"len")=4 + Set gtmtypes("shmpool_buff_hdr",53,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size")=53 + Set gtmtypes("shmpool_buff_hdr",54,"name")="shmpool_buff_hdr.shadow_file_header.max_update_array_size" + Set gtmtypes("shmpool_buff_hdr",54,"off")=452 + Set gtmtypes("shmpool_buff_hdr",54,"len")=4 + Set gtmtypes("shmpool_buff_hdr",54,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_update_array_size")=54 + Set gtmtypes("shmpool_buff_hdr",55,"name")="shmpool_buff_hdr.shadow_file_header.max_non_bm_update_array_size" + Set gtmtypes("shmpool_buff_hdr",55,"off")=456 + Set gtmtypes("shmpool_buff_hdr",55,"len")=4 + Set gtmtypes("shmpool_buff_hdr",55,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_non_bm_update_array_size")=55 + Set gtmtypes("shmpool_buff_hdr",56,"name")="shmpool_buff_hdr.shadow_file_header.file_corrupt" + Set gtmtypes("shmpool_buff_hdr",56,"off")=460 + Set gtmtypes("shmpool_buff_hdr",56,"len")=4 + Set gtmtypes("shmpool_buff_hdr",56,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.file_corrupt")=56 + Set gtmtypes("shmpool_buff_hdr",57,"name")="shmpool_buff_hdr.shadow_file_header.minor_dbver" + Set gtmtypes("shmpool_buff_hdr",57,"off")=464 + Set gtmtypes("shmpool_buff_hdr",57,"len")=4 + Set gtmtypes("shmpool_buff_hdr",57,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.minor_dbver")=57 + Set gtmtypes("shmpool_buff_hdr",58,"name")="shmpool_buff_hdr.shadow_file_header.jnl_checksum" + Set gtmtypes("shmpool_buff_hdr",58,"off")=468 + Set gtmtypes("shmpool_buff_hdr",58,"len")=4 + Set gtmtypes("shmpool_buff_hdr",58,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_checksum")=58 + Set gtmtypes("shmpool_buff_hdr",59,"name")="shmpool_buff_hdr.shadow_file_header.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("shmpool_buff_hdr",59,"off")=472 + Set gtmtypes("shmpool_buff_hdr",59,"len")=4 + Set gtmtypes("shmpool_buff_hdr",59,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcs_phase2_commit_wait_spincnt")=59 + Set gtmtypes("shmpool_buff_hdr",60,"name")="shmpool_buff_hdr.shadow_file_header.last_mdb_ver" + Set gtmtypes("shmpool_buff_hdr",60,"off")=476 + Set gtmtypes("shmpool_buff_hdr",60,"len")=4 + Set gtmtypes("shmpool_buff_hdr",60,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_mdb_ver")=60 + Set gtmtypes("shmpool_buff_hdr",61,"name")="shmpool_buff_hdr.shadow_file_header.filler_created" + Set gtmtypes("shmpool_buff_hdr",61,"off")=480 + Set gtmtypes("shmpool_buff_hdr",61,"len")=52 + Set gtmtypes("shmpool_buff_hdr",61,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_created")=61 + Set gtmtypes("shmpool_buff_hdr",62,"name")="shmpool_buff_hdr.shadow_file_header.createinprogress" + Set gtmtypes("shmpool_buff_hdr",62,"off")=532 + Set gtmtypes("shmpool_buff_hdr",62,"len")=4 + Set gtmtypes("shmpool_buff_hdr",62,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.createinprogress")=62 + Set gtmtypes("shmpool_buff_hdr",63,"name")="shmpool_buff_hdr.shadow_file_header.creation_time4" + Set gtmtypes("shmpool_buff_hdr",63,"off")=536 + Set gtmtypes("shmpool_buff_hdr",63,"len")=4 + Set gtmtypes("shmpool_buff_hdr",63,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_time4")=63 + Set gtmtypes("shmpool_buff_hdr",64,"name")="shmpool_buff_hdr.shadow_file_header.creation_filler_8byte" + Set gtmtypes("shmpool_buff_hdr",64,"off")=540 + Set gtmtypes("shmpool_buff_hdr",64,"len")=4 + Set gtmtypes("shmpool_buff_hdr",64,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_filler_8byte")=64 + Set gtmtypes("shmpool_buff_hdr",65,"name")="shmpool_buff_hdr.shadow_file_header.max_tn" + Set gtmtypes("shmpool_buff_hdr",65,"off")=544 + Set gtmtypes("shmpool_buff_hdr",65,"len")=8 + Set gtmtypes("shmpool_buff_hdr",65,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_tn")=65 + Set gtmtypes("shmpool_buff_hdr",66,"name")="shmpool_buff_hdr.shadow_file_header.max_tn_warn" + Set gtmtypes("shmpool_buff_hdr",66,"off")=552 + Set gtmtypes("shmpool_buff_hdr",66,"len")=8 + Set gtmtypes("shmpool_buff_hdr",66,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_tn_warn")=66 + Set gtmtypes("shmpool_buff_hdr",67,"name")="shmpool_buff_hdr.shadow_file_header.last_inc_backup" + Set gtmtypes("shmpool_buff_hdr",67,"off")=560 + Set gtmtypes("shmpool_buff_hdr",67,"len")=8 + Set gtmtypes("shmpool_buff_hdr",67,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_inc_backup")=67 + Set gtmtypes("shmpool_buff_hdr",68,"name")="shmpool_buff_hdr.shadow_file_header.last_com_backup" + Set gtmtypes("shmpool_buff_hdr",68,"off")=568 + Set gtmtypes("shmpool_buff_hdr",68,"len")=8 + Set gtmtypes("shmpool_buff_hdr",68,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_com_backup")=68 + Set gtmtypes("shmpool_buff_hdr",69,"name")="shmpool_buff_hdr.shadow_file_header.last_rec_backup" + Set gtmtypes("shmpool_buff_hdr",69,"off")=576 + Set gtmtypes("shmpool_buff_hdr",69,"len")=8 + Set gtmtypes("shmpool_buff_hdr",69,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_rec_backup")=69 + Set gtmtypes("shmpool_buff_hdr",70,"name")="shmpool_buff_hdr.shadow_file_header.last_inc_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",70,"off")=584 + Set gtmtypes("shmpool_buff_hdr",70,"len")=4 + Set gtmtypes("shmpool_buff_hdr",70,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_inc_bkup_last_blk")=70 + Set gtmtypes("shmpool_buff_hdr",71,"name")="shmpool_buff_hdr.shadow_file_header.last_com_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",71,"off")=588 + Set gtmtypes("shmpool_buff_hdr",71,"len")=4 + Set gtmtypes("shmpool_buff_hdr",71,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_com_bkup_last_blk")=71 + Set gtmtypes("shmpool_buff_hdr",72,"name")="shmpool_buff_hdr.shadow_file_header.last_rec_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",72,"off")=592 + Set gtmtypes("shmpool_buff_hdr",72,"len")=4 + Set gtmtypes("shmpool_buff_hdr",72,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_rec_bkup_last_blk")=72 + Set gtmtypes("shmpool_buff_hdr",73,"name")="shmpool_buff_hdr.shadow_file_header.reorg_restart_block" + Set gtmtypes("shmpool_buff_hdr",73,"off")=596 + Set gtmtypes("shmpool_buff_hdr",73,"len")=4 + Set gtmtypes("shmpool_buff_hdr",73,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_restart_block")=73 + Set gtmtypes("shmpool_buff_hdr",74,"name")="shmpool_buff_hdr.shadow_file_header.filler_256" + Set gtmtypes("shmpool_buff_hdr",74,"off")=600 + Set gtmtypes("shmpool_buff_hdr",74,"len")=8 + Set gtmtypes("shmpool_buff_hdr",74,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_256")=74 + Set gtmtypes("shmpool_buff_hdr",75,"name")="shmpool_buff_hdr.shadow_file_header.now_running" + Set gtmtypes("shmpool_buff_hdr",75,"off")=608 + Set gtmtypes("shmpool_buff_hdr",75,"len")=36 + Set gtmtypes("shmpool_buff_hdr",75,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.now_running")=75 + Set gtmtypes("shmpool_buff_hdr",76,"name")="shmpool_buff_hdr.shadow_file_header.filler_owner_node" + Set gtmtypes("shmpool_buff_hdr",76,"off")=644 + Set gtmtypes("shmpool_buff_hdr",76,"len")=4 + Set gtmtypes("shmpool_buff_hdr",76,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_owner_node")=76 + Set gtmtypes("shmpool_buff_hdr",77,"name")="shmpool_buff_hdr.shadow_file_header.image_count" + Set gtmtypes("shmpool_buff_hdr",77,"off")=648 + Set gtmtypes("shmpool_buff_hdr",77,"len")=4 + Set gtmtypes("shmpool_buff_hdr",77,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.image_count")=77 + Set gtmtypes("shmpool_buff_hdr",78,"name")="shmpool_buff_hdr.shadow_file_header.freeze" + Set gtmtypes("shmpool_buff_hdr",78,"off")=652 + Set gtmtypes("shmpool_buff_hdr",78,"len")=4 + Set gtmtypes("shmpool_buff_hdr",78,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.freeze")=78 + Set gtmtypes("shmpool_buff_hdr",79,"name")="shmpool_buff_hdr.shadow_file_header.kill_in_prog" + Set gtmtypes("shmpool_buff_hdr",79,"off")=656 + Set gtmtypes("shmpool_buff_hdr",79,"len")=4 + Set gtmtypes("shmpool_buff_hdr",79,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.kill_in_prog")=79 + Set gtmtypes("shmpool_buff_hdr",80,"name")="shmpool_buff_hdr.shadow_file_header.abandoned_kills" + Set gtmtypes("shmpool_buff_hdr",80,"off")=660 + Set gtmtypes("shmpool_buff_hdr",80,"len")=4 + Set gtmtypes("shmpool_buff_hdr",80,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.abandoned_kills")=80 + Set gtmtypes("shmpool_buff_hdr",81,"name")="shmpool_buff_hdr.shadow_file_header.filler_320" + Set gtmtypes("shmpool_buff_hdr",81,"off")=664 + Set gtmtypes("shmpool_buff_hdr",81,"len")=8 + Set gtmtypes("shmpool_buff_hdr",81,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_320")=81 + Set gtmtypes("shmpool_buff_hdr",82,"name")="shmpool_buff_hdr.shadow_file_header.tn_upgrd_blks_0" + Set gtmtypes("shmpool_buff_hdr",82,"off")=672 + Set gtmtypes("shmpool_buff_hdr",82,"len")=8 + Set gtmtypes("shmpool_buff_hdr",82,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tn_upgrd_blks_0")=82 + Set gtmtypes("shmpool_buff_hdr",83,"name")="shmpool_buff_hdr.shadow_file_header.desired_db_format_tn" + Set gtmtypes("shmpool_buff_hdr",83,"off")=680 + Set gtmtypes("shmpool_buff_hdr",83,"len")=8 + Set gtmtypes("shmpool_buff_hdr",83,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.desired_db_format_tn")=83 + Set gtmtypes("shmpool_buff_hdr",84,"name")="shmpool_buff_hdr.shadow_file_header.reorg_db_fmt_start_tn" + Set gtmtypes("shmpool_buff_hdr",84,"off")=688 + Set gtmtypes("shmpool_buff_hdr",84,"len")=8 + Set gtmtypes("shmpool_buff_hdr",84,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_db_fmt_start_tn")=84 + Set gtmtypes("shmpool_buff_hdr",85,"name")="shmpool_buff_hdr.shadow_file_header.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("shmpool_buff_hdr",85,"off")=696 + Set gtmtypes("shmpool_buff_hdr",85,"len")=4 + Set gtmtypes("shmpool_buff_hdr",85,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_upgrd_dwngrd_restart_block")=85 + Set gtmtypes("shmpool_buff_hdr",86,"name")="shmpool_buff_hdr.shadow_file_header.blks_to_upgrd" + Set gtmtypes("shmpool_buff_hdr",86,"off")=700 + Set gtmtypes("shmpool_buff_hdr",86,"len")=4 + Set gtmtypes("shmpool_buff_hdr",86,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blks_to_upgrd")=86 + Set gtmtypes("shmpool_buff_hdr",87,"name")="shmpool_buff_hdr.shadow_file_header.blks_to_upgrd_subzero_error" + Set gtmtypes("shmpool_buff_hdr",87,"off")=704 + Set gtmtypes("shmpool_buff_hdr",87,"len")=4 + Set gtmtypes("shmpool_buff_hdr",87,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blks_to_upgrd_subzero_error")=87 + Set gtmtypes("shmpool_buff_hdr",88,"name")="shmpool_buff_hdr.shadow_file_header.desired_db_format" + Set gtmtypes("shmpool_buff_hdr",88,"off")=708 + Set gtmtypes("shmpool_buff_hdr",88,"len")=4 + Set gtmtypes("shmpool_buff_hdr",88,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.desired_db_format")=88 + Set gtmtypes("shmpool_buff_hdr",89,"name")="shmpool_buff_hdr.shadow_file_header.fully_upgraded" + Set gtmtypes("shmpool_buff_hdr",89,"off")=712 + Set gtmtypes("shmpool_buff_hdr",89,"len")=4 + Set gtmtypes("shmpool_buff_hdr",89,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.fully_upgraded")=89 + Set gtmtypes("shmpool_buff_hdr",90,"name")="shmpool_buff_hdr.shadow_file_header.db_got_to_v5_once" + Set gtmtypes("shmpool_buff_hdr",90,"off")=716 + Set gtmtypes("shmpool_buff_hdr",90,"len")=4 + Set gtmtypes("shmpool_buff_hdr",90,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_got_to_v5_once")=90 + Set gtmtypes("shmpool_buff_hdr",91,"name")="shmpool_buff_hdr.shadow_file_header.opened_by_gtmv53" + Set gtmtypes("shmpool_buff_hdr",91,"off")=720 + Set gtmtypes("shmpool_buff_hdr",91,"len")=4 + Set gtmtypes("shmpool_buff_hdr",91,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.opened_by_gtmv53")=91 + Set gtmtypes("shmpool_buff_hdr",92,"name")="shmpool_buff_hdr.shadow_file_header.filler_384" + Set gtmtypes("shmpool_buff_hdr",92,"off")=724 + Set gtmtypes("shmpool_buff_hdr",92,"len")=12 + Set gtmtypes("shmpool_buff_hdr",92,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_384")=92 + Set gtmtypes("shmpool_buff_hdr",93,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist" + Set gtmtypes("shmpool_buff_hdr",93,"off")=736 + Set gtmtypes("shmpool_buff_hdr",93,"len")=56 + Set gtmtypes("shmpool_buff_hdr",93,"type")="th_index" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist")=93 + Set gtmtypes("shmpool_buff_hdr",94,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.curr_tn" + Set gtmtypes("shmpool_buff_hdr",94,"off")=736 + Set gtmtypes("shmpool_buff_hdr",94,"len")=8 + Set gtmtypes("shmpool_buff_hdr",94,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.curr_tn")=94 + Set gtmtypes("shmpool_buff_hdr",95,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.early_tn" + Set gtmtypes("shmpool_buff_hdr",95,"off")=744 + Set gtmtypes("shmpool_buff_hdr",95,"len")=8 + Set gtmtypes("shmpool_buff_hdr",95,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.early_tn")=95 + Set gtmtypes("shmpool_buff_hdr",96,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.last_mm_sync" + Set gtmtypes("shmpool_buff_hdr",96,"off")=752 + Set gtmtypes("shmpool_buff_hdr",96,"len")=8 + Set gtmtypes("shmpool_buff_hdr",96,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.last_mm_sync")=96 + Set gtmtypes("shmpool_buff_hdr",97,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.filler_8byte" + Set gtmtypes("shmpool_buff_hdr",97,"off")=760 + Set gtmtypes("shmpool_buff_hdr",97,"len")=8 + Set gtmtypes("shmpool_buff_hdr",97,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.filler_8byte")=97 + Set gtmtypes("shmpool_buff_hdr",98,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.mm_tn" + Set gtmtypes("shmpool_buff_hdr",98,"off")=768 + Set gtmtypes("shmpool_buff_hdr",98,"len")=8 + Set gtmtypes("shmpool_buff_hdr",98,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.mm_tn")=98 + Set gtmtypes("shmpool_buff_hdr",99,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.lock_sequence" + Set gtmtypes("shmpool_buff_hdr",99,"off")=776 + Set gtmtypes("shmpool_buff_hdr",99,"len")=4 + Set gtmtypes("shmpool_buff_hdr",99,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.lock_sequence")=99 + Set gtmtypes("shmpool_buff_hdr",100,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.ccp_jnl_filesize" + Set gtmtypes("shmpool_buff_hdr",100,"off")=780 + Set gtmtypes("shmpool_buff_hdr",100,"len")=4 + Set gtmtypes("shmpool_buff_hdr",100,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.ccp_jnl_filesize")=100 + Set gtmtypes("shmpool_buff_hdr",101,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.total_blks" + Set gtmtypes("shmpool_buff_hdr",101,"off")=784 + Set gtmtypes("shmpool_buff_hdr",101,"len")=4 + Set gtmtypes("shmpool_buff_hdr",101,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.total_blks")=101 + Set gtmtypes("shmpool_buff_hdr",102,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.free_blocks" + Set gtmtypes("shmpool_buff_hdr",102,"off")=788 + Set gtmtypes("shmpool_buff_hdr",102,"len")=4 + Set gtmtypes("shmpool_buff_hdr",102,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.free_blocks")=102 + Set gtmtypes("shmpool_buff_hdr",103,"name")="shmpool_buff_hdr.shadow_file_header.filler_trans_hist" + Set gtmtypes("shmpool_buff_hdr",103,"off")=792 + Set gtmtypes("shmpool_buff_hdr",103,"len")=8 + Set gtmtypes("shmpool_buff_hdr",103,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_trans_hist")=103 + Set gtmtypes("shmpool_buff_hdr",104,"name")="shmpool_buff_hdr.shadow_file_header.flush_time" + Set gtmtypes("shmpool_buff_hdr",104,"off")=800 + Set gtmtypes("shmpool_buff_hdr",104,"len")=8 + Set gtmtypes("shmpool_buff_hdr",104,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.flush_time")=104 + Set gtmtypes("shmpool_buff_hdr",104,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",105,"name")="shmpool_buff_hdr.shadow_file_header.flush_trigger" + Set gtmtypes("shmpool_buff_hdr",105,"off")=808 + Set gtmtypes("shmpool_buff_hdr",105,"len")=4 + Set gtmtypes("shmpool_buff_hdr",105,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.flush_trigger")=105 + Set gtmtypes("shmpool_buff_hdr",106,"name")="shmpool_buff_hdr.shadow_file_header.n_wrt_per_flu" + Set gtmtypes("shmpool_buff_hdr",106,"off")=812 + Set gtmtypes("shmpool_buff_hdr",106,"len")=4 + Set gtmtypes("shmpool_buff_hdr",106,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_wrt_per_flu")=106 + Set gtmtypes("shmpool_buff_hdr",107,"name")="shmpool_buff_hdr.shadow_file_header.wait_disk_space" + Set gtmtypes("shmpool_buff_hdr",107,"off")=816 + Set gtmtypes("shmpool_buff_hdr",107,"len")=4 + Set gtmtypes("shmpool_buff_hdr",107,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wait_disk_space")=107 + Set gtmtypes("shmpool_buff_hdr",108,"name")="shmpool_buff_hdr.shadow_file_header.defer_time" + Set gtmtypes("shmpool_buff_hdr",108,"off")=820 + Set gtmtypes("shmpool_buff_hdr",108,"len")=4 + Set gtmtypes("shmpool_buff_hdr",108,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.defer_time")=108 + Set gtmtypes("shmpool_buff_hdr",109,"name")="shmpool_buff_hdr.shadow_file_header.filler_wc_blocked" + Set gtmtypes("shmpool_buff_hdr",109,"off")=824 + Set gtmtypes("shmpool_buff_hdr",109,"len")=4 + Set gtmtypes("shmpool_buff_hdr",109,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_wc_blocked")=109 + Set gtmtypes("shmpool_buff_hdr",110,"name")="shmpool_buff_hdr.shadow_file_header.mumps_can_bypass" + Set gtmtypes("shmpool_buff_hdr",110,"off")=828 + Set gtmtypes("shmpool_buff_hdr",110,"len")=4 + Set gtmtypes("shmpool_buff_hdr",110,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mumps_can_bypass")=110 + Set gtmtypes("shmpool_buff_hdr",111,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper" + Set gtmtypes("shmpool_buff_hdr",111,"off")=832 + Set gtmtypes("shmpool_buff_hdr",111,"len")=4 + Set gtmtypes("shmpool_buff_hdr",111,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper")=111 + Set gtmtypes("shmpool_buff_hdr",112,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper_time_pct" + Set gtmtypes("shmpool_buff_hdr",112,"off")=836 + Set gtmtypes("shmpool_buff_hdr",112,"len")=4 + Set gtmtypes("shmpool_buff_hdr",112,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper_time_pct")=112 + Set gtmtypes("shmpool_buff_hdr",113,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper_jnl_pct" + Set gtmtypes("shmpool_buff_hdr",113,"off")=840 + Set gtmtypes("shmpool_buff_hdr",113,"len")=4 + Set gtmtypes("shmpool_buff_hdr",113,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper_jnl_pct")=113 + Set gtmtypes("shmpool_buff_hdr",114,"name")="shmpool_buff_hdr.shadow_file_header.filler_512" + Set gtmtypes("shmpool_buff_hdr",114,"off")=844 + Set gtmtypes("shmpool_buff_hdr",114,"len")=4 + Set gtmtypes("shmpool_buff_hdr",114,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_512")=114 + Set gtmtypes("shmpool_buff_hdr",115,"name")="shmpool_buff_hdr.shadow_file_header.reserved_for_upd" + Set gtmtypes("shmpool_buff_hdr",115,"off")=848 + Set gtmtypes("shmpool_buff_hdr",115,"len")=4 + Set gtmtypes("shmpool_buff_hdr",115,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_for_upd")=115 + Set gtmtypes("shmpool_buff_hdr",116,"name")="shmpool_buff_hdr.shadow_file_header.avg_blks_per_100gbl" + Set gtmtypes("shmpool_buff_hdr",116,"off")=852 + Set gtmtypes("shmpool_buff_hdr",116,"len")=4 + Set gtmtypes("shmpool_buff_hdr",116,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.avg_blks_per_100gbl")=116 + Set gtmtypes("shmpool_buff_hdr",117,"name")="shmpool_buff_hdr.shadow_file_header.pre_read_trigger_factor" + Set gtmtypes("shmpool_buff_hdr",117,"off")=856 + Set gtmtypes("shmpool_buff_hdr",117,"len")=4 + Set gtmtypes("shmpool_buff_hdr",117,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.pre_read_trigger_factor")=117 + Set gtmtypes("shmpool_buff_hdr",118,"name")="shmpool_buff_hdr.shadow_file_header.writer_trigger_factor" + Set gtmtypes("shmpool_buff_hdr",118,"off")=860 + Set gtmtypes("shmpool_buff_hdr",118,"len")=4 + Set gtmtypes("shmpool_buff_hdr",118,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.writer_trigger_factor")=118 + Set gtmtypes("shmpool_buff_hdr",119,"name")="shmpool_buff_hdr.shadow_file_header.semid" + Set gtmtypes("shmpool_buff_hdr",119,"off")=864 + Set gtmtypes("shmpool_buff_hdr",119,"len")=4 + Set gtmtypes("shmpool_buff_hdr",119,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.semid")=119 + Set gtmtypes("shmpool_buff_hdr",120,"name")="shmpool_buff_hdr.shadow_file_header.shmid" + Set gtmtypes("shmpool_buff_hdr",120,"off")=868 + Set gtmtypes("shmpool_buff_hdr",120,"len")=4 + Set gtmtypes("shmpool_buff_hdr",120,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmid")=120 + Set gtmtypes("shmpool_buff_hdr",121,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime" + Set gtmtypes("shmpool_buff_hdr",121,"off")=872 + Set gtmtypes("shmpool_buff_hdr",121,"len")=8 + Set gtmtypes("shmpool_buff_hdr",121,"type")="gtm_time8" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime")=121 + Set gtmtypes("shmpool_buff_hdr",122,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime.ctime" + Set gtmtypes("shmpool_buff_hdr",122,"off")=872 + Set gtmtypes("shmpool_buff_hdr",122,"len")=4 + Set gtmtypes("shmpool_buff_hdr",122,"type")="time_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime.ctime")=122 + Set gtmtypes("shmpool_buff_hdr",123,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime.filler" + Set gtmtypes("shmpool_buff_hdr",123,"off")=872 + Set gtmtypes("shmpool_buff_hdr",123,"len")=8 + Set gtmtypes("shmpool_buff_hdr",123,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime.filler")=123 + Set gtmtypes("shmpool_buff_hdr",123,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",124,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime" + Set gtmtypes("shmpool_buff_hdr",124,"off")=880 + Set gtmtypes("shmpool_buff_hdr",124,"len")=8 + Set gtmtypes("shmpool_buff_hdr",124,"type")="gtm_time8" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime")=124 + Set gtmtypes("shmpool_buff_hdr",125,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime.ctime" + Set gtmtypes("shmpool_buff_hdr",125,"off")=880 + Set gtmtypes("shmpool_buff_hdr",125,"len")=4 + Set gtmtypes("shmpool_buff_hdr",125,"type")="time_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime.ctime")=125 + Set gtmtypes("shmpool_buff_hdr",126,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime.filler" + Set gtmtypes("shmpool_buff_hdr",126,"off")=880 + Set gtmtypes("shmpool_buff_hdr",126,"len")=8 + Set gtmtypes("shmpool_buff_hdr",126,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime.filler")=126 + Set gtmtypes("shmpool_buff_hdr",126,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",127,"name")="shmpool_buff_hdr.shadow_file_header.filler_unixonly" + Set gtmtypes("shmpool_buff_hdr",127,"off")=888 + Set gtmtypes("shmpool_buff_hdr",127,"len")=40 + Set gtmtypes("shmpool_buff_hdr",127,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_unixonly")=127 + Set gtmtypes("shmpool_buff_hdr",128,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_retries" + Set gtmtypes("shmpool_buff_hdr",128,"off")=928 + Set gtmtypes("shmpool_buff_hdr",128,"len")=20 + Set gtmtypes("shmpool_buff_hdr",128,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_retries")=128 + Set gtmtypes("shmpool_buff_hdr",128,"dim")=5 + Set gtmtypes("shmpool_buff_hdr",129,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_puts" + Set gtmtypes("shmpool_buff_hdr",129,"off")=948 + Set gtmtypes("shmpool_buff_hdr",129,"len")=4 + Set gtmtypes("shmpool_buff_hdr",129,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_puts")=129 + Set gtmtypes("shmpool_buff_hdr",130,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_kills" + Set gtmtypes("shmpool_buff_hdr",130,"off")=952 + Set gtmtypes("shmpool_buff_hdr",130,"len")=4 + Set gtmtypes("shmpool_buff_hdr",130,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_kills")=130 + Set gtmtypes("shmpool_buff_hdr",131,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_queries" + Set gtmtypes("shmpool_buff_hdr",131,"off")=956 + Set gtmtypes("shmpool_buff_hdr",131,"len")=4 + Set gtmtypes("shmpool_buff_hdr",131,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_queries")=131 + Set gtmtypes("shmpool_buff_hdr",132,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_gets" + Set gtmtypes("shmpool_buff_hdr",132,"off")=960 + Set gtmtypes("shmpool_buff_hdr",132,"len")=4 + Set gtmtypes("shmpool_buff_hdr",132,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_gets")=132 + Set gtmtypes("shmpool_buff_hdr",133,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_order" + Set gtmtypes("shmpool_buff_hdr",133,"off")=964 + Set gtmtypes("shmpool_buff_hdr",133,"len")=4 + Set gtmtypes("shmpool_buff_hdr",133,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_order")=133 + Set gtmtypes("shmpool_buff_hdr",134,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_zprevs" + Set gtmtypes("shmpool_buff_hdr",134,"off")=968 + Set gtmtypes("shmpool_buff_hdr",134,"len")=4 + Set gtmtypes("shmpool_buff_hdr",134,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_zprevs")=134 + Set gtmtypes("shmpool_buff_hdr",135,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_data" + Set gtmtypes("shmpool_buff_hdr",135,"off")=972 + Set gtmtypes("shmpool_buff_hdr",135,"len")=4 + Set gtmtypes("shmpool_buff_hdr",135,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_data")=135 + Set gtmtypes("shmpool_buff_hdr",136,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_puts_duplicate" + Set gtmtypes("shmpool_buff_hdr",136,"off")=976 + Set gtmtypes("shmpool_buff_hdr",136,"len")=4 + Set gtmtypes("shmpool_buff_hdr",136,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_puts_duplicate")=136 + Set gtmtypes("shmpool_buff_hdr",137,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_updates" + Set gtmtypes("shmpool_buff_hdr",137,"off")=980 + Set gtmtypes("shmpool_buff_hdr",137,"len")=4 + Set gtmtypes("shmpool_buff_hdr",137,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_updates")=137 + Set gtmtypes("shmpool_buff_hdr",138,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_updates_duplicate" + Set gtmtypes("shmpool_buff_hdr",138,"off")=984 + Set gtmtypes("shmpool_buff_hdr",138,"len")=4 + Set gtmtypes("shmpool_buff_hdr",138,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_updates_duplicate")=138 + Set gtmtypes("shmpool_buff_hdr",139,"name")="shmpool_buff_hdr.shadow_file_header.filler_accounting_64_align" + Set gtmtypes("shmpool_buff_hdr",139,"off")=988 + Set gtmtypes("shmpool_buff_hdr",139,"len")=4 + Set gtmtypes("shmpool_buff_hdr",139,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_accounting_64_align")=139 + Set gtmtypes("shmpool_buff_hdr",140,"name")="shmpool_buff_hdr.shadow_file_header.staleness" + Set gtmtypes("shmpool_buff_hdr",140,"off")=992 + Set gtmtypes("shmpool_buff_hdr",140,"len")=8 + Set gtmtypes("shmpool_buff_hdr",140,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.staleness")=140 + Set gtmtypes("shmpool_buff_hdr",140,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",141,"name")="shmpool_buff_hdr.shadow_file_header.ccp_tick_interval" + Set gtmtypes("shmpool_buff_hdr",141,"off")=1000 + Set gtmtypes("shmpool_buff_hdr",141,"len")=8 + Set gtmtypes("shmpool_buff_hdr",141,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_tick_interval")=141 + Set gtmtypes("shmpool_buff_hdr",141,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",142,"name")="shmpool_buff_hdr.shadow_file_header.ccp_quantum_interval" + Set gtmtypes("shmpool_buff_hdr",142,"off")=1008 + Set gtmtypes("shmpool_buff_hdr",142,"len")=8 + Set gtmtypes("shmpool_buff_hdr",142,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_quantum_interval")=142 + Set gtmtypes("shmpool_buff_hdr",142,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",143,"name")="shmpool_buff_hdr.shadow_file_header.ccp_response_interval" + Set gtmtypes("shmpool_buff_hdr",143,"off")=1016 + Set gtmtypes("shmpool_buff_hdr",143,"len")=8 + Set gtmtypes("shmpool_buff_hdr",143,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_response_interval")=143 + Set gtmtypes("shmpool_buff_hdr",143,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",144,"name")="shmpool_buff_hdr.shadow_file_header.ccp_jnl_before" + Set gtmtypes("shmpool_buff_hdr",144,"off")=1024 + Set gtmtypes("shmpool_buff_hdr",144,"len")=4 + Set gtmtypes("shmpool_buff_hdr",144,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_jnl_before")=144 + Set gtmtypes("shmpool_buff_hdr",145,"name")="shmpool_buff_hdr.shadow_file_header.clustered" + Set gtmtypes("shmpool_buff_hdr",145,"off")=1028 + Set gtmtypes("shmpool_buff_hdr",145,"len")=4 + Set gtmtypes("shmpool_buff_hdr",145,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.clustered")=145 + Set gtmtypes("shmpool_buff_hdr",146,"name")="shmpool_buff_hdr.shadow_file_header.unbacked_cache" + Set gtmtypes("shmpool_buff_hdr",146,"off")=1032 + Set gtmtypes("shmpool_buff_hdr",146,"len")=4 + Set gtmtypes("shmpool_buff_hdr",146,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unbacked_cache")=146 + Set gtmtypes("shmpool_buff_hdr",147,"name")="shmpool_buff_hdr.shadow_file_header.rc_srv_cnt" + Set gtmtypes("shmpool_buff_hdr",147,"off")=1036 + Set gtmtypes("shmpool_buff_hdr",147,"len")=4 + Set gtmtypes("shmpool_buff_hdr",147,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.rc_srv_cnt")=147 + Set gtmtypes("shmpool_buff_hdr",148,"name")="shmpool_buff_hdr.shadow_file_header.dsid" + Set gtmtypes("shmpool_buff_hdr",148,"off")=1040 + Set gtmtypes("shmpool_buff_hdr",148,"len")=4 + Set gtmtypes("shmpool_buff_hdr",148,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dsid")=148 + Set gtmtypes("shmpool_buff_hdr",149,"name")="shmpool_buff_hdr.shadow_file_header.rc_node" + Set gtmtypes("shmpool_buff_hdr",149,"off")=1044 + Set gtmtypes("shmpool_buff_hdr",149,"len")=4 + Set gtmtypes("shmpool_buff_hdr",149,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.rc_node")=149 + Set gtmtypes("shmpool_buff_hdr",150,"name")="shmpool_buff_hdr.shadow_file_header.filler_ccp_rc" + Set gtmtypes("shmpool_buff_hdr",150,"off")=1048 + Set gtmtypes("shmpool_buff_hdr",150,"len")=8 + Set gtmtypes("shmpool_buff_hdr",150,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_ccp_rc")=150 + Set gtmtypes("shmpool_buff_hdr",151,"name")="shmpool_buff_hdr.shadow_file_header.reg_seqno" + Set gtmtypes("shmpool_buff_hdr",151,"off")=1056 + Set gtmtypes("shmpool_buff_hdr",151,"len")=8 + Set gtmtypes("shmpool_buff_hdr",151,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reg_seqno")=151 + Set gtmtypes("shmpool_buff_hdr",152,"name")="shmpool_buff_hdr.shadow_file_header.pre_multisite_resync_seqno" + Set gtmtypes("shmpool_buff_hdr",152,"off")=1064 + Set gtmtypes("shmpool_buff_hdr",152,"len")=8 + Set gtmtypes("shmpool_buff_hdr",152,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.pre_multisite_resync_seqno")=152 + Set gtmtypes("shmpool_buff_hdr",153,"name")="shmpool_buff_hdr.shadow_file_header.zqgblmod_tn" + Set gtmtypes("shmpool_buff_hdr",153,"off")=1072 + Set gtmtypes("shmpool_buff_hdr",153,"len")=8 + Set gtmtypes("shmpool_buff_hdr",153,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.zqgblmod_tn")=153 + Set gtmtypes("shmpool_buff_hdr",154,"name")="shmpool_buff_hdr.shadow_file_header.zqgblmod_seqno" + Set gtmtypes("shmpool_buff_hdr",154,"off")=1080 + Set gtmtypes("shmpool_buff_hdr",154,"len")=8 + Set gtmtypes("shmpool_buff_hdr",154,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.zqgblmod_seqno")=154 + Set gtmtypes("shmpool_buff_hdr",155,"name")="shmpool_buff_hdr.shadow_file_header.repl_state" + Set gtmtypes("shmpool_buff_hdr",155,"off")=1088 + Set gtmtypes("shmpool_buff_hdr",155,"len")=4 + Set gtmtypes("shmpool_buff_hdr",155,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.repl_state")=155 + Set gtmtypes("shmpool_buff_hdr",156,"name")="shmpool_buff_hdr.shadow_file_header.multi_site_open" + Set gtmtypes("shmpool_buff_hdr",156,"off")=1092 + Set gtmtypes("shmpool_buff_hdr",156,"len")=4 + Set gtmtypes("shmpool_buff_hdr",156,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.multi_site_open")=156 + Set gtmtypes("shmpool_buff_hdr",157,"name")="shmpool_buff_hdr.shadow_file_header.filler_seqno" + Set gtmtypes("shmpool_buff_hdr",157,"off")=1096 + Set gtmtypes("shmpool_buff_hdr",157,"len")=8 + Set gtmtypes("shmpool_buff_hdr",157,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_seqno")=157 + Set gtmtypes("shmpool_buff_hdr",158,"name")="shmpool_buff_hdr.shadow_file_header.filler_repl" + Set gtmtypes("shmpool_buff_hdr",158,"off")=1104 + Set gtmtypes("shmpool_buff_hdr",158,"len")=16 + Set gtmtypes("shmpool_buff_hdr",158,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_repl")=158 + Set gtmtypes("shmpool_buff_hdr",159,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_retries" + Set gtmtypes("shmpool_buff_hdr",159,"off")=1120 + Set gtmtypes("shmpool_buff_hdr",159,"len")=48 + Set gtmtypes("shmpool_buff_hdr",159,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_retries")=159 + Set gtmtypes("shmpool_buff_hdr",159,"dim")=12 + Set gtmtypes("shmpool_buff_hdr",160,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_retries_conflicts" + Set gtmtypes("shmpool_buff_hdr",160,"off")=1168 + Set gtmtypes("shmpool_buff_hdr",160,"len")=48 + Set gtmtypes("shmpool_buff_hdr",160,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_retries_conflicts")=160 + Set gtmtypes("shmpool_buff_hdr",160,"dim")=12 + Set gtmtypes("shmpool_buff_hdr",161,"name")="shmpool_buff_hdr.shadow_file_header.tp_cdb_sc_blkmod" + Set gtmtypes("shmpool_buff_hdr",161,"off")=1216 + Set gtmtypes("shmpool_buff_hdr",161,"len")=32 + Set gtmtypes("shmpool_buff_hdr",161,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_cdb_sc_blkmod")=161 + Set gtmtypes("shmpool_buff_hdr",161,"dim")=8 + Set gtmtypes("shmpool_buff_hdr",162,"name")="shmpool_buff_hdr.shadow_file_header.jnl_alq" + Set gtmtypes("shmpool_buff_hdr",162,"off")=1248 + Set gtmtypes("shmpool_buff_hdr",162,"len")=4 + Set gtmtypes("shmpool_buff_hdr",162,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_alq")=162 + Set gtmtypes("shmpool_buff_hdr",163,"name")="shmpool_buff_hdr.shadow_file_header.jnl_deq" + Set gtmtypes("shmpool_buff_hdr",163,"off")=1252 + Set gtmtypes("shmpool_buff_hdr",163,"len")=4 + Set gtmtypes("shmpool_buff_hdr",163,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_deq")=163 + Set gtmtypes("shmpool_buff_hdr",164,"name")="shmpool_buff_hdr.shadow_file_header.jnl_buffer_size" + Set gtmtypes("shmpool_buff_hdr",164,"off")=1256 + Set gtmtypes("shmpool_buff_hdr",164,"len")=4 + Set gtmtypes("shmpool_buff_hdr",164,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_buffer_size")=164 + Set gtmtypes("shmpool_buff_hdr",165,"name")="shmpool_buff_hdr.shadow_file_header.jnl_before_image" + Set gtmtypes("shmpool_buff_hdr",165,"off")=1260 + Set gtmtypes("shmpool_buff_hdr",165,"len")=4 + Set gtmtypes("shmpool_buff_hdr",165,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_before_image")=165 + Set gtmtypes("shmpool_buff_hdr",166,"name")="shmpool_buff_hdr.shadow_file_header.jnl_state" + Set gtmtypes("shmpool_buff_hdr",166,"off")=1264 + Set gtmtypes("shmpool_buff_hdr",166,"len")=4 + Set gtmtypes("shmpool_buff_hdr",166,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_state")=166 + Set gtmtypes("shmpool_buff_hdr",167,"name")="shmpool_buff_hdr.shadow_file_header.jnl_file_len" + Set gtmtypes("shmpool_buff_hdr",167,"off")=1268 + Set gtmtypes("shmpool_buff_hdr",167,"len")=4 + Set gtmtypes("shmpool_buff_hdr",167,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_file_len")=167 + Set gtmtypes("shmpool_buff_hdr",168,"name")="shmpool_buff_hdr.shadow_file_header.autoswitchlimit" + Set gtmtypes("shmpool_buff_hdr",168,"off")=1272 + Set gtmtypes("shmpool_buff_hdr",168,"len")=4 + Set gtmtypes("shmpool_buff_hdr",168,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.autoswitchlimit")=168 + Set gtmtypes("shmpool_buff_hdr",169,"name")="shmpool_buff_hdr.shadow_file_header.epoch_interval" + Set gtmtypes("shmpool_buff_hdr",169,"off")=1276 + Set gtmtypes("shmpool_buff_hdr",169,"len")=4 + Set gtmtypes("shmpool_buff_hdr",169,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_interval")=169 + Set gtmtypes("shmpool_buff_hdr",170,"name")="shmpool_buff_hdr.shadow_file_header.alignsize" + Set gtmtypes("shmpool_buff_hdr",170,"off")=1280 + Set gtmtypes("shmpool_buff_hdr",170,"len")=4 + Set gtmtypes("shmpool_buff_hdr",170,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.alignsize")=170 + Set gtmtypes("shmpool_buff_hdr",171,"name")="shmpool_buff_hdr.shadow_file_header.jnl_sync_io" + Set gtmtypes("shmpool_buff_hdr",171,"off")=1284 + Set gtmtypes("shmpool_buff_hdr",171,"len")=4 + Set gtmtypes("shmpool_buff_hdr",171,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_sync_io")=171 + Set gtmtypes("shmpool_buff_hdr",172,"name")="shmpool_buff_hdr.shadow_file_header.yield_lmt" + Set gtmtypes("shmpool_buff_hdr",172,"off")=1288 + Set gtmtypes("shmpool_buff_hdr",172,"len")=4 + Set gtmtypes("shmpool_buff_hdr",172,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.yield_lmt")=172 + Set gtmtypes("shmpool_buff_hdr",173,"name")="shmpool_buff_hdr.shadow_file_header.turn_around_point" + Set gtmtypes("shmpool_buff_hdr",173,"off")=1292 + Set gtmtypes("shmpool_buff_hdr",173,"len")=4 + Set gtmtypes("shmpool_buff_hdr",173,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.turn_around_point")=173 + Set gtmtypes("shmpool_buff_hdr",174,"name")="shmpool_buff_hdr.shadow_file_header.jnl_eovtn" + Set gtmtypes("shmpool_buff_hdr",174,"off")=1296 + Set gtmtypes("shmpool_buff_hdr",174,"len")=8 + Set gtmtypes("shmpool_buff_hdr",174,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_eovtn")=174 + Set gtmtypes("shmpool_buff_hdr",175,"name")="shmpool_buff_hdr.shadow_file_header.filler_jnl" + Set gtmtypes("shmpool_buff_hdr",175,"off")=1304 + Set gtmtypes("shmpool_buff_hdr",175,"len")=8 + Set gtmtypes("shmpool_buff_hdr",175,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_jnl")=175 + Set gtmtypes("shmpool_buff_hdr",176,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_resync_seqno" + Set gtmtypes("shmpool_buff_hdr",176,"off")=1312 + Set gtmtypes("shmpool_buff_hdr",176,"len")=8 + Set gtmtypes("shmpool_buff_hdr",176,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_resync_seqno")=176 + Set gtmtypes("shmpool_buff_hdr",177,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_tp_resolve_time" + Set gtmtypes("shmpool_buff_hdr",177,"off")=1320 + Set gtmtypes("shmpool_buff_hdr",177,"len")=4 + Set gtmtypes("shmpool_buff_hdr",177,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_tp_resolve_time")=177 + Set gtmtypes("shmpool_buff_hdr",178,"name")="shmpool_buff_hdr.shadow_file_header.recov_interrupted" + Set gtmtypes("shmpool_buff_hdr",178,"off")=1324 + Set gtmtypes("shmpool_buff_hdr",178,"len")=4 + Set gtmtypes("shmpool_buff_hdr",178,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recov_interrupted")=178 + Set gtmtypes("shmpool_buff_hdr",179,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_jnl_state" + Set gtmtypes("shmpool_buff_hdr",179,"off")=1328 + Set gtmtypes("shmpool_buff_hdr",179,"len")=4 + Set gtmtypes("shmpool_buff_hdr",179,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_jnl_state")=179 + Set gtmtypes("shmpool_buff_hdr",180,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_repl_state" + Set gtmtypes("shmpool_buff_hdr",180,"off")=1332 + Set gtmtypes("shmpool_buff_hdr",180,"len")=4 + Set gtmtypes("shmpool_buff_hdr",180,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_repl_state")=180 + Set gtmtypes("shmpool_buff_hdr",181,"name")="shmpool_buff_hdr.shadow_file_header.before_trunc_total_blks" + Set gtmtypes("shmpool_buff_hdr",181,"off")=1336 + Set gtmtypes("shmpool_buff_hdr",181,"len")=4 + Set gtmtypes("shmpool_buff_hdr",181,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.before_trunc_total_blks")=181 + Set gtmtypes("shmpool_buff_hdr",182,"name")="shmpool_buff_hdr.shadow_file_header.after_trunc_total_blks" + Set gtmtypes("shmpool_buff_hdr",182,"off")=1340 + Set gtmtypes("shmpool_buff_hdr",182,"len")=4 + Set gtmtypes("shmpool_buff_hdr",182,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.after_trunc_total_blks")=182 + Set gtmtypes("shmpool_buff_hdr",183,"name")="shmpool_buff_hdr.shadow_file_header.before_trunc_free_blocks" + Set gtmtypes("shmpool_buff_hdr",183,"off")=1344 + Set gtmtypes("shmpool_buff_hdr",183,"len")=4 + Set gtmtypes("shmpool_buff_hdr",183,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.before_trunc_free_blocks")=183 + Set gtmtypes("shmpool_buff_hdr",184,"name")="shmpool_buff_hdr.shadow_file_header.filler_trunc" + Set gtmtypes("shmpool_buff_hdr",184,"off")=1348 + Set gtmtypes("shmpool_buff_hdr",184,"len")=4 + Set gtmtypes("shmpool_buff_hdr",184,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_trunc")=184 + Set gtmtypes("shmpool_buff_hdr",185,"name")="shmpool_buff_hdr.shadow_file_header.filler_1k" + Set gtmtypes("shmpool_buff_hdr",185,"off")=1352 + Set gtmtypes("shmpool_buff_hdr",185,"len")=24 + Set gtmtypes("shmpool_buff_hdr",185,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_1k")=185 + Set gtmtypes("shmpool_buff_hdr",186,"name")="shmpool_buff_hdr.shadow_file_header.jnl_file_name" + Set gtmtypes("shmpool_buff_hdr",186,"off")=1376 + Set gtmtypes("shmpool_buff_hdr",186,"len")=256 + Set gtmtypes("shmpool_buff_hdr",186,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_file_name")=186 + Set gtmtypes("shmpool_buff_hdr",187,"name")="shmpool_buff_hdr.shadow_file_header.reorg_restart_key" + Set gtmtypes("shmpool_buff_hdr",187,"off")=1632 + Set gtmtypes("shmpool_buff_hdr",187,"len")=256 + Set gtmtypes("shmpool_buff_hdr",187,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_restart_key")=187 + Set gtmtypes("shmpool_buff_hdr",188,"name")="shmpool_buff_hdr.shadow_file_header.machine_name" + Set gtmtypes("shmpool_buff_hdr",188,"off")=1888 + Set gtmtypes("shmpool_buff_hdr",188,"len")=256 + Set gtmtypes("shmpool_buff_hdr",188,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.machine_name")=188 + Set gtmtypes("shmpool_buff_hdr",189,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash" + Set gtmtypes("shmpool_buff_hdr",189,"off")=2144 + Set gtmtypes("shmpool_buff_hdr",189,"len")=80 + Set gtmtypes("shmpool_buff_hdr",189,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash")=189 + Set gtmtypes("shmpool_buff_hdr",190,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash2" + Set gtmtypes("shmpool_buff_hdr",190,"off")=2224 + Set gtmtypes("shmpool_buff_hdr",190,"len")=80 + Set gtmtypes("shmpool_buff_hdr",190,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash2")=190 + Set gtmtypes("shmpool_buff_hdr",191,"name")="shmpool_buff_hdr.shadow_file_header.non_null_iv" + Set gtmtypes("shmpool_buff_hdr",191,"off")=2304 + Set gtmtypes("shmpool_buff_hdr",191,"len")=4 + Set gtmtypes("shmpool_buff_hdr",191,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.non_null_iv")=191 + Set gtmtypes("shmpool_buff_hdr",192,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash_cutoff" + Set gtmtypes("shmpool_buff_hdr",192,"off")=2308 + Set gtmtypes("shmpool_buff_hdr",192,"len")=4 + Set gtmtypes("shmpool_buff_hdr",192,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash_cutoff")=192 + Set gtmtypes("shmpool_buff_hdr",193,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash2_start_tn" + Set gtmtypes("shmpool_buff_hdr",193,"off")=2312 + Set gtmtypes("shmpool_buff_hdr",193,"len")=8 + Set gtmtypes("shmpool_buff_hdr",193,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash2_start_tn")=193 + Set gtmtypes("shmpool_buff_hdr",194,"name")="shmpool_buff_hdr.shadow_file_header.filler_encrypt" + Set gtmtypes("shmpool_buff_hdr",194,"off")=2320 + Set gtmtypes("shmpool_buff_hdr",194,"len")=80 + Set gtmtypes("shmpool_buff_hdr",194,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_encrypt")=194 + Set gtmtypes("shmpool_buff_hdr",195,"name")="shmpool_buff_hdr.shadow_file_header.total_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",195,"off")=2400 + Set gtmtypes("shmpool_buff_hdr",195,"len")=8 + Set gtmtypes("shmpool_buff_hdr",195,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.total_buffer_flush_tn")=195 + Set gtmtypes("shmpool_buff_hdr",196,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",196,"off")=2408 + Set gtmtypes("shmpool_buff_hdr",196,"len")=8 + Set gtmtypes("shmpool_buff_hdr",196,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_tn")=196 + Set gtmtypes("shmpool_buff_hdr",197,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_loop_tn" + Set gtmtypes("shmpool_buff_hdr",197,"off")=2416 + Set gtmtypes("shmpool_buff_hdr",197,"len")=8 + Set gtmtypes("shmpool_buff_hdr",197,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_loop_tn")=197 + Set gtmtypes("shmpool_buff_hdr",198,"name")="shmpool_buff_hdr.shadow_file_header.wrt_calls_tn" + Set gtmtypes("shmpool_buff_hdr",198,"off")=2424 + Set gtmtypes("shmpool_buff_hdr",198,"len")=8 + Set gtmtypes("shmpool_buff_hdr",198,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_calls_tn")=198 + Set gtmtypes("shmpool_buff_hdr",199,"name")="shmpool_buff_hdr.shadow_file_header.wrt_count_tn" + Set gtmtypes("shmpool_buff_hdr",199,"off")=2432 + Set gtmtypes("shmpool_buff_hdr",199,"len")=8 + Set gtmtypes("shmpool_buff_hdr",199,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_count_tn")=199 + Set gtmtypes("shmpool_buff_hdr",200,"name")="shmpool_buff_hdr.shadow_file_header.wrt_blocked_tn" + Set gtmtypes("shmpool_buff_hdr",200,"off")=2440 + Set gtmtypes("shmpool_buff_hdr",200,"len")=8 + Set gtmtypes("shmpool_buff_hdr",200,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_blocked_tn")=200 + Set gtmtypes("shmpool_buff_hdr",201,"name")="shmpool_buff_hdr.shadow_file_header.wrt_busy_tn" + Set gtmtypes("shmpool_buff_hdr",201,"off")=2448 + Set gtmtypes("shmpool_buff_hdr",201,"len")=8 + Set gtmtypes("shmpool_buff_hdr",201,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_busy_tn")=201 + Set gtmtypes("shmpool_buff_hdr",202,"name")="shmpool_buff_hdr.shadow_file_header.wrt_noblks_wrtn_tn" + Set gtmtypes("shmpool_buff_hdr",202,"off")=2456 + Set gtmtypes("shmpool_buff_hdr",202,"len")=8 + Set gtmtypes("shmpool_buff_hdr",202,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_noblks_wrtn_tn")=202 + Set gtmtypes("shmpool_buff_hdr",203,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec1_tn" + Set gtmtypes("shmpool_buff_hdr",203,"off")=2464 + Set gtmtypes("shmpool_buff_hdr",203,"len")=8 + Set gtmtypes("shmpool_buff_hdr",203,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec1_tn")=203 + Set gtmtypes("shmpool_buff_hdr",204,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec2_tn" + Set gtmtypes("shmpool_buff_hdr",204,"off")=2472 + Set gtmtypes("shmpool_buff_hdr",204,"len")=8 + Set gtmtypes("shmpool_buff_hdr",204,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec2_tn")=204 + Set gtmtypes("shmpool_buff_hdr",205,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec3_tn" + Set gtmtypes("shmpool_buff_hdr",205,"off")=2480 + Set gtmtypes("shmpool_buff_hdr",205,"len")=8 + Set gtmtypes("shmpool_buff_hdr",205,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec3_tn")=205 + Set gtmtypes("shmpool_buff_hdr",206,"name")="shmpool_buff_hdr.shadow_file_header.lost_block_recovery_tn" + Set gtmtypes("shmpool_buff_hdr",206,"off")=2488 + Set gtmtypes("shmpool_buff_hdr",206,"len")=8 + Set gtmtypes("shmpool_buff_hdr",206,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lost_block_recovery_tn")=206 + Set gtmtypes("shmpool_buff_hdr",207,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_onln_rlbk_tn" + Set gtmtypes("shmpool_buff_hdr",207,"off")=2496 + Set gtmtypes("shmpool_buff_hdr",207,"len")=8 + Set gtmtypes("shmpool_buff_hdr",207,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_onln_rlbk_tn")=207 + Set gtmtypes("shmpool_buff_hdr",208,"name")="shmpool_buff_hdr.shadow_file_header.stale_tn" + Set gtmtypes("shmpool_buff_hdr",208,"off")=2504 + Set gtmtypes("shmpool_buff_hdr",208,"len")=8 + Set gtmtypes("shmpool_buff_hdr",208,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_tn")=208 + Set gtmtypes("shmpool_buff_hdr",209,"name")="shmpool_buff_hdr.shadow_file_header.starved_tn" + Set gtmtypes("shmpool_buff_hdr",209,"off")=2512 + Set gtmtypes("shmpool_buff_hdr",209,"len")=8 + Set gtmtypes("shmpool_buff_hdr",209,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.starved_tn")=209 + Set gtmtypes("shmpool_buff_hdr",210,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_started_tn" + Set gtmtypes("shmpool_buff_hdr",210,"off")=2520 + Set gtmtypes("shmpool_buff_hdr",210,"len")=8 + Set gtmtypes("shmpool_buff_hdr",210,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_started_tn")=210 + Set gtmtypes("shmpool_buff_hdr",211,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_pop_tn" + Set gtmtypes("shmpool_buff_hdr",211,"off")=2528 + Set gtmtypes("shmpool_buff_hdr",211,"len")=8 + Set gtmtypes("shmpool_buff_hdr",211,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_pop_tn")=211 + Set gtmtypes("shmpool_buff_hdr",212,"name")="shmpool_buff_hdr.shadow_file_header.stale_process_defer_tn" + Set gtmtypes("shmpool_buff_hdr",212,"off")=2536 + Set gtmtypes("shmpool_buff_hdr",212,"len")=8 + Set gtmtypes("shmpool_buff_hdr",212,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_process_defer_tn")=212 + Set gtmtypes("shmpool_buff_hdr",213,"name")="shmpool_buff_hdr.shadow_file_header.stale_defer_processed_tn" + Set gtmtypes("shmpool_buff_hdr",213,"off")=2544 + Set gtmtypes("shmpool_buff_hdr",213,"len")=8 + Set gtmtypes("shmpool_buff_hdr",213,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_defer_processed_tn")=213 + Set gtmtypes("shmpool_buff_hdr",214,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",214,"off")=2552 + Set gtmtypes("shmpool_buff_hdr",214,"len")=8 + Set gtmtypes("shmpool_buff_hdr",214,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_tn")=214 + Set gtmtypes("shmpool_buff_hdr",215,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_loop_tn" + Set gtmtypes("shmpool_buff_hdr",215,"off")=2560 + Set gtmtypes("shmpool_buff_hdr",215,"len")=8 + Set gtmtypes("shmpool_buff_hdr",215,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_loop_tn")=215 + Set gtmtypes("shmpool_buff_hdr",216,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_retries_tn" + Set gtmtypes("shmpool_buff_hdr",216,"off")=2568 + Set gtmtypes("shmpool_buff_hdr",216,"len")=8 + Set gtmtypes("shmpool_buff_hdr",216,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_retries_tn")=216 + Set gtmtypes("shmpool_buff_hdr",217,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("shmpool_buff_hdr",217,"off")=2576 + Set gtmtypes("shmpool_buff_hdr",217,"len")=8 + Set gtmtypes("shmpool_buff_hdr",217,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn")=217 + Set gtmtypes("shmpool_buff_hdr",218,"name")="shmpool_buff_hdr.shadow_file_header.tp_crit_retries_tn" + Set gtmtypes("shmpool_buff_hdr",218,"off")=2584 + Set gtmtypes("shmpool_buff_hdr",218,"len")=8 + Set gtmtypes("shmpool_buff_hdr",218,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_crit_retries_tn")=218 + Set gtmtypes("shmpool_buff_hdr",219,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_flush_dirty_tn" + Set gtmtypes("shmpool_buff_hdr",219,"off")=2592 + Set gtmtypes("shmpool_buff_hdr",219,"len")=8 + Set gtmtypes("shmpool_buff_hdr",219,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_flush_dirty_tn")=219 + Set gtmtypes("shmpool_buff_hdr",220,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_rip_wait_tn" + Set gtmtypes("shmpool_buff_hdr",220,"off")=2600 + Set gtmtypes("shmpool_buff_hdr",220,"len")=8 + Set gtmtypes("shmpool_buff_hdr",220,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_rip_wait_tn")=220 + Set gtmtypes("shmpool_buff_hdr",221,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",221,"off")=2608 + Set gtmtypes("shmpool_buff_hdr",221,"len")=8 + Set gtmtypes("shmpool_buff_hdr",221,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_buf_owner_stuck_tn")=221 + Set gtmtypes("shmpool_buff_hdr",222,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_out_of_design_tn" + Set gtmtypes("shmpool_buff_hdr",222,"off")=2616 + Set gtmtypes("shmpool_buff_hdr",222,"len")=8 + Set gtmtypes("shmpool_buff_hdr",222,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_out_of_design_tn")=222 + Set gtmtypes("shmpool_buff_hdr",223,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_buf_owner_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",223,"off")=2624 + Set gtmtypes("shmpool_buff_hdr",223,"len")=8 + Set gtmtypes("shmpool_buff_hdr",223,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_buf_owner_stuck_tn")=223 + Set gtmtypes("shmpool_buff_hdr",224,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_out_of_design_tn" + Set gtmtypes("shmpool_buff_hdr",224,"off")=2632 + Set gtmtypes("shmpool_buff_hdr",224,"len")=8 + Set gtmtypes("shmpool_buff_hdr",224,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_out_of_design_tn")=224 + Set gtmtypes("shmpool_buff_hdr",225,"name")="shmpool_buff_hdr.shadow_file_header.bt_put_flush_dirty_tn" + Set gtmtypes("shmpool_buff_hdr",225,"off")=2640 + Set gtmtypes("shmpool_buff_hdr",225,"len")=8 + Set gtmtypes("shmpool_buff_hdr",225,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_put_flush_dirty_tn")=225 + Set gtmtypes("shmpool_buff_hdr",226,"name")="shmpool_buff_hdr.shadow_file_header.mlock_wakeups_tn" + Set gtmtypes("shmpool_buff_hdr",226,"off")=2648 + Set gtmtypes("shmpool_buff_hdr",226,"len")=8 + Set gtmtypes("shmpool_buff_hdr",226,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mlock_wakeups_tn")=226 + Set gtmtypes("shmpool_buff_hdr",227,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("shmpool_buff_hdr",227,"off")=2656 + Set gtmtypes("shmpool_buff_hdr",227,"len")=8 + Set gtmtypes("shmpool_buff_hdr",227,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_recover_invoked_tn")=227 + Set gtmtypes("shmpool_buff_hdr",228,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("shmpool_buff_hdr",228,"off")=2664 + Set gtmtypes("shmpool_buff_hdr",228,"len")=8 + Set gtmtypes("shmpool_buff_hdr",228,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_verify_passed_tn")=228 + Set gtmtypes("shmpool_buff_hdr",229,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("shmpool_buff_hdr",229,"off")=2672 + Set gtmtypes("shmpool_buff_hdr",229,"len")=8 + Set gtmtypes("shmpool_buff_hdr",229,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=229 + Set gtmtypes("shmpool_buff_hdr",230,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("shmpool_buff_hdr",230,"off")=2680 + Set gtmtypes("shmpool_buff_hdr",230,"len")=8 + Set gtmtypes("shmpool_buff_hdr",230,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=230 + Set gtmtypes("shmpool_buff_hdr",231,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("shmpool_buff_hdr",231,"off")=2688 + Set gtmtypes("shmpool_buff_hdr",231,"len")=8 + Set gtmtypes("shmpool_buff_hdr",231,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn")=231 + Set gtmtypes("shmpool_buff_hdr",232,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("shmpool_buff_hdr",232,"off")=2696 + Set gtmtypes("shmpool_buff_hdr",232,"len")=8 + Set gtmtypes("shmpool_buff_hdr",232,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn")=232 + Set gtmtypes("shmpool_buff_hdr",233,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_get_tn" + Set gtmtypes("shmpool_buff_hdr",233,"off")=2704 + Set gtmtypes("shmpool_buff_hdr",233,"len")=8 + Set gtmtypes("shmpool_buff_hdr",233,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_get_tn")=233 + Set gtmtypes("shmpool_buff_hdr",234,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("shmpool_buff_hdr",234,"off")=2712 + Set gtmtypes("shmpool_buff_hdr",234,"len")=8 + Set gtmtypes("shmpool_buff_hdr",234,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn")=234 + Set gtmtypes("shmpool_buff_hdr",235,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("shmpool_buff_hdr",235,"off")=2720 + Set gtmtypes("shmpool_buff_hdr",235,"len")=8 + Set gtmtypes("shmpool_buff_hdr",235,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_t1_tn")=235 + Set gtmtypes("shmpool_buff_hdr",236,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("shmpool_buff_hdr",236,"off")=2728 + Set gtmtypes("shmpool_buff_hdr",236,"len")=8 + Set gtmtypes("shmpool_buff_hdr",236,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_bitmap_tn")=236 + Set gtmtypes("shmpool_buff_hdr",237,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("shmpool_buff_hdr",237,"off")=2736 + Set gtmtypes("shmpool_buff_hdr",237,"len")=8 + Set gtmtypes("shmpool_buff_hdr",237,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn")=237 + Set gtmtypes("shmpool_buff_hdr",238,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("shmpool_buff_hdr",238,"off")=2744 + Set gtmtypes("shmpool_buff_hdr",238,"len")=8 + Set gtmtypes("shmpool_buff_hdr",238,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn")=238 + Set gtmtypes("shmpool_buff_hdr",239,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist_tn" + Set gtmtypes("shmpool_buff_hdr",239,"off")=2752 + Set gtmtypes("shmpool_buff_hdr",239,"len")=8 + Set gtmtypes("shmpool_buff_hdr",239,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist_tn")=239 + Set gtmtypes("shmpool_buff_hdr",240,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",240,"off")=2760 + Set gtmtypes("shmpool_buff_hdr",240,"len")=8 + Set gtmtypes("shmpool_buff_hdr",240,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn")=240 + Set gtmtypes("shmpool_buff_hdr",241,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",241,"off")=2768 + Set gtmtypes("shmpool_buff_hdr",241,"len")=8 + Set gtmtypes("shmpool_buff_hdr",241,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn")=241 + Set gtmtypes("shmpool_buff_hdr",242,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",242,"off")=2776 + Set gtmtypes("shmpool_buff_hdr",242,"len")=8 + Set gtmtypes("shmpool_buff_hdr",242,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn")=242 + Set gtmtypes("shmpool_buff_hdr",243,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",243,"off")=2784 + Set gtmtypes("shmpool_buff_hdr",243,"len")=8 + Set gtmtypes("shmpool_buff_hdr",243,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn")=243 + Set gtmtypes("shmpool_buff_hdr",244,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("shmpool_buff_hdr",244,"off")=2792 + Set gtmtypes("shmpool_buff_hdr",244,"len")=8 + Set gtmtypes("shmpool_buff_hdr",244,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_cwset_tn")=244 + Set gtmtypes("shmpool_buff_hdr",245,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("shmpool_buff_hdr",245,"off")=2800 + Set gtmtypes("shmpool_buff_hdr",245,"len")=8 + Set gtmtypes("shmpool_buff_hdr",245,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn")=245 + Set gtmtypes("shmpool_buff_hdr",246,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_get_too_many_loops_tn" + Set gtmtypes("shmpool_buff_hdr",246,"off")=2808 + Set gtmtypes("shmpool_buff_hdr",246,"len")=8 + Set gtmtypes("shmpool_buff_hdr",246,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_get_too_many_loops_tn")=246 + Set gtmtypes("shmpool_buff_hdr",247,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",247,"off")=2816 + Set gtmtypes("shmpool_buff_hdr",247,"len")=8 + Set gtmtypes("shmpool_buff_hdr",247,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn")=247 + Set gtmtypes("shmpool_buff_hdr",248,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",248,"off")=2824 + Set gtmtypes("shmpool_buff_hdr",248,"len")=8 + Set gtmtypes("shmpool_buff_hdr",248,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn")=248 + Set gtmtypes("shmpool_buff_hdr",249,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_lost_tn" + Set gtmtypes("shmpool_buff_hdr",249,"off")=2832 + Set gtmtypes("shmpool_buff_hdr",249,"len")=8 + Set gtmtypes("shmpool_buff_hdr",249,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_lost_tn")=249 + Set gtmtypes("shmpool_buff_hdr",250,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",250,"off")=2840 + Set gtmtypes("shmpool_buff_hdr",250,"len")=8 + Set gtmtypes("shmpool_buff_hdr",250,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_stuck_tn")=250 + Set gtmtypes("shmpool_buff_hdr",251,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_blocked_tn" + Set gtmtypes("shmpool_buff_hdr",251,"off")=2848 + Set gtmtypes("shmpool_buff_hdr",251,"len")=8 + Set gtmtypes("shmpool_buff_hdr",251,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_blocked_tn")=251 + Set gtmtypes("shmpool_buff_hdr",252,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsyncs_tn" + Set gtmtypes("shmpool_buff_hdr",252,"off")=2856 + Set gtmtypes("shmpool_buff_hdr",252,"len")=8 + Set gtmtypes("shmpool_buff_hdr",252,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsyncs_tn")=252 + Set gtmtypes("shmpool_buff_hdr",253,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_tries_tn" + Set gtmtypes("shmpool_buff_hdr",253,"off")=2864 + Set gtmtypes("shmpool_buff_hdr",253,"len")=8 + Set gtmtypes("shmpool_buff_hdr",253,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_tries_tn")=253 + Set gtmtypes("shmpool_buff_hdr",254,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_recovers_tn" + Set gtmtypes("shmpool_buff_hdr",254,"off")=2872 + Set gtmtypes("shmpool_buff_hdr",254,"len")=8 + Set gtmtypes("shmpool_buff_hdr",254,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_recovers_tn")=254 + Set gtmtypes("shmpool_buff_hdr",255,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_tn" + Set gtmtypes("shmpool_buff_hdr",255,"off")=2880 + Set gtmtypes("shmpool_buff_hdr",255,"len")=8 + Set gtmtypes("shmpool_buff_hdr",255,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_tn")=255 + Set gtmtypes("shmpool_buff_hdr",256,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_in_crit_tn" + Set gtmtypes("shmpool_buff_hdr",256,"off")=2888 + Set gtmtypes("shmpool_buff_hdr",256,"len")=8 + Set gtmtypes("shmpool_buff_hdr",256,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_in_crit_tn")=256 + Set gtmtypes("shmpool_buff_hdr",257,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_timers_tn" + Set gtmtypes("shmpool_buff_hdr",257,"off")=2896 + Set gtmtypes("shmpool_buff_hdr",257,"len")=8 + Set gtmtypes("shmpool_buff_hdr",257,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_timers_tn")=257 + Set gtmtypes("shmpool_buff_hdr",258,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_writes_tn" + Set gtmtypes("shmpool_buff_hdr",258,"off")=2904 + Set gtmtypes("shmpool_buff_hdr",258,"len")=8 + Set gtmtypes("shmpool_buff_hdr",258,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_writes_tn")=258 + Set gtmtypes("shmpool_buff_hdr",259,"name")="shmpool_buff_hdr.shadow_file_header.mutex_queue_full_tn" + Set gtmtypes("shmpool_buff_hdr",259,"off")=2912 + Set gtmtypes("shmpool_buff_hdr",259,"len")=8 + Set gtmtypes("shmpool_buff_hdr",259,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_queue_full_tn")=259 + Set gtmtypes("shmpool_buff_hdr",260,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bt_put_tn" + Set gtmtypes("shmpool_buff_hdr",260,"off")=2920 + Set gtmtypes("shmpool_buff_hdr",260,"len")=8 + Set gtmtypes("shmpool_buff_hdr",260,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bt_put_tn")=260 + Set gtmtypes("shmpool_buff_hdr",261,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mutex_salvage_tn" + Set gtmtypes("shmpool_buff_hdr",261,"off")=2928 + Set gtmtypes("shmpool_buff_hdr",261,"len")=8 + Set gtmtypes("shmpool_buff_hdr",261,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mutex_salvage_tn")=261 + Set gtmtypes("shmpool_buff_hdr",262,"name")="shmpool_buff_hdr.shadow_file_header.wcb_tp_grab_crit_tn" + Set gtmtypes("shmpool_buff_hdr",262,"off")=2936 + Set gtmtypes("shmpool_buff_hdr",262,"len")=8 + Set gtmtypes("shmpool_buff_hdr",262,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_tp_grab_crit_tn")=262 + Set gtmtypes("shmpool_buff_hdr",263,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",263,"off")=2944 + Set gtmtypes("shmpool_buff_hdr",263,"len")=8 + Set gtmtypes("shmpool_buff_hdr",263,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn")=263 + Set gtmtypes("shmpool_buff_hdr",264,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",264,"off")=2952 + Set gtmtypes("shmpool_buff_hdr",264,"len")=8 + Set gtmtypes("shmpool_buff_hdr",264,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_cr_invcr_tn")=264 + Set gtmtypes("shmpool_buff_hdr",265,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("shmpool_buff_hdr",265,"off")=2960 + Set gtmtypes("shmpool_buff_hdr",265,"len")=8 + Set gtmtypes("shmpool_buff_hdr",265,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_rip_wait_tn")=265 + Set gtmtypes("shmpool_buff_hdr",266,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("shmpool_buff_hdr",266,"off")=2968 + Set gtmtypes("shmpool_buff_hdr",266,"len")=8 + Set gtmtypes("shmpool_buff_hdr",266,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn")=266 + Set gtmtypes("shmpool_buff_hdr",267,"name")="shmpool_buff_hdr.shadow_file_header.wcb_gds_rundown_tn" + Set gtmtypes("shmpool_buff_hdr",267,"off")=2976 + Set gtmtypes("shmpool_buff_hdr",267,"len")=8 + Set gtmtypes("shmpool_buff_hdr",267,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_gds_rundown_tn")=267 + Set gtmtypes("shmpool_buff_hdr",268,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wcs_flu1_tn" + Set gtmtypes("shmpool_buff_hdr",268,"off")=2984 + Set gtmtypes("shmpool_buff_hdr",268,"len")=8 + Set gtmtypes("shmpool_buff_hdr",268,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wcs_flu1_tn")=268 + Set gtmtypes("shmpool_buff_hdr",269,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mu_back_tn" + Set gtmtypes("shmpool_buff_hdr",269,"off")=2992 + Set gtmtypes("shmpool_buff_hdr",269,"len")=8 + Set gtmtypes("shmpool_buff_hdr",269,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mu_back_tn")=269 + Set gtmtypes("shmpool_buff_hdr",270,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",270,"off")=3000 + Set gtmtypes("shmpool_buff_hdr",270,"len")=8 + Set gtmtypes("shmpool_buff_hdr",270,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn")=270 + Set gtmtypes("shmpool_buff_hdr",271,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("shmpool_buff_hdr",271,"off")=3008 + Set gtmtypes("shmpool_buff_hdr",271,"len")=8 + Set gtmtypes("shmpool_buff_hdr",271,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn")=271 + Set gtmtypes("shmpool_buff_hdr",272,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",272,"off")=3016 + Set gtmtypes("shmpool_buff_hdr",272,"len")=8 + Set gtmtypes("shmpool_buff_hdr",272,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_twin_stuck_tn")=272 + Set gtmtypes("shmpool_buff_hdr",273,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",273,"off")=3024 + Set gtmtypes("shmpool_buff_hdr",273,"len")=8 + Set gtmtypes("shmpool_buff_hdr",273,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_wrt_latch_stuck_tn")=273 + Set gtmtypes("shmpool_buff_hdr",274,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("shmpool_buff_hdr",274,"off")=3032 + Set gtmtypes("shmpool_buff_hdr",274,"len")=8 + Set gtmtypes("shmpool_buff_hdr",274,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_now_crit_tn")=274 + Set gtmtypes("shmpool_buff_hdr",275,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("shmpool_buff_hdr",275,"off")=3040 + Set gtmtypes("shmpool_buff_hdr",275,"len")=8 + Set gtmtypes("shmpool_buff_hdr",275,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn")=275 + Set gtmtypes("shmpool_buff_hdr",276,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("shmpool_buff_hdr",276,"off")=3048 + Set gtmtypes("shmpool_buff_hdr",276,"len")=8 + Set gtmtypes("shmpool_buff_hdr",276,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn")=276 + Set gtmtypes("shmpool_buff_hdr",277,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("shmpool_buff_hdr",277,"off")=3056 + Set gtmtypes("shmpool_buff_hdr",277,"len")=8 + Set gtmtypes("shmpool_buff_hdr",277,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn")=277 + Set gtmtypes("shmpool_buff_hdr",278,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("shmpool_buff_hdr",278,"off")=3064 + Set gtmtypes("shmpool_buff_hdr",278,"len")=8 + Set gtmtypes("shmpool_buff_hdr",278,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn")=278 + Set gtmtypes("shmpool_buff_hdr",279,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("shmpool_buff_hdr",279,"off")=3072 + Set gtmtypes("shmpool_buff_hdr",279,"len")=8 + Set gtmtypes("shmpool_buff_hdr",279,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn")=279 + Set gtmtypes("shmpool_buff_hdr",280,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("shmpool_buff_hdr",280,"off")=3080 + Set gtmtypes("shmpool_buff_hdr",280,"len")=8 + Set gtmtypes("shmpool_buff_hdr",280,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn")=280 + Set gtmtypes("shmpool_buff_hdr",281,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("shmpool_buff_hdr",281,"off")=3088 + Set gtmtypes("shmpool_buff_hdr",281,"len")=8 + Set gtmtypes("shmpool_buff_hdr",281,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn")=281 + Set gtmtypes("shmpool_buff_hdr",282,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("shmpool_buff_hdr",282,"off")=3096 + Set gtmtypes("shmpool_buff_hdr",282,"len")=8 + Set gtmtypes("shmpool_buff_hdr",282,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn")=282 + Set gtmtypes("shmpool_buff_hdr",283,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("shmpool_buff_hdr",283,"off")=3104 + Set gtmtypes("shmpool_buff_hdr",283,"len")=8 + Set gtmtypes("shmpool_buff_hdr",283,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn")=283 + Set gtmtypes("shmpool_buff_hdr",284,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("shmpool_buff_hdr",284,"off")=3112 + Set gtmtypes("shmpool_buff_hdr",284,"len")=8 + Set gtmtypes("shmpool_buff_hdr",284,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn")=284 + Set gtmtypes("shmpool_buff_hdr",285,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_bt_get_tn" + Set gtmtypes("shmpool_buff_hdr",285,"off")=3120 + Set gtmtypes("shmpool_buff_hdr",285,"len")=8 + Set gtmtypes("shmpool_buff_hdr",285,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_bt_get_tn")=285 + Set gtmtypes("shmpool_buff_hdr",286,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("shmpool_buff_hdr",286,"off")=3128 + Set gtmtypes("shmpool_buff_hdr",286,"len")=8 + Set gtmtypes("shmpool_buff_hdr",286,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn")=286 + Set gtmtypes("shmpool_buff_hdr",287,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",287,"off")=3136 + Set gtmtypes("shmpool_buff_hdr",287,"len")=8 + Set gtmtypes("shmpool_buff_hdr",287,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail1_tn")=287 + Set gtmtypes("shmpool_buff_hdr",288,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",288,"off")=3144 + Set gtmtypes("shmpool_buff_hdr",288,"len")=8 + Set gtmtypes("shmpool_buff_hdr",288,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail2_tn")=288 + Set gtmtypes("shmpool_buff_hdr",289,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",289,"off")=3152 + Set gtmtypes("shmpool_buff_hdr",289,"len")=8 + Set gtmtypes("shmpool_buff_hdr",289,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail1_tn")=289 + Set gtmtypes("shmpool_buff_hdr",290,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",290,"off")=3160 + Set gtmtypes("shmpool_buff_hdr",290,"len")=8 + Set gtmtypes("shmpool_buff_hdr",290,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail2_tn")=290 + Set gtmtypes("shmpool_buff_hdr",291,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail3_tn" + Set gtmtypes("shmpool_buff_hdr",291,"off")=3168 + Set gtmtypes("shmpool_buff_hdr",291,"len")=8 + Set gtmtypes("shmpool_buff_hdr",291,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail3_tn")=291 + Set gtmtypes("shmpool_buff_hdr",292,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail4_tn" + Set gtmtypes("shmpool_buff_hdr",292,"off")=3176 + Set gtmtypes("shmpool_buff_hdr",292,"len")=8 + Set gtmtypes("shmpool_buff_hdr",292,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail4_tn")=292 + Set gtmtypes("shmpool_buff_hdr",293,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",293,"off")=3184 + Set gtmtypes("shmpool_buff_hdr",293,"len")=8 + Set gtmtypes("shmpool_buff_hdr",293,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail1_tn")=293 + Set gtmtypes("shmpool_buff_hdr",294,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",294,"off")=3192 + Set gtmtypes("shmpool_buff_hdr",294,"len")=8 + Set gtmtypes("shmpool_buff_hdr",294,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail2_tn")=294 + Set gtmtypes("shmpool_buff_hdr",295,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail3_tn" + Set gtmtypes("shmpool_buff_hdr",295,"off")=3200 + Set gtmtypes("shmpool_buff_hdr",295,"len")=8 + Set gtmtypes("shmpool_buff_hdr",295,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail3_tn")=295 + Set gtmtypes("shmpool_buff_hdr",296,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail4_tn" + Set gtmtypes("shmpool_buff_hdr",296,"off")=3208 + Set gtmtypes("shmpool_buff_hdr",296,"len")=8 + Set gtmtypes("shmpool_buff_hdr",296,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail4_tn")=296 + Set gtmtypes("shmpool_buff_hdr",297,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("shmpool_buff_hdr",297,"off")=3216 + Set gtmtypes("shmpool_buff_hdr",297,"len")=8 + Set gtmtypes("shmpool_buff_hdr",297,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn")=297 + Set gtmtypes("shmpool_buff_hdr",298,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("shmpool_buff_hdr",298,"off")=3224 + Set gtmtypes("shmpool_buff_hdr",298,"len")=8 + Set gtmtypes("shmpool_buff_hdr",298,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn")=298 + Set gtmtypes("shmpool_buff_hdr",299,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("shmpool_buff_hdr",299,"off")=3232 + Set gtmtypes("shmpool_buff_hdr",299,"len")=8 + Set gtmtypes("shmpool_buff_hdr",299,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn")=299 + Set gtmtypes("shmpool_buff_hdr",300,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_syncio_tn" + Set gtmtypes("shmpool_buff_hdr",300,"off")=3240 + Set gtmtypes("shmpool_buff_hdr",300,"len")=8 + Set gtmtypes("shmpool_buff_hdr",300,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_syncio_tn")=300 + Set gtmtypes("shmpool_buff_hdr",301,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_asyncio_tn" + Set gtmtypes("shmpool_buff_hdr",301,"off")=3248 + Set gtmtypes("shmpool_buff_hdr",301,"len")=8 + Set gtmtypes("shmpool_buff_hdr",301,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_asyncio_tn")=301 + Set gtmtypes("shmpool_buff_hdr",302,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_refmt_harvests_tn" + Set gtmtypes("shmpool_buff_hdr",302,"off")=3256 + Set gtmtypes("shmpool_buff_hdr",302,"len")=8 + Set gtmtypes("shmpool_buff_hdr",302,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_refmt_harvests_tn")=302 + Set gtmtypes("shmpool_buff_hdr",303,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_recovery_tn" + Set gtmtypes("shmpool_buff_hdr",303,"off")=3264 + Set gtmtypes("shmpool_buff_hdr",303,"len")=8 + Set gtmtypes("shmpool_buff_hdr",303,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_recovery_tn")=303 + Set gtmtypes("shmpool_buff_hdr",304,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_blkd_by_sdc_tn" + Set gtmtypes("shmpool_buff_hdr",304,"off")=3272 + Set gtmtypes("shmpool_buff_hdr",304,"len")=8 + Set gtmtypes("shmpool_buff_hdr",304,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_blkd_by_sdc_tn")=304 + Set gtmtypes("shmpool_buff_hdr",305,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_alloc_bbflush_tn" + Set gtmtypes("shmpool_buff_hdr",305,"off")=3280 + Set gtmtypes("shmpool_buff_hdr",305,"len")=8 + Set gtmtypes("shmpool_buff_hdr",305,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_alloc_bbflush_tn")=305 + Set gtmtypes("shmpool_buff_hdr",306,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("shmpool_buff_hdr",306,"off")=3288 + Set gtmtypes("shmpool_buff_hdr",306,"len")=8 + Set gtmtypes("shmpool_buff_hdr",306,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_replaced_tn")=306 + Set gtmtypes("shmpool_buff_hdr",307,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("shmpool_buff_hdr",307,"off")=3296 + Set gtmtypes("shmpool_buff_hdr",307,"len")=8 + Set gtmtypes("shmpool_buff_hdr",307,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_io_complete_tn")=307 + Set gtmtypes("shmpool_buff_hdr",308,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_kept_tn" + Set gtmtypes("shmpool_buff_hdr",308,"off")=3304 + Set gtmtypes("shmpool_buff_hdr",308,"len")=8 + Set gtmtypes("shmpool_buff_hdr",308,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_kept_tn")=308 + Set gtmtypes("shmpool_buff_hdr",309,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_ignored_tn" + Set gtmtypes("shmpool_buff_hdr",309,"off")=3312 + Set gtmtypes("shmpool_buff_hdr",309,"len")=8 + Set gtmtypes("shmpool_buff_hdr",309,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_ignored_tn")=309 + Set gtmtypes("shmpool_buff_hdr",310,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("shmpool_buff_hdr",310,"off")=3320 + Set gtmtypes("shmpool_buff_hdr",310,"len")=8 + Set gtmtypes("shmpool_buff_hdr",310,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_freed_tn")=310 + Set gtmtypes("shmpool_buff_hdr",311,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("shmpool_buff_hdr",311,"off")=3328 + Set gtmtypes("shmpool_buff_hdr",311,"len")=8 + Set gtmtypes("shmpool_buff_hdr",311,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_kept_tn")=311 + Set gtmtypes("shmpool_buff_hdr",312,"name")="shmpool_buff_hdr.shadow_file_header.active_lvl_trigger_tn" + Set gtmtypes("shmpool_buff_hdr",312,"off")=3336 + Set gtmtypes("shmpool_buff_hdr",312,"len")=8 + Set gtmtypes("shmpool_buff_hdr",312,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.active_lvl_trigger_tn")=312 + Set gtmtypes("shmpool_buff_hdr",313,"name")="shmpool_buff_hdr.shadow_file_header.new_buff_tn" + Set gtmtypes("shmpool_buff_hdr",313,"off")=3344 + Set gtmtypes("shmpool_buff_hdr",313,"len")=8 + Set gtmtypes("shmpool_buff_hdr",313,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.new_buff_tn")=313 + Set gtmtypes("shmpool_buff_hdr",314,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("shmpool_buff_hdr",314,"off")=3352 + Set gtmtypes("shmpool_buff_hdr",314,"len")=8 + Set gtmtypes("shmpool_buff_hdr",314,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_in_crit_tn")=314 + Set gtmtypes("shmpool_buff_hdr",315,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("shmpool_buff_hdr",315,"off")=3360 + Set gtmtypes("shmpool_buff_hdr",315,"len")=8 + Set gtmtypes("shmpool_buff_hdr",315,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_no_crit_tn")=315 + Set gtmtypes("shmpool_buff_hdr",316,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("shmpool_buff_hdr",316,"off")=3368 + Set gtmtypes("shmpool_buff_hdr",316,"len")=8 + Set gtmtypes("shmpool_buff_hdr",316,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_pidcnt_tn")=316 + Set gtmtypes("shmpool_buff_hdr",317,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("shmpool_buff_hdr",317,"off")=3376 + Set gtmtypes("shmpool_buff_hdr",317,"len")=8 + Set gtmtypes("shmpool_buff_hdr",317,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_intend_wait_tn")=317 + Set gtmtypes("shmpool_buff_hdr",318,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("shmpool_buff_hdr",318,"off")=3384 + Set gtmtypes("shmpool_buff_hdr",318,"len")=8 + Set gtmtypes("shmpool_buff_hdr",318,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn")=318 + Set gtmtypes("shmpool_buff_hdr",319,"name")="shmpool_buff_hdr.shadow_file_header.wcb_phase2_commit_wait_tn" + Set gtmtypes("shmpool_buff_hdr",319,"off")=3392 + Set gtmtypes("shmpool_buff_hdr",319,"len")=8 + Set gtmtypes("shmpool_buff_hdr",319,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_phase2_commit_wait_tn")=319 + Set gtmtypes("shmpool_buff_hdr",320,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_calls_tn" + Set gtmtypes("shmpool_buff_hdr",320,"off")=3400 + Set gtmtypes("shmpool_buff_hdr",320,"len")=8 + Set gtmtypes("shmpool_buff_hdr",320,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_calls_tn")=320 + Set gtmtypes("shmpool_buff_hdr",321,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rip_tn" + Set gtmtypes("shmpool_buff_hdr",321,"off")=3408 + Set gtmtypes("shmpool_buff_hdr",321,"len")=8 + Set gtmtypes("shmpool_buff_hdr",321,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rip_tn")=321 + Set gtmtypes("shmpool_buff_hdr",322,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_in_tend_tn" + Set gtmtypes("shmpool_buff_hdr",322,"off")=3416 + Set gtmtypes("shmpool_buff_hdr",322,"len")=8 + Set gtmtypes("shmpool_buff_hdr",322,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_in_tend_tn")=322 + Set gtmtypes("shmpool_buff_hdr",323,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_search_blk_tn" + Set gtmtypes("shmpool_buff_hdr",323,"off")=3424 + Set gtmtypes("shmpool_buff_hdr",323,"len")=8 + Set gtmtypes("shmpool_buff_hdr",323,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_search_blk_tn")=323 + Set gtmtypes("shmpool_buff_hdr",324,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_new_rec_tn" + Set gtmtypes("shmpool_buff_hdr",324,"off")=3432 + Set gtmtypes("shmpool_buff_hdr",324,"len")=8 + Set gtmtypes("shmpool_buff_hdr",324,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_new_rec_tn")=324 + Set gtmtypes("shmpool_buff_hdr",325,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_size_tn" + Set gtmtypes("shmpool_buff_hdr",325,"off")=3440 + Set gtmtypes("shmpool_buff_hdr",325,"len")=8 + Set gtmtypes("shmpool_buff_hdr",325,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_size_tn")=325 + Set gtmtypes("shmpool_buff_hdr",326,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("shmpool_buff_hdr",326,"off")=3448 + Set gtmtypes("shmpool_buff_hdr",326,"len")=8 + Set gtmtypes("shmpool_buff_hdr",326,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_cmpc_tn")=326 + Set gtmtypes("shmpool_buff_hdr",327,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_fini_tn" + Set gtmtypes("shmpool_buff_hdr",327,"off")=3456 + Set gtmtypes("shmpool_buff_hdr",327,"len")=8 + Set gtmtypes("shmpool_buff_hdr",327,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_fini_tn")=327 + Set gtmtypes("shmpool_buff_hdr",328,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_split_tn" + Set gtmtypes("shmpool_buff_hdr",328,"off")=3464 + Set gtmtypes("shmpool_buff_hdr",328,"len")=8 + Set gtmtypes("shmpool_buff_hdr",328,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_split_tn")=328 + Set gtmtypes("shmpool_buff_hdr",329,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_cnt_tn" + Set gtmtypes("shmpool_buff_hdr",329,"off")=3472 + Set gtmtypes("shmpool_buff_hdr",329,"len")=8 + Set gtmtypes("shmpool_buff_hdr",329,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_cnt_tn")=329 + Set gtmtypes("shmpool_buff_hdr",330,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_nblks_tn" + Set gtmtypes("shmpool_buff_hdr",330,"off")=3480 + Set gtmtypes("shmpool_buff_hdr",330,"len")=8 + Set gtmtypes("shmpool_buff_hdr",330,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_nblks_tn")=330 + Set gtmtypes("shmpool_buff_hdr",331,"name")="shmpool_buff_hdr.shadow_file_header.bg_trc_rec_tn_filler" + Set gtmtypes("shmpool_buff_hdr",331,"off")=3488 + Set gtmtypes("shmpool_buff_hdr",331,"len")=112 + Set gtmtypes("shmpool_buff_hdr",331,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bg_trc_rec_tn_filler")=331 + Set gtmtypes("shmpool_buff_hdr",332,"name")="shmpool_buff_hdr.shadow_file_header.total_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",332,"off")=3600 + Set gtmtypes("shmpool_buff_hdr",332,"len")=4 + Set gtmtypes("shmpool_buff_hdr",332,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.total_buffer_flush_cntr")=332 + Set gtmtypes("shmpool_buff_hdr",333,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",333,"off")=3604 + Set gtmtypes("shmpool_buff_hdr",333,"len")=4 + Set gtmtypes("shmpool_buff_hdr",333,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_cntr")=333 + Set gtmtypes("shmpool_buff_hdr",334,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_loop_cntr" + Set gtmtypes("shmpool_buff_hdr",334,"off")=3608 + Set gtmtypes("shmpool_buff_hdr",334,"len")=4 + Set gtmtypes("shmpool_buff_hdr",334,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_loop_cntr")=334 + Set gtmtypes("shmpool_buff_hdr",335,"name")="shmpool_buff_hdr.shadow_file_header.wrt_calls_cntr" + Set gtmtypes("shmpool_buff_hdr",335,"off")=3612 + Set gtmtypes("shmpool_buff_hdr",335,"len")=4 + Set gtmtypes("shmpool_buff_hdr",335,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_calls_cntr")=335 + Set gtmtypes("shmpool_buff_hdr",336,"name")="shmpool_buff_hdr.shadow_file_header.wrt_count_cntr" + Set gtmtypes("shmpool_buff_hdr",336,"off")=3616 + Set gtmtypes("shmpool_buff_hdr",336,"len")=4 + Set gtmtypes("shmpool_buff_hdr",336,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_count_cntr")=336 + Set gtmtypes("shmpool_buff_hdr",337,"name")="shmpool_buff_hdr.shadow_file_header.wrt_blocked_cntr" + Set gtmtypes("shmpool_buff_hdr",337,"off")=3620 + Set gtmtypes("shmpool_buff_hdr",337,"len")=4 + Set gtmtypes("shmpool_buff_hdr",337,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_blocked_cntr")=337 + Set gtmtypes("shmpool_buff_hdr",338,"name")="shmpool_buff_hdr.shadow_file_header.wrt_busy_cntr" + Set gtmtypes("shmpool_buff_hdr",338,"off")=3624 + Set gtmtypes("shmpool_buff_hdr",338,"len")=4 + Set gtmtypes("shmpool_buff_hdr",338,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_busy_cntr")=338 + Set gtmtypes("shmpool_buff_hdr",339,"name")="shmpool_buff_hdr.shadow_file_header.wrt_noblks_wrtn_cntr" + Set gtmtypes("shmpool_buff_hdr",339,"off")=3628 + Set gtmtypes("shmpool_buff_hdr",339,"len")=4 + Set gtmtypes("shmpool_buff_hdr",339,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_noblks_wrtn_cntr")=339 + Set gtmtypes("shmpool_buff_hdr",340,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec1_cntr" + Set gtmtypes("shmpool_buff_hdr",340,"off")=3632 + Set gtmtypes("shmpool_buff_hdr",340,"len")=4 + Set gtmtypes("shmpool_buff_hdr",340,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec1_cntr")=340 + Set gtmtypes("shmpool_buff_hdr",341,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec2_cntr" + Set gtmtypes("shmpool_buff_hdr",341,"off")=3636 + Set gtmtypes("shmpool_buff_hdr",341,"len")=4 + Set gtmtypes("shmpool_buff_hdr",341,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec2_cntr")=341 + Set gtmtypes("shmpool_buff_hdr",342,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec3_cntr" + Set gtmtypes("shmpool_buff_hdr",342,"off")=3640 + Set gtmtypes("shmpool_buff_hdr",342,"len")=4 + Set gtmtypes("shmpool_buff_hdr",342,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec3_cntr")=342 + Set gtmtypes("shmpool_buff_hdr",343,"name")="shmpool_buff_hdr.shadow_file_header.lost_block_recovery_cntr" + Set gtmtypes("shmpool_buff_hdr",343,"off")=3644 + Set gtmtypes("shmpool_buff_hdr",343,"len")=4 + Set gtmtypes("shmpool_buff_hdr",343,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lost_block_recovery_cntr")=343 + Set gtmtypes("shmpool_buff_hdr",344,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("shmpool_buff_hdr",344,"off")=3648 + Set gtmtypes("shmpool_buff_hdr",344,"len")=4 + Set gtmtypes("shmpool_buff_hdr",344,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_onln_rlbk_cntr")=344 + Set gtmtypes("shmpool_buff_hdr",345,"name")="shmpool_buff_hdr.shadow_file_header.stale_cntr" + Set gtmtypes("shmpool_buff_hdr",345,"off")=3652 + Set gtmtypes("shmpool_buff_hdr",345,"len")=4 + Set gtmtypes("shmpool_buff_hdr",345,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_cntr")=345 + Set gtmtypes("shmpool_buff_hdr",346,"name")="shmpool_buff_hdr.shadow_file_header.starved_cntr" + Set gtmtypes("shmpool_buff_hdr",346,"off")=3656 + Set gtmtypes("shmpool_buff_hdr",346,"len")=4 + Set gtmtypes("shmpool_buff_hdr",346,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.starved_cntr")=346 + Set gtmtypes("shmpool_buff_hdr",347,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_started_cntr" + Set gtmtypes("shmpool_buff_hdr",347,"off")=3660 + Set gtmtypes("shmpool_buff_hdr",347,"len")=4 + Set gtmtypes("shmpool_buff_hdr",347,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_started_cntr")=347 + Set gtmtypes("shmpool_buff_hdr",348,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_pop_cntr" + Set gtmtypes("shmpool_buff_hdr",348,"off")=3664 + Set gtmtypes("shmpool_buff_hdr",348,"len")=4 + Set gtmtypes("shmpool_buff_hdr",348,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_pop_cntr")=348 + Set gtmtypes("shmpool_buff_hdr",349,"name")="shmpool_buff_hdr.shadow_file_header.stale_process_defer_cntr" + Set gtmtypes("shmpool_buff_hdr",349,"off")=3668 + Set gtmtypes("shmpool_buff_hdr",349,"len")=4 + Set gtmtypes("shmpool_buff_hdr",349,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_process_defer_cntr")=349 + Set gtmtypes("shmpool_buff_hdr",350,"name")="shmpool_buff_hdr.shadow_file_header.stale_defer_processed_cntr" + Set gtmtypes("shmpool_buff_hdr",350,"off")=3672 + Set gtmtypes("shmpool_buff_hdr",350,"len")=4 + Set gtmtypes("shmpool_buff_hdr",350,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_defer_processed_cntr")=350 + Set gtmtypes("shmpool_buff_hdr",351,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",351,"off")=3676 + Set gtmtypes("shmpool_buff_hdr",351,"len")=4 + Set gtmtypes("shmpool_buff_hdr",351,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_cntr")=351 + Set gtmtypes("shmpool_buff_hdr",352,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("shmpool_buff_hdr",352,"off")=3680 + Set gtmtypes("shmpool_buff_hdr",352,"len")=4 + Set gtmtypes("shmpool_buff_hdr",352,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_loop_cntr")=352 + Set gtmtypes("shmpool_buff_hdr",353,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("shmpool_buff_hdr",353,"off")=3684 + Set gtmtypes("shmpool_buff_hdr",353,"len")=4 + Set gtmtypes("shmpool_buff_hdr",353,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_retries_cntr")=353 + Set gtmtypes("shmpool_buff_hdr",354,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("shmpool_buff_hdr",354,"off")=3688 + Set gtmtypes("shmpool_buff_hdr",354,"len")=4 + Set gtmtypes("shmpool_buff_hdr",354,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr")=354 + Set gtmtypes("shmpool_buff_hdr",355,"name")="shmpool_buff_hdr.shadow_file_header.tp_crit_retries_cntr" + Set gtmtypes("shmpool_buff_hdr",355,"off")=3692 + Set gtmtypes("shmpool_buff_hdr",355,"len")=4 + Set gtmtypes("shmpool_buff_hdr",355,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_crit_retries_cntr")=355 + Set gtmtypes("shmpool_buff_hdr",356,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("shmpool_buff_hdr",356,"off")=3696 + Set gtmtypes("shmpool_buff_hdr",356,"len")=4 + Set gtmtypes("shmpool_buff_hdr",356,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_flush_dirty_cntr")=356 + Set gtmtypes("shmpool_buff_hdr",357,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_rip_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",357,"off")=3700 + Set gtmtypes("shmpool_buff_hdr",357,"len")=4 + Set gtmtypes("shmpool_buff_hdr",357,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_rip_wait_cntr")=357 + Set gtmtypes("shmpool_buff_hdr",358,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",358,"off")=3704 + Set gtmtypes("shmpool_buff_hdr",358,"len")=4 + Set gtmtypes("shmpool_buff_hdr",358,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_buf_owner_stuck_cntr")=358 + Set gtmtypes("shmpool_buff_hdr",359,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_out_of_design_cntr" + Set gtmtypes("shmpool_buff_hdr",359,"off")=3708 + Set gtmtypes("shmpool_buff_hdr",359,"len")=4 + Set gtmtypes("shmpool_buff_hdr",359,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_out_of_design_cntr")=359 + Set gtmtypes("shmpool_buff_hdr",360,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",360,"off")=3712 + Set gtmtypes("shmpool_buff_hdr",360,"len")=4 + Set gtmtypes("shmpool_buff_hdr",360,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_buf_owner_stuck_cntr")=360 + Set gtmtypes("shmpool_buff_hdr",361,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_out_of_design_cntr" + Set gtmtypes("shmpool_buff_hdr",361,"off")=3716 + Set gtmtypes("shmpool_buff_hdr",361,"len")=4 + Set gtmtypes("shmpool_buff_hdr",361,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_out_of_design_cntr")=361 + Set gtmtypes("shmpool_buff_hdr",362,"name")="shmpool_buff_hdr.shadow_file_header.bt_put_flush_dirty_cntr" + Set gtmtypes("shmpool_buff_hdr",362,"off")=3720 + Set gtmtypes("shmpool_buff_hdr",362,"len")=4 + Set gtmtypes("shmpool_buff_hdr",362,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_put_flush_dirty_cntr")=362 + Set gtmtypes("shmpool_buff_hdr",363,"name")="shmpool_buff_hdr.shadow_file_header.mlock_wakeups_cntr" + Set gtmtypes("shmpool_buff_hdr",363,"off")=3724 + Set gtmtypes("shmpool_buff_hdr",363,"len")=4 + Set gtmtypes("shmpool_buff_hdr",363,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mlock_wakeups_cntr")=363 + Set gtmtypes("shmpool_buff_hdr",364,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("shmpool_buff_hdr",364,"off")=3728 + Set gtmtypes("shmpool_buff_hdr",364,"len")=4 + Set gtmtypes("shmpool_buff_hdr",364,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_recover_invoked_cntr")=364 + Set gtmtypes("shmpool_buff_hdr",365,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("shmpool_buff_hdr",365,"off")=3732 + Set gtmtypes("shmpool_buff_hdr",365,"len")=4 + Set gtmtypes("shmpool_buff_hdr",365,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_verify_passed_cntr")=365 + Set gtmtypes("shmpool_buff_hdr",366,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",366,"off")=3736 + Set gtmtypes("shmpool_buff_hdr",366,"len")=4 + Set gtmtypes("shmpool_buff_hdr",366,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=366 + Set gtmtypes("shmpool_buff_hdr",367,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",367,"off")=3740 + Set gtmtypes("shmpool_buff_hdr",367,"len")=4 + Set gtmtypes("shmpool_buff_hdr",367,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=367 + Set gtmtypes("shmpool_buff_hdr",368,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("shmpool_buff_hdr",368,"off")=3744 + Set gtmtypes("shmpool_buff_hdr",368,"len")=4 + Set gtmtypes("shmpool_buff_hdr",368,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr")=368 + Set gtmtypes("shmpool_buff_hdr",369,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("shmpool_buff_hdr",369,"off")=3748 + Set gtmtypes("shmpool_buff_hdr",369,"len")=4 + Set gtmtypes("shmpool_buff_hdr",369,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=369 + Set gtmtypes("shmpool_buff_hdr",370,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_get_cntr" + Set gtmtypes("shmpool_buff_hdr",370,"off")=3752 + Set gtmtypes("shmpool_buff_hdr",370,"len")=4 + Set gtmtypes("shmpool_buff_hdr",370,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_get_cntr")=370 + Set gtmtypes("shmpool_buff_hdr",371,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("shmpool_buff_hdr",371,"off")=3756 + Set gtmtypes("shmpool_buff_hdr",371,"len")=4 + Set gtmtypes("shmpool_buff_hdr",371,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr")=371 + Set gtmtypes("shmpool_buff_hdr",372,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("shmpool_buff_hdr",372,"off")=3760 + Set gtmtypes("shmpool_buff_hdr",372,"len")=4 + Set gtmtypes("shmpool_buff_hdr",372,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_t1_cntr")=372 + Set gtmtypes("shmpool_buff_hdr",373,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("shmpool_buff_hdr",373,"off")=3764 + Set gtmtypes("shmpool_buff_hdr",373,"len")=4 + Set gtmtypes("shmpool_buff_hdr",373,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_bitmap_cntr")=373 + Set gtmtypes("shmpool_buff_hdr",374,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("shmpool_buff_hdr",374,"off")=3768 + Set gtmtypes("shmpool_buff_hdr",374,"len")=4 + Set gtmtypes("shmpool_buff_hdr",374,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr")=374 + Set gtmtypes("shmpool_buff_hdr",375,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("shmpool_buff_hdr",375,"off")=3772 + Set gtmtypes("shmpool_buff_hdr",375,"len")=4 + Set gtmtypes("shmpool_buff_hdr",375,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr")=375 + Set gtmtypes("shmpool_buff_hdr",376,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist_cntr" + Set gtmtypes("shmpool_buff_hdr",376,"off")=3776 + Set gtmtypes("shmpool_buff_hdr",376,"len")=4 + Set gtmtypes("shmpool_buff_hdr",376,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist_cntr")=376 + Set gtmtypes("shmpool_buff_hdr",377,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",377,"off")=3780 + Set gtmtypes("shmpool_buff_hdr",377,"len")=4 + Set gtmtypes("shmpool_buff_hdr",377,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr")=377 + Set gtmtypes("shmpool_buff_hdr",378,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",378,"off")=3784 + Set gtmtypes("shmpool_buff_hdr",378,"len")=4 + Set gtmtypes("shmpool_buff_hdr",378,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr")=378 + Set gtmtypes("shmpool_buff_hdr",379,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",379,"off")=3788 + Set gtmtypes("shmpool_buff_hdr",379,"len")=4 + Set gtmtypes("shmpool_buff_hdr",379,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr")=379 + Set gtmtypes("shmpool_buff_hdr",380,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",380,"off")=3792 + Set gtmtypes("shmpool_buff_hdr",380,"len")=4 + Set gtmtypes("shmpool_buff_hdr",380,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr")=380 + Set gtmtypes("shmpool_buff_hdr",381,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("shmpool_buff_hdr",381,"off")=3796 + Set gtmtypes("shmpool_buff_hdr",381,"len")=4 + Set gtmtypes("shmpool_buff_hdr",381,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr")=381 + Set gtmtypes("shmpool_buff_hdr",382,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("shmpool_buff_hdr",382,"off")=3800 + Set gtmtypes("shmpool_buff_hdr",382,"len")=4 + Set gtmtypes("shmpool_buff_hdr",382,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr")=382 + Set gtmtypes("shmpool_buff_hdr",383,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_get_too_many_loops_cntr" + Set gtmtypes("shmpool_buff_hdr",383,"off")=3804 + Set gtmtypes("shmpool_buff_hdr",383,"len")=4 + Set gtmtypes("shmpool_buff_hdr",383,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_get_too_many_loops_cntr")=383 + Set gtmtypes("shmpool_buff_hdr",384,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",384,"off")=3808 + Set gtmtypes("shmpool_buff_hdr",384,"len")=4 + Set gtmtypes("shmpool_buff_hdr",384,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr")=384 + Set gtmtypes("shmpool_buff_hdr",385,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",385,"off")=3812 + Set gtmtypes("shmpool_buff_hdr",385,"len")=4 + Set gtmtypes("shmpool_buff_hdr",385,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr")=385 + Set gtmtypes("shmpool_buff_hdr",386,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_lost_cntr" + Set gtmtypes("shmpool_buff_hdr",386,"off")=3816 + Set gtmtypes("shmpool_buff_hdr",386,"len")=4 + Set gtmtypes("shmpool_buff_hdr",386,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_lost_cntr")=386 + Set gtmtypes("shmpool_buff_hdr",387,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",387,"off")=3820 + Set gtmtypes("shmpool_buff_hdr",387,"len")=4 + Set gtmtypes("shmpool_buff_hdr",387,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_stuck_cntr")=387 + Set gtmtypes("shmpool_buff_hdr",388,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("shmpool_buff_hdr",388,"off")=3824 + Set gtmtypes("shmpool_buff_hdr",388,"len")=4 + Set gtmtypes("shmpool_buff_hdr",388,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_blocked_cntr")=388 + Set gtmtypes("shmpool_buff_hdr",389,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsyncs_cntr" + Set gtmtypes("shmpool_buff_hdr",389,"off")=3828 + Set gtmtypes("shmpool_buff_hdr",389,"len")=4 + Set gtmtypes("shmpool_buff_hdr",389,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsyncs_cntr")=389 + Set gtmtypes("shmpool_buff_hdr",390,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_tries_cntr" + Set gtmtypes("shmpool_buff_hdr",390,"off")=3832 + Set gtmtypes("shmpool_buff_hdr",390,"len")=4 + Set gtmtypes("shmpool_buff_hdr",390,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_tries_cntr")=390 + Set gtmtypes("shmpool_buff_hdr",391,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_recovers_cntr" + Set gtmtypes("shmpool_buff_hdr",391,"off")=3836 + Set gtmtypes("shmpool_buff_hdr",391,"len")=4 + Set gtmtypes("shmpool_buff_hdr",391,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_recovers_cntr")=391 + Set gtmtypes("shmpool_buff_hdr",392,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_cntr" + Set gtmtypes("shmpool_buff_hdr",392,"off")=3840 + Set gtmtypes("shmpool_buff_hdr",392,"len")=4 + Set gtmtypes("shmpool_buff_hdr",392,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_cntr")=392 + Set gtmtypes("shmpool_buff_hdr",393,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",393,"off")=3844 + Set gtmtypes("shmpool_buff_hdr",393,"len")=4 + Set gtmtypes("shmpool_buff_hdr",393,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_in_crit_cntr")=393 + Set gtmtypes("shmpool_buff_hdr",394,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_timers_cntr" + Set gtmtypes("shmpool_buff_hdr",394,"off")=3848 + Set gtmtypes("shmpool_buff_hdr",394,"len")=4 + Set gtmtypes("shmpool_buff_hdr",394,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_timers_cntr")=394 + Set gtmtypes("shmpool_buff_hdr",395,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_writes_cntr" + Set gtmtypes("shmpool_buff_hdr",395,"off")=3852 + Set gtmtypes("shmpool_buff_hdr",395,"len")=4 + Set gtmtypes("shmpool_buff_hdr",395,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_writes_cntr")=395 + Set gtmtypes("shmpool_buff_hdr",396,"name")="shmpool_buff_hdr.shadow_file_header.mutex_queue_full_cntr" + Set gtmtypes("shmpool_buff_hdr",396,"off")=3856 + Set gtmtypes("shmpool_buff_hdr",396,"len")=4 + Set gtmtypes("shmpool_buff_hdr",396,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_queue_full_cntr")=396 + Set gtmtypes("shmpool_buff_hdr",397,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bt_put_cntr" + Set gtmtypes("shmpool_buff_hdr",397,"off")=3860 + Set gtmtypes("shmpool_buff_hdr",397,"len")=4 + Set gtmtypes("shmpool_buff_hdr",397,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bt_put_cntr")=397 + Set gtmtypes("shmpool_buff_hdr",398,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mutex_salvage_cntr" + Set gtmtypes("shmpool_buff_hdr",398,"off")=3864 + Set gtmtypes("shmpool_buff_hdr",398,"len")=4 + Set gtmtypes("shmpool_buff_hdr",398,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mutex_salvage_cntr")=398 + Set gtmtypes("shmpool_buff_hdr",399,"name")="shmpool_buff_hdr.shadow_file_header.wcb_tp_grab_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",399,"off")=3868 + Set gtmtypes("shmpool_buff_hdr",399,"len")=4 + Set gtmtypes("shmpool_buff_hdr",399,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_tp_grab_crit_cntr")=399 + Set gtmtypes("shmpool_buff_hdr",400,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",400,"off")=3872 + Set gtmtypes("shmpool_buff_hdr",400,"len")=4 + Set gtmtypes("shmpool_buff_hdr",400,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr")=400 + Set gtmtypes("shmpool_buff_hdr",401,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",401,"off")=3876 + Set gtmtypes("shmpool_buff_hdr",401,"len")=4 + Set gtmtypes("shmpool_buff_hdr",401,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr")=401 + Set gtmtypes("shmpool_buff_hdr",402,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",402,"off")=3880 + Set gtmtypes("shmpool_buff_hdr",402,"len")=4 + Set gtmtypes("shmpool_buff_hdr",402,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_rip_wait_cntr")=402 + Set gtmtypes("shmpool_buff_hdr",403,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("shmpool_buff_hdr",403,"off")=3884 + Set gtmtypes("shmpool_buff_hdr",403,"len")=4 + Set gtmtypes("shmpool_buff_hdr",403,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr")=403 + Set gtmtypes("shmpool_buff_hdr",404,"name")="shmpool_buff_hdr.shadow_file_header.wcb_gds_rundown_cntr" + Set gtmtypes("shmpool_buff_hdr",404,"off")=3888 + Set gtmtypes("shmpool_buff_hdr",404,"len")=4 + Set gtmtypes("shmpool_buff_hdr",404,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_gds_rundown_cntr")=404 + Set gtmtypes("shmpool_buff_hdr",405,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wcs_flu1_cntr" + Set gtmtypes("shmpool_buff_hdr",405,"off")=3892 + Set gtmtypes("shmpool_buff_hdr",405,"len")=4 + Set gtmtypes("shmpool_buff_hdr",405,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wcs_flu1_cntr")=405 + Set gtmtypes("shmpool_buff_hdr",406,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mu_back_cntr" + Set gtmtypes("shmpool_buff_hdr",406,"off")=3896 + Set gtmtypes("shmpool_buff_hdr",406,"len")=4 + Set gtmtypes("shmpool_buff_hdr",406,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mu_back_cntr")=406 + Set gtmtypes("shmpool_buff_hdr",407,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",407,"off")=3900 + Set gtmtypes("shmpool_buff_hdr",407,"len")=4 + Set gtmtypes("shmpool_buff_hdr",407,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr")=407 + Set gtmtypes("shmpool_buff_hdr",408,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("shmpool_buff_hdr",408,"off")=3904 + Set gtmtypes("shmpool_buff_hdr",408,"len")=4 + Set gtmtypes("shmpool_buff_hdr",408,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr")=408 + Set gtmtypes("shmpool_buff_hdr",409,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",409,"off")=3908 + Set gtmtypes("shmpool_buff_hdr",409,"len")=4 + Set gtmtypes("shmpool_buff_hdr",409,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr")=409 + Set gtmtypes("shmpool_buff_hdr",410,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",410,"off")=3912 + Set gtmtypes("shmpool_buff_hdr",410,"len")=4 + Set gtmtypes("shmpool_buff_hdr",410,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr")=410 + Set gtmtypes("shmpool_buff_hdr",411,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",411,"off")=3916 + Set gtmtypes("shmpool_buff_hdr",411,"len")=4 + Set gtmtypes("shmpool_buff_hdr",411,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr")=411 + Set gtmtypes("shmpool_buff_hdr",412,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("shmpool_buff_hdr",412,"off")=3920 + Set gtmtypes("shmpool_buff_hdr",412,"len")=4 + Set gtmtypes("shmpool_buff_hdr",412,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr")=412 + Set gtmtypes("shmpool_buff_hdr",413,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("shmpool_buff_hdr",413,"off")=3924 + Set gtmtypes("shmpool_buff_hdr",413,"len")=4 + Set gtmtypes("shmpool_buff_hdr",413,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr")=413 + Set gtmtypes("shmpool_buff_hdr",414,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("shmpool_buff_hdr",414,"off")=3928 + Set gtmtypes("shmpool_buff_hdr",414,"len")=4 + Set gtmtypes("shmpool_buff_hdr",414,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr")=414 + Set gtmtypes("shmpool_buff_hdr",415,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("shmpool_buff_hdr",415,"off")=3932 + Set gtmtypes("shmpool_buff_hdr",415,"len")=4 + Set gtmtypes("shmpool_buff_hdr",415,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr")=415 + Set gtmtypes("shmpool_buff_hdr",416,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("shmpool_buff_hdr",416,"off")=3936 + Set gtmtypes("shmpool_buff_hdr",416,"len")=4 + Set gtmtypes("shmpool_buff_hdr",416,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr")=416 + Set gtmtypes("shmpool_buff_hdr",417,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("shmpool_buff_hdr",417,"off")=3940 + Set gtmtypes("shmpool_buff_hdr",417,"len")=4 + Set gtmtypes("shmpool_buff_hdr",417,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr")=417 + Set gtmtypes("shmpool_buff_hdr",418,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("shmpool_buff_hdr",418,"off")=3944 + Set gtmtypes("shmpool_buff_hdr",418,"len")=4 + Set gtmtypes("shmpool_buff_hdr",418,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr")=418 + Set gtmtypes("shmpool_buff_hdr",419,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("shmpool_buff_hdr",419,"off")=3948 + Set gtmtypes("shmpool_buff_hdr",419,"len")=4 + Set gtmtypes("shmpool_buff_hdr",419,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr")=419 + Set gtmtypes("shmpool_buff_hdr",420,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("shmpool_buff_hdr",420,"off")=3952 + Set gtmtypes("shmpool_buff_hdr",420,"len")=4 + Set gtmtypes("shmpool_buff_hdr",420,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr")=420 + Set gtmtypes("shmpool_buff_hdr",421,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("shmpool_buff_hdr",421,"off")=3956 + Set gtmtypes("shmpool_buff_hdr",421,"len")=4 + Set gtmtypes("shmpool_buff_hdr",421,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr")=421 + Set gtmtypes("shmpool_buff_hdr",422,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_bt_get_cntr" + Set gtmtypes("shmpool_buff_hdr",422,"off")=3960 + Set gtmtypes("shmpool_buff_hdr",422,"len")=4 + Set gtmtypes("shmpool_buff_hdr",422,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_bt_get_cntr")=422 + Set gtmtypes("shmpool_buff_hdr",423,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("shmpool_buff_hdr",423,"off")=3964 + Set gtmtypes("shmpool_buff_hdr",423,"len")=4 + Set gtmtypes("shmpool_buff_hdr",423,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr")=423 + Set gtmtypes("shmpool_buff_hdr",424,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",424,"off")=3968 + Set gtmtypes("shmpool_buff_hdr",424,"len")=4 + Set gtmtypes("shmpool_buff_hdr",424,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail1_cntr")=424 + Set gtmtypes("shmpool_buff_hdr",425,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",425,"off")=3972 + Set gtmtypes("shmpool_buff_hdr",425,"len")=4 + Set gtmtypes("shmpool_buff_hdr",425,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail2_cntr")=425 + Set gtmtypes("shmpool_buff_hdr",426,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",426,"off")=3976 + Set gtmtypes("shmpool_buff_hdr",426,"len")=4 + Set gtmtypes("shmpool_buff_hdr",426,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail1_cntr")=426 + Set gtmtypes("shmpool_buff_hdr",427,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",427,"off")=3980 + Set gtmtypes("shmpool_buff_hdr",427,"len")=4 + Set gtmtypes("shmpool_buff_hdr",427,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail2_cntr")=427 + Set gtmtypes("shmpool_buff_hdr",428,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("shmpool_buff_hdr",428,"off")=3984 + Set gtmtypes("shmpool_buff_hdr",428,"len")=4 + Set gtmtypes("shmpool_buff_hdr",428,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail3_cntr")=428 + Set gtmtypes("shmpool_buff_hdr",429,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("shmpool_buff_hdr",429,"off")=3988 + Set gtmtypes("shmpool_buff_hdr",429,"len")=4 + Set gtmtypes("shmpool_buff_hdr",429,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail4_cntr")=429 + Set gtmtypes("shmpool_buff_hdr",430,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",430,"off")=3992 + Set gtmtypes("shmpool_buff_hdr",430,"len")=4 + Set gtmtypes("shmpool_buff_hdr",430,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail1_cntr")=430 + Set gtmtypes("shmpool_buff_hdr",431,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",431,"off")=3996 + Set gtmtypes("shmpool_buff_hdr",431,"len")=4 + Set gtmtypes("shmpool_buff_hdr",431,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail2_cntr")=431 + Set gtmtypes("shmpool_buff_hdr",432,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("shmpool_buff_hdr",432,"off")=4000 + Set gtmtypes("shmpool_buff_hdr",432,"len")=4 + Set gtmtypes("shmpool_buff_hdr",432,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail3_cntr")=432 + Set gtmtypes("shmpool_buff_hdr",433,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("shmpool_buff_hdr",433,"off")=4004 + Set gtmtypes("shmpool_buff_hdr",433,"len")=4 + Set gtmtypes("shmpool_buff_hdr",433,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail4_cntr")=433 + Set gtmtypes("shmpool_buff_hdr",434,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("shmpool_buff_hdr",434,"off")=4008 + Set gtmtypes("shmpool_buff_hdr",434,"len")=4 + Set gtmtypes("shmpool_buff_hdr",434,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr")=434 + Set gtmtypes("shmpool_buff_hdr",435,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("shmpool_buff_hdr",435,"off")=4012 + Set gtmtypes("shmpool_buff_hdr",435,"len")=4 + Set gtmtypes("shmpool_buff_hdr",435,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr")=435 + Set gtmtypes("shmpool_buff_hdr",436,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("shmpool_buff_hdr",436,"off")=4016 + Set gtmtypes("shmpool_buff_hdr",436,"len")=4 + Set gtmtypes("shmpool_buff_hdr",436,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr")=436 + Set gtmtypes("shmpool_buff_hdr",437,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_syncio_cntr" + Set gtmtypes("shmpool_buff_hdr",437,"off")=4020 + Set gtmtypes("shmpool_buff_hdr",437,"len")=4 + Set gtmtypes("shmpool_buff_hdr",437,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_syncio_cntr")=437 + Set gtmtypes("shmpool_buff_hdr",438,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("shmpool_buff_hdr",438,"off")=4024 + Set gtmtypes("shmpool_buff_hdr",438,"len")=4 + Set gtmtypes("shmpool_buff_hdr",438,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_asyncio_cntr")=438 + Set gtmtypes("shmpool_buff_hdr",439,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_refmt_harvests_cntr" + Set gtmtypes("shmpool_buff_hdr",439,"off")=4028 + Set gtmtypes("shmpool_buff_hdr",439,"len")=4 + Set gtmtypes("shmpool_buff_hdr",439,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_refmt_harvests_cntr")=439 + Set gtmtypes("shmpool_buff_hdr",440,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_recovery_cntr" + Set gtmtypes("shmpool_buff_hdr",440,"off")=4032 + Set gtmtypes("shmpool_buff_hdr",440,"len")=4 + Set gtmtypes("shmpool_buff_hdr",440,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_recovery_cntr")=440 + Set gtmtypes("shmpool_buff_hdr",441,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("shmpool_buff_hdr",441,"off")=4036 + Set gtmtypes("shmpool_buff_hdr",441,"len")=4 + Set gtmtypes("shmpool_buff_hdr",441,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_blkd_by_sdc_cntr")=441 + Set gtmtypes("shmpool_buff_hdr",442,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_alloc_bbflush_cntr" + Set gtmtypes("shmpool_buff_hdr",442,"off")=4040 + Set gtmtypes("shmpool_buff_hdr",442,"len")=4 + Set gtmtypes("shmpool_buff_hdr",442,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_alloc_bbflush_cntr")=442 + Set gtmtypes("shmpool_buff_hdr",443,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("shmpool_buff_hdr",443,"off")=4044 + Set gtmtypes("shmpool_buff_hdr",443,"len")=4 + Set gtmtypes("shmpool_buff_hdr",443,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_replaced_cntr")=443 + Set gtmtypes("shmpool_buff_hdr",444,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("shmpool_buff_hdr",444,"off")=4048 + Set gtmtypes("shmpool_buff_hdr",444,"len")=4 + Set gtmtypes("shmpool_buff_hdr",444,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_io_complete_cntr")=444 + Set gtmtypes("shmpool_buff_hdr",445,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_kept_cntr" + Set gtmtypes("shmpool_buff_hdr",445,"off")=4052 + Set gtmtypes("shmpool_buff_hdr",445,"len")=4 + Set gtmtypes("shmpool_buff_hdr",445,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_kept_cntr")=445 + Set gtmtypes("shmpool_buff_hdr",446,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("shmpool_buff_hdr",446,"off")=4056 + Set gtmtypes("shmpool_buff_hdr",446,"len")=4 + Set gtmtypes("shmpool_buff_hdr",446,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_ignored_cntr")=446 + Set gtmtypes("shmpool_buff_hdr",447,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("shmpool_buff_hdr",447,"off")=4060 + Set gtmtypes("shmpool_buff_hdr",447,"len")=4 + Set gtmtypes("shmpool_buff_hdr",447,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_freed_cntr")=447 + Set gtmtypes("shmpool_buff_hdr",448,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("shmpool_buff_hdr",448,"off")=4064 + Set gtmtypes("shmpool_buff_hdr",448,"len")=4 + Set gtmtypes("shmpool_buff_hdr",448,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_kept_cntr")=448 + Set gtmtypes("shmpool_buff_hdr",449,"name")="shmpool_buff_hdr.shadow_file_header.active_lvl_trigger_cntr" + Set gtmtypes("shmpool_buff_hdr",449,"off")=4068 + Set gtmtypes("shmpool_buff_hdr",449,"len")=4 + Set gtmtypes("shmpool_buff_hdr",449,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.active_lvl_trigger_cntr")=449 + Set gtmtypes("shmpool_buff_hdr",450,"name")="shmpool_buff_hdr.shadow_file_header.new_buff_cntr" + Set gtmtypes("shmpool_buff_hdr",450,"off")=4072 + Set gtmtypes("shmpool_buff_hdr",450,"len")=4 + Set gtmtypes("shmpool_buff_hdr",450,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.new_buff_cntr")=450 + Set gtmtypes("shmpool_buff_hdr",451,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",451,"off")=4076 + Set gtmtypes("shmpool_buff_hdr",451,"len")=4 + Set gtmtypes("shmpool_buff_hdr",451,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr")=451 + Set gtmtypes("shmpool_buff_hdr",452,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",452,"off")=4080 + Set gtmtypes("shmpool_buff_hdr",452,"len")=4 + Set gtmtypes("shmpool_buff_hdr",452,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr")=452 + Set gtmtypes("shmpool_buff_hdr",453,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("shmpool_buff_hdr",453,"off")=4084 + Set gtmtypes("shmpool_buff_hdr",453,"len")=4 + Set gtmtypes("shmpool_buff_hdr",453,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_pidcnt_cntr")=453 + Set gtmtypes("shmpool_buff_hdr",454,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",454,"off")=4088 + Set gtmtypes("shmpool_buff_hdr",454,"len")=4 + Set gtmtypes("shmpool_buff_hdr",454,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_intend_wait_cntr")=454 + Set gtmtypes("shmpool_buff_hdr",455,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("shmpool_buff_hdr",455,"off")=4092 + Set gtmtypes("shmpool_buff_hdr",455,"len")=4 + Set gtmtypes("shmpool_buff_hdr",455,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr")=455 + Set gtmtypes("shmpool_buff_hdr",456,"name")="shmpool_buff_hdr.shadow_file_header.wcb_phase2_commit_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",456,"off")=4096 + Set gtmtypes("shmpool_buff_hdr",456,"len")=4 + Set gtmtypes("shmpool_buff_hdr",456,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_phase2_commit_wait_cntr")=456 + Set gtmtypes("shmpool_buff_hdr",457,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_calls_cntr" + Set gtmtypes("shmpool_buff_hdr",457,"off")=4100 + Set gtmtypes("shmpool_buff_hdr",457,"len")=4 + Set gtmtypes("shmpool_buff_hdr",457,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_calls_cntr")=457 + Set gtmtypes("shmpool_buff_hdr",458,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rip_cntr" + Set gtmtypes("shmpool_buff_hdr",458,"off")=4104 + Set gtmtypes("shmpool_buff_hdr",458,"len")=4 + Set gtmtypes("shmpool_buff_hdr",458,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rip_cntr")=458 + Set gtmtypes("shmpool_buff_hdr",459,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_in_tend_cntr" + Set gtmtypes("shmpool_buff_hdr",459,"off")=4108 + Set gtmtypes("shmpool_buff_hdr",459,"len")=4 + Set gtmtypes("shmpool_buff_hdr",459,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_in_tend_cntr")=459 + Set gtmtypes("shmpool_buff_hdr",460,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_search_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",460,"off")=4112 + Set gtmtypes("shmpool_buff_hdr",460,"len")=4 + Set gtmtypes("shmpool_buff_hdr",460,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_search_blk_cntr")=460 + Set gtmtypes("shmpool_buff_hdr",461,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_new_rec_cntr" + Set gtmtypes("shmpool_buff_hdr",461,"off")=4116 + Set gtmtypes("shmpool_buff_hdr",461,"len")=4 + Set gtmtypes("shmpool_buff_hdr",461,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_new_rec_cntr")=461 + Set gtmtypes("shmpool_buff_hdr",462,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_size_cntr" + Set gtmtypes("shmpool_buff_hdr",462,"off")=4120 + Set gtmtypes("shmpool_buff_hdr",462,"len")=4 + Set gtmtypes("shmpool_buff_hdr",462,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_size_cntr")=462 + Set gtmtypes("shmpool_buff_hdr",463,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("shmpool_buff_hdr",463,"off")=4124 + Set gtmtypes("shmpool_buff_hdr",463,"len")=4 + Set gtmtypes("shmpool_buff_hdr",463,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_cmpc_cntr")=463 + Set gtmtypes("shmpool_buff_hdr",464,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("shmpool_buff_hdr",464,"off")=4128 + Set gtmtypes("shmpool_buff_hdr",464,"len")=4 + Set gtmtypes("shmpool_buff_hdr",464,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_fini_cntr")=464 + Set gtmtypes("shmpool_buff_hdr",465,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_split_cntr" + Set gtmtypes("shmpool_buff_hdr",465,"off")=4132 + Set gtmtypes("shmpool_buff_hdr",465,"len")=4 + Set gtmtypes("shmpool_buff_hdr",465,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_split_cntr")=465 + Set gtmtypes("shmpool_buff_hdr",466,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("shmpool_buff_hdr",466,"off")=4136 + Set gtmtypes("shmpool_buff_hdr",466,"len")=4 + Set gtmtypes("shmpool_buff_hdr",466,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_cnt_cntr")=466 + Set gtmtypes("shmpool_buff_hdr",467,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("shmpool_buff_hdr",467,"off")=4140 + Set gtmtypes("shmpool_buff_hdr",467,"len")=4 + Set gtmtypes("shmpool_buff_hdr",467,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_nblks_cntr")=467 + Set gtmtypes("shmpool_buff_hdr",468,"name")="shmpool_buff_hdr.shadow_file_header.bg_trc_rec_cntr_filler" + Set gtmtypes("shmpool_buff_hdr",468,"off")=4144 + Set gtmtypes("shmpool_buff_hdr",468,"len")=56 + Set gtmtypes("shmpool_buff_hdr",468,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bg_trc_rec_cntr_filler")=468 + Set gtmtypes("shmpool_buff_hdr",469,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches" + Set gtmtypes("shmpool_buff_hdr",469,"off")=4200 + Set gtmtypes("shmpool_buff_hdr",469,"len")=8 + Set gtmtypes("shmpool_buff_hdr",469,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches")=469 + Set gtmtypes("shmpool_buff_hdr",470,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches.curr_count" + Set gtmtypes("shmpool_buff_hdr",470,"off")=4200 + Set gtmtypes("shmpool_buff_hdr",470,"len")=4 + Set gtmtypes("shmpool_buff_hdr",470,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches.curr_count")=470 + Set gtmtypes("shmpool_buff_hdr",471,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches.cumul_count" + Set gtmtypes("shmpool_buff_hdr",471,"off")=4204 + Set gtmtypes("shmpool_buff_hdr",471,"len")=4 + Set gtmtypes("shmpool_buff_hdr",471,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches.cumul_count")=471 + Set gtmtypes("shmpool_buff_hdr",472,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues" + Set gtmtypes("shmpool_buff_hdr",472,"off")=4208 + Set gtmtypes("shmpool_buff_hdr",472,"len")=8 + Set gtmtypes("shmpool_buff_hdr",472,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues")=472 + Set gtmtypes("shmpool_buff_hdr",473,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues.curr_count" + Set gtmtypes("shmpool_buff_hdr",473,"off")=4208 + Set gtmtypes("shmpool_buff_hdr",473,"len")=4 + Set gtmtypes("shmpool_buff_hdr",473,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues.curr_count")=473 + Set gtmtypes("shmpool_buff_hdr",474,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("shmpool_buff_hdr",474,"off")=4212 + Set gtmtypes("shmpool_buff_hdr",474,"len")=4 + Set gtmtypes("shmpool_buff_hdr",474,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues.cumul_count")=474 + Set gtmtypes("shmpool_buff_hdr",475,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head" + Set gtmtypes("shmpool_buff_hdr",475,"off")=4216 + Set gtmtypes("shmpool_buff_hdr",475,"len")=8 + Set gtmtypes("shmpool_buff_hdr",475,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head")=475 + Set gtmtypes("shmpool_buff_hdr",476,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head.curr_count" + Set gtmtypes("shmpool_buff_hdr",476,"off")=4216 + Set gtmtypes("shmpool_buff_hdr",476,"len")=4 + Set gtmtypes("shmpool_buff_hdr",476,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head.curr_count")=476 + Set gtmtypes("shmpool_buff_hdr",477,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head.cumul_count" + Set gtmtypes("shmpool_buff_hdr",477,"off")=4220 + Set gtmtypes("shmpool_buff_hdr",477,"len")=4 + Set gtmtypes("shmpool_buff_hdr",477,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head.cumul_count")=477 + Set gtmtypes("shmpool_buff_hdr",478,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same" + Set gtmtypes("shmpool_buff_hdr",478,"off")=4224 + Set gtmtypes("shmpool_buff_hdr",478,"len")=8 + Set gtmtypes("shmpool_buff_hdr",478,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same")=478 + Set gtmtypes("shmpool_buff_hdr",479,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same.curr_count" + Set gtmtypes("shmpool_buff_hdr",479,"off")=4224 + Set gtmtypes("shmpool_buff_hdr",479,"len")=4 + Set gtmtypes("shmpool_buff_hdr",479,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same.curr_count")=479 + Set gtmtypes("shmpool_buff_hdr",480,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same.cumul_count" + Set gtmtypes("shmpool_buff_hdr",480,"off")=4228 + Set gtmtypes("shmpool_buff_hdr",480,"len")=4 + Set gtmtypes("shmpool_buff_hdr",480,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same.cumul_count")=480 + Set gtmtypes("shmpool_buff_hdr",481,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail" + Set gtmtypes("shmpool_buff_hdr",481,"off")=4232 + Set gtmtypes("shmpool_buff_hdr",481,"len")=8 + Set gtmtypes("shmpool_buff_hdr",481,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail")=481 + Set gtmtypes("shmpool_buff_hdr",482,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail.curr_count" + Set gtmtypes("shmpool_buff_hdr",482,"off")=4232 + Set gtmtypes("shmpool_buff_hdr",482,"len")=4 + Set gtmtypes("shmpool_buff_hdr",482,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail.curr_count")=482 + Set gtmtypes("shmpool_buff_hdr",483,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail.cumul_count" + Set gtmtypes("shmpool_buff_hdr",483,"off")=4236 + Set gtmtypes("shmpool_buff_hdr",483,"len")=4 + Set gtmtypes("shmpool_buff_hdr",483,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail.cumul_count")=483 + Set gtmtypes("shmpool_buff_hdr",484,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads" + Set gtmtypes("shmpool_buff_hdr",484,"off")=4240 + Set gtmtypes("shmpool_buff_hdr",484,"len")=8 + Set gtmtypes("shmpool_buff_hdr",484,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads")=484 + Set gtmtypes("shmpool_buff_hdr",485,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads.curr_count" + Set gtmtypes("shmpool_buff_hdr",485,"off")=4240 + Set gtmtypes("shmpool_buff_hdr",485,"len")=4 + Set gtmtypes("shmpool_buff_hdr",485,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads.curr_count")=485 + Set gtmtypes("shmpool_buff_hdr",486,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads.cumul_count" + Set gtmtypes("shmpool_buff_hdr",486,"off")=4244 + Set gtmtypes("shmpool_buff_hdr",486,"len")=4 + Set gtmtypes("shmpool_buff_hdr",486,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads.cumul_count")=486 + Set gtmtypes("shmpool_buff_hdr",487,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads" + Set gtmtypes("shmpool_buff_hdr",487,"off")=4248 + Set gtmtypes("shmpool_buff_hdr",487,"len")=8 + Set gtmtypes("shmpool_buff_hdr",487,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads")=487 + Set gtmtypes("shmpool_buff_hdr",488,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads.curr_count" + Set gtmtypes("shmpool_buff_hdr",488,"off")=4248 + Set gtmtypes("shmpool_buff_hdr",488,"len")=4 + Set gtmtypes("shmpool_buff_hdr",488,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads.curr_count")=488 + Set gtmtypes("shmpool_buff_hdr",489,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads.cumul_count" + Set gtmtypes("shmpool_buff_hdr",489,"off")=4252 + Set gtmtypes("shmpool_buff_hdr",489,"len")=4 + Set gtmtypes("shmpool_buff_hdr",489,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads.cumul_count")=489 + Set gtmtypes("shmpool_buff_hdr",490,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates" + Set gtmtypes("shmpool_buff_hdr",490,"off")=4256 + Set gtmtypes("shmpool_buff_hdr",490,"len")=8 + Set gtmtypes("shmpool_buff_hdr",490,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates")=490 + Set gtmtypes("shmpool_buff_hdr",491,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates.curr_count" + Set gtmtypes("shmpool_buff_hdr",491,"off")=4256 + Set gtmtypes("shmpool_buff_hdr",491,"len")=4 + Set gtmtypes("shmpool_buff_hdr",491,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates.curr_count")=491 + Set gtmtypes("shmpool_buff_hdr",492,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates.cumul_count" + Set gtmtypes("shmpool_buff_hdr",492,"off")=4260 + Set gtmtypes("shmpool_buff_hdr",492,"len")=4 + Set gtmtypes("shmpool_buff_hdr",492,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates.cumul_count")=492 + Set gtmtypes("shmpool_buff_hdr",493,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes" + Set gtmtypes("shmpool_buff_hdr",493,"off")=4264 + Set gtmtypes("shmpool_buff_hdr",493,"len")=8 + Set gtmtypes("shmpool_buff_hdr",493,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes")=493 + Set gtmtypes("shmpool_buff_hdr",494,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes.curr_count" + Set gtmtypes("shmpool_buff_hdr",494,"off")=4264 + Set gtmtypes("shmpool_buff_hdr",494,"len")=4 + Set gtmtypes("shmpool_buff_hdr",494,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes.curr_count")=494 + Set gtmtypes("shmpool_buff_hdr",495,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes.cumul_count" + Set gtmtypes("shmpool_buff_hdr",495,"off")=4268 + Set gtmtypes("shmpool_buff_hdr",495,"len")=4 + Set gtmtypes("shmpool_buff_hdr",495,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes.cumul_count")=495 + Set gtmtypes("shmpool_buff_hdr",496,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates" + Set gtmtypes("shmpool_buff_hdr",496,"off")=4272 + Set gtmtypes("shmpool_buff_hdr",496,"len")=8 + Set gtmtypes("shmpool_buff_hdr",496,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates")=496 + Set gtmtypes("shmpool_buff_hdr",497,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates.curr_count" + Set gtmtypes("shmpool_buff_hdr",497,"off")=4272 + Set gtmtypes("shmpool_buff_hdr",497,"len")=4 + Set gtmtypes("shmpool_buff_hdr",497,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates.curr_count")=497 + Set gtmtypes("shmpool_buff_hdr",498,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates.cumul_count" + Set gtmtypes("shmpool_buff_hdr",498,"off")=4276 + Set gtmtypes("shmpool_buff_hdr",498,"len")=4 + Set gtmtypes("shmpool_buff_hdr",498,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates.cumul_count")=498 + Set gtmtypes("shmpool_buff_hdr",499,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns" + Set gtmtypes("shmpool_buff_hdr",499,"off")=4280 + Set gtmtypes("shmpool_buff_hdr",499,"len")=8 + Set gtmtypes("shmpool_buff_hdr",499,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns")=499 + Set gtmtypes("shmpool_buff_hdr",500,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns.curr_count" + Set gtmtypes("shmpool_buff_hdr",500,"off")=4280 + Set gtmtypes("shmpool_buff_hdr",500,"len")=4 + Set gtmtypes("shmpool_buff_hdr",500,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns.curr_count")=500 + Set gtmtypes("shmpool_buff_hdr",501,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns.cumul_count" + Set gtmtypes("shmpool_buff_hdr",501,"off")=4284 + Set gtmtypes("shmpool_buff_hdr",501,"len")=4 + Set gtmtypes("shmpool_buff_hdr",501,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns.cumul_count")=501 + Set gtmtypes("shmpool_buff_hdr",502,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt" + Set gtmtypes("shmpool_buff_hdr",502,"off")=4288 + Set gtmtypes("shmpool_buff_hdr",502,"len")=8 + Set gtmtypes("shmpool_buff_hdr",502,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt")=502 + Set gtmtypes("shmpool_buff_hdr",503,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("shmpool_buff_hdr",503,"off")=4288 + Set gtmtypes("shmpool_buff_hdr",503,"len")=4 + Set gtmtypes("shmpool_buff_hdr",503,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt.curr_count")=503 + Set gtmtypes("shmpool_buff_hdr",504,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("shmpool_buff_hdr",504,"off")=4292 + Set gtmtypes("shmpool_buff_hdr",504,"len")=4 + Set gtmtypes("shmpool_buff_hdr",504,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt.cumul_count")=504 + Set gtmtypes("shmpool_buff_hdr",505,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_acct_rec_filler_4k" + Set gtmtypes("shmpool_buff_hdr",505,"off")=4296 + Set gtmtypes("shmpool_buff_hdr",505,"len")=152 + Set gtmtypes("shmpool_buff_hdr",505,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_acct_rec_filler_4k")=505 + Set gtmtypes("shmpool_buff_hdr",506,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec" + Set gtmtypes("shmpool_buff_hdr",506,"off")=4448 + Set gtmtypes("shmpool_buff_hdr",506,"len")=464 + Set gtmtypes("shmpool_buff_hdr",506,"type")="gvstats_rec_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec")=506 + Set gtmtypes("shmpool_buff_hdr",507,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_set" + Set gtmtypes("shmpool_buff_hdr",507,"off")=4448 + Set gtmtypes("shmpool_buff_hdr",507,"len")=8 + Set gtmtypes("shmpool_buff_hdr",507,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_set")=507 + Set gtmtypes("shmpool_buff_hdr",508,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_kill" + Set gtmtypes("shmpool_buff_hdr",508,"off")=4456 + Set gtmtypes("shmpool_buff_hdr",508,"len")=8 + Set gtmtypes("shmpool_buff_hdr",508,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_kill")=508 + Set gtmtypes("shmpool_buff_hdr",509,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_get" + Set gtmtypes("shmpool_buff_hdr",509,"off")=4464 + Set gtmtypes("shmpool_buff_hdr",509,"len")=8 + Set gtmtypes("shmpool_buff_hdr",509,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_get")=509 + Set gtmtypes("shmpool_buff_hdr",510,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_data" + Set gtmtypes("shmpool_buff_hdr",510,"off")=4472 + Set gtmtypes("shmpool_buff_hdr",510,"len")=8 + Set gtmtypes("shmpool_buff_hdr",510,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_data")=510 + Set gtmtypes("shmpool_buff_hdr",511,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_order" + Set gtmtypes("shmpool_buff_hdr",511,"off")=4480 + Set gtmtypes("shmpool_buff_hdr",511,"len")=8 + Set gtmtypes("shmpool_buff_hdr",511,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_order")=511 + Set gtmtypes("shmpool_buff_hdr",512,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_zprev" + Set gtmtypes("shmpool_buff_hdr",512,"off")=4488 + Set gtmtypes("shmpool_buff_hdr",512,"len")=8 + Set gtmtypes("shmpool_buff_hdr",512,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_zprev")=512 + Set gtmtypes("shmpool_buff_hdr",513,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_query" + Set gtmtypes("shmpool_buff_hdr",513,"off")=4496 + Set gtmtypes("shmpool_buff_hdr",513,"len")=8 + Set gtmtypes("shmpool_buff_hdr",513,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_query")=513 + Set gtmtypes("shmpool_buff_hdr",514,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_lock_success" + Set gtmtypes("shmpool_buff_hdr",514,"off")=4504 + Set gtmtypes("shmpool_buff_hdr",514,"len")=8 + Set gtmtypes("shmpool_buff_hdr",514,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_lock_success")=514 + Set gtmtypes("shmpool_buff_hdr",515,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_lock_fail" + Set gtmtypes("shmpool_buff_hdr",515,"off")=4512 + Set gtmtypes("shmpool_buff_hdr",515,"len")=8 + Set gtmtypes("shmpool_buff_hdr",515,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_lock_fail")=515 + Set gtmtypes("shmpool_buff_hdr",516,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.db_curr_tn" + Set gtmtypes("shmpool_buff_hdr",516,"off")=4520 + Set gtmtypes("shmpool_buff_hdr",516,"len")=8 + Set gtmtypes("shmpool_buff_hdr",516,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.db_curr_tn")=516 + Set gtmtypes("shmpool_buff_hdr",517,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_dsk_read" + Set gtmtypes("shmpool_buff_hdr",517,"off")=4528 + Set gtmtypes("shmpool_buff_hdr",517,"len")=8 + Set gtmtypes("shmpool_buff_hdr",517,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_dsk_read")=517 + Set gtmtypes("shmpool_buff_hdr",518,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_dsk_write" + Set gtmtypes("shmpool_buff_hdr",518,"off")=4536 + Set gtmtypes("shmpool_buff_hdr",518,"len")=8 + Set gtmtypes("shmpool_buff_hdr",518,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_dsk_write")=518 + Set gtmtypes("shmpool_buff_hdr",519,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("shmpool_buff_hdr",519,"off")=4544 + Set gtmtypes("shmpool_buff_hdr",519,"len")=8 + Set gtmtypes("shmpool_buff_hdr",519,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_readwrite")=519 + Set gtmtypes("shmpool_buff_hdr",520,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_readonly" + Set gtmtypes("shmpool_buff_hdr",520,"off")=4552 + Set gtmtypes("shmpool_buff_hdr",520,"len")=8 + Set gtmtypes("shmpool_buff_hdr",520,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_readonly")=520 + Set gtmtypes("shmpool_buff_hdr",521,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("shmpool_buff_hdr",521,"off")=4560 + Set gtmtypes("shmpool_buff_hdr",521,"len")=8 + Set gtmtypes("shmpool_buff_hdr",521,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_blkwrite")=521 + Set gtmtypes("shmpool_buff_hdr",522,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_blkread" + Set gtmtypes("shmpool_buff_hdr",522,"off")=4568 + Set gtmtypes("shmpool_buff_hdr",522,"len")=8 + Set gtmtypes("shmpool_buff_hdr",522,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_blkread")=522 + Set gtmtypes("shmpool_buff_hdr",523,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("shmpool_buff_hdr",523,"off")=4576 + Set gtmtypes("shmpool_buff_hdr",523,"len")=8 + Set gtmtypes("shmpool_buff_hdr",523,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_0")=523 + Set gtmtypes("shmpool_buff_hdr",524,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("shmpool_buff_hdr",524,"off")=4584 + Set gtmtypes("shmpool_buff_hdr",524,"len")=8 + Set gtmtypes("shmpool_buff_hdr",524,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_1")=524 + Set gtmtypes("shmpool_buff_hdr",525,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("shmpool_buff_hdr",525,"off")=4592 + Set gtmtypes("shmpool_buff_hdr",525,"len")=8 + Set gtmtypes("shmpool_buff_hdr",525,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_2")=525 + Set gtmtypes("shmpool_buff_hdr",526,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("shmpool_buff_hdr",526,"off")=4600 + Set gtmtypes("shmpool_buff_hdr",526,"len")=8 + Set gtmtypes("shmpool_buff_hdr",526,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_3")=526 + Set gtmtypes("shmpool_buff_hdr",527,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_readwrite" + Set gtmtypes("shmpool_buff_hdr",527,"off")=4608 + Set gtmtypes("shmpool_buff_hdr",527,"len")=8 + Set gtmtypes("shmpool_buff_hdr",527,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_readwrite")=527 + Set gtmtypes("shmpool_buff_hdr",528,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_readonly" + Set gtmtypes("shmpool_buff_hdr",528,"off")=4616 + Set gtmtypes("shmpool_buff_hdr",528,"len")=8 + Set gtmtypes("shmpool_buff_hdr",528,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_readonly")=528 + Set gtmtypes("shmpool_buff_hdr",529,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_rolledback" + Set gtmtypes("shmpool_buff_hdr",529,"off")=4624 + Set gtmtypes("shmpool_buff_hdr",529,"len")=8 + Set gtmtypes("shmpool_buff_hdr",529,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_rolledback")=529 + Set gtmtypes("shmpool_buff_hdr",530,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("shmpool_buff_hdr",530,"off")=4632 + Set gtmtypes("shmpool_buff_hdr",530,"len")=8 + Set gtmtypes("shmpool_buff_hdr",530,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_blkwrite")=530 + Set gtmtypes("shmpool_buff_hdr",531,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_blkread" + Set gtmtypes("shmpool_buff_hdr",531,"off")=4640 + Set gtmtypes("shmpool_buff_hdr",531,"len")=8 + Set gtmtypes("shmpool_buff_hdr",531,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_blkread")=531 + Set gtmtypes("shmpool_buff_hdr",532,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("shmpool_buff_hdr",532,"off")=4648 + Set gtmtypes("shmpool_buff_hdr",532,"len")=8 + Set gtmtypes("shmpool_buff_hdr",532,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_0")=532 + Set gtmtypes("shmpool_buff_hdr",533,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("shmpool_buff_hdr",533,"off")=4656 + Set gtmtypes("shmpool_buff_hdr",533,"len")=8 + Set gtmtypes("shmpool_buff_hdr",533,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_1")=533 + Set gtmtypes("shmpool_buff_hdr",534,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("shmpool_buff_hdr",534,"off")=4664 + Set gtmtypes("shmpool_buff_hdr",534,"len")=8 + Set gtmtypes("shmpool_buff_hdr",534,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_2")=534 + Set gtmtypes("shmpool_buff_hdr",535,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("shmpool_buff_hdr",535,"off")=4672 + Set gtmtypes("shmpool_buff_hdr",535,"len")=8 + Set gtmtypes("shmpool_buff_hdr",535,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_3")=535 + Set gtmtypes("shmpool_buff_hdr",536,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("shmpool_buff_hdr",536,"off")=4680 + Set gtmtypes("shmpool_buff_hdr",536,"len")=8 + Set gtmtypes("shmpool_buff_hdr",536,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_4")=536 + Set gtmtypes("shmpool_buff_hdr",537,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("shmpool_buff_hdr",537,"off")=4688 + Set gtmtypes("shmpool_buff_hdr",537,"len")=8 + Set gtmtypes("shmpool_buff_hdr",537,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0")=537 + Set gtmtypes("shmpool_buff_hdr",538,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("shmpool_buff_hdr",538,"off")=4696 + Set gtmtypes("shmpool_buff_hdr",538,"len")=8 + Set gtmtypes("shmpool_buff_hdr",538,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1")=538 + Set gtmtypes("shmpool_buff_hdr",539,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("shmpool_buff_hdr",539,"off")=4704 + Set gtmtypes("shmpool_buff_hdr",539,"len")=8 + Set gtmtypes("shmpool_buff_hdr",539,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2")=539 + Set gtmtypes("shmpool_buff_hdr",540,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("shmpool_buff_hdr",540,"off")=4712 + Set gtmtypes("shmpool_buff_hdr",540,"len")=8 + Set gtmtypes("shmpool_buff_hdr",540,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3")=540 + Set gtmtypes("shmpool_buff_hdr",541,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("shmpool_buff_hdr",541,"off")=4720 + Set gtmtypes("shmpool_buff_hdr",541,"len")=8 + Set gtmtypes("shmpool_buff_hdr",541,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4")=541 + Set gtmtypes("shmpool_buff_hdr",542,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_ztrigger" + Set gtmtypes("shmpool_buff_hdr",542,"off")=4728 + Set gtmtypes("shmpool_buff_hdr",542,"len")=8 + Set gtmtypes("shmpool_buff_hdr",542,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_ztrigger")=542 + Set gtmtypes("shmpool_buff_hdr",543,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_flush" + Set gtmtypes("shmpool_buff_hdr",543,"off")=4736 + Set gtmtypes("shmpool_buff_hdr",543,"len")=8 + Set gtmtypes("shmpool_buff_hdr",543,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_flush")=543 + Set gtmtypes("shmpool_buff_hdr",544,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_fsync" + Set gtmtypes("shmpool_buff_hdr",544,"off")=4744 + Set gtmtypes("shmpool_buff_hdr",544,"len")=8 + Set gtmtypes("shmpool_buff_hdr",544,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_fsync")=544 + Set gtmtypes("shmpool_buff_hdr",545,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_flush" + Set gtmtypes("shmpool_buff_hdr",545,"off")=4752 + Set gtmtypes("shmpool_buff_hdr",545,"len")=8 + Set gtmtypes("shmpool_buff_hdr",545,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_flush")=545 + Set gtmtypes("shmpool_buff_hdr",546,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_fsync" + Set gtmtypes("shmpool_buff_hdr",546,"off")=4760 + Set gtmtypes("shmpool_buff_hdr",546,"len")=8 + Set gtmtypes("shmpool_buff_hdr",546,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_fsync")=546 + Set gtmtypes("shmpool_buff_hdr",547,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("shmpool_buff_hdr",547,"off")=4768 + Set gtmtypes("shmpool_buff_hdr",547,"len")=8 + Set gtmtypes("shmpool_buff_hdr",547,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jbuff_bytes")=547 + Set gtmtypes("shmpool_buff_hdr",548,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jfile_bytes" + Set gtmtypes("shmpool_buff_hdr",548,"off")=4776 + Set gtmtypes("shmpool_buff_hdr",548,"len")=8 + Set gtmtypes("shmpool_buff_hdr",548,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jfile_bytes")=548 + Set gtmtypes("shmpool_buff_hdr",549,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jfile_writes" + Set gtmtypes("shmpool_buff_hdr",549,"off")=4784 + Set gtmtypes("shmpool_buff_hdr",549,"len")=8 + Set gtmtypes("shmpool_buff_hdr",549,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jfile_writes")=549 + Set gtmtypes("shmpool_buff_hdr",550,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_logical" + Set gtmtypes("shmpool_buff_hdr",550,"off")=4792 + Set gtmtypes("shmpool_buff_hdr",550,"len")=8 + Set gtmtypes("shmpool_buff_hdr",550,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_logical")=550 + Set gtmtypes("shmpool_buff_hdr",551,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_pblk" + Set gtmtypes("shmpool_buff_hdr",551,"off")=4800 + Set gtmtypes("shmpool_buff_hdr",551,"len")=8 + Set gtmtypes("shmpool_buff_hdr",551,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_pblk")=551 + Set gtmtypes("shmpool_buff_hdr",552,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("shmpool_buff_hdr",552,"off")=4808 + Set gtmtypes("shmpool_buff_hdr",552,"len")=8 + Set gtmtypes("shmpool_buff_hdr",552,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_epoch_regular")=552 + Set gtmtypes("shmpool_buff_hdr",553,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("shmpool_buff_hdr",553,"off")=4816 + Set gtmtypes("shmpool_buff_hdr",553,"len")=8 + Set gtmtypes("shmpool_buff_hdr",553,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_epoch_idle")=553 + Set gtmtypes("shmpool_buff_hdr",554,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_other" + Set gtmtypes("shmpool_buff_hdr",554,"off")=4824 + Set gtmtypes("shmpool_buff_hdr",554,"len")=8 + Set gtmtypes("shmpool_buff_hdr",554,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_other")=554 + Set gtmtypes("shmpool_buff_hdr",555,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_extends" + Set gtmtypes("shmpool_buff_hdr",555,"off")=4832 + Set gtmtypes("shmpool_buff_hdr",555,"len")=8 + Set gtmtypes("shmpool_buff_hdr",555,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_extends")=555 + Set gtmtypes("shmpool_buff_hdr",556,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_extends" + Set gtmtypes("shmpool_buff_hdr",556,"off")=4840 + Set gtmtypes("shmpool_buff_hdr",556,"len")=8 + Set gtmtypes("shmpool_buff_hdr",556,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_extends")=556 + Set gtmtypes("shmpool_buff_hdr",557,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_success" + Set gtmtypes("shmpool_buff_hdr",557,"off")=4848 + Set gtmtypes("shmpool_buff_hdr",557,"len")=8 + Set gtmtypes("shmpool_buff_hdr",557,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_success")=557 + Set gtmtypes("shmpool_buff_hdr",558,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crits_in_epch" + Set gtmtypes("shmpool_buff_hdr",558,"off")=4856 + Set gtmtypes("shmpool_buff_hdr",558,"len")=8 + Set gtmtypes("shmpool_buff_hdr",558,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crits_in_epch")=558 + Set gtmtypes("shmpool_buff_hdr",559,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_failed" + Set gtmtypes("shmpool_buff_hdr",559,"off")=4864 + Set gtmtypes("shmpool_buff_hdr",559,"len")=8 + Set gtmtypes("shmpool_buff_hdr",559,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_failed")=559 + Set gtmtypes("shmpool_buff_hdr",560,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_failed" + Set gtmtypes("shmpool_buff_hdr",560,"off")=4872 + Set gtmtypes("shmpool_buff_hdr",560,"len")=8 + Set gtmtypes("shmpool_buff_hdr",560,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_failed")=560 + Set gtmtypes("shmpool_buff_hdr",561,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("shmpool_buff_hdr",561,"off")=4880 + Set gtmtypes("shmpool_buff_hdr",561,"len")=8 + Set gtmtypes("shmpool_buff_hdr",561,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_que_slps")=561 + Set gtmtypes("shmpool_buff_hdr",562,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_que_slps" + Set gtmtypes("shmpool_buff_hdr",562,"off")=4888 + Set gtmtypes("shmpool_buff_hdr",562,"len")=8 + Set gtmtypes("shmpool_buff_hdr",562,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_que_slps")=562 + Set gtmtypes("shmpool_buff_hdr",563,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_yields" + Set gtmtypes("shmpool_buff_hdr",563,"off")=4896 + Set gtmtypes("shmpool_buff_hdr",563,"len")=8 + Set gtmtypes("shmpool_buff_hdr",563,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_yields")=563 + Set gtmtypes("shmpool_buff_hdr",564,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_yields" + Set gtmtypes("shmpool_buff_hdr",564,"off")=4904 + Set gtmtypes("shmpool_buff_hdr",564,"len")=8 + Set gtmtypes("shmpool_buff_hdr",564,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_yields")=564 + Set gtmtypes("shmpool_buff_hdr",565,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("shmpool_buff_hdr",565,"off")=4912 + Set gtmtypes("shmpool_buff_hdr",565,"len")=48 + Set gtmtypes("shmpool_buff_hdr",565,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec_filler_4k_plus_512")=565 + Set gtmtypes("shmpool_buff_hdr",566,"name")="shmpool_buff_hdr.shadow_file_header.filler_4k_plus_512" + Set gtmtypes("shmpool_buff_hdr",566,"off")=4960 + Set gtmtypes("shmpool_buff_hdr",566,"len")=368 + Set gtmtypes("shmpool_buff_hdr",566,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_4k_plus_512")=566 + Set gtmtypes("shmpool_buff_hdr",567,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_resync_strm_seqno" + Set gtmtypes("shmpool_buff_hdr",567,"off")=5328 + Set gtmtypes("shmpool_buff_hdr",567,"len")=128 + Set gtmtypes("shmpool_buff_hdr",567,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_resync_strm_seqno")=567 + Set gtmtypes("shmpool_buff_hdr",567,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",568,"name")="shmpool_buff_hdr.shadow_file_header.creation_db_ver" + Set gtmtypes("shmpool_buff_hdr",568,"off")=5456 + Set gtmtypes("shmpool_buff_hdr",568,"len")=4 + Set gtmtypes("shmpool_buff_hdr",568,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_db_ver")=568 + Set gtmtypes("shmpool_buff_hdr",569,"name")="shmpool_buff_hdr.shadow_file_header.creation_mdb_ver" + Set gtmtypes("shmpool_buff_hdr",569,"off")=5460 + Set gtmtypes("shmpool_buff_hdr",569,"len")=4 + Set gtmtypes("shmpool_buff_hdr",569,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_mdb_ver")=569 + Set gtmtypes("shmpool_buff_hdr",570,"name")="shmpool_buff_hdr.shadow_file_header.certified_for_upgrade_to" + Set gtmtypes("shmpool_buff_hdr",570,"off")=5464 + Set gtmtypes("shmpool_buff_hdr",570,"len")=4 + Set gtmtypes("shmpool_buff_hdr",570,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.certified_for_upgrade_to")=570 + Set gtmtypes("shmpool_buff_hdr",571,"name")="shmpool_buff_hdr.shadow_file_header.filler_5k" + Set gtmtypes("shmpool_buff_hdr",571,"off")=5468 + Set gtmtypes("shmpool_buff_hdr",571,"len")=4 + Set gtmtypes("shmpool_buff_hdr",571,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_5k")=571 + Set gtmtypes("shmpool_buff_hdr",572,"name")="shmpool_buff_hdr.shadow_file_header.secshr_ops_index_filler" + Set gtmtypes("shmpool_buff_hdr",572,"off")=5472 + Set gtmtypes("shmpool_buff_hdr",572,"len")=4 + Set gtmtypes("shmpool_buff_hdr",572,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.secshr_ops_index_filler")=572 + Set gtmtypes("shmpool_buff_hdr",573,"name")="shmpool_buff_hdr.shadow_file_header.secshr_ops_array_filler" + Set gtmtypes("shmpool_buff_hdr",573,"off")=5476 + Set gtmtypes("shmpool_buff_hdr",573,"len")=1020 + Set gtmtypes("shmpool_buff_hdr",573,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.secshr_ops_array_filler")=573 + Set gtmtypes("shmpool_buff_hdr",573,"dim")=255 + Set gtmtypes("shmpool_buff_hdr",574,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn" + Set gtmtypes("shmpool_buff_hdr",574,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",574,"len")=24 + Set gtmtypes("shmpool_buff_hdr",574,"type")="compswap_time_field" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn")=574 + Set gtmtypes("shmpool_buff_hdr",575,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch" + Set gtmtypes("shmpool_buff_hdr",575,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",575,"len")=8 + Set gtmtypes("shmpool_buff_hdr",575,"type")="global_latch_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch")=575 + Set gtmtypes("shmpool_buff_hdr",576,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u" + Set gtmtypes("shmpool_buff_hdr",576,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",576,"len")=8 + Set gtmtypes("shmpool_buff_hdr",576,"type")="union" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u")=576 + Set gtmtypes("shmpool_buff_hdr",577,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("shmpool_buff_hdr",577,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",577,"len")=8 + Set gtmtypes("shmpool_buff_hdr",577,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt")=577 + Set gtmtypes("shmpool_buff_hdr",578,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("shmpool_buff_hdr",578,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",578,"len")=8 + Set gtmtypes("shmpool_buff_hdr",578,"type")="struct" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts")=578 + Set gtmtypes("shmpool_buff_hdr",579,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("shmpool_buff_hdr",579,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",579,"len")=4 + Set gtmtypes("shmpool_buff_hdr",579,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid")=579 + Set gtmtypes("shmpool_buff_hdr",580,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("shmpool_buff_hdr",580,"off")=6500 + Set gtmtypes("shmpool_buff_hdr",580,"len")=4 + Set gtmtypes("shmpool_buff_hdr",580,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word")=580 + Set gtmtypes("shmpool_buff_hdr",581,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.hp_latch_space" + Set gtmtypes("shmpool_buff_hdr",581,"off")=6504 + Set gtmtypes("shmpool_buff_hdr",581,"len")=16 + Set gtmtypes("shmpool_buff_hdr",581,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.hp_latch_space")=581 + Set gtmtypes("shmpool_buff_hdr",581,"dim")=4 + Set gtmtypes("shmpool_buff_hdr",582,"name")="shmpool_buff_hdr.shadow_file_header.is_encrypted" + Set gtmtypes("shmpool_buff_hdr",582,"off")=6520 + Set gtmtypes("shmpool_buff_hdr",582,"len")=4 + Set gtmtypes("shmpool_buff_hdr",582,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.is_encrypted")=582 + Set gtmtypes("shmpool_buff_hdr",583,"name")="shmpool_buff_hdr.shadow_file_header.db_trigger_cycle" + Set gtmtypes("shmpool_buff_hdr",583,"off")=6524 + Set gtmtypes("shmpool_buff_hdr",583,"len")=4 + Set gtmtypes("shmpool_buff_hdr",583,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_trigger_cycle")=583 + Set gtmtypes("shmpool_buff_hdr",584,"name")="shmpool_buff_hdr.shadow_file_header.strm_reg_seqno" + Set gtmtypes("shmpool_buff_hdr",584,"off")=6528 + Set gtmtypes("shmpool_buff_hdr",584,"len")=128 + Set gtmtypes("shmpool_buff_hdr",584,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.strm_reg_seqno")=584 + Set gtmtypes("shmpool_buff_hdr",584,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",585,"name")="shmpool_buff_hdr.shadow_file_header.save_strm_reg_seqno" + Set gtmtypes("shmpool_buff_hdr",585,"off")=6656 + Set gtmtypes("shmpool_buff_hdr",585,"len")=128 + Set gtmtypes("shmpool_buff_hdr",585,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.save_strm_reg_seqno")=585 + Set gtmtypes("shmpool_buff_hdr",585,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",586,"name")="shmpool_buff_hdr.shadow_file_header.freeze_on_fail" + Set gtmtypes("shmpool_buff_hdr",586,"off")=6784 + Set gtmtypes("shmpool_buff_hdr",586,"len")=4 + Set gtmtypes("shmpool_buff_hdr",586,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.freeze_on_fail")=586 + Set gtmtypes("shmpool_buff_hdr",587,"name")="shmpool_buff_hdr.shadow_file_header.span_node_absent" + Set gtmtypes("shmpool_buff_hdr",587,"off")=6788 + Set gtmtypes("shmpool_buff_hdr",587,"len")=4 + Set gtmtypes("shmpool_buff_hdr",587,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.span_node_absent")=587 + Set gtmtypes("shmpool_buff_hdr",588,"name")="shmpool_buff_hdr.shadow_file_header.maxkeysz_assured" + Set gtmtypes("shmpool_buff_hdr",588,"off")=6792 + Set gtmtypes("shmpool_buff_hdr",588,"len")=4 + Set gtmtypes("shmpool_buff_hdr",588,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.maxkeysz_assured")=588 + Set gtmtypes("shmpool_buff_hdr",589,"name")="shmpool_buff_hdr.shadow_file_header.hasht_upgrade_needed" + Set gtmtypes("shmpool_buff_hdr",589,"off")=6796 + Set gtmtypes("shmpool_buff_hdr",589,"len")=4 + Set gtmtypes("shmpool_buff_hdr",589,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.hasht_upgrade_needed")=589 + Set gtmtypes("shmpool_buff_hdr",590,"name")="shmpool_buff_hdr.shadow_file_header.defer_allocate" + Set gtmtypes("shmpool_buff_hdr",590,"off")=6800 + Set gtmtypes("shmpool_buff_hdr",590,"len")=4 + Set gtmtypes("shmpool_buff_hdr",590,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.defer_allocate")=590 + Set gtmtypes("shmpool_buff_hdr",591,"name")="shmpool_buff_hdr.shadow_file_header.ftok_counter_halted" + Set gtmtypes("shmpool_buff_hdr",591,"off")=6804 + Set gtmtypes("shmpool_buff_hdr",591,"len")=4 + Set gtmtypes("shmpool_buff_hdr",591,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ftok_counter_halted")=591 + Set gtmtypes("shmpool_buff_hdr",592,"name")="shmpool_buff_hdr.shadow_file_header.access_counter_halted" + Set gtmtypes("shmpool_buff_hdr",592,"off")=6808 + Set gtmtypes("shmpool_buff_hdr",592,"len")=4 + Set gtmtypes("shmpool_buff_hdr",592,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.access_counter_halted")=592 + Set gtmtypes("shmpool_buff_hdr",593,"name")="shmpool_buff_hdr.shadow_file_header.filler_7k" + Set gtmtypes("shmpool_buff_hdr",593,"off")=6812 + Set gtmtypes("shmpool_buff_hdr",593,"len")=708 + Set gtmtypes("shmpool_buff_hdr",593,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_7k")=593 + Set gtmtypes("shmpool_buff_hdr",594,"name")="shmpool_buff_hdr.shadow_file_header.filler_8k" + Set gtmtypes("shmpool_buff_hdr",594,"off")=7520 + Set gtmtypes("shmpool_buff_hdr",594,"len")=1024 + Set gtmtypes("shmpool_buff_hdr",594,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_8k")=594 + ; + Set gtmtypes("show_reply")="struct" + Set gtmtypes("show_reply",0)=2 + Set gtmtypes("show_reply","len")=257 + Set gtmtypes("show_reply",1,"name")="show_reply.code" + Set gtmtypes("show_reply",1,"off")=0 + Set gtmtypes("show_reply",1,"len")=1 + Set gtmtypes("show_reply",1,"type")="char" + Set gtmtypfldindx("show_reply","code")=1 + Set gtmtypes("show_reply",2,"name")="show_reply.line" + Set gtmtypes("show_reply",2,"off")=1 + Set gtmtypes("show_reply",2,"len")=256 + Set gtmtypes("show_reply",2,"type")="char" + Set gtmtypfldindx("show_reply","line")=2 + ; + Set gtmtypes("show_request")="struct" + Set gtmtypes("show_request",0)=7 + Set gtmtypes("show_request","len")=44 + Set gtmtypes("show_request",1,"name")="show_request.code" + Set gtmtypes("show_request",1,"off")=0 + Set gtmtypes("show_request",1,"len")=1 + Set gtmtypes("show_request",1,"type")="char" + Set gtmtypfldindx("show_request","code")=1 + Set gtmtypes("show_request",2,"name")="show_request.rnum" + Set gtmtypes("show_request",2,"off")=1 + Set gtmtypes("show_request",2,"len")=1 + Set gtmtypes("show_request",2,"type")="char" + Set gtmtypfldindx("show_request","rnum")=2 + Set gtmtypes("show_request",3,"name")="show_request.all" + Set gtmtypes("show_request",3,"off")=2 + Set gtmtypes("show_request",3,"len")=1 + Set gtmtypes("show_request",3,"type")="char" + Set gtmtypfldindx("show_request","all")=3 + Set gtmtypes("show_request",4,"name")="show_request.wait" + Set gtmtypes("show_request",4,"off")=3 + Set gtmtypes("show_request",4,"len")=1 + Set gtmtypes("show_request",4,"type")="char" + Set gtmtypfldindx("show_request","wait")=4 + Set gtmtypes("show_request",5,"name")="show_request.pid" + Set gtmtypes("show_request",5,"off")=4 + Set gtmtypes("show_request",5,"len")=4 + Set gtmtypes("show_request",5,"type")="int" + Set gtmtypfldindx("show_request","pid")=5 + Set gtmtypes("show_request",6,"name")="show_request.nodelength" + Set gtmtypes("show_request",6,"off")=8 + Set gtmtypes("show_request",6,"len")=1 + Set gtmtypes("show_request",6,"type")="char" + Set gtmtypfldindx("show_request","nodelength")=6 + Set gtmtypes("show_request",7,"name")="show_request.node" + Set gtmtypes("show_request",7,"off")=9 + Set gtmtypes("show_request",7,"len")=32 + Set gtmtypes("show_request",7,"type")="char" + Set gtmtypfldindx("show_request","node")=7 + ; + Set gtmtypes("snapshot_context_t")="struct" + Set gtmtypes("snapshot_context_t",0)=13 + Set gtmtypes("snapshot_context_t","len")=4148 + Set gtmtypes("snapshot_context_t",1,"name")="snapshot_context_t.shdw_fd" + Set gtmtypes("snapshot_context_t",1,"off")=0 + Set gtmtypes("snapshot_context_t",1,"len")=4 + Set gtmtypes("snapshot_context_t",1,"type")="int" + Set gtmtypfldindx("snapshot_context_t","shdw_fd")=1 + Set gtmtypes("snapshot_context_t",2,"name")="snapshot_context_t.nl_shmid" + Set gtmtypes("snapshot_context_t",2,"off")=4 + Set gtmtypes("snapshot_context_t",2,"len")=4 + Set gtmtypes("snapshot_context_t",2,"type")="long" + Set gtmtypfldindx("snapshot_context_t","nl_shmid")=2 + Set gtmtypes("snapshot_context_t",3,"name")="snapshot_context_t.attach_shmid" + Set gtmtypes("snapshot_context_t",3,"off")=8 + Set gtmtypes("snapshot_context_t",3,"len")=4 + Set gtmtypes("snapshot_context_t",3,"type")="long" + Set gtmtypfldindx("snapshot_context_t","attach_shmid")=3 + Set gtmtypes("snapshot_context_t",4,"name")="snapshot_context_t.ss_shmcycle" + Set gtmtypes("snapshot_context_t",4,"off")=12 + Set gtmtypes("snapshot_context_t",4,"len")=4 + Set gtmtypes("snapshot_context_t",4,"type")="int" + Set gtmtypfldindx("snapshot_context_t","ss_shmcycle")=4 + Set gtmtypes("snapshot_context_t",5,"name")="snapshot_context_t.total_blks" + Set gtmtypes("snapshot_context_t",5,"off")=16 + Set gtmtypes("snapshot_context_t",5,"len")=4 + Set gtmtypes("snapshot_context_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","total_blks")=5 + Set gtmtypes("snapshot_context_t",6,"name")="snapshot_context_t.failure_errno" + Set gtmtypes("snapshot_context_t",6,"off")=20 + Set gtmtypes("snapshot_context_t",6,"len")=4 + Set gtmtypes("snapshot_context_t",6,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","failure_errno")=6 + Set gtmtypes("snapshot_context_t",7,"name")="snapshot_context_t.ss_shm_ptr" + Set gtmtypes("snapshot_context_t",7,"off")=24 + Set gtmtypes("snapshot_context_t",7,"len")=4 + Set gtmtypes("snapshot_context_t",7,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","ss_shm_ptr")=7 + Set gtmtypes("snapshot_context_t",8,"name")="snapshot_context_t.start_shmaddr" + Set gtmtypes("snapshot_context_t",8,"off")=28 + Set gtmtypes("snapshot_context_t",8,"len")=4 + Set gtmtypes("snapshot_context_t",8,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","start_shmaddr")=8 + Set gtmtypes("snapshot_context_t",9,"name")="snapshot_context_t.bitmap_addr" + Set gtmtypes("snapshot_context_t",9,"off")=32 + Set gtmtypes("snapshot_context_t",9,"len")=4 + Set gtmtypes("snapshot_context_t",9,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","bitmap_addr")=9 + Set gtmtypes("snapshot_context_t",10,"name")="snapshot_context_t.shadow_vbn" + Set gtmtypes("snapshot_context_t",10,"off")=36 + Set gtmtypes("snapshot_context_t",10,"len")=4 + Set gtmtypes("snapshot_context_t",10,"type")="int" + Set gtmtypfldindx("snapshot_context_t","shadow_vbn")=10 + Set gtmtypes("snapshot_context_t",11,"name")="snapshot_context_t.shadow_file" + Set gtmtypes("snapshot_context_t",11,"off")=40 + Set gtmtypes("snapshot_context_t",11,"len")=4097 + Set gtmtypes("snapshot_context_t",11,"type")="char" + Set gtmtypfldindx("snapshot_context_t","shadow_file")=11 + Set gtmtypes("snapshot_context_t",12,"name")="snapshot_context_t.cur_state" + Set gtmtypes("snapshot_context_t",12,"off")=4140 + Set gtmtypes("snapshot_context_t",12,"len")=4 + Set gtmtypes("snapshot_context_t",12,"type")="int" + Set gtmtypfldindx("snapshot_context_t","cur_state")=12 + Set gtmtypes("snapshot_context_t",13,"name")="snapshot_context_t.proc_property" + Set gtmtypes("snapshot_context_t",13,"off")=4144 + Set gtmtypes("snapshot_context_t",13,"len")=4 + Set gtmtypes("snapshot_context_t",13,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","proc_property")=13 + ; + Set gtmtypes("snapshot_filhdr_t")="struct" + Set gtmtypes("snapshot_filhdr_t",0)=13 + Set gtmtypes("snapshot_filhdr_t","len")=5128 + Set gtmtypes("snapshot_filhdr_t",1,"name")="snapshot_filhdr_t.label" + Set gtmtypes("snapshot_filhdr_t",1,"off")=0 + Set gtmtypes("snapshot_filhdr_t",1,"len")=10 + Set gtmtypes("snapshot_filhdr_t",1,"type")="char" + Set gtmtypfldindx("snapshot_filhdr_t","label")=1 + Set gtmtypes("snapshot_filhdr_t",2,"name")="snapshot_filhdr_t.ss_info" + Set gtmtypes("snapshot_filhdr_t",2,"off")=12 + Set gtmtypes("snapshot_filhdr_t",2,"len")=4136 + Set gtmtypes("snapshot_filhdr_t",2,"type")="snapshot_info_t" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info")=2 + Set gtmtypes("snapshot_filhdr_t",3,"name")="snapshot_filhdr_t.ss_info.ss_pid" + Set gtmtypes("snapshot_filhdr_t",3,"off")=12 + Set gtmtypes("snapshot_filhdr_t",3,"len")=4 + Set gtmtypes("snapshot_filhdr_t",3,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_pid")=3 + Set gtmtypes("snapshot_filhdr_t",4,"name")="snapshot_filhdr_t.ss_info.snapshot_tn" + Set gtmtypes("snapshot_filhdr_t",4,"off")=16 + Set gtmtypes("snapshot_filhdr_t",4,"len")=8 + Set gtmtypes("snapshot_filhdr_t",4,"type")="uint64_t" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.snapshot_tn")=4 + Set gtmtypes("snapshot_filhdr_t",5,"name")="snapshot_filhdr_t.ss_info.db_blk_size" + Set gtmtypes("snapshot_filhdr_t",5,"off")=24 + Set gtmtypes("snapshot_filhdr_t",5,"len")=4 + Set gtmtypes("snapshot_filhdr_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.db_blk_size")=5 + Set gtmtypes("snapshot_filhdr_t",6,"name")="snapshot_filhdr_t.ss_info.free_blks" + Set gtmtypes("snapshot_filhdr_t",6,"off")=28 + Set gtmtypes("snapshot_filhdr_t",6,"len")=4 + Set gtmtypes("snapshot_filhdr_t",6,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.free_blks")=6 + Set gtmtypes("snapshot_filhdr_t",7,"name")="snapshot_filhdr_t.ss_info.total_blks" + Set gtmtypes("snapshot_filhdr_t",7,"off")=32 + Set gtmtypes("snapshot_filhdr_t",7,"len")=4 + Set gtmtypes("snapshot_filhdr_t",7,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.total_blks")=7 + Set gtmtypes("snapshot_filhdr_t",8,"name")="snapshot_filhdr_t.ss_info.shadow_file" + Set gtmtypes("snapshot_filhdr_t",8,"off")=36 + Set gtmtypes("snapshot_filhdr_t",8,"len")=4097 + Set gtmtypes("snapshot_filhdr_t",8,"type")="char" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.shadow_file")=8 + Set gtmtypes("snapshot_filhdr_t",9,"name")="snapshot_filhdr_t.ss_info.shadow_vbn" + Set gtmtypes("snapshot_filhdr_t",9,"off")=4136 + Set gtmtypes("snapshot_filhdr_t",9,"len")=4 + Set gtmtypes("snapshot_filhdr_t",9,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.shadow_vbn")=9 + Set gtmtypes("snapshot_filhdr_t",10,"name")="snapshot_filhdr_t.ss_info.ss_shmid" + Set gtmtypes("snapshot_filhdr_t",10,"off")=4140 + Set gtmtypes("snapshot_filhdr_t",10,"len")=4 + Set gtmtypes("snapshot_filhdr_t",10,"type")="long" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_shmid")=10 + Set gtmtypes("snapshot_filhdr_t",11,"name")="snapshot_filhdr_t.ss_info.ss_shmsize" + Set gtmtypes("snapshot_filhdr_t",11,"off")=4144 + Set gtmtypes("snapshot_filhdr_t",11,"len")=4 + Set gtmtypes("snapshot_filhdr_t",11,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_shmsize")=11 + Set gtmtypes("snapshot_filhdr_t",12,"name")="snapshot_filhdr_t.shadow_file_len" + Set gtmtypes("snapshot_filhdr_t",12,"off")=4148 + Set gtmtypes("snapshot_filhdr_t",12,"len")=4 + Set gtmtypes("snapshot_filhdr_t",12,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","shadow_file_len")=12 + Set gtmtypes("snapshot_filhdr_t",13,"name")="snapshot_filhdr_t.filler" + Set gtmtypes("snapshot_filhdr_t",13,"off")=4152 + Set gtmtypes("snapshot_filhdr_t",13,"len")=976 + Set gtmtypes("snapshot_filhdr_t",13,"type")="unsigned-char" + Set gtmtypfldindx("snapshot_filhdr_t","filler")=13 + ; + Set gtmtypes("snapshot_info_t")="struct" + Set gtmtypes("snapshot_info_t",0)=9 + Set gtmtypes("snapshot_info_t","len")=4136 + Set gtmtypes("snapshot_info_t",1,"name")="snapshot_info_t.ss_pid" + Set gtmtypes("snapshot_info_t",1,"off")=0 + Set gtmtypes("snapshot_info_t",1,"len")=4 + Set gtmtypes("snapshot_info_t",1,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","ss_pid")=1 + Set gtmtypes("snapshot_info_t",2,"name")="snapshot_info_t.snapshot_tn" + Set gtmtypes("snapshot_info_t",2,"off")=4 + Set gtmtypes("snapshot_info_t",2,"len")=8 + Set gtmtypes("snapshot_info_t",2,"type")="uint64_t" + Set gtmtypfldindx("snapshot_info_t","snapshot_tn")=2 + Set gtmtypes("snapshot_info_t",3,"name")="snapshot_info_t.db_blk_size" + Set gtmtypes("snapshot_info_t",3,"off")=12 + Set gtmtypes("snapshot_info_t",3,"len")=4 + Set gtmtypes("snapshot_info_t",3,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","db_blk_size")=3 + Set gtmtypes("snapshot_info_t",4,"name")="snapshot_info_t.free_blks" + Set gtmtypes("snapshot_info_t",4,"off")=16 + Set gtmtypes("snapshot_info_t",4,"len")=4 + Set gtmtypes("snapshot_info_t",4,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","free_blks")=4 + Set gtmtypes("snapshot_info_t",5,"name")="snapshot_info_t.total_blks" + Set gtmtypes("snapshot_info_t",5,"off")=20 + Set gtmtypes("snapshot_info_t",5,"len")=4 + Set gtmtypes("snapshot_info_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","total_blks")=5 + Set gtmtypes("snapshot_info_t",6,"name")="snapshot_info_t.shadow_file" + Set gtmtypes("snapshot_info_t",6,"off")=24 + Set gtmtypes("snapshot_info_t",6,"len")=4097 + Set gtmtypes("snapshot_info_t",6,"type")="char" + Set gtmtypfldindx("snapshot_info_t","shadow_file")=6 + Set gtmtypes("snapshot_info_t",7,"name")="snapshot_info_t.shadow_vbn" + Set gtmtypes("snapshot_info_t",7,"off")=4124 + Set gtmtypes("snapshot_info_t",7,"len")=4 + Set gtmtypes("snapshot_info_t",7,"type")="int" + Set gtmtypfldindx("snapshot_info_t","shadow_vbn")=7 + Set gtmtypes("snapshot_info_t",8,"name")="snapshot_info_t.ss_shmid" + Set gtmtypes("snapshot_info_t",8,"off")=4128 + Set gtmtypes("snapshot_info_t",8,"len")=4 + Set gtmtypes("snapshot_info_t",8,"type")="long" + Set gtmtypfldindx("snapshot_info_t","ss_shmid")=8 + Set gtmtypes("snapshot_info_t",9,"name")="snapshot_info_t.ss_shmsize" + Set gtmtypes("snapshot_info_t",9,"off")=4132 + Set gtmtypes("snapshot_info_t",9,"len")=4 + Set gtmtypes("snapshot_info_t",9,"type")="int" + Set gtmtypfldindx("snapshot_info_t","ss_shmsize")=9 + ; + Set gtmtypes("socket_address")="struct" + Set gtmtypes("socket_address",0)=6 + Set gtmtypes("socket_address","len")=52 + Set gtmtypes("socket_address",1,"name")="socket_address.sa" + Set gtmtypes("socket_address",1,"off")=0 + Set gtmtypes("socket_address",1,"len")=4 + Set gtmtypes("socket_address",1,"type")="addr" + Set gtmtypfldindx("socket_address","sa")=1 + Set gtmtypes("socket_address",2,"name")="socket_address.ai" + Set gtmtypes("socket_address",2,"off")=4 + Set gtmtypes("socket_address",2,"len")=32 + Set gtmtypes("socket_address",2,"type")="struct" + Set gtmtypfldindx("socket_address","ai")=2 + Set gtmtypes("socket_address",3,"name")="socket_address.ai_head" + Set gtmtypes("socket_address",3,"off")=36 + Set gtmtypes("socket_address",3,"len")=4 + Set gtmtypes("socket_address",3,"type")="addr" + Set gtmtypfldindx("socket_address","ai_head")=3 + Set gtmtypes("socket_address",4,"name")="socket_address.port" + Set gtmtypes("socket_address",4,"off")=40 + Set gtmtypes("socket_address",4,"len")=2 + Set gtmtypes("socket_address",4,"type")="unsigned-short" + Set gtmtypfldindx("socket_address","port")=4 + Set gtmtypes("socket_address",5,"name")="socket_address.process" + Set gtmtypes("socket_address",5,"off")=44 + Set gtmtypes("socket_address",5,"len")=4 + Set gtmtypes("socket_address",5,"type")="pid_t" + Set gtmtypfldindx("socket_address","process")=5 + Set gtmtypes("socket_address",6,"name")="socket_address.saddr_ip" + Set gtmtypes("socket_address",6,"off")=48 + Set gtmtypes("socket_address",6,"len")=4 + Set gtmtypes("socket_address",6,"type")="addr" + Set gtmtypfldindx("socket_address","saddr_ip")=6 + ; + Set gtmtypes("socket_interrupt")="struct" + Set gtmtypes("socket_interrupt",0)=10 + Set gtmtypes("socket_interrupt","len")=36 + Set gtmtypes("socket_interrupt",1,"name")="socket_interrupt.end_time" + Set gtmtypes("socket_interrupt",1,"off")=0 + Set gtmtypes("socket_interrupt",1,"len")=8 + Set gtmtypes("socket_interrupt",1,"type")="ABS_TIME" + Set gtmtypfldindx("socket_interrupt","end_time")=1 + Set gtmtypes("socket_interrupt",2,"name")="socket_interrupt.end_time.at_sec" + Set gtmtypes("socket_interrupt",2,"off")=0 + Set gtmtypes("socket_interrupt",2,"len")=4 + Set gtmtypes("socket_interrupt",2,"type")="long" + Set gtmtypfldindx("socket_interrupt","end_time.at_sec")=2 + Set gtmtypes("socket_interrupt",3,"name")="socket_interrupt.end_time.at_usec" + Set gtmtypes("socket_interrupt",3,"off")=4 + Set gtmtypes("socket_interrupt",3,"len")=4 + Set gtmtypes("socket_interrupt",3,"type")="long" + Set gtmtypfldindx("socket_interrupt","end_time.at_usec")=3 + Set gtmtypes("socket_interrupt",4,"name")="socket_interrupt.who_saved" + Set gtmtypes("socket_interrupt",4,"off")=8 + Set gtmtypes("socket_interrupt",4,"len")=4 + Set gtmtypes("socket_interrupt",4,"type")="int" + Set gtmtypfldindx("socket_interrupt","who_saved")=4 + Set gtmtypes("socket_interrupt",5,"name")="socket_interrupt.max_bufflen" + Set gtmtypes("socket_interrupt",5,"off")=12 + Set gtmtypes("socket_interrupt",5,"len")=4 + Set gtmtypes("socket_interrupt",5,"type")="int" + Set gtmtypfldindx("socket_interrupt","max_bufflen")=5 + Set gtmtypes("socket_interrupt",6,"name")="socket_interrupt.bytes_read" + Set gtmtypes("socket_interrupt",6,"off")=16 + Set gtmtypes("socket_interrupt",6,"len")=4 + Set gtmtypes("socket_interrupt",6,"type")="int" + Set gtmtypfldindx("socket_interrupt","bytes_read")=6 + Set gtmtypes("socket_interrupt",7,"name")="socket_interrupt.chars_read" + Set gtmtypes("socket_interrupt",7,"off")=20 + Set gtmtypes("socket_interrupt",7,"len")=4 + Set gtmtypes("socket_interrupt",7,"type")="int" + Set gtmtypfldindx("socket_interrupt","chars_read")=7 + Set gtmtypes("socket_interrupt",8,"name")="socket_interrupt.end_time_valid" + Set gtmtypes("socket_interrupt",8,"off")=24 + Set gtmtypes("socket_interrupt",8,"len")=4 + Set gtmtypes("socket_interrupt",8,"type")="boolean_t" + Set gtmtypfldindx("socket_interrupt","end_time_valid")=8 + Set gtmtypes("socket_interrupt",9,"name")="socket_interrupt.ibfsize_specified" + Set gtmtypes("socket_interrupt",9,"off")=28 + Set gtmtypes("socket_interrupt",9,"len")=4 + Set gtmtypes("socket_interrupt",9,"type")="boolean_t" + Set gtmtypfldindx("socket_interrupt","ibfsize_specified")=9 + Set gtmtypes("socket_interrupt",10,"name")="socket_interrupt.newdsocket" + Set gtmtypes("socket_interrupt",10,"off")=32 + Set gtmtypes("socket_interrupt",10,"len")=4 + Set gtmtypes("socket_interrupt",10,"type")="addr" + Set gtmtypfldindx("socket_interrupt","newdsocket")=10 + ; + Set gtmtypes("socket_struct")="struct" + Set gtmtypes("socket_struct",0)=84 + Set gtmtypes("socket_struct","len")=2124 + Set gtmtypes("socket_struct",1,"name")="socket_struct.sd" + Set gtmtypes("socket_struct",1,"off")=0 + Set gtmtypes("socket_struct",1,"len")=4 + Set gtmtypes("socket_struct",1,"type")="int" + Set gtmtypfldindx("socket_struct","sd")=1 + Set gtmtypes("socket_struct",2,"name")="socket_struct.temp_sd" + Set gtmtypes("socket_struct",2,"off")=4 + Set gtmtypes("socket_struct",2,"len")=4 + Set gtmtypes("socket_struct",2,"type")="int" + Set gtmtypfldindx("socket_struct","temp_sd")=2 + Set gtmtypes("socket_struct",3,"name")="socket_struct.dev" + Set gtmtypes("socket_struct",3,"off")=8 + Set gtmtypes("socket_struct",3,"len")=4 + Set gtmtypes("socket_struct",3,"type")="addr" + Set gtmtypfldindx("socket_struct","dev")=3 + Set gtmtypes("socket_struct",4,"name")="socket_struct.passive" + Set gtmtypes("socket_struct",4,"off")=12 + Set gtmtypes("socket_struct",4,"len")=4 + Set gtmtypes("socket_struct",4,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","passive")=4 + Set gtmtypes("socket_struct",5,"name")="socket_struct.ioerror" + Set gtmtypes("socket_struct",5,"off")=16 + Set gtmtypes("socket_struct",5,"len")=4 + Set gtmtypes("socket_struct",5,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","ioerror")=5 + Set gtmtypes("socket_struct",6,"name")="socket_struct.urgent" + Set gtmtypes("socket_struct",6,"off")=20 + Set gtmtypes("socket_struct",6,"len")=4 + Set gtmtypes("socket_struct",6,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","urgent")=6 + Set gtmtypes("socket_struct",7,"name")="socket_struct.delim0containsLF" + Set gtmtypes("socket_struct",7,"off")=24 + Set gtmtypes("socket_struct",7,"len")=4 + Set gtmtypes("socket_struct",7,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","delim0containsLF")=7 + Set gtmtypes("socket_struct",8,"name")="socket_struct.state" + Set gtmtypes("socket_struct",8,"off")=28 + Set gtmtypes("socket_struct",8,"len")=4 + Set gtmtypes("socket_struct",8,"type")="int" + Set gtmtypfldindx("socket_struct","state")=8 + Set gtmtypes("socket_struct",9,"name")="socket_struct.protocol" + Set gtmtypes("socket_struct",9,"off")=32 + Set gtmtypes("socket_struct",9,"len")=4 + Set gtmtypes("socket_struct",9,"type")="int" + Set gtmtypfldindx("socket_struct","protocol")=9 + Set gtmtypes("socket_struct",10,"name")="socket_struct.local" + Set gtmtypes("socket_struct",10,"off")=36 + Set gtmtypes("socket_struct",10,"len")=52 + Set gtmtypes("socket_struct",10,"type")="socket_address" + Set gtmtypfldindx("socket_struct","local")=10 + Set gtmtypes("socket_struct",11,"name")="socket_struct.local.sa" + Set gtmtypes("socket_struct",11,"off")=36 + Set gtmtypes("socket_struct",11,"len")=4 + Set gtmtypes("socket_struct",11,"type")="addr" + Set gtmtypfldindx("socket_struct","local.sa")=11 + Set gtmtypes("socket_struct",12,"name")="socket_struct.local.ai" + Set gtmtypes("socket_struct",12,"off")=40 + Set gtmtypes("socket_struct",12,"len")=32 + Set gtmtypes("socket_struct",12,"type")="struct" + Set gtmtypfldindx("socket_struct","local.ai")=12 + Set gtmtypes("socket_struct",13,"name")="socket_struct.local.ai_head" + Set gtmtypes("socket_struct",13,"off")=72 + Set gtmtypes("socket_struct",13,"len")=4 + Set gtmtypes("socket_struct",13,"type")="addr" + Set gtmtypfldindx("socket_struct","local.ai_head")=13 + Set gtmtypes("socket_struct",14,"name")="socket_struct.local.port" + Set gtmtypes("socket_struct",14,"off")=76 + Set gtmtypes("socket_struct",14,"len")=2 + Set gtmtypes("socket_struct",14,"type")="unsigned-short" + Set gtmtypfldindx("socket_struct","local.port")=14 + Set gtmtypes("socket_struct",15,"name")="socket_struct.local.process" + Set gtmtypes("socket_struct",15,"off")=80 + Set gtmtypes("socket_struct",15,"len")=4 + Set gtmtypes("socket_struct",15,"type")="pid_t" + Set gtmtypfldindx("socket_struct","local.process")=15 + Set gtmtypes("socket_struct",16,"name")="socket_struct.local.saddr_ip" + Set gtmtypes("socket_struct",16,"off")=84 + Set gtmtypes("socket_struct",16,"len")=4 + Set gtmtypes("socket_struct",16,"type")="addr" + Set gtmtypfldindx("socket_struct","local.saddr_ip")=16 + Set gtmtypes("socket_struct",17,"name")="socket_struct.remote" + Set gtmtypes("socket_struct",17,"off")=88 + Set gtmtypes("socket_struct",17,"len")=52 + Set gtmtypes("socket_struct",17,"type")="socket_address" + Set gtmtypfldindx("socket_struct","remote")=17 + Set gtmtypes("socket_struct",18,"name")="socket_struct.remote.sa" + Set gtmtypes("socket_struct",18,"off")=88 + Set gtmtypes("socket_struct",18,"len")=4 + Set gtmtypes("socket_struct",18,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.sa")=18 + Set gtmtypes("socket_struct",19,"name")="socket_struct.remote.ai" + Set gtmtypes("socket_struct",19,"off")=92 + Set gtmtypes("socket_struct",19,"len")=32 + Set gtmtypes("socket_struct",19,"type")="struct" + Set gtmtypfldindx("socket_struct","remote.ai")=19 + Set gtmtypes("socket_struct",20,"name")="socket_struct.remote.ai_head" + Set gtmtypes("socket_struct",20,"off")=124 + Set gtmtypes("socket_struct",20,"len")=4 + Set gtmtypes("socket_struct",20,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.ai_head")=20 + Set gtmtypes("socket_struct",21,"name")="socket_struct.remote.port" + Set gtmtypes("socket_struct",21,"off")=128 + Set gtmtypes("socket_struct",21,"len")=2 + Set gtmtypes("socket_struct",21,"type")="unsigned-short" + Set gtmtypfldindx("socket_struct","remote.port")=21 + Set gtmtypes("socket_struct",22,"name")="socket_struct.remote.process" + Set gtmtypes("socket_struct",22,"off")=132 + Set gtmtypes("socket_struct",22,"len")=4 + Set gtmtypes("socket_struct",22,"type")="pid_t" + Set gtmtypfldindx("socket_struct","remote.process")=22 + Set gtmtypes("socket_struct",23,"name")="socket_struct.remote.saddr_ip" + Set gtmtypes("socket_struct",23,"off")=136 + Set gtmtypes("socket_struct",23,"len")=4 + Set gtmtypes("socket_struct",23,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.saddr_ip")=23 + Set gtmtypes("socket_struct",24,"name")="socket_struct.lastop" + Set gtmtypes("socket_struct",24,"off")=140 + Set gtmtypes("socket_struct",24,"len")=4 + Set gtmtypes("socket_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","lastop")=24 + Set gtmtypes("socket_struct",25,"name")="socket_struct.moreread_timeout" + Set gtmtypes("socket_struct",25,"off")=144 + Set gtmtypes("socket_struct",25,"len")=4 + Set gtmtypes("socket_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","moreread_timeout")=25 + Set gtmtypes("socket_struct",26,"name")="socket_struct.handle" + Set gtmtypes("socket_struct",26,"off")=148 + Set gtmtypes("socket_struct",26,"len")=256 + Set gtmtypes("socket_struct",26,"type")="char" + Set gtmtypfldindx("socket_struct","handle")=26 + Set gtmtypes("socket_struct",27,"name")="socket_struct.handle_len" + Set gtmtypes("socket_struct",27,"off")=404 + Set gtmtypes("socket_struct",27,"len")=4 + Set gtmtypes("socket_struct",27,"type")="int" + Set gtmtypfldindx("socket_struct","handle_len")=27 + Set gtmtypes("socket_struct",28,"name")="socket_struct.bufsiz" + Set gtmtypes("socket_struct",28,"off")=408 + Set gtmtypes("socket_struct",28,"len")=4 + Set gtmtypes("socket_struct",28,"type")="int" + Set gtmtypfldindx("socket_struct","bufsiz")=28 + Set gtmtypes("socket_struct",29,"name")="socket_struct.n_delimiter" + Set gtmtypes("socket_struct",29,"off")=412 + Set gtmtypes("socket_struct",29,"len")=4 + Set gtmtypes("socket_struct",29,"type")="int" + Set gtmtypfldindx("socket_struct","n_delimiter")=29 + Set gtmtypes("socket_struct",30,"name")="socket_struct.last_recv_errno" + Set gtmtypes("socket_struct",30,"off")=416 + Set gtmtypes("socket_struct",30,"len")=4 + Set gtmtypes("socket_struct",30,"type")="int" + Set gtmtypfldindx("socket_struct","last_recv_errno")=30 + Set gtmtypes("socket_struct",31,"name")="socket_struct.delimiter" + Set gtmtypes("socket_struct",31,"off")=420 + Set gtmtypes("socket_struct",31,"len")=768 + Set gtmtypes("socket_struct",31,"type")="mstr" + Set gtmtypfldindx("socket_struct","delimiter")=31 + Set gtmtypes("socket_struct",31,"dim")=64 + Set gtmtypes("socket_struct",32,"name")="socket_struct.delimiter[0].char_len" + Set gtmtypes("socket_struct",32,"off")=420 + Set gtmtypes("socket_struct",32,"len")=4 + Set gtmtypes("socket_struct",32,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","delimiter[0].char_len")=32 + Set gtmtypes("socket_struct",33,"name")="socket_struct.delimiter[0].len" + Set gtmtypes("socket_struct",33,"off")=424 + Set gtmtypes("socket_struct",33,"len")=4 + Set gtmtypes("socket_struct",33,"type")="int" + Set gtmtypfldindx("socket_struct","delimiter[0].len")=33 + Set gtmtypes("socket_struct",34,"name")="socket_struct.delimiter[0].addr" + Set gtmtypes("socket_struct",34,"off")=428 + Set gtmtypes("socket_struct",34,"len")=4 + Set gtmtypes("socket_struct",34,"type")="addr" + Set gtmtypfldindx("socket_struct","delimiter[0].addr")=34 + Set gtmtypes("socket_struct",35,"name")="socket_struct.idelimiter" + Set gtmtypes("socket_struct",35,"off")=1188 + Set gtmtypes("socket_struct",35,"len")=768 + Set gtmtypes("socket_struct",35,"type")="mstr" + Set gtmtypfldindx("socket_struct","idelimiter")=35 + Set gtmtypes("socket_struct",35,"dim")=64 + Set gtmtypes("socket_struct",36,"name")="socket_struct.idelimiter[0].char_len" + Set gtmtypes("socket_struct",36,"off")=1188 + Set gtmtypes("socket_struct",36,"len")=4 + Set gtmtypes("socket_struct",36,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","idelimiter[0].char_len")=36 + Set gtmtypes("socket_struct",37,"name")="socket_struct.idelimiter[0].len" + Set gtmtypes("socket_struct",37,"off")=1192 + Set gtmtypes("socket_struct",37,"len")=4 + Set gtmtypes("socket_struct",37,"type")="int" + Set gtmtypfldindx("socket_struct","idelimiter[0].len")=37 + Set gtmtypes("socket_struct",38,"name")="socket_struct.idelimiter[0].addr" + Set gtmtypes("socket_struct",38,"off")=1196 + Set gtmtypes("socket_struct",38,"len")=4 + Set gtmtypes("socket_struct",38,"type")="addr" + Set gtmtypfldindx("socket_struct","idelimiter[0].addr")=38 + Set gtmtypes("socket_struct",39,"name")="socket_struct.odelimiter0" + Set gtmtypes("socket_struct",39,"off")=1956 + Set gtmtypes("socket_struct",39,"len")=12 + Set gtmtypes("socket_struct",39,"type")="mstr" + Set gtmtypfldindx("socket_struct","odelimiter0")=39 + Set gtmtypes("socket_struct",40,"name")="socket_struct.odelimiter0.char_len" + Set gtmtypes("socket_struct",40,"off")=1956 + Set gtmtypes("socket_struct",40,"len")=4 + Set gtmtypes("socket_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","odelimiter0.char_len")=40 + Set gtmtypes("socket_struct",41,"name")="socket_struct.odelimiter0.len" + Set gtmtypes("socket_struct",41,"off")=1960 + Set gtmtypes("socket_struct",41,"len")=4 + Set gtmtypes("socket_struct",41,"type")="int" + Set gtmtypfldindx("socket_struct","odelimiter0.len")=41 + Set gtmtypes("socket_struct",42,"name")="socket_struct.odelimiter0.addr" + Set gtmtypes("socket_struct",42,"off")=1964 + Set gtmtypes("socket_struct",42,"len")=4 + Set gtmtypes("socket_struct",42,"type")="addr" + Set gtmtypfldindx("socket_struct","odelimiter0.addr")=42 + Set gtmtypes("socket_struct",43,"name")="socket_struct.buffer_size" + Set gtmtypes("socket_struct",43,"off")=1968 + Set gtmtypes("socket_struct",43,"len")=4 + Set gtmtypes("socket_struct",43,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffer_size")=43 + Set gtmtypes("socket_struct",44,"name")="socket_struct.buffered_length" + Set gtmtypes("socket_struct",44,"off")=1972 + Set gtmtypes("socket_struct",44,"len")=4 + Set gtmtypes("socket_struct",44,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffered_length")=44 + Set gtmtypes("socket_struct",45,"name")="socket_struct.buffered_offset" + Set gtmtypes("socket_struct",45,"off")=1976 + Set gtmtypes("socket_struct",45,"len")=4 + Set gtmtypes("socket_struct",45,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffered_offset")=45 + Set gtmtypes("socket_struct",46,"name")="socket_struct.buffer" + Set gtmtypes("socket_struct",46,"off")=1980 + Set gtmtypes("socket_struct",46,"len")=4 + Set gtmtypes("socket_struct",46,"type")="addr" + Set gtmtypfldindx("socket_struct","buffer")=46 + Set gtmtypes("socket_struct",47,"name")="socket_struct.nodelay" + Set gtmtypes("socket_struct",47,"off")=1984 + Set gtmtypes("socket_struct",47,"len")=4 + Set gtmtypes("socket_struct",47,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","nodelay")=47 + Set gtmtypes("socket_struct",48,"name")="socket_struct.first_read" + Set gtmtypes("socket_struct",48,"off")=1988 + Set gtmtypes("socket_struct",48,"len")=4 + Set gtmtypes("socket_struct",48,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","first_read")=48 + Set gtmtypes("socket_struct",49,"name")="socket_struct.first_write" + Set gtmtypes("socket_struct",49,"off")=1992 + Set gtmtypes("socket_struct",49,"len")=4 + Set gtmtypes("socket_struct",49,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","first_write")=49 + Set gtmtypes("socket_struct",50,"name")="socket_struct.def_moreread_timeout" + Set gtmtypes("socket_struct",50,"off")=1996 + Set gtmtypes("socket_struct",50,"len")=4 + Set gtmtypes("socket_struct",50,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","def_moreread_timeout")=50 + Set gtmtypes("socket_struct",51,"name")="socket_struct.passtype" + Set gtmtypes("socket_struct",51,"off")=2000 + Set gtmtypes("socket_struct",51,"len")=4 + Set gtmtypes("socket_struct",51,"type")="int" + Set gtmtypfldindx("socket_struct","passtype")=51 + Set gtmtypes("socket_struct",52,"name")="socket_struct.filemode" + Set gtmtypes("socket_struct",52,"off")=2004 + Set gtmtypes("socket_struct",52,"len")=4 + Set gtmtypes("socket_struct",52,"type")="uint" + Set gtmtypfldindx("socket_struct","filemode")=52 + Set gtmtypes("socket_struct",53,"name")="socket_struct.filemode_mask" + Set gtmtypes("socket_struct",53,"off")=2008 + Set gtmtypes("socket_struct",53,"len")=4 + Set gtmtypes("socket_struct",53,"type")="uint" + Set gtmtypfldindx("socket_struct","filemode_mask")=53 + Set gtmtypes("socket_struct",54,"name")="socket_struct.uic" + Set gtmtypes("socket_struct",54,"off")=2012 + Set gtmtypes("socket_struct",54,"len")=8 + Set gtmtypes("socket_struct",54,"type")="uic_struct_int" + Set gtmtypfldindx("socket_struct","uic")=54 + Set gtmtypes("socket_struct",55,"name")="socket_struct.uic.mem" + Set gtmtypes("socket_struct",55,"off")=2012 + Set gtmtypes("socket_struct",55,"len")=4 + Set gtmtypes("socket_struct",55,"type")="uid_t" + Set gtmtypfldindx("socket_struct","uic.mem")=55 + Set gtmtypes("socket_struct",56,"name")="socket_struct.uic.grp" + Set gtmtypes("socket_struct",56,"off")=2016 + Set gtmtypes("socket_struct",56,"len")=4 + Set gtmtypes("socket_struct",56,"type")="gid_t" + Set gtmtypfldindx("socket_struct","uic.grp")=56 + Set gtmtypes("socket_struct",57,"name")="socket_struct.zff" + Set gtmtypes("socket_struct",57,"off")=2020 + Set gtmtypes("socket_struct",57,"len")=12 + Set gtmtypes("socket_struct",57,"type")="mstr" + Set gtmtypfldindx("socket_struct","zff")=57 + Set gtmtypes("socket_struct",58,"name")="socket_struct.zff.char_len" + Set gtmtypes("socket_struct",58,"off")=2020 + Set gtmtypes("socket_struct",58,"len")=4 + Set gtmtypes("socket_struct",58,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","zff.char_len")=58 + Set gtmtypes("socket_struct",59,"name")="socket_struct.zff.len" + Set gtmtypes("socket_struct",59,"off")=2024 + Set gtmtypes("socket_struct",59,"len")=4 + Set gtmtypes("socket_struct",59,"type")="int" + Set gtmtypfldindx("socket_struct","zff.len")=59 + Set gtmtypes("socket_struct",60,"name")="socket_struct.zff.addr" + Set gtmtypes("socket_struct",60,"off")=2028 + Set gtmtypes("socket_struct",60,"len")=4 + Set gtmtypes("socket_struct",60,"type")="addr" + Set gtmtypfldindx("socket_struct","zff.addr")=60 + Set gtmtypes("socket_struct",61,"name")="socket_struct.ozff" + Set gtmtypes("socket_struct",61,"off")=2032 + Set gtmtypes("socket_struct",61,"len")=12 + Set gtmtypes("socket_struct",61,"type")="mstr" + Set gtmtypfldindx("socket_struct","ozff")=61 + Set gtmtypes("socket_struct",62,"name")="socket_struct.ozff.char_len" + Set gtmtypes("socket_struct",62,"off")=2032 + Set gtmtypes("socket_struct",62,"len")=4 + Set gtmtypes("socket_struct",62,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","ozff.char_len")=62 + Set gtmtypes("socket_struct",63,"name")="socket_struct.ozff.len" + Set gtmtypes("socket_struct",63,"off")=2036 + Set gtmtypes("socket_struct",63,"len")=4 + Set gtmtypes("socket_struct",63,"type")="int" + Set gtmtypfldindx("socket_struct","ozff.len")=63 + Set gtmtypes("socket_struct",64,"name")="socket_struct.ozff.addr" + Set gtmtypes("socket_struct",64,"off")=2040 + Set gtmtypes("socket_struct",64,"len")=4 + Set gtmtypes("socket_struct",64,"type")="addr" + Set gtmtypfldindx("socket_struct","ozff.addr")=64 + Set gtmtypes("socket_struct",65,"name")="socket_struct.lastaction" + Set gtmtypes("socket_struct",65,"off")=2044 + Set gtmtypes("socket_struct",65,"len")=4 + Set gtmtypes("socket_struct",65,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","lastaction")=65 + Set gtmtypes("socket_struct",66,"name")="socket_struct.readycycle" + Set gtmtypes("socket_struct",66,"off")=2048 + Set gtmtypes("socket_struct",66,"len")=4 + Set gtmtypes("socket_struct",66,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","readycycle")=66 + Set gtmtypes("socket_struct",67,"name")="socket_struct.pendingevent" + Set gtmtypes("socket_struct",67,"off")=2052 + Set gtmtypes("socket_struct",67,"len")=4 + Set gtmtypes("socket_struct",67,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","pendingevent")=67 + Set gtmtypes("socket_struct",68,"name")="socket_struct.howcreated" + Set gtmtypes("socket_struct",68,"off")=2056 + Set gtmtypes("socket_struct",68,"len")=4 + Set gtmtypes("socket_struct",68,"type")="int" + Set gtmtypfldindx("socket_struct","howcreated")=68 + Set gtmtypes("socket_struct",69,"name")="socket_struct.parenthandle" + Set gtmtypes("socket_struct",69,"off")=2060 + Set gtmtypes("socket_struct",69,"len")=4 + Set gtmtypes("socket_struct",69,"type")="addr" + Set gtmtypfldindx("socket_struct","parenthandle")=69 + Set gtmtypes("socket_struct",70,"name")="socket_struct.obuffer_size" + Set gtmtypes("socket_struct",70,"off")=2064 + Set gtmtypes("socket_struct",70,"len")=4 + Set gtmtypes("socket_struct",70,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_size")=70 + Set gtmtypes("socket_struct",71,"name")="socket_struct.obuffer_length" + Set gtmtypes("socket_struct",71,"off")=2068 + Set gtmtypes("socket_struct",71,"len")=4 + Set gtmtypes("socket_struct",71,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_length")=71 + Set gtmtypes("socket_struct",72,"name")="socket_struct.obuffer_offset" + Set gtmtypes("socket_struct",72,"off")=2072 + Set gtmtypes("socket_struct",72,"len")=4 + Set gtmtypes("socket_struct",72,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_offset")=72 + Set gtmtypes("socket_struct",73,"name")="socket_struct.obuffer_timer_set" + Set gtmtypes("socket_struct",73,"off")=2076 + Set gtmtypes("socket_struct",73,"len")=4 + Set gtmtypes("socket_struct",73,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","obuffer_timer_set")=73 + Set gtmtypes("socket_struct",74,"name")="socket_struct.obuffer_output_active" + Set gtmtypes("socket_struct",74,"off")=2080 + Set gtmtypes("socket_struct",74,"len")=4 + Set gtmtypes("socket_struct",74,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","obuffer_output_active")=74 + Set gtmtypes("socket_struct",75,"name")="socket_struct.obuffer_flush_time" + Set gtmtypes("socket_struct",75,"off")=2084 + Set gtmtypes("socket_struct",75,"len")=4 + Set gtmtypes("socket_struct",75,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_flush_time")=75 + Set gtmtypes("socket_struct",76,"name")="socket_struct.obuffer_wait_time" + Set gtmtypes("socket_struct",76,"off")=2088 + Set gtmtypes("socket_struct",76,"len")=4 + Set gtmtypes("socket_struct",76,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_wait_time")=76 + Set gtmtypes("socket_struct",77,"name")="socket_struct.obuffer_errno" + Set gtmtypes("socket_struct",77,"off")=2092 + Set gtmtypes("socket_struct",77,"len")=4 + Set gtmtypes("socket_struct",77,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_errno")=77 + Set gtmtypes("socket_struct",78,"name")="socket_struct.obuffer" + Set gtmtypes("socket_struct",78,"off")=2096 + Set gtmtypes("socket_struct",78,"len")=4 + Set gtmtypes("socket_struct",78,"type")="addr" + Set gtmtypfldindx("socket_struct","obuffer")=78 + Set gtmtypes("socket_struct",79,"name")="socket_struct.nonblocking" + Set gtmtypes("socket_struct",79,"off")=2100 + Set gtmtypes("socket_struct",79,"len")=4 + Set gtmtypes("socket_struct",79,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","nonblocking")=79 + Set gtmtypes("socket_struct",80,"name")="socket_struct.tlsenabled" + Set gtmtypes("socket_struct",80,"off")=2104 + Set gtmtypes("socket_struct",80,"len")=4 + Set gtmtypes("socket_struct",80,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlsenabled")=80 + Set gtmtypes("socket_struct",81,"name")="socket_struct.tlssocket" + Set gtmtypes("socket_struct",81,"off")=2108 + Set gtmtypes("socket_struct",81,"len")=4 + Set gtmtypes("socket_struct",81,"type")="addr" + Set gtmtypfldindx("socket_struct","tlssocket")=81 + Set gtmtypes("socket_struct",82,"name")="socket_struct.tlsreadblocked" + Set gtmtypes("socket_struct",82,"off")=2112 + Set gtmtypes("socket_struct",82,"len")=4 + Set gtmtypes("socket_struct",82,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlsreadblocked")=82 + Set gtmtypes("socket_struct",83,"name")="socket_struct.tlswriteblocked" + Set gtmtypes("socket_struct",83,"off")=2116 + Set gtmtypes("socket_struct",83,"len")=4 + Set gtmtypes("socket_struct",83,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlswriteblocked")=83 + Set gtmtypes("socket_struct",84,"name")="socket_struct.tlspolldirection" + Set gtmtypes("socket_struct",84,"off")=2120 + Set gtmtypes("socket_struct",84,"len")=2 + Set gtmtypes("socket_struct",84,"type")="short" + Set gtmtypfldindx("socket_struct","tlspolldirection")=84 + ; + Set gtmtypes("source_address")="struct" + Set gtmtypes("source_address",0)=2 + Set gtmtypes("source_address","len")=8 + Set gtmtypes("source_address",1,"name")="source_address.line" + Set gtmtypes("source_address",1,"off")=0 + Set gtmtypes("source_address",1,"len")=4 + Set gtmtypes("source_address",1,"type")="unsigned-int" + Set gtmtypfldindx("source_address","line")=1 + Set gtmtypes("source_address",2,"name")="source_address.column" + Set gtmtypes("source_address",2,"off")=4 + Set gtmtypes("source_address",2,"len")=4 + Set gtmtypes("source_address",2,"type")="unsigned-int" + Set gtmtypfldindx("source_address","column")=2 + ; + Set gtmtypes("span_node_integ")="struct" + Set gtmtypes("span_node_integ",0)=11 + Set gtmtypes("span_node_integ","len")=1064 + Set gtmtypes("span_node_integ",1,"name")="span_node_integ.sn_type" + Set gtmtypes("span_node_integ",1,"off")=0 + Set gtmtypes("span_node_integ",1,"len")=4 + Set gtmtypes("span_node_integ",1,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_type")=1 + Set gtmtypes("span_node_integ",2,"name")="span_node_integ.span_prev_blk" + Set gtmtypes("span_node_integ",2,"off")=4 + Set gtmtypes("span_node_integ",2,"len")=4 + Set gtmtypes("span_node_integ",2,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_prev_blk")=2 + Set gtmtypes("span_node_integ",3,"name")="span_node_integ.span_blk_cnt" + Set gtmtypes("span_node_integ",3,"off")=8 + Set gtmtypes("span_node_integ",3,"len")=4 + Set gtmtypes("span_node_integ",3,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_blk_cnt")=3 + Set gtmtypes("span_node_integ",4,"name")="span_node_integ.span_tot_blks" + Set gtmtypes("span_node_integ",4,"off")=12 + Set gtmtypes("span_node_integ",4,"len")=4 + Set gtmtypes("span_node_integ",4,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_tot_blks")=4 + Set gtmtypes("span_node_integ",5,"name")="span_node_integ.span_node_sz" + Set gtmtypes("span_node_integ",5,"off")=16 + Set gtmtypes("span_node_integ",5,"len")=4 + Set gtmtypes("span_node_integ",5,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_node_sz")=5 + Set gtmtypes("span_node_integ",6,"name")="span_node_integ.span_frag_off" + Set gtmtypes("span_node_integ",6,"off")=20 + Set gtmtypes("span_node_integ",6,"len")=4 + Set gtmtypes("span_node_integ",6,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_frag_off")=6 + Set gtmtypes("span_node_integ",7,"name")="span_node_integ.key_len" + Set gtmtypes("span_node_integ",7,"off")=24 + Set gtmtypes("span_node_integ",7,"len")=4 + Set gtmtypes("span_node_integ",7,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","key_len")=7 + Set gtmtypes("span_node_integ",8,"name")="span_node_integ.val_len" + Set gtmtypes("span_node_integ",8,"off")=28 + Set gtmtypes("span_node_integ",8,"len")=4 + Set gtmtypes("span_node_integ",8,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","val_len")=8 + Set gtmtypes("span_node_integ",9,"name")="span_node_integ.sn_cnt" + Set gtmtypes("span_node_integ",9,"off")=32 + Set gtmtypes("span_node_integ",9,"len")=4 + Set gtmtypes("span_node_integ",9,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_cnt")=9 + Set gtmtypes("span_node_integ",10,"name")="span_node_integ.sn_blk_cnt" + Set gtmtypes("span_node_integ",10,"off")=36 + Set gtmtypes("span_node_integ",10,"len")=4 + Set gtmtypes("span_node_integ",10,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_blk_cnt")=10 + Set gtmtypes("span_node_integ",11,"name")="span_node_integ.span_node_buf" + Set gtmtypes("span_node_integ",11,"off")=40 + Set gtmtypes("span_node_integ",11,"len")=1023 + Set gtmtypes("span_node_integ",11,"type")="unsigned-char" + Set gtmtypfldindx("span_node_integ","span_node_buf")=11 + ; + Set gtmtypes("span_parms")="struct" + Set gtmtypes("span_parms",0)=10 + Set gtmtypes("span_parms","len")=40 + Set gtmtypes("span_parms",1,"name")="span_parms.span_status" + Set gtmtypes("span_parms",1,"off")=0 + Set gtmtypes("span_parms",1,"len")=4 + Set gtmtypes("span_parms",1,"type")="boolean_t" + Set gtmtypfldindx("span_parms","span_status")=1 + Set gtmtypes("span_parms",2,"name")="span_parms.enable_jnl_format" + Set gtmtypes("span_parms",2,"off")=4 + Set gtmtypes("span_parms",2,"len")=4 + Set gtmtypes("span_parms",2,"type")="boolean_t" + Set gtmtypfldindx("span_parms","enable_jnl_format")=2 + Set gtmtypes("span_parms",3,"name")="span_parms.enable_trigger_read_and_fire" + Set gtmtypes("span_parms",3,"off")=8 + Set gtmtypes("span_parms",3,"len")=4 + Set gtmtypes("span_parms",3,"type")="boolean_t" + Set gtmtypfldindx("span_parms","enable_trigger_read_and_fire")=3 + Set gtmtypes("span_parms",4,"name")="span_parms.ztval_gvcst_put_redo" + Set gtmtypes("span_parms",4,"off")=12 + Set gtmtypes("span_parms",4,"len")=4 + Set gtmtypes("span_parms",4,"type")="boolean_t" + Set gtmtypfldindx("span_parms","ztval_gvcst_put_redo")=4 + Set gtmtypes("span_parms",5,"name")="span_parms.val_forjnl" + Set gtmtypes("span_parms",5,"off")=16 + Set gtmtypes("span_parms",5,"len")=4 + Set gtmtypes("span_parms",5,"type")="addr" + Set gtmtypfldindx("span_parms","val_forjnl")=5 + Set gtmtypes("span_parms",6,"name")="span_parms.blk_reserved_bytes" + Set gtmtypes("span_parms",6,"off")=20 + Set gtmtypes("span_parms",6,"len")=4 + Set gtmtypes("span_parms",6,"type")="int" + Set gtmtypfldindx("span_parms","blk_reserved_bytes")=6 + Set gtmtypes("span_parms",7,"name")="span_parms.save_msp" + Set gtmtypes("span_parms",7,"off")=24 + Set gtmtypes("span_parms",7,"len")=4 + Set gtmtypes("span_parms",7,"type")="addr" + Set gtmtypfldindx("span_parms","save_msp")=7 + Set gtmtypes("span_parms",8,"name")="span_parms.save_mv_chain" + Set gtmtypes("span_parms",8,"off")=28 + Set gtmtypes("span_parms",8,"len")=4 + Set gtmtypes("span_parms",8,"type")="addr" + Set gtmtypfldindx("span_parms","save_mv_chain")=8 + Set gtmtypes("span_parms",9,"name")="span_parms.ztold_mval" + Set gtmtypes("span_parms",9,"off")=32 + Set gtmtypes("span_parms",9,"len")=4 + Set gtmtypes("span_parms",9,"type")="addr" + Set gtmtypfldindx("span_parms","ztold_mval")=9 + Set gtmtypes("span_parms",10,"name")="span_parms.ztval_mval" + Set gtmtypes("span_parms",10,"off")=36 + Set gtmtypes("span_parms",10,"len")=4 + Set gtmtypes("span_parms",10,"type")="addr" + Set gtmtypfldindx("span_parms","ztval_mval")=10 + ; + Set gtmtypes("span_subs")="struct" + Set gtmtypes("span_subs",0)=3 + Set gtmtypes("span_subs","len")=3 + Set gtmtypes("span_subs",1,"name")="span_subs.b_ctrl" + Set gtmtypes("span_subs",1,"off")=0 + Set gtmtypes("span_subs",1,"len")=1 + Set gtmtypes("span_subs",1,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_ctrl")=1 + Set gtmtypes("span_subs",2,"name")="span_subs.b_first" + Set gtmtypes("span_subs",2,"off")=1 + Set gtmtypes("span_subs",2,"len")=1 + Set gtmtypes("span_subs",2,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_first")=2 + Set gtmtypes("span_subs",3,"name")="span_subs.b_sec" + Set gtmtypes("span_subs",3,"off")=2 + Set gtmtypes("span_subs",3,"len")=1 + Set gtmtypes("span_subs",3,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_sec")=3 + ; + Set gtmtypes("spdesc")="struct" + Set gtmtypes("spdesc",0)=5 + Set gtmtypes("spdesc","len")=20 + Set gtmtypes("spdesc",1,"name")="spdesc.base" + Set gtmtypes("spdesc",1,"off")=0 + Set gtmtypes("spdesc",1,"len")=4 + Set gtmtypes("spdesc",1,"type")="addr" + Set gtmtypfldindx("spdesc","base")=1 + Set gtmtypes("spdesc",2,"name")="spdesc.gtm_free" + Set gtmtypes("spdesc",2,"off")=4 + Set gtmtypes("spdesc",2,"len")=4 + Set gtmtypes("spdesc",2,"type")="addr" + Set gtmtypfldindx("spdesc","gtm_free")=2 + Set gtmtypes("spdesc",3,"name")="spdesc.top" + Set gtmtypes("spdesc",3,"off")=8 + Set gtmtypes("spdesc",3,"len")=4 + Set gtmtypes("spdesc",3,"type")="addr" + Set gtmtypfldindx("spdesc","top")=3 + Set gtmtypes("spdesc",4,"name")="spdesc.lasttop" + Set gtmtypes("spdesc",4,"off")=12 + Set gtmtypes("spdesc",4,"len")=4 + Set gtmtypes("spdesc",4,"type")="addr" + Set gtmtypfldindx("spdesc","lasttop")=4 + Set gtmtypes("spdesc",5,"name")="spdesc.prvprt" + Set gtmtypes("spdesc",5,"off")=16 + Set gtmtypes("spdesc",5,"len")=1 + Set gtmtypes("spdesc",5,"type")="unsigned-char" + Set gtmtypfldindx("spdesc","prvprt")=5 + ; + Set gtmtypes("src_line_struct")="struct" + Set gtmtypes("src_line_struct",0)=8 + Set gtmtypes("src_line_struct","len")=24 + Set gtmtypes("src_line_struct",1,"name")="src_line_struct.que" + Set gtmtypes("src_line_struct",1,"off")=0 + Set gtmtypes("src_line_struct",1,"len")=8 + Set gtmtypes("src_line_struct",1,"type")="struct" + Set gtmtypfldindx("src_line_struct","que")=1 + Set gtmtypes("src_line_struct",2,"name")="src_line_struct.que.fl" + Set gtmtypes("src_line_struct",2,"off")=0 + Set gtmtypes("src_line_struct",2,"len")=4 + Set gtmtypes("src_line_struct",2,"type")="addr" + Set gtmtypfldindx("src_line_struct","que.fl")=2 + Set gtmtypes("src_line_struct",3,"name")="src_line_struct.que.bl" + Set gtmtypes("src_line_struct",3,"off")=4 + Set gtmtypes("src_line_struct",3,"len")=4 + Set gtmtypes("src_line_struct",3,"type")="addr" + Set gtmtypfldindx("src_line_struct","que.bl")=3 + Set gtmtypes("src_line_struct",4,"name")="src_line_struct.str" + Set gtmtypes("src_line_struct",4,"off")=8 + Set gtmtypes("src_line_struct",4,"len")=12 + Set gtmtypes("src_line_struct",4,"type")="mstr" + Set gtmtypfldindx("src_line_struct","str")=4 + Set gtmtypes("src_line_struct",5,"name")="src_line_struct.str.char_len" + Set gtmtypes("src_line_struct",5,"off")=8 + Set gtmtypes("src_line_struct",5,"len")=4 + Set gtmtypes("src_line_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("src_line_struct","str.char_len")=5 + Set gtmtypes("src_line_struct",6,"name")="src_line_struct.str.len" + Set gtmtypes("src_line_struct",6,"off")=12 + Set gtmtypes("src_line_struct",6,"len")=4 + Set gtmtypes("src_line_struct",6,"type")="int" + Set gtmtypfldindx("src_line_struct","str.len")=6 + Set gtmtypes("src_line_struct",7,"name")="src_line_struct.str.addr" + Set gtmtypes("src_line_struct",7,"off")=16 + Set gtmtypes("src_line_struct",7,"len")=4 + Set gtmtypes("src_line_struct",7,"type")="addr" + Set gtmtypfldindx("src_line_struct","str.addr")=7 + Set gtmtypes("src_line_struct",8,"name")="src_line_struct.line" + Set gtmtypes("src_line_struct",8,"off")=20 + Set gtmtypes("src_line_struct",8,"len")=4 + Set gtmtypes("src_line_struct",8,"type")="int" + Set gtmtypfldindx("src_line_struct","line")=8 + ; + Set gtmtypes("srch_blk_status")="struct" + Set gtmtypes("srch_blk_status",0)=15 + Set gtmtypes("srch_blk_status","len")=48 + Set gtmtypes("srch_blk_status",1,"name")="srch_blk_status.cr" + Set gtmtypes("srch_blk_status",1,"off")=0 + Set gtmtypes("srch_blk_status",1,"len")=4 + Set gtmtypes("srch_blk_status",1,"type")="addr" + Set gtmtypfldindx("srch_blk_status","cr")=1 + Set gtmtypes("srch_blk_status",2,"name")="srch_blk_status.buffaddr" + Set gtmtypes("srch_blk_status",2,"off")=4 + Set gtmtypes("srch_blk_status",2,"len")=4 + Set gtmtypes("srch_blk_status",2,"type")="addr" + Set gtmtypfldindx("srch_blk_status","buffaddr")=2 + Set gtmtypes("srch_blk_status",3,"name")="srch_blk_status.blk_num" + Set gtmtypes("srch_blk_status",3,"off")=8 + Set gtmtypes("srch_blk_status",3,"len")=4 + Set gtmtypes("srch_blk_status",3,"type")="int" + Set gtmtypfldindx("srch_blk_status","blk_num")=3 + Set gtmtypes("srch_blk_status",4,"name")="srch_blk_status.tn" + Set gtmtypes("srch_blk_status",4,"off")=12 + Set gtmtypes("srch_blk_status",4,"len")=8 + Set gtmtypes("srch_blk_status",4,"type")="uint64_t" + Set gtmtypfldindx("srch_blk_status","tn")=4 + Set gtmtypes("srch_blk_status",5,"name")="srch_blk_status.prev_rec" + Set gtmtypes("srch_blk_status",5,"off")=20 + Set gtmtypes("srch_blk_status",5,"len")=4 + Set gtmtypes("srch_blk_status",5,"type")="srch_rec_status" + Set gtmtypfldindx("srch_blk_status","prev_rec")=5 + Set gtmtypes("srch_blk_status",6,"name")="srch_blk_status.prev_rec.offset" + Set gtmtypes("srch_blk_status",6,"off")=20 + Set gtmtypes("srch_blk_status",6,"len")=2 + Set gtmtypes("srch_blk_status",6,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","prev_rec.offset")=6 + Set gtmtypes("srch_blk_status",7,"name")="srch_blk_status.prev_rec.match" + Set gtmtypes("srch_blk_status",7,"off")=22 + Set gtmtypes("srch_blk_status",7,"len")=2 + Set gtmtypes("srch_blk_status",7,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","prev_rec.match")=7 + Set gtmtypes("srch_blk_status",8,"name")="srch_blk_status.curr_rec" + Set gtmtypes("srch_blk_status",8,"off")=24 + Set gtmtypes("srch_blk_status",8,"len")=4 + Set gtmtypes("srch_blk_status",8,"type")="srch_rec_status" + Set gtmtypfldindx("srch_blk_status","curr_rec")=8 + Set gtmtypes("srch_blk_status",9,"name")="srch_blk_status.curr_rec.offset" + Set gtmtypes("srch_blk_status",9,"off")=24 + Set gtmtypes("srch_blk_status",9,"len")=2 + Set gtmtypes("srch_blk_status",9,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","curr_rec.offset")=9 + Set gtmtypes("srch_blk_status",10,"name")="srch_blk_status.curr_rec.match" + Set gtmtypes("srch_blk_status",10,"off")=26 + Set gtmtypes("srch_blk_status",10,"len")=2 + Set gtmtypes("srch_blk_status",10,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","curr_rec.match")=10 + Set gtmtypes("srch_blk_status",11,"name")="srch_blk_status.cycle" + Set gtmtypes("srch_blk_status",11,"off")=28 + Set gtmtypes("srch_blk_status",11,"len")=4 + Set gtmtypes("srch_blk_status",11,"type")="int" + Set gtmtypfldindx("srch_blk_status","cycle")=11 + Set gtmtypes("srch_blk_status",12,"name")="srch_blk_status.level" + Set gtmtypes("srch_blk_status",12,"off")=32 + Set gtmtypes("srch_blk_status",12,"len")=4 + Set gtmtypes("srch_blk_status",12,"type")="int" + Set gtmtypfldindx("srch_blk_status","level")=12 + Set gtmtypes("srch_blk_status",13,"name")="srch_blk_status.cse" + Set gtmtypes("srch_blk_status",13,"off")=36 + Set gtmtypes("srch_blk_status",13,"len")=4 + Set gtmtypes("srch_blk_status",13,"type")="addr" + Set gtmtypfldindx("srch_blk_status","cse")=13 + Set gtmtypes("srch_blk_status",14,"name")="srch_blk_status.first_tp_srch_status" + Set gtmtypes("srch_blk_status",14,"off")=40 + Set gtmtypes("srch_blk_status",14,"len")=4 + Set gtmtypes("srch_blk_status",14,"type")="addr" + Set gtmtypfldindx("srch_blk_status","first_tp_srch_status")=14 + Set gtmtypes("srch_blk_status",15,"name")="srch_blk_status.blk_target" + Set gtmtypes("srch_blk_status",15,"off")=44 + Set gtmtypes("srch_blk_status",15,"len")=4 + Set gtmtypes("srch_blk_status",15,"type")="addr" + Set gtmtypfldindx("srch_blk_status","blk_target")=15 + ; + Set gtmtypes("srch_hist")="struct" + Set gtmtypes("srch_hist",0)=18 + Set gtmtypes("srch_hist","len")=392 + Set gtmtypes("srch_hist",1,"name")="srch_hist.depth" + Set gtmtypes("srch_hist",1,"off")=0 + Set gtmtypes("srch_hist",1,"len")=4 + Set gtmtypes("srch_hist",1,"type")="int" + Set gtmtypfldindx("srch_hist","depth")=1 + Set gtmtypes("srch_hist",2,"name")="srch_hist.filler" + Set gtmtypes("srch_hist",2,"off")=4 + Set gtmtypes("srch_hist",2,"len")=4 + Set gtmtypes("srch_hist",2,"type")="int" + Set gtmtypfldindx("srch_hist","filler")=2 + Set gtmtypes("srch_hist",3,"name")="srch_hist.h" + Set gtmtypes("srch_hist",3,"off")=8 + Set gtmtypes("srch_hist",3,"len")=384 + Set gtmtypes("srch_hist",3,"type")="srch_blk_status" + Set gtmtypfldindx("srch_hist","h")=3 + Set gtmtypes("srch_hist",3,"dim")=8 + Set gtmtypes("srch_hist",4,"name")="srch_hist.h[0].cr" + Set gtmtypes("srch_hist",4,"off")=8 + Set gtmtypes("srch_hist",4,"len")=4 + Set gtmtypes("srch_hist",4,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].cr")=4 + Set gtmtypes("srch_hist",5,"name")="srch_hist.h[0].buffaddr" + Set gtmtypes("srch_hist",5,"off")=12 + Set gtmtypes("srch_hist",5,"len")=4 + Set gtmtypes("srch_hist",5,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].buffaddr")=5 + Set gtmtypes("srch_hist",6,"name")="srch_hist.h[0].blk_num" + Set gtmtypes("srch_hist",6,"off")=16 + Set gtmtypes("srch_hist",6,"len")=4 + Set gtmtypes("srch_hist",6,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].blk_num")=6 + Set gtmtypes("srch_hist",7,"name")="srch_hist.h[0].tn" + Set gtmtypes("srch_hist",7,"off")=20 + Set gtmtypes("srch_hist",7,"len")=8 + Set gtmtypes("srch_hist",7,"type")="uint64_t" + Set gtmtypfldindx("srch_hist","h[0].tn")=7 + Set gtmtypes("srch_hist",8,"name")="srch_hist.h[0].prev_rec" + Set gtmtypes("srch_hist",8,"off")=28 + Set gtmtypes("srch_hist",8,"len")=4 + Set gtmtypes("srch_hist",8,"type")="srch_rec_status" + Set gtmtypfldindx("srch_hist","h[0].prev_rec")=8 + Set gtmtypes("srch_hist",9,"name")="srch_hist.h[0].prev_rec.offset" + Set gtmtypes("srch_hist",9,"off")=28 + Set gtmtypes("srch_hist",9,"len")=2 + Set gtmtypes("srch_hist",9,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].prev_rec.offset")=9 + Set gtmtypes("srch_hist",10,"name")="srch_hist.h[0].prev_rec.match" + Set gtmtypes("srch_hist",10,"off")=30 + Set gtmtypes("srch_hist",10,"len")=2 + Set gtmtypes("srch_hist",10,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].prev_rec.match")=10 + Set gtmtypes("srch_hist",11,"name")="srch_hist.h[0].curr_rec" + Set gtmtypes("srch_hist",11,"off")=32 + Set gtmtypes("srch_hist",11,"len")=4 + Set gtmtypes("srch_hist",11,"type")="srch_rec_status" + Set gtmtypfldindx("srch_hist","h[0].curr_rec")=11 + Set gtmtypes("srch_hist",12,"name")="srch_hist.h[0].curr_rec.offset" + Set gtmtypes("srch_hist",12,"off")=32 + Set gtmtypes("srch_hist",12,"len")=2 + Set gtmtypes("srch_hist",12,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].curr_rec.offset")=12 + Set gtmtypes("srch_hist",13,"name")="srch_hist.h[0].curr_rec.match" + Set gtmtypes("srch_hist",13,"off")=34 + Set gtmtypes("srch_hist",13,"len")=2 + Set gtmtypes("srch_hist",13,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].curr_rec.match")=13 + Set gtmtypes("srch_hist",14,"name")="srch_hist.h[0].cycle" + Set gtmtypes("srch_hist",14,"off")=36 + Set gtmtypes("srch_hist",14,"len")=4 + Set gtmtypes("srch_hist",14,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].cycle")=14 + Set gtmtypes("srch_hist",15,"name")="srch_hist.h[0].level" + Set gtmtypes("srch_hist",15,"off")=40 + Set gtmtypes("srch_hist",15,"len")=4 + Set gtmtypes("srch_hist",15,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].level")=15 + Set gtmtypes("srch_hist",16,"name")="srch_hist.h[0].cse" + Set gtmtypes("srch_hist",16,"off")=44 + Set gtmtypes("srch_hist",16,"len")=4 + Set gtmtypes("srch_hist",16,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].cse")=16 + Set gtmtypes("srch_hist",17,"name")="srch_hist.h[0].first_tp_srch_status" + Set gtmtypes("srch_hist",17,"off")=48 + Set gtmtypes("srch_hist",17,"len")=4 + Set gtmtypes("srch_hist",17,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].first_tp_srch_status")=17 + Set gtmtypes("srch_hist",18,"name")="srch_hist.h[0].blk_target" + Set gtmtypes("srch_hist",18,"off")=52 + Set gtmtypes("srch_hist",18,"len")=4 + Set gtmtypes("srch_hist",18,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].blk_target")=18 + ; + Set gtmtypes("srch_rec_status")="struct" + Set gtmtypes("srch_rec_status",0)=2 + Set gtmtypes("srch_rec_status","len")=4 + Set gtmtypes("srch_rec_status",1,"name")="srch_rec_status.offset" + Set gtmtypes("srch_rec_status",1,"off")=0 + Set gtmtypes("srch_rec_status",1,"len")=2 + Set gtmtypes("srch_rec_status",1,"type")="unsigned-short" + Set gtmtypfldindx("srch_rec_status","offset")=1 + Set gtmtypes("srch_rec_status",2,"name")="srch_rec_status.match" + Set gtmtypes("srch_rec_status",2,"off")=2 + Set gtmtypes("srch_rec_status",2,"len")=2 + Set gtmtypes("srch_rec_status",2,"type")="unsigned-short" + Set gtmtypfldindx("srch_rec_status","match")=2 + ; + Set gtmtypes("st_timer_alloc")="struct" + Set gtmtypes("st_timer_alloc",0)=2 + Set gtmtypes("st_timer_alloc","len")=8 + Set gtmtypes("st_timer_alloc",1,"name")="st_timer_alloc.addr" + Set gtmtypes("st_timer_alloc",1,"off")=0 + Set gtmtypes("st_timer_alloc",1,"len")=4 + Set gtmtypes("st_timer_alloc",1,"type")="addr" + Set gtmtypfldindx("st_timer_alloc","addr")=1 + Set gtmtypes("st_timer_alloc",2,"name")="st_timer_alloc.next" + Set gtmtypes("st_timer_alloc",2,"off")=4 + Set gtmtypes("st_timer_alloc",2,"len")=4 + Set gtmtypes("st_timer_alloc",2,"type")="addr" + Set gtmtypfldindx("st_timer_alloc","next")=2 + ; + Set gtmtypes("stack_frame")="struct" + Set gtmtypes("stack_frame",0)=14 + Set gtmtypes("stack_frame","len")=44 + Set gtmtypes("stack_frame",1,"name")="stack_frame.rvector" + Set gtmtypes("stack_frame",1,"off")=0 + Set gtmtypes("stack_frame",1,"len")=4 + Set gtmtypes("stack_frame",1,"type")="addr" + Set gtmtypfldindx("stack_frame","rvector")=1 + Set gtmtypes("stack_frame",2,"name")="stack_frame.l_symtab" + Set gtmtypes("stack_frame",2,"off")=4 + Set gtmtypes("stack_frame",2,"len")=4 + Set gtmtypes("stack_frame",2,"type")="addr" + Set gtmtypfldindx("stack_frame","l_symtab")=2 + Set gtmtypes("stack_frame",3,"name")="stack_frame.mpc" + Set gtmtypes("stack_frame",3,"off")=8 + Set gtmtypes("stack_frame",3,"len")=4 + Set gtmtypes("stack_frame",3,"type")="addr" + Set gtmtypfldindx("stack_frame","mpc")=3 + Set gtmtypes("stack_frame",4,"name")="stack_frame.ctxt" + Set gtmtypes("stack_frame",4,"off")=12 + Set gtmtypes("stack_frame",4,"len")=4 + Set gtmtypes("stack_frame",4,"type")="addr" + Set gtmtypfldindx("stack_frame","ctxt")=4 + Set gtmtypes("stack_frame",5,"name")="stack_frame.temps_ptr" + Set gtmtypes("stack_frame",5,"off")=16 + Set gtmtypes("stack_frame",5,"len")=4 + Set gtmtypes("stack_frame",5,"type")="addr" + Set gtmtypfldindx("stack_frame","temps_ptr")=5 + Set gtmtypes("stack_frame",6,"name")="stack_frame.vartab_off" + Set gtmtypes("stack_frame",6,"off")=20 + Set gtmtypes("stack_frame",6,"len")=4 + Set gtmtypes("stack_frame",6,"type")="addr" + Set gtmtypfldindx("stack_frame","vartab_off")=6 + Set gtmtypes("stack_frame",7,"name")="stack_frame.vartab_len" + Set gtmtypes("stack_frame",7,"off")=24 + Set gtmtypes("stack_frame",7,"len")=2 + Set gtmtypes("stack_frame",7,"type")="short" + Set gtmtypfldindx("stack_frame","vartab_len")=7 + Set gtmtypes("stack_frame",8,"name")="stack_frame.temp_mvals" + Set gtmtypes("stack_frame",8,"off")=26 + Set gtmtypes("stack_frame",8,"len")=2 + Set gtmtypes("stack_frame",8,"type")="short" + Set gtmtypfldindx("stack_frame","temp_mvals")=8 + Set gtmtypes("stack_frame",9,"name")="stack_frame.old_frame_pointer" + Set gtmtypes("stack_frame",9,"off")=28 + Set gtmtypes("stack_frame",9,"len")=4 + Set gtmtypes("stack_frame",9,"type")="addr" + Set gtmtypfldindx("stack_frame","old_frame_pointer")=9 + Set gtmtypes("stack_frame",10,"name")="stack_frame.type" + Set gtmtypes("stack_frame",10,"off")=32 + Set gtmtypes("stack_frame",10,"len")=2 + Set gtmtypes("stack_frame",10,"type")="unsigned-short" + Set gtmtypfldindx("stack_frame","type")=10 + Set gtmtypes("stack_frame",11,"name")="stack_frame.flags" + Set gtmtypes("stack_frame",11,"off")=34 + Set gtmtypes("stack_frame",11,"len")=1 + Set gtmtypes("stack_frame",11,"type")="unsigned-char" + Set gtmtypfldindx("stack_frame","flags")=11 + Set gtmtypes("stack_frame",12,"name")="stack_frame.dollar_test" + Set gtmtypes("stack_frame",12,"off")=35 + Set gtmtypes("stack_frame",12,"len")=1 + Set gtmtypes("stack_frame",12,"type")="char" + Set gtmtypfldindx("stack_frame","dollar_test")=12 + Set gtmtypes("stack_frame",13,"name")="stack_frame.for_ctrl_stack" + Set gtmtypes("stack_frame",13,"off")=36 + Set gtmtypes("stack_frame",13,"len")=4 + Set gtmtypes("stack_frame",13,"type")="addr" + Set gtmtypfldindx("stack_frame","for_ctrl_stack")=13 + Set gtmtypes("stack_frame",14,"name")="stack_frame.ret_value" + Set gtmtypes("stack_frame",14,"off")=40 + Set gtmtypes("stack_frame",14,"len")=4 + Set gtmtypes("stack_frame",14,"type")="addr" + Set gtmtypfldindx("stack_frame","ret_value")=14 + ; + Set gtmtypes("storElem")="struct" + Set gtmtypes("storElem",0)=13 + Set gtmtypes("storElem","len")=36 + Set gtmtypes("storElem",1,"name")="storElem.queueIndex" + Set gtmtypes("storElem",1,"off")=0 + Set gtmtypes("storElem",1,"len")=1 + Set gtmtypes("storElem",1,"type")="char" + Set gtmtypfldindx("storElem","queueIndex")=1 + Set gtmtypes("storElem",2,"name")="storElem.state" + Set gtmtypes("storElem",2,"off")=1 + Set gtmtypes("storElem",2,"len")=1 + Set gtmtypes("storElem",2,"type")="unsigned-char" + Set gtmtypfldindx("storElem","state")=2 + Set gtmtypes("storElem",3,"name")="storElem.extHdrOffset" + Set gtmtypes("storElem",3,"off")=2 + Set gtmtypes("storElem",3,"len")=2 + Set gtmtypes("storElem",3,"type")="unsigned-short" + Set gtmtypfldindx("storElem","extHdrOffset")=3 + Set gtmtypes("storElem",4,"name")="storElem.realLen" + Set gtmtypes("storElem",4,"off")=4 + Set gtmtypes("storElem",4,"len")=4 + Set gtmtypes("storElem",4,"type")="unsigned-int" + Set gtmtypfldindx("storElem","realLen")=4 + Set gtmtypes("storElem",5,"name")="storElem.fPtr" + Set gtmtypes("storElem",5,"off")=8 + Set gtmtypes("storElem",5,"len")=4 + Set gtmtypes("storElem",5,"type")="addr" + Set gtmtypfldindx("storElem","fPtr")=5 + Set gtmtypes("storElem",6,"name")="storElem.bPtr" + Set gtmtypes("storElem",6,"off")=12 + Set gtmtypes("storElem",6,"len")=4 + Set gtmtypes("storElem",6,"type")="addr" + Set gtmtypfldindx("storElem","bPtr")=6 + Set gtmtypes("storElem",7,"name")="storElem.allocatedBy" + Set gtmtypes("storElem",7,"off")=16 + Set gtmtypes("storElem",7,"len")=4 + Set gtmtypes("storElem",7,"type")="addr" + Set gtmtypfldindx("storElem","allocatedBy")=7 + Set gtmtypes("storElem",8,"name")="storElem.allocLen" + Set gtmtypes("storElem",8,"off")=20 + Set gtmtypes("storElem",8,"len")=4 + Set gtmtypes("storElem",8,"type")="unsigned-int" + Set gtmtypfldindx("storElem","allocLen")=8 + Set gtmtypes("storElem",9,"name")="storElem.smTn" + Set gtmtypes("storElem",9,"off")=24 + Set gtmtypes("storElem",9,"len")=4 + Set gtmtypes("storElem",9,"type")="unsigned-int" + Set gtmtypfldindx("storElem","smTn")=9 + Set gtmtypes("storElem",10,"name")="storElem.headMarker" + Set gtmtypes("storElem",10,"off")=28 + Set gtmtypes("storElem",10,"len")=4 + Set gtmtypes("storElem",10,"type")="unsigned-char" + Set gtmtypfldindx("storElem","headMarker")=10 + Set gtmtypes("storElem",11,"name")="storElem.userStorage" + Set gtmtypes("storElem",11,"off")=32 + Set gtmtypes("storElem",11,"len")=4 + Set gtmtypes("storElem",11,"type")="union" + Set gtmtypfldindx("storElem","userStorage")=11 + Set gtmtypes("storElem",12,"name")="storElem.userStorage.deferFreeNext" + Set gtmtypes("storElem",12,"off")=32 + Set gtmtypes("storElem",12,"len")=4 + Set gtmtypes("storElem",12,"type")="addr" + Set gtmtypfldindx("storElem","userStorage.deferFreeNext")=12 + Set gtmtypes("storElem",13,"name")="storElem.userStorage.userStart" + Set gtmtypes("storElem",13,"off")=32 + Set gtmtypes("storElem",13,"len")=1 + Set gtmtypes("storElem",13,"type")="unsigned-char" + Set gtmtypfldindx("storElem","userStorage.userStart")=13 + ; + Set gtmtypes("stringkey")="struct" + Set gtmtypes("stringkey",0)=5 + Set gtmtypes("stringkey","len")=16 + Set gtmtypes("stringkey",1,"name")="stringkey.str" + Set gtmtypes("stringkey",1,"off")=0 + Set gtmtypes("stringkey",1,"len")=12 + Set gtmtypes("stringkey",1,"type")="mstr" + Set gtmtypfldindx("stringkey","str")=1 + Set gtmtypes("stringkey",2,"name")="stringkey.str.char_len" + Set gtmtypes("stringkey",2,"off")=0 + Set gtmtypes("stringkey",2,"len")=4 + Set gtmtypes("stringkey",2,"type")="unsigned-int" + Set gtmtypfldindx("stringkey","str.char_len")=2 + Set gtmtypes("stringkey",3,"name")="stringkey.str.len" + Set gtmtypes("stringkey",3,"off")=4 + Set gtmtypes("stringkey",3,"len")=4 + Set gtmtypes("stringkey",3,"type")="int" + Set gtmtypfldindx("stringkey","str.len")=3 + Set gtmtypes("stringkey",4,"name")="stringkey.str.addr" + Set gtmtypes("stringkey",4,"off")=8 + Set gtmtypes("stringkey",4,"len")=4 + Set gtmtypes("stringkey",4,"type")="addr" + Set gtmtypfldindx("stringkey","str.addr")=4 + Set gtmtypes("stringkey",5,"name")="stringkey.hash_code" + Set gtmtypes("stringkey",5,"off")=12 + Set gtmtypes("stringkey",5,"len")=4 + Set gtmtypes("stringkey",5,"type")="unsigned-int" + Set gtmtypfldindx("stringkey","hash_code")=5 + ; + Set gtmtypes("struct_jrec_align")="struct" + Set gtmtypes("struct_jrec_align",0)=7 + Set gtmtypes("struct_jrec_align","len")=32 + Set gtmtypes("struct_jrec_align",1,"name")="struct_jrec_align.prefix" + Set gtmtypes("struct_jrec_align",1,"off")=0 + Set gtmtypes("struct_jrec_align",1,"len")=24 + Set gtmtypes("struct_jrec_align",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_align","prefix")=1 + Set gtmtypes("struct_jrec_align",2,"name")="struct_jrec_align.prefix.pini_addr" + Set gtmtypes("struct_jrec_align",2,"off")=4 + Set gtmtypes("struct_jrec_align",2,"len")=4 + Set gtmtypes("struct_jrec_align",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_align",3,"name")="struct_jrec_align.prefix.time" + Set gtmtypes("struct_jrec_align",3,"off")=8 + Set gtmtypes("struct_jrec_align",3,"len")=4 + Set gtmtypes("struct_jrec_align",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.time")=3 + Set gtmtypes("struct_jrec_align",4,"name")="struct_jrec_align.prefix.checksum" + Set gtmtypes("struct_jrec_align",4,"off")=12 + Set gtmtypes("struct_jrec_align",4,"len")=4 + Set gtmtypes("struct_jrec_align",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.checksum")=4 + Set gtmtypes("struct_jrec_align",5,"name")="struct_jrec_align.prefix.tn" + Set gtmtypes("struct_jrec_align",5,"off")=16 + Set gtmtypes("struct_jrec_align",5,"len")=8 + Set gtmtypes("struct_jrec_align",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_align","prefix.tn")=5 + Set gtmtypes("struct_jrec_align",6,"name")="struct_jrec_align.align_str" + Set gtmtypes("struct_jrec_align",6,"off")=24 + Set gtmtypes("struct_jrec_align",6,"len")=8 + Set gtmtypes("struct_jrec_align",6,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_align","align_str")=6 + Set gtmtypes("struct_jrec_align",7,"name")="struct_jrec_align.align_str.text" + Set gtmtypes("struct_jrec_align",7,"off")=28 + Set gtmtypes("struct_jrec_align",7,"len")=1 + Set gtmtypes("struct_jrec_align",7,"type")="char" + Set gtmtypfldindx("struct_jrec_align","align_str.text")=7 + ; + Set gtmtypes("struct_jrec_blk")="struct" + Set gtmtypes("struct_jrec_blk",0)=10 + Set gtmtypes("struct_jrec_blk","len")=44 + Set gtmtypes("struct_jrec_blk",1,"name")="struct_jrec_blk.prefix" + Set gtmtypes("struct_jrec_blk",1,"off")=0 + Set gtmtypes("struct_jrec_blk",1,"len")=24 + Set gtmtypes("struct_jrec_blk",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_blk","prefix")=1 + Set gtmtypes("struct_jrec_blk",2,"name")="struct_jrec_blk.prefix.pini_addr" + Set gtmtypes("struct_jrec_blk",2,"off")=4 + Set gtmtypes("struct_jrec_blk",2,"len")=4 + Set gtmtypes("struct_jrec_blk",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_blk",3,"name")="struct_jrec_blk.prefix.time" + Set gtmtypes("struct_jrec_blk",3,"off")=8 + Set gtmtypes("struct_jrec_blk",3,"len")=4 + Set gtmtypes("struct_jrec_blk",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.time")=3 + Set gtmtypes("struct_jrec_blk",4,"name")="struct_jrec_blk.prefix.checksum" + Set gtmtypes("struct_jrec_blk",4,"off")=12 + Set gtmtypes("struct_jrec_blk",4,"len")=4 + Set gtmtypes("struct_jrec_blk",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.checksum")=4 + Set gtmtypes("struct_jrec_blk",5,"name")="struct_jrec_blk.prefix.tn" + Set gtmtypes("struct_jrec_blk",5,"off")=16 + Set gtmtypes("struct_jrec_blk",5,"len")=8 + Set gtmtypes("struct_jrec_blk",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_blk","prefix.tn")=5 + Set gtmtypes("struct_jrec_blk",6,"name")="struct_jrec_blk.blknum" + Set gtmtypes("struct_jrec_blk",6,"off")=24 + Set gtmtypes("struct_jrec_blk",6,"len")=4 + Set gtmtypes("struct_jrec_blk",6,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","blknum")=6 + Set gtmtypes("struct_jrec_blk",7,"name")="struct_jrec_blk.bsiz" + Set gtmtypes("struct_jrec_blk",7,"off")=28 + Set gtmtypes("struct_jrec_blk",7,"len")=4 + Set gtmtypes("struct_jrec_blk",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","bsiz")=7 + Set gtmtypes("struct_jrec_blk",8,"name")="struct_jrec_blk.ondsk_blkver" + Set gtmtypes("struct_jrec_blk",8,"off")=32 + Set gtmtypes("struct_jrec_blk",8,"len")=4 + Set gtmtypes("struct_jrec_blk",8,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","ondsk_blkver")=8 + Set gtmtypes("struct_jrec_blk",9,"name")="struct_jrec_blk.filler" + Set gtmtypes("struct_jrec_blk",9,"off")=36 + Set gtmtypes("struct_jrec_blk",9,"len")=4 + Set gtmtypes("struct_jrec_blk",9,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","filler")=9 + Set gtmtypes("struct_jrec_blk",10,"name")="struct_jrec_blk.blk_contents" + Set gtmtypes("struct_jrec_blk",10,"off")=40 + Set gtmtypes("struct_jrec_blk",10,"len")=1 + Set gtmtypes("struct_jrec_blk",10,"type")="char" + Set gtmtypfldindx("struct_jrec_blk","blk_contents")=10 + ; + Set gtmtypes("struct_jrec_eof")="struct" + Set gtmtypes("struct_jrec_eof",0)=8 + Set gtmtypes("struct_jrec_eof","len")=40 + Set gtmtypes("struct_jrec_eof",1,"name")="struct_jrec_eof.prefix" + Set gtmtypes("struct_jrec_eof",1,"off")=0 + Set gtmtypes("struct_jrec_eof",1,"len")=24 + Set gtmtypes("struct_jrec_eof",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_eof","prefix")=1 + Set gtmtypes("struct_jrec_eof",2,"name")="struct_jrec_eof.prefix.pini_addr" + Set gtmtypes("struct_jrec_eof",2,"off")=4 + Set gtmtypes("struct_jrec_eof",2,"len")=4 + Set gtmtypes("struct_jrec_eof",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_eof",3,"name")="struct_jrec_eof.prefix.time" + Set gtmtypes("struct_jrec_eof",3,"off")=8 + Set gtmtypes("struct_jrec_eof",3,"len")=4 + Set gtmtypes("struct_jrec_eof",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.time")=3 + Set gtmtypes("struct_jrec_eof",4,"name")="struct_jrec_eof.prefix.checksum" + Set gtmtypes("struct_jrec_eof",4,"off")=12 + Set gtmtypes("struct_jrec_eof",4,"len")=4 + Set gtmtypes("struct_jrec_eof",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.checksum")=4 + Set gtmtypes("struct_jrec_eof",5,"name")="struct_jrec_eof.prefix.tn" + Set gtmtypes("struct_jrec_eof",5,"off")=16 + Set gtmtypes("struct_jrec_eof",5,"len")=8 + Set gtmtypes("struct_jrec_eof",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_eof","prefix.tn")=5 + Set gtmtypes("struct_jrec_eof",6,"name")="struct_jrec_eof.jnl_seqno" + Set gtmtypes("struct_jrec_eof",6,"off")=24 + Set gtmtypes("struct_jrec_eof",6,"len")=8 + Set gtmtypes("struct_jrec_eof",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_eof","jnl_seqno")=6 + Set gtmtypes("struct_jrec_eof",7,"name")="struct_jrec_eof.filler" + Set gtmtypes("struct_jrec_eof",7,"off")=32 + Set gtmtypes("struct_jrec_eof",7,"len")=4 + Set gtmtypes("struct_jrec_eof",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","filler")=7 + Set gtmtypes("struct_jrec_eof",8,"name")="struct_jrec_eof.suffix" + Set gtmtypes("struct_jrec_eof",8,"off")=36 + Set gtmtypes("struct_jrec_eof",8,"len")=4 + Set gtmtypes("struct_jrec_eof",8,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_eof","suffix")=8 + ; + Set gtmtypes("struct_jrec_epoch")="struct" + Set gtmtypes("struct_jrec_epoch",0)=13 + Set gtmtypes("struct_jrec_epoch","len")=184 + Set gtmtypes("struct_jrec_epoch",1,"name")="struct_jrec_epoch.prefix" + Set gtmtypes("struct_jrec_epoch",1,"off")=0 + Set gtmtypes("struct_jrec_epoch",1,"len")=24 + Set gtmtypes("struct_jrec_epoch",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_epoch","prefix")=1 + Set gtmtypes("struct_jrec_epoch",2,"name")="struct_jrec_epoch.prefix.pini_addr" + Set gtmtypes("struct_jrec_epoch",2,"off")=4 + Set gtmtypes("struct_jrec_epoch",2,"len")=4 + Set gtmtypes("struct_jrec_epoch",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_epoch",3,"name")="struct_jrec_epoch.prefix.time" + Set gtmtypes("struct_jrec_epoch",3,"off")=8 + Set gtmtypes("struct_jrec_epoch",3,"len")=4 + Set gtmtypes("struct_jrec_epoch",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.time")=3 + Set gtmtypes("struct_jrec_epoch",4,"name")="struct_jrec_epoch.prefix.checksum" + Set gtmtypes("struct_jrec_epoch",4,"off")=12 + Set gtmtypes("struct_jrec_epoch",4,"len")=4 + Set gtmtypes("struct_jrec_epoch",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.checksum")=4 + Set gtmtypes("struct_jrec_epoch",5,"name")="struct_jrec_epoch.prefix.tn" + Set gtmtypes("struct_jrec_epoch",5,"off")=16 + Set gtmtypes("struct_jrec_epoch",5,"len")=8 + Set gtmtypes("struct_jrec_epoch",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","prefix.tn")=5 + Set gtmtypes("struct_jrec_epoch",6,"name")="struct_jrec_epoch.jnl_seqno" + Set gtmtypes("struct_jrec_epoch",6,"off")=24 + Set gtmtypes("struct_jrec_epoch",6,"len")=8 + Set gtmtypes("struct_jrec_epoch",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","jnl_seqno")=6 + Set gtmtypes("struct_jrec_epoch",7,"name")="struct_jrec_epoch.blks_to_upgrd" + Set gtmtypes("struct_jrec_epoch",7,"off")=32 + Set gtmtypes("struct_jrec_epoch",7,"len")=4 + Set gtmtypes("struct_jrec_epoch",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","blks_to_upgrd")=7 + Set gtmtypes("struct_jrec_epoch",8,"name")="struct_jrec_epoch.free_blocks" + Set gtmtypes("struct_jrec_epoch",8,"off")=36 + Set gtmtypes("struct_jrec_epoch",8,"len")=4 + Set gtmtypes("struct_jrec_epoch",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","free_blocks")=8 + Set gtmtypes("struct_jrec_epoch",9,"name")="struct_jrec_epoch.total_blks" + Set gtmtypes("struct_jrec_epoch",9,"off")=40 + Set gtmtypes("struct_jrec_epoch",9,"len")=4 + Set gtmtypes("struct_jrec_epoch",9,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","total_blks")=9 + Set gtmtypes("struct_jrec_epoch",10,"name")="struct_jrec_epoch.fully_upgraded" + Set gtmtypes("struct_jrec_epoch",10,"off")=44 + Set gtmtypes("struct_jrec_epoch",10,"len")=4 + Set gtmtypes("struct_jrec_epoch",10,"type")="boolean_t" + Set gtmtypfldindx("struct_jrec_epoch","fully_upgraded")=10 + Set gtmtypes("struct_jrec_epoch",11,"name")="struct_jrec_epoch.strm_seqno" + Set gtmtypes("struct_jrec_epoch",11,"off")=48 + Set gtmtypes("struct_jrec_epoch",11,"len")=128 + Set gtmtypes("struct_jrec_epoch",11,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","strm_seqno")=11 + Set gtmtypes("struct_jrec_epoch",11,"dim")=16 + Set gtmtypes("struct_jrec_epoch",12,"name")="struct_jrec_epoch.filler" + Set gtmtypes("struct_jrec_epoch",12,"off")=176 + Set gtmtypes("struct_jrec_epoch",12,"len")=4 + Set gtmtypes("struct_jrec_epoch",12,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","filler")=12 + Set gtmtypes("struct_jrec_epoch",13,"name")="struct_jrec_epoch.suffix" + Set gtmtypes("struct_jrec_epoch",13,"off")=180 + Set gtmtypes("struct_jrec_epoch",13,"len")=4 + Set gtmtypes("struct_jrec_epoch",13,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_epoch","suffix")=13 + ; + Set gtmtypes("struct_jrec_inctn")="struct" + Set gtmtypes("struct_jrec_inctn",0)=18 + Set gtmtypes("struct_jrec_inctn","len")=40 + Set gtmtypes("struct_jrec_inctn",1,"name")="struct_jrec_inctn.prefix" + Set gtmtypes("struct_jrec_inctn",1,"off")=0 + Set gtmtypes("struct_jrec_inctn",1,"len")=24 + Set gtmtypes("struct_jrec_inctn",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_inctn","prefix")=1 + Set gtmtypes("struct_jrec_inctn",2,"name")="struct_jrec_inctn.prefix.pini_addr" + Set gtmtypes("struct_jrec_inctn",2,"off")=4 + Set gtmtypes("struct_jrec_inctn",2,"len")=4 + Set gtmtypes("struct_jrec_inctn",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_inctn",3,"name")="struct_jrec_inctn.prefix.time" + Set gtmtypes("struct_jrec_inctn",3,"off")=8 + Set gtmtypes("struct_jrec_inctn",3,"len")=4 + Set gtmtypes("struct_jrec_inctn",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.time")=3 + Set gtmtypes("struct_jrec_inctn",4,"name")="struct_jrec_inctn.prefix.checksum" + Set gtmtypes("struct_jrec_inctn",4,"off")=12 + Set gtmtypes("struct_jrec_inctn",4,"len")=4 + Set gtmtypes("struct_jrec_inctn",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.checksum")=4 + Set gtmtypes("struct_jrec_inctn",5,"name")="struct_jrec_inctn.prefix.tn" + Set gtmtypes("struct_jrec_inctn",5,"off")=16 + Set gtmtypes("struct_jrec_inctn",5,"len")=8 + Set gtmtypes("struct_jrec_inctn",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_inctn","prefix.tn")=5 + Set gtmtypes("struct_jrec_inctn",6,"name")="struct_jrec_inctn.detail" + Set gtmtypes("struct_jrec_inctn",6,"off")=24 + Set gtmtypes("struct_jrec_inctn",6,"len")=16 + Set gtmtypes("struct_jrec_inctn",6,"type")="inctn_detail_t" + Set gtmtypfldindx("struct_jrec_inctn","detail")=6 + Set gtmtypes("struct_jrec_inctn",7,"name")="struct_jrec_inctn.detail.blknum_struct" + Set gtmtypes("struct_jrec_inctn",7,"off")=24 + Set gtmtypes("struct_jrec_inctn",7,"len")=16 + Set gtmtypes("struct_jrec_inctn",7,"type")="inctn_detail_blknum_t" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct")=7 + Set gtmtypes("struct_jrec_inctn",8,"name")="struct_jrec_inctn.detail.blknum_struct.blknum" + Set gtmtypes("struct_jrec_inctn",8,"off")=24 + Set gtmtypes("struct_jrec_inctn",8,"len")=4 + Set gtmtypes("struct_jrec_inctn",8,"type")="int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.blknum")=8 + Set gtmtypes("struct_jrec_inctn",9,"name")="struct_jrec_inctn.detail.blknum_struct.filler_uint4" + Set gtmtypes("struct_jrec_inctn",9,"off")=28 + Set gtmtypes("struct_jrec_inctn",9,"len")=4 + Set gtmtypes("struct_jrec_inctn",9,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.filler_uint4")=9 + Set gtmtypes("struct_jrec_inctn",10,"name")="struct_jrec_inctn.detail.blknum_struct.filler_short" + Set gtmtypes("struct_jrec_inctn",10,"off")=32 + Set gtmtypes("struct_jrec_inctn",10,"len")=2 + Set gtmtypes("struct_jrec_inctn",10,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.filler_short")=10 + Set gtmtypes("struct_jrec_inctn",11,"name")="struct_jrec_inctn.detail.blknum_struct.opcode" + Set gtmtypes("struct_jrec_inctn",11,"off")=34 + Set gtmtypes("struct_jrec_inctn",11,"len")=2 + Set gtmtypes("struct_jrec_inctn",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.opcode")=11 + Set gtmtypes("struct_jrec_inctn",12,"name")="struct_jrec_inctn.detail.blknum_struct.suffix" + Set gtmtypes("struct_jrec_inctn",12,"off")=36 + Set gtmtypes("struct_jrec_inctn",12,"len")=4 + Set gtmtypes("struct_jrec_inctn",12,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.suffix")=12 + Set gtmtypes("struct_jrec_inctn",13,"name")="struct_jrec_inctn.detail.blks2upgrd_struct" + Set gtmtypes("struct_jrec_inctn",13,"off")=24 + Set gtmtypes("struct_jrec_inctn",13,"len")=16 + Set gtmtypes("struct_jrec_inctn",13,"type")="inctn_detail_blks2upgrd_t" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct")=13 + Set gtmtypes("struct_jrec_inctn",14,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.blks_to_upgrd_delta" + Set gtmtypes("struct_jrec_inctn",14,"off")=24 + Set gtmtypes("struct_jrec_inctn",14,"len")=4 + Set gtmtypes("struct_jrec_inctn",14,"type")="int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.blks_to_upgrd_delta")=14 + Set gtmtypes("struct_jrec_inctn",15,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.filler_uint4" + Set gtmtypes("struct_jrec_inctn",15,"off")=28 + Set gtmtypes("struct_jrec_inctn",15,"len")=4 + Set gtmtypes("struct_jrec_inctn",15,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.filler_uint4")=15 + Set gtmtypes("struct_jrec_inctn",16,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.filler_short" + Set gtmtypes("struct_jrec_inctn",16,"off")=32 + Set gtmtypes("struct_jrec_inctn",16,"len")=2 + Set gtmtypes("struct_jrec_inctn",16,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.filler_short")=16 + Set gtmtypes("struct_jrec_inctn",17,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.opcode" + Set gtmtypes("struct_jrec_inctn",17,"off")=34 + Set gtmtypes("struct_jrec_inctn",17,"len")=2 + Set gtmtypes("struct_jrec_inctn",17,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.opcode")=17 + Set gtmtypes("struct_jrec_inctn",18,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.suffix" + Set gtmtypes("struct_jrec_inctn",18,"off")=36 + Set gtmtypes("struct_jrec_inctn",18,"len")=4 + Set gtmtypes("struct_jrec_inctn",18,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.suffix")=18 + ; + Set gtmtypes("struct_jrec_lgtrig")="struct" + Set gtmtypes("struct_jrec_lgtrig",0)=14 + Set gtmtypes("struct_jrec_lgtrig","len")=56 + Set gtmtypes("struct_jrec_lgtrig",1,"name")="struct_jrec_lgtrig.prefix" + Set gtmtypes("struct_jrec_lgtrig",1,"off")=0 + Set gtmtypes("struct_jrec_lgtrig",1,"len")=24 + Set gtmtypes("struct_jrec_lgtrig",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix")=1 + Set gtmtypes("struct_jrec_lgtrig",2,"name")="struct_jrec_lgtrig.prefix.pini_addr" + Set gtmtypes("struct_jrec_lgtrig",2,"off")=4 + Set gtmtypes("struct_jrec_lgtrig",2,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_lgtrig",3,"name")="struct_jrec_lgtrig.prefix.time" + Set gtmtypes("struct_jrec_lgtrig",3,"off")=8 + Set gtmtypes("struct_jrec_lgtrig",3,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.time")=3 + Set gtmtypes("struct_jrec_lgtrig",4,"name")="struct_jrec_lgtrig.prefix.checksum" + Set gtmtypes("struct_jrec_lgtrig",4,"off")=12 + Set gtmtypes("struct_jrec_lgtrig",4,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.checksum")=4 + Set gtmtypes("struct_jrec_lgtrig",5,"name")="struct_jrec_lgtrig.prefix.tn" + Set gtmtypes("struct_jrec_lgtrig",5,"off")=16 + Set gtmtypes("struct_jrec_lgtrig",5,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.tn")=5 + Set gtmtypes("struct_jrec_lgtrig",6,"name")="struct_jrec_lgtrig.token_seq" + Set gtmtypes("struct_jrec_lgtrig",6,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",6,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq")=6 + Set gtmtypes("struct_jrec_lgtrig",7,"name")="struct_jrec_lgtrig.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_lgtrig",7,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",7,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_lgtrig",8,"name")="struct_jrec_lgtrig.token_seq.token" + Set gtmtypes("struct_jrec_lgtrig",8,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",8,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq.token")=8 + Set gtmtypes("struct_jrec_lgtrig",9,"name")="struct_jrec_lgtrig.strm_seqno" + Set gtmtypes("struct_jrec_lgtrig",9,"off")=32 + Set gtmtypes("struct_jrec_lgtrig",9,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","strm_seqno")=9 + Set gtmtypes("struct_jrec_lgtrig",10,"name")="struct_jrec_lgtrig.update_num" + Set gtmtypes("struct_jrec_lgtrig",10,"off")=40 + Set gtmtypes("struct_jrec_lgtrig",10,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","update_num")=10 + Set gtmtypes("struct_jrec_lgtrig",11,"name")="struct_jrec_lgtrig.filler_short" + Set gtmtypes("struct_jrec_lgtrig",11,"off")=44 + Set gtmtypes("struct_jrec_lgtrig",11,"len")=2 + Set gtmtypes("struct_jrec_lgtrig",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_lgtrig","filler_short")=11 + Set gtmtypes("struct_jrec_lgtrig",12,"name")="struct_jrec_lgtrig.num_participants" + Set gtmtypes("struct_jrec_lgtrig",12,"off")=46 + Set gtmtypes("struct_jrec_lgtrig",12,"len")=2 + Set gtmtypes("struct_jrec_lgtrig",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_lgtrig","num_participants")=12 + Set gtmtypes("struct_jrec_lgtrig",13,"name")="struct_jrec_lgtrig.lgtrig_str" + Set gtmtypes("struct_jrec_lgtrig",13,"off")=48 + Set gtmtypes("struct_jrec_lgtrig",13,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_lgtrig","lgtrig_str")=13 + Set gtmtypes("struct_jrec_lgtrig",14,"name")="struct_jrec_lgtrig.lgtrig_str.text" + Set gtmtypes("struct_jrec_lgtrig",14,"off")=52 + Set gtmtypes("struct_jrec_lgtrig",14,"len")=1 + Set gtmtypes("struct_jrec_lgtrig",14,"type")="char" + Set gtmtypfldindx("struct_jrec_lgtrig","lgtrig_str.text")=14 + ; + Set gtmtypes("struct_jrec_null")="struct" + Set gtmtypes("struct_jrec_null",0)=9 + Set gtmtypes("struct_jrec_null","len")=48 + Set gtmtypes("struct_jrec_null",1,"name")="struct_jrec_null.prefix" + Set gtmtypes("struct_jrec_null",1,"off")=0 + Set gtmtypes("struct_jrec_null",1,"len")=24 + Set gtmtypes("struct_jrec_null",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_null","prefix")=1 + Set gtmtypes("struct_jrec_null",2,"name")="struct_jrec_null.prefix.pini_addr" + Set gtmtypes("struct_jrec_null",2,"off")=4 + Set gtmtypes("struct_jrec_null",2,"len")=4 + Set gtmtypes("struct_jrec_null",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_null",3,"name")="struct_jrec_null.prefix.time" + Set gtmtypes("struct_jrec_null",3,"off")=8 + Set gtmtypes("struct_jrec_null",3,"len")=4 + Set gtmtypes("struct_jrec_null",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.time")=3 + Set gtmtypes("struct_jrec_null",4,"name")="struct_jrec_null.prefix.checksum" + Set gtmtypes("struct_jrec_null",4,"off")=12 + Set gtmtypes("struct_jrec_null",4,"len")=4 + Set gtmtypes("struct_jrec_null",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.checksum")=4 + Set gtmtypes("struct_jrec_null",5,"name")="struct_jrec_null.prefix.tn" + Set gtmtypes("struct_jrec_null",5,"off")=16 + Set gtmtypes("struct_jrec_null",5,"len")=8 + Set gtmtypes("struct_jrec_null",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","prefix.tn")=5 + Set gtmtypes("struct_jrec_null",6,"name")="struct_jrec_null.jnl_seqno" + Set gtmtypes("struct_jrec_null",6,"off")=24 + Set gtmtypes("struct_jrec_null",6,"len")=8 + Set gtmtypes("struct_jrec_null",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","jnl_seqno")=6 + Set gtmtypes("struct_jrec_null",7,"name")="struct_jrec_null.strm_seqno" + Set gtmtypes("struct_jrec_null",7,"off")=32 + Set gtmtypes("struct_jrec_null",7,"len")=8 + Set gtmtypes("struct_jrec_null",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","strm_seqno")=7 + Set gtmtypes("struct_jrec_null",8,"name")="struct_jrec_null.filler" + Set gtmtypes("struct_jrec_null",8,"off")=40 + Set gtmtypes("struct_jrec_null",8,"len")=4 + Set gtmtypes("struct_jrec_null",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","filler")=8 + Set gtmtypes("struct_jrec_null",9,"name")="struct_jrec_null.suffix" + Set gtmtypes("struct_jrec_null",9,"off")=44 + Set gtmtypes("struct_jrec_null",9,"len")=4 + Set gtmtypes("struct_jrec_null",9,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_null","suffix")=9 + ; + Set gtmtypes("struct_jrec_pfin")="struct" + Set gtmtypes("struct_jrec_pfin",0)=7 + Set gtmtypes("struct_jrec_pfin","len")=32 + Set gtmtypes("struct_jrec_pfin",1,"name")="struct_jrec_pfin.prefix" + Set gtmtypes("struct_jrec_pfin",1,"off")=0 + Set gtmtypes("struct_jrec_pfin",1,"len")=24 + Set gtmtypes("struct_jrec_pfin",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_pfin","prefix")=1 + Set gtmtypes("struct_jrec_pfin",2,"name")="struct_jrec_pfin.prefix.pini_addr" + Set gtmtypes("struct_jrec_pfin",2,"off")=4 + Set gtmtypes("struct_jrec_pfin",2,"len")=4 + Set gtmtypes("struct_jrec_pfin",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_pfin",3,"name")="struct_jrec_pfin.prefix.time" + Set gtmtypes("struct_jrec_pfin",3,"off")=8 + Set gtmtypes("struct_jrec_pfin",3,"len")=4 + Set gtmtypes("struct_jrec_pfin",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.time")=3 + Set gtmtypes("struct_jrec_pfin",4,"name")="struct_jrec_pfin.prefix.checksum" + Set gtmtypes("struct_jrec_pfin",4,"off")=12 + Set gtmtypes("struct_jrec_pfin",4,"len")=4 + Set gtmtypes("struct_jrec_pfin",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.checksum")=4 + Set gtmtypes("struct_jrec_pfin",5,"name")="struct_jrec_pfin.prefix.tn" + Set gtmtypes("struct_jrec_pfin",5,"off")=16 + Set gtmtypes("struct_jrec_pfin",5,"len")=8 + Set gtmtypes("struct_jrec_pfin",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_pfin","prefix.tn")=5 + Set gtmtypes("struct_jrec_pfin",6,"name")="struct_jrec_pfin.filler" + Set gtmtypes("struct_jrec_pfin",6,"off")=24 + Set gtmtypes("struct_jrec_pfin",6,"len")=4 + Set gtmtypes("struct_jrec_pfin",6,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","filler")=6 + Set gtmtypes("struct_jrec_pfin",7,"name")="struct_jrec_pfin.suffix" + Set gtmtypes("struct_jrec_pfin",7,"off")=28 + Set gtmtypes("struct_jrec_pfin",7,"len")=4 + Set gtmtypes("struct_jrec_pfin",7,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_pfin","suffix")=7 + ; + Set gtmtypes("struct_jrec_pini")="struct" + Set gtmtypes("struct_jrec_pini",0)=18 + Set gtmtypes("struct_jrec_pini","len")=208 + Set gtmtypes("struct_jrec_pini",1,"name")="struct_jrec_pini.prefix" + Set gtmtypes("struct_jrec_pini",1,"off")=0 + Set gtmtypes("struct_jrec_pini",1,"len")=24 + Set gtmtypes("struct_jrec_pini",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_pini","prefix")=1 + Set gtmtypes("struct_jrec_pini",2,"name")="struct_jrec_pini.prefix.pini_addr" + Set gtmtypes("struct_jrec_pini",2,"off")=4 + Set gtmtypes("struct_jrec_pini",2,"len")=4 + Set gtmtypes("struct_jrec_pini",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_pini",3,"name")="struct_jrec_pini.prefix.time" + Set gtmtypes("struct_jrec_pini",3,"off")=8 + Set gtmtypes("struct_jrec_pini",3,"len")=4 + Set gtmtypes("struct_jrec_pini",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.time")=3 + Set gtmtypes("struct_jrec_pini",4,"name")="struct_jrec_pini.prefix.checksum" + Set gtmtypes("struct_jrec_pini",4,"off")=12 + Set gtmtypes("struct_jrec_pini",4,"len")=4 + Set gtmtypes("struct_jrec_pini",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.checksum")=4 + Set gtmtypes("struct_jrec_pini",5,"name")="struct_jrec_pini.prefix.tn" + Set gtmtypes("struct_jrec_pini",5,"off")=16 + Set gtmtypes("struct_jrec_pini",5,"len")=8 + Set gtmtypes("struct_jrec_pini",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_pini","prefix.tn")=5 + Set gtmtypes("struct_jrec_pini",6,"name")="struct_jrec_pini.process_vector" + Set gtmtypes("struct_jrec_pini",6,"off")=24 + Set gtmtypes("struct_jrec_pini",6,"len")=176 + Set gtmtypes("struct_jrec_pini",6,"type")="jnl_process_vector" + Set gtmtypfldindx("struct_jrec_pini","process_vector")=6 + Set gtmtypes("struct_jrec_pini",6,"dim")=2 + Set gtmtypes("struct_jrec_pini",7,"name")="struct_jrec_pini.process_vector[0].jpv_pid" + Set gtmtypes("struct_jrec_pini",7,"off")=24 + Set gtmtypes("struct_jrec_pini",7,"len")=4 + Set gtmtypes("struct_jrec_pini",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_pid")=7 + Set gtmtypes("struct_jrec_pini",8,"name")="struct_jrec_pini.process_vector[0].jpv_image_count" + Set gtmtypes("struct_jrec_pini",8,"off")=28 + Set gtmtypes("struct_jrec_pini",8,"len")=4 + Set gtmtypes("struct_jrec_pini",8,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_image_count")=8 + Set gtmtypes("struct_jrec_pini",9,"name")="struct_jrec_pini.process_vector[0].jpv_time" + Set gtmtypes("struct_jrec_pini",9,"off")=32 + Set gtmtypes("struct_jrec_pini",9,"len")=8 + Set gtmtypes("struct_jrec_pini",9,"type")="int64_t" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_time")=9 + Set gtmtypes("struct_jrec_pini",10,"name")="struct_jrec_pini.process_vector[0].jpv_login_time" + Set gtmtypes("struct_jrec_pini",10,"off")=40 + Set gtmtypes("struct_jrec_pini",10,"len")=8 + Set gtmtypes("struct_jrec_pini",10,"type")="int64_t" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_login_time")=10 + Set gtmtypes("struct_jrec_pini",11,"name")="struct_jrec_pini.process_vector[0].jpv_node" + Set gtmtypes("struct_jrec_pini",11,"off")=48 + Set gtmtypes("struct_jrec_pini",11,"len")=16 + Set gtmtypes("struct_jrec_pini",11,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_node")=11 + Set gtmtypes("struct_jrec_pini",12,"name")="struct_jrec_pini.process_vector[0].jpv_user" + Set gtmtypes("struct_jrec_pini",12,"off")=64 + Set gtmtypes("struct_jrec_pini",12,"len")=12 + Set gtmtypes("struct_jrec_pini",12,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_user")=12 + Set gtmtypes("struct_jrec_pini",13,"name")="struct_jrec_pini.process_vector[0].jpv_prcnam" + Set gtmtypes("struct_jrec_pini",13,"off")=76 + Set gtmtypes("struct_jrec_pini",13,"len")=16 + Set gtmtypes("struct_jrec_pini",13,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_prcnam")=13 + Set gtmtypes("struct_jrec_pini",14,"name")="struct_jrec_pini.process_vector[0].jpv_terminal" + Set gtmtypes("struct_jrec_pini",14,"off")=92 + Set gtmtypes("struct_jrec_pini",14,"len")=15 + Set gtmtypes("struct_jrec_pini",14,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_terminal")=14 + Set gtmtypes("struct_jrec_pini",15,"name")="struct_jrec_pini.process_vector[0].jpv_mode" + Set gtmtypes("struct_jrec_pini",15,"off")=107 + Set gtmtypes("struct_jrec_pini",15,"len")=1 + Set gtmtypes("struct_jrec_pini",15,"type")="unsigned-char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_mode")=15 + Set gtmtypes("struct_jrec_pini",16,"name")="struct_jrec_pini.process_vector[0].filler" + Set gtmtypes("struct_jrec_pini",16,"off")=108 + Set gtmtypes("struct_jrec_pini",16,"len")=4 + Set gtmtypes("struct_jrec_pini",16,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].filler")=16 + Set gtmtypes("struct_jrec_pini",17,"name")="struct_jrec_pini.filler" + Set gtmtypes("struct_jrec_pini",17,"off")=200 + Set gtmtypes("struct_jrec_pini",17,"len")=4 + Set gtmtypes("struct_jrec_pini",17,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","filler")=17 + Set gtmtypes("struct_jrec_pini",18,"name")="struct_jrec_pini.suffix" + Set gtmtypes("struct_jrec_pini",18,"off")=204 + Set gtmtypes("struct_jrec_pini",18,"len")=4 + Set gtmtypes("struct_jrec_pini",18,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_pini","suffix")=18 + ; + Set gtmtypes("struct_jrec_tcom")="struct" + Set gtmtypes("struct_jrec_tcom",0)=13 + Set gtmtypes("struct_jrec_tcom","len")=56 + Set gtmtypes("struct_jrec_tcom",1,"name")="struct_jrec_tcom.prefix" + Set gtmtypes("struct_jrec_tcom",1,"off")=0 + Set gtmtypes("struct_jrec_tcom",1,"len")=24 + Set gtmtypes("struct_jrec_tcom",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_tcom","prefix")=1 + Set gtmtypes("struct_jrec_tcom",2,"name")="struct_jrec_tcom.prefix.pini_addr" + Set gtmtypes("struct_jrec_tcom",2,"off")=4 + Set gtmtypes("struct_jrec_tcom",2,"len")=4 + Set gtmtypes("struct_jrec_tcom",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_tcom",3,"name")="struct_jrec_tcom.prefix.time" + Set gtmtypes("struct_jrec_tcom",3,"off")=8 + Set gtmtypes("struct_jrec_tcom",3,"len")=4 + Set gtmtypes("struct_jrec_tcom",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.time")=3 + Set gtmtypes("struct_jrec_tcom",4,"name")="struct_jrec_tcom.prefix.checksum" + Set gtmtypes("struct_jrec_tcom",4,"off")=12 + Set gtmtypes("struct_jrec_tcom",4,"len")=4 + Set gtmtypes("struct_jrec_tcom",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.checksum")=4 + Set gtmtypes("struct_jrec_tcom",5,"name")="struct_jrec_tcom.prefix.tn" + Set gtmtypes("struct_jrec_tcom",5,"off")=16 + Set gtmtypes("struct_jrec_tcom",5,"len")=8 + Set gtmtypes("struct_jrec_tcom",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","prefix.tn")=5 + Set gtmtypes("struct_jrec_tcom",6,"name")="struct_jrec_tcom.token_seq" + Set gtmtypes("struct_jrec_tcom",6,"off")=24 + Set gtmtypes("struct_jrec_tcom",6,"len")=8 + Set gtmtypes("struct_jrec_tcom",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq")=6 + Set gtmtypes("struct_jrec_tcom",7,"name")="struct_jrec_tcom.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_tcom",7,"off")=24 + Set gtmtypes("struct_jrec_tcom",7,"len")=8 + Set gtmtypes("struct_jrec_tcom",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_tcom",8,"name")="struct_jrec_tcom.token_seq.token" + Set gtmtypes("struct_jrec_tcom",8,"off")=24 + Set gtmtypes("struct_jrec_tcom",8,"len")=8 + Set gtmtypes("struct_jrec_tcom",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq.token")=8 + Set gtmtypes("struct_jrec_tcom",9,"name")="struct_jrec_tcom.strm_seqno" + Set gtmtypes("struct_jrec_tcom",9,"off")=32 + Set gtmtypes("struct_jrec_tcom",9,"len")=8 + Set gtmtypes("struct_jrec_tcom",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","strm_seqno")=9 + Set gtmtypes("struct_jrec_tcom",10,"name")="struct_jrec_tcom.filler_short" + Set gtmtypes("struct_jrec_tcom",10,"off")=40 + Set gtmtypes("struct_jrec_tcom",10,"len")=2 + Set gtmtypes("struct_jrec_tcom",10,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_tcom","filler_short")=10 + Set gtmtypes("struct_jrec_tcom",11,"name")="struct_jrec_tcom.num_participants" + Set gtmtypes("struct_jrec_tcom",11,"off")=42 + Set gtmtypes("struct_jrec_tcom",11,"len")=2 + Set gtmtypes("struct_jrec_tcom",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_tcom","num_participants")=11 + Set gtmtypes("struct_jrec_tcom",12,"name")="struct_jrec_tcom.jnl_tid" + Set gtmtypes("struct_jrec_tcom",12,"off")=44 + Set gtmtypes("struct_jrec_tcom",12,"len")=8 + Set gtmtypes("struct_jrec_tcom",12,"type")="char" + Set gtmtypfldindx("struct_jrec_tcom","jnl_tid")=12 + Set gtmtypes("struct_jrec_tcom",13,"name")="struct_jrec_tcom.suffix" + Set gtmtypes("struct_jrec_tcom",13,"off")=52 + Set gtmtypes("struct_jrec_tcom",13,"len")=4 + Set gtmtypes("struct_jrec_tcom",13,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_tcom","suffix")=13 + ; + Set gtmtypes("struct_jrec_trunc")="struct" + Set gtmtypes("struct_jrec_trunc",0)=9 + Set gtmtypes("struct_jrec_trunc","len")=40 + Set gtmtypes("struct_jrec_trunc",1,"name")="struct_jrec_trunc.prefix" + Set gtmtypes("struct_jrec_trunc",1,"off")=0 + Set gtmtypes("struct_jrec_trunc",1,"len")=24 + Set gtmtypes("struct_jrec_trunc",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_trunc","prefix")=1 + Set gtmtypes("struct_jrec_trunc",2,"name")="struct_jrec_trunc.prefix.pini_addr" + Set gtmtypes("struct_jrec_trunc",2,"off")=4 + Set gtmtypes("struct_jrec_trunc",2,"len")=4 + Set gtmtypes("struct_jrec_trunc",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_trunc",3,"name")="struct_jrec_trunc.prefix.time" + Set gtmtypes("struct_jrec_trunc",3,"off")=8 + Set gtmtypes("struct_jrec_trunc",3,"len")=4 + Set gtmtypes("struct_jrec_trunc",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.time")=3 + Set gtmtypes("struct_jrec_trunc",4,"name")="struct_jrec_trunc.prefix.checksum" + Set gtmtypes("struct_jrec_trunc",4,"off")=12 + Set gtmtypes("struct_jrec_trunc",4,"len")=4 + Set gtmtypes("struct_jrec_trunc",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.checksum")=4 + Set gtmtypes("struct_jrec_trunc",5,"name")="struct_jrec_trunc.prefix.tn" + Set gtmtypes("struct_jrec_trunc",5,"off")=16 + Set gtmtypes("struct_jrec_trunc",5,"len")=8 + Set gtmtypes("struct_jrec_trunc",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_trunc","prefix.tn")=5 + Set gtmtypes("struct_jrec_trunc",6,"name")="struct_jrec_trunc.orig_total_blks" + Set gtmtypes("struct_jrec_trunc",6,"off")=24 + Set gtmtypes("struct_jrec_trunc",6,"len")=4 + Set gtmtypes("struct_jrec_trunc",6,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","orig_total_blks")=6 + Set gtmtypes("struct_jrec_trunc",7,"name")="struct_jrec_trunc.orig_free_blocks" + Set gtmtypes("struct_jrec_trunc",7,"off")=28 + Set gtmtypes("struct_jrec_trunc",7,"len")=4 + Set gtmtypes("struct_jrec_trunc",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","orig_free_blocks")=7 + Set gtmtypes("struct_jrec_trunc",8,"name")="struct_jrec_trunc.total_blks_after_trunc" + Set gtmtypes("struct_jrec_trunc",8,"off")=32 + Set gtmtypes("struct_jrec_trunc",8,"len")=4 + Set gtmtypes("struct_jrec_trunc",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","total_blks_after_trunc")=8 + Set gtmtypes("struct_jrec_trunc",9,"name")="struct_jrec_trunc.suffix" + Set gtmtypes("struct_jrec_trunc",9,"off")=36 + Set gtmtypes("struct_jrec_trunc",9,"len")=4 + Set gtmtypes("struct_jrec_trunc",9,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_trunc","suffix")=9 + ; + Set gtmtypes("struct_jrec_upd")="struct" + Set gtmtypes("struct_jrec_upd",0)=14 + Set gtmtypes("struct_jrec_upd","len")=56 + Set gtmtypes("struct_jrec_upd",1,"name")="struct_jrec_upd.prefix" + Set gtmtypes("struct_jrec_upd",1,"off")=0 + Set gtmtypes("struct_jrec_upd",1,"len")=24 + Set gtmtypes("struct_jrec_upd",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_upd","prefix")=1 + Set gtmtypes("struct_jrec_upd",2,"name")="struct_jrec_upd.prefix.pini_addr" + Set gtmtypes("struct_jrec_upd",2,"off")=4 + Set gtmtypes("struct_jrec_upd",2,"len")=4 + Set gtmtypes("struct_jrec_upd",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_upd",3,"name")="struct_jrec_upd.prefix.time" + Set gtmtypes("struct_jrec_upd",3,"off")=8 + Set gtmtypes("struct_jrec_upd",3,"len")=4 + Set gtmtypes("struct_jrec_upd",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.time")=3 + Set gtmtypes("struct_jrec_upd",4,"name")="struct_jrec_upd.prefix.checksum" + Set gtmtypes("struct_jrec_upd",4,"off")=12 + Set gtmtypes("struct_jrec_upd",4,"len")=4 + Set gtmtypes("struct_jrec_upd",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.checksum")=4 + Set gtmtypes("struct_jrec_upd",5,"name")="struct_jrec_upd.prefix.tn" + Set gtmtypes("struct_jrec_upd",5,"off")=16 + Set gtmtypes("struct_jrec_upd",5,"len")=8 + Set gtmtypes("struct_jrec_upd",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","prefix.tn")=5 + Set gtmtypes("struct_jrec_upd",6,"name")="struct_jrec_upd.token_seq" + Set gtmtypes("struct_jrec_upd",6,"off")=24 + Set gtmtypes("struct_jrec_upd",6,"len")=8 + Set gtmtypes("struct_jrec_upd",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq")=6 + Set gtmtypes("struct_jrec_upd",7,"name")="struct_jrec_upd.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_upd",7,"off")=24 + Set gtmtypes("struct_jrec_upd",7,"len")=8 + Set gtmtypes("struct_jrec_upd",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_upd",8,"name")="struct_jrec_upd.token_seq.token" + Set gtmtypes("struct_jrec_upd",8,"off")=24 + Set gtmtypes("struct_jrec_upd",8,"len")=8 + Set gtmtypes("struct_jrec_upd",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq.token")=8 + Set gtmtypes("struct_jrec_upd",9,"name")="struct_jrec_upd.strm_seqno" + Set gtmtypes("struct_jrec_upd",9,"off")=32 + Set gtmtypes("struct_jrec_upd",9,"len")=8 + Set gtmtypes("struct_jrec_upd",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","strm_seqno")=9 + Set gtmtypes("struct_jrec_upd",10,"name")="struct_jrec_upd.update_num" + Set gtmtypes("struct_jrec_upd",10,"off")=40 + Set gtmtypes("struct_jrec_upd",10,"len")=4 + Set gtmtypes("struct_jrec_upd",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","update_num")=10 + Set gtmtypes("struct_jrec_upd",11,"name")="struct_jrec_upd.filler_short" + Set gtmtypes("struct_jrec_upd",11,"off")=44 + Set gtmtypes("struct_jrec_upd",11,"len")=2 + Set gtmtypes("struct_jrec_upd",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_upd","filler_short")=11 + Set gtmtypes("struct_jrec_upd",12,"name")="struct_jrec_upd.num_participants" + Set gtmtypes("struct_jrec_upd",12,"off")=46 + Set gtmtypes("struct_jrec_upd",12,"len")=2 + Set gtmtypes("struct_jrec_upd",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_upd","num_participants")=12 + Set gtmtypes("struct_jrec_upd",13,"name")="struct_jrec_upd.mumps_node" + Set gtmtypes("struct_jrec_upd",13,"off")=48 + Set gtmtypes("struct_jrec_upd",13,"len")=8 + Set gtmtypes("struct_jrec_upd",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_upd","mumps_node")=13 + Set gtmtypes("struct_jrec_upd",14,"name")="struct_jrec_upd.mumps_node.text" + Set gtmtypes("struct_jrec_upd",14,"off")=52 + Set gtmtypes("struct_jrec_upd",14,"len")=1 + Set gtmtypes("struct_jrec_upd",14,"type")="char" + Set gtmtypfldindx("struct_jrec_upd","mumps_node.text")=14 + ; + Set gtmtypes("struct_jrec_ztcom")="struct" + Set gtmtypes("struct_jrec_ztcom",0)=10 + Set gtmtypes("struct_jrec_ztcom","len")=48 + Set gtmtypes("struct_jrec_ztcom",1,"name")="struct_jrec_ztcom.prefix" + Set gtmtypes("struct_jrec_ztcom",1,"off")=0 + Set gtmtypes("struct_jrec_ztcom",1,"len")=24 + Set gtmtypes("struct_jrec_ztcom",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_ztcom","prefix")=1 + Set gtmtypes("struct_jrec_ztcom",2,"name")="struct_jrec_ztcom.prefix.pini_addr" + Set gtmtypes("struct_jrec_ztcom",2,"off")=4 + Set gtmtypes("struct_jrec_ztcom",2,"len")=4 + Set gtmtypes("struct_jrec_ztcom",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_ztcom",3,"name")="struct_jrec_ztcom.prefix.time" + Set gtmtypes("struct_jrec_ztcom",3,"off")=8 + Set gtmtypes("struct_jrec_ztcom",3,"len")=4 + Set gtmtypes("struct_jrec_ztcom",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.time")=3 + Set gtmtypes("struct_jrec_ztcom",4,"name")="struct_jrec_ztcom.prefix.checksum" + Set gtmtypes("struct_jrec_ztcom",4,"off")=12 + Set gtmtypes("struct_jrec_ztcom",4,"len")=4 + Set gtmtypes("struct_jrec_ztcom",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.checksum")=4 + Set gtmtypes("struct_jrec_ztcom",5,"name")="struct_jrec_ztcom.prefix.tn" + Set gtmtypes("struct_jrec_ztcom",5,"off")=16 + Set gtmtypes("struct_jrec_ztcom",5,"len")=8 + Set gtmtypes("struct_jrec_ztcom",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.tn")=5 + Set gtmtypes("struct_jrec_ztcom",6,"name")="struct_jrec_ztcom.token" + Set gtmtypes("struct_jrec_ztcom",6,"off")=24 + Set gtmtypes("struct_jrec_ztcom",6,"len")=8 + Set gtmtypes("struct_jrec_ztcom",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","token")=6 + Set gtmtypes("struct_jrec_ztcom",7,"name")="struct_jrec_ztcom.filler_8bytes" + Set gtmtypes("struct_jrec_ztcom",7,"off")=32 + Set gtmtypes("struct_jrec_ztcom",7,"len")=8 + Set gtmtypes("struct_jrec_ztcom",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","filler_8bytes")=7 + Set gtmtypes("struct_jrec_ztcom",8,"name")="struct_jrec_ztcom.filler_short" + Set gtmtypes("struct_jrec_ztcom",8,"off")=40 + Set gtmtypes("struct_jrec_ztcom",8,"len")=2 + Set gtmtypes("struct_jrec_ztcom",8,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztcom","filler_short")=8 + Set gtmtypes("struct_jrec_ztcom",9,"name")="struct_jrec_ztcom.participants" + Set gtmtypes("struct_jrec_ztcom",9,"off")=42 + Set gtmtypes("struct_jrec_ztcom",9,"len")=2 + Set gtmtypes("struct_jrec_ztcom",9,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztcom","participants")=9 + Set gtmtypes("struct_jrec_ztcom",10,"name")="struct_jrec_ztcom.suffix" + Set gtmtypes("struct_jrec_ztcom",10,"off")=44 + Set gtmtypes("struct_jrec_ztcom",10,"len")=4 + Set gtmtypes("struct_jrec_ztcom",10,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_ztcom","suffix")=10 + ; + Set gtmtypes("struct_jrec_ztworm")="struct" + Set gtmtypes("struct_jrec_ztworm",0)=14 + Set gtmtypes("struct_jrec_ztworm","len")=56 + Set gtmtypes("struct_jrec_ztworm",1,"name")="struct_jrec_ztworm.prefix" + Set gtmtypes("struct_jrec_ztworm",1,"off")=0 + Set gtmtypes("struct_jrec_ztworm",1,"len")=24 + Set gtmtypes("struct_jrec_ztworm",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_ztworm","prefix")=1 + Set gtmtypes("struct_jrec_ztworm",2,"name")="struct_jrec_ztworm.prefix.pini_addr" + Set gtmtypes("struct_jrec_ztworm",2,"off")=4 + Set gtmtypes("struct_jrec_ztworm",2,"len")=4 + Set gtmtypes("struct_jrec_ztworm",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_ztworm",3,"name")="struct_jrec_ztworm.prefix.time" + Set gtmtypes("struct_jrec_ztworm",3,"off")=8 + Set gtmtypes("struct_jrec_ztworm",3,"len")=4 + Set gtmtypes("struct_jrec_ztworm",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.time")=3 + Set gtmtypes("struct_jrec_ztworm",4,"name")="struct_jrec_ztworm.prefix.checksum" + Set gtmtypes("struct_jrec_ztworm",4,"off")=12 + Set gtmtypes("struct_jrec_ztworm",4,"len")=4 + Set gtmtypes("struct_jrec_ztworm",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.checksum")=4 + Set gtmtypes("struct_jrec_ztworm",5,"name")="struct_jrec_ztworm.prefix.tn" + Set gtmtypes("struct_jrec_ztworm",5,"off")=16 + Set gtmtypes("struct_jrec_ztworm",5,"len")=8 + Set gtmtypes("struct_jrec_ztworm",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.tn")=5 + Set gtmtypes("struct_jrec_ztworm",6,"name")="struct_jrec_ztworm.token_seq" + Set gtmtypes("struct_jrec_ztworm",6,"off")=24 + Set gtmtypes("struct_jrec_ztworm",6,"len")=8 + Set gtmtypes("struct_jrec_ztworm",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq")=6 + Set gtmtypes("struct_jrec_ztworm",7,"name")="struct_jrec_ztworm.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_ztworm",7,"off")=24 + Set gtmtypes("struct_jrec_ztworm",7,"len")=8 + Set gtmtypes("struct_jrec_ztworm",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_ztworm",8,"name")="struct_jrec_ztworm.token_seq.token" + Set gtmtypes("struct_jrec_ztworm",8,"off")=24 + Set gtmtypes("struct_jrec_ztworm",8,"len")=8 + Set gtmtypes("struct_jrec_ztworm",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq.token")=8 + Set gtmtypes("struct_jrec_ztworm",9,"name")="struct_jrec_ztworm.strm_seqno" + Set gtmtypes("struct_jrec_ztworm",9,"off")=32 + Set gtmtypes("struct_jrec_ztworm",9,"len")=8 + Set gtmtypes("struct_jrec_ztworm",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","strm_seqno")=9 + Set gtmtypes("struct_jrec_ztworm",10,"name")="struct_jrec_ztworm.update_num" + Set gtmtypes("struct_jrec_ztworm",10,"off")=40 + Set gtmtypes("struct_jrec_ztworm",10,"len")=4 + Set gtmtypes("struct_jrec_ztworm",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","update_num")=10 + Set gtmtypes("struct_jrec_ztworm",11,"name")="struct_jrec_ztworm.filler_short" + Set gtmtypes("struct_jrec_ztworm",11,"off")=44 + Set gtmtypes("struct_jrec_ztworm",11,"len")=2 + Set gtmtypes("struct_jrec_ztworm",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztworm","filler_short")=11 + Set gtmtypes("struct_jrec_ztworm",12,"name")="struct_jrec_ztworm.num_participants" + Set gtmtypes("struct_jrec_ztworm",12,"off")=46 + Set gtmtypes("struct_jrec_ztworm",12,"len")=2 + Set gtmtypes("struct_jrec_ztworm",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztworm","num_participants")=12 + Set gtmtypes("struct_jrec_ztworm",13,"name")="struct_jrec_ztworm.ztworm_str" + Set gtmtypes("struct_jrec_ztworm",13,"off")=48 + Set gtmtypes("struct_jrec_ztworm",13,"len")=8 + Set gtmtypes("struct_jrec_ztworm",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_ztworm","ztworm_str")=13 + Set gtmtypes("struct_jrec_ztworm",14,"name")="struct_jrec_ztworm.ztworm_str.text" + Set gtmtypes("struct_jrec_ztworm",14,"off")=52 + Set gtmtypes("struct_jrec_ztworm",14,"len")=1 + Set gtmtypes("struct_jrec_ztworm",14,"type")="char" + Set gtmtypfldindx("struct_jrec_ztworm","ztworm_str.text")=14 + ; + Set gtmtypes("super_srch_hist")="struct" + Set gtmtypes("super_srch_hist",0)=18 + Set gtmtypes("super_srch_hist","len")=776 + Set gtmtypes("super_srch_hist",1,"name")="super_srch_hist.depth" + Set gtmtypes("super_srch_hist",1,"off")=0 + Set gtmtypes("super_srch_hist",1,"len")=4 + Set gtmtypes("super_srch_hist",1,"type")="int" + Set gtmtypfldindx("super_srch_hist","depth")=1 + Set gtmtypes("super_srch_hist",2,"name")="super_srch_hist.filler" + Set gtmtypes("super_srch_hist",2,"off")=4 + Set gtmtypes("super_srch_hist",2,"len")=4 + Set gtmtypes("super_srch_hist",2,"type")="int" + Set gtmtypfldindx("super_srch_hist","filler")=2 + Set gtmtypes("super_srch_hist",3,"name")="super_srch_hist.h" + Set gtmtypes("super_srch_hist",3,"off")=8 + Set gtmtypes("super_srch_hist",3,"len")=768 + Set gtmtypes("super_srch_hist",3,"type")="srch_blk_status" + Set gtmtypfldindx("super_srch_hist","h")=3 + Set gtmtypes("super_srch_hist",3,"dim")=16 + Set gtmtypes("super_srch_hist",4,"name")="super_srch_hist.h[0].cr" + Set gtmtypes("super_srch_hist",4,"off")=8 + Set gtmtypes("super_srch_hist",4,"len")=4 + Set gtmtypes("super_srch_hist",4,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].cr")=4 + Set gtmtypes("super_srch_hist",5,"name")="super_srch_hist.h[0].buffaddr" + Set gtmtypes("super_srch_hist",5,"off")=12 + Set gtmtypes("super_srch_hist",5,"len")=4 + Set gtmtypes("super_srch_hist",5,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].buffaddr")=5 + Set gtmtypes("super_srch_hist",6,"name")="super_srch_hist.h[0].blk_num" + Set gtmtypes("super_srch_hist",6,"off")=16 + Set gtmtypes("super_srch_hist",6,"len")=4 + Set gtmtypes("super_srch_hist",6,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].blk_num")=6 + Set gtmtypes("super_srch_hist",7,"name")="super_srch_hist.h[0].tn" + Set gtmtypes("super_srch_hist",7,"off")=20 + Set gtmtypes("super_srch_hist",7,"len")=8 + Set gtmtypes("super_srch_hist",7,"type")="uint64_t" + Set gtmtypfldindx("super_srch_hist","h[0].tn")=7 + Set gtmtypes("super_srch_hist",8,"name")="super_srch_hist.h[0].prev_rec" + Set gtmtypes("super_srch_hist",8,"off")=28 + Set gtmtypes("super_srch_hist",8,"len")=4 + Set gtmtypes("super_srch_hist",8,"type")="srch_rec_status" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec")=8 + Set gtmtypes("super_srch_hist",9,"name")="super_srch_hist.h[0].prev_rec.offset" + Set gtmtypes("super_srch_hist",9,"off")=28 + Set gtmtypes("super_srch_hist",9,"len")=2 + Set gtmtypes("super_srch_hist",9,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec.offset")=9 + Set gtmtypes("super_srch_hist",10,"name")="super_srch_hist.h[0].prev_rec.match" + Set gtmtypes("super_srch_hist",10,"off")=30 + Set gtmtypes("super_srch_hist",10,"len")=2 + Set gtmtypes("super_srch_hist",10,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec.match")=10 + Set gtmtypes("super_srch_hist",11,"name")="super_srch_hist.h[0].curr_rec" + Set gtmtypes("super_srch_hist",11,"off")=32 + Set gtmtypes("super_srch_hist",11,"len")=4 + Set gtmtypes("super_srch_hist",11,"type")="srch_rec_status" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec")=11 + Set gtmtypes("super_srch_hist",12,"name")="super_srch_hist.h[0].curr_rec.offset" + Set gtmtypes("super_srch_hist",12,"off")=32 + Set gtmtypes("super_srch_hist",12,"len")=2 + Set gtmtypes("super_srch_hist",12,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec.offset")=12 + Set gtmtypes("super_srch_hist",13,"name")="super_srch_hist.h[0].curr_rec.match" + Set gtmtypes("super_srch_hist",13,"off")=34 + Set gtmtypes("super_srch_hist",13,"len")=2 + Set gtmtypes("super_srch_hist",13,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec.match")=13 + Set gtmtypes("super_srch_hist",14,"name")="super_srch_hist.h[0].cycle" + Set gtmtypes("super_srch_hist",14,"off")=36 + Set gtmtypes("super_srch_hist",14,"len")=4 + Set gtmtypes("super_srch_hist",14,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].cycle")=14 + Set gtmtypes("super_srch_hist",15,"name")="super_srch_hist.h[0].level" + Set gtmtypes("super_srch_hist",15,"off")=40 + Set gtmtypes("super_srch_hist",15,"len")=4 + Set gtmtypes("super_srch_hist",15,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].level")=15 + Set gtmtypes("super_srch_hist",16,"name")="super_srch_hist.h[0].cse" + Set gtmtypes("super_srch_hist",16,"off")=44 + Set gtmtypes("super_srch_hist",16,"len")=4 + Set gtmtypes("super_srch_hist",16,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].cse")=16 + Set gtmtypes("super_srch_hist",17,"name")="super_srch_hist.h[0].first_tp_srch_status" + Set gtmtypes("super_srch_hist",17,"off")=48 + Set gtmtypes("super_srch_hist",17,"len")=4 + Set gtmtypes("super_srch_hist",17,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].first_tp_srch_status")=17 + Set gtmtypes("super_srch_hist",18,"name")="super_srch_hist.h[0].blk_target" + Set gtmtypes("super_srch_hist",18,"off")=52 + Set gtmtypes("super_srch_hist",18,"len")=4 + Set gtmtypes("super_srch_hist",18,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].blk_target")=18 + ; + Set gtmtypes("svn_data_type")="struct" + Set gtmtypes("svn_data_type",0)=3 + Set gtmtypes("svn_data_type","len")=8 + Set gtmtypes("svn_data_type",1,"name")="svn_data_type.opcode" + Set gtmtypes("svn_data_type",1,"off")=0 + Set gtmtypes("svn_data_type",1,"len")=4 + Set gtmtypes("svn_data_type",1,"type")="unsigned-int" + Set gtmtypfldindx("svn_data_type","opcode")=1 + Set gtmtypes("svn_data_type",2,"name")="svn_data_type.can_set" + Set gtmtypes("svn_data_type",2,"off")=4 + Set gtmtypes("svn_data_type",2,"len")=1 + Set gtmtypes("svn_data_type",2,"type")="char" + Set gtmtypfldindx("svn_data_type","can_set")=2 + Set gtmtypes("svn_data_type",3,"name")="svn_data_type.os_syst" + Set gtmtypes("svn_data_type",3,"off")=5 + Set gtmtypes("svn_data_type",3,"len")=1 + Set gtmtypes("svn_data_type",3,"type")="char" + Set gtmtypfldindx("svn_data_type","os_syst")=3 + ; + Set gtmtypes("symval")="struct" + Set gtmtypes("symval",0)=30 + Set gtmtypes("symval","len")=112 + Set gtmtypes("symval",1,"name")="symval.ident" + Set gtmtypes("symval",1,"off")=0 + Set gtmtypes("symval",1,"len")=2 + Set gtmtypes("symval",1,"type")="unsigned-short" + Set gtmtypfldindx("symval","ident")=1 + Set gtmtypes("symval",2,"name")="symval.sbs_depth" + Set gtmtypes("symval",2,"off")=2 + Set gtmtypes("symval",2,"len")=2 + Set gtmtypes("symval",2,"type")="unsigned-short" + Set gtmtypfldindx("symval","sbs_depth")=2 + Set gtmtypes("symval",3,"name")="symval.tp_save_all" + Set gtmtypes("symval",3,"off")=4 + Set gtmtypes("symval",3,"len")=4 + Set gtmtypes("symval",3,"type")="boolean_t" + Set gtmtypfldindx("symval","tp_save_all")=3 + Set gtmtypes("symval",4,"name")="symval.xnew_var_list" + Set gtmtypes("symval",4,"off")=8 + Set gtmtypes("symval",4,"len")=4 + Set gtmtypes("symval",4,"type")="addr" + Set gtmtypfldindx("symval","xnew_var_list")=4 + Set gtmtypes("symval",5,"name")="symval.xnew_ref_list" + Set gtmtypes("symval",5,"off")=12 + Set gtmtypes("symval",5,"len")=4 + Set gtmtypes("symval",5,"type")="addr" + Set gtmtypfldindx("symval","xnew_ref_list")=5 + Set gtmtypes("symval",6,"name")="symval.h_symtab" + Set gtmtypes("symval",6,"off")=16 + Set gtmtypes("symval",6,"len")=56 + Set gtmtypes("symval",6,"type")="hash_table_mname" + Set gtmtypfldindx("symval","h_symtab")=6 + Set gtmtypes("symval",7,"name")="symval.h_symtab.base" + Set gtmtypes("symval",7,"off")=16 + Set gtmtypes("symval",7,"len")=4 + Set gtmtypes("symval",7,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.base")=7 + Set gtmtypes("symval",8,"name")="symval.h_symtab.top" + Set gtmtypes("symval",8,"off")=20 + Set gtmtypes("symval",8,"len")=4 + Set gtmtypes("symval",8,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.top")=8 + Set gtmtypes("symval",9,"name")="symval.h_symtab.size" + Set gtmtypes("symval",9,"off")=24 + Set gtmtypes("symval",9,"len")=4 + Set gtmtypes("symval",9,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.size")=9 + Set gtmtypes("symval",10,"name")="symval.h_symtab.initial_size" + Set gtmtypes("symval",10,"off")=28 + Set gtmtypes("symval",10,"len")=4 + Set gtmtypes("symval",10,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.initial_size")=10 + Set gtmtypes("symval",11,"name")="symval.h_symtab.spare_base" + Set gtmtypes("symval",11,"off")=32 + Set gtmtypes("symval",11,"len")=4 + Set gtmtypes("symval",11,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.spare_base")=11 + Set gtmtypes("symval",12,"name")="symval.h_symtab.spare_base_size" + Set gtmtypes("symval",12,"off")=36 + Set gtmtypes("symval",12,"len")=4 + Set gtmtypes("symval",12,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.spare_base_size")=12 + Set gtmtypes("symval",13,"name")="symval.h_symtab.dont_compact" + Set gtmtypes("symval",13,"off")=40 + Set gtmtypes("symval",13,"len")=4 + Set gtmtypes("symval",13,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.dont_compact")=13 + Set gtmtypes("symval",14,"name")="symval.h_symtab.dont_keep_spare_table" + Set gtmtypes("symval",14,"off")=44 + Set gtmtypes("symval",14,"len")=4 + Set gtmtypes("symval",14,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.dont_keep_spare_table")=14 + Set gtmtypes("symval",15,"name")="symval.h_symtab.defer_base_release" + Set gtmtypes("symval",15,"off")=48 + Set gtmtypes("symval",15,"len")=4 + Set gtmtypes("symval",15,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.defer_base_release")=15 + Set gtmtypes("symval",16,"name")="symval.h_symtab.count" + Set gtmtypes("symval",16,"off")=52 + Set gtmtypes("symval",16,"len")=4 + Set gtmtypes("symval",16,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.count")=16 + Set gtmtypes("symval",17,"name")="symval.h_symtab.del_count" + Set gtmtypes("symval",17,"off")=56 + Set gtmtypes("symval",17,"len")=4 + Set gtmtypes("symval",17,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.del_count")=17 + Set gtmtypes("symval",18,"name")="symval.h_symtab.exp_trigger_size" + Set gtmtypes("symval",18,"off")=60 + Set gtmtypes("symval",18,"len")=4 + Set gtmtypes("symval",18,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.exp_trigger_size")=18 + Set gtmtypes("symval",19,"name")="symval.h_symtab.cmp_trigger_size" + Set gtmtypes("symval",19,"off")=64 + Set gtmtypes("symval",19,"len")=4 + Set gtmtypes("symval",19,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.cmp_trigger_size")=19 + Set gtmtypes("symval",20,"name")="symval.h_symtab.entry_passed_thru" + Set gtmtypes("symval",20,"off")=68 + Set gtmtypes("symval",20,"len")=4 + Set gtmtypes("symval",20,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.entry_passed_thru")=20 + Set gtmtypes("symval",21,"name")="symval.lv_first_block" + Set gtmtypes("symval",21,"off")=72 + Set gtmtypes("symval",21,"len")=4 + Set gtmtypes("symval",21,"type")="addr" + Set gtmtypfldindx("symval","lv_first_block")=21 + Set gtmtypes("symval",22,"name")="symval.lvtree_first_block" + Set gtmtypes("symval",22,"off")=76 + Set gtmtypes("symval",22,"len")=4 + Set gtmtypes("symval",22,"type")="addr" + Set gtmtypfldindx("symval","lvtree_first_block")=22 + Set gtmtypes("symval",23,"name")="symval.lvtreenode_first_block" + Set gtmtypes("symval",23,"off")=80 + Set gtmtypes("symval",23,"len")=4 + Set gtmtypes("symval",23,"type")="addr" + Set gtmtypfldindx("symval","lvtreenode_first_block")=23 + Set gtmtypes("symval",24,"name")="symval.lv_flist" + Set gtmtypes("symval",24,"off")=84 + Set gtmtypes("symval",24,"len")=4 + Set gtmtypes("symval",24,"type")="addr" + Set gtmtypfldindx("symval","lv_flist")=24 + Set gtmtypes("symval",25,"name")="symval.lvtree_flist" + Set gtmtypes("symval",25,"off")=88 + Set gtmtypes("symval",25,"len")=4 + Set gtmtypes("symval",25,"type")="addr" + Set gtmtypfldindx("symval","lvtree_flist")=25 + Set gtmtypes("symval",26,"name")="symval.lvtreenode_flist" + Set gtmtypes("symval",26,"off")=92 + Set gtmtypes("symval",26,"len")=4 + Set gtmtypes("symval",26,"type")="addr" + Set gtmtypfldindx("symval","lvtreenode_flist")=26 + Set gtmtypes("symval",27,"name")="symval.last_tab" + Set gtmtypes("symval",27,"off")=96 + Set gtmtypes("symval",27,"len")=4 + Set gtmtypes("symval",27,"type")="addr" + Set gtmtypfldindx("symval","last_tab")=27 + Set gtmtypes("symval",28,"name")="symval.symvlvl" + Set gtmtypes("symval",28,"off")=100 + Set gtmtypes("symval",28,"len")=4 + Set gtmtypes("symval",28,"type")="int" + Set gtmtypfldindx("symval","symvlvl")=28 + Set gtmtypes("symval",29,"name")="symval.trigr_symval" + Set gtmtypes("symval",29,"off")=104 + Set gtmtypes("symval",29,"len")=4 + Set gtmtypes("symval",29,"type")="boolean_t" + Set gtmtypfldindx("symval","trigr_symval")=29 + Set gtmtypes("symval",30,"name")="symval.alias_activity" + Set gtmtypes("symval",30,"off")=108 + Set gtmtypes("symval",30,"len")=4 + Set gtmtypes("symval",30,"type")="boolean_t" + Set gtmtypfldindx("symval","alias_activity")=30 + ; + Set gtmtypes("tbp")="struct" + Set gtmtypes("tbp",0)=4 + Set gtmtypes("tbp","len")=12 + Set gtmtypes("tbp",1,"name")="tbp.que" + Set gtmtypes("tbp",1,"off")=0 + Set gtmtypes("tbp",1,"len")=8 + Set gtmtypes("tbp",1,"type")="struct" + Set gtmtypfldindx("tbp","que")=1 + Set gtmtypes("tbp",2,"name")="tbp.que.fl" + Set gtmtypes("tbp",2,"off")=0 + Set gtmtypes("tbp",2,"len")=4 + Set gtmtypes("tbp",2,"type")="addr" + Set gtmtypfldindx("tbp","que.fl")=2 + Set gtmtypes("tbp",3,"name")="tbp.que.bl" + Set gtmtypes("tbp",3,"off")=4 + Set gtmtypes("tbp",3,"len")=4 + Set gtmtypes("tbp",3,"type")="addr" + Set gtmtypfldindx("tbp","que.bl")=3 + Set gtmtypes("tbp",4,"name")="tbp.bpt" + Set gtmtypes("tbp",4,"off")=8 + Set gtmtypes("tbp",4,"len")=4 + Set gtmtypes("tbp",4,"type")="addr" + Set gtmtypfldindx("tbp","bpt")=4 + ; + Set gtmtypes("template_struct")="struct" + Set gtmtypes("template_struct",0)=5 + Set gtmtypes("template_struct","len")=3076 + Set gtmtypes("template_struct",1,"name")="template_struct.n_subs" + Set gtmtypes("template_struct",1,"off")=0 + Set gtmtypes("template_struct",1,"len")=2 + Set gtmtypes("template_struct",1,"type")="unsigned-short" + Set gtmtypfldindx("template_struct","n_subs")=1 + Set gtmtypes("template_struct",2,"name")="template_struct.sub" + Set gtmtypes("template_struct",2,"off")=4 + Set gtmtypes("template_struct",2,"len")=3072 + Set gtmtypes("template_struct",2,"type")="mstr" + Set gtmtypfldindx("template_struct","sub")=2 + Set gtmtypes("template_struct",2,"dim")=256 + Set gtmtypes("template_struct",3,"name")="template_struct.sub[0].char_len" + Set gtmtypes("template_struct",3,"off")=4 + Set gtmtypes("template_struct",3,"len")=4 + Set gtmtypes("template_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("template_struct","sub[0].char_len")=3 + Set gtmtypes("template_struct",4,"name")="template_struct.sub[0].len" + Set gtmtypes("template_struct",4,"off")=8 + Set gtmtypes("template_struct",4,"len")=4 + Set gtmtypes("template_struct",4,"type")="int" + Set gtmtypfldindx("template_struct","sub[0].len")=4 + Set gtmtypes("template_struct",5,"name")="template_struct.sub[0].addr" + Set gtmtypes("template_struct",5,"off")=12 + Set gtmtypes("template_struct",5,"len")=4 + Set gtmtypes("template_struct",5,"type")="addr" + Set gtmtypfldindx("template_struct","sub[0].addr")=5 + ; + Set gtmtypes("testpt_struct")="struct" + Set gtmtypes("testpt_struct",0)=1 + Set gtmtypes("testpt_struct","len")=1 + Set gtmtypes("testpt_struct",1,"name")="testpt_struct.wc_recover" + Set gtmtypes("testpt_struct",1,"off")=0 + Set gtmtypes("testpt_struct",1,"len")=1 + Set gtmtypes("testpt_struct",1,"type")="char" + Set gtmtypfldindx("testpt_struct","wc_recover")=1 + ; + Set gtmtypes("textElem")="struct" + Set gtmtypes("textElem",0)=9 + Set gtmtypes("textElem","len")=24 + Set gtmtypes("textElem",1,"name")="textElem.queueIndex" + Set gtmtypes("textElem",1,"off")=0 + Set gtmtypes("textElem",1,"len")=4 + Set gtmtypes("textElem",1,"type")="int" + Set gtmtypfldindx("textElem","queueIndex")=1 + Set gtmtypes("textElem",2,"name")="textElem.state" + Set gtmtypes("textElem",2,"off")=4 + Set gtmtypes("textElem",2,"len")=4 + Set gtmtypes("textElem",2,"type")="int" + Set gtmtypfldindx("textElem","state")=2 + Set gtmtypes("textElem",3,"name")="textElem.realLen" + Set gtmtypes("textElem",3,"off")=8 + Set gtmtypes("textElem",3,"len")=4 + Set gtmtypes("textElem",3,"type")="unsigned-int" + Set gtmtypfldindx("textElem","realLen")=3 + Set gtmtypes("textElem",4,"name")="textElem.filler" + Set gtmtypes("textElem",4,"off")=12 + Set gtmtypes("textElem",4,"len")=4 + Set gtmtypes("textElem",4,"type")="int" + Set gtmtypfldindx("textElem","filler")=4 + Set gtmtypes("textElem",5,"name")="textElem.userStorage" + Set gtmtypes("textElem",5,"off")=16 + Set gtmtypes("textElem",5,"len")=8 + Set gtmtypes("textElem",5,"type")="union" + Set gtmtypfldindx("textElem","userStorage")=5 + Set gtmtypes("textElem",6,"name")="textElem.userStorage.links" + Set gtmtypes("textElem",6,"off")=16 + Set gtmtypes("textElem",6,"len")=8 + Set gtmtypes("textElem",6,"type")="struct" + Set gtmtypfldindx("textElem","userStorage.links")=6 + Set gtmtypes("textElem",7,"name")="textElem.userStorage.links.fPtr" + Set gtmtypes("textElem",7,"off")=16 + Set gtmtypes("textElem",7,"len")=4 + Set gtmtypes("textElem",7,"type")="addr" + Set gtmtypfldindx("textElem","userStorage.links.fPtr")=7 + Set gtmtypes("textElem",8,"name")="textElem.userStorage.links.bPtr" + Set gtmtypes("textElem",8,"off")=20 + Set gtmtypes("textElem",8,"len")=4 + Set gtmtypes("textElem",8,"type")="addr" + Set gtmtypfldindx("textElem","userStorage.links.bPtr")=8 + Set gtmtypes("textElem",9,"name")="textElem.userStorage.userStart" + Set gtmtypes("textElem",9,"off")=16 + Set gtmtypes("textElem",9,"len")=1 + Set gtmtypes("textElem",9,"type")="unsigned-char" + Set gtmtypfldindx("textElem","userStorage.userStart")=9 + ; + Set gtmtypes("th_index")="struct" + Set gtmtypes("th_index",0)=9 + Set gtmtypes("th_index","len")=56 + Set gtmtypes("th_index",1,"name")="th_index.curr_tn" + Set gtmtypes("th_index",1,"off")=0 + Set gtmtypes("th_index",1,"len")=8 + Set gtmtypes("th_index",1,"type")="uint64_t" + Set gtmtypfldindx("th_index","curr_tn")=1 + Set gtmtypes("th_index",2,"name")="th_index.early_tn" + Set gtmtypes("th_index",2,"off")=8 + Set gtmtypes("th_index",2,"len")=8 + Set gtmtypes("th_index",2,"type")="uint64_t" + Set gtmtypfldindx("th_index","early_tn")=2 + Set gtmtypes("th_index",3,"name")="th_index.last_mm_sync" + Set gtmtypes("th_index",3,"off")=16 + Set gtmtypes("th_index",3,"len")=8 + Set gtmtypes("th_index",3,"type")="uint64_t" + Set gtmtypfldindx("th_index","last_mm_sync")=3 + Set gtmtypes("th_index",4,"name")="th_index.filler_8byte" + Set gtmtypes("th_index",4,"off")=24 + Set gtmtypes("th_index",4,"len")=8 + Set gtmtypes("th_index",4,"type")="char" + Set gtmtypfldindx("th_index","filler_8byte")=4 + Set gtmtypes("th_index",5,"name")="th_index.mm_tn" + Set gtmtypes("th_index",5,"off")=32 + Set gtmtypes("th_index",5,"len")=8 + Set gtmtypes("th_index",5,"type")="uint64_t" + Set gtmtypfldindx("th_index","mm_tn")=5 + Set gtmtypes("th_index",6,"name")="th_index.lock_sequence" + Set gtmtypes("th_index",6,"off")=40 + Set gtmtypes("th_index",6,"len")=4 + Set gtmtypes("th_index",6,"type")="unsigned-int" + Set gtmtypfldindx("th_index","lock_sequence")=6 + Set gtmtypes("th_index",7,"name")="th_index.ccp_jnl_filesize" + Set gtmtypes("th_index",7,"off")=44 + Set gtmtypes("th_index",7,"len")=4 + Set gtmtypes("th_index",7,"type")="unsigned-int" + Set gtmtypfldindx("th_index","ccp_jnl_filesize")=7 + Set gtmtypes("th_index",8,"name")="th_index.total_blks" + Set gtmtypes("th_index",8,"off")=48 + Set gtmtypes("th_index",8,"len")=4 + Set gtmtypes("th_index",8,"type")="unsigned-int" + Set gtmtypfldindx("th_index","total_blks")=8 + Set gtmtypes("th_index",9,"name")="th_index.free_blocks" + Set gtmtypes("th_index",9,"off")=52 + Set gtmtypes("th_index",9,"len")=4 + Set gtmtypes("th_index",9,"type")="unsigned-int" + Set gtmtypfldindx("th_index","free_blocks")=9 + ; + Set gtmtypes("th_rec")="struct" + Set gtmtypes("th_rec",0)=10 + Set gtmtypes("th_rec","len")=40 + Set gtmtypes("th_rec",1,"name")="th_rec.tnque" + Set gtmtypes("th_rec",1,"off")=0 + Set gtmtypes("th_rec",1,"len")=8 + Set gtmtypes("th_rec",1,"type")="struct" + Set gtmtypfldindx("th_rec","tnque")=1 + Set gtmtypes("th_rec",2,"name")="th_rec.tnque.fl" + Set gtmtypes("th_rec",2,"off")=0 + Set gtmtypes("th_rec",2,"len")=4 + Set gtmtypes("th_rec",2,"type")="intptr_t" + Set gtmtypfldindx("th_rec","tnque.fl")=2 + Set gtmtypes("th_rec",3,"name")="th_rec.tnque.bl" + Set gtmtypes("th_rec",3,"off")=4 + Set gtmtypes("th_rec",3,"len")=4 + Set gtmtypes("th_rec",3,"type")="intptr_t" + Set gtmtypfldindx("th_rec","tnque.bl")=3 + Set gtmtypes("th_rec",4,"name")="th_rec.tn" + Set gtmtypes("th_rec",4,"off")=8 + Set gtmtypes("th_rec",4,"len")=8 + Set gtmtypes("th_rec",4,"type")="uint64_t" + Set gtmtypfldindx("th_rec","tn")=4 + Set gtmtypes("th_rec",5,"name")="th_rec.killtn" + Set gtmtypes("th_rec",5,"off")=16 + Set gtmtypes("th_rec",5,"len")=8 + Set gtmtypes("th_rec",5,"type")="uint64_t" + Set gtmtypfldindx("th_rec","killtn")=5 + Set gtmtypes("th_rec",6,"name")="th_rec.blk" + Set gtmtypes("th_rec",6,"off")=24 + Set gtmtypes("th_rec",6,"len")=4 + Set gtmtypes("th_rec",6,"type")="int" + Set gtmtypfldindx("th_rec","blk")=6 + Set gtmtypes("th_rec",7,"name")="th_rec.cache_index" + Set gtmtypes("th_rec",7,"off")=28 + Set gtmtypes("th_rec",7,"len")=4 + Set gtmtypes("th_rec",7,"type")="int" + Set gtmtypfldindx("th_rec","cache_index")=7 + Set gtmtypes("th_rec",8,"name")="th_rec.flushing" + Set gtmtypes("th_rec",8,"off")=32 + Set gtmtypes("th_rec",8,"len")=1 + Set gtmtypes("th_rec",8,"type")="char" + Set gtmtypfldindx("th_rec","flushing")=8 + Set gtmtypes("th_rec",9,"name")="th_rec.filler" + Set gtmtypes("th_rec",9,"off")=33 + Set gtmtypes("th_rec",9,"len")=3 + Set gtmtypes("th_rec",9,"type")="char" + Set gtmtypfldindx("th_rec","filler")=9 + Set gtmtypes("th_rec",10,"name")="th_rec.filler_int4" + Set gtmtypes("th_rec",10,"off")=36 + Set gtmtypes("th_rec",10,"len")=4 + Set gtmtypes("th_rec",10,"type")="int" + Set gtmtypfldindx("th_rec","filler_int4")=10 + ; + Set gtmtypes("thread_parm_t")="struct" + Set gtmtypes("thread_parm_t",0)=5 + Set gtmtypes("thread_parm_t","len")=20 + Set gtmtypes("thread_parm_t",1,"name")="thread_parm_t.ntasks" + Set gtmtypes("thread_parm_t",1,"off")=0 + Set gtmtypes("thread_parm_t",1,"len")=4 + Set gtmtypes("thread_parm_t",1,"type")="int" + Set gtmtypfldindx("thread_parm_t","ntasks")=1 + Set gtmtypes("thread_parm_t",2,"name")="thread_parm_t.fnptr" + Set gtmtypes("thread_parm_t",2,"off")=4 + Set gtmtypes("thread_parm_t",2,"len")=4 + Set gtmtypes("thread_parm_t",2,"type")="gtm_pthread_fnptr_t" + Set gtmtypfldindx("thread_parm_t","fnptr")=2 + Set gtmtypes("thread_parm_t",3,"name")="thread_parm_t.ret_array" + Set gtmtypes("thread_parm_t",3,"off")=8 + Set gtmtypes("thread_parm_t",3,"len")=4 + Set gtmtypes("thread_parm_t",3,"type")="addr" + Set gtmtypfldindx("thread_parm_t","ret_array")=3 + Set gtmtypes("thread_parm_t",4,"name")="thread_parm_t.parm_array" + Set gtmtypes("thread_parm_t",4,"off")=12 + Set gtmtypes("thread_parm_t",4,"len")=4 + Set gtmtypes("thread_parm_t",4,"type")="addr" + Set gtmtypfldindx("thread_parm_t","parm_array")=4 + Set gtmtypes("thread_parm_t",5,"name")="thread_parm_t.parmElemSize" + Set gtmtypes("thread_parm_t",5,"off")=16 + Set gtmtypes("thread_parm_t",5,"len")=4 + Set gtmtypes("thread_parm_t",5,"type")="int" + Set gtmtypfldindx("thread_parm_t","parmElemSize")=5 + ; + Set gtmtypes("tlevel_info")="struct" + Set gtmtypes("tlevel_info",0)=12 + Set gtmtypes("tlevel_info","len")=44 + Set gtmtypes("tlevel_info",1,"name")="tlevel_info.free_que" + Set gtmtypes("tlevel_info",1,"off")=0 + Set gtmtypes("tlevel_info",1,"len")=8 + Set gtmtypes("tlevel_info",1,"type")="que_ent" + Set gtmtypfldindx("tlevel_info","free_que")=1 + Set gtmtypes("tlevel_info",2,"name")="tlevel_info.free_que.fl" + Set gtmtypes("tlevel_info",2,"off")=0 + Set gtmtypes("tlevel_info",2,"len")=4 + Set gtmtypes("tlevel_info",2,"type")="intptr_t" + Set gtmtypfldindx("tlevel_info","free_que.fl")=2 + Set gtmtypes("tlevel_info",3,"name")="tlevel_info.free_que.bl" + Set gtmtypes("tlevel_info",3,"off")=4 + Set gtmtypes("tlevel_info",3,"len")=4 + Set gtmtypes("tlevel_info",3,"type")="intptr_t" + Set gtmtypfldindx("tlevel_info","free_que.bl")=3 + Set gtmtypes("tlevel_info",4,"name")="tlevel_info.next_tlevel_info" + Set gtmtypes("tlevel_info",4,"off")=8 + Set gtmtypes("tlevel_info",4,"len")=4 + Set gtmtypes("tlevel_info",4,"type")="addr" + Set gtmtypfldindx("tlevel_info","next_tlevel_info")=4 + Set gtmtypes("tlevel_info",5,"name")="tlevel_info.tlvl_kill_set" + Set gtmtypes("tlevel_info",5,"off")=12 + Set gtmtypes("tlevel_info",5,"len")=4 + Set gtmtypes("tlevel_info",5,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_kill_set")=5 + Set gtmtypes("tlevel_info",6,"name")="tlevel_info.tlvl_kill_used" + Set gtmtypes("tlevel_info",6,"off")=16 + Set gtmtypes("tlevel_info",6,"len")=4 + Set gtmtypes("tlevel_info",6,"type")="int" + Set gtmtypfldindx("tlevel_info","tlvl_kill_used")=6 + Set gtmtypes("tlevel_info",7,"name")="tlevel_info.tlvl_jfb_info" + Set gtmtypes("tlevel_info",7,"off")=20 + Set gtmtypes("tlevel_info",7,"len")=4 + Set gtmtypes("tlevel_info",7,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_jfb_info")=7 + Set gtmtypes("tlevel_info",8,"name")="tlevel_info.tlvl_tp_hist_info" + Set gtmtypes("tlevel_info",8,"off")=24 + Set gtmtypes("tlevel_info",8,"len")=4 + Set gtmtypes("tlevel_info",8,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_tp_hist_info")=8 + Set gtmtypes("tlevel_info",9,"name")="tlevel_info.t_level" + Set gtmtypes("tlevel_info",9,"off")=28 + Set gtmtypes("tlevel_info",9,"len")=4 + Set gtmtypes("tlevel_info",9,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","t_level")=9 + Set gtmtypes("tlevel_info",10,"name")="tlevel_info.update_trans" + Set gtmtypes("tlevel_info",10,"off")=32 + Set gtmtypes("tlevel_info",10,"len")=4 + Set gtmtypes("tlevel_info",10,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","update_trans")=10 + Set gtmtypes("tlevel_info",11,"name")="tlevel_info.jnl_list_elems" + Set gtmtypes("tlevel_info",11,"off")=36 + Set gtmtypes("tlevel_info",11,"len")=4 + Set gtmtypes("tlevel_info",11,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","jnl_list_elems")=11 + Set gtmtypes("tlevel_info",12,"name")="tlevel_info.jfb_list_elems" + Set gtmtypes("tlevel_info",12,"off")=40 + Set gtmtypes("tlevel_info",12,"len")=4 + Set gtmtypes("tlevel_info",12,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","jfb_list_elems")=12 + ; + Set gtmtypes("token_build")="union" + Set gtmtypes("token_build",0)=4 + Set gtmtypes("token_build","len")=8 + Set gtmtypes("token_build",1,"name")="token_build.t_piece" + Set gtmtypes("token_build",1,"off")=0 + Set gtmtypes("token_build",1,"len")=8 + Set gtmtypes("token_build",1,"type")="token_split_t" + Set gtmtypfldindx("token_build","t_piece")=1 + Set gtmtypes("token_build",2,"name")="token_build.t_piece.local_tn" + Set gtmtypes("token_build",2,"off")=0 + Set gtmtypes("token_build",2,"len")=4 + Set gtmtypes("token_build",2,"type")="unsigned-int" + Set gtmtypfldindx("token_build","t_piece.local_tn")=2 + Set gtmtypes("token_build",3,"name")="token_build.t_piece.process_id" + Set gtmtypes("token_build",3,"off")=4 + Set gtmtypes("token_build",3,"len")=4 + Set gtmtypes("token_build",3,"type")="unsigned-int" + Set gtmtypfldindx("token_build","t_piece.process_id")=3 + Set gtmtypes("token_build",4,"name")="token_build.token" + Set gtmtypes("token_build",4,"off")=0 + Set gtmtypes("token_build",4,"len")=8 + Set gtmtypes("token_build",4,"type")="uint64_t" + Set gtmtypfldindx("token_build","token")=4 + ; + Set gtmtypes("token_seq_t")="union" + Set gtmtypes("token_seq_t",0)=2 + Set gtmtypes("token_seq_t","len")=8 + Set gtmtypes("token_seq_t",1,"name")="token_seq_t.jnl_seqno" + Set gtmtypes("token_seq_t",1,"off")=0 + Set gtmtypes("token_seq_t",1,"len")=8 + Set gtmtypes("token_seq_t",1,"type")="uint64_t" + Set gtmtypfldindx("token_seq_t","jnl_seqno")=1 + Set gtmtypes("token_seq_t",2,"name")="token_seq_t.token" + Set gtmtypes("token_seq_t",2,"off")=0 + Set gtmtypes("token_seq_t",2,"len")=8 + Set gtmtypes("token_seq_t",2,"type")="uint64_t" + Set gtmtypfldindx("token_seq_t","token")=2 + ; + Set gtmtypes("token_split_t")="struct" + Set gtmtypes("token_split_t",0)=2 + Set gtmtypes("token_split_t","len")=8 + Set gtmtypes("token_split_t",1,"name")="token_split_t.local_tn" + Set gtmtypes("token_split_t",1,"off")=0 + Set gtmtypes("token_split_t",1,"len")=4 + Set gtmtypes("token_split_t",1,"type")="unsigned-int" + Set gtmtypfldindx("token_split_t","local_tn")=1 + Set gtmtypes("token_split_t",2,"name")="token_split_t.process_id" + Set gtmtypes("token_split_t",2,"off")=4 + Set gtmtypes("token_split_t",2,"len")=4 + Set gtmtypes("token_split_t",2,"type")="unsigned-int" + Set gtmtypfldindx("token_split_t","process_id")=2 + ; + Set gtmtypes("toktabtype")="struct" + Set gtmtypes("toktabtype",0)=4 + Set gtmtypes("toktabtype","len")=28 + Set gtmtypes("toktabtype",1,"name")="toktabtype.name" + Set gtmtypes("toktabtype",1,"off")=0 + Set gtmtypes("toktabtype",1,"len")=20 + Set gtmtypes("toktabtype",1,"type")="char" + Set gtmtypfldindx("toktabtype","name")=1 + Set gtmtypes("toktabtype",2,"name")="toktabtype.bo_type" + Set gtmtypes("toktabtype",2,"off")=20 + Set gtmtypes("toktabtype",2,"len")=4 + Set gtmtypes("toktabtype",2,"type")="unsigned-int" + Set gtmtypfldindx("toktabtype","bo_type")=2 + Set gtmtypes("toktabtype",3,"name")="toktabtype.uo_type" + Set gtmtypes("toktabtype",3,"off")=24 + Set gtmtypes("toktabtype",3,"len")=1 + Set gtmtypes("toktabtype",3,"type")="char" + Set gtmtypfldindx("toktabtype","uo_type")=3 + Set gtmtypes("toktabtype",4,"name")="toktabtype.opr_type" + Set gtmtypes("toktabtype",4,"off")=26 + Set gtmtypes("toktabtype",4,"len")=2 + Set gtmtypes("toktabtype",4,"type")="unsigned-short" + Set gtmtypfldindx("toktabtype","opr_type")=4 + ; + Set gtmtypes("tp_frame")="struct" + Set gtmtypes("tp_frame",0)=36 + Set gtmtypes("tp_frame","len")=128 + Set gtmtypes("tp_frame",1,"name")="tp_frame.restart_pc" + Set gtmtypes("tp_frame",1,"off")=4 + Set gtmtypes("tp_frame",1,"len")=4 + Set gtmtypes("tp_frame",1,"type")="addr" + Set gtmtypfldindx("tp_frame","restart_pc")=1 + Set gtmtypes("tp_frame",2,"name")="tp_frame.fp" + Set gtmtypes("tp_frame",2,"off")=8 + Set gtmtypes("tp_frame",2,"len")=4 + Set gtmtypes("tp_frame",2,"type")="addr" + Set gtmtypfldindx("tp_frame","fp")=2 + Set gtmtypes("tp_frame",3,"name")="tp_frame.mvc" + Set gtmtypes("tp_frame",3,"off")=12 + Set gtmtypes("tp_frame",3,"len")=4 + Set gtmtypes("tp_frame",3,"type")="addr" + Set gtmtypfldindx("tp_frame","mvc")=3 + Set gtmtypes("tp_frame",4,"name")="tp_frame.orig_gv_target" + Set gtmtypes("tp_frame",4,"off")=16 + Set gtmtypes("tp_frame",4,"len")=4 + Set gtmtypes("tp_frame",4,"type")="addr" + Set gtmtypfldindx("tp_frame","orig_gv_target")=4 + Set gtmtypes("tp_frame",5,"name")="tp_frame.orig_key" + Set gtmtypes("tp_frame",5,"off")=20 + Set gtmtypes("tp_frame",5,"len")=4 + Set gtmtypes("tp_frame",5,"type")="addr" + Set gtmtypfldindx("tp_frame","orig_key")=5 + Set gtmtypes("tp_frame",6,"name")="tp_frame.gd_header" + Set gtmtypes("tp_frame",6,"off")=24 + Set gtmtypes("tp_frame",6,"len")=4 + Set gtmtypes("tp_frame",6,"type")="addr" + Set gtmtypfldindx("tp_frame","gd_header")=6 + Set gtmtypes("tp_frame",7,"name")="tp_frame.gd_reg" + Set gtmtypes("tp_frame",7,"off")=28 + Set gtmtypes("tp_frame",7,"len")=4 + Set gtmtypes("tp_frame",7,"type")="addr" + Set gtmtypfldindx("tp_frame","gd_reg")=7 + Set gtmtypes("tp_frame",8,"name")="tp_frame.sym" + Set gtmtypes("tp_frame",8,"off")=32 + Set gtmtypes("tp_frame",8,"len")=4 + Set gtmtypes("tp_frame",8,"type")="addr" + Set gtmtypfldindx("tp_frame","sym")=8 + Set gtmtypes("tp_frame",9,"name")="tp_frame.vars" + Set gtmtypes("tp_frame",9,"off")=36 + Set gtmtypes("tp_frame",9,"len")=4 + Set gtmtypes("tp_frame",9,"type")="addr" + Set gtmtypfldindx("tp_frame","vars")=9 + Set gtmtypes("tp_frame",10,"name")="tp_frame.zgbldir" + Set gtmtypes("tp_frame",10,"off")=40 + Set gtmtypes("tp_frame",10,"len")=32 + Set gtmtypes("tp_frame",10,"type")="mval" + Set gtmtypfldindx("tp_frame","zgbldir")=10 + Set gtmtypes("tp_frame",11,"name")="tp_frame.zgbldir.mvtype" + Set gtmtypes("tp_frame",11,"off")=40 + Set gtmtypes("tp_frame",11,"len")=2 + Set gtmtypes("tp_frame",11,"type")="unsigned-short" + Set gtmtypfldindx("tp_frame","zgbldir.mvtype")=11 + Set gtmtypes("tp_frame",12,"name")="tp_frame.zgbldir.fnpc_indx" + Set gtmtypes("tp_frame",12,"off")=43 + Set gtmtypes("tp_frame",12,"len")=1 + Set gtmtypes("tp_frame",12,"type")="unsigned-char" + Set gtmtypfldindx("tp_frame","zgbldir.fnpc_indx")=12 + Set gtmtypes("tp_frame",13,"name")="tp_frame.zgbldir.utfcgr_indx" + Set gtmtypes("tp_frame",13,"off")=44 + Set gtmtypes("tp_frame",13,"len")=4 + Set gtmtypes("tp_frame",13,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.utfcgr_indx")=13 + Set gtmtypes("tp_frame",14,"name")="tp_frame.zgbldir.filler2" + Set gtmtypes("tp_frame",14,"off")=48 + Set gtmtypes("tp_frame",14,"len")=4 + Set gtmtypes("tp_frame",14,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.filler2")=14 + Set gtmtypes("tp_frame",15,"name")="tp_frame.zgbldir.m" + Set gtmtypes("tp_frame",15,"off")=52 + Set gtmtypes("tp_frame",15,"len")=8 + Set gtmtypes("tp_frame",15,"type")="int" + Set gtmtypfldindx("tp_frame","zgbldir.m")=15 + Set gtmtypes("tp_frame",15,"dim")=2 + Set gtmtypes("tp_frame",16,"name")="tp_frame.zgbldir.str" + Set gtmtypes("tp_frame",16,"off")=60 + Set gtmtypes("tp_frame",16,"len")=12 + Set gtmtypes("tp_frame",16,"type")="mstr" + Set gtmtypfldindx("tp_frame","zgbldir.str")=16 + Set gtmtypes("tp_frame",17,"name")="tp_frame.zgbldir.str.char_len" + Set gtmtypes("tp_frame",17,"off")=60 + Set gtmtypes("tp_frame",17,"len")=4 + Set gtmtypes("tp_frame",17,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.str.char_len")=17 + Set gtmtypes("tp_frame",18,"name")="tp_frame.zgbldir.str.len" + Set gtmtypes("tp_frame",18,"off")=64 + Set gtmtypes("tp_frame",18,"len")=4 + Set gtmtypes("tp_frame",18,"type")="int" + Set gtmtypfldindx("tp_frame","zgbldir.str.len")=18 + Set gtmtypes("tp_frame",19,"name")="tp_frame.zgbldir.str.addr" + Set gtmtypes("tp_frame",19,"off")=68 + Set gtmtypes("tp_frame",19,"len")=4 + Set gtmtypes("tp_frame",19,"type")="addr" + Set gtmtypfldindx("tp_frame","zgbldir.str.addr")=19 + Set gtmtypes("tp_frame",20,"name")="tp_frame.trans_id" + Set gtmtypes("tp_frame",20,"off")=72 + Set gtmtypes("tp_frame",20,"len")=32 + Set gtmtypes("tp_frame",20,"type")="mval" + Set gtmtypfldindx("tp_frame","trans_id")=20 + Set gtmtypes("tp_frame",21,"name")="tp_frame.trans_id.mvtype" + Set gtmtypes("tp_frame",21,"off")=72 + Set gtmtypes("tp_frame",21,"len")=2 + Set gtmtypes("tp_frame",21,"type")="unsigned-short" + Set gtmtypfldindx("tp_frame","trans_id.mvtype")=21 + Set gtmtypes("tp_frame",22,"name")="tp_frame.trans_id.fnpc_indx" + Set gtmtypes("tp_frame",22,"off")=75 + Set gtmtypes("tp_frame",22,"len")=1 + Set gtmtypes("tp_frame",22,"type")="unsigned-char" + Set gtmtypfldindx("tp_frame","trans_id.fnpc_indx")=22 + Set gtmtypes("tp_frame",23,"name")="tp_frame.trans_id.utfcgr_indx" + Set gtmtypes("tp_frame",23,"off")=76 + Set gtmtypes("tp_frame",23,"len")=4 + Set gtmtypes("tp_frame",23,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.utfcgr_indx")=23 + Set gtmtypes("tp_frame",24,"name")="tp_frame.trans_id.filler2" + Set gtmtypes("tp_frame",24,"off")=80 + Set gtmtypes("tp_frame",24,"len")=4 + Set gtmtypes("tp_frame",24,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.filler2")=24 + Set gtmtypes("tp_frame",25,"name")="tp_frame.trans_id.m" + Set gtmtypes("tp_frame",25,"off")=84 + Set gtmtypes("tp_frame",25,"len")=8 + Set gtmtypes("tp_frame",25,"type")="int" + Set gtmtypfldindx("tp_frame","trans_id.m")=25 + Set gtmtypes("tp_frame",25,"dim")=2 + Set gtmtypes("tp_frame",26,"name")="tp_frame.trans_id.str" + Set gtmtypes("tp_frame",26,"off")=92 + Set gtmtypes("tp_frame",26,"len")=12 + Set gtmtypes("tp_frame",26,"type")="mstr" + Set gtmtypfldindx("tp_frame","trans_id.str")=26 + Set gtmtypes("tp_frame",27,"name")="tp_frame.trans_id.str.char_len" + Set gtmtypes("tp_frame",27,"off")=92 + Set gtmtypes("tp_frame",27,"len")=4 + Set gtmtypes("tp_frame",27,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.str.char_len")=27 + Set gtmtypes("tp_frame",28,"name")="tp_frame.trans_id.str.len" + Set gtmtypes("tp_frame",28,"off")=96 + Set gtmtypes("tp_frame",28,"len")=4 + Set gtmtypes("tp_frame",28,"type")="int" + Set gtmtypfldindx("tp_frame","trans_id.str.len")=28 + Set gtmtypes("tp_frame",29,"name")="tp_frame.trans_id.str.addr" + Set gtmtypes("tp_frame",29,"off")=100 + Set gtmtypes("tp_frame",29,"len")=4 + Set gtmtypes("tp_frame",29,"type")="addr" + Set gtmtypfldindx("tp_frame","trans_id.str.addr")=29 + Set gtmtypes("tp_frame",30,"name")="tp_frame.extnam_str" + Set gtmtypes("tp_frame",30,"off")=104 + Set gtmtypes("tp_frame",30,"len")=12 + Set gtmtypes("tp_frame",30,"type")="mstr" + Set gtmtypfldindx("tp_frame","extnam_str")=30 + Set gtmtypes("tp_frame",31,"name")="tp_frame.extnam_str.char_len" + Set gtmtypes("tp_frame",31,"off")=104 + Set gtmtypes("tp_frame",31,"len")=4 + Set gtmtypes("tp_frame",31,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","extnam_str.char_len")=31 + Set gtmtypes("tp_frame",32,"name")="tp_frame.extnam_str.len" + Set gtmtypes("tp_frame",32,"off")=108 + Set gtmtypes("tp_frame",32,"len")=4 + Set gtmtypes("tp_frame",32,"type")="int" + Set gtmtypfldindx("tp_frame","extnam_str.len")=32 + Set gtmtypes("tp_frame",33,"name")="tp_frame.extnam_str.addr" + Set gtmtypes("tp_frame",33,"off")=112 + Set gtmtypes("tp_frame",33,"len")=4 + Set gtmtypes("tp_frame",33,"type")="addr" + Set gtmtypfldindx("tp_frame","extnam_str.addr")=33 + Set gtmtypes("tp_frame",34,"name")="tp_frame.old_tp_frame" + Set gtmtypes("tp_frame",34,"off")=116 + Set gtmtypes("tp_frame",34,"len")=4 + Set gtmtypes("tp_frame",34,"type")="addr" + Set gtmtypfldindx("tp_frame","old_tp_frame")=34 + Set gtmtypes("tp_frame",35,"name")="tp_frame.restart_ctxt" + Set gtmtypes("tp_frame",35,"off")=120 + Set gtmtypes("tp_frame",35,"len")=4 + Set gtmtypes("tp_frame",35,"type")="addr" + Set gtmtypfldindx("tp_frame","restart_ctxt")=35 + Set gtmtypes("tp_frame",36,"name")="tp_frame.active_lv" + Set gtmtypes("tp_frame",36,"off")=124 + Set gtmtypes("tp_frame",36,"len")=4 + Set gtmtypes("tp_frame",36,"type")="addr" + Set gtmtypfldindx("tp_frame","active_lv")=36 + ; + Set gtmtypes("tp_region")="struct" + Set gtmtypes("tp_region",0)=8 + Set gtmtypes("tp_region","len")=28 + Set gtmtypes("tp_region",1,"name")="tp_region.fPtr" + Set gtmtypes("tp_region",1,"off")=0 + Set gtmtypes("tp_region",1,"len")=4 + Set gtmtypes("tp_region",1,"type")="addr" + Set gtmtypfldindx("tp_region","fPtr")=1 + Set gtmtypes("tp_region",2,"name")="tp_region.reg" + Set gtmtypes("tp_region",2,"off")=4 + Set gtmtypes("tp_region",2,"len")=4 + Set gtmtypes("tp_region",2,"type")="addr" + Set gtmtypfldindx("tp_region","reg")=2 + Set gtmtypes("tp_region",3,"name")="tp_region.file" + Set gtmtypes("tp_region",3,"off")=8 + Set gtmtypes("tp_region",3,"len")=20 + Set gtmtypes("tp_region",3,"type")="union" + Set gtmtypfldindx("tp_region","file")=3 + Set gtmtypes("tp_region",4,"name")="tp_region.file.file_id" + Set gtmtypes("tp_region",4,"off")=8 + Set gtmtypes("tp_region",4,"len")=20 + Set gtmtypes("tp_region",4,"type")="unix_file_id" + Set gtmtypfldindx("tp_region","file.file_id")=4 + Set gtmtypes("tp_region",5,"name")="tp_region.file.file_id.inode" + Set gtmtypes("tp_region",5,"off")=8 + Set gtmtypes("tp_region",5,"len")=8 + Set gtmtypes("tp_region",5,"type")="ino_t" + Set gtmtypfldindx("tp_region","file.file_id.inode")=5 + Set gtmtypes("tp_region",6,"name")="tp_region.file.file_id.device" + Set gtmtypes("tp_region",6,"off")=16 + Set gtmtypes("tp_region",6,"len")=8 + Set gtmtypes("tp_region",6,"type")="dev_t" + Set gtmtypfldindx("tp_region","file.file_id.device")=6 + Set gtmtypes("tp_region",7,"name")="tp_region.file.file_id.st_gen" + Set gtmtypes("tp_region",7,"off")=24 + Set gtmtypes("tp_region",7,"len")=4 + Set gtmtypes("tp_region",7,"type")="unsigned-int" + Set gtmtypfldindx("tp_region","file.file_id.st_gen")=7 + Set gtmtypes("tp_region",8,"name")="tp_region.file.fid_index" + Set gtmtypes("tp_region",8,"off")=8 + Set gtmtypes("tp_region",8,"len")=4 + Set gtmtypes("tp_region",8,"type")="int" + Set gtmtypfldindx("tp_region","file.fid_index")=8 + ; + Set gtmtypes("tp_var")="struct" + Set gtmtypes("tp_var",0)=11 + Set gtmtypes("tp_var","len")=36 + Set gtmtypes("tp_var",1,"name")="tp_var.next" + Set gtmtypes("tp_var",1,"off")=0 + Set gtmtypes("tp_var",1,"len")=4 + Set gtmtypes("tp_var",1,"type")="addr" + Set gtmtypfldindx("tp_var","next")=1 + Set gtmtypes("tp_var",2,"name")="tp_var.current_value" + Set gtmtypes("tp_var",2,"off")=4 + Set gtmtypes("tp_var",2,"len")=4 + Set gtmtypes("tp_var",2,"type")="addr" + Set gtmtypfldindx("tp_var","current_value")=2 + Set gtmtypes("tp_var",3,"name")="tp_var.save_value" + Set gtmtypes("tp_var",3,"off")=8 + Set gtmtypes("tp_var",3,"len")=4 + Set gtmtypes("tp_var",3,"type")="addr" + Set gtmtypfldindx("tp_var","save_value")=3 + Set gtmtypes("tp_var",4,"name")="tp_var.key" + Set gtmtypes("tp_var",4,"off")=12 + Set gtmtypes("tp_var",4,"len")=20 + Set gtmtypes("tp_var",4,"type")="mname_entry" + Set gtmtypfldindx("tp_var","key")=4 + Set gtmtypes("tp_var",5,"name")="tp_var.key.var_name" + Set gtmtypes("tp_var",5,"off")=12 + Set gtmtypes("tp_var",5,"len")=12 + Set gtmtypes("tp_var",5,"type")="mstr" + Set gtmtypfldindx("tp_var","key.var_name")=5 + Set gtmtypes("tp_var",6,"name")="tp_var.key.var_name.char_len" + Set gtmtypes("tp_var",6,"off")=12 + Set gtmtypes("tp_var",6,"len")=4 + Set gtmtypes("tp_var",6,"type")="unsigned-int" + Set gtmtypfldindx("tp_var","key.var_name.char_len")=6 + Set gtmtypes("tp_var",7,"name")="tp_var.key.var_name.len" + Set gtmtypes("tp_var",7,"off")=16 + Set gtmtypes("tp_var",7,"len")=4 + Set gtmtypes("tp_var",7,"type")="int" + Set gtmtypfldindx("tp_var","key.var_name.len")=7 + Set gtmtypes("tp_var",8,"name")="tp_var.key.var_name.addr" + Set gtmtypes("tp_var",8,"off")=20 + Set gtmtypes("tp_var",8,"len")=4 + Set gtmtypes("tp_var",8,"type")="addr" + Set gtmtypfldindx("tp_var","key.var_name.addr")=8 + Set gtmtypes("tp_var",9,"name")="tp_var.key.hash_code" + Set gtmtypes("tp_var",9,"off")=24 + Set gtmtypes("tp_var",9,"len")=4 + Set gtmtypes("tp_var",9,"type")="unsigned-int" + Set gtmtypfldindx("tp_var","key.hash_code")=9 + Set gtmtypes("tp_var",10,"name")="tp_var.key.marked" + Set gtmtypes("tp_var",10,"off")=28 + Set gtmtypes("tp_var",10,"len")=4 + Set gtmtypes("tp_var",10,"type")="boolean_t" + Set gtmtypfldindx("tp_var","key.marked")=10 + Set gtmtypes("tp_var",11,"name")="tp_var.var_cloned" + Set gtmtypes("tp_var",11,"off")=32 + Set gtmtypes("tp_var",11,"len")=4 + Set gtmtypes("tp_var",11,"type")="boolean_t" + Set gtmtypfldindx("tp_var","var_cloned")=11 + ; + Set gtmtypes("tr_search_status_t")="struct" + Set gtmtypes("tr_search_status_t",0)=2 + Set gtmtypes("tr_search_status_t","len")=16 + Set gtmtypes("tr_search_status_t",1,"name")="tr_search_status_t.seqno" + Set gtmtypes("tr_search_status_t",1,"off")=0 + Set gtmtypes("tr_search_status_t",1,"len")=8 + Set gtmtypes("tr_search_status_t",1,"type")="uint64_t" + Set gtmtypfldindx("tr_search_status_t","seqno")=1 + Set gtmtypes("tr_search_status_t",2,"name")="tr_search_status_t.prev_seqno" + Set gtmtypes("tr_search_status_t",2,"off")=8 + Set gtmtypes("tr_search_status_t",2,"len")=8 + Set gtmtypes("tr_search_status_t",2,"type")="uint64_t" + Set gtmtypfldindx("tr_search_status_t","prev_seqno")=2 + ; + Set gtmtypes("trace_entry")="struct" + Set gtmtypes("trace_entry",0)=9 + Set gtmtypes("trace_entry","len")=48 + Set gtmtypes("trace_entry",1,"name")="trace_entry.rout_name" + Set gtmtypes("trace_entry",1,"off")=0 + Set gtmtypes("trace_entry",1,"len")=4 + Set gtmtypes("trace_entry",1,"type")="addr" + Set gtmtypfldindx("trace_entry","rout_name")=1 + Set gtmtypes("trace_entry",2,"name")="trace_entry.label_name" + Set gtmtypes("trace_entry",2,"off")=4 + Set gtmtypes("trace_entry",2,"len")=4 + Set gtmtypes("trace_entry",2,"type")="addr" + Set gtmtypfldindx("trace_entry","label_name")=2 + Set gtmtypes("trace_entry",3,"name")="trace_entry.line_num" + Set gtmtypes("trace_entry",3,"off")=8 + Set gtmtypes("trace_entry",3,"len")=4 + Set gtmtypes("trace_entry",3,"type")="int" + Set gtmtypfldindx("trace_entry","line_num")=3 + Set gtmtypes("trace_entry",4,"name")="trace_entry.count" + Set gtmtypes("trace_entry",4,"off")=12 + Set gtmtypes("trace_entry",4,"len")=4 + Set gtmtypes("trace_entry",4,"type")="unsigned" + Set gtmtypfldindx("trace_entry","count")=4 + Set gtmtypes("trace_entry",5,"name")="trace_entry.sys_time" + Set gtmtypes("trace_entry",5,"off")=16 + Set gtmtypes("trace_entry",5,"len")=8 + Set gtmtypes("trace_entry",5,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","sys_time")=5 + Set gtmtypes("trace_entry",6,"name")="trace_entry.usr_time" + Set gtmtypes("trace_entry",6,"off")=24 + Set gtmtypes("trace_entry",6,"len")=8 + Set gtmtypes("trace_entry",6,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","usr_time")=6 + Set gtmtypes("trace_entry",7,"name")="trace_entry.elp_time" + Set gtmtypes("trace_entry",7,"off")=32 + Set gtmtypes("trace_entry",7,"len")=8 + Set gtmtypes("trace_entry",7,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","elp_time")=7 + Set gtmtypes("trace_entry",8,"name")="trace_entry.loop_level" + Set gtmtypes("trace_entry",8,"off")=40 + Set gtmtypes("trace_entry",8,"len")=4 + Set gtmtypes("trace_entry",8,"type")="int" + Set gtmtypfldindx("trace_entry","loop_level")=8 + Set gtmtypes("trace_entry",9,"name")="trace_entry.raddr" + Set gtmtypes("trace_entry",9,"off")=44 + Set gtmtypes("trace_entry",9,"len")=4 + Set gtmtypes("trace_entry",9,"type")="addr" + Set gtmtypfldindx("trace_entry","raddr")=9 + ; + Set gtmtypes("trans_restart_hist_t")="struct" + Set gtmtypes("trans_restart_hist_t",0)=8 + Set gtmtypes("trans_restart_hist_t","len")=28 + Set gtmtypes("trans_restart_hist_t",1,"name")="trans_restart_hist_t.t_tries" + Set gtmtypes("trans_restart_hist_t",1,"off")=0 + Set gtmtypes("trans_restart_hist_t",1,"len")=4 + Set gtmtypes("trans_restart_hist_t",1,"type")="unsigned-int" + Set gtmtypfldindx("trans_restart_hist_t","t_tries")=1 + Set gtmtypes("trans_restart_hist_t",2,"name")="trans_restart_hist_t.dollar_tlevel" + Set gtmtypes("trans_restart_hist_t",2,"off")=4 + Set gtmtypes("trans_restart_hist_t",2,"len")=4 + Set gtmtypes("trans_restart_hist_t",2,"type")="unsigned-int" + Set gtmtypfldindx("trans_restart_hist_t","dollar_tlevel")=2 + Set gtmtypes("trans_restart_hist_t",3,"name")="trans_restart_hist_t.retry_code" + Set gtmtypes("trans_restart_hist_t",3,"off")=8 + Set gtmtypes("trans_restart_hist_t",3,"len")=4 + Set gtmtypes("trans_restart_hist_t",3,"type")="int" + Set gtmtypfldindx("trans_restart_hist_t","retry_code")=3 + Set gtmtypes("trans_restart_hist_t",4,"name")="trans_restart_hist_t.call_from" + Set gtmtypes("trans_restart_hist_t",4,"off")=12 + Set gtmtypes("trans_restart_hist_t",4,"len")=4 + Set gtmtypes("trans_restart_hist_t",4,"type")="caddr_t" + Set gtmtypfldindx("trans_restart_hist_t","call_from")=4 + Set gtmtypes("trans_restart_hist_t",5,"name")="trans_restart_hist_t.seq_or_tn" + Set gtmtypes("trans_restart_hist_t",5,"off")=16 + Set gtmtypes("trans_restart_hist_t",5,"len")=8 + Set gtmtypes("trans_restart_hist_t",5,"type")="union" + Set gtmtypfldindx("trans_restart_hist_t","seq_or_tn")=5 + Set gtmtypes("trans_restart_hist_t",6,"name")="trans_restart_hist_t.seq_or_tn.curr_tn" + Set gtmtypes("trans_restart_hist_t",6,"off")=16 + Set gtmtypes("trans_restart_hist_t",6,"len")=8 + Set gtmtypes("trans_restart_hist_t",6,"type")="uint64_t" + Set gtmtypfldindx("trans_restart_hist_t","seq_or_tn.curr_tn")=6 + Set gtmtypes("trans_restart_hist_t",7,"name")="trans_restart_hist_t.seq_or_tn.jnl_seqno" + Set gtmtypes("trans_restart_hist_t",7,"off")=16 + Set gtmtypes("trans_restart_hist_t",7,"len")=8 + Set gtmtypes("trans_restart_hist_t",7,"type")="uint64_t" + Set gtmtypfldindx("trans_restart_hist_t","seq_or_tn.jnl_seqno")=7 + Set gtmtypes("trans_restart_hist_t",8,"name")="trans_restart_hist_t.csa" + Set gtmtypes("trans_restart_hist_t",8,"off")=24 + Set gtmtypes("trans_restart_hist_t",8,"len")=4 + Set gtmtypes("trans_restart_hist_t",8,"type")="addr" + Set gtmtypfldindx("trans_restart_hist_t","csa")=8 + ; + Set gtmtypes("trctbl_entry")="struct" + Set gtmtypes("trctbl_entry",0)=5 + Set gtmtypes("trctbl_entry","len")=20 + Set gtmtypes("trctbl_entry",1,"name")="trctbl_entry.type" + Set gtmtypes("trctbl_entry",1,"off")=0 + Set gtmtypes("trctbl_entry",1,"len")=4 + Set gtmtypes("trctbl_entry",1,"type")="int" + Set gtmtypfldindx("trctbl_entry","type")=1 + Set gtmtypes("trctbl_entry",2,"name")="trctbl_entry.intfld" + Set gtmtypes("trctbl_entry",2,"off")=4 + Set gtmtypes("trctbl_entry",2,"len")=4 + Set gtmtypes("trctbl_entry",2,"type")="int" + Set gtmtypfldindx("trctbl_entry","intfld")=2 + Set gtmtypes("trctbl_entry",3,"name")="trctbl_entry.addrfld1" + Set gtmtypes("trctbl_entry",3,"off")=8 + Set gtmtypes("trctbl_entry",3,"len")=4 + Set gtmtypes("trctbl_entry",3,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld1")=3 + Set gtmtypes("trctbl_entry",4,"name")="trctbl_entry.addrfld2" + Set gtmtypes("trctbl_entry",4,"off")=12 + Set gtmtypes("trctbl_entry",4,"len")=4 + Set gtmtypes("trctbl_entry",4,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld2")=4 + Set gtmtypes("trctbl_entry",5,"name")="trctbl_entry.addrfld3" + Set gtmtypes("trctbl_entry",5,"off")=16 + Set gtmtypes("trctbl_entry",5,"len")=4 + Set gtmtypes("trctbl_entry",5,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld3")=5 + ; + Set gtmtypes("treeSrchStatus")="struct" + Set gtmtypes("treeSrchStatus",0)=3 + Set gtmtypes("treeSrchStatus","len")=12 + Set gtmtypes("treeSrchStatus",1,"name")="treeSrchStatus.lastNodeLookedUp" + Set gtmtypes("treeSrchStatus",1,"off")=0 + Set gtmtypes("treeSrchStatus",1,"len")=4 + Set gtmtypes("treeSrchStatus",1,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeLookedUp")=1 + Set gtmtypes("treeSrchStatus",2,"name")="treeSrchStatus.lastNodeMin" + Set gtmtypes("treeSrchStatus",2,"off")=4 + Set gtmtypes("treeSrchStatus",2,"len")=4 + Set gtmtypes("treeSrchStatus",2,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeMin")=2 + Set gtmtypes("treeSrchStatus",3,"name")="treeSrchStatus.lastNodeMax" + Set gtmtypes("treeSrchStatus",3,"off")=8 + Set gtmtypes("treeSrchStatus",3,"len")=4 + Set gtmtypes("treeSrchStatus",3,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeMax")=3 + ; + Set gtmtypes("triple")="struct" + Set gtmtypes("triple",0)=50 + Set gtmtypes("triple","len")=72 + Set gtmtypes("triple",1,"name")="triple.opcode" + Set gtmtypes("triple",1,"off")=0 + Set gtmtypes("triple",1,"len")=4 + Set gtmtypes("triple",1,"type")="unsigned-int" + Set gtmtypfldindx("triple","opcode")=1 + Set gtmtypes("triple",2,"name")="triple.exorder" + Set gtmtypes("triple",2,"off")=4 + Set gtmtypes("triple",2,"len")=8 + Set gtmtypes("triple",2,"type")="struct" + Set gtmtypfldindx("triple","exorder")=2 + Set gtmtypes("triple",3,"name")="triple.exorder.fl" + Set gtmtypes("triple",3,"off")=4 + Set gtmtypes("triple",3,"len")=4 + Set gtmtypes("triple",3,"type")="addr" + Set gtmtypfldindx("triple","exorder.fl")=3 + Set gtmtypes("triple",4,"name")="triple.exorder.bl" + Set gtmtypes("triple",4,"off")=8 + Set gtmtypes("triple",4,"len")=4 + Set gtmtypes("triple",4,"type")="addr" + Set gtmtypfldindx("triple","exorder.bl")=4 + Set gtmtypes("triple",5,"name")="triple.backptr" + Set gtmtypes("triple",5,"off")=12 + Set gtmtypes("triple",5,"len")=12 + Set gtmtypes("triple",5,"type")="tbp" + Set gtmtypfldindx("triple","backptr")=5 + Set gtmtypes("triple",6,"name")="triple.backptr.que" + Set gtmtypes("triple",6,"off")=12 + Set gtmtypes("triple",6,"len")=8 + Set gtmtypes("triple",6,"type")="struct" + Set gtmtypfldindx("triple","backptr.que")=6 + Set gtmtypes("triple",7,"name")="triple.backptr.que.fl" + Set gtmtypes("triple",7,"off")=12 + Set gtmtypes("triple",7,"len")=4 + Set gtmtypes("triple",7,"type")="addr" + Set gtmtypfldindx("triple","backptr.que.fl")=7 + Set gtmtypes("triple",8,"name")="triple.backptr.que.bl" + Set gtmtypes("triple",8,"off")=16 + Set gtmtypes("triple",8,"len")=4 + Set gtmtypes("triple",8,"type")="addr" + Set gtmtypfldindx("triple","backptr.que.bl")=8 + Set gtmtypes("triple",9,"name")="triple.backptr.bpt" + Set gtmtypes("triple",9,"off")=20 + Set gtmtypes("triple",9,"len")=4 + Set gtmtypes("triple",9,"type")="addr" + Set gtmtypfldindx("triple","backptr.bpt")=9 + Set gtmtypes("triple",10,"name")="triple.jmplist" + Set gtmtypes("triple",10,"off")=24 + Set gtmtypes("triple",10,"len")=12 + Set gtmtypes("triple",10,"type")="tbp" + Set gtmtypfldindx("triple","jmplist")=10 + Set gtmtypes("triple",11,"name")="triple.jmplist.que" + Set gtmtypes("triple",11,"off")=24 + Set gtmtypes("triple",11,"len")=8 + Set gtmtypes("triple",11,"type")="struct" + Set gtmtypfldindx("triple","jmplist.que")=11 + Set gtmtypes("triple",12,"name")="triple.jmplist.que.fl" + Set gtmtypes("triple",12,"off")=24 + Set gtmtypes("triple",12,"len")=4 + Set gtmtypes("triple",12,"type")="addr" + Set gtmtypfldindx("triple","jmplist.que.fl")=12 + Set gtmtypes("triple",13,"name")="triple.jmplist.que.bl" + Set gtmtypes("triple",13,"off")=28 + Set gtmtypes("triple",13,"len")=4 + Set gtmtypes("triple",13,"type")="addr" + Set gtmtypfldindx("triple","jmplist.que.bl")=13 + Set gtmtypes("triple",14,"name")="triple.jmplist.bpt" + Set gtmtypes("triple",14,"off")=32 + Set gtmtypes("triple",14,"len")=4 + Set gtmtypes("triple",14,"type")="addr" + Set gtmtypfldindx("triple","jmplist.bpt")=14 + Set gtmtypes("triple",15,"name")="triple.src" + Set gtmtypes("triple",15,"off")=36 + Set gtmtypes("triple",15,"len")=8 + Set gtmtypes("triple",15,"type")="source_address" + Set gtmtypfldindx("triple","src")=15 + Set gtmtypes("triple",16,"name")="triple.src.line" + Set gtmtypes("triple",16,"off")=36 + Set gtmtypes("triple",16,"len")=4 + Set gtmtypes("triple",16,"type")="unsigned-int" + Set gtmtypfldindx("triple","src.line")=16 + Set gtmtypes("triple",17,"name")="triple.src.column" + Set gtmtypes("triple",17,"off")=40 + Set gtmtypes("triple",17,"len")=4 + Set gtmtypes("triple",17,"type")="unsigned-int" + Set gtmtypfldindx("triple","src.column")=17 + Set gtmtypes("triple",18,"name")="triple.rtaddr" + Set gtmtypes("triple",18,"off")=44 + Set gtmtypes("triple",18,"len")=4 + Set gtmtypes("triple",18,"type")="int" + Set gtmtypfldindx("triple","rtaddr")=18 + Set gtmtypes("triple",19,"name")="triple.operand" + Set gtmtypes("triple",19,"off")=48 + Set gtmtypes("triple",19,"len")=16 + Set gtmtypes("triple",19,"type")="oprtype" + Set gtmtypfldindx("triple","operand")=19 + Set gtmtypes("triple",19,"dim")=2 + Set gtmtypes("triple",20,"name")="triple.operand[0].oprclass" + Set gtmtypes("triple",20,"off")=48 + Set gtmtypes("triple",20,"len")=4 + Set gtmtypes("triple",20,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprclass")=20 + Set gtmtypes("triple",21,"name")="triple.operand[0].oprval" + Set gtmtypes("triple",21,"off")=52 + Set gtmtypes("triple",21,"len")=4 + Set gtmtypes("triple",21,"type")="union" + Set gtmtypfldindx("triple","operand[0].oprval")=21 + Set gtmtypes("triple",22,"name")="triple.operand[0].oprval.indr" + Set gtmtypes("triple",22,"off")=52 + Set gtmtypes("triple",22,"len")=4 + Set gtmtypes("triple",22,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.indr")=22 + Set gtmtypes("triple",23,"name")="triple.operand[0].oprval.tref" + Set gtmtypes("triple",23,"off")=52 + Set gtmtypes("triple",23,"len")=4 + Set gtmtypes("triple",23,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.tref")=23 + Set gtmtypes("triple",24,"name")="triple.operand[0].oprval.tsize" + Set gtmtypes("triple",24,"off")=52 + Set gtmtypes("triple",24,"len")=4 + Set gtmtypes("triple",24,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.tsize")=24 + Set gtmtypes("triple",25,"name")="triple.operand[0].oprval.lab" + Set gtmtypes("triple",25,"off")=52 + Set gtmtypes("triple",25,"len")=4 + Set gtmtypes("triple",25,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.lab")=25 + Set gtmtypes("triple",26,"name")="triple.operand[0].oprval.mlin" + Set gtmtypes("triple",26,"off")=52 + Set gtmtypes("triple",26,"len")=4 + Set gtmtypes("triple",26,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.mlin")=26 + Set gtmtypes("triple",27,"name")="triple.operand[0].oprval.mlit" + Set gtmtypes("triple",27,"off")=52 + Set gtmtypes("triple",27,"len")=4 + Set gtmtypes("triple",27,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.mlit")=27 + Set gtmtypes("triple",28,"name")="triple.operand[0].oprval.cdlt" + Set gtmtypes("triple",28,"off")=52 + Set gtmtypes("triple",28,"len")=4 + Set gtmtypes("triple",28,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.cdlt")=28 + Set gtmtypes("triple",29,"name")="triple.operand[0].oprval.cdidx" + Set gtmtypes("triple",29,"off")=52 + Set gtmtypes("triple",29,"len")=4 + Set gtmtypes("triple",29,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.cdidx")=29 + Set gtmtypes("triple",30,"name")="triple.operand[0].oprval.vref" + Set gtmtypes("triple",30,"off")=52 + Set gtmtypes("triple",30,"len")=4 + Set gtmtypes("triple",30,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.vref")=30 + Set gtmtypes("triple",31,"name")="triple.operand[0].oprval.temp" + Set gtmtypes("triple",31,"off")=52 + Set gtmtypes("triple",31,"len")=4 + Set gtmtypes("triple",31,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.temp")=31 + Set gtmtypes("triple",32,"name")="triple.operand[0].oprval.ilit" + Set gtmtypes("triple",32,"off")=52 + Set gtmtypes("triple",32,"len")=4 + Set gtmtypes("triple",32,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.ilit")=32 + Set gtmtypes("triple",33,"name")="triple.operand[0].oprval.offset" + Set gtmtypes("triple",33,"off")=52 + Set gtmtypes("triple",33,"len")=4 + Set gtmtypes("triple",33,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.offset")=33 + Set gtmtypes("triple",34,"name")="triple.operand[0].oprval.vreg" + Set gtmtypes("triple",34,"off")=52 + Set gtmtypes("triple",34,"len")=1 + Set gtmtypes("triple",34,"type")="unsigned-char" + Set gtmtypfldindx("triple","operand[0].oprval.vreg")=34 + Set gtmtypes("triple",35,"name")="triple.destination" + Set gtmtypes("triple",35,"off")=64 + Set gtmtypes("triple",35,"len")=8 + Set gtmtypes("triple",35,"type")="oprtype" + Set gtmtypfldindx("triple","destination")=35 + Set gtmtypes("triple",36,"name")="triple.destination.oprclass" + Set gtmtypes("triple",36,"off")=64 + Set gtmtypes("triple",36,"len")=4 + Set gtmtypes("triple",36,"type")="int" + Set gtmtypfldindx("triple","destination.oprclass")=36 + Set gtmtypes("triple",37,"name")="triple.destination.oprval" + Set gtmtypes("triple",37,"off")=68 + Set gtmtypes("triple",37,"len")=4 + Set gtmtypes("triple",37,"type")="union" + Set gtmtypfldindx("triple","destination.oprval")=37 + Set gtmtypes("triple",38,"name")="triple.destination.oprval.indr" + Set gtmtypes("triple",38,"off")=68 + Set gtmtypes("triple",38,"len")=4 + Set gtmtypes("triple",38,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.indr")=38 + Set gtmtypes("triple",39,"name")="triple.destination.oprval.tref" + Set gtmtypes("triple",39,"off")=68 + Set gtmtypes("triple",39,"len")=4 + Set gtmtypes("triple",39,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.tref")=39 + Set gtmtypes("triple",40,"name")="triple.destination.oprval.tsize" + Set gtmtypes("triple",40,"off")=68 + Set gtmtypes("triple",40,"len")=4 + Set gtmtypes("triple",40,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.tsize")=40 + Set gtmtypes("triple",41,"name")="triple.destination.oprval.lab" + Set gtmtypes("triple",41,"off")=68 + Set gtmtypes("triple",41,"len")=4 + Set gtmtypes("triple",41,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.lab")=41 + Set gtmtypes("triple",42,"name")="triple.destination.oprval.mlin" + Set gtmtypes("triple",42,"off")=68 + Set gtmtypes("triple",42,"len")=4 + Set gtmtypes("triple",42,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.mlin")=42 + Set gtmtypes("triple",43,"name")="triple.destination.oprval.mlit" + Set gtmtypes("triple",43,"off")=68 + Set gtmtypes("triple",43,"len")=4 + Set gtmtypes("triple",43,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.mlit")=43 + Set gtmtypes("triple",44,"name")="triple.destination.oprval.cdlt" + Set gtmtypes("triple",44,"off")=68 + Set gtmtypes("triple",44,"len")=4 + Set gtmtypes("triple",44,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.cdlt")=44 + Set gtmtypes("triple",45,"name")="triple.destination.oprval.cdidx" + Set gtmtypes("triple",45,"off")=68 + Set gtmtypes("triple",45,"len")=4 + Set gtmtypes("triple",45,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.cdidx")=45 + Set gtmtypes("triple",46,"name")="triple.destination.oprval.vref" + Set gtmtypes("triple",46,"off")=68 + Set gtmtypes("triple",46,"len")=4 + Set gtmtypes("triple",46,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.vref")=46 + Set gtmtypes("triple",47,"name")="triple.destination.oprval.temp" + Set gtmtypes("triple",47,"off")=68 + Set gtmtypes("triple",47,"len")=4 + Set gtmtypes("triple",47,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.temp")=47 + Set gtmtypes("triple",48,"name")="triple.destination.oprval.ilit" + Set gtmtypes("triple",48,"off")=68 + Set gtmtypes("triple",48,"len")=4 + Set gtmtypes("triple",48,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.ilit")=48 + Set gtmtypes("triple",49,"name")="triple.destination.oprval.offset" + Set gtmtypes("triple",49,"off")=68 + Set gtmtypes("triple",49,"len")=4 + Set gtmtypes("triple",49,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.offset")=49 + Set gtmtypes("triple",50,"name")="triple.destination.oprval.vreg" + Set gtmtypes("triple",50,"off")=68 + Set gtmtypes("triple",50,"len")=1 + Set gtmtypes("triple",50,"type")="unsigned-char" + Set gtmtypfldindx("triple","destination.oprval.vreg")=50 + ; + Set gtmtypes("tripsize")="struct" + Set gtmtypes("tripsize",0)=2 + Set gtmtypes("tripsize","len")=8 + Set gtmtypes("tripsize",1,"name")="tripsize.ct" + Set gtmtypes("tripsize",1,"off")=0 + Set gtmtypes("tripsize",1,"len")=4 + Set gtmtypes("tripsize",1,"type")="addr" + Set gtmtypfldindx("tripsize","ct")=1 + Set gtmtypes("tripsize",2,"name")="tripsize.size" + Set gtmtypes("tripsize",2,"off")=4 + Set gtmtypes("tripsize",2,"len")=4 + Set gtmtypes("tripsize",2,"type")="int" + Set gtmtypfldindx("tripsize","size")=2 + ; + Set gtmtypes("trunc_region")="struct" + Set gtmtypes("trunc_region",0)=2 + Set gtmtypes("trunc_region","len")=8 + Set gtmtypes("trunc_region",1,"name")="trunc_region.reg" + Set gtmtypes("trunc_region",1,"off")=0 + Set gtmtypes("trunc_region",1,"len")=4 + Set gtmtypes("trunc_region",1,"type")="addr" + Set gtmtypfldindx("trunc_region","reg")=1 + Set gtmtypes("trunc_region",2,"name")="trunc_region.next" + Set gtmtypes("trunc_region",2,"off")=4 + Set gtmtypes("trunc_region",2,"len")=4 + Set gtmtypes("trunc_region",2,"type")="addr" + Set gtmtypfldindx("trunc_region","next")=2 + ; + Set gtmtypes("tt_interrupt")="struct" + Set gtmtypes("tt_interrupt",0)=24 + Set gtmtypes("tt_interrupt","len")=104 + Set gtmtypes("tt_interrupt",1,"name")="tt_interrupt.who_saved" + Set gtmtypes("tt_interrupt",1,"off")=0 + Set gtmtypes("tt_interrupt",1,"len")=4 + Set gtmtypes("tt_interrupt",1,"type")="int" + Set gtmtypfldindx("tt_interrupt","who_saved")=1 + Set gtmtypes("tt_interrupt",2,"name")="tt_interrupt.buffer_start" + Set gtmtypes("tt_interrupt",2,"off")=4 + Set gtmtypes("tt_interrupt",2,"len")=4 + Set gtmtypes("tt_interrupt",2,"type")="addr" + Set gtmtypfldindx("tt_interrupt","buffer_start")=2 + Set gtmtypes("tt_interrupt",3,"name")="tt_interrupt.buffer_32_start" + Set gtmtypes("tt_interrupt",3,"off")=8 + Set gtmtypes("tt_interrupt",3,"len")=4 + Set gtmtypes("tt_interrupt",3,"type")="addr" + Set gtmtypfldindx("tt_interrupt","buffer_32_start")=3 + Set gtmtypes("tt_interrupt",4,"name")="tt_interrupt.utf8_more" + Set gtmtypes("tt_interrupt",4,"off")=12 + Set gtmtypes("tt_interrupt",4,"len")=4 + Set gtmtypes("tt_interrupt",4,"type")="int" + Set gtmtypfldindx("tt_interrupt","utf8_more")=4 + Set gtmtypes("tt_interrupt",5,"name")="tt_interrupt.dx" + Set gtmtypes("tt_interrupt",5,"off")=16 + Set gtmtypes("tt_interrupt",5,"len")=4 + Set gtmtypes("tt_interrupt",5,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx")=5 + Set gtmtypes("tt_interrupt",6,"name")="tt_interrupt.dx_start" + Set gtmtypes("tt_interrupt",6,"off")=20 + Set gtmtypes("tt_interrupt",6,"len")=4 + Set gtmtypes("tt_interrupt",6,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_start")=6 + Set gtmtypes("tt_interrupt",7,"name")="tt_interrupt.dx_instr" + Set gtmtypes("tt_interrupt",7,"off")=24 + Set gtmtypes("tt_interrupt",7,"len")=4 + Set gtmtypes("tt_interrupt",7,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_instr")=7 + Set gtmtypes("tt_interrupt",8,"name")="tt_interrupt.dx_outlen" + Set gtmtypes("tt_interrupt",8,"off")=28 + Set gtmtypes("tt_interrupt",8,"len")=4 + Set gtmtypes("tt_interrupt",8,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_outlen")=8 + Set gtmtypes("tt_interrupt",9,"name")="tt_interrupt.instr" + Set gtmtypes("tt_interrupt",9,"off")=32 + Set gtmtypes("tt_interrupt",9,"len")=4 + Set gtmtypes("tt_interrupt",9,"type")="int" + Set gtmtypfldindx("tt_interrupt","instr")=9 + Set gtmtypes("tt_interrupt",10,"name")="tt_interrupt.outlen" + Set gtmtypes("tt_interrupt",10,"off")=36 + Set gtmtypes("tt_interrupt",10,"len")=4 + Set gtmtypes("tt_interrupt",10,"type")="int" + Set gtmtypfldindx("tt_interrupt","outlen")=10 + Set gtmtypes("tt_interrupt",11,"name")="tt_interrupt.index" + Set gtmtypes("tt_interrupt",11,"off")=40 + Set gtmtypes("tt_interrupt",11,"len")=4 + Set gtmtypes("tt_interrupt",11,"type")="int" + Set gtmtypfldindx("tt_interrupt","index")=11 + Set gtmtypes("tt_interrupt",12,"name")="tt_interrupt.cl" + Set gtmtypes("tt_interrupt",12,"off")=44 + Set gtmtypes("tt_interrupt",12,"len")=4 + Set gtmtypes("tt_interrupt",12,"type")="int" + Set gtmtypfldindx("tt_interrupt","cl")=12 + Set gtmtypes("tt_interrupt",13,"name")="tt_interrupt.length" + Set gtmtypes("tt_interrupt",13,"off")=48 + Set gtmtypes("tt_interrupt",13,"len")=4 + Set gtmtypes("tt_interrupt",13,"type")="int" + Set gtmtypfldindx("tt_interrupt","length")=13 + Set gtmtypes("tt_interrupt",14,"name")="tt_interrupt.exp_length" + Set gtmtypes("tt_interrupt",14,"off")=52 + Set gtmtypes("tt_interrupt",14,"len")=4 + Set gtmtypes("tt_interrupt",14,"type")="int" + Set gtmtypfldindx("tt_interrupt","exp_length")=14 + Set gtmtypes("tt_interrupt",15,"name")="tt_interrupt.insert_mode" + Set gtmtypes("tt_interrupt",15,"off")=56 + Set gtmtypes("tt_interrupt",15,"len")=4 + Set gtmtypes("tt_interrupt",15,"type")="boolean_t" + Set gtmtypfldindx("tt_interrupt","insert_mode")=15 + Set gtmtypes("tt_interrupt",16,"name")="tt_interrupt.end_time" + Set gtmtypes("tt_interrupt",16,"off")=60 + Set gtmtypes("tt_interrupt",16,"len")=8 + Set gtmtypes("tt_interrupt",16,"type")="ABS_TIME" + Set gtmtypfldindx("tt_interrupt","end_time")=16 + Set gtmtypes("tt_interrupt",17,"name")="tt_interrupt.end_time.at_sec" + Set gtmtypes("tt_interrupt",17,"off")=60 + Set gtmtypes("tt_interrupt",17,"len")=4 + Set gtmtypes("tt_interrupt",17,"type")="long" + Set gtmtypfldindx("tt_interrupt","end_time.at_sec")=17 + Set gtmtypes("tt_interrupt",18,"name")="tt_interrupt.end_time.at_usec" + Set gtmtypes("tt_interrupt",18,"off")=64 + Set gtmtypes("tt_interrupt",18,"len")=4 + Set gtmtypes("tt_interrupt",18,"type")="long" + Set gtmtypfldindx("tt_interrupt","end_time.at_usec")=18 + Set gtmtypes("tt_interrupt",19,"name")="tt_interrupt.more_ptr" + Set gtmtypes("tt_interrupt",19,"off")=68 + Set gtmtypes("tt_interrupt",19,"len")=4 + Set gtmtypes("tt_interrupt",19,"type")="addr" + Set gtmtypfldindx("tt_interrupt","more_ptr")=19 + Set gtmtypes("tt_interrupt",20,"name")="tt_interrupt.zb_ptr" + Set gtmtypes("tt_interrupt",20,"off")=72 + Set gtmtypes("tt_interrupt",20,"len")=4 + Set gtmtypes("tt_interrupt",20,"type")="addr" + Set gtmtypfldindx("tt_interrupt","zb_ptr")=20 + Set gtmtypes("tt_interrupt",21,"name")="tt_interrupt.zb_top" + Set gtmtypes("tt_interrupt",21,"off")=76 + Set gtmtypes("tt_interrupt",21,"len")=4 + Set gtmtypes("tt_interrupt",21,"type")="addr" + Set gtmtypfldindx("tt_interrupt","zb_top")=21 + Set gtmtypes("tt_interrupt",22,"name")="tt_interrupt.escape_length" + Set gtmtypes("tt_interrupt",22,"off")=80 + Set gtmtypes("tt_interrupt",22,"len")=2 + Set gtmtypes("tt_interrupt",22,"type")="unsigned-short" + Set gtmtypfldindx("tt_interrupt","escape_length")=22 + Set gtmtypes("tt_interrupt",23,"name")="tt_interrupt.escape_sequence" + Set gtmtypes("tt_interrupt",23,"off")=82 + Set gtmtypes("tt_interrupt",23,"len")=16 + Set gtmtypes("tt_interrupt",23,"type")="unsigned-char" + Set gtmtypfldindx("tt_interrupt","escape_sequence")=23 + Set gtmtypes("tt_interrupt",24,"name")="tt_interrupt.more_buf" + Set gtmtypes("tt_interrupt",24,"off")=98 + Set gtmtypes("tt_interrupt",24,"len")=5 + Set gtmtypes("tt_interrupt",24,"type")="unsigned-char" + Set gtmtypfldindx("tt_interrupt","more_buf")=24 + ; + Set gtmtypes("ua_list")="struct" + Set gtmtypes("ua_list",0)=3 + Set gtmtypes("ua_list","len")=12 + Set gtmtypes("ua_list",1,"name")="ua_list.next_ua" + Set gtmtypes("ua_list",1,"off")=0 + Set gtmtypes("ua_list",1,"len")=4 + Set gtmtypes("ua_list",1,"type")="addr" + Set gtmtypfldindx("ua_list","next_ua")=1 + Set gtmtypes("ua_list",2,"name")="ua_list.update_array" + Set gtmtypes("ua_list",2,"off")=4 + Set gtmtypes("ua_list",2,"len")=4 + Set gtmtypes("ua_list",2,"type")="addr" + Set gtmtypfldindx("ua_list","update_array")=2 + Set gtmtypes("ua_list",3,"name")="ua_list.update_array_size" + Set gtmtypes("ua_list",3,"off")=8 + Set gtmtypes("ua_list",3,"len")=4 + Set gtmtypes("ua_list",3,"type")="unsigned-int" + Set gtmtypfldindx("ua_list","update_array_size")=3 + ; + Set gtmtypes("uic_struct_int")="struct" + Set gtmtypes("uic_struct_int",0)=2 + Set gtmtypes("uic_struct_int","len")=8 + Set gtmtypes("uic_struct_int",1,"name")="uic_struct_int.mem" + Set gtmtypes("uic_struct_int",1,"off")=0 + Set gtmtypes("uic_struct_int",1,"len")=4 + Set gtmtypes("uic_struct_int",1,"type")="uid_t" + Set gtmtypfldindx("uic_struct_int","mem")=1 + Set gtmtypes("uic_struct_int",2,"name")="uic_struct_int.grp" + Set gtmtypes("uic_struct_int",2,"off")=4 + Set gtmtypes("uic_struct_int",2,"len")=4 + Set gtmtypes("uic_struct_int",2,"type")="gid_t" + Set gtmtypfldindx("uic_struct_int","grp")=2 + ; + Set gtmtypes("unique_file_id")="union" + Set gtmtypes("unique_file_id",0)=5 + Set gtmtypes("unique_file_id","len")=20 + Set gtmtypes("unique_file_id",1,"name")="unique_file_id.uid" + Set gtmtypes("unique_file_id",1,"off")=0 + Set gtmtypes("unique_file_id",1,"len")=20 + Set gtmtypes("unique_file_id",1,"type")="unix_file_id" + Set gtmtypfldindx("unique_file_id","uid")=1 + Set gtmtypes("unique_file_id",2,"name")="unique_file_id.uid.inode" + Set gtmtypes("unique_file_id",2,"off")=0 + Set gtmtypes("unique_file_id",2,"len")=8 + Set gtmtypes("unique_file_id",2,"type")="ino_t" + Set gtmtypfldindx("unique_file_id","uid.inode")=2 + Set gtmtypes("unique_file_id",3,"name")="unique_file_id.uid.device" + Set gtmtypes("unique_file_id",3,"off")=8 + Set gtmtypes("unique_file_id",3,"len")=8 + Set gtmtypes("unique_file_id",3,"type")="dev_t" + Set gtmtypfldindx("unique_file_id","uid.device")=3 + Set gtmtypes("unique_file_id",4,"name")="unique_file_id.uid.st_gen" + Set gtmtypes("unique_file_id",4,"off")=16 + Set gtmtypes("unique_file_id",4,"len")=4 + Set gtmtypes("unique_file_id",4,"type")="unsigned-int" + Set gtmtypfldindx("unique_file_id","uid.st_gen")=4 + Set gtmtypes("unique_file_id",5,"name")="unique_file_id.file_id" + Set gtmtypes("unique_file_id",5,"off")=0 + Set gtmtypes("unique_file_id",5,"len")=20 + Set gtmtypes("unique_file_id",5,"type")="char" + Set gtmtypfldindx("unique_file_id","file_id")=5 + ; + Set gtmtypes("unix_db_info")="struct" + Set gtmtypes("unix_db_info",0)=163 + Set gtmtypes("unix_db_info","len")=900 + Set gtmtypes("unix_db_info",1,"name")="unix_db_info.s_addrs" + Set gtmtypes("unix_db_info",1,"off")=0 + Set gtmtypes("unix_db_info",1,"len")=820 + Set gtmtypes("unix_db_info",1,"type")="sgmnt_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs")=1 + Set gtmtypes("unix_db_info",2,"name")="unix_db_info.s_addrs.hdr" + Set gtmtypes("unix_db_info",2,"off")=0 + Set gtmtypes("unix_db_info",2,"len")=4 + Set gtmtypes("unix_db_info",2,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.hdr")=2 + Set gtmtypes("unix_db_info",3,"name")="unix_db_info.s_addrs.bmm" + Set gtmtypes("unix_db_info",3,"off")=4 + Set gtmtypes("unix_db_info",3,"len")=4 + Set gtmtypes("unix_db_info",3,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bmm")=3 + Set gtmtypes("unix_db_info",4,"name")="unix_db_info.s_addrs.wc" + Set gtmtypes("unix_db_info",4,"off")=8 + Set gtmtypes("unix_db_info",4,"len")=4 + Set gtmtypes("unix_db_info",4,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.wc")=4 + Set gtmtypes("unix_db_info",5,"name")="unix_db_info.s_addrs.bt_header" + Set gtmtypes("unix_db_info",5,"off")=12 + Set gtmtypes("unix_db_info",5,"len")=4 + Set gtmtypes("unix_db_info",5,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bt_header")=5 + Set gtmtypes("unix_db_info",6,"name")="unix_db_info.s_addrs.bt_base" + Set gtmtypes("unix_db_info",6,"off")=16 + Set gtmtypes("unix_db_info",6,"len")=4 + Set gtmtypes("unix_db_info",6,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bt_base")=6 + Set gtmtypes("unix_db_info",7,"name")="unix_db_info.s_addrs.th_base" + Set gtmtypes("unix_db_info",7,"off")=20 + Set gtmtypes("unix_db_info",7,"len")=4 + Set gtmtypes("unix_db_info",7,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.th_base")=7 + Set gtmtypes("unix_db_info",8,"name")="unix_db_info.s_addrs.ti" + Set gtmtypes("unix_db_info",8,"off")=24 + Set gtmtypes("unix_db_info",8,"len")=4 + Set gtmtypes("unix_db_info",8,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.ti")=8 + Set gtmtypes("unix_db_info",9,"name")="unix_db_info.s_addrs.nl" + Set gtmtypes("unix_db_info",9,"off")=28 + Set gtmtypes("unix_db_info",9,"len")=4 + Set gtmtypes("unix_db_info",9,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.nl")=9 + Set gtmtypes("unix_db_info",10,"name")="unix_db_info.s_addrs.critical" + Set gtmtypes("unix_db_info",10,"off")=32 + Set gtmtypes("unix_db_info",10,"len")=4 + Set gtmtypes("unix_db_info",10,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.critical")=10 + Set gtmtypes("unix_db_info",11,"name")="unix_db_info.s_addrs.shmpool_buffer" + Set gtmtypes("unix_db_info",11,"off")=36 + Set gtmtypes("unix_db_info",11,"len")=4 + Set gtmtypes("unix_db_info",11,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.shmpool_buffer")=11 + Set gtmtypes("unix_db_info",12,"name")="unix_db_info.s_addrs.db_addrs" + Set gtmtypes("unix_db_info",12,"off")=40 + Set gtmtypes("unix_db_info",12,"len")=8 + Set gtmtypes("unix_db_info",12,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.db_addrs")=12 + Set gtmtypes("unix_db_info",12,"dim")=2 + Set gtmtypes("unix_db_info",13,"name")="unix_db_info.s_addrs.lock_addrs" + Set gtmtypes("unix_db_info",13,"off")=48 + Set gtmtypes("unix_db_info",13,"len")=8 + Set gtmtypes("unix_db_info",13,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.lock_addrs")=13 + Set gtmtypes("unix_db_info",13,"dim")=2 + Set gtmtypes("unix_db_info",14,"name")="unix_db_info.s_addrs.dir_tree" + Set gtmtypes("unix_db_info",14,"off")=56 + Set gtmtypes("unix_db_info",14,"len")=4 + Set gtmtypes("unix_db_info",14,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.dir_tree")=14 + Set gtmtypes("unix_db_info",15,"name")="unix_db_info.s_addrs.hasht_tree" + Set gtmtypes("unix_db_info",15,"off")=60 + Set gtmtypes("unix_db_info",15,"len")=4 + Set gtmtypes("unix_db_info",15,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.hasht_tree")=15 + Set gtmtypes("unix_db_info",16,"name")="unix_db_info.s_addrs.next_fenced" + Set gtmtypes("unix_db_info",16,"off")=64 + Set gtmtypes("unix_db_info",16,"len")=4 + Set gtmtypes("unix_db_info",16,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.next_fenced")=16 + Set gtmtypes("unix_db_info",17,"name")="unix_db_info.s_addrs.jnl" + Set gtmtypes("unix_db_info",17,"off")=68 + Set gtmtypes("unix_db_info",17,"len")=4 + Set gtmtypes("unix_db_info",17,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl")=17 + Set gtmtypes("unix_db_info",18,"name")="unix_db_info.s_addrs.sgm_info_ptr" + Set gtmtypes("unix_db_info",18,"off")=72 + Set gtmtypes("unix_db_info",18,"len")=4 + Set gtmtypes("unix_db_info",18,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.sgm_info_ptr")=18 + Set gtmtypes("unix_db_info",19,"name")="unix_db_info.s_addrs.region" + Set gtmtypes("unix_db_info",19,"off")=76 + Set gtmtypes("unix_db_info",19,"len")=4 + Set gtmtypes("unix_db_info",19,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.region")=19 + Set gtmtypes("unix_db_info",20,"name")="unix_db_info.s_addrs.gvt_hashtab" + Set gtmtypes("unix_db_info",20,"off")=80 + Set gtmtypes("unix_db_info",20,"len")=4 + Set gtmtypes("unix_db_info",20,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.gvt_hashtab")=20 + Set gtmtypes("unix_db_info",21,"name")="unix_db_info.s_addrs.miscptr" + Set gtmtypes("unix_db_info",21,"off")=84 + Set gtmtypes("unix_db_info",21,"len")=4 + Set gtmtypes("unix_db_info",21,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.miscptr")=21 + Set gtmtypes("unix_db_info",22,"name")="unix_db_info.s_addrs.next_csa" + Set gtmtypes("unix_db_info",22,"off")=88 + Set gtmtypes("unix_db_info",22,"len")=4 + Set gtmtypes("unix_db_info",22,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.next_csa")=22 + Set gtmtypes("unix_db_info",23,"name")="unix_db_info.s_addrs.encr_key_handle" + Set gtmtypes("unix_db_info",23,"off")=92 + Set gtmtypes("unix_db_info",23,"len")=4 + Set gtmtypes("unix_db_info",23,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_key_handle")=23 + Set gtmtypes("unix_db_info",24,"name")="unix_db_info.s_addrs.encr_key_handle2" + Set gtmtypes("unix_db_info",24,"off")=96 + Set gtmtypes("unix_db_info",24,"len")=4 + Set gtmtypes("unix_db_info",24,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_key_handle2")=24 + Set gtmtypes("unix_db_info",25,"name")="unix_db_info.s_addrs.encr_ptr" + Set gtmtypes("unix_db_info",25,"off")=100 + Set gtmtypes("unix_db_info",25,"len")=4 + Set gtmtypes("unix_db_info",25,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_ptr")=25 + Set gtmtypes("unix_db_info",26,"name")="unix_db_info.s_addrs.ss_ctx" + Set gtmtypes("unix_db_info",26,"off")=104 + Set gtmtypes("unix_db_info",26,"len")=4 + Set gtmtypes("unix_db_info",26,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.ss_ctx")=26 + Set gtmtypes("unix_db_info",27,"name")="unix_db_info.s_addrs.acc_meth" + Set gtmtypes("unix_db_info",27,"off")=108 + Set gtmtypes("unix_db_info",27,"len")=8 + Set gtmtypes("unix_db_info",27,"type")="union" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth")=27 + Set gtmtypes("unix_db_info",28,"name")="unix_db_info.s_addrs.acc_meth.mm" + Set gtmtypes("unix_db_info",28,"off")=108 + Set gtmtypes("unix_db_info",28,"len")=4 + Set gtmtypes("unix_db_info",28,"type")="sgmm_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.mm")=28 + Set gtmtypes("unix_db_info",29,"name")="unix_db_info.s_addrs.acc_meth.mm.filler" + Set gtmtypes("unix_db_info",29,"off")=108 + Set gtmtypes("unix_db_info",29,"len")=4 + Set gtmtypes("unix_db_info",29,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.mm.filler")=29 + Set gtmtypes("unix_db_info",30,"name")="unix_db_info.s_addrs.acc_meth.bg" + Set gtmtypes("unix_db_info",30,"off")=108 + Set gtmtypes("unix_db_info",30,"len")=8 + Set gtmtypes("unix_db_info",30,"type")="sgbg_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg")=30 + Set gtmtypes("unix_db_info",31,"name")="unix_db_info.s_addrs.acc_meth.bg.cache_state" + Set gtmtypes("unix_db_info",31,"off")=108 + Set gtmtypes("unix_db_info",31,"len")=4 + Set gtmtypes("unix_db_info",31,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg.cache_state")=31 + Set gtmtypes("unix_db_info",32,"name")="unix_db_info.s_addrs.acc_meth.bg.fill1" + Set gtmtypes("unix_db_info",32,"off")=112 + Set gtmtypes("unix_db_info",32,"len")=4 + Set gtmtypes("unix_db_info",32,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg.fill1")=32 + Set gtmtypes("unix_db_info",33,"name")="unix_db_info.s_addrs.gvstats_rec" + Set gtmtypes("unix_db_info",33,"off")=116 + Set gtmtypes("unix_db_info",33,"len")=464 + Set gtmtypes("unix_db_info",33,"type")="gvstats_rec_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec")=33 + Set gtmtypes("unix_db_info",34,"name")="unix_db_info.s_addrs.gvstats_rec.n_set" + Set gtmtypes("unix_db_info",34,"off")=116 + Set gtmtypes("unix_db_info",34,"len")=8 + Set gtmtypes("unix_db_info",34,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_set")=34 + Set gtmtypes("unix_db_info",35,"name")="unix_db_info.s_addrs.gvstats_rec.n_kill" + Set gtmtypes("unix_db_info",35,"off")=124 + Set gtmtypes("unix_db_info",35,"len")=8 + Set gtmtypes("unix_db_info",35,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_kill")=35 + Set gtmtypes("unix_db_info",36,"name")="unix_db_info.s_addrs.gvstats_rec.n_get" + Set gtmtypes("unix_db_info",36,"off")=132 + Set gtmtypes("unix_db_info",36,"len")=8 + Set gtmtypes("unix_db_info",36,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_get")=36 + Set gtmtypes("unix_db_info",37,"name")="unix_db_info.s_addrs.gvstats_rec.n_data" + Set gtmtypes("unix_db_info",37,"off")=140 + Set gtmtypes("unix_db_info",37,"len")=8 + Set gtmtypes("unix_db_info",37,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_data")=37 + Set gtmtypes("unix_db_info",38,"name")="unix_db_info.s_addrs.gvstats_rec.n_order" + Set gtmtypes("unix_db_info",38,"off")=148 + Set gtmtypes("unix_db_info",38,"len")=8 + Set gtmtypes("unix_db_info",38,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_order")=38 + Set gtmtypes("unix_db_info",39,"name")="unix_db_info.s_addrs.gvstats_rec.n_zprev" + Set gtmtypes("unix_db_info",39,"off")=156 + Set gtmtypes("unix_db_info",39,"len")=8 + Set gtmtypes("unix_db_info",39,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_zprev")=39 + Set gtmtypes("unix_db_info",40,"name")="unix_db_info.s_addrs.gvstats_rec.n_query" + Set gtmtypes("unix_db_info",40,"off")=164 + Set gtmtypes("unix_db_info",40,"len")=8 + Set gtmtypes("unix_db_info",40,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_query")=40 + Set gtmtypes("unix_db_info",41,"name")="unix_db_info.s_addrs.gvstats_rec.n_lock_success" + Set gtmtypes("unix_db_info",41,"off")=172 + Set gtmtypes("unix_db_info",41,"len")=8 + Set gtmtypes("unix_db_info",41,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_lock_success")=41 + Set gtmtypes("unix_db_info",42,"name")="unix_db_info.s_addrs.gvstats_rec.n_lock_fail" + Set gtmtypes("unix_db_info",42,"off")=180 + Set gtmtypes("unix_db_info",42,"len")=8 + Set gtmtypes("unix_db_info",42,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_lock_fail")=42 + Set gtmtypes("unix_db_info",43,"name")="unix_db_info.s_addrs.gvstats_rec.db_curr_tn" + Set gtmtypes("unix_db_info",43,"off")=188 + Set gtmtypes("unix_db_info",43,"len")=8 + Set gtmtypes("unix_db_info",43,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.db_curr_tn")=43 + Set gtmtypes("unix_db_info",44,"name")="unix_db_info.s_addrs.gvstats_rec.n_dsk_read" + Set gtmtypes("unix_db_info",44,"off")=196 + Set gtmtypes("unix_db_info",44,"len")=8 + Set gtmtypes("unix_db_info",44,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_dsk_read")=44 + Set gtmtypes("unix_db_info",45,"name")="unix_db_info.s_addrs.gvstats_rec.n_dsk_write" + Set gtmtypes("unix_db_info",45,"off")=204 + Set gtmtypes("unix_db_info",45,"len")=8 + Set gtmtypes("unix_db_info",45,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_dsk_write")=45 + Set gtmtypes("unix_db_info",46,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("unix_db_info",46,"off")=212 + Set gtmtypes("unix_db_info",46,"len")=8 + Set gtmtypes("unix_db_info",46,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_readwrite")=46 + Set gtmtypes("unix_db_info",47,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_readonly" + Set gtmtypes("unix_db_info",47,"off")=220 + Set gtmtypes("unix_db_info",47,"len")=8 + Set gtmtypes("unix_db_info",47,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_readonly")=47 + Set gtmtypes("unix_db_info",48,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("unix_db_info",48,"off")=228 + Set gtmtypes("unix_db_info",48,"len")=8 + Set gtmtypes("unix_db_info",48,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_blkwrite")=48 + Set gtmtypes("unix_db_info",49,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_blkread" + Set gtmtypes("unix_db_info",49,"off")=236 + Set gtmtypes("unix_db_info",49,"len")=8 + Set gtmtypes("unix_db_info",49,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_blkread")=49 + Set gtmtypes("unix_db_info",50,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("unix_db_info",50,"off")=244 + Set gtmtypes("unix_db_info",50,"len")=8 + Set gtmtypes("unix_db_info",50,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_0")=50 + Set gtmtypes("unix_db_info",51,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("unix_db_info",51,"off")=252 + Set gtmtypes("unix_db_info",51,"len")=8 + Set gtmtypes("unix_db_info",51,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_1")=51 + Set gtmtypes("unix_db_info",52,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("unix_db_info",52,"off")=260 + Set gtmtypes("unix_db_info",52,"len")=8 + Set gtmtypes("unix_db_info",52,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_2")=52 + Set gtmtypes("unix_db_info",53,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("unix_db_info",53,"off")=268 + Set gtmtypes("unix_db_info",53,"len")=8 + Set gtmtypes("unix_db_info",53,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_3")=53 + Set gtmtypes("unix_db_info",54,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_readwrite" + Set gtmtypes("unix_db_info",54,"off")=276 + Set gtmtypes("unix_db_info",54,"len")=8 + Set gtmtypes("unix_db_info",54,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_readwrite")=54 + Set gtmtypes("unix_db_info",55,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_readonly" + Set gtmtypes("unix_db_info",55,"off")=284 + Set gtmtypes("unix_db_info",55,"len")=8 + Set gtmtypes("unix_db_info",55,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_readonly")=55 + Set gtmtypes("unix_db_info",56,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_rolledback" + Set gtmtypes("unix_db_info",56,"off")=292 + Set gtmtypes("unix_db_info",56,"len")=8 + Set gtmtypes("unix_db_info",56,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_rolledback")=56 + Set gtmtypes("unix_db_info",57,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("unix_db_info",57,"off")=300 + Set gtmtypes("unix_db_info",57,"len")=8 + Set gtmtypes("unix_db_info",57,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_blkwrite")=57 + Set gtmtypes("unix_db_info",58,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_blkread" + Set gtmtypes("unix_db_info",58,"off")=308 + Set gtmtypes("unix_db_info",58,"len")=8 + Set gtmtypes("unix_db_info",58,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_blkread")=58 + Set gtmtypes("unix_db_info",59,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("unix_db_info",59,"off")=316 + Set gtmtypes("unix_db_info",59,"len")=8 + Set gtmtypes("unix_db_info",59,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_0")=59 + Set gtmtypes("unix_db_info",60,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("unix_db_info",60,"off")=324 + Set gtmtypes("unix_db_info",60,"len")=8 + Set gtmtypes("unix_db_info",60,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_1")=60 + Set gtmtypes("unix_db_info",61,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("unix_db_info",61,"off")=332 + Set gtmtypes("unix_db_info",61,"len")=8 + Set gtmtypes("unix_db_info",61,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_2")=61 + Set gtmtypes("unix_db_info",62,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("unix_db_info",62,"off")=340 + Set gtmtypes("unix_db_info",62,"len")=8 + Set gtmtypes("unix_db_info",62,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_3")=62 + Set gtmtypes("unix_db_info",63,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("unix_db_info",63,"off")=348 + Set gtmtypes("unix_db_info",63,"len")=8 + Set gtmtypes("unix_db_info",63,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_4")=63 + Set gtmtypes("unix_db_info",64,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("unix_db_info",64,"off")=356 + Set gtmtypes("unix_db_info",64,"len")=8 + Set gtmtypes("unix_db_info",64,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_0")=64 + Set gtmtypes("unix_db_info",65,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("unix_db_info",65,"off")=364 + Set gtmtypes("unix_db_info",65,"len")=8 + Set gtmtypes("unix_db_info",65,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_1")=65 + Set gtmtypes("unix_db_info",66,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("unix_db_info",66,"off")=372 + Set gtmtypes("unix_db_info",66,"len")=8 + Set gtmtypes("unix_db_info",66,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_2")=66 + Set gtmtypes("unix_db_info",67,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("unix_db_info",67,"off")=380 + Set gtmtypes("unix_db_info",67,"len")=8 + Set gtmtypes("unix_db_info",67,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_3")=67 + Set gtmtypes("unix_db_info",68,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("unix_db_info",68,"off")=388 + Set gtmtypes("unix_db_info",68,"len")=8 + Set gtmtypes("unix_db_info",68,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_4")=68 + Set gtmtypes("unix_db_info",69,"name")="unix_db_info.s_addrs.gvstats_rec.n_ztrigger" + Set gtmtypes("unix_db_info",69,"off")=396 + Set gtmtypes("unix_db_info",69,"len")=8 + Set gtmtypes("unix_db_info",69,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_ztrigger")=69 + Set gtmtypes("unix_db_info",70,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_flush" + Set gtmtypes("unix_db_info",70,"off")=404 + Set gtmtypes("unix_db_info",70,"len")=8 + Set gtmtypes("unix_db_info",70,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_flush")=70 + Set gtmtypes("unix_db_info",71,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_fsync" + Set gtmtypes("unix_db_info",71,"off")=412 + Set gtmtypes("unix_db_info",71,"len")=8 + Set gtmtypes("unix_db_info",71,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_fsync")=71 + Set gtmtypes("unix_db_info",72,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_flush" + Set gtmtypes("unix_db_info",72,"off")=420 + Set gtmtypes("unix_db_info",72,"len")=8 + Set gtmtypes("unix_db_info",72,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_flush")=72 + Set gtmtypes("unix_db_info",73,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_fsync" + Set gtmtypes("unix_db_info",73,"off")=428 + Set gtmtypes("unix_db_info",73,"len")=8 + Set gtmtypes("unix_db_info",73,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_fsync")=73 + Set gtmtypes("unix_db_info",74,"name")="unix_db_info.s_addrs.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("unix_db_info",74,"off")=436 + Set gtmtypes("unix_db_info",74,"len")=8 + Set gtmtypes("unix_db_info",74,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jbuff_bytes")=74 + Set gtmtypes("unix_db_info",75,"name")="unix_db_info.s_addrs.gvstats_rec.n_jfile_bytes" + Set gtmtypes("unix_db_info",75,"off")=444 + Set gtmtypes("unix_db_info",75,"len")=8 + Set gtmtypes("unix_db_info",75,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jfile_bytes")=75 + Set gtmtypes("unix_db_info",76,"name")="unix_db_info.s_addrs.gvstats_rec.n_jfile_writes" + Set gtmtypes("unix_db_info",76,"off")=452 + Set gtmtypes("unix_db_info",76,"len")=8 + Set gtmtypes("unix_db_info",76,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jfile_writes")=76 + Set gtmtypes("unix_db_info",77,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_logical" + Set gtmtypes("unix_db_info",77,"off")=460 + Set gtmtypes("unix_db_info",77,"len")=8 + Set gtmtypes("unix_db_info",77,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_logical")=77 + Set gtmtypes("unix_db_info",78,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_pblk" + Set gtmtypes("unix_db_info",78,"off")=468 + Set gtmtypes("unix_db_info",78,"len")=8 + Set gtmtypes("unix_db_info",78,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_pblk")=78 + Set gtmtypes("unix_db_info",79,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("unix_db_info",79,"off")=476 + Set gtmtypes("unix_db_info",79,"len")=8 + Set gtmtypes("unix_db_info",79,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_epoch_regular")=79 + Set gtmtypes("unix_db_info",80,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("unix_db_info",80,"off")=484 + Set gtmtypes("unix_db_info",80,"len")=8 + Set gtmtypes("unix_db_info",80,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_epoch_idle")=80 + Set gtmtypes("unix_db_info",81,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_other" + Set gtmtypes("unix_db_info",81,"off")=492 + Set gtmtypes("unix_db_info",81,"len")=8 + Set gtmtypes("unix_db_info",81,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_other")=81 + Set gtmtypes("unix_db_info",82,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_extends" + Set gtmtypes("unix_db_info",82,"off")=500 + Set gtmtypes("unix_db_info",82,"len")=8 + Set gtmtypes("unix_db_info",82,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_extends")=82 + Set gtmtypes("unix_db_info",83,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_extends" + Set gtmtypes("unix_db_info",83,"off")=508 + Set gtmtypes("unix_db_info",83,"len")=8 + Set gtmtypes("unix_db_info",83,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_extends")=83 + Set gtmtypes("unix_db_info",84,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_success" + Set gtmtypes("unix_db_info",84,"off")=516 + Set gtmtypes("unix_db_info",84,"len")=8 + Set gtmtypes("unix_db_info",84,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_success")=84 + Set gtmtypes("unix_db_info",85,"name")="unix_db_info.s_addrs.gvstats_rec.n_crits_in_epch" + Set gtmtypes("unix_db_info",85,"off")=524 + Set gtmtypes("unix_db_info",85,"len")=8 + Set gtmtypes("unix_db_info",85,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crits_in_epch")=85 + Set gtmtypes("unix_db_info",86,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_failed" + Set gtmtypes("unix_db_info",86,"off")=532 + Set gtmtypes("unix_db_info",86,"len")=8 + Set gtmtypes("unix_db_info",86,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_failed")=86 + Set gtmtypes("unix_db_info",87,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_failed" + Set gtmtypes("unix_db_info",87,"off")=540 + Set gtmtypes("unix_db_info",87,"len")=8 + Set gtmtypes("unix_db_info",87,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_failed")=87 + Set gtmtypes("unix_db_info",88,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("unix_db_info",88,"off")=548 + Set gtmtypes("unix_db_info",88,"len")=8 + Set gtmtypes("unix_db_info",88,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_que_slps")=88 + Set gtmtypes("unix_db_info",89,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_que_slps" + Set gtmtypes("unix_db_info",89,"off")=556 + Set gtmtypes("unix_db_info",89,"len")=8 + Set gtmtypes("unix_db_info",89,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_que_slps")=89 + Set gtmtypes("unix_db_info",90,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_yields" + Set gtmtypes("unix_db_info",90,"off")=564 + Set gtmtypes("unix_db_info",90,"len")=8 + Set gtmtypes("unix_db_info",90,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_yields")=90 + Set gtmtypes("unix_db_info",91,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_yields" + Set gtmtypes("unix_db_info",91,"off")=572 + Set gtmtypes("unix_db_info",91,"len")=8 + Set gtmtypes("unix_db_info",91,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_yields")=91 + Set gtmtypes("unix_db_info",92,"name")="unix_db_info.s_addrs.dbsync_timer_tn" + Set gtmtypes("unix_db_info",92,"off")=580 + Set gtmtypes("unix_db_info",92,"len")=8 + Set gtmtypes("unix_db_info",92,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbsync_timer_tn")=92 + Set gtmtypes("unix_db_info",93,"name")="unix_db_info.s_addrs.fullblockwrite_len" + Set gtmtypes("unix_db_info",93,"off")=588 + Set gtmtypes("unix_db_info",93,"len")=4 + Set gtmtypes("unix_db_info",93,"type")="size_t" + Set gtmtypfldindx("unix_db_info","s_addrs.fullblockwrite_len")=93 + Set gtmtypes("unix_db_info",94,"name")="unix_db_info.s_addrs.total_blks" + Set gtmtypes("unix_db_info",94,"off")=592 + Set gtmtypes("unix_db_info",94,"len")=4 + Set gtmtypes("unix_db_info",94,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.total_blks")=94 + Set gtmtypes("unix_db_info",95,"name")="unix_db_info.s_addrs.prev_free_blks" + Set gtmtypes("unix_db_info",95,"off")=596 + Set gtmtypes("unix_db_info",95,"len")=4 + Set gtmtypes("unix_db_info",95,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.prev_free_blks")=95 + Set gtmtypes("unix_db_info",96,"name")="unix_db_info.s_addrs.timer" + Set gtmtypes("unix_db_info",96,"off")=600 + Set gtmtypes("unix_db_info",96,"len")=4 + Set gtmtypes("unix_db_info",96,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.timer")=96 + Set gtmtypes("unix_db_info",97,"name")="unix_db_info.s_addrs.in_wtstart" + Set gtmtypes("unix_db_info",97,"off")=604 + Set gtmtypes("unix_db_info",97,"len")=4 + Set gtmtypes("unix_db_info",97,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.in_wtstart")=97 + Set gtmtypes("unix_db_info",98,"name")="unix_db_info.s_addrs.now_crit" + Set gtmtypes("unix_db_info",98,"off")=608 + Set gtmtypes("unix_db_info",98,"len")=4 + Set gtmtypes("unix_db_info",98,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.now_crit")=98 + Set gtmtypes("unix_db_info",99,"name")="unix_db_info.s_addrs.wbuf_dqd" + Set gtmtypes("unix_db_info",99,"off")=612 + Set gtmtypes("unix_db_info",99,"len")=4 + Set gtmtypes("unix_db_info",99,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.wbuf_dqd")=99 + Set gtmtypes("unix_db_info",100,"name")="unix_db_info.s_addrs.stale_defer" + Set gtmtypes("unix_db_info",100,"off")=616 + Set gtmtypes("unix_db_info",100,"len")=4 + Set gtmtypes("unix_db_info",100,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.stale_defer")=100 + Set gtmtypes("unix_db_info",101,"name")="unix_db_info.s_addrs.freeze" + Set gtmtypes("unix_db_info",101,"off")=620 + Set gtmtypes("unix_db_info",101,"len")=4 + Set gtmtypes("unix_db_info",101,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.freeze")=101 + Set gtmtypes("unix_db_info",102,"name")="unix_db_info.s_addrs.dbsync_timer" + Set gtmtypes("unix_db_info",102,"off")=624 + Set gtmtypes("unix_db_info",102,"len")=4 + Set gtmtypes("unix_db_info",102,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbsync_timer")=102 + Set gtmtypes("unix_db_info",103,"name")="unix_db_info.s_addrs.reorg_last_dest" + Set gtmtypes("unix_db_info",103,"off")=628 + Set gtmtypes("unix_db_info",103,"len")=4 + Set gtmtypes("unix_db_info",103,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.reorg_last_dest")=103 + Set gtmtypes("unix_db_info",104,"name")="unix_db_info.s_addrs.jnl_before_image" + Set gtmtypes("unix_db_info",104,"off")=632 + Set gtmtypes("unix_db_info",104,"len")=4 + Set gtmtypes("unix_db_info",104,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl_before_image")=104 + Set gtmtypes("unix_db_info",105,"name")="unix_db_info.s_addrs.read_write" + Set gtmtypes("unix_db_info",105,"off")=636 + Set gtmtypes("unix_db_info",105,"len")=4 + Set gtmtypes("unix_db_info",105,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.read_write")=105 + Set gtmtypes("unix_db_info",106,"name")="unix_db_info.s_addrs.persistent_freeze" + Set gtmtypes("unix_db_info",106,"off")=640 + Set gtmtypes("unix_db_info",106,"len")=4 + Set gtmtypes("unix_db_info",106,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.persistent_freeze")=106 + Set gtmtypes("unix_db_info",107,"name")="unix_db_info.s_addrs.pblk_align_jrecsize" + Set gtmtypes("unix_db_info",107,"off")=644 + Set gtmtypes("unix_db_info",107,"len")=4 + Set gtmtypes("unix_db_info",107,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.pblk_align_jrecsize")=107 + Set gtmtypes("unix_db_info",108,"name")="unix_db_info.s_addrs.min_total_tpjnl_rec_size" + Set gtmtypes("unix_db_info",108,"off")=648 + Set gtmtypes("unix_db_info",108,"len")=4 + Set gtmtypes("unix_db_info",108,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.min_total_tpjnl_rec_size")=108 + Set gtmtypes("unix_db_info",109,"name")="unix_db_info.s_addrs.min_total_nontpjnl_rec_size" + Set gtmtypes("unix_db_info",109,"off")=652 + Set gtmtypes("unix_db_info",109,"len")=4 + Set gtmtypes("unix_db_info",109,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.min_total_nontpjnl_rec_size")=109 + Set gtmtypes("unix_db_info",110,"name")="unix_db_info.s_addrs.jnl_state" + Set gtmtypes("unix_db_info",110,"off")=656 + Set gtmtypes("unix_db_info",110,"len")=4 + Set gtmtypes("unix_db_info",110,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl_state")=110 + Set gtmtypes("unix_db_info",111,"name")="unix_db_info.s_addrs.repl_state" + Set gtmtypes("unix_db_info",111,"off")=660 + Set gtmtypes("unix_db_info",111,"len")=4 + Set gtmtypes("unix_db_info",111,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.repl_state")=111 + Set gtmtypes("unix_db_info",112,"name")="unix_db_info.s_addrs.crit_check_cycle" + Set gtmtypes("unix_db_info",112,"off")=664 + Set gtmtypes("unix_db_info",112,"len")=4 + Set gtmtypes("unix_db_info",112,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.crit_check_cycle")=112 + Set gtmtypes("unix_db_info",113,"name")="unix_db_info.s_addrs.backup_in_prog" + Set gtmtypes("unix_db_info",113,"off")=668 + Set gtmtypes("unix_db_info",113,"len")=4 + Set gtmtypes("unix_db_info",113,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.backup_in_prog")=113 + Set gtmtypes("unix_db_info",114,"name")="unix_db_info.s_addrs.snapshot_in_prog" + Set gtmtypes("unix_db_info",114,"off")=672 + Set gtmtypes("unix_db_info",114,"len")=4 + Set gtmtypes("unix_db_info",114,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.snapshot_in_prog")=114 + Set gtmtypes("unix_db_info",115,"name")="unix_db_info.s_addrs.ref_cnt" + Set gtmtypes("unix_db_info",115,"off")=676 + Set gtmtypes("unix_db_info",115,"len")=4 + Set gtmtypes("unix_db_info",115,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.ref_cnt")=115 + Set gtmtypes("unix_db_info",116,"name")="unix_db_info.s_addrs.fid_index" + Set gtmtypes("unix_db_info",116,"off")=680 + Set gtmtypes("unix_db_info",116,"len")=4 + Set gtmtypes("unix_db_info",116,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.fid_index")=116 + Set gtmtypes("unix_db_info",117,"name")="unix_db_info.s_addrs.do_fullblockwrites" + Set gtmtypes("unix_db_info",117,"off")=684 + Set gtmtypes("unix_db_info",117,"len")=4 + Set gtmtypes("unix_db_info",117,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.do_fullblockwrites")=117 + Set gtmtypes("unix_db_info",118,"name")="unix_db_info.s_addrs.regnum" + Set gtmtypes("unix_db_info",118,"off")=688 + Set gtmtypes("unix_db_info",118,"len")=4 + Set gtmtypes("unix_db_info",118,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.regnum")=118 + Set gtmtypes("unix_db_info",119,"name")="unix_db_info.s_addrs.n_pre_read_trigger" + Set gtmtypes("unix_db_info",119,"off")=692 + Set gtmtypes("unix_db_info",119,"len")=4 + Set gtmtypes("unix_db_info",119,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.n_pre_read_trigger")=119 + Set gtmtypes("unix_db_info",120,"name")="unix_db_info.s_addrs.jnlpool_validate_check" + Set gtmtypes("unix_db_info",120,"off")=696 + Set gtmtypes("unix_db_info",120,"len")=4 + Set gtmtypes("unix_db_info",120,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.jnlpool_validate_check")=120 + Set gtmtypes("unix_db_info",121,"name")="unix_db_info.s_addrs.regcnt" + Set gtmtypes("unix_db_info",121,"off")=700 + Set gtmtypes("unix_db_info",121,"len")=4 + Set gtmtypes("unix_db_info",121,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.regcnt")=121 + Set gtmtypes("unix_db_info",122,"name")="unix_db_info.s_addrs.t_commit_crit" + Set gtmtypes("unix_db_info",122,"off")=704 + Set gtmtypes("unix_db_info",122,"len")=4 + Set gtmtypes("unix_db_info",122,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.t_commit_crit")=122 + Set gtmtypes("unix_db_info",123,"name")="unix_db_info.s_addrs.wcs_pidcnt_incremented" + Set gtmtypes("unix_db_info",123,"off")=708 + Set gtmtypes("unix_db_info",123,"len")=4 + Set gtmtypes("unix_db_info",123,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.wcs_pidcnt_incremented")=123 + Set gtmtypes("unix_db_info",124,"name")="unix_db_info.s_addrs.incr_db_trigger_cycle" + Set gtmtypes("unix_db_info",124,"off")=712 + Set gtmtypes("unix_db_info",124,"len")=4 + Set gtmtypes("unix_db_info",124,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.incr_db_trigger_cycle")=124 + Set gtmtypes("unix_db_info",125,"name")="unix_db_info.s_addrs.db_trigger_cycle" + Set gtmtypes("unix_db_info",125,"off")=716 + Set gtmtypes("unix_db_info",125,"len")=4 + Set gtmtypes("unix_db_info",125,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_trigger_cycle")=125 + Set gtmtypes("unix_db_info",126,"name")="unix_db_info.s_addrs.db_dztrigger_cycle" + Set gtmtypes("unix_db_info",126,"off")=720 + Set gtmtypes("unix_db_info",126,"len")=4 + Set gtmtypes("unix_db_info",126,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_dztrigger_cycle")=126 + Set gtmtypes("unix_db_info",127,"name")="unix_db_info.s_addrs.hold_onto_crit" + Set gtmtypes("unix_db_info",127,"off")=724 + Set gtmtypes("unix_db_info",127,"len")=4 + Set gtmtypes("unix_db_info",127,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.hold_onto_crit")=127 + Set gtmtypes("unix_db_info",128,"name")="unix_db_info.s_addrs.dse_crit_seize_done" + Set gtmtypes("unix_db_info",128,"off")=728 + Set gtmtypes("unix_db_info",128,"len")=4 + Set gtmtypes("unix_db_info",128,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dse_crit_seize_done")=128 + Set gtmtypes("unix_db_info",129,"name")="unix_db_info.s_addrs.gbuff_limit" + Set gtmtypes("unix_db_info",129,"off")=732 + Set gtmtypes("unix_db_info",129,"len")=4 + Set gtmtypes("unix_db_info",129,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.gbuff_limit")=129 + Set gtmtypes("unix_db_info",130,"name")="unix_db_info.s_addrs.our_midnite" + Set gtmtypes("unix_db_info",130,"off")=736 + Set gtmtypes("unix_db_info",130,"len")=4 + Set gtmtypes("unix_db_info",130,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.our_midnite")=130 + Set gtmtypes("unix_db_info",131,"name")="unix_db_info.s_addrs.root_search_cycle" + Set gtmtypes("unix_db_info",131,"off")=740 + Set gtmtypes("unix_db_info",131,"len")=4 + Set gtmtypes("unix_db_info",131,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.root_search_cycle")=131 + Set gtmtypes("unix_db_info",132,"name")="unix_db_info.s_addrs.onln_rlbk_cycle" + Set gtmtypes("unix_db_info",132,"off")=744 + Set gtmtypes("unix_db_info",132,"len")=4 + Set gtmtypes("unix_db_info",132,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.onln_rlbk_cycle")=132 + Set gtmtypes("unix_db_info",133,"name")="unix_db_info.s_addrs.db_onln_rlbkd_cycle" + Set gtmtypes("unix_db_info",133,"off")=748 + Set gtmtypes("unix_db_info",133,"len")=4 + Set gtmtypes("unix_db_info",133,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_onln_rlbkd_cycle")=133 + Set gtmtypes("unix_db_info",134,"name")="unix_db_info.s_addrs.dbinit_shm_created" + Set gtmtypes("unix_db_info",134,"off")=752 + Set gtmtypes("unix_db_info",134,"len")=4 + Set gtmtypes("unix_db_info",134,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbinit_shm_created")=134 + Set gtmtypes("unix_db_info",135,"name")="unix_db_info.s_addrs.read_only_fs" + Set gtmtypes("unix_db_info",135,"off")=756 + Set gtmtypes("unix_db_info",135,"len")=4 + Set gtmtypes("unix_db_info",135,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.read_only_fs")=135 + Set gtmtypes("unix_db_info",136,"name")="unix_db_info.s_addrs.crit_probe" + Set gtmtypes("unix_db_info",136,"off")=760 + Set gtmtypes("unix_db_info",136,"len")=4 + Set gtmtypes("unix_db_info",136,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.crit_probe")=136 + Set gtmtypes("unix_db_info",137,"name")="unix_db_info.s_addrs.probecrit_rec" + Set gtmtypes("unix_db_info",137,"off")=764 + Set gtmtypes("unix_db_info",137,"len")=56 + Set gtmtypes("unix_db_info",137,"type")="probecrit_rec_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec")=137 + Set gtmtypes("unix_db_info",138,"name")="unix_db_info.s_addrs.probecrit_rec.t_get_crit" + Set gtmtypes("unix_db_info",138,"off")=764 + Set gtmtypes("unix_db_info",138,"len")=8 + Set gtmtypes("unix_db_info",138,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.t_get_crit")=138 + Set gtmtypes("unix_db_info",139,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_failed" + Set gtmtypes("unix_db_info",139,"off")=772 + Set gtmtypes("unix_db_info",139,"len")=8 + Set gtmtypes("unix_db_info",139,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_failed")=139 + Set gtmtypes("unix_db_info",140,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_slps" + Set gtmtypes("unix_db_info",140,"off")=780 + Set gtmtypes("unix_db_info",140,"len")=8 + Set gtmtypes("unix_db_info",140,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_slps")=140 + Set gtmtypes("unix_db_info",141,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_yields" + Set gtmtypes("unix_db_info",141,"off")=788 + Set gtmtypes("unix_db_info",141,"len")=8 + Set gtmtypes("unix_db_info",141,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_yields")=141 + Set gtmtypes("unix_db_info",142,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_full" + Set gtmtypes("unix_db_info",142,"off")=796 + Set gtmtypes("unix_db_info",142,"len")=8 + Set gtmtypes("unix_db_info",142,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_full")=142 + Set gtmtypes("unix_db_info",143,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_slots" + Set gtmtypes("unix_db_info",143,"off")=804 + Set gtmtypes("unix_db_info",143,"len")=8 + Set gtmtypes("unix_db_info",143,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_slots")=143 + Set gtmtypes("unix_db_info",144,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_success" + Set gtmtypes("unix_db_info",144,"off")=812 + Set gtmtypes("unix_db_info",144,"len")=8 + Set gtmtypes("unix_db_info",144,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_success")=144 + Set gtmtypes("unix_db_info",145,"name")="unix_db_info.fn" + Set gtmtypes("unix_db_info",145,"off")=820 + Set gtmtypes("unix_db_info",145,"len")=4 + Set gtmtypes("unix_db_info",145,"type")="addr" + Set gtmtypfldindx("unix_db_info","fn")=145 + Set gtmtypes("unix_db_info",146,"name")="unix_db_info.fd" + Set gtmtypes("unix_db_info",146,"off")=824 + Set gtmtypes("unix_db_info",146,"len")=4 + Set gtmtypes("unix_db_info",146,"type")="int" + Set gtmtypfldindx("unix_db_info","fd")=146 + Set gtmtypes("unix_db_info",147,"name")="unix_db_info.fileid" + Set gtmtypes("unix_db_info",147,"off")=828 + Set gtmtypes("unix_db_info",147,"len")=20 + Set gtmtypes("unix_db_info",147,"type")="unix_file_id" + Set gtmtypfldindx("unix_db_info","fileid")=147 + Set gtmtypes("unix_db_info",148,"name")="unix_db_info.fileid.inode" + Set gtmtypes("unix_db_info",148,"off")=828 + Set gtmtypes("unix_db_info",148,"len")=8 + Set gtmtypes("unix_db_info",148,"type")="ino_t" + Set gtmtypfldindx("unix_db_info","fileid.inode")=148 + Set gtmtypes("unix_db_info",149,"name")="unix_db_info.fileid.device" + Set gtmtypes("unix_db_info",149,"off")=836 + Set gtmtypes("unix_db_info",149,"len")=8 + Set gtmtypes("unix_db_info",149,"type")="dev_t" + Set gtmtypfldindx("unix_db_info","fileid.device")=149 + Set gtmtypes("unix_db_info",150,"name")="unix_db_info.fileid.st_gen" + Set gtmtypes("unix_db_info",150,"off")=844 + Set gtmtypes("unix_db_info",150,"len")=4 + Set gtmtypes("unix_db_info",150,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","fileid.st_gen")=150 + Set gtmtypes("unix_db_info",151,"name")="unix_db_info.semid" + Set gtmtypes("unix_db_info",151,"off")=848 + Set gtmtypes("unix_db_info",151,"len")=4 + Set gtmtypes("unix_db_info",151,"type")="int" + Set gtmtypfldindx("unix_db_info","semid")=151 + Set gtmtypes("unix_db_info",152,"name")="unix_db_info.gt_sem_ctime" + Set gtmtypes("unix_db_info",152,"off")=852 + Set gtmtypes("unix_db_info",152,"len")=4 + Set gtmtypes("unix_db_info",152,"type")="time_t" + Set gtmtypfldindx("unix_db_info","gt_sem_ctime")=152 + Set gtmtypes("unix_db_info",153,"name")="unix_db_info.shmid" + Set gtmtypes("unix_db_info",153,"off")=856 + Set gtmtypes("unix_db_info",153,"len")=4 + Set gtmtypes("unix_db_info",153,"type")="int" + Set gtmtypfldindx("unix_db_info","shmid")=153 + Set gtmtypes("unix_db_info",154,"name")="unix_db_info.gt_shm_ctime" + Set gtmtypes("unix_db_info",154,"off")=860 + Set gtmtypes("unix_db_info",154,"len")=4 + Set gtmtypes("unix_db_info",154,"type")="time_t" + Set gtmtypfldindx("unix_db_info","gt_shm_ctime")=154 + Set gtmtypes("unix_db_info",155,"name")="unix_db_info.ftok_semid" + Set gtmtypes("unix_db_info",155,"off")=864 + Set gtmtypes("unix_db_info",155,"len")=4 + Set gtmtypes("unix_db_info",155,"type")="int" + Set gtmtypfldindx("unix_db_info","ftok_semid")=155 + Set gtmtypes("unix_db_info",156,"name")="unix_db_info.new_shm" + Set gtmtypes("unix_db_info",156,"off")=868 + Set gtmtypes("unix_db_info",156,"len")=4 + Set gtmtypes("unix_db_info",156,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","new_shm")=156 + Set gtmtypes("unix_db_info",157,"name")="unix_db_info.new_sem" + Set gtmtypes("unix_db_info",157,"off")=872 + Set gtmtypes("unix_db_info",157,"len")=4 + Set gtmtypes("unix_db_info",157,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","new_sem")=157 + Set gtmtypes("unix_db_info",158,"name")="unix_db_info.grabbed_ftok_sem" + Set gtmtypes("unix_db_info",158,"off")=876 + Set gtmtypes("unix_db_info",158,"len")=4 + Set gtmtypes("unix_db_info",158,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","grabbed_ftok_sem")=158 + Set gtmtypes("unix_db_info",159,"name")="unix_db_info.grabbed_access_sem" + Set gtmtypes("unix_db_info",159,"off")=880 + Set gtmtypes("unix_db_info",159,"len")=4 + Set gtmtypes("unix_db_info",159,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","grabbed_access_sem")=159 + Set gtmtypes("unix_db_info",160,"name")="unix_db_info.counter_acc_incremented" + Set gtmtypes("unix_db_info",160,"off")=884 + Set gtmtypes("unix_db_info",160,"len")=4 + Set gtmtypes("unix_db_info",160,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","counter_acc_incremented")=160 + Set gtmtypes("unix_db_info",161,"name")="unix_db_info.counter_ftok_incremented" + Set gtmtypes("unix_db_info",161,"off")=888 + Set gtmtypes("unix_db_info",161,"len")=4 + Set gtmtypes("unix_db_info",161,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","counter_ftok_incremented")=161 + Set gtmtypes("unix_db_info",162,"name")="unix_db_info.key" + Set gtmtypes("unix_db_info",162,"off")=892 + Set gtmtypes("unix_db_info",162,"len")=4 + Set gtmtypes("unix_db_info",162,"type")="key_t" + Set gtmtypfldindx("unix_db_info","key")=162 + Set gtmtypes("unix_db_info",163,"name")="unix_db_info.raw" + Set gtmtypes("unix_db_info",163,"off")=896 + Set gtmtypes("unix_db_info",163,"len")=1 + Set gtmtypes("unix_db_info",163,"type")="char" + Set gtmtypfldindx("unix_db_info","raw")=163 + ; + Set gtmtypes("unix_file_id")="struct" + Set gtmtypes("unix_file_id",0)=3 + Set gtmtypes("unix_file_id","len")=20 + Set gtmtypes("unix_file_id",1,"name")="unix_file_id.inode" + Set gtmtypes("unix_file_id",1,"off")=0 + Set gtmtypes("unix_file_id",1,"len")=8 + Set gtmtypes("unix_file_id",1,"type")="ino_t" + Set gtmtypfldindx("unix_file_id","inode")=1 + Set gtmtypes("unix_file_id",2,"name")="unix_file_id.device" + Set gtmtypes("unix_file_id",2,"off")=8 + Set gtmtypes("unix_file_id",2,"len")=8 + Set gtmtypes("unix_file_id",2,"type")="dev_t" + Set gtmtypfldindx("unix_file_id","device")=2 + Set gtmtypes("unix_file_id",3,"name")="unix_file_id.st_gen" + Set gtmtypes("unix_file_id",3,"off")=16 + Set gtmtypes("unix_file_id",3,"len")=4 + Set gtmtypes("unix_file_id",3,"type")="unsigned-int" + Set gtmtypfldindx("unix_file_id","st_gen")=3 + ; + Set gtmtypes("unix_file_info")="struct" + Set gtmtypes("unix_file_info",0)=3 + Set gtmtypes("unix_file_info","len")=12 + Set gtmtypes("unix_file_info",1,"name")="unix_file_info.file" + Set gtmtypes("unix_file_info",1,"off")=0 + Set gtmtypes("unix_file_info",1,"len")=4 + Set gtmtypes("unix_file_info",1,"type")="int" + Set gtmtypfldindx("unix_file_info","file")=1 + Set gtmtypes("unix_file_info",2,"name")="unix_file_info.fn_len" + Set gtmtypes("unix_file_info",2,"off")=4 + Set gtmtypes("unix_file_info",2,"len")=4 + Set gtmtypes("unix_file_info",2,"type")="int" + Set gtmtypfldindx("unix_file_info","fn_len")=2 + Set gtmtypes("unix_file_info",3,"name")="unix_file_info.fn" + Set gtmtypes("unix_file_info",3,"off")=8 + Set gtmtypes("unix_file_info",3,"len")=4 + Set gtmtypes("unix_file_info",3,"type")="addr" + Set gtmtypfldindx("unix_file_info","fn")=3 + ; + Set gtmtypes("upd_helper_ctl_struct")="struct" + Set gtmtypes("upd_helper_ctl_struct",0)=18 + Set gtmtypes("upd_helper_ctl_struct","len")=2084 + Set gtmtypes("upd_helper_ctl_struct",1,"name")="upd_helper_ctl_struct.pre_read_lock" + Set gtmtypes("upd_helper_ctl_struct",1,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",1,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",1,"type")="global_latch_t" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock")=1 + Set gtmtypes("upd_helper_ctl_struct",2,"name")="upd_helper_ctl_struct.pre_read_lock.u" + Set gtmtypes("upd_helper_ctl_struct",2,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",2,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",2,"type")="union" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u")=2 + Set gtmtypes("upd_helper_ctl_struct",3,"name")="upd_helper_ctl_struct.pre_read_lock.u.pid_imgcnt" + Set gtmtypes("upd_helper_ctl_struct",3,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",3,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",3,"type")="uint64_t" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.pid_imgcnt")=3 + Set gtmtypes("upd_helper_ctl_struct",4,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts" + Set gtmtypes("upd_helper_ctl_struct",4,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",4,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",4,"type")="struct" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts")=4 + Set gtmtypes("upd_helper_ctl_struct",5,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts.latch_pid" + Set gtmtypes("upd_helper_ctl_struct",5,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",5,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",5,"type")="int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts.latch_pid")=5 + Set gtmtypes("upd_helper_ctl_struct",6,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts.latch_word" + Set gtmtypes("upd_helper_ctl_struct",6,"off")=4 + Set gtmtypes("upd_helper_ctl_struct",6,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",6,"type")="int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts.latch_word")=6 + Set gtmtypes("upd_helper_ctl_struct",7,"name")="upd_helper_ctl_struct.pre_read_offset" + Set gtmtypes("upd_helper_ctl_struct",7,"off")=8 + Set gtmtypes("upd_helper_ctl_struct",7,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_offset")=7 + Set gtmtypes("upd_helper_ctl_struct",8,"name")="upd_helper_ctl_struct.first_done" + Set gtmtypes("upd_helper_ctl_struct",8,"off")=12 + Set gtmtypes("upd_helper_ctl_struct",8,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",8,"type")="boolean_t" + Set gtmtypfldindx("upd_helper_ctl_struct","first_done")=8 + Set gtmtypes("upd_helper_ctl_struct",9,"name")="upd_helper_ctl_struct.next_read_offset" + Set gtmtypes("upd_helper_ctl_struct",9,"off")=16 + Set gtmtypes("upd_helper_ctl_struct",9,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","next_read_offset")=9 + Set gtmtypes("upd_helper_ctl_struct",10,"name")="upd_helper_ctl_struct.start_helpers" + Set gtmtypes("upd_helper_ctl_struct",10,"off")=20 + Set gtmtypes("upd_helper_ctl_struct",10,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",10,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_helpers")=10 + Set gtmtypes("upd_helper_ctl_struct",11,"name")="upd_helper_ctl_struct.start_n_readers" + Set gtmtypes("upd_helper_ctl_struct",11,"off")=24 + Set gtmtypes("upd_helper_ctl_struct",11,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_n_readers")=11 + Set gtmtypes("upd_helper_ctl_struct",12,"name")="upd_helper_ctl_struct.start_n_writers" + Set gtmtypes("upd_helper_ctl_struct",12,"off")=28 + Set gtmtypes("upd_helper_ctl_struct",12,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_n_writers")=12 + Set gtmtypes("upd_helper_ctl_struct",13,"name")="upd_helper_ctl_struct.reap_helpers" + Set gtmtypes("upd_helper_ctl_struct",13,"off")=32 + Set gtmtypes("upd_helper_ctl_struct",13,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","reap_helpers")=13 + Set gtmtypes("upd_helper_ctl_struct",14,"name")="upd_helper_ctl_struct.helper_list" + Set gtmtypes("upd_helper_ctl_struct",14,"off")=36 + Set gtmtypes("upd_helper_ctl_struct",14,"len")=2048 + Set gtmtypes("upd_helper_ctl_struct",14,"type")="upd_helper_entry_struct" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list")=14 + Set gtmtypes("upd_helper_ctl_struct",14,"dim")=128 + Set gtmtypes("upd_helper_ctl_struct",15,"name")="upd_helper_ctl_struct.helper_list[0].helper_pid" + Set gtmtypes("upd_helper_ctl_struct",15,"off")=36 + Set gtmtypes("upd_helper_ctl_struct",15,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_pid")=15 + Set gtmtypes("upd_helper_ctl_struct",16,"name")="upd_helper_ctl_struct.helper_list[0].helper_pid_prev" + Set gtmtypes("upd_helper_ctl_struct",16,"off")=40 + Set gtmtypes("upd_helper_ctl_struct",16,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",16,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_pid_prev")=16 + Set gtmtypes("upd_helper_ctl_struct",17,"name")="upd_helper_ctl_struct.helper_list[0].helper_type" + Set gtmtypes("upd_helper_ctl_struct",17,"off")=44 + Set gtmtypes("upd_helper_ctl_struct",17,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",17,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_type")=17 + Set gtmtypes("upd_helper_ctl_struct",18,"name")="upd_helper_ctl_struct.helper_list[0].helper_shutdown" + Set gtmtypes("upd_helper_ctl_struct",18,"off")=48 + Set gtmtypes("upd_helper_ctl_struct",18,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",18,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_shutdown")=18 + ; + Set gtmtypes("upd_helper_entry_struct")="struct" + Set gtmtypes("upd_helper_entry_struct",0)=4 + Set gtmtypes("upd_helper_entry_struct","len")=16 + Set gtmtypes("upd_helper_entry_struct",1,"name")="upd_helper_entry_struct.helper_pid" + Set gtmtypes("upd_helper_entry_struct",1,"off")=0 + Set gtmtypes("upd_helper_entry_struct",1,"len")=4 + Set gtmtypes("upd_helper_entry_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_pid")=1 + Set gtmtypes("upd_helper_entry_struct",2,"name")="upd_helper_entry_struct.helper_pid_prev" + Set gtmtypes("upd_helper_entry_struct",2,"off")=4 + Set gtmtypes("upd_helper_entry_struct",2,"len")=4 + Set gtmtypes("upd_helper_entry_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_pid_prev")=2 + Set gtmtypes("upd_helper_entry_struct",3,"name")="upd_helper_entry_struct.helper_type" + Set gtmtypes("upd_helper_entry_struct",3,"off")=8 + Set gtmtypes("upd_helper_entry_struct",3,"len")=4 + Set gtmtypes("upd_helper_entry_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_type")=3 + Set gtmtypes("upd_helper_entry_struct",4,"name")="upd_helper_entry_struct.helper_shutdown" + Set gtmtypes("upd_helper_entry_struct",4,"off")=12 + Set gtmtypes("upd_helper_entry_struct",4,"len")=4 + Set gtmtypes("upd_helper_entry_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_shutdown")=4 + ; + Set gtmtypes("upd_proc_local_struct")="struct" + Set gtmtypes("upd_proc_local_struct",0)=12 + Set gtmtypes("upd_proc_local_struct","len")=304 + Set gtmtypes("upd_proc_local_struct",1,"name")="upd_proc_local_struct.upd_proc_pid" + Set gtmtypes("upd_proc_local_struct",1,"off")=0 + Set gtmtypes("upd_proc_local_struct",1,"len")=4 + Set gtmtypes("upd_proc_local_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_pid")=1 + Set gtmtypes("upd_proc_local_struct",2,"name")="upd_proc_local_struct.upd_proc_pid_prev" + Set gtmtypes("upd_proc_local_struct",2,"off")=4 + Set gtmtypes("upd_proc_local_struct",2,"len")=4 + Set gtmtypes("upd_proc_local_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_pid_prev")=2 + Set gtmtypes("upd_proc_local_struct",3,"name")="upd_proc_local_struct.read_jnl_seqno" + Set gtmtypes("upd_proc_local_struct",3,"off")=8 + Set gtmtypes("upd_proc_local_struct",3,"len")=8 + Set gtmtypes("upd_proc_local_struct",3,"type")="uint64_t" + Set gtmtypfldindx("upd_proc_local_struct","read_jnl_seqno")=3 + Set gtmtypes("upd_proc_local_struct",4,"name")="upd_proc_local_struct.read" + Set gtmtypes("upd_proc_local_struct",4,"off")=16 + Set gtmtypes("upd_proc_local_struct",4,"len")=4 + Set gtmtypes("upd_proc_local_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","read")=4 + Set gtmtypes("upd_proc_local_struct",5,"name")="upd_proc_local_struct.upd_proc_shutdown" + Set gtmtypes("upd_proc_local_struct",5,"off")=20 + Set gtmtypes("upd_proc_local_struct",5,"len")=4 + Set gtmtypes("upd_proc_local_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_shutdown")=5 + Set gtmtypes("upd_proc_local_struct",6,"name")="upd_proc_local_struct.upd_proc_shutdown_time" + Set gtmtypes("upd_proc_local_struct",6,"off")=24 + Set gtmtypes("upd_proc_local_struct",6,"len")=4 + Set gtmtypes("upd_proc_local_struct",6,"type")="int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_shutdown_time")=6 + Set gtmtypes("upd_proc_local_struct",7,"name")="upd_proc_local_struct.bad_trans" + Set gtmtypes("upd_proc_local_struct",7,"off")=28 + Set gtmtypes("upd_proc_local_struct",7,"len")=4 + Set gtmtypes("upd_proc_local_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","bad_trans")=7 + Set gtmtypes("upd_proc_local_struct",8,"name")="upd_proc_local_struct.changelog" + Set gtmtypes("upd_proc_local_struct",8,"off")=32 + Set gtmtypes("upd_proc_local_struct",8,"len")=4 + Set gtmtypes("upd_proc_local_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","changelog")=8 + Set gtmtypes("upd_proc_local_struct",9,"name")="upd_proc_local_struct.start_upd" + Set gtmtypes("upd_proc_local_struct",9,"off")=36 + Set gtmtypes("upd_proc_local_struct",9,"len")=4 + Set gtmtypes("upd_proc_local_struct",9,"type")="int" + Set gtmtypfldindx("upd_proc_local_struct","start_upd")=9 + Set gtmtypes("upd_proc_local_struct",10,"name")="upd_proc_local_struct.log_interval" + Set gtmtypes("upd_proc_local_struct",10,"off")=40 + Set gtmtypes("upd_proc_local_struct",10,"len")=4 + Set gtmtypes("upd_proc_local_struct",10,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","log_interval")=10 + Set gtmtypes("upd_proc_local_struct",11,"name")="upd_proc_local_struct.log_file" + Set gtmtypes("upd_proc_local_struct",11,"off")=44 + Set gtmtypes("upd_proc_local_struct",11,"len")=256 + Set gtmtypes("upd_proc_local_struct",11,"type")="char" + Set gtmtypfldindx("upd_proc_local_struct","log_file")=11 + Set gtmtypes("upd_proc_local_struct",12,"name")="upd_proc_local_struct.onln_rlbk_flg" + Set gtmtypes("upd_proc_local_struct",12,"off")=300 + Set gtmtypes("upd_proc_local_struct",12,"len")=4 + Set gtmtypes("upd_proc_local_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","onln_rlbk_flg")=12 + ; + Set gtmtypes("urx_addr")="struct" + Set gtmtypes("urx_addr",0)=2 + Set gtmtypes("urx_addr","len")=8 + Set gtmtypes("urx_addr",1,"name")="urx_addr.addr" + Set gtmtypes("urx_addr",1,"off")=0 + Set gtmtypes("urx_addr",1,"len")=4 + Set gtmtypes("urx_addr",1,"type")="addr" + Set gtmtypfldindx("urx_addr","addr")=1 + Set gtmtypes("urx_addr",2,"name")="urx_addr.next" + Set gtmtypes("urx_addr",2,"off")=4 + Set gtmtypes("urx_addr",2,"len")=4 + Set gtmtypes("urx_addr",2,"type")="addr" + Set gtmtypfldindx("urx_addr","next")=2 + ; + Set gtmtypes("urx_labref")="struct" + Set gtmtypes("urx_labref",0)=4 + Set gtmtypes("urx_labref","len")=16 + Set gtmtypes("urx_labref",1,"name")="urx_labref.addr" + Set gtmtypes("urx_labref",1,"off")=0 + Set gtmtypes("urx_labref",1,"len")=4 + Set gtmtypes("urx_labref",1,"type")="addr" + Set gtmtypfldindx("urx_labref","addr")=1 + Set gtmtypes("urx_labref",2,"name")="urx_labref.next" + Set gtmtypes("urx_labref",2,"off")=4 + Set gtmtypes("urx_labref",2,"len")=4 + Set gtmtypes("urx_labref",2,"type")="addr" + Set gtmtypfldindx("urx_labref","next")=2 + Set gtmtypes("urx_labref",3,"name")="urx_labref.len" + Set gtmtypes("urx_labref",3,"off")=8 + Set gtmtypes("urx_labref",3,"len")=4 + Set gtmtypes("urx_labref",3,"type")="unsigned-int" + Set gtmtypfldindx("urx_labref","len")=3 + Set gtmtypes("urx_labref",4,"name")="urx_labref.name" + Set gtmtypes("urx_labref",4,"off")=12 + Set gtmtypes("urx_labref",4,"len")=1 + Set gtmtypes("urx_labref",4,"type")="unsigned-char" + Set gtmtypfldindx("urx_labref","name")=4 + ; + Set gtmtypes("urx_rtnref")="struct" + Set gtmtypes("urx_rtnref",0)=5 + Set gtmtypes("urx_rtnref","len")=20 + Set gtmtypes("urx_rtnref",1,"name")="urx_rtnref.addr" + Set gtmtypes("urx_rtnref",1,"off")=0 + Set gtmtypes("urx_rtnref",1,"len")=4 + Set gtmtypes("urx_rtnref",1,"type")="addr" + Set gtmtypfldindx("urx_rtnref","addr")=1 + Set gtmtypes("urx_rtnref",2,"name")="urx_rtnref.lab" + Set gtmtypes("urx_rtnref",2,"off")=4 + Set gtmtypes("urx_rtnref",2,"len")=4 + Set gtmtypes("urx_rtnref",2,"type")="addr" + Set gtmtypfldindx("urx_rtnref","lab")=2 + Set gtmtypes("urx_rtnref",3,"name")="urx_rtnref.next" + Set gtmtypes("urx_rtnref",3,"off")=8 + Set gtmtypes("urx_rtnref",3,"len")=4 + Set gtmtypes("urx_rtnref",3,"type")="addr" + Set gtmtypfldindx("urx_rtnref","next")=3 + Set gtmtypes("urx_rtnref",4,"name")="urx_rtnref.len" + Set gtmtypes("urx_rtnref",4,"off")=12 + Set gtmtypes("urx_rtnref",4,"len")=4 + Set gtmtypes("urx_rtnref",4,"type")="unsigned-int" + Set gtmtypfldindx("urx_rtnref","len")=4 + Set gtmtypes("urx_rtnref",5,"name")="urx_rtnref.name" + Set gtmtypes("urx_rtnref",5,"off")=16 + Set gtmtypes("urx_rtnref",5,"len")=1 + Set gtmtypes("urx_rtnref",5,"type")="unsigned-char" + Set gtmtypfldindx("urx_rtnref","name")=5 + ; + Set gtmtypes("utfcgr")="struct" + Set gtmtypes("utfcgr",0)=9 + Set gtmtypes("utfcgr","len")=28 + Set gtmtypes("utfcgr",1,"name")="utfcgr.last_str" + Set gtmtypes("utfcgr",1,"off")=0 + Set gtmtypes("utfcgr",1,"len")=12 + Set gtmtypes("utfcgr",1,"type")="mstr" + Set gtmtypfldindx("utfcgr","last_str")=1 + Set gtmtypes("utfcgr",2,"name")="utfcgr.last_str.char_len" + Set gtmtypes("utfcgr",2,"off")=0 + Set gtmtypes("utfcgr",2,"len")=4 + Set gtmtypes("utfcgr",2,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr","last_str.char_len")=2 + Set gtmtypes("utfcgr",3,"name")="utfcgr.last_str.len" + Set gtmtypes("utfcgr",3,"off")=4 + Set gtmtypes("utfcgr",3,"len")=4 + Set gtmtypes("utfcgr",3,"type")="int" + Set gtmtypfldindx("utfcgr","last_str.len")=3 + Set gtmtypes("utfcgr",4,"name")="utfcgr.last_str.addr" + Set gtmtypes("utfcgr",4,"off")=8 + Set gtmtypes("utfcgr",4,"len")=4 + Set gtmtypes("utfcgr",4,"type")="addr" + Set gtmtypfldindx("utfcgr","last_str.addr")=4 + Set gtmtypes("utfcgr",5,"name")="utfcgr.ngrps" + Set gtmtypes("utfcgr",5,"off")=12 + Set gtmtypes("utfcgr",5,"len")=2 + Set gtmtypes("utfcgr",5,"type")="unsigned-short" + Set gtmtypfldindx("utfcgr","ngrps")=5 + Set gtmtypes("utfcgr",6,"name")="utfcgr.idx" + Set gtmtypes("utfcgr",6,"off")=14 + Set gtmtypes("utfcgr",6,"len")=2 + Set gtmtypes("utfcgr",6,"type")="unsigned-short" + Set gtmtypfldindx("utfcgr","idx")=6 + Set gtmtypes("utfcgr",7,"name")="utfcgr.reference" + Set gtmtypes("utfcgr",7,"off")=16 + Set gtmtypes("utfcgr",7,"len")=4 + Set gtmtypes("utfcgr",7,"type")="boolean_t" + Set gtmtypfldindx("utfcgr","reference")=7 + Set gtmtypes("utfcgr",8,"name")="utfcgr.entry" + Set gtmtypes("utfcgr",8,"off")=20 + Set gtmtypes("utfcgr",8,"len")=8 + Set gtmtypes("utfcgr",8,"type")="utfcgr_entry" + Set gtmtypfldindx("utfcgr","entry")=8 + Set gtmtypes("utfcgr",9,"name")="utfcgr.entry[0].byteidx" + Set gtmtypes("utfcgr",9,"off")=24 + Set gtmtypes("utfcgr",9,"len")=4 + Set gtmtypes("utfcgr",9,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr","entry[0].byteidx")=9 + ; + Set gtmtypes("utfcgr_area")="struct" + Set gtmtypes("utfcgr_area",0)=4 + Set gtmtypes("utfcgr_area","len")=16 + Set gtmtypes("utfcgr_area",1,"name")="utfcgr_area.utfcgrsteal" + Set gtmtypes("utfcgr_area",1,"off")=0 + Set gtmtypes("utfcgr_area",1,"len")=4 + Set gtmtypes("utfcgr_area",1,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrsteal")=1 + Set gtmtypes("utfcgr_area",2,"name")="utfcgr_area.utfcgrmax" + Set gtmtypes("utfcgr_area",2,"off")=4 + Set gtmtypes("utfcgr_area",2,"len")=4 + Set gtmtypes("utfcgr_area",2,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrmax")=2 + Set gtmtypes("utfcgr_area",3,"name")="utfcgr_area.utfcgrs" + Set gtmtypes("utfcgr_area",3,"off")=8 + Set gtmtypes("utfcgr_area",3,"len")=4 + Set gtmtypes("utfcgr_area",3,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrs")=3 + Set gtmtypes("utfcgr_area",4,"name")="utfcgr_area.utfcgrsize" + Set gtmtypes("utfcgr_area",4,"off")=12 + Set gtmtypes("utfcgr_area",4,"len")=4 + Set gtmtypes("utfcgr_area",4,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr_area","utfcgrsize")=4 + ; + Set gtmtypes("utfcgr_entry")="struct" + Set gtmtypes("utfcgr_entry",0)=1 + Set gtmtypes("utfcgr_entry","len")=8 + Set gtmtypes("utfcgr_entry",1,"name")="utfcgr_entry.byteidx" + Set gtmtypes("utfcgr_entry",1,"off")=4 + Set gtmtypes("utfcgr_entry",1,"len")=4 + Set gtmtypes("utfcgr_entry",1,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr_entry","byteidx")=1 + ; + Set gtmtypes("utfscan_parseblk")="struct" + Set gtmtypes("utfscan_parseblk",0)=9 + Set gtmtypes("utfscan_parseblk","len")=36 + Set gtmtypes("utfscan_parseblk",1,"name")="utfscan_parseblk.mv" + Set gtmtypes("utfscan_parseblk",1,"off")=0 + Set gtmtypes("utfscan_parseblk",1,"len")=4 + Set gtmtypes("utfscan_parseblk",1,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","mv")=1 + Set gtmtypes("utfscan_parseblk",2,"name")="utfscan_parseblk.stoponbadchar" + Set gtmtypes("utfscan_parseblk",2,"off")=4 + Set gtmtypes("utfscan_parseblk",2,"len")=4 + Set gtmtypes("utfscan_parseblk",2,"type")="boolean_t" + Set gtmtypfldindx("utfscan_parseblk","stoponbadchar")=2 + Set gtmtypes("utfscan_parseblk",3,"name")="utfscan_parseblk.scan_byte_offset" + Set gtmtypes("utfscan_parseblk",3,"off")=8 + Set gtmtypes("utfscan_parseblk",3,"len")=4 + Set gtmtypes("utfscan_parseblk",3,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_byte_offset")=3 + Set gtmtypes("utfscan_parseblk",4,"name")="utfscan_parseblk.scan_char_count" + Set gtmtypes("utfscan_parseblk",4,"off")=12 + Set gtmtypes("utfscan_parseblk",4,"len")=4 + Set gtmtypes("utfscan_parseblk",4,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_count")=4 + Set gtmtypes("utfscan_parseblk",5,"name")="utfscan_parseblk.utfcgr_indx" + Set gtmtypes("utfscan_parseblk",5,"off")=16 + Set gtmtypes("utfscan_parseblk",5,"len")=4 + Set gtmtypes("utfscan_parseblk",5,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","utfcgr_indx")=5 + Set gtmtypes("utfscan_parseblk",6,"name")="utfscan_parseblk.scan_char_len" + Set gtmtypes("utfscan_parseblk",6,"off")=20 + Set gtmtypes("utfscan_parseblk",6,"len")=4 + Set gtmtypes("utfscan_parseblk",6,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_len")=6 + Set gtmtypes("utfscan_parseblk",7,"name")="utfscan_parseblk.scan_char_type" + Set gtmtypes("utfscan_parseblk",7,"off")=24 + Set gtmtypes("utfscan_parseblk",7,"len")=4 + Set gtmtypes("utfscan_parseblk",7,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_type")=7 + Set gtmtypes("utfscan_parseblk",8,"name")="utfscan_parseblk.badcharstr" + Set gtmtypes("utfscan_parseblk",8,"off")=28 + Set gtmtypes("utfscan_parseblk",8,"len")=4 + Set gtmtypes("utfscan_parseblk",8,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","badcharstr")=8 + Set gtmtypes("utfscan_parseblk",9,"name")="utfscan_parseblk.badchartop" + Set gtmtypes("utfscan_parseblk",9,"off")=32 + Set gtmtypes("utfscan_parseblk",9,"len")=4 + Set gtmtypes("utfscan_parseblk",9,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","badchartop")=9 + ; + Set gtmtypes("util_snapshot_t")="struct" + Set gtmtypes("util_snapshot_t",0)=3 + Set gtmtypes("util_snapshot_t","len")=16 + Set gtmtypes("util_snapshot_t",1,"name")="util_snapshot_t.master_map" + Set gtmtypes("util_snapshot_t",1,"off")=0 + Set gtmtypes("util_snapshot_t",1,"len")=4 + Set gtmtypes("util_snapshot_t",1,"type")="addr" + Set gtmtypfldindx("util_snapshot_t","master_map")=1 + Set gtmtypes("util_snapshot_t",2,"name")="util_snapshot_t.header" + Set gtmtypes("util_snapshot_t",2,"off")=4 + Set gtmtypes("util_snapshot_t",2,"len")=4 + Set gtmtypes("util_snapshot_t",2,"type")="addr" + Set gtmtypfldindx("util_snapshot_t","header")=2 + Set gtmtypes("util_snapshot_t",3,"name")="util_snapshot_t.native_size" + Set gtmtypes("util_snapshot_t",3,"off")=8 + Set gtmtypes("util_snapshot_t",3,"len")=8 + Set gtmtypes("util_snapshot_t",3,"type")="uint64_t" + Set gtmtypfldindx("util_snapshot_t","native_size")=3 + ; + Set gtmtypes("viewparm")="union" + Set gtmtypes("viewparm",0)=11 + Set gtmtypes("viewparm","len")=32 + Set gtmtypes("viewparm",1,"name")="viewparm.ident" + Set gtmtypes("viewparm",1,"off")=0 + Set gtmtypes("viewparm",1,"len")=32 + Set gtmtypes("viewparm",1,"type")="mident_fixed" + Set gtmtypfldindx("viewparm","ident")=1 + Set gtmtypes("viewparm",2,"name")="viewparm.ident.c" + Set gtmtypes("viewparm",2,"off")=0 + Set gtmtypes("viewparm",2,"len")=32 + Set gtmtypes("viewparm",2,"type")="char" + Set gtmtypfldindx("viewparm","ident.c")=2 + Set gtmtypes("viewparm",3,"name")="viewparm.value" + Set gtmtypes("viewparm",3,"off")=0 + Set gtmtypes("viewparm",3,"len")=4 + Set gtmtypes("viewparm",3,"type")="addr" + Set gtmtypfldindx("viewparm","value")=3 + Set gtmtypes("viewparm",4,"name")="viewparm.gv_ptr" + Set gtmtypes("viewparm",4,"off")=0 + Set gtmtypes("viewparm",4,"len")=4 + Set gtmtypes("viewparm",4,"type")="addr" + Set gtmtypfldindx("viewparm","gv_ptr")=4 + Set gtmtypes("viewparm",5,"name")="viewparm.ni_list" + Set gtmtypes("viewparm",5,"off")=0 + Set gtmtypes("viewparm",5,"len")=8 + Set gtmtypes("viewparm",5,"type")="noisolation_list" + Set gtmtypfldindx("viewparm","ni_list")=5 + Set gtmtypes("viewparm",6,"name")="viewparm.ni_list.type" + Set gtmtypes("viewparm",6,"off")=0 + Set gtmtypes("viewparm",6,"len")=4 + Set gtmtypes("viewparm",6,"type")="int" + Set gtmtypfldindx("viewparm","ni_list.type")=6 + Set gtmtypes("viewparm",7,"name")="viewparm.ni_list.gvnh_list" + Set gtmtypes("viewparm",7,"off")=4 + Set gtmtypes("viewparm",7,"len")=4 + Set gtmtypes("viewparm",7,"type")="addr" + Set gtmtypfldindx("viewparm","ni_list.gvnh_list")=7 + Set gtmtypes("viewparm",8,"name")="viewparm.str" + Set gtmtypes("viewparm",8,"off")=0 + Set gtmtypes("viewparm",8,"len")=12 + Set gtmtypes("viewparm",8,"type")="mstr" + Set gtmtypfldindx("viewparm","str")=8 + Set gtmtypes("viewparm",9,"name")="viewparm.str.char_len" + Set gtmtypes("viewparm",9,"off")=0 + Set gtmtypes("viewparm",9,"len")=4 + Set gtmtypes("viewparm",9,"type")="unsigned-int" + Set gtmtypfldindx("viewparm","str.char_len")=9 + Set gtmtypes("viewparm",10,"name")="viewparm.str.len" + Set gtmtypes("viewparm",10,"off")=4 + Set gtmtypes("viewparm",10,"len")=4 + Set gtmtypes("viewparm",10,"type")="int" + Set gtmtypfldindx("viewparm","str.len")=10 + Set gtmtypes("viewparm",11,"name")="viewparm.str.addr" + Set gtmtypes("viewparm",11,"off")=8 + Set gtmtypes("viewparm",11,"len")=4 + Set gtmtypes("viewparm",11,"type")="addr" + Set gtmtypfldindx("viewparm","str.addr")=11 + ; + Set gtmtypes("viewtab_entry")="struct" + Set gtmtypes("viewtab_entry",0)=4 + Set gtmtypes("viewtab_entry","len")=19 + Set gtmtypes("viewtab_entry",1,"name")="viewtab_entry.keyword" + Set gtmtypes("viewtab_entry",1,"off")=0 + Set gtmtypes("viewtab_entry",1,"len")=16 + Set gtmtypes("viewtab_entry",1,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","keyword")=1 + Set gtmtypes("viewtab_entry",2,"name")="viewtab_entry.parm" + Set gtmtypes("viewtab_entry",2,"off")=16 + Set gtmtypes("viewtab_entry",2,"len")=1 + Set gtmtypes("viewtab_entry",2,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","parm")=2 + Set gtmtypes("viewtab_entry",3,"name")="viewtab_entry.keycode" + Set gtmtypes("viewtab_entry",3,"off")=17 + Set gtmtypes("viewtab_entry",3,"len")=1 + Set gtmtypes("viewtab_entry",3,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","keycode")=3 + Set gtmtypes("viewtab_entry",4,"name")="viewtab_entry.restype" + Set gtmtypes("viewtab_entry",4,"off")=18 + Set gtmtypes("viewtab_entry",4,"len")=1 + Set gtmtypes("viewtab_entry",4,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","restype")=4 + ; + Set gtmtypes("vms_lock_sb")="struct" + Set gtmtypes("vms_lock_sb",0)=4 + Set gtmtypes("vms_lock_sb","len")=24 + Set gtmtypes("vms_lock_sb",1,"name")="vms_lock_sb.cond" + Set gtmtypes("vms_lock_sb",1,"off")=0 + Set gtmtypes("vms_lock_sb",1,"len")=2 + Set gtmtypes("vms_lock_sb",1,"type")="short" + Set gtmtypfldindx("vms_lock_sb","cond")=1 + Set gtmtypes("vms_lock_sb",2,"name")="vms_lock_sb.reserved" + Set gtmtypes("vms_lock_sb",2,"off")=2 + Set gtmtypes("vms_lock_sb",2,"len")=2 + Set gtmtypes("vms_lock_sb",2,"type")="short" + Set gtmtypfldindx("vms_lock_sb","reserved")=2 + Set gtmtypes("vms_lock_sb",3,"name")="vms_lock_sb.lockid" + Set gtmtypes("vms_lock_sb",3,"off")=4 + Set gtmtypes("vms_lock_sb",3,"len")=4 + Set gtmtypes("vms_lock_sb",3,"type")="int" + Set gtmtypfldindx("vms_lock_sb","lockid")=3 + Set gtmtypes("vms_lock_sb",4,"name")="vms_lock_sb.valblk" + Set gtmtypes("vms_lock_sb",4,"off")=8 + Set gtmtypes("vms_lock_sb",4,"len")=16 + Set gtmtypes("vms_lock_sb",4,"type")="int" + Set gtmtypfldindx("vms_lock_sb","valblk")=4 + Set gtmtypes("vms_lock_sb",4,"dim")=4 + ; + Set gtmtypes("wcs_conflict_trace_t")="struct" + Set gtmtypes("wcs_conflict_trace_t",0)=3 + Set gtmtypes("wcs_conflict_trace_t","len")=12 + Set gtmtypes("wcs_conflict_trace_t",1,"name")="wcs_conflict_trace_t.wcs_active_lvl" + Set gtmtypes("wcs_conflict_trace_t",1,"off")=0 + Set gtmtypes("wcs_conflict_trace_t",1,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",1,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","wcs_active_lvl")=1 + Set gtmtypes("wcs_conflict_trace_t",2,"name")="wcs_conflict_trace_t.io_in_prog_pid" + Set gtmtypes("wcs_conflict_trace_t",2,"off")=4 + Set gtmtypes("wcs_conflict_trace_t",2,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",2,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","io_in_prog_pid")=2 + Set gtmtypes("wcs_conflict_trace_t",3,"name")="wcs_conflict_trace_t.fsync_in_prog_pid" + Set gtmtypes("wcs_conflict_trace_t",3,"off")=8 + Set gtmtypes("wcs_conflict_trace_t",3,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",3,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","fsync_in_prog_pid")=3 + ; + Set gtmtypes("z_records")="struct" + Set gtmtypes("z_records",0)=3 + Set gtmtypes("z_records","len")=12 + Set gtmtypes("z_records",1,"name")="z_records.beg" + Set gtmtypes("z_records",1,"off")=0 + Set gtmtypes("z_records",1,"len")=4 + Set gtmtypes("z_records",1,"type")="addr" + Set gtmtypfldindx("z_records","beg")=1 + Set gtmtypes("z_records",2,"name")="z_records.gtm_free" + Set gtmtypes("z_records",2,"off")=4 + Set gtmtypes("z_records",2,"len")=4 + Set gtmtypes("z_records",2,"type")="addr" + Set gtmtypfldindx("z_records","gtm_free")=2 + Set gtmtypes("z_records",3,"name")="z_records.end" + Set gtmtypes("z_records",3,"off")=8 + Set gtmtypes("z_records",3,"len")=4 + Set gtmtypes("z_records",3,"type")="addr" + Set gtmtypfldindx("z_records","end")=3 + ; + Set gtmtypes("zbrk_struct")="struct" + Set gtmtypes("zbrk_struct",0)=9 + Set gtmtypes("zbrk_struct","len")=32 + Set gtmtypes("zbrk_struct",1,"name")="zbrk_struct.mpc" + Set gtmtypes("zbrk_struct",1,"off")=0 + Set gtmtypes("zbrk_struct",1,"len")=4 + Set gtmtypes("zbrk_struct",1,"type")="addr" + Set gtmtypfldindx("zbrk_struct","mpc")=1 + Set gtmtypes("zbrk_struct",2,"name")="zbrk_struct.rtn" + Set gtmtypes("zbrk_struct",2,"off")=4 + Set gtmtypes("zbrk_struct",2,"len")=4 + Set gtmtypes("zbrk_struct",2,"type")="addr" + Set gtmtypfldindx("zbrk_struct","rtn")=2 + Set gtmtypes("zbrk_struct",3,"name")="zbrk_struct.lab" + Set gtmtypes("zbrk_struct",3,"off")=8 + Set gtmtypes("zbrk_struct",3,"len")=4 + Set gtmtypes("zbrk_struct",3,"type")="addr" + Set gtmtypfldindx("zbrk_struct","lab")=3 + Set gtmtypes("zbrk_struct",4,"name")="zbrk_struct.offset" + Set gtmtypes("zbrk_struct",4,"off")=12 + Set gtmtypes("zbrk_struct",4,"len")=4 + Set gtmtypes("zbrk_struct",4,"type")="int" + Set gtmtypfldindx("zbrk_struct","offset")=4 + Set gtmtypes("zbrk_struct",5,"name")="zbrk_struct.count" + Set gtmtypes("zbrk_struct",5,"off")=16 + Set gtmtypes("zbrk_struct",5,"len")=4 + Set gtmtypes("zbrk_struct",5,"type")="int" + Set gtmtypfldindx("zbrk_struct","count")=5 + Set gtmtypes("zbrk_struct",6,"name")="zbrk_struct.action" + Set gtmtypes("zbrk_struct",6,"off")=20 + Set gtmtypes("zbrk_struct",6,"len")=4 + Set gtmtypes("zbrk_struct",6,"type")="addr" + Set gtmtypfldindx("zbrk_struct","action")=6 + Set gtmtypes("zbrk_struct",7,"name")="zbrk_struct.rtnhdr" + Set gtmtypes("zbrk_struct",7,"off")=24 + Set gtmtypes("zbrk_struct",7,"len")=4 + Set gtmtypes("zbrk_struct",7,"type")="addr" + Set gtmtypfldindx("zbrk_struct","rtnhdr")=7 + Set gtmtypes("zbrk_struct",8,"name")="zbrk_struct.m_opcode" + Set gtmtypes("zbrk_struct",8,"off")=28 + Set gtmtypes("zbrk_struct",8,"len")=1 + Set gtmtypes("zbrk_struct",8,"type")="unsigned-char" + Set gtmtypfldindx("zbrk_struct","m_opcode")=8 + Set gtmtypes("zbrk_struct",9,"name")="zbrk_struct.filler" + Set gtmtypes("zbrk_struct",9,"off")=29 + Set gtmtypes("zbrk_struct",9,"len")=3 + Set gtmtypes("zbrk_struct",9,"type")="char" + Set gtmtypfldindx("zbrk_struct","filler")=9 + ; + Set gtmtypes("zintcmd_active_info")="struct" + Set gtmtypes("zintcmd_active_info",0)=3 + Set gtmtypes("zintcmd_active_info","len")=12 + Set gtmtypes("zintcmd_active_info",1,"name")="zintcmd_active_info.count" + Set gtmtypes("zintcmd_active_info",1,"off")=0 + Set gtmtypes("zintcmd_active_info",1,"len")=4 + Set gtmtypes("zintcmd_active_info",1,"type")="int" + Set gtmtypfldindx("zintcmd_active_info","count")=1 + Set gtmtypes("zintcmd_active_info",2,"name")="zintcmd_active_info.restart_pc_last" + Set gtmtypes("zintcmd_active_info",2,"off")=4 + Set gtmtypes("zintcmd_active_info",2,"len")=4 + Set gtmtypes("zintcmd_active_info",2,"type")="addr" + Set gtmtypfldindx("zintcmd_active_info","restart_pc_last")=2 + Set gtmtypes("zintcmd_active_info",3,"name")="zintcmd_active_info.restart_ctxt_last" + Set gtmtypes("zintcmd_active_info",3,"off")=8 + Set gtmtypes("zintcmd_active_info",3,"len")=4 + Set gtmtypes("zintcmd_active_info",3,"type")="addr" + Set gtmtypfldindx("zintcmd_active_info","restart_ctxt_last")=3 + ; + Set gtmtypes("zro_ent")="struct" + Set gtmtypes("zro_ent",0)=9 + Set gtmtypes("zro_ent","len")=32 + Set gtmtypes("zro_ent",1,"name")="zro_ent.type" + Set gtmtypes("zro_ent",1,"off")=0 + Set gtmtypes("zro_ent",1,"len")=4 + Set gtmtypes("zro_ent",1,"type")="unsigned-int" + Set gtmtypfldindx("zro_ent","type")=1 + Set gtmtypes("zro_ent",2,"name")="zro_ent.count" + Set gtmtypes("zro_ent",2,"off")=4 + Set gtmtypes("zro_ent",2,"len")=4 + Set gtmtypes("zro_ent",2,"type")="int" + Set gtmtypfldindx("zro_ent","count")=2 + Set gtmtypes("zro_ent",3,"name")="zro_ent.str" + Set gtmtypes("zro_ent",3,"off")=8 + Set gtmtypes("zro_ent",3,"len")=12 + Set gtmtypes("zro_ent",3,"type")="mstr" + Set gtmtypfldindx("zro_ent","str")=3 + Set gtmtypes("zro_ent",4,"name")="zro_ent.str.char_len" + Set gtmtypes("zro_ent",4,"off")=8 + Set gtmtypes("zro_ent",4,"len")=4 + Set gtmtypes("zro_ent",4,"type")="unsigned-int" + Set gtmtypfldindx("zro_ent","str.char_len")=4 + Set gtmtypes("zro_ent",5,"name")="zro_ent.str.len" + Set gtmtypes("zro_ent",5,"off")=12 + Set gtmtypes("zro_ent",5,"len")=4 + Set gtmtypes("zro_ent",5,"type")="int" + Set gtmtypfldindx("zro_ent","str.len")=5 + Set gtmtypes("zro_ent",6,"name")="zro_ent.str.addr" + Set gtmtypes("zro_ent",6,"off")=16 + Set gtmtypes("zro_ent",6,"len")=4 + Set gtmtypes("zro_ent",6,"type")="addr" + Set gtmtypfldindx("zro_ent","str.addr")=6 + Set gtmtypes("zro_ent",7,"name")="zro_ent.shrlib" + Set gtmtypes("zro_ent",7,"off")=20 + Set gtmtypes("zro_ent",7,"len")=4 + Set gtmtypes("zro_ent",7,"type")="addr" + Set gtmtypfldindx("zro_ent","shrlib")=7 + Set gtmtypes("zro_ent",8,"name")="zro_ent.shrsym" + Set gtmtypes("zro_ent",8,"off")=24 + Set gtmtypes("zro_ent",8,"len")=4 + Set gtmtypes("zro_ent",8,"type")="addr" + Set gtmtypfldindx("zro_ent","shrsym")=8 + Set gtmtypes("zro_ent",9,"name")="zro_ent.relinkctl_sgmaddr" + Set gtmtypes("zro_ent",9,"off")=28 + Set gtmtypes("zro_ent",9,"len")=4 + Set gtmtypes("zro_ent",9,"type")="addr" + Set gtmtypfldindx("zro_ent","relinkctl_sgmaddr")=9 + ; + Set gtmtypes("zs_gv_struct")="struct" + Set gtmtypes("zs_gv_struct",0)=2 + Set gtmtypes("zs_gv_struct","len")=8 + Set gtmtypes("zs_gv_struct",1,"name")="zs_gv_struct.end" + Set gtmtypes("zs_gv_struct",1,"off")=0 + Set gtmtypes("zs_gv_struct",1,"len")=4 + Set gtmtypes("zs_gv_struct",1,"type")="int" + Set gtmtypfldindx("zs_gv_struct","end")=1 + Set gtmtypes("zs_gv_struct",2,"name")="zs_gv_struct.prev" + Set gtmtypes("zs_gv_struct",2,"off")=4 + Set gtmtypes("zs_gv_struct",2,"len")=4 + Set gtmtypes("zs_gv_struct",2,"type")="int" + Set gtmtypfldindx("zs_gv_struct","prev")=2 + ; + Set gtmtypes("zs_lv_struct")="struct" + Set gtmtypes("zs_lv_struct",0)=2 + Set gtmtypes("zs_lv_struct","len")=8 + Set gtmtypes("zs_lv_struct",1,"name")="zs_lv_struct.lvar" + Set gtmtypes("zs_lv_struct",1,"off")=0 + Set gtmtypes("zs_lv_struct",1,"len")=4 + Set gtmtypes("zs_lv_struct",1,"type")="addr" + Set gtmtypfldindx("zs_lv_struct","lvar")=1 + Set gtmtypes("zs_lv_struct",2,"name")="zs_lv_struct.child" + Set gtmtypes("zs_lv_struct",2,"off")=4 + Set gtmtypes("zs_lv_struct",2,"len")=4 + Set gtmtypes("zs_lv_struct",2,"type")="addr" + Set gtmtypfldindx("zs_lv_struct","child")=2 + ; + Set gtmtypes("zshow_index")="struct" + Set gtmtypes("zshow_index",0)=2 + Set gtmtypes("zshow_index","len")=2 + Set gtmtypes("zshow_index",1,"name")="zshow_index.offset" + Set gtmtypes("zshow_index",1,"off")=0 + Set gtmtypes("zshow_index",1,"len")=1 + Set gtmtypes("zshow_index",1,"type")="char" + Set gtmtypfldindx("zshow_index","offset")=1 + Set gtmtypes("zshow_index",2,"name")="zshow_index.letter" + Set gtmtypes("zshow_index",2,"off")=1 + Set gtmtypes("zshow_index",2,"len")=1 + Set gtmtypes("zshow_index",2,"type")="char" + Set gtmtypfldindx("zshow_index","letter")=2 + ; + Set gtmtypes("zshow_out")="struct" + Set gtmtypes("zshow_out",0)=18 + Set gtmtypes("zshow_out","len")=44 + Set gtmtypes("zshow_out",1,"name")="zshow_out.type" + Set gtmtypes("zshow_out",1,"off")=0 + Set gtmtypes("zshow_out",1,"len")=1 + Set gtmtypes("zshow_out",1,"type")="char" + Set gtmtypfldindx("zshow_out","type")=1 + Set gtmtypes("zshow_out",2,"name")="zshow_out.code" + Set gtmtypes("zshow_out",2,"off")=1 + Set gtmtypes("zshow_out",2,"len")=1 + Set gtmtypes("zshow_out",2,"type")="char" + Set gtmtypfldindx("zshow_out","code")=2 + Set gtmtypes("zshow_out",3,"name")="zshow_out.curr_code" + Set gtmtypes("zshow_out",3,"off")=2 + Set gtmtypes("zshow_out",3,"len")=1 + Set gtmtypes("zshow_out",3,"type")="char" + Set gtmtypfldindx("zshow_out","curr_code")=3 + Set gtmtypes("zshow_out",4,"name")="zshow_out.size" + Set gtmtypes("zshow_out",4,"off")=4 + Set gtmtypes("zshow_out",4,"len")=4 + Set gtmtypes("zshow_out",4,"type")="int" + Set gtmtypfldindx("zshow_out","size")=4 + Set gtmtypes("zshow_out",5,"name")="zshow_out.buff" + Set gtmtypes("zshow_out",5,"off")=8 + Set gtmtypes("zshow_out",5,"len")=4 + Set gtmtypes("zshow_out",5,"type")="addr" + Set gtmtypfldindx("zshow_out","buff")=5 + Set gtmtypes("zshow_out",6,"name")="zshow_out.ptr" + Set gtmtypes("zshow_out",6,"off")=12 + Set gtmtypes("zshow_out",6,"len")=4 + Set gtmtypes("zshow_out",6,"type")="addr" + Set gtmtypfldindx("zshow_out","ptr")=6 + Set gtmtypes("zshow_out",7,"name")="zshow_out.len" + Set gtmtypes("zshow_out",7,"off")=16 + Set gtmtypes("zshow_out",7,"len")=4 + Set gtmtypes("zshow_out",7,"type")="int" + Set gtmtypfldindx("zshow_out","len")=7 + Set gtmtypes("zshow_out",8,"name")="zshow_out.displen" + Set gtmtypes("zshow_out",8,"off")=20 + Set gtmtypes("zshow_out",8,"len")=4 + Set gtmtypes("zshow_out",8,"type")="int" + Set gtmtypfldindx("zshow_out","displen")=8 + Set gtmtypes("zshow_out",9,"name")="zshow_out.line_num" + Set gtmtypes("zshow_out",9,"off")=24 + Set gtmtypes("zshow_out",9,"len")=4 + Set gtmtypes("zshow_out",9,"type")="int" + Set gtmtypfldindx("zshow_out","line_num")=9 + Set gtmtypes("zshow_out",10,"name")="zshow_out.line_cont" + Set gtmtypes("zshow_out",10,"off")=28 + Set gtmtypes("zshow_out",10,"len")=4 + Set gtmtypes("zshow_out",10,"type")="int" + Set gtmtypfldindx("zshow_out","line_cont")=10 + Set gtmtypes("zshow_out",11,"name")="zshow_out.flush" + Set gtmtypes("zshow_out",11,"off")=32 + Set gtmtypes("zshow_out",11,"len")=4 + Set gtmtypes("zshow_out",11,"type")="boolean_t" + Set gtmtypfldindx("zshow_out","flush")=11 + Set gtmtypes("zshow_out",12,"name")="zshow_out.out_var" + Set gtmtypes("zshow_out",12,"off")=36 + Set gtmtypes("zshow_out",12,"len")=8 + Set gtmtypes("zshow_out",12,"type")="union" + Set gtmtypfldindx("zshow_out","out_var")=12 + Set gtmtypes("zshow_out",13,"name")="zshow_out.out_var.lv" + Set gtmtypes("zshow_out",13,"off")=36 + Set gtmtypes("zshow_out",13,"len")=8 + Set gtmtypes("zshow_out",13,"type")="zs_lv_struct" + Set gtmtypfldindx("zshow_out","out_var.lv")=13 + Set gtmtypes("zshow_out",14,"name")="zshow_out.out_var.lv.lvar" + Set gtmtypes("zshow_out",14,"off")=36 + Set gtmtypes("zshow_out",14,"len")=4 + Set gtmtypes("zshow_out",14,"type")="addr" + Set gtmtypfldindx("zshow_out","out_var.lv.lvar")=14 + Set gtmtypes("zshow_out",15,"name")="zshow_out.out_var.lv.child" + Set gtmtypes("zshow_out",15,"off")=40 + Set gtmtypes("zshow_out",15,"len")=4 + Set gtmtypes("zshow_out",15,"type")="addr" + Set gtmtypfldindx("zshow_out","out_var.lv.child")=15 + Set gtmtypes("zshow_out",16,"name")="zshow_out.out_var.gv" + Set gtmtypes("zshow_out",16,"off")=36 + Set gtmtypes("zshow_out",16,"len")=8 + Set gtmtypes("zshow_out",16,"type")="zs_gv_struct" + Set gtmtypfldindx("zshow_out","out_var.gv")=16 + Set gtmtypes("zshow_out",17,"name")="zshow_out.out_var.gv.end" + Set gtmtypes("zshow_out",17,"off")=36 + Set gtmtypes("zshow_out",17,"len")=4 + Set gtmtypes("zshow_out",17,"type")="int" + Set gtmtypfldindx("zshow_out","out_var.gv.end")=17 + Set gtmtypes("zshow_out",18,"name")="zshow_out.out_var.gv.prev" + Set gtmtypes("zshow_out",18,"off")=40 + Set gtmtypes("zshow_out",18,"len")=4 + Set gtmtypes("zshow_out",18,"type")="int" + Set gtmtypfldindx("zshow_out","out_var.gv.prev")=18 + ; + Set gtmtypes("zwr_alias_var")="struct" + Set gtmtypes("zwr_alias_var",0)=5 + Set gtmtypes("zwr_alias_var","len")=16 + Set gtmtypes("zwr_alias_var",1,"name")="zwr_alias_var.value_printed" + Set gtmtypes("zwr_alias_var",1,"off")=0 + Set gtmtypes("zwr_alias_var",1,"len")=4 + Set gtmtypes("zwr_alias_var",1,"type")="boolean_t" + Set gtmtypfldindx("zwr_alias_var","value_printed")=1 + Set gtmtypes("zwr_alias_var",2,"name")="zwr_alias_var.zwr_var" + Set gtmtypes("zwr_alias_var",2,"off")=4 + Set gtmtypes("zwr_alias_var",2,"len")=12 + Set gtmtypes("zwr_alias_var",2,"type")="mstr" + Set gtmtypfldindx("zwr_alias_var","zwr_var")=2 + Set gtmtypes("zwr_alias_var",3,"name")="zwr_alias_var.zwr_var.char_len" + Set gtmtypes("zwr_alias_var",3,"off")=4 + Set gtmtypes("zwr_alias_var",3,"len")=4 + Set gtmtypes("zwr_alias_var",3,"type")="unsigned-int" + Set gtmtypfldindx("zwr_alias_var","zwr_var.char_len")=3 + Set gtmtypes("zwr_alias_var",4,"name")="zwr_alias_var.zwr_var.len" + Set gtmtypes("zwr_alias_var",4,"off")=8 + Set gtmtypes("zwr_alias_var",4,"len")=4 + Set gtmtypes("zwr_alias_var",4,"type")="int" + Set gtmtypfldindx("zwr_alias_var","zwr_var.len")=4 + Set gtmtypes("zwr_alias_var",5,"name")="zwr_alias_var.zwr_var.addr" + Set gtmtypes("zwr_alias_var",5,"off")=12 + Set gtmtypes("zwr_alias_var",5,"len")=4 + Set gtmtypes("zwr_alias_var",5,"type")="addr" + Set gtmtypfldindx("zwr_alias_var","zwr_var.addr")=5 + ; + Set gtmtypes("zwr_hash_table")="struct" + Set gtmtypes("zwr_hash_table",0)=18 + Set gtmtypes("zwr_hash_table","len")=68 + Set gtmtypes("zwr_hash_table",1,"name")="zwr_hash_table.cleaned" + Set gtmtypes("zwr_hash_table",1,"off")=0 + Set gtmtypes("zwr_hash_table",1,"len")=4 + Set gtmtypes("zwr_hash_table",1,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","cleaned")=1 + Set gtmtypes("zwr_hash_table",2,"name")="zwr_hash_table.h_zwrtab" + Set gtmtypes("zwr_hash_table",2,"off")=4 + Set gtmtypes("zwr_hash_table",2,"len")=56 + Set gtmtypes("zwr_hash_table",2,"type")="hash_table_addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab")=2 + Set gtmtypes("zwr_hash_table",3,"name")="zwr_hash_table.h_zwrtab.base" + Set gtmtypes("zwr_hash_table",3,"off")=4 + Set gtmtypes("zwr_hash_table",3,"len")=4 + Set gtmtypes("zwr_hash_table",3,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.base")=3 + Set gtmtypes("zwr_hash_table",4,"name")="zwr_hash_table.h_zwrtab.top" + Set gtmtypes("zwr_hash_table",4,"off")=8 + Set gtmtypes("zwr_hash_table",4,"len")=4 + Set gtmtypes("zwr_hash_table",4,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.top")=4 + Set gtmtypes("zwr_hash_table",5,"name")="zwr_hash_table.h_zwrtab.size" + Set gtmtypes("zwr_hash_table",5,"off")=12 + Set gtmtypes("zwr_hash_table",5,"len")=4 + Set gtmtypes("zwr_hash_table",5,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.size")=5 + Set gtmtypes("zwr_hash_table",6,"name")="zwr_hash_table.h_zwrtab.initial_size" + Set gtmtypes("zwr_hash_table",6,"off")=16 + Set gtmtypes("zwr_hash_table",6,"len")=4 + Set gtmtypes("zwr_hash_table",6,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.initial_size")=6 + Set gtmtypes("zwr_hash_table",7,"name")="zwr_hash_table.h_zwrtab.spare_base" + Set gtmtypes("zwr_hash_table",7,"off")=20 + Set gtmtypes("zwr_hash_table",7,"len")=4 + Set gtmtypes("zwr_hash_table",7,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.spare_base")=7 + Set gtmtypes("zwr_hash_table",8,"name")="zwr_hash_table.h_zwrtab.spare_base_size" + Set gtmtypes("zwr_hash_table",8,"off")=24 + Set gtmtypes("zwr_hash_table",8,"len")=4 + Set gtmtypes("zwr_hash_table",8,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.spare_base_size")=8 + Set gtmtypes("zwr_hash_table",9,"name")="zwr_hash_table.h_zwrtab.dont_compact" + Set gtmtypes("zwr_hash_table",9,"off")=28 + Set gtmtypes("zwr_hash_table",9,"len")=4 + Set gtmtypes("zwr_hash_table",9,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.dont_compact")=9 + Set gtmtypes("zwr_hash_table",10,"name")="zwr_hash_table.h_zwrtab.dont_keep_spare_table" + Set gtmtypes("zwr_hash_table",10,"off")=32 + Set gtmtypes("zwr_hash_table",10,"len")=4 + Set gtmtypes("zwr_hash_table",10,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.dont_keep_spare_table")=10 + Set gtmtypes("zwr_hash_table",11,"name")="zwr_hash_table.h_zwrtab.defer_base_release" + Set gtmtypes("zwr_hash_table",11,"off")=36 + Set gtmtypes("zwr_hash_table",11,"len")=4 + Set gtmtypes("zwr_hash_table",11,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.defer_base_release")=11 + Set gtmtypes("zwr_hash_table",12,"name")="zwr_hash_table.h_zwrtab.count" + Set gtmtypes("zwr_hash_table",12,"off")=40 + Set gtmtypes("zwr_hash_table",12,"len")=4 + Set gtmtypes("zwr_hash_table",12,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.count")=12 + Set gtmtypes("zwr_hash_table",13,"name")="zwr_hash_table.h_zwrtab.del_count" + Set gtmtypes("zwr_hash_table",13,"off")=44 + Set gtmtypes("zwr_hash_table",13,"len")=4 + Set gtmtypes("zwr_hash_table",13,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.del_count")=13 + Set gtmtypes("zwr_hash_table",14,"name")="zwr_hash_table.h_zwrtab.exp_trigger_size" + Set gtmtypes("zwr_hash_table",14,"off")=48 + Set gtmtypes("zwr_hash_table",14,"len")=4 + Set gtmtypes("zwr_hash_table",14,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.exp_trigger_size")=14 + Set gtmtypes("zwr_hash_table",15,"name")="zwr_hash_table.h_zwrtab.cmp_trigger_size" + Set gtmtypes("zwr_hash_table",15,"off")=52 + Set gtmtypes("zwr_hash_table",15,"len")=4 + Set gtmtypes("zwr_hash_table",15,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.cmp_trigger_size")=15 + Set gtmtypes("zwr_hash_table",16,"name")="zwr_hash_table.h_zwrtab.entry_passed_thru" + Set gtmtypes("zwr_hash_table",16,"off")=56 + Set gtmtypes("zwr_hash_table",16,"len")=4 + Set gtmtypes("zwr_hash_table",16,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.entry_passed_thru")=16 + Set gtmtypes("zwr_hash_table",17,"name")="zwr_hash_table.first_zwrzavb" + Set gtmtypes("zwr_hash_table",17,"off")=60 + Set gtmtypes("zwr_hash_table",17,"len")=4 + Set gtmtypes("zwr_hash_table",17,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","first_zwrzavb")=17 + Set gtmtypes("zwr_hash_table",18,"name")="zwr_hash_table.zav_flist" + Set gtmtypes("zwr_hash_table",18,"off")=64 + Set gtmtypes("zwr_hash_table",18,"len")=4 + Set gtmtypes("zwr_hash_table",18,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","zav_flist")=18 + ; + Set gtmtypes("zwr_sub_lst")="struct" + Set gtmtypes("zwr_sub_lst",0)=5 + Set gtmtypes("zwr_sub_lst","len")=16 + Set gtmtypes("zwr_sub_lst",1,"name")="zwr_sub_lst.subsc_list" + Set gtmtypes("zwr_sub_lst",1,"off")=0 + Set gtmtypes("zwr_sub_lst",1,"len")=16 + Set gtmtypes("zwr_sub_lst",1,"type")="struct" + Set gtmtypfldindx("zwr_sub_lst","subsc_list")=1 + Set gtmtypes("zwr_sub_lst",2,"name")="zwr_sub_lst.subsc_list[0].subsc_type" + Set gtmtypes("zwr_sub_lst",2,"off")=0 + Set gtmtypes("zwr_sub_lst",2,"len")=1 + Set gtmtypes("zwr_sub_lst",2,"type")="unsigned-char" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].subsc_type")=2 + Set gtmtypes("zwr_sub_lst",3,"name")="zwr_sub_lst.subsc_list[0].actual" + Set gtmtypes("zwr_sub_lst",3,"off")=4 + Set gtmtypes("zwr_sub_lst",3,"len")=4 + Set gtmtypes("zwr_sub_lst",3,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].actual")=3 + Set gtmtypes("zwr_sub_lst",4,"name")="zwr_sub_lst.subsc_list[0].first" + Set gtmtypes("zwr_sub_lst",4,"off")=8 + Set gtmtypes("zwr_sub_lst",4,"len")=4 + Set gtmtypes("zwr_sub_lst",4,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].first")=4 + Set gtmtypes("zwr_sub_lst",5,"name")="zwr_sub_lst.subsc_list[0].second" + Set gtmtypes("zwr_sub_lst",5,"off")=12 + Set gtmtypes("zwr_sub_lst",5,"len")=4 + Set gtmtypes("zwr_sub_lst",5,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].second")=5 + ; + Set gtmtypes("zwr_zav_blk")="struct" + Set gtmtypes("zwr_zav_blk",0)=4 + Set gtmtypes("zwr_zav_blk","len")=16 + Set gtmtypes("zwr_zav_blk",1,"name")="zwr_zav_blk.zav_base" + Set gtmtypes("zwr_zav_blk",1,"off")=0 + Set gtmtypes("zwr_zav_blk",1,"len")=4 + Set gtmtypes("zwr_zav_blk",1,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_base")=1 + Set gtmtypes("zwr_zav_blk",2,"name")="zwr_zav_blk.zav_free" + Set gtmtypes("zwr_zav_blk",2,"off")=4 + Set gtmtypes("zwr_zav_blk",2,"len")=4 + Set gtmtypes("zwr_zav_blk",2,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_free")=2 + Set gtmtypes("zwr_zav_blk",3,"name")="zwr_zav_blk.zav_top" + Set gtmtypes("zwr_zav_blk",3,"off")=8 + Set gtmtypes("zwr_zav_blk",3,"len")=4 + Set gtmtypes("zwr_zav_blk",3,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_top")=3 + Set gtmtypes("zwr_zav_blk",4,"name")="zwr_zav_blk.next" + Set gtmtypes("zwr_zav_blk",4,"off")=12 + Set gtmtypes("zwr_zav_blk",4,"len")=4 + Set gtmtypes("zwr_zav_blk",4,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","next")=4 + ; + ; Structure cross reference (struct topname key to retrieve type + ; + Set gtmstructs("activelv_dbg_struct")="activelv_dbg_t" + Set gtmstructs("backup_reg_list_struct")="backup_reg_list" + Set gtmstructs("block_info_struct")="block_info" + Set gtmstructs("buddy_list_struct")="buddy_list" + Set gtmstructs("cache_ent")="cache_entry" + Set gtmstructs("cache_rec_struct")="cache_rec" + Set gtmstructs("callin_entry_list")="callin_entry_list" + Set gtmstructs("clb_stat_struct")="clb_stat" + Set gtmstructs("cm_lckblklck_struct")="cm_lckblklck" + Set gtmstructs("cm_lckblkprc_struct")="cm_lckblkprc" + Set gtmstructs("cm_lckblkreg_struct")="cm_lckblkreg" + Set gtmstructs("cm_lk_response_struct")="cm_lk_response" + Set gtmstructs("cm_region_head_struct")="cm_region_head" + Set gtmstructs("cm_region_list_struct")="cm_region_list" + Set gtmstructs("cmd_parm_struct")="CLI_PARM" + Set gtmstructs("cmd_parm_tag")="CLI_ENTRY" + Set gtmstructs("coll_hdr_struct")="coll_hdr" + Set gtmstructs("collseq_struct")="collseq" + Set gtmstructs("compswap_time_field_struct")="compswap_time_field" + Set gtmstructs("condition_handler_struct")="condition_handler" + Set gtmstructs("cs_struct")="connection_struct" + Set gtmstructs("cvs_MD5Context")="cvs_MD5_CTX" + Set gtmstructs("cw_set_element_struct")="cw_set_element" + Set gtmstructs("d_socket_struct_type")="d_socket_struct" + Set gtmstructs("dev_dispatch_struct")="dev_dispatch_struct" + Set gtmstructs("dev_pairs")="Dev_param_pairs" + Set gtmstructs("dev_param_pair")="Dev_param_pair" + Set gtmstructs("dollar_ecode")="dollar_ecode_struct" + Set gtmstructs("dollar_stack")="dollar_stack_struct" + Set gtmstructs("enc_handles_struct")="enc_handles" + Set gtmstructs("err_ctl_struct")="err_ctl" + Set gtmstructs("err_msg_struct")="err_msg" + Set gtmstructs("ext_tms_struct")="ext_tms" + Set gtmstructs("file_control_struct")="file_control" + Set gtmstructs("fnpc_struct")="fnpc" + Set gtmstructs("forw_multi_element_struct")="forw_multi_struct" + Set gtmstructs("gcall_args_struct")="gcall_args" + Set gtmstructs("gd_addr_struct")="gd_addr" + Set gtmstructs("gd_binding_struct")="gd_binding" + Set gtmstructs("gd_gblname_struct")="gd_gblname" + Set gtmstructs("gd_id_struct")="unix_file_id" + Set gtmstructs("gd_region_struct")="gd_region" + Set gtmstructs("gd_segment_struct")="gd_segment" + Set gtmstructs("gdr_name_struct")="gdr_name" + Set gtmstructs("gld_dbname_list_struct")="gld_dbname_list" + Set gtmstructs("glist_struct")="glist" + Set gtmstructs("global_dir_path_struct")="global_dir_path" + Set gtmstructs("global_list_struct")="global_list" + Set gtmstructs("global_root_list_struct")="global_root_list" + Set gtmstructs("global_tlvl_info_struct")="global_tlvl_info" + Set gtmstructs("gparam_list_struct")="gparam_list" + Set gtmstructs("gtm_num_range_struct")="gtm_num_range_t" + Set gtmstructs("gtm_tls_conn_info_struct")="gtm_tls_conn_info" + Set gtmstructs("gtm_tls_ctx_struct")="gtm_tls_ctx_t" + Set gtmstructs("gtm_tls_session_struct")="gtm_tls_socket_t" + Set gtmstructs("gtmsecshr_mesg_struct")="gtmsecshr_mesg" + Set gtmstructs("gtmsrc_lcl_struct")="gtmsrc_lcl" + Set gtmstructs("gv_key_struct")="gv_key" + Set gtmstructs("gv_namehead_struct")="gv_namehead" + Set gtmstructs("gv_trigger_struct")="gv_trigger_t" + Set gtmstructs("gvname_info_struct")="gvname_info" + Set gtmstructs("gvnh_reg_struct")="gvnh_reg_t" + Set gtmstructs("gvnh_spanreg_struct")="gvnh_spanreg_t" + Set gtmstructs("gvsavtarg_struct")="gvsavtarg_t" + Set gtmstructs("gvstats_rec_struct")="gvstats_rec_t" + Set gtmstructs("gvt_container_struct")="gvt_container" + Set gtmstructs("gvt_trigger_struct")="gvt_trigger_t" + Set gtmstructs("gvtr_invoke_parms_struct")="gvtr_invoke_parms_t" + Set gtmstructs("gvtr_subs_pattern_struct")="gvtr_subs_pattern_t" + Set gtmstructs("gvtr_subs_point_struct")="gvtr_subs_point_t" + Set gtmstructs("gvtr_subs_range_struct")="gvtr_subs_range_t" + Set gtmstructs("gvtr_subs_star_struct")="gvtr_subs_star_t" + Set gtmstructs("gvzwrite_datablk_struct")="gvzwrite_datablk" + Set gtmstructs("hash_table_addr_struct")="hash_table_addr" + Set gtmstructs("hash_table_int4_struct")="hash_table_int4" + Set gtmstructs("hash_table_int8_struct")="hash_table_int8" + Set gtmstructs("hash_table_mname_struct")="hash_table_mname" + Set gtmstructs("hash_table_objcode_struct")="hash_table_objcode" + Set gtmstructs("hash_table_str_struct")="hash_table_str" + Set gtmstructs("header_struct_struct")="header_struct" + Set gtmstructs("i_hdr")="inc_header" + Set gtmstructs("ihead_struct")="ihdtyp" + Set gtmstructs("inc_list")="inc_list_struct" + Set gtmstructs("integ_error_blk_list_struct")="integ_error_blk_list" + Set gtmstructs("io_desc_struct")="io_desc" + Set gtmstructs("io_log_name_struct")="io_log_name" + Set gtmstructs("ipcs_mesg_struct")="ipcs_mesg" + Set gtmstructs("jnl_ctl_list_struct")="jnl_ctl_list" + Set gtmstructs("jnl_format_buff_struct")="jnl_format_buffer" + Set gtmstructs("jnl_private_control_struct")="jnl_private_control" + Set gtmstructs("jnl_process_vector_struct")="jnl_process_vector" + Set gtmstructs("jnlext_multi_struct")="jnlext_multi_t" + Set gtmstructs("job_parm_struct")="job_parm" + Set gtmstructs("joberr_msg_struct")="joberr_msg" + Set gtmstructs("key_value_struct")="key_cum_value" + Set gtmstructs("kill_set_struct")="kill_set" + Set gtmstructs("link_info_struct")="link_info" + Set gtmstructs("long_list_struct")="long_list" + Set gtmstructs("lvTreeNodeNumStruct")="lvTreeNodeNum" + Set gtmstructs("lvTreeStruct")="lvTree" + Set gtmstructs("lv_blk_struct")="lv_blk" + Set gtmstructs("lv_val_struct")="lv_val" + Set gtmstructs("lv_xnew_var_struct")="lv_xnew_var" + Set gtmstructs("lv_xnewref_struct")="lv_xnew_ref" + Set gtmstructs("lvname_info_struct")="lvname_info" + Set gtmstructs("lvzwrite_datablk_struct")="lvzwrite_datablk" + Set gtmstructs("mcalloc_hdr_struct")="mcalloc_hdr" + Set gtmstructs("mem_list_struct")="mem_list" + Set gtmstructs("merge_glvn_struct_type")="merge_glvn_struct" + Set gtmstructs("mlabstruct")="mlabel" + Set gtmstructs("mlinestruct")="mline" + Set gtmstructs("mliteralstruct")="mliteral" + Set gtmstructs("mlk_ctldata_struct")="mlk_ctldata" + Set gtmstructs("mlk_pvtblk_struct")="mlk_pvtblk" + Set gtmstructs("mlk_stats_struct")="mlk_stats_t" + Set gtmstructs("mlk_tp_struct")="mlk_tp" + Set gtmstructs("mmseg_struct")="mmseg" + Set gtmstructs("mprof_stack_frame_struct")="mprof_stack_frame" + Set gtmstructs("mprof_tree_struct")="mprof_tree" + Set gtmstructs("mprof_wrapper_struct")="mprof_wrapper" + Set gtmstructs("mu_set_reglist")="mu_set_rlist" + Set gtmstructs("muinc_blk_hdr_struct")="muinc_blk_hdr" + Set gtmstructs("multi_element_struct")="multi_struct" + Set gtmstructs("mv_stent_struct")="mv_stent" + Set gtmstructs("mvarstruct")="mvar" + Set gtmstructs("mvaxstruct")="mvax" + Set gtmstructs("node_local_struct")="node_local" + Set gtmstructs("noisolation_element_struct")="noisolation_element" + Set gtmstructs("noisolation_list_struct")="noisolation_list" + Set gtmstructs("omi_cl_stat")="omi_cl_stat" + Set gtmstructs("omi_cn_stat")="omi_cn_stat" + Set gtmstructs("omi_conn_ll")="omi_conn_ll" + Set gtmstructs("omi_err_hdr")="omi_err_hdr" + Set gtmstructs("omi_hist_rec_t")="omi_hist_rec" + Set gtmstructs("omi_req_hdr")="omi_req_hdr" + Set gtmstructs("onln_rlbk_reg_list_struct")="onln_rlbk_reg_list" + Set gtmstructs("open_relinkctl_struct")="open_relinkctl_sgm" + Set gtmstructs("open_shlib_struct")="open_shlib" + Set gtmstructs("oprtypestruct")="oprtype" + Set gtmstructs("parmblk_struct")="parmblk_struct" + Set gtmstructs("parse_blk_struct")="parse_blk" + Set gtmstructs("patstrlit_struct")="pat_strlit" + Set gtmstructs("pattern_struct")="pattern" + Set gtmstructs("phase2_wait_trace_struct")="phase2_wait_trace_t" + Set gtmstructs("pini_list")="pini_list_struct" + Set gtmstructs("pipe_interrupt_type")="pipe_interrupt" + Set gtmstructs("plength_struct")="plength" + Set gtmstructs("probecrit_rec_struct")="probecrit_rec_t" + Set gtmstructs("pte_csh_struct")="pte_csh" + Set gtmstructs("ptstr_struct")="ptstr" + Set gtmstructs("rc_aq_hdr")="rc_aq_hdr" + Set gtmstructs("rc_dsid_list_struct")="rc_dsid_list" + Set gtmstructs("rc_hist_rec_t")="rc_hist_rec" + Set gtmstructs("rc_lknam")="rc_lknam" + Set gtmstructs("rc_rq_hdr")="rc_rq_hdr" + Set gtmstructs("rc_sbkey")="rc_sbkey" + Set gtmstructs("rc_swstr")="rc_swstr" + Set gtmstructs("rc_xblk_hdr")="rc_xblk_hdr" + Set gtmstructs("rc_xdsid")="rc_xdsid" + Set gtmstructs("rc_xnsid")="rc_xnsid" + Set gtmstructs("redirect_list_struct")="redirect_list" + Set gtmstructs("redo_root_search_context_struct")="redo_root_search_context" + Set gtmstructs("reg_ctl_list_struct")="reg_ctl_list" + Set gtmstructs("relinkctl_data_struct")="relinkctl_data" + Set gtmstructs("relinkrec_struct")="relinkrec_t" + Set gtmstructs("relinkshm_hdr")="relinkshm_hdr_t" + Set gtmstructs("repl_conn_info_struct")="repl_conn_info_t" + Set gtmstructs("repl_ctl_struct")="repl_ctl_element" + Set gtmstructs("repl_histinfo_struct")="repl_histinfo" + Set gtmstructs("repl_inst_hdr_struct")="repl_inst_hdr" + Set gtmstructs("repl_inst_uuid_struct")="repl_inst_uuid" + Set gtmstructs("repl_rctl_elem_struct")="repl_rctl_elem_t" + Set gtmstructs("repl_tls_info_struct")="repl_tls_info_t" + Set gtmstructs("rhead_struct")="rhdtyp" + Set gtmstructs("rtnobj_hdr_struct")="rtnobj_hdr_t" + Set gtmstructs("rtnobjshm_hdr_struct")="rtnobjshm_hdr_t" + Set gtmstructs("select_list_struct")="select_list" + Set gtmstructs("semid_queue_elem_t")="semid_queue_elem" + Set gtmstructs("semwait_status_struct")="semwait_status_t" + Set gtmstructs("set_jnl_options_struct")="set_jnl_options" + Set gtmstructs("sgm_info_struct")="sgm_info" + Set gtmstructs("sgmnt_addrs_struct")="sgmnt_addrs" + Set gtmstructs("sgmnt_data_struct")="sgmnt_data" + Set gtmstructs("shm_forw_multi_struct")="shm_forw_multi_t" + Set gtmstructs("shm_parms_struct")="shm_parms" + Set gtmstructs("shm_snapshot_struct")="shm_snapshot_t" + Set gtmstructs("shmpool_blk_hdr_struct")="shmpool_blk_hdr" + Set gtmstructs("shmpool_buff_hdr_struct")="shmpool_buff_hdr" + Set gtmstructs("snapshot_context_struct")="snapshot_context_t" + Set gtmstructs("snapshot_filehdr_struct")="snapshot_filhdr_t" + Set gtmstructs("snapshot_info_struct")="snapshot_info_t" + Set gtmstructs("socket_address_type")="socket_address" + Set gtmstructs("socket_interrupt_type")="socket_interrupt" + Set gtmstructs("socket_struct_type")="socket_struct" + Set gtmstructs("span_subs_struct")="span_subs" + Set gtmstructs("src_line_type")="src_line_struct" + Set gtmstructs("srch_blk_status_struct")="srch_blk_status" + Set gtmstructs("st_timer_alloc")="st_timer_alloc" + Set gtmstructs("stack_frame_struct")="stack_frame" + Set gtmstructs("storElemStruct")="storElem" + Set gtmstructs("struct_spanode_integ")="span_node_integ" + Set gtmstructs("symval_struct")="symval" + Set gtmstructs("tag_abs_time")="ABS_TIME" + Set gtmstructs("tag_ts")="GT_TIMER" + Set gtmstructs("tbptype")="tbp" + Set gtmstructs("textElemStruct")="textElem" + Set gtmstructs("tlevel_info_struct")="tlevel_info" + Set gtmstructs("token_split_t_struct")="token_split_t" + Set gtmstructs("tp_frame_struct")="tp_frame" + Set gtmstructs("tp_region_struct")="tp_region" + Set gtmstructs("tp_var_struct")="tp_var" + Set gtmstructs("trans_restart_hist_struct")="trans_restart_hist_t" + Set gtmstructs("trctbl_entry_struct")="trctbl_entry" + Set gtmstructs("treeNodeStruct")="lvTreeNode" + Set gtmstructs("triplesize")="tripsize" + Set gtmstructs("tripletype")="triple" + Set gtmstructs("trunc_reg_struct")="trunc_region" + Set gtmstructs("ua_list_struct")="ua_list" + Set gtmstructs("unix_db_info_struct")="unix_db_info" + Set gtmstructs("unix_file_info_struct")="unix_file_info" + Set gtmstructs("urx_addr_type")="urx_addr" + Set gtmstructs("urx_labref_type")="urx_labref" + Set gtmstructs("urx_rtnref_type")="urx_rtnref" + Set gtmstructs("utfcgr_entry_struct")="utfcgr_entry" + Set gtmstructs("utfcgr_struct")="utfcgr" + Set gtmstructs("util_snapshot_struct")="util_snapshot_t" + Set gtmstructs("vms_lock_sb_struct")="vms_lock_sb" + Set gtmstructs("wcs_conflict_trace_struct")="wcs_conflict_trace_t" + Set gtmstructs("zro_ent_type")="zro_ent" + Set gtmstructs("zshow_out_struct")="zshow_out" + Set gtmstructs("zwr_alias_var_struct")="zwr_alias_var" + Set gtmstructs("zwr_hash_table_struct")="zwr_hash_table" + Set gtmstructs("zwr_sub_lst_struct")="zwr_sub_lst" + Set gtmstructs("zwr_zav_blk_struct")="zwr_zav_blk" + ; + ; Union cross reference (union topname key to retrieve type + ; + Set gtmunions("gtm_time8_struct")="gtm_time8" + Set gtmunions("gvtr_subs_struct")="gvtr_subs_t" + Set gtmunions("omi_li")="omi_li" + Set gtmunions("omi_si")="omi_si" + Set gtmunions("omi_vi")="omi_vi" + Set gtmunions("rc_byte")="rc_byte" + Set gtmunions("rc_lword")="rc_lword" + Set gtmunions("rc_q_hdr")="rc_q_hdr" + Set gtmunions("rc_word")="rc_word" + ; + Quit diff --git a/sr_i386/GTMDefinedTypesInitRelease.m b/sr_i386/GTMDefinedTypesInitRelease.m new file mode 100644 index 00000000..af24da09 --- /dev/null +++ b/sr_i386/GTMDefinedTypesInitRelease.m @@ -0,0 +1,41320 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; ; +; Copyright (c) 2010-2016 Fidelity National Information ; +; Services, Inc. and/or its subsidiaries. All rights reserved. ; +; ; +; This source code contains the intellectual property ; +; of its copyright holder(s), and is made available ; +; under a license. If you do not know the terms of ; +; the license, please stop and do not read further. ; +; ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; +; Generated by scantypedefs.m at 15:34:48 on 2016-03-22 +; Build done with GT.M version: GT.M V6.2-002A Linux x86 +; +; Environment variables during run: +; $gtm_dist: /usr/library/V62002A/pro +; $gtm_exe: /usr/library/V63000/pro +; $gtm_src: /usr/library/V63000/src +; $gtm_inc: /usr/library/V63000/inc +; +; Note this file should not be manually invoked +; + Write "GTM-E-GTMSDFILE This routine (",$TEXT(+0),") should not be manually invoked",! + Quit +; +; Entry point used by gtmpcat and others to define GTM structure fields +; +Init + Set gtmsdver="1.1.0" + Set gtmsdtyp="pro" + ; + ; GT.M structure and field definitions + ; + Set gtmtypes("ABS_TIME")="struct" + Set gtmtypes("ABS_TIME",0)=2 + Set gtmtypes("ABS_TIME","len")=8 + Set gtmtypes("ABS_TIME",1,"name")="ABS_TIME.at_sec" + Set gtmtypes("ABS_TIME",1,"off")=0 + Set gtmtypes("ABS_TIME",1,"len")=4 + Set gtmtypes("ABS_TIME",1,"type")="long" + Set gtmtypfldindx("ABS_TIME","at_sec")=1 + Set gtmtypes("ABS_TIME",2,"name")="ABS_TIME.at_usec" + Set gtmtypes("ABS_TIME",2,"off")=4 + Set gtmtypes("ABS_TIME",2,"len")=4 + Set gtmtypes("ABS_TIME",2,"type")="long" + Set gtmtypfldindx("ABS_TIME","at_usec")=2 + ; + Set gtmtypes("BFILE")="struct" + Set gtmtypes("BFILE",0)=10 + Set gtmtypes("BFILE","len")=40 + Set gtmtypes("BFILE",1,"name")="BFILE.fd" + Set gtmtypes("BFILE",1,"off")=0 + Set gtmtypes("BFILE",1,"len")=4 + Set gtmtypes("BFILE",1,"type")="int" + Set gtmtypfldindx("BFILE","fd")=1 + Set gtmtypes("BFILE",2,"name")="BFILE.path" + Set gtmtypes("BFILE",2,"off")=4 + Set gtmtypes("BFILE",2,"len")=4 + Set gtmtypes("BFILE",2,"type")="addr" + Set gtmtypfldindx("BFILE","path")=2 + Set gtmtypes("BFILE",3,"name")="BFILE.oflag" + Set gtmtypes("BFILE",3,"off")=8 + Set gtmtypes("BFILE",3,"len")=4 + Set gtmtypes("BFILE",3,"type")="int" + Set gtmtypfldindx("BFILE","oflag")=3 + Set gtmtypes("BFILE",4,"name")="BFILE.mode" + Set gtmtypes("BFILE",4,"off")=12 + Set gtmtypes("BFILE",4,"len")=4 + Set gtmtypes("BFILE",4,"type")="int" + Set gtmtypfldindx("BFILE","mode")=4 + Set gtmtypes("BFILE",5,"name")="BFILE.blksiz" + Set gtmtypes("BFILE",5,"off")=16 + Set gtmtypes("BFILE",5,"len")=4 + Set gtmtypes("BFILE",5,"type")="int" + Set gtmtypfldindx("BFILE","blksiz")=5 + Set gtmtypes("BFILE",6,"name")="BFILE.bufsiz" + Set gtmtypes("BFILE",6,"off")=20 + Set gtmtypes("BFILE",6,"len")=4 + Set gtmtypes("BFILE",6,"type")="int" + Set gtmtypfldindx("BFILE","bufsiz")=6 + Set gtmtypes("BFILE",7,"name")="BFILE.buf" + Set gtmtypes("BFILE",7,"off")=24 + Set gtmtypes("BFILE",7,"len")=4 + Set gtmtypes("BFILE",7,"type")="addr" + Set gtmtypfldindx("BFILE","buf")=7 + Set gtmtypes("BFILE",8,"name")="BFILE.bptr" + Set gtmtypes("BFILE",8,"off")=28 + Set gtmtypes("BFILE",8,"len")=4 + Set gtmtypes("BFILE",8,"type")="addr" + Set gtmtypfldindx("BFILE","bptr")=8 + Set gtmtypes("BFILE",9,"name")="BFILE.remaining" + Set gtmtypes("BFILE",9,"off")=32 + Set gtmtypes("BFILE",9,"len")=4 + Set gtmtypes("BFILE",9,"type")="int" + Set gtmtypfldindx("BFILE","remaining")=9 + Set gtmtypes("BFILE",10,"name")="BFILE.write_mode" + Set gtmtypes("BFILE",10,"off")=36 + Set gtmtypes("BFILE",10,"len")=4 + Set gtmtypes("BFILE",10,"type")="int" + Set gtmtypfldindx("BFILE","write_mode")=10 + ; + Set gtmtypes("CLI_ENTRY")="struct" + Set gtmtypes("CLI_ENTRY",0)=9 + Set gtmtypes("CLI_ENTRY","len")=64 + Set gtmtypes("CLI_ENTRY",1,"name")="CLI_ENTRY.name" + Set gtmtypes("CLI_ENTRY",1,"off")=0 + Set gtmtypes("CLI_ENTRY",1,"len")=25 + Set gtmtypes("CLI_ENTRY",1,"type")="char" + Set gtmtypfldindx("CLI_ENTRY","name")=1 + Set gtmtypes("CLI_ENTRY",2,"name")="CLI_ENTRY.func" + Set gtmtypes("CLI_ENTRY",2,"off")=28 + Set gtmtypes("CLI_ENTRY",2,"len")=4 + Set gtmtypes("CLI_ENTRY",2,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","func")=2 + Set gtmtypes("CLI_ENTRY",3,"name")="CLI_ENTRY.parms" + Set gtmtypes("CLI_ENTRY",3,"off")=32 + Set gtmtypes("CLI_ENTRY",3,"len")=4 + Set gtmtypes("CLI_ENTRY",3,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","parms")=3 + Set gtmtypes("CLI_ENTRY",4,"name")="CLI_ENTRY.parm_values" + Set gtmtypes("CLI_ENTRY",4,"off")=36 + Set gtmtypes("CLI_ENTRY",4,"len")=4 + Set gtmtypes("CLI_ENTRY",4,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","parm_values")=4 + Set gtmtypes("CLI_ENTRY",5,"name")="CLI_ENTRY.qual_vals" + Set gtmtypes("CLI_ENTRY",5,"off")=40 + Set gtmtypes("CLI_ENTRY",5,"len")=4 + Set gtmtypes("CLI_ENTRY",5,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","qual_vals")=5 + Set gtmtypes("CLI_ENTRY",6,"name")="CLI_ENTRY.disallow_func" + Set gtmtypes("CLI_ENTRY",6,"off")=44 + Set gtmtypes("CLI_ENTRY",6,"len")=4 + Set gtmtypes("CLI_ENTRY",6,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","disallow_func")=6 + Set gtmtypes("CLI_ENTRY",7,"name")="CLI_ENTRY.dfault_str" + Set gtmtypes("CLI_ENTRY",7,"off")=48 + Set gtmtypes("CLI_ENTRY",7,"len")=4 + Set gtmtypes("CLI_ENTRY",7,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","dfault_str")=7 + Set gtmtypes("CLI_ENTRY",8,"name")="CLI_ENTRY.max_parms" + Set gtmtypes("CLI_ENTRY",8,"off")=54 + Set gtmtypes("CLI_ENTRY",8,"len")=2 + Set gtmtypes("CLI_ENTRY",8,"type")="unsigned-short" + Set gtmtypfldindx("CLI_ENTRY","max_parms")=8 + Set gtmtypes("CLI_ENTRY",9,"name")="CLI_ENTRY.pval_str" + Set gtmtypes("CLI_ENTRY",9,"off")=60 + Set gtmtypes("CLI_ENTRY",9,"len")=4 + Set gtmtypes("CLI_ENTRY",9,"type")="addr" + Set gtmtypfldindx("CLI_ENTRY","pval_str")=9 + ; + Set gtmtypes("CLI_PARM")="struct" + Set gtmtypes("CLI_PARM",0)=3 + Set gtmtypes("CLI_PARM","len")=56 + Set gtmtypes("CLI_PARM",1,"name")="CLI_PARM.name" + Set gtmtypes("CLI_PARM",1,"off")=0 + Set gtmtypes("CLI_PARM",1,"len")=25 + Set gtmtypes("CLI_PARM",1,"type")="char" + Set gtmtypfldindx("CLI_PARM","name")=1 + Set gtmtypes("CLI_PARM",2,"name")="CLI_PARM.prompt" + Set gtmtypes("CLI_PARM",2,"off")=25 + Set gtmtypes("CLI_PARM",2,"len")=25 + Set gtmtypes("CLI_PARM",2,"type")="char" + Set gtmtypfldindx("CLI_PARM","prompt")=2 + Set gtmtypes("CLI_PARM",3,"name")="CLI_PARM.parm_required" + Set gtmtypes("CLI_PARM",3,"off")=52 + Set gtmtypes("CLI_PARM",3,"len")=4 + Set gtmtypes("CLI_PARM",3,"type")="boolean_t" + Set gtmtypfldindx("CLI_PARM","parm_required")=3 + ; + Set gtmtypes("Dev_param_pair")="struct" + Set gtmtypes("Dev_param_pair",0)=2 + Set gtmtypes("Dev_param_pair","len")=8 + Set gtmtypes("Dev_param_pair",1,"name")="Dev_param_pair.name" + Set gtmtypes("Dev_param_pair",1,"off")=0 + Set gtmtypes("Dev_param_pair",1,"len")=4 + Set gtmtypes("Dev_param_pair",1,"type")="addr" + Set gtmtypfldindx("Dev_param_pair","name")=1 + Set gtmtypes("Dev_param_pair",2,"name")="Dev_param_pair.definition" + Set gtmtypes("Dev_param_pair",2,"off")=4 + Set gtmtypes("Dev_param_pair",2,"len")=4 + Set gtmtypes("Dev_param_pair",2,"type")="addr" + Set gtmtypfldindx("Dev_param_pair","definition")=2 + ; + Set gtmtypes("Dev_param_pairs")="struct" + Set gtmtypes("Dev_param_pairs",0)=4 + Set gtmtypes("Dev_param_pairs","len")=28 + Set gtmtypes("Dev_param_pairs",1,"name")="Dev_param_pairs.num_pairs" + Set gtmtypes("Dev_param_pairs",1,"off")=0 + Set gtmtypes("Dev_param_pairs",1,"len")=4 + Set gtmtypes("Dev_param_pairs",1,"type")="int" + Set gtmtypfldindx("Dev_param_pairs","num_pairs")=1 + Set gtmtypes("Dev_param_pairs",2,"name")="Dev_param_pairs.pairs" + Set gtmtypes("Dev_param_pairs",2,"off")=4 + Set gtmtypes("Dev_param_pairs",2,"len")=24 + Set gtmtypes("Dev_param_pairs",2,"type")="Dev_param_pair" + Set gtmtypfldindx("Dev_param_pairs","pairs")=2 + Set gtmtypes("Dev_param_pairs",2,"dim")=3 + Set gtmtypes("Dev_param_pairs",3,"name")="Dev_param_pairs.pairs[0].name" + Set gtmtypes("Dev_param_pairs",3,"off")=4 + Set gtmtypes("Dev_param_pairs",3,"len")=4 + Set gtmtypes("Dev_param_pairs",3,"type")="addr" + Set gtmtypfldindx("Dev_param_pairs","pairs[0].name")=3 + Set gtmtypes("Dev_param_pairs",4,"name")="Dev_param_pairs.pairs[0].definition" + Set gtmtypes("Dev_param_pairs",4,"off")=8 + Set gtmtypes("Dev_param_pairs",4,"len")=4 + Set gtmtypes("Dev_param_pairs",4,"type")="addr" + Set gtmtypfldindx("Dev_param_pairs","pairs[0].definition")=4 + ; + Set gtmtypes("GT_TIMER")="struct" + Set gtmtypes("GT_TIMER",0)=13 + Set gtmtypes("GT_TIMER","len")=44 + Set gtmtypes("GT_TIMER",1,"name")="GT_TIMER.expir_time" + Set gtmtypes("GT_TIMER",1,"off")=0 + Set gtmtypes("GT_TIMER",1,"len")=8 + Set gtmtypes("GT_TIMER",1,"type")="ABS_TIME" + Set gtmtypfldindx("GT_TIMER","expir_time")=1 + Set gtmtypes("GT_TIMER",2,"name")="GT_TIMER.expir_time.at_sec" + Set gtmtypes("GT_TIMER",2,"off")=0 + Set gtmtypes("GT_TIMER",2,"len")=4 + Set gtmtypes("GT_TIMER",2,"type")="long" + Set gtmtypfldindx("GT_TIMER","expir_time.at_sec")=2 + Set gtmtypes("GT_TIMER",3,"name")="GT_TIMER.expir_time.at_usec" + Set gtmtypes("GT_TIMER",3,"off")=4 + Set gtmtypes("GT_TIMER",3,"len")=4 + Set gtmtypes("GT_TIMER",3,"type")="long" + Set gtmtypfldindx("GT_TIMER","expir_time.at_usec")=3 + Set gtmtypes("GT_TIMER",4,"name")="GT_TIMER.start_time" + Set gtmtypes("GT_TIMER",4,"off")=8 + Set gtmtypes("GT_TIMER",4,"len")=8 + Set gtmtypes("GT_TIMER",4,"type")="ABS_TIME" + Set gtmtypfldindx("GT_TIMER","start_time")=4 + Set gtmtypes("GT_TIMER",5,"name")="GT_TIMER.start_time.at_sec" + Set gtmtypes("GT_TIMER",5,"off")=8 + Set gtmtypes("GT_TIMER",5,"len")=4 + Set gtmtypes("GT_TIMER",5,"type")="long" + Set gtmtypfldindx("GT_TIMER","start_time.at_sec")=5 + Set gtmtypes("GT_TIMER",6,"name")="GT_TIMER.start_time.at_usec" + Set gtmtypes("GT_TIMER",6,"off")=12 + Set gtmtypes("GT_TIMER",6,"len")=4 + Set gtmtypes("GT_TIMER",6,"type")="long" + Set gtmtypfldindx("GT_TIMER","start_time.at_usec")=6 + Set gtmtypes("GT_TIMER",7,"name")="GT_TIMER.handler" + Set gtmtypes("GT_TIMER",7,"off")=16 + Set gtmtypes("GT_TIMER",7,"len")=4 + Set gtmtypes("GT_TIMER",7,"type")="addr" + Set gtmtypfldindx("GT_TIMER","handler")=7 + Set gtmtypes("GT_TIMER",8,"name")="GT_TIMER.next" + Set gtmtypes("GT_TIMER",8,"off")=20 + Set gtmtypes("GT_TIMER",8,"len")=4 + Set gtmtypes("GT_TIMER",8,"type")="addr" + Set gtmtypfldindx("GT_TIMER","next")=8 + Set gtmtypes("GT_TIMER",9,"name")="GT_TIMER.tid" + Set gtmtypes("GT_TIMER",9,"off")=24 + Set gtmtypes("GT_TIMER",9,"len")=4 + Set gtmtypes("GT_TIMER",9,"type")="intptr_t" + Set gtmtypfldindx("GT_TIMER","tid")=9 + Set gtmtypes("GT_TIMER",10,"name")="GT_TIMER.safe" + Set gtmtypes("GT_TIMER",10,"off")=28 + Set gtmtypes("GT_TIMER",10,"len")=4 + Set gtmtypes("GT_TIMER",10,"type")="int" + Set gtmtypfldindx("GT_TIMER","safe")=10 + Set gtmtypes("GT_TIMER",11,"name")="GT_TIMER.hd_len_max" + Set gtmtypes("GT_TIMER",11,"off")=32 + Set gtmtypes("GT_TIMER",11,"len")=4 + Set gtmtypes("GT_TIMER",11,"type")="int" + Set gtmtypfldindx("GT_TIMER","hd_len_max")=11 + Set gtmtypes("GT_TIMER",12,"name")="GT_TIMER.hd_len" + Set gtmtypes("GT_TIMER",12,"off")=36 + Set gtmtypes("GT_TIMER",12,"len")=4 + Set gtmtypes("GT_TIMER",12,"type")="int" + Set gtmtypfldindx("GT_TIMER","hd_len")=12 + Set gtmtypes("GT_TIMER",13,"name")="GT_TIMER.hd_data" + Set gtmtypes("GT_TIMER",13,"off")=40 + Set gtmtypes("GT_TIMER",13,"len")=1 + Set gtmtypes("GT_TIMER",13,"type")="char" + Set gtmtypfldindx("GT_TIMER","hd_data")=13 + ; + Set gtmtypes("IN_PARMS")="struct" + Set gtmtypes("IN_PARMS",0)=5 + Set gtmtypes("IN_PARMS","len")=20 + Set gtmtypes("IN_PARMS",1,"name")="IN_PARMS.argc" + Set gtmtypes("IN_PARMS",1,"off")=0 + Set gtmtypes("IN_PARMS",1,"len")=4 + Set gtmtypes("IN_PARMS",1,"type")="int" + Set gtmtypfldindx("IN_PARMS","argc")=1 + Set gtmtypes("IN_PARMS",2,"name")="IN_PARMS.argv" + Set gtmtypes("IN_PARMS",2,"off")=4 + Set gtmtypes("IN_PARMS",2,"len")=4 + Set gtmtypes("IN_PARMS",2,"type")="addr" + Set gtmtypfldindx("IN_PARMS","argv")=2 + Set gtmtypes("IN_PARMS",3,"name")="IN_PARMS.tp" + Set gtmtypes("IN_PARMS",3,"off")=8 + Set gtmtypes("IN_PARMS",3,"len")=4 + Set gtmtypes("IN_PARMS",3,"type")="addr" + Set gtmtypfldindx("IN_PARMS","tp")=3 + Set gtmtypes("IN_PARMS",4,"name")="IN_PARMS.buflen" + Set gtmtypes("IN_PARMS",4,"off")=12 + Set gtmtypes("IN_PARMS",4,"len")=4 + Set gtmtypes("IN_PARMS",4,"type")="int" + Set gtmtypfldindx("IN_PARMS","buflen")=4 + Set gtmtypes("IN_PARMS",5,"name")="IN_PARMS.in_str" + Set gtmtypes("IN_PARMS",5,"off")=16 + Set gtmtypes("IN_PARMS",5,"len")=1 + Set gtmtypes("IN_PARMS",5,"type")="char" + Set gtmtypfldindx("IN_PARMS","in_str")=5 + ; + Set gtmtypes("activelv_dbg_t")="struct" + Set gtmtypes("activelv_dbg_t",0)=8 + Set gtmtypes("activelv_dbg_t","len")=32 + Set gtmtypes("activelv_dbg_t",1,"name")="activelv_dbg_t.active_lv" + Set gtmtypes("activelv_dbg_t",1,"off")=0 + Set gtmtypes("activelv_dbg_t",1,"len")=4 + Set gtmtypes("activelv_dbg_t",1,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","active_lv")=1 + Set gtmtypes("activelv_dbg_t",2,"name")="activelv_dbg_t.newlv" + Set gtmtypes("activelv_dbg_t",2,"off")=4 + Set gtmtypes("activelv_dbg_t",2,"len")=4 + Set gtmtypes("activelv_dbg_t",2,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","newlv")=2 + Set gtmtypes("activelv_dbg_t",3,"name")="activelv_dbg_t.frame_pointer" + Set gtmtypes("activelv_dbg_t",3,"off")=8 + Set gtmtypes("activelv_dbg_t",3,"len")=4 + Set gtmtypes("activelv_dbg_t",3,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","frame_pointer")=3 + Set gtmtypes("activelv_dbg_t",4,"name")="activelv_dbg_t.curr_symval" + Set gtmtypes("activelv_dbg_t",4,"off")=12 + Set gtmtypes("activelv_dbg_t",4,"len")=4 + Set gtmtypes("activelv_dbg_t",4,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","curr_symval")=4 + Set gtmtypes("activelv_dbg_t",5,"name")="activelv_dbg_t.mpc" + Set gtmtypes("activelv_dbg_t",5,"off")=16 + Set gtmtypes("activelv_dbg_t",5,"len")=4 + Set gtmtypes("activelv_dbg_t",5,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","mpc")=5 + Set gtmtypes("activelv_dbg_t",6,"name")="activelv_dbg_t.ctxt" + Set gtmtypes("activelv_dbg_t",6,"off")=20 + Set gtmtypes("activelv_dbg_t",6,"len")=4 + Set gtmtypes("activelv_dbg_t",6,"type")="addr" + Set gtmtypfldindx("activelv_dbg_t","ctxt")=6 + Set gtmtypes("activelv_dbg_t",7,"name")="activelv_dbg_t.count" + Set gtmtypes("activelv_dbg_t",7,"off")=24 + Set gtmtypes("activelv_dbg_t",7,"len")=4 + Set gtmtypes("activelv_dbg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("activelv_dbg_t","count")=7 + Set gtmtypes("activelv_dbg_t",8,"name")="activelv_dbg_t.type" + Set gtmtypes("activelv_dbg_t",8,"off")=28 + Set gtmtypes("activelv_dbg_t",8,"len")=4 + Set gtmtypes("activelv_dbg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("activelv_dbg_t","type")=8 + ; + Set gtmtypes("backup_reg_list")="struct" + Set gtmtypes("backup_reg_list",0)=19 + Set gtmtypes("backup_reg_list","len")=328 + Set gtmtypes("backup_reg_list",1,"name")="backup_reg_list.fPtr" + Set gtmtypes("backup_reg_list",1,"off")=0 + Set gtmtypes("backup_reg_list",1,"len")=4 + Set gtmtypes("backup_reg_list",1,"type")="addr" + Set gtmtypfldindx("backup_reg_list","fPtr")=1 + Set gtmtypes("backup_reg_list",2,"name")="backup_reg_list.reg" + Set gtmtypes("backup_reg_list",2,"off")=4 + Set gtmtypes("backup_reg_list",2,"len")=4 + Set gtmtypes("backup_reg_list",2,"type")="addr" + Set gtmtypfldindx("backup_reg_list","reg")=2 + Set gtmtypes("backup_reg_list",3,"name")="backup_reg_list.unique_file_id" + Set gtmtypes("backup_reg_list",3,"off")=8 + Set gtmtypes("backup_reg_list",3,"len")=20 + Set gtmtypes("backup_reg_list",3,"type")="unix_file_id" + Set gtmtypfldindx("backup_reg_list","unique_file_id")=3 + Set gtmtypes("backup_reg_list",4,"name")="backup_reg_list.unique_file_id.inode" + Set gtmtypes("backup_reg_list",4,"off")=8 + Set gtmtypes("backup_reg_list",4,"len")=8 + Set gtmtypes("backup_reg_list",4,"type")="ino_t" + Set gtmtypfldindx("backup_reg_list","unique_file_id.inode")=4 + Set gtmtypes("backup_reg_list",5,"name")="backup_reg_list.unique_file_id.device" + Set gtmtypes("backup_reg_list",5,"off")=16 + Set gtmtypes("backup_reg_list",5,"len")=8 + Set gtmtypes("backup_reg_list",5,"type")="dev_t" + Set gtmtypfldindx("backup_reg_list","unique_file_id.device")=5 + Set gtmtypes("backup_reg_list",6,"name")="backup_reg_list.unique_file_id.st_gen" + Set gtmtypes("backup_reg_list",6,"off")=24 + Set gtmtypes("backup_reg_list",6,"len")=4 + Set gtmtypes("backup_reg_list",6,"type")="unsigned-int" + Set gtmtypfldindx("backup_reg_list","unique_file_id.st_gen")=6 + Set gtmtypes("backup_reg_list",7,"name")="backup_reg_list.backup_file" + Set gtmtypes("backup_reg_list",7,"off")=28 + Set gtmtypes("backup_reg_list",7,"len")=12 + Set gtmtypes("backup_reg_list",7,"type")="mstr" + Set gtmtypfldindx("backup_reg_list","backup_file")=7 + Set gtmtypes("backup_reg_list",8,"name")="backup_reg_list.backup_file.char_len" + Set gtmtypes("backup_reg_list",8,"off")=28 + Set gtmtypes("backup_reg_list",8,"len")=4 + Set gtmtypes("backup_reg_list",8,"type")="unsigned-int" + Set gtmtypfldindx("backup_reg_list","backup_file.char_len")=8 + Set gtmtypes("backup_reg_list",9,"name")="backup_reg_list.backup_file.len" + Set gtmtypes("backup_reg_list",9,"off")=32 + Set gtmtypes("backup_reg_list",9,"len")=4 + Set gtmtypes("backup_reg_list",9,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_file.len")=9 + Set gtmtypes("backup_reg_list",10,"name")="backup_reg_list.backup_file.addr" + Set gtmtypes("backup_reg_list",10,"off")=36 + Set gtmtypes("backup_reg_list",10,"len")=4 + Set gtmtypes("backup_reg_list",10,"type")="addr" + Set gtmtypfldindx("backup_reg_list","backup_file.addr")=10 + Set gtmtypes("backup_reg_list",11,"name")="backup_reg_list.crashcnt" + Set gtmtypes("backup_reg_list",11,"off")=40 + Set gtmtypes("backup_reg_list",11,"len")=2 + Set gtmtypes("backup_reg_list",11,"type")="short" + Set gtmtypfldindx("backup_reg_list","crashcnt")=11 + Set gtmtypes("backup_reg_list",12,"name")="backup_reg_list.filler" + Set gtmtypes("backup_reg_list",12,"off")=42 + Set gtmtypes("backup_reg_list",12,"len")=2 + Set gtmtypes("backup_reg_list",12,"type")="short" + Set gtmtypfldindx("backup_reg_list","filler")=12 + Set gtmtypes("backup_reg_list",13,"name")="backup_reg_list.not_this_time" + Set gtmtypes("backup_reg_list",13,"off")=44 + Set gtmtypes("backup_reg_list",13,"len")=4 + Set gtmtypes("backup_reg_list",13,"type")="int" + Set gtmtypfldindx("backup_reg_list","not_this_time")=13 + Set gtmtypes("backup_reg_list",14,"name")="backup_reg_list.backup_to" + Set gtmtypes("backup_reg_list",14,"off")=48 + Set gtmtypes("backup_reg_list",14,"len")=4 + Set gtmtypes("backup_reg_list",14,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_to")=14 + Set gtmtypes("backup_reg_list",15,"name")="backup_reg_list.backup_hdr" + Set gtmtypes("backup_reg_list",15,"off")=52 + Set gtmtypes("backup_reg_list",15,"len")=4 + Set gtmtypes("backup_reg_list",15,"type")="addr" + Set gtmtypfldindx("backup_reg_list","backup_hdr")=15 + Set gtmtypes("backup_reg_list",16,"name")="backup_reg_list.tn" + Set gtmtypes("backup_reg_list",16,"off")=56 + Set gtmtypes("backup_reg_list",16,"len")=8 + Set gtmtypes("backup_reg_list",16,"type")="uint64_t" + Set gtmtypfldindx("backup_reg_list","tn")=16 + Set gtmtypes("backup_reg_list",17,"name")="backup_reg_list.last_blk_at_last_bkup" + Set gtmtypes("backup_reg_list",17,"off")=64 + Set gtmtypes("backup_reg_list",17,"len")=4 + Set gtmtypes("backup_reg_list",17,"type")="int" + Set gtmtypfldindx("backup_reg_list","last_blk_at_last_bkup")=17 + Set gtmtypes("backup_reg_list",18,"name")="backup_reg_list.backup_fd" + Set gtmtypes("backup_reg_list",18,"off")=68 + Set gtmtypes("backup_reg_list",18,"len")=4 + Set gtmtypes("backup_reg_list",18,"type")="int" + Set gtmtypfldindx("backup_reg_list","backup_fd")=18 + Set gtmtypes("backup_reg_list",19,"name")="backup_reg_list.backup_tempfile" + Set gtmtypes("backup_reg_list",19,"off")=72 + Set gtmtypes("backup_reg_list",19,"len")=256 + Set gtmtypes("backup_reg_list",19,"type")="char" + Set gtmtypfldindx("backup_reg_list","backup_tempfile")=19 + ; + Set gtmtypes("blk_hdr")="struct" + Set gtmtypes("blk_hdr",0)=5 + Set gtmtypes("blk_hdr","len")=16 + Set gtmtypes("blk_hdr",1,"name")="blk_hdr.bver" + Set gtmtypes("blk_hdr",1,"off")=0 + Set gtmtypes("blk_hdr",1,"len")=2 + Set gtmtypes("blk_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("blk_hdr","bver")=1 + Set gtmtypes("blk_hdr",2,"name")="blk_hdr.filler" + Set gtmtypes("blk_hdr",2,"off")=2 + Set gtmtypes("blk_hdr",2,"len")=1 + Set gtmtypes("blk_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("blk_hdr","filler")=2 + Set gtmtypes("blk_hdr",3,"name")="blk_hdr.levl" + Set gtmtypes("blk_hdr",3,"off")=3 + Set gtmtypes("blk_hdr",3,"len")=1 + Set gtmtypes("blk_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("blk_hdr","levl")=3 + Set gtmtypes("blk_hdr",4,"name")="blk_hdr.bsiz" + Set gtmtypes("blk_hdr",4,"off")=4 + Set gtmtypes("blk_hdr",4,"len")=4 + Set gtmtypes("blk_hdr",4,"type")="unsigned-int" + Set gtmtypfldindx("blk_hdr","bsiz")=4 + Set gtmtypes("blk_hdr",5,"name")="blk_hdr.tn" + Set gtmtypes("blk_hdr",5,"off")=8 + Set gtmtypes("blk_hdr",5,"len")=8 + Set gtmtypes("blk_hdr",5,"type")="uint64_t" + Set gtmtypfldindx("blk_hdr","tn")=5 + ; + Set gtmtypes("blk_segment")="struct" + Set gtmtypes("blk_segment",0)=2 + Set gtmtypes("blk_segment","len")=8 + Set gtmtypes("blk_segment",1,"name")="blk_segment.addr" + Set gtmtypes("blk_segment",1,"off")=0 + Set gtmtypes("blk_segment",1,"len")=4 + Set gtmtypes("blk_segment",1,"type")="addr" + Set gtmtypfldindx("blk_segment","addr")=1 + Set gtmtypes("blk_segment",2,"name")="blk_segment.len" + Set gtmtypes("blk_segment",2,"off")=4 + Set gtmtypes("blk_segment",2,"len")=4 + Set gtmtypes("blk_segment",2,"type")="uintptr_t" + Set gtmtypfldindx("blk_segment","len")=2 + ; + Set gtmtypes("block_info")="struct" + Set gtmtypes("block_info",0)=20 + Set gtmtypes("block_info","len")=76 + Set gtmtypes("block_info",1,"name")="block_info.tn" + Set gtmtypes("block_info",1,"off")=0 + Set gtmtypes("block_info",1,"len")=4 + Set gtmtypes("block_info",1,"type")="v15_trans_num" + Set gtmtypfldindx("block_info","tn")=1 + Set gtmtypes("block_info",2,"name")="block_info.blk_num" + Set gtmtypes("block_info",2,"off")=4 + Set gtmtypes("block_info",2,"len")=4 + Set gtmtypes("block_info",2,"type")="int" + Set gtmtypfldindx("block_info","blk_num")=2 + Set gtmtypes("block_info",3,"name")="block_info.usage" + Set gtmtypes("block_info",3,"off")=8 + Set gtmtypes("block_info",3,"len")=4 + Set gtmtypes("block_info",3,"type")="int" + Set gtmtypfldindx("block_info","usage")=3 + Set gtmtypes("block_info",4,"name")="block_info.blk_type" + Set gtmtypes("block_info",4,"off")=12 + Set gtmtypes("block_info",4,"len")=4 + Set gtmtypes("block_info",4,"type")="int" + Set gtmtypfldindx("block_info","blk_type")=4 + Set gtmtypes("block_info",5,"name")="block_info.upd_addr" + Set gtmtypes("block_info",5,"off")=16 + Set gtmtypes("block_info",5,"len")=4 + Set gtmtypes("block_info",5,"type")="addr" + Set gtmtypfldindx("block_info","upd_addr")=5 + Set gtmtypes("block_info",6,"name")="block_info.found_in_cache" + Set gtmtypes("block_info",6,"off")=20 + Set gtmtypes("block_info",6,"len")=4 + Set gtmtypes("block_info",6,"type")="boolean_t" + Set gtmtypfldindx("block_info","found_in_cache")=6 + Set gtmtypes("block_info",7,"name")="block_info.old_buff" + Set gtmtypes("block_info",7,"off")=24 + Set gtmtypes("block_info",7,"len")=4 + Set gtmtypes("block_info",7,"type")="addr" + Set gtmtypfldindx("block_info","old_buff")=7 + Set gtmtypes("block_info",8,"name")="block_info.new_buff" + Set gtmtypes("block_info",8,"off")=28 + Set gtmtypes("block_info",8,"len")=4 + Set gtmtypes("block_info",8,"type")="addr" + Set gtmtypfldindx("block_info","new_buff")=8 + Set gtmtypes("block_info",9,"name")="block_info.prev_rec" + Set gtmtypes("block_info",9,"off")=32 + Set gtmtypes("block_info",9,"len")=4 + Set gtmtypes("block_info",9,"type")="addr" + Set gtmtypfldindx("block_info","prev_rec")=9 + Set gtmtypes("block_info",10,"name")="block_info.prev_match" + Set gtmtypes("block_info",10,"off")=36 + Set gtmtypes("block_info",10,"len")=4 + Set gtmtypes("block_info",10,"type")="unsigned-int" + Set gtmtypfldindx("block_info","prev_match")=10 + Set gtmtypes("block_info",11,"name")="block_info.curr_rec" + Set gtmtypes("block_info",11,"off")=40 + Set gtmtypes("block_info",11,"len")=4 + Set gtmtypes("block_info",11,"type")="addr" + Set gtmtypfldindx("block_info","curr_rec")=11 + Set gtmtypes("block_info",12,"name")="block_info.curr_match" + Set gtmtypes("block_info",12,"off")=44 + Set gtmtypes("block_info",12,"len")=4 + Set gtmtypes("block_info",12,"type")="unsigned-int" + Set gtmtypfldindx("block_info","curr_match")=12 + Set gtmtypes("block_info",13,"name")="block_info.curr_blk_key" + Set gtmtypes("block_info",13,"off")=48 + Set gtmtypes("block_info",13,"len")=4 + Set gtmtypes("block_info",13,"type")="addr" + Set gtmtypfldindx("block_info","curr_blk_key")=13 + Set gtmtypes("block_info",14,"name")="block_info.prev_blk_key" + Set gtmtypes("block_info",14,"off")=52 + Set gtmtypes("block_info",14,"len")=4 + Set gtmtypes("block_info",14,"type")="addr" + Set gtmtypfldindx("block_info","prev_blk_key")=14 + Set gtmtypes("block_info",15,"name")="block_info.ins_rec" + Set gtmtypes("block_info",15,"off")=56 + Set gtmtypes("block_info",15,"len")=8 + Set gtmtypes("block_info",15,"type")="dbc_inserted_rec" + Set gtmtypfldindx("block_info","ins_rec")=15 + Set gtmtypes("block_info",16,"name")="block_info.ins_rec.ins_key" + Set gtmtypes("block_info",16,"off")=56 + Set gtmtypes("block_info",16,"len")=4 + Set gtmtypes("block_info",16,"type")="addr" + Set gtmtypfldindx("block_info","ins_rec.ins_key")=16 + Set gtmtypes("block_info",17,"name")="block_info.ins_rec.blk_id" + Set gtmtypes("block_info",17,"off")=60 + Set gtmtypes("block_info",17,"len")=4 + Set gtmtypes("block_info",17,"type")="int" + Set gtmtypfldindx("block_info","ins_rec.blk_id")=17 + Set gtmtypes("block_info",18,"name")="block_info.blk_len" + Set gtmtypes("block_info",18,"off")=64 + Set gtmtypes("block_info",18,"len")=4 + Set gtmtypes("block_info",18,"type")="int" + Set gtmtypfldindx("block_info","blk_len")=18 + Set gtmtypes("block_info",19,"name")="block_info.blk_levl" + Set gtmtypes("block_info",19,"off")=68 + Set gtmtypes("block_info",19,"len")=4 + Set gtmtypes("block_info",19,"type")="int" + Set gtmtypfldindx("block_info","blk_levl")=19 + Set gtmtypes("block_info",20,"name")="block_info.ins_blk_id_p" + Set gtmtypes("block_info",20,"off")=72 + Set gtmtypes("block_info",20,"len")=4 + Set gtmtypes("block_info",20,"type")="addr" + Set gtmtypfldindx("block_info","ins_blk_id_p")=20 + ; + Set gtmtypes("bt_rec")="struct" + Set gtmtypes("bt_rec",0)=13 + Set gtmtypes("bt_rec","len")=48 + Set gtmtypes("bt_rec",1,"name")="bt_rec.blkque" + Set gtmtypes("bt_rec",1,"off")=0 + Set gtmtypes("bt_rec",1,"len")=8 + Set gtmtypes("bt_rec",1,"type")="struct" + Set gtmtypfldindx("bt_rec","blkque")=1 + Set gtmtypes("bt_rec",2,"name")="bt_rec.blkque.fl" + Set gtmtypes("bt_rec",2,"off")=0 + Set gtmtypes("bt_rec",2,"len")=4 + Set gtmtypes("bt_rec",2,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","blkque.fl")=2 + Set gtmtypes("bt_rec",3,"name")="bt_rec.blkque.bl" + Set gtmtypes("bt_rec",3,"off")=4 + Set gtmtypes("bt_rec",3,"len")=4 + Set gtmtypes("bt_rec",3,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","blkque.bl")=3 + Set gtmtypes("bt_rec",4,"name")="bt_rec.tnque" + Set gtmtypes("bt_rec",4,"off")=8 + Set gtmtypes("bt_rec",4,"len")=8 + Set gtmtypes("bt_rec",4,"type")="struct" + Set gtmtypfldindx("bt_rec","tnque")=4 + Set gtmtypes("bt_rec",5,"name")="bt_rec.tnque.fl" + Set gtmtypes("bt_rec",5,"off")=8 + Set gtmtypes("bt_rec",5,"len")=4 + Set gtmtypes("bt_rec",5,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","tnque.fl")=5 + Set gtmtypes("bt_rec",6,"name")="bt_rec.tnque.bl" + Set gtmtypes("bt_rec",6,"off")=12 + Set gtmtypes("bt_rec",6,"len")=4 + Set gtmtypes("bt_rec",6,"type")="intptr_t" + Set gtmtypfldindx("bt_rec","tnque.bl")=6 + Set gtmtypes("bt_rec",7,"name")="bt_rec.tn" + Set gtmtypes("bt_rec",7,"off")=16 + Set gtmtypes("bt_rec",7,"len")=8 + Set gtmtypes("bt_rec",7,"type")="uint64_t" + Set gtmtypfldindx("bt_rec","tn")=7 + Set gtmtypes("bt_rec",8,"name")="bt_rec.killtn" + Set gtmtypes("bt_rec",8,"off")=24 + Set gtmtypes("bt_rec",8,"len")=8 + Set gtmtypes("bt_rec",8,"type")="uint64_t" + Set gtmtypfldindx("bt_rec","killtn")=8 + Set gtmtypes("bt_rec",9,"name")="bt_rec.blk" + Set gtmtypes("bt_rec",9,"off")=32 + Set gtmtypes("bt_rec",9,"len")=4 + Set gtmtypes("bt_rec",9,"type")="int" + Set gtmtypfldindx("bt_rec","blk")=9 + Set gtmtypes("bt_rec",10,"name")="bt_rec.cache_index" + Set gtmtypes("bt_rec",10,"off")=36 + Set gtmtypes("bt_rec",10,"len")=4 + Set gtmtypes("bt_rec",10,"type")="int" + Set gtmtypfldindx("bt_rec","cache_index")=10 + Set gtmtypes("bt_rec",11,"name")="bt_rec.flushing" + Set gtmtypes("bt_rec",11,"off")=40 + Set gtmtypes("bt_rec",11,"len")=1 + Set gtmtypes("bt_rec",11,"type")="char" + Set gtmtypfldindx("bt_rec","flushing")=11 + Set gtmtypes("bt_rec",12,"name")="bt_rec.filler" + Set gtmtypes("bt_rec",12,"off")=41 + Set gtmtypes("bt_rec",12,"len")=3 + Set gtmtypes("bt_rec",12,"type")="char" + Set gtmtypfldindx("bt_rec","filler")=12 + Set gtmtypes("bt_rec",13,"name")="bt_rec.filler_int4" + Set gtmtypes("bt_rec",13,"off")=44 + Set gtmtypes("bt_rec",13,"len")=4 + Set gtmtypes("bt_rec",13,"type")="int" + Set gtmtypfldindx("bt_rec","filler_int4")=13 + ; + Set gtmtypes("buddy_list")="struct" + Set gtmtypes("buddy_list",0)=9 + Set gtmtypes("buddy_list","len")=36 + Set gtmtypes("buddy_list",1,"name")="buddy_list.ptrArray" + Set gtmtypes("buddy_list",1,"off")=0 + Set gtmtypes("buddy_list",1,"len")=4 + Set gtmtypes("buddy_list",1,"type")="addr" + Set gtmtypfldindx("buddy_list","ptrArray")=1 + Set gtmtypes("buddy_list",2,"name")="buddy_list.elemSize" + Set gtmtypes("buddy_list",2,"off")=4 + Set gtmtypes("buddy_list",2,"len")=4 + Set gtmtypes("buddy_list",2,"type")="int" + Set gtmtypfldindx("buddy_list","elemSize")=2 + Set gtmtypes("buddy_list",3,"name")="buddy_list.initAlloc" + Set gtmtypes("buddy_list",3,"off")=8 + Set gtmtypes("buddy_list",3,"len")=4 + Set gtmtypes("buddy_list",3,"type")="int" + Set gtmtypfldindx("buddy_list","initAlloc")=3 + Set gtmtypes("buddy_list",4,"name")="buddy_list.initAllocBits" + Set gtmtypes("buddy_list",4,"off")=12 + Set gtmtypes("buddy_list",4,"len")=4 + Set gtmtypes("buddy_list",4,"type")="int" + Set gtmtypfldindx("buddy_list","initAllocBits")=4 + Set gtmtypes("buddy_list",5,"name")="buddy_list.nElems" + Set gtmtypes("buddy_list",5,"off")=16 + Set gtmtypes("buddy_list",5,"len")=4 + Set gtmtypes("buddy_list",5,"type")="int" + Set gtmtypfldindx("buddy_list","nElems")=5 + Set gtmtypes("buddy_list",6,"name")="buddy_list.cumulMaxElems" + Set gtmtypes("buddy_list",6,"off")=20 + Set gtmtypes("buddy_list",6,"len")=4 + Set gtmtypes("buddy_list",6,"type")="int" + Set gtmtypfldindx("buddy_list","cumulMaxElems")=6 + Set gtmtypes("buddy_list",7,"name")="buddy_list.ptrArrayCurr" + Set gtmtypes("buddy_list",7,"off")=24 + Set gtmtypes("buddy_list",7,"len")=4 + Set gtmtypes("buddy_list",7,"type")="addr" + Set gtmtypfldindx("buddy_list","ptrArrayCurr")=7 + Set gtmtypes("buddy_list",8,"name")="buddy_list.nextFreePtr" + Set gtmtypes("buddy_list",8,"off")=28 + Set gtmtypes("buddy_list",8,"len")=4 + Set gtmtypes("buddy_list",8,"type")="addr" + Set gtmtypfldindx("buddy_list","nextFreePtr")=8 + Set gtmtypes("buddy_list",9,"name")="buddy_list.free_que" + Set gtmtypes("buddy_list",9,"off")=32 + Set gtmtypes("buddy_list",9,"len")=4 + Set gtmtypes("buddy_list",9,"type")="addr" + Set gtmtypfldindx("buddy_list","free_que")=9 + ; + Set gtmtypes("cache_entry")="struct" + Set gtmtypes("cache_entry",0)=9 + Set gtmtypes("cache_entry","len")=36 + Set gtmtypes("cache_entry",1,"name")="cache_entry.obj" + Set gtmtypes("cache_entry",1,"off")=0 + Set gtmtypes("cache_entry",1,"len")=12 + Set gtmtypes("cache_entry",1,"type")="mstr" + Set gtmtypfldindx("cache_entry","obj")=1 + Set gtmtypes("cache_entry",2,"name")="cache_entry.obj.char_len" + Set gtmtypes("cache_entry",2,"off")=0 + Set gtmtypes("cache_entry",2,"len")=4 + Set gtmtypes("cache_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("cache_entry","obj.char_len")=2 + Set gtmtypes("cache_entry",3,"name")="cache_entry.obj.len" + Set gtmtypes("cache_entry",3,"off")=4 + Set gtmtypes("cache_entry",3,"len")=4 + Set gtmtypes("cache_entry",3,"type")="int" + Set gtmtypfldindx("cache_entry","obj.len")=3 + Set gtmtypes("cache_entry",4,"name")="cache_entry.obj.addr" + Set gtmtypes("cache_entry",4,"off")=8 + Set gtmtypes("cache_entry",4,"len")=4 + Set gtmtypes("cache_entry",4,"type")="addr" + Set gtmtypfldindx("cache_entry","obj.addr")=4 + Set gtmtypes("cache_entry",5,"name")="cache_entry.src" + Set gtmtypes("cache_entry",5,"off")=12 + Set gtmtypes("cache_entry",5,"len")=16 + Set gtmtypes("cache_entry",5,"type")="icode_str" + Set gtmtypfldindx("cache_entry","src")=5 + Set gtmtypes("cache_entry",6,"name")="cache_entry.src.str" + Set gtmtypes("cache_entry",6,"off")=12 + Set gtmtypes("cache_entry",6,"len")=12 + Set gtmtypes("cache_entry",6,"type")="mstr" + Set gtmtypfldindx("cache_entry","src.str")=6 + Set gtmtypes("cache_entry",7,"name")="cache_entry.src.code" + Set gtmtypes("cache_entry",7,"off")=24 + Set gtmtypes("cache_entry",7,"len")=4 + Set gtmtypes("cache_entry",7,"type")="unsigned-int" + Set gtmtypfldindx("cache_entry","src.code")=7 + Set gtmtypes("cache_entry",8,"name")="cache_entry.refcnt" + Set gtmtypes("cache_entry",8,"off")=28 + Set gtmtypes("cache_entry",8,"len")=4 + Set gtmtypes("cache_entry",8,"type")="int" + Set gtmtypfldindx("cache_entry","refcnt")=8 + Set gtmtypes("cache_entry",9,"name")="cache_entry.zb_refcnt" + Set gtmtypes("cache_entry",9,"off")=32 + Set gtmtypes("cache_entry",9,"len")=4 + Set gtmtypes("cache_entry",9,"type")="int" + Set gtmtypfldindx("cache_entry","zb_refcnt")=9 + ; + Set gtmtypes("cache_que_head")="struct" + Set gtmtypes("cache_que_head",0)=8 + Set gtmtypes("cache_que_head","len")=16 + Set gtmtypes("cache_que_head",1,"name")="cache_que_head.fl" + Set gtmtypes("cache_que_head",1,"off")=0 + Set gtmtypes("cache_que_head",1,"len")=4 + Set gtmtypes("cache_que_head",1,"type")="intptr_t" + Set gtmtypfldindx("cache_que_head","fl")=1 + Set gtmtypes("cache_que_head",2,"name")="cache_que_head.bl" + Set gtmtypes("cache_que_head",2,"off")=4 + Set gtmtypes("cache_que_head",2,"len")=4 + Set gtmtypes("cache_que_head",2,"type")="intptr_t" + Set gtmtypfldindx("cache_que_head","bl")=2 + Set gtmtypes("cache_que_head",3,"name")="cache_que_head.latch" + Set gtmtypes("cache_que_head",3,"off")=8 + Set gtmtypes("cache_que_head",3,"len")=8 + Set gtmtypes("cache_que_head",3,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_head","latch")=3 + Set gtmtypes("cache_que_head",4,"name")="cache_que_head.latch.u" + Set gtmtypes("cache_que_head",4,"off")=8 + Set gtmtypes("cache_que_head",4,"len")=8 + Set gtmtypes("cache_que_head",4,"type")="union" + Set gtmtypfldindx("cache_que_head","latch.u")=4 + Set gtmtypes("cache_que_head",5,"name")="cache_que_head.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_head",5,"off")=8 + Set gtmtypes("cache_que_head",5,"len")=8 + Set gtmtypes("cache_que_head",5,"type")="uint64_t" + Set gtmtypfldindx("cache_que_head","latch.u.pid_imgcnt")=5 + Set gtmtypes("cache_que_head",6,"name")="cache_que_head.latch.u.parts" + Set gtmtypes("cache_que_head",6,"off")=8 + Set gtmtypes("cache_que_head",6,"len")=8 + Set gtmtypes("cache_que_head",6,"type")="struct" + Set gtmtypfldindx("cache_que_head","latch.u.parts")=6 + Set gtmtypes("cache_que_head",7,"name")="cache_que_head.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_head",7,"off")=8 + Set gtmtypes("cache_que_head",7,"len")=4 + Set gtmtypes("cache_que_head",7,"type")="int" + Set gtmtypfldindx("cache_que_head","latch.u.parts.latch_pid")=7 + Set gtmtypes("cache_que_head",8,"name")="cache_que_head.latch.u.parts.latch_word" + Set gtmtypes("cache_que_head",8,"off")=12 + Set gtmtypes("cache_que_head",8,"len")=4 + Set gtmtypes("cache_que_head",8,"type")="int" + Set gtmtypfldindx("cache_que_head","latch.u.parts.latch_word")=8 + ; + Set gtmtypes("cache_que_heads")="struct" + Set gtmtypes("cache_que_heads",0)=49 + Set gtmtypes("cache_que_heads","len")=152 + Set gtmtypes("cache_que_heads",1,"name")="cache_que_heads.cacheq_wip" + Set gtmtypes("cache_que_heads",1,"off")=0 + Set gtmtypes("cache_que_heads",1,"len")=16 + Set gtmtypes("cache_que_heads",1,"type")="cache_que_head" + Set gtmtypfldindx("cache_que_heads","cacheq_wip")=1 + Set gtmtypes("cache_que_heads",2,"name")="cache_que_heads.cacheq_wip.fl" + Set gtmtypes("cache_que_heads",2,"off")=0 + Set gtmtypes("cache_que_heads",2,"len")=4 + Set gtmtypes("cache_que_heads",2,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.fl")=2 + Set gtmtypes("cache_que_heads",3,"name")="cache_que_heads.cacheq_wip.bl" + Set gtmtypes("cache_que_heads",3,"off")=4 + Set gtmtypes("cache_que_heads",3,"len")=4 + Set gtmtypes("cache_que_heads",3,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.bl")=3 + Set gtmtypes("cache_que_heads",4,"name")="cache_que_heads.cacheq_wip.latch" + Set gtmtypes("cache_que_heads",4,"off")=8 + Set gtmtypes("cache_que_heads",4,"len")=8 + Set gtmtypes("cache_que_heads",4,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch")=4 + Set gtmtypes("cache_que_heads",5,"name")="cache_que_heads.cacheq_wip.latch.u" + Set gtmtypes("cache_que_heads",5,"off")=8 + Set gtmtypes("cache_que_heads",5,"len")=8 + Set gtmtypes("cache_que_heads",5,"type")="union" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u")=5 + Set gtmtypes("cache_que_heads",6,"name")="cache_que_heads.cacheq_wip.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_heads",6,"off")=8 + Set gtmtypes("cache_que_heads",6,"len")=8 + Set gtmtypes("cache_que_heads",6,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.pid_imgcnt")=6 + Set gtmtypes("cache_que_heads",7,"name")="cache_que_heads.cacheq_wip.latch.u.parts" + Set gtmtypes("cache_que_heads",7,"off")=8 + Set gtmtypes("cache_que_heads",7,"len")=8 + Set gtmtypes("cache_que_heads",7,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts")=7 + Set gtmtypes("cache_que_heads",8,"name")="cache_que_heads.cacheq_wip.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_heads",8,"off")=8 + Set gtmtypes("cache_que_heads",8,"len")=4 + Set gtmtypes("cache_que_heads",8,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts.latch_pid")=8 + Set gtmtypes("cache_que_heads",9,"name")="cache_que_heads.cacheq_wip.latch.u.parts.latch_word" + Set gtmtypes("cache_que_heads",9,"off")=12 + Set gtmtypes("cache_que_heads",9,"len")=4 + Set gtmtypes("cache_que_heads",9,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_wip.latch.u.parts.latch_word")=9 + Set gtmtypes("cache_que_heads",10,"name")="cache_que_heads.cacheq_active" + Set gtmtypes("cache_que_heads",10,"off")=16 + Set gtmtypes("cache_que_heads",10,"len")=16 + Set gtmtypes("cache_que_heads",10,"type")="cache_que_head" + Set gtmtypfldindx("cache_que_heads","cacheq_active")=10 + Set gtmtypes("cache_que_heads",11,"name")="cache_que_heads.cacheq_active.fl" + Set gtmtypes("cache_que_heads",11,"off")=16 + Set gtmtypes("cache_que_heads",11,"len")=4 + Set gtmtypes("cache_que_heads",11,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.fl")=11 + Set gtmtypes("cache_que_heads",12,"name")="cache_que_heads.cacheq_active.bl" + Set gtmtypes("cache_que_heads",12,"off")=20 + Set gtmtypes("cache_que_heads",12,"len")=4 + Set gtmtypes("cache_que_heads",12,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.bl")=12 + Set gtmtypes("cache_que_heads",13,"name")="cache_que_heads.cacheq_active.latch" + Set gtmtypes("cache_que_heads",13,"off")=24 + Set gtmtypes("cache_que_heads",13,"len")=8 + Set gtmtypes("cache_que_heads",13,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch")=13 + Set gtmtypes("cache_que_heads",14,"name")="cache_que_heads.cacheq_active.latch.u" + Set gtmtypes("cache_que_heads",14,"off")=24 + Set gtmtypes("cache_que_heads",14,"len")=8 + Set gtmtypes("cache_que_heads",14,"type")="union" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u")=14 + Set gtmtypes("cache_que_heads",15,"name")="cache_que_heads.cacheq_active.latch.u.pid_imgcnt" + Set gtmtypes("cache_que_heads",15,"off")=24 + Set gtmtypes("cache_que_heads",15,"len")=8 + Set gtmtypes("cache_que_heads",15,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.pid_imgcnt")=15 + Set gtmtypes("cache_que_heads",16,"name")="cache_que_heads.cacheq_active.latch.u.parts" + Set gtmtypes("cache_que_heads",16,"off")=24 + Set gtmtypes("cache_que_heads",16,"len")=8 + Set gtmtypes("cache_que_heads",16,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts")=16 + Set gtmtypes("cache_que_heads",17,"name")="cache_que_heads.cacheq_active.latch.u.parts.latch_pid" + Set gtmtypes("cache_que_heads",17,"off")=24 + Set gtmtypes("cache_que_heads",17,"len")=4 + Set gtmtypes("cache_que_heads",17,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts.latch_pid")=17 + Set gtmtypes("cache_que_heads",18,"name")="cache_que_heads.cacheq_active.latch.u.parts.latch_word" + Set gtmtypes("cache_que_heads",18,"off")=28 + Set gtmtypes("cache_que_heads",18,"len")=4 + Set gtmtypes("cache_que_heads",18,"type")="int" + Set gtmtypfldindx("cache_que_heads","cacheq_active.latch.u.parts.latch_word")=18 + Set gtmtypes("cache_que_heads",19,"name")="cache_que_heads.cache_array" + Set gtmtypes("cache_que_heads",19,"off")=32 + Set gtmtypes("cache_que_heads",19,"len")=120 + Set gtmtypes("cache_que_heads",19,"type")="cache_rec" + Set gtmtypfldindx("cache_que_heads","cache_array")=19 + Set gtmtypes("cache_que_heads",20,"name")="cache_que_heads.cache_array[0].blkque" + Set gtmtypes("cache_que_heads",20,"off")=32 + Set gtmtypes("cache_que_heads",20,"len")=8 + Set gtmtypes("cache_que_heads",20,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque")=20 + Set gtmtypes("cache_que_heads",21,"name")="cache_que_heads.cache_array[0].blkque.fl" + Set gtmtypes("cache_que_heads",21,"off")=32 + Set gtmtypes("cache_que_heads",21,"len")=4 + Set gtmtypes("cache_que_heads",21,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque.fl")=21 + Set gtmtypes("cache_que_heads",22,"name")="cache_que_heads.cache_array[0].blkque.bl" + Set gtmtypes("cache_que_heads",22,"off")=36 + Set gtmtypes("cache_que_heads",22,"len")=4 + Set gtmtypes("cache_que_heads",22,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blkque.bl")=22 + Set gtmtypes("cache_que_heads",23,"name")="cache_que_heads.cache_array[0].state_que" + Set gtmtypes("cache_que_heads",23,"off")=40 + Set gtmtypes("cache_que_heads",23,"len")=8 + Set gtmtypes("cache_que_heads",23,"type")="struct" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que")=23 + Set gtmtypes("cache_que_heads",24,"name")="cache_que_heads.cache_array[0].state_que.fl" + Set gtmtypes("cache_que_heads",24,"off")=40 + Set gtmtypes("cache_que_heads",24,"len")=4 + Set gtmtypes("cache_que_heads",24,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que.fl")=24 + Set gtmtypes("cache_que_heads",25,"name")="cache_que_heads.cache_array[0].state_que.bl" + Set gtmtypes("cache_que_heads",25,"off")=44 + Set gtmtypes("cache_que_heads",25,"len")=4 + Set gtmtypes("cache_que_heads",25,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].state_que.bl")=25 + Set gtmtypes("cache_que_heads",26,"name")="cache_que_heads.cache_array[0].interlock" + Set gtmtypes("cache_que_heads",26,"off")=48 + Set gtmtypes("cache_que_heads",26,"len")=4 + Set gtmtypes("cache_que_heads",26,"type")="union" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock")=26 + Set gtmtypes("cache_que_heads",27,"name")="cache_que_heads.cache_array[0].interlock.semaphore" + Set gtmtypes("cache_que_heads",27,"off")=48 + Set gtmtypes("cache_que_heads",27,"len")=2 + Set gtmtypes("cache_que_heads",27,"type")="short" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock.semaphore")=27 + Set gtmtypes("cache_que_heads",28,"name")="cache_que_heads.cache_array[0].interlock.latch" + Set gtmtypes("cache_que_heads",28,"off")=48 + Set gtmtypes("cache_que_heads",28,"len")=4 + Set gtmtypes("cache_que_heads",28,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].interlock.latch")=28 + Set gtmtypes("cache_que_heads",29,"name")="cache_que_heads.cache_array[0].blk" + Set gtmtypes("cache_que_heads",29,"off")=52 + Set gtmtypes("cache_que_heads",29,"len")=4 + Set gtmtypes("cache_que_heads",29,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].blk")=29 + Set gtmtypes("cache_que_heads",30,"name")="cache_que_heads.cache_array[0].refer" + Set gtmtypes("cache_que_heads",30,"off")=56 + Set gtmtypes("cache_que_heads",30,"len")=4 + Set gtmtypes("cache_que_heads",30,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].refer")=30 + Set gtmtypes("cache_que_heads",31,"name")="cache_que_heads.cache_array[0].ondsk_blkver" + Set gtmtypes("cache_que_heads",31,"off")=60 + Set gtmtypes("cache_que_heads",31,"len")=4 + Set gtmtypes("cache_que_heads",31,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].ondsk_blkver")=31 + Set gtmtypes("cache_que_heads",32,"name")="cache_que_heads.cache_array[0].dirty" + Set gtmtypes("cache_que_heads",32,"off")=64 + Set gtmtypes("cache_que_heads",32,"len")=8 + Set gtmtypes("cache_que_heads",32,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].dirty")=32 + Set gtmtypes("cache_que_heads",33,"name")="cache_que_heads.cache_array[0].flushed_dirty_tn" + Set gtmtypes("cache_que_heads",33,"off")=72 + Set gtmtypes("cache_que_heads",33,"len")=8 + Set gtmtypes("cache_que_heads",33,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].flushed_dirty_tn")=33 + Set gtmtypes("cache_que_heads",34,"name")="cache_que_heads.cache_array[0].tn" + Set gtmtypes("cache_que_heads",34,"off")=80 + Set gtmtypes("cache_que_heads",34,"len")=8 + Set gtmtypes("cache_que_heads",34,"type")="uint64_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].tn")=34 + Set gtmtypes("cache_que_heads",35,"name")="cache_que_heads.cache_array[0].bt_index" + Set gtmtypes("cache_que_heads",35,"off")=88 + Set gtmtypes("cache_que_heads",35,"len")=4 + Set gtmtypes("cache_que_heads",35,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].bt_index")=35 + Set gtmtypes("cache_que_heads",36,"name")="cache_que_heads.cache_array[0].buffaddr" + Set gtmtypes("cache_que_heads",36,"off")=92 + Set gtmtypes("cache_que_heads",36,"len")=4 + Set gtmtypes("cache_que_heads",36,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].buffaddr")=36 + Set gtmtypes("cache_que_heads",37,"name")="cache_que_heads.cache_array[0].twin" + Set gtmtypes("cache_que_heads",37,"off")=96 + Set gtmtypes("cache_que_heads",37,"len")=4 + Set gtmtypes("cache_que_heads",37,"type")="intptr_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].twin")=37 + Set gtmtypes("cache_que_heads",38,"name")="cache_que_heads.cache_array[0].jnl_addr" + Set gtmtypes("cache_que_heads",38,"off")=100 + Set gtmtypes("cache_que_heads",38,"len")=4 + Set gtmtypes("cache_que_heads",38,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].jnl_addr")=38 + Set gtmtypes("cache_que_heads",39,"name")="cache_que_heads.cache_array[0].rip_latch" + Set gtmtypes("cache_que_heads",39,"off")=104 + Set gtmtypes("cache_que_heads",39,"len")=8 + Set gtmtypes("cache_que_heads",39,"type")="global_latch_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].rip_latch")=39 + Set gtmtypes("cache_que_heads",40,"name")="cache_que_heads.cache_array[0].image_count" + Set gtmtypes("cache_que_heads",40,"off")=112 + Set gtmtypes("cache_que_heads",40,"len")=4 + Set gtmtypes("cache_que_heads",40,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].image_count")=40 + Set gtmtypes("cache_que_heads",41,"name")="cache_que_heads.cache_array[0].epid" + Set gtmtypes("cache_que_heads",41,"off")=116 + Set gtmtypes("cache_que_heads",41,"len")=4 + Set gtmtypes("cache_que_heads",41,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].epid")=41 + Set gtmtypes("cache_que_heads",42,"name")="cache_que_heads.cache_array[0].cycle" + Set gtmtypes("cache_que_heads",42,"off")=120 + Set gtmtypes("cache_que_heads",42,"len")=4 + Set gtmtypes("cache_que_heads",42,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].cycle")=42 + Set gtmtypes("cache_que_heads",43,"name")="cache_que_heads.cache_array[0].r_epid" + Set gtmtypes("cache_que_heads",43,"off")=124 + Set gtmtypes("cache_que_heads",43,"len")=4 + Set gtmtypes("cache_que_heads",43,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].r_epid")=43 + Set gtmtypes("cache_que_heads",44,"name")="cache_que_heads.cache_array[0].read_in_progress" + Set gtmtypes("cache_que_heads",44,"off")=128 + Set gtmtypes("cache_que_heads",44,"len")=4 + Set gtmtypes("cache_que_heads",44,"type")="int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].read_in_progress")=44 + Set gtmtypes("cache_que_heads",45,"name")="cache_que_heads.cache_array[0].in_tend" + Set gtmtypes("cache_que_heads",45,"off")=132 + Set gtmtypes("cache_que_heads",45,"len")=4 + Set gtmtypes("cache_que_heads",45,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].in_tend")=45 + Set gtmtypes("cache_que_heads",46,"name")="cache_que_heads.cache_array[0].in_cw_set" + Set gtmtypes("cache_que_heads",46,"off")=136 + Set gtmtypes("cache_que_heads",46,"len")=4 + Set gtmtypes("cache_que_heads",46,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].in_cw_set")=46 + Set gtmtypes("cache_que_heads",47,"name")="cache_que_heads.cache_array[0].data_invalid" + Set gtmtypes("cache_que_heads",47,"off")=140 + Set gtmtypes("cache_que_heads",47,"len")=4 + Set gtmtypes("cache_que_heads",47,"type")="unsigned-int" + Set gtmtypfldindx("cache_que_heads","cache_array[0].data_invalid")=47 + Set gtmtypes("cache_que_heads",48,"name")="cache_que_heads.cache_array[0].stopped" + Set gtmtypes("cache_que_heads",48,"off")=144 + Set gtmtypes("cache_que_heads",48,"len")=4 + Set gtmtypes("cache_que_heads",48,"type")="boolean_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].stopped")=48 + Set gtmtypes("cache_que_heads",49,"name")="cache_que_heads.cache_array[0].wip_stopped" + Set gtmtypes("cache_que_heads",49,"off")=148 + Set gtmtypes("cache_que_heads",49,"len")=4 + Set gtmtypes("cache_que_heads",49,"type")="boolean_t" + Set gtmtypfldindx("cache_que_heads","cache_array[0].wip_stopped")=49 + ; + Set gtmtypes("cache_rec")="struct" + Set gtmtypes("cache_rec",0)=35 + Set gtmtypes("cache_rec","len")=120 + Set gtmtypes("cache_rec",1,"name")="cache_rec.blkque" + Set gtmtypes("cache_rec",1,"off")=0 + Set gtmtypes("cache_rec",1,"len")=8 + Set gtmtypes("cache_rec",1,"type")="struct" + Set gtmtypfldindx("cache_rec","blkque")=1 + Set gtmtypes("cache_rec",2,"name")="cache_rec.blkque.fl" + Set gtmtypes("cache_rec",2,"off")=0 + Set gtmtypes("cache_rec",2,"len")=4 + Set gtmtypes("cache_rec",2,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","blkque.fl")=2 + Set gtmtypes("cache_rec",3,"name")="cache_rec.blkque.bl" + Set gtmtypes("cache_rec",3,"off")=4 + Set gtmtypes("cache_rec",3,"len")=4 + Set gtmtypes("cache_rec",3,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","blkque.bl")=3 + Set gtmtypes("cache_rec",4,"name")="cache_rec.state_que" + Set gtmtypes("cache_rec",4,"off")=8 + Set gtmtypes("cache_rec",4,"len")=8 + Set gtmtypes("cache_rec",4,"type")="struct" + Set gtmtypfldindx("cache_rec","state_que")=4 + Set gtmtypes("cache_rec",5,"name")="cache_rec.state_que.fl" + Set gtmtypes("cache_rec",5,"off")=8 + Set gtmtypes("cache_rec",5,"len")=4 + Set gtmtypes("cache_rec",5,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","state_que.fl")=5 + Set gtmtypes("cache_rec",6,"name")="cache_rec.state_que.bl" + Set gtmtypes("cache_rec",6,"off")=12 + Set gtmtypes("cache_rec",6,"len")=4 + Set gtmtypes("cache_rec",6,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","state_que.bl")=6 + Set gtmtypes("cache_rec",7,"name")="cache_rec.interlock" + Set gtmtypes("cache_rec",7,"off")=16 + Set gtmtypes("cache_rec",7,"len")=4 + Set gtmtypes("cache_rec",7,"type")="union" + Set gtmtypfldindx("cache_rec","interlock")=7 + Set gtmtypes("cache_rec",8,"name")="cache_rec.interlock.semaphore" + Set gtmtypes("cache_rec",8,"off")=16 + Set gtmtypes("cache_rec",8,"len")=2 + Set gtmtypes("cache_rec",8,"type")="short" + Set gtmtypfldindx("cache_rec","interlock.semaphore")=8 + Set gtmtypes("cache_rec",9,"name")="cache_rec.interlock.latch" + Set gtmtypes("cache_rec",9,"off")=16 + Set gtmtypes("cache_rec",9,"len")=4 + Set gtmtypes("cache_rec",9,"type")="int" + Set gtmtypfldindx("cache_rec","interlock.latch")=9 + Set gtmtypes("cache_rec",10,"name")="cache_rec.blk" + Set gtmtypes("cache_rec",10,"off")=20 + Set gtmtypes("cache_rec",10,"len")=4 + Set gtmtypes("cache_rec",10,"type")="int" + Set gtmtypfldindx("cache_rec","blk")=10 + Set gtmtypes("cache_rec",11,"name")="cache_rec.refer" + Set gtmtypes("cache_rec",11,"off")=24 + Set gtmtypes("cache_rec",11,"len")=4 + Set gtmtypes("cache_rec",11,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","refer")=11 + Set gtmtypes("cache_rec",12,"name")="cache_rec.ondsk_blkver" + Set gtmtypes("cache_rec",12,"off")=28 + Set gtmtypes("cache_rec",12,"len")=4 + Set gtmtypes("cache_rec",12,"type")="int" + Set gtmtypfldindx("cache_rec","ondsk_blkver")=12 + Set gtmtypes("cache_rec",13,"name")="cache_rec.dirty" + Set gtmtypes("cache_rec",13,"off")=32 + Set gtmtypes("cache_rec",13,"len")=8 + Set gtmtypes("cache_rec",13,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","dirty")=13 + Set gtmtypes("cache_rec",14,"name")="cache_rec.flushed_dirty_tn" + Set gtmtypes("cache_rec",14,"off")=40 + Set gtmtypes("cache_rec",14,"len")=8 + Set gtmtypes("cache_rec",14,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","flushed_dirty_tn")=14 + Set gtmtypes("cache_rec",15,"name")="cache_rec.tn" + Set gtmtypes("cache_rec",15,"off")=48 + Set gtmtypes("cache_rec",15,"len")=8 + Set gtmtypes("cache_rec",15,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","tn")=15 + Set gtmtypes("cache_rec",16,"name")="cache_rec.bt_index" + Set gtmtypes("cache_rec",16,"off")=56 + Set gtmtypes("cache_rec",16,"len")=4 + Set gtmtypes("cache_rec",16,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","bt_index")=16 + Set gtmtypes("cache_rec",17,"name")="cache_rec.buffaddr" + Set gtmtypes("cache_rec",17,"off")=60 + Set gtmtypes("cache_rec",17,"len")=4 + Set gtmtypes("cache_rec",17,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","buffaddr")=17 + Set gtmtypes("cache_rec",18,"name")="cache_rec.twin" + Set gtmtypes("cache_rec",18,"off")=64 + Set gtmtypes("cache_rec",18,"len")=4 + Set gtmtypes("cache_rec",18,"type")="intptr_t" + Set gtmtypfldindx("cache_rec","twin")=18 + Set gtmtypes("cache_rec",19,"name")="cache_rec.jnl_addr" + Set gtmtypes("cache_rec",19,"off")=68 + Set gtmtypes("cache_rec",19,"len")=4 + Set gtmtypes("cache_rec",19,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","jnl_addr")=19 + Set gtmtypes("cache_rec",20,"name")="cache_rec.rip_latch" + Set gtmtypes("cache_rec",20,"off")=72 + Set gtmtypes("cache_rec",20,"len")=8 + Set gtmtypes("cache_rec",20,"type")="global_latch_t" + Set gtmtypfldindx("cache_rec","rip_latch")=20 + Set gtmtypes("cache_rec",21,"name")="cache_rec.rip_latch.u" + Set gtmtypes("cache_rec",21,"off")=72 + Set gtmtypes("cache_rec",21,"len")=8 + Set gtmtypes("cache_rec",21,"type")="union" + Set gtmtypfldindx("cache_rec","rip_latch.u")=21 + Set gtmtypes("cache_rec",22,"name")="cache_rec.rip_latch.u.pid_imgcnt" + Set gtmtypes("cache_rec",22,"off")=72 + Set gtmtypes("cache_rec",22,"len")=8 + Set gtmtypes("cache_rec",22,"type")="uint64_t" + Set gtmtypfldindx("cache_rec","rip_latch.u.pid_imgcnt")=22 + Set gtmtypes("cache_rec",23,"name")="cache_rec.rip_latch.u.parts" + Set gtmtypes("cache_rec",23,"off")=72 + Set gtmtypes("cache_rec",23,"len")=8 + Set gtmtypes("cache_rec",23,"type")="struct" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts")=23 + Set gtmtypes("cache_rec",24,"name")="cache_rec.rip_latch.u.parts.latch_pid" + Set gtmtypes("cache_rec",24,"off")=72 + Set gtmtypes("cache_rec",24,"len")=4 + Set gtmtypes("cache_rec",24,"type")="int" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts.latch_pid")=24 + Set gtmtypes("cache_rec",25,"name")="cache_rec.rip_latch.u.parts.latch_word" + Set gtmtypes("cache_rec",25,"off")=76 + Set gtmtypes("cache_rec",25,"len")=4 + Set gtmtypes("cache_rec",25,"type")="int" + Set gtmtypfldindx("cache_rec","rip_latch.u.parts.latch_word")=25 + Set gtmtypes("cache_rec",26,"name")="cache_rec.image_count" + Set gtmtypes("cache_rec",26,"off")=80 + Set gtmtypes("cache_rec",26,"len")=4 + Set gtmtypes("cache_rec",26,"type")="int" + Set gtmtypfldindx("cache_rec","image_count")=26 + Set gtmtypes("cache_rec",27,"name")="cache_rec.epid" + Set gtmtypes("cache_rec",27,"off")=84 + Set gtmtypes("cache_rec",27,"len")=4 + Set gtmtypes("cache_rec",27,"type")="int" + Set gtmtypfldindx("cache_rec","epid")=27 + Set gtmtypes("cache_rec",28,"name")="cache_rec.cycle" + Set gtmtypes("cache_rec",28,"off")=88 + Set gtmtypes("cache_rec",28,"len")=4 + Set gtmtypes("cache_rec",28,"type")="int" + Set gtmtypfldindx("cache_rec","cycle")=28 + Set gtmtypes("cache_rec",29,"name")="cache_rec.r_epid" + Set gtmtypes("cache_rec",29,"off")=92 + Set gtmtypes("cache_rec",29,"len")=4 + Set gtmtypes("cache_rec",29,"type")="int" + Set gtmtypfldindx("cache_rec","r_epid")=29 + Set gtmtypes("cache_rec",30,"name")="cache_rec.read_in_progress" + Set gtmtypes("cache_rec",30,"off")=96 + Set gtmtypes("cache_rec",30,"len")=4 + Set gtmtypes("cache_rec",30,"type")="int" + Set gtmtypfldindx("cache_rec","read_in_progress")=30 + Set gtmtypes("cache_rec",31,"name")="cache_rec.in_tend" + Set gtmtypes("cache_rec",31,"off")=100 + Set gtmtypes("cache_rec",31,"len")=4 + Set gtmtypes("cache_rec",31,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","in_tend")=31 + Set gtmtypes("cache_rec",32,"name")="cache_rec.in_cw_set" + Set gtmtypes("cache_rec",32,"off")=104 + Set gtmtypes("cache_rec",32,"len")=4 + Set gtmtypes("cache_rec",32,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","in_cw_set")=32 + Set gtmtypes("cache_rec",33,"name")="cache_rec.data_invalid" + Set gtmtypes("cache_rec",33,"off")=108 + Set gtmtypes("cache_rec",33,"len")=4 + Set gtmtypes("cache_rec",33,"type")="unsigned-int" + Set gtmtypfldindx("cache_rec","data_invalid")=33 + Set gtmtypes("cache_rec",34,"name")="cache_rec.stopped" + Set gtmtypes("cache_rec",34,"off")=112 + Set gtmtypes("cache_rec",34,"len")=4 + Set gtmtypes("cache_rec",34,"type")="boolean_t" + Set gtmtypfldindx("cache_rec","stopped")=34 + Set gtmtypes("cache_rec",35,"name")="cache_rec.wip_stopped" + Set gtmtypes("cache_rec",35,"off")=116 + Set gtmtypes("cache_rec",35,"len")=4 + Set gtmtypes("cache_rec",35,"type")="boolean_t" + Set gtmtypfldindx("cache_rec","wip_stopped")=35 + ; + Set gtmtypes("cache_state_rec")="struct" + Set gtmtypes("cache_state_rec",0)=32 + Set gtmtypes("cache_state_rec","len")=112 + Set gtmtypes("cache_state_rec",1,"name")="cache_state_rec.state_que" + Set gtmtypes("cache_state_rec",1,"off")=0 + Set gtmtypes("cache_state_rec",1,"len")=8 + Set gtmtypes("cache_state_rec",1,"type")="struct" + Set gtmtypfldindx("cache_state_rec","state_que")=1 + Set gtmtypes("cache_state_rec",2,"name")="cache_state_rec.state_que.fl" + Set gtmtypes("cache_state_rec",2,"off")=0 + Set gtmtypes("cache_state_rec",2,"len")=4 + Set gtmtypes("cache_state_rec",2,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","state_que.fl")=2 + Set gtmtypes("cache_state_rec",3,"name")="cache_state_rec.state_que.bl" + Set gtmtypes("cache_state_rec",3,"off")=4 + Set gtmtypes("cache_state_rec",3,"len")=4 + Set gtmtypes("cache_state_rec",3,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","state_que.bl")=3 + Set gtmtypes("cache_state_rec",4,"name")="cache_state_rec.interlock" + Set gtmtypes("cache_state_rec",4,"off")=8 + Set gtmtypes("cache_state_rec",4,"len")=4 + Set gtmtypes("cache_state_rec",4,"type")="union" + Set gtmtypfldindx("cache_state_rec","interlock")=4 + Set gtmtypes("cache_state_rec",5,"name")="cache_state_rec.interlock.semaphore" + Set gtmtypes("cache_state_rec",5,"off")=8 + Set gtmtypes("cache_state_rec",5,"len")=2 + Set gtmtypes("cache_state_rec",5,"type")="short" + Set gtmtypfldindx("cache_state_rec","interlock.semaphore")=5 + Set gtmtypes("cache_state_rec",6,"name")="cache_state_rec.interlock.latch" + Set gtmtypes("cache_state_rec",6,"off")=8 + Set gtmtypes("cache_state_rec",6,"len")=4 + Set gtmtypes("cache_state_rec",6,"type")="int" + Set gtmtypfldindx("cache_state_rec","interlock.latch")=6 + Set gtmtypes("cache_state_rec",7,"name")="cache_state_rec.blk" + Set gtmtypes("cache_state_rec",7,"off")=12 + Set gtmtypes("cache_state_rec",7,"len")=4 + Set gtmtypes("cache_state_rec",7,"type")="int" + Set gtmtypfldindx("cache_state_rec","blk")=7 + Set gtmtypes("cache_state_rec",8,"name")="cache_state_rec.refer" + Set gtmtypes("cache_state_rec",8,"off")=16 + Set gtmtypes("cache_state_rec",8,"len")=4 + Set gtmtypes("cache_state_rec",8,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","refer")=8 + Set gtmtypes("cache_state_rec",9,"name")="cache_state_rec.ondsk_blkver" + Set gtmtypes("cache_state_rec",9,"off")=20 + Set gtmtypes("cache_state_rec",9,"len")=4 + Set gtmtypes("cache_state_rec",9,"type")="int" + Set gtmtypfldindx("cache_state_rec","ondsk_blkver")=9 + Set gtmtypes("cache_state_rec",10,"name")="cache_state_rec.dirty" + Set gtmtypes("cache_state_rec",10,"off")=24 + Set gtmtypes("cache_state_rec",10,"len")=8 + Set gtmtypes("cache_state_rec",10,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","dirty")=10 + Set gtmtypes("cache_state_rec",11,"name")="cache_state_rec.flushed_dirty_tn" + Set gtmtypes("cache_state_rec",11,"off")=32 + Set gtmtypes("cache_state_rec",11,"len")=8 + Set gtmtypes("cache_state_rec",11,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","flushed_dirty_tn")=11 + Set gtmtypes("cache_state_rec",12,"name")="cache_state_rec.tn" + Set gtmtypes("cache_state_rec",12,"off")=40 + Set gtmtypes("cache_state_rec",12,"len")=8 + Set gtmtypes("cache_state_rec",12,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","tn")=12 + Set gtmtypes("cache_state_rec",13,"name")="cache_state_rec.bt_index" + Set gtmtypes("cache_state_rec",13,"off")=48 + Set gtmtypes("cache_state_rec",13,"len")=4 + Set gtmtypes("cache_state_rec",13,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","bt_index")=13 + Set gtmtypes("cache_state_rec",14,"name")="cache_state_rec.buffaddr" + Set gtmtypes("cache_state_rec",14,"off")=52 + Set gtmtypes("cache_state_rec",14,"len")=4 + Set gtmtypes("cache_state_rec",14,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","buffaddr")=14 + Set gtmtypes("cache_state_rec",15,"name")="cache_state_rec.twin" + Set gtmtypes("cache_state_rec",15,"off")=56 + Set gtmtypes("cache_state_rec",15,"len")=4 + Set gtmtypes("cache_state_rec",15,"type")="intptr_t" + Set gtmtypfldindx("cache_state_rec","twin")=15 + Set gtmtypes("cache_state_rec",16,"name")="cache_state_rec.jnl_addr" + Set gtmtypes("cache_state_rec",16,"off")=60 + Set gtmtypes("cache_state_rec",16,"len")=4 + Set gtmtypes("cache_state_rec",16,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","jnl_addr")=16 + Set gtmtypes("cache_state_rec",17,"name")="cache_state_rec.rip_latch" + Set gtmtypes("cache_state_rec",17,"off")=64 + Set gtmtypes("cache_state_rec",17,"len")=8 + Set gtmtypes("cache_state_rec",17,"type")="global_latch_t" + Set gtmtypfldindx("cache_state_rec","rip_latch")=17 + Set gtmtypes("cache_state_rec",18,"name")="cache_state_rec.rip_latch.u" + Set gtmtypes("cache_state_rec",18,"off")=64 + Set gtmtypes("cache_state_rec",18,"len")=8 + Set gtmtypes("cache_state_rec",18,"type")="union" + Set gtmtypfldindx("cache_state_rec","rip_latch.u")=18 + Set gtmtypes("cache_state_rec",19,"name")="cache_state_rec.rip_latch.u.pid_imgcnt" + Set gtmtypes("cache_state_rec",19,"off")=64 + Set gtmtypes("cache_state_rec",19,"len")=8 + Set gtmtypes("cache_state_rec",19,"type")="uint64_t" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.pid_imgcnt")=19 + Set gtmtypes("cache_state_rec",20,"name")="cache_state_rec.rip_latch.u.parts" + Set gtmtypes("cache_state_rec",20,"off")=64 + Set gtmtypes("cache_state_rec",20,"len")=8 + Set gtmtypes("cache_state_rec",20,"type")="struct" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts")=20 + Set gtmtypes("cache_state_rec",21,"name")="cache_state_rec.rip_latch.u.parts.latch_pid" + Set gtmtypes("cache_state_rec",21,"off")=64 + Set gtmtypes("cache_state_rec",21,"len")=4 + Set gtmtypes("cache_state_rec",21,"type")="int" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts.latch_pid")=21 + Set gtmtypes("cache_state_rec",22,"name")="cache_state_rec.rip_latch.u.parts.latch_word" + Set gtmtypes("cache_state_rec",22,"off")=68 + Set gtmtypes("cache_state_rec",22,"len")=4 + Set gtmtypes("cache_state_rec",22,"type")="int" + Set gtmtypfldindx("cache_state_rec","rip_latch.u.parts.latch_word")=22 + Set gtmtypes("cache_state_rec",23,"name")="cache_state_rec.image_count" + Set gtmtypes("cache_state_rec",23,"off")=72 + Set gtmtypes("cache_state_rec",23,"len")=4 + Set gtmtypes("cache_state_rec",23,"type")="int" + Set gtmtypfldindx("cache_state_rec","image_count")=23 + Set gtmtypes("cache_state_rec",24,"name")="cache_state_rec.epid" + Set gtmtypes("cache_state_rec",24,"off")=76 + Set gtmtypes("cache_state_rec",24,"len")=4 + Set gtmtypes("cache_state_rec",24,"type")="int" + Set gtmtypfldindx("cache_state_rec","epid")=24 + Set gtmtypes("cache_state_rec",25,"name")="cache_state_rec.cycle" + Set gtmtypes("cache_state_rec",25,"off")=80 + Set gtmtypes("cache_state_rec",25,"len")=4 + Set gtmtypes("cache_state_rec",25,"type")="int" + Set gtmtypfldindx("cache_state_rec","cycle")=25 + Set gtmtypes("cache_state_rec",26,"name")="cache_state_rec.r_epid" + Set gtmtypes("cache_state_rec",26,"off")=84 + Set gtmtypes("cache_state_rec",26,"len")=4 + Set gtmtypes("cache_state_rec",26,"type")="int" + Set gtmtypfldindx("cache_state_rec","r_epid")=26 + Set gtmtypes("cache_state_rec",27,"name")="cache_state_rec.read_in_progress" + Set gtmtypes("cache_state_rec",27,"off")=88 + Set gtmtypes("cache_state_rec",27,"len")=4 + Set gtmtypes("cache_state_rec",27,"type")="int" + Set gtmtypfldindx("cache_state_rec","read_in_progress")=27 + Set gtmtypes("cache_state_rec",28,"name")="cache_state_rec.in_tend" + Set gtmtypes("cache_state_rec",28,"off")=92 + Set gtmtypes("cache_state_rec",28,"len")=4 + Set gtmtypes("cache_state_rec",28,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","in_tend")=28 + Set gtmtypes("cache_state_rec",29,"name")="cache_state_rec.in_cw_set" + Set gtmtypes("cache_state_rec",29,"off")=96 + Set gtmtypes("cache_state_rec",29,"len")=4 + Set gtmtypes("cache_state_rec",29,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","in_cw_set")=29 + Set gtmtypes("cache_state_rec",30,"name")="cache_state_rec.data_invalid" + Set gtmtypes("cache_state_rec",30,"off")=100 + Set gtmtypes("cache_state_rec",30,"len")=4 + Set gtmtypes("cache_state_rec",30,"type")="unsigned-int" + Set gtmtypfldindx("cache_state_rec","data_invalid")=30 + Set gtmtypes("cache_state_rec",31,"name")="cache_state_rec.stopped" + Set gtmtypes("cache_state_rec",31,"off")=104 + Set gtmtypes("cache_state_rec",31,"len")=4 + Set gtmtypes("cache_state_rec",31,"type")="boolean_t" + Set gtmtypfldindx("cache_state_rec","stopped")=31 + Set gtmtypes("cache_state_rec",32,"name")="cache_state_rec.wip_stopped" + Set gtmtypes("cache_state_rec",32,"off")=108 + Set gtmtypes("cache_state_rec",32,"len")=4 + Set gtmtypes("cache_state_rec",32,"type")="boolean_t" + Set gtmtypfldindx("cache_state_rec","wip_stopped")=32 + ; + Set gtmtypes("callin_entry_list")="struct" + Set gtmtypes("callin_entry_list",0)=14 + Set gtmtypes("callin_entry_list","len")=48 + Set gtmtypes("callin_entry_list",1,"name")="callin_entry_list.label_ref" + Set gtmtypes("callin_entry_list",1,"off")=0 + Set gtmtypes("callin_entry_list",1,"len")=12 + Set gtmtypes("callin_entry_list",1,"type")="mstr" + Set gtmtypfldindx("callin_entry_list","label_ref")=1 + Set gtmtypes("callin_entry_list",2,"name")="callin_entry_list.label_ref.char_len" + Set gtmtypes("callin_entry_list",2,"off")=0 + Set gtmtypes("callin_entry_list",2,"len")=4 + Set gtmtypes("callin_entry_list",2,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","label_ref.char_len")=2 + Set gtmtypes("callin_entry_list",3,"name")="callin_entry_list.label_ref.len" + Set gtmtypes("callin_entry_list",3,"off")=4 + Set gtmtypes("callin_entry_list",3,"len")=4 + Set gtmtypes("callin_entry_list",3,"type")="int" + Set gtmtypfldindx("callin_entry_list","label_ref.len")=3 + Set gtmtypes("callin_entry_list",4,"name")="callin_entry_list.label_ref.addr" + Set gtmtypes("callin_entry_list",4,"off")=8 + Set gtmtypes("callin_entry_list",4,"len")=4 + Set gtmtypes("callin_entry_list",4,"type")="addr" + Set gtmtypfldindx("callin_entry_list","label_ref.addr")=4 + Set gtmtypes("callin_entry_list",5,"name")="callin_entry_list.call_name" + Set gtmtypes("callin_entry_list",5,"off")=12 + Set gtmtypes("callin_entry_list",5,"len")=12 + Set gtmtypes("callin_entry_list",5,"type")="mstr" + Set gtmtypfldindx("callin_entry_list","call_name")=5 + Set gtmtypes("callin_entry_list",6,"name")="callin_entry_list.call_name.char_len" + Set gtmtypes("callin_entry_list",6,"off")=12 + Set gtmtypes("callin_entry_list",6,"len")=4 + Set gtmtypes("callin_entry_list",6,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","call_name.char_len")=6 + Set gtmtypes("callin_entry_list",7,"name")="callin_entry_list.call_name.len" + Set gtmtypes("callin_entry_list",7,"off")=16 + Set gtmtypes("callin_entry_list",7,"len")=4 + Set gtmtypes("callin_entry_list",7,"type")="int" + Set gtmtypfldindx("callin_entry_list","call_name.len")=7 + Set gtmtypes("callin_entry_list",8,"name")="callin_entry_list.call_name.addr" + Set gtmtypes("callin_entry_list",8,"off")=20 + Set gtmtypes("callin_entry_list",8,"len")=4 + Set gtmtypes("callin_entry_list",8,"type")="addr" + Set gtmtypfldindx("callin_entry_list","call_name.addr")=8 + Set gtmtypes("callin_entry_list",9,"name")="callin_entry_list.input_mask" + Set gtmtypes("callin_entry_list",9,"off")=24 + Set gtmtypes("callin_entry_list",9,"len")=4 + Set gtmtypes("callin_entry_list",9,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","input_mask")=9 + Set gtmtypes("callin_entry_list",10,"name")="callin_entry_list.output_mask" + Set gtmtypes("callin_entry_list",10,"off")=28 + Set gtmtypes("callin_entry_list",10,"len")=4 + Set gtmtypes("callin_entry_list",10,"type")="unsigned-int" + Set gtmtypfldindx("callin_entry_list","output_mask")=10 + Set gtmtypes("callin_entry_list",11,"name")="callin_entry_list.argcnt" + Set gtmtypes("callin_entry_list",11,"off")=32 + Set gtmtypes("callin_entry_list",11,"len")=2 + Set gtmtypes("callin_entry_list",11,"type")="unsigned-short" + Set gtmtypfldindx("callin_entry_list","argcnt")=11 + Set gtmtypes("callin_entry_list",12,"name")="callin_entry_list.return_type" + Set gtmtypes("callin_entry_list",12,"off")=36 + Set gtmtypes("callin_entry_list",12,"len")=4 + Set gtmtypes("callin_entry_list",12,"type")="int" + Set gtmtypfldindx("callin_entry_list","return_type")=12 + Set gtmtypes("callin_entry_list",13,"name")="callin_entry_list.parms" + Set gtmtypes("callin_entry_list",13,"off")=40 + Set gtmtypes("callin_entry_list",13,"len")=4 + Set gtmtypes("callin_entry_list",13,"type")="addr" + Set gtmtypfldindx("callin_entry_list","parms")=13 + Set gtmtypes("callin_entry_list",14,"name")="callin_entry_list.next_entry" + Set gtmtypes("callin_entry_list",14,"off")=44 + Set gtmtypes("callin_entry_list",14,"len")=4 + Set gtmtypes("callin_entry_list",14,"type")="addr" + Set gtmtypfldindx("callin_entry_list","next_entry")=14 + ; + Set gtmtypes("casemap_t")="struct" + Set gtmtypes("casemap_t",0)=3 + Set gtmtypes("casemap_t","len")=12 + Set gtmtypes("casemap_t",1,"name")="casemap_t.code" + Set gtmtypes("casemap_t",1,"off")=0 + Set gtmtypes("casemap_t",1,"len")=4 + Set gtmtypes("casemap_t",1,"type")="addr" + Set gtmtypfldindx("casemap_t","code")=1 + Set gtmtypes("casemap_t",2,"name")="casemap_t.m" + Set gtmtypes("casemap_t",2,"off")=4 + Set gtmtypes("casemap_t",2,"len")=4 + Set gtmtypes("casemap_t",2,"type")="void" + Set gtmtypfldindx("casemap_t","m")=2 + Set gtmtypes("casemap_t",3,"name")="casemap_t.u" + Set gtmtypes("casemap_t",3,"off")=8 + Set gtmtypes("casemap_t",3,"len")=4 + Set gtmtypes("casemap_t",3,"type")="int32_t" + Set gtmtypfldindx("casemap_t","u")=3 + ; + Set gtmtypes("ci_name_descriptor")="struct" + Set gtmtypes("ci_name_descriptor",0)=2 + Set gtmtypes("ci_name_descriptor","len")=12 + Set gtmtypes("ci_name_descriptor",1,"name")="ci_name_descriptor.rtn_name" + Set gtmtypes("ci_name_descriptor",1,"off")=0 + Set gtmtypes("ci_name_descriptor",1,"len")=8 + Set gtmtypes("ci_name_descriptor",1,"type")="gtm_string_t" + Set gtmtypfldindx("ci_name_descriptor","rtn_name")=1 + Set gtmtypes("ci_name_descriptor",2,"name")="ci_name_descriptor.handle" + Set gtmtypes("ci_name_descriptor",2,"off")=8 + Set gtmtypes("ci_name_descriptor",2,"len")=4 + Set gtmtypes("ci_name_descriptor",2,"type")="addr" + Set gtmtypfldindx("ci_name_descriptor","handle")=2 + ; + Set gtmtypes("clb_stat")="struct" + Set gtmtypes("clb_stat",0)=10 + Set gtmtypes("clb_stat","len")=32 + Set gtmtypes("clb_stat",1,"name")="clb_stat.read" + Set gtmtypes("clb_stat",1,"off")=0 + Set gtmtypes("clb_stat",1,"len")=16 + Set gtmtypes("clb_stat",1,"type")="struct" + Set gtmtypfldindx("clb_stat","read")=1 + Set gtmtypes("clb_stat",2,"name")="clb_stat.read.msgs" + Set gtmtypes("clb_stat",2,"off")=0 + Set gtmtypes("clb_stat",2,"len")=4 + Set gtmtypes("clb_stat",2,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.msgs")=2 + Set gtmtypes("clb_stat",3,"name")="clb_stat.read.errors" + Set gtmtypes("clb_stat",3,"off")=4 + Set gtmtypes("clb_stat",3,"len")=4 + Set gtmtypes("clb_stat",3,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.errors")=3 + Set gtmtypes("clb_stat",4,"name")="clb_stat.read.bytes" + Set gtmtypes("clb_stat",4,"off")=8 + Set gtmtypes("clb_stat",4,"len")=4 + Set gtmtypes("clb_stat",4,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.bytes")=4 + Set gtmtypes("clb_stat",5,"name")="clb_stat.read.last_error" + Set gtmtypes("clb_stat",5,"off")=12 + Set gtmtypes("clb_stat",5,"len")=4 + Set gtmtypes("clb_stat",5,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","read.last_error")=5 + Set gtmtypes("clb_stat",6,"name")="clb_stat.write" + Set gtmtypes("clb_stat",6,"off")=16 + Set gtmtypes("clb_stat",6,"len")=16 + Set gtmtypes("clb_stat",6,"type")="struct" + Set gtmtypfldindx("clb_stat","write")=6 + Set gtmtypes("clb_stat",7,"name")="clb_stat.write.msgs" + Set gtmtypes("clb_stat",7,"off")=16 + Set gtmtypes("clb_stat",7,"len")=4 + Set gtmtypes("clb_stat",7,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.msgs")=7 + Set gtmtypes("clb_stat",8,"name")="clb_stat.write.errors" + Set gtmtypes("clb_stat",8,"off")=20 + Set gtmtypes("clb_stat",8,"len")=4 + Set gtmtypes("clb_stat",8,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.errors")=8 + Set gtmtypes("clb_stat",9,"name")="clb_stat.write.bytes" + Set gtmtypes("clb_stat",9,"off")=24 + Set gtmtypes("clb_stat",9,"len")=4 + Set gtmtypes("clb_stat",9,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.bytes")=9 + Set gtmtypes("clb_stat",10,"name")="clb_stat.write.last_error" + Set gtmtypes("clb_stat",10,"off")=28 + Set gtmtypes("clb_stat",10,"len")=4 + Set gtmtypes("clb_stat",10,"type")="unsigned-int" + Set gtmtypfldindx("clb_stat","write.last_error")=10 + ; + Set gtmtypes("clear_confirm")="struct" + Set gtmtypes("clear_confirm",0)=2 + Set gtmtypes("clear_confirm","len")=2 + Set gtmtypes("clear_confirm",1,"name")="clear_confirm.code" + Set gtmtypes("clear_confirm",1,"off")=0 + Set gtmtypes("clear_confirm",1,"len")=1 + Set gtmtypes("clear_confirm",1,"type")="char" + Set gtmtypfldindx("clear_confirm","code")=1 + Set gtmtypes("clear_confirm",2,"name")="clear_confirm.clear" + Set gtmtypes("clear_confirm",2,"off")=1 + Set gtmtypes("clear_confirm",2,"len")=1 + Set gtmtypes("clear_confirm",2,"type")="char" + Set gtmtypfldindx("clear_confirm","clear")=2 + ; + Set gtmtypes("clear_reply")="struct" + Set gtmtypes("clear_reply",0)=5 + Set gtmtypes("clear_reply","len")=268 + Set gtmtypes("clear_reply",1,"name")="clear_reply.code" + Set gtmtypes("clear_reply",1,"off")=0 + Set gtmtypes("clear_reply",1,"len")=1 + Set gtmtypes("clear_reply",1,"type")="char" + Set gtmtypfldindx("clear_reply","code")=1 + Set gtmtypes("clear_reply",2,"name")="clear_reply.filler" + Set gtmtypes("clear_reply",2,"off")=1 + Set gtmtypes("clear_reply",2,"len")=3 + Set gtmtypes("clear_reply",2,"type")="char" + Set gtmtypfldindx("clear_reply","filler")=2 + Set gtmtypes("clear_reply",3,"name")="clear_reply.status" + Set gtmtypes("clear_reply",3,"off")=4 + Set gtmtypes("clear_reply",3,"len")=4 + Set gtmtypes("clear_reply",3,"type")="int" + Set gtmtypfldindx("clear_reply","status")=3 + Set gtmtypes("clear_reply",4,"name")="clear_reply.locknamelength" + Set gtmtypes("clear_reply",4,"off")=8 + Set gtmtypes("clear_reply",4,"len")=4 + Set gtmtypes("clear_reply",4,"type")="int" + Set gtmtypfldindx("clear_reply","locknamelength")=4 + Set gtmtypes("clear_reply",5,"name")="clear_reply.lockname" + Set gtmtypes("clear_reply",5,"off")=12 + Set gtmtypes("clear_reply",5,"len")=256 + Set gtmtypes("clear_reply",5,"type")="char" + Set gtmtypfldindx("clear_reply","lockname")=5 + ; + Set gtmtypes("clear_request")="struct" + Set gtmtypes("clear_request",0)=7 + Set gtmtypes("clear_request","len")=44 + Set gtmtypes("clear_request",1,"name")="clear_request.code" + Set gtmtypes("clear_request",1,"off")=0 + Set gtmtypes("clear_request",1,"len")=1 + Set gtmtypes("clear_request",1,"type")="char" + Set gtmtypfldindx("clear_request","code")=1 + Set gtmtypes("clear_request",2,"name")="clear_request.rnum" + Set gtmtypes("clear_request",2,"off")=1 + Set gtmtypes("clear_request",2,"len")=1 + Set gtmtypes("clear_request",2,"type")="char" + Set gtmtypfldindx("clear_request","rnum")=2 + Set gtmtypes("clear_request",3,"name")="clear_request.all" + Set gtmtypes("clear_request",3,"off")=2 + Set gtmtypes("clear_request",3,"len")=1 + Set gtmtypes("clear_request",3,"type")="char" + Set gtmtypfldindx("clear_request","all")=3 + Set gtmtypes("clear_request",4,"name")="clear_request.interactive" + Set gtmtypes("clear_request",4,"off")=3 + Set gtmtypes("clear_request",4,"len")=1 + Set gtmtypes("clear_request",4,"type")="char" + Set gtmtypfldindx("clear_request","interactive")=4 + Set gtmtypes("clear_request",5,"name")="clear_request.pid" + Set gtmtypes("clear_request",5,"off")=4 + Set gtmtypes("clear_request",5,"len")=4 + Set gtmtypes("clear_request",5,"type")="int" + Set gtmtypfldindx("clear_request","pid")=5 + Set gtmtypes("clear_request",6,"name")="clear_request.nodelength" + Set gtmtypes("clear_request",6,"off")=8 + Set gtmtypes("clear_request",6,"len")=1 + Set gtmtypes("clear_request",6,"type")="char" + Set gtmtypfldindx("clear_request","nodelength")=6 + Set gtmtypes("clear_request",7,"name")="clear_request.node" + Set gtmtypes("clear_request",7,"off")=9 + Set gtmtypes("clear_request",7,"len")=32 + Set gtmtypes("clear_request",7,"type")="char" + Set gtmtypfldindx("clear_request","node")=7 + ; + Set gtmtypes("cm_lckblklck")="struct" + Set gtmtypes("cm_lckblklck",0)=8 + Set gtmtypes("cm_lckblklck","len")=28 + Set gtmtypes("cm_lckblklck",1,"name")="cm_lckblklck.next" + Set gtmtypes("cm_lckblklck",1,"off")=0 + Set gtmtypes("cm_lckblklck",1,"len")=4 + Set gtmtypes("cm_lckblklck",1,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","next")=1 + Set gtmtypes("cm_lckblklck",2,"name")="cm_lckblklck.last" + Set gtmtypes("cm_lckblklck",2,"off")=4 + Set gtmtypes("cm_lckblklck",2,"len")=4 + Set gtmtypes("cm_lckblklck",2,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","last")=2 + Set gtmtypes("cm_lckblklck",3,"name")="cm_lckblklck.node" + Set gtmtypes("cm_lckblklck",3,"off")=8 + Set gtmtypes("cm_lckblklck",3,"len")=4 + Set gtmtypes("cm_lckblklck",3,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","node")=3 + Set gtmtypes("cm_lckblklck",4,"name")="cm_lckblklck.prc" + Set gtmtypes("cm_lckblklck",4,"off")=12 + Set gtmtypes("cm_lckblklck",4,"len")=4 + Set gtmtypes("cm_lckblklck",4,"type")="addr" + Set gtmtypfldindx("cm_lckblklck","prc")=4 + Set gtmtypes("cm_lckblklck",5,"name")="cm_lckblklck.sequence" + Set gtmtypes("cm_lckblklck",5,"off")=16 + Set gtmtypes("cm_lckblklck",5,"len")=4 + Set gtmtypes("cm_lckblklck",5,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblklck","sequence")=5 + Set gtmtypes("cm_lckblklck",6,"name")="cm_lckblklck.blktime" + Set gtmtypes("cm_lckblklck",6,"off")=20 + Set gtmtypes("cm_lckblklck",6,"len")=8 + Set gtmtypes("cm_lckblklck",6,"type")="ABS_TIME" + Set gtmtypfldindx("cm_lckblklck","blktime")=6 + Set gtmtypes("cm_lckblklck",7,"name")="cm_lckblklck.blktime.at_sec" + Set gtmtypes("cm_lckblklck",7,"off")=20 + Set gtmtypes("cm_lckblklck",7,"len")=4 + Set gtmtypes("cm_lckblklck",7,"type")="long" + Set gtmtypfldindx("cm_lckblklck","blktime.at_sec")=7 + Set gtmtypes("cm_lckblklck",8,"name")="cm_lckblklck.blktime.at_usec" + Set gtmtypes("cm_lckblklck",8,"off")=24 + Set gtmtypes("cm_lckblklck",8,"len")=4 + Set gtmtypes("cm_lckblklck",8,"type")="long" + Set gtmtypfldindx("cm_lckblklck","blktime.at_usec")=8 + ; + Set gtmtypes("cm_lckblkprc")="struct" + Set gtmtypes("cm_lckblkprc",0)=5 + Set gtmtypes("cm_lckblkprc","len")=20 + Set gtmtypes("cm_lckblkprc",1,"name")="cm_lckblkprc.next" + Set gtmtypes("cm_lckblkprc",1,"off")=0 + Set gtmtypes("cm_lckblkprc",1,"len")=4 + Set gtmtypes("cm_lckblkprc",1,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","next")=1 + Set gtmtypes("cm_lckblkprc",2,"name")="cm_lckblkprc.last" + Set gtmtypes("cm_lckblkprc",2,"off")=4 + Set gtmtypes("cm_lckblkprc",2,"len")=4 + Set gtmtypes("cm_lckblkprc",2,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","last")=2 + Set gtmtypes("cm_lckblkprc",3,"name")="cm_lckblkprc.user" + Set gtmtypes("cm_lckblkprc",3,"off")=8 + Set gtmtypes("cm_lckblkprc",3,"len")=4 + Set gtmtypes("cm_lckblkprc",3,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","user")=3 + Set gtmtypes("cm_lckblkprc",4,"name")="cm_lckblkprc.blocked" + Set gtmtypes("cm_lckblkprc",4,"off")=12 + Set gtmtypes("cm_lckblkprc",4,"len")=4 + Set gtmtypes("cm_lckblkprc",4,"type")="addr" + Set gtmtypfldindx("cm_lckblkprc","blocked")=4 + Set gtmtypes("cm_lckblkprc",5,"name")="cm_lckblkprc.blk_sequence" + Set gtmtypes("cm_lckblkprc",5,"off")=16 + Set gtmtypes("cm_lckblkprc",5,"len")=4 + Set gtmtypes("cm_lckblkprc",5,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblkprc","blk_sequence")=5 + ; + Set gtmtypes("cm_lckblkreg")="struct" + Set gtmtypes("cm_lckblkreg",0)=4 + Set gtmtypes("cm_lckblkreg","len")=16 + Set gtmtypes("cm_lckblkreg",1,"name")="cm_lckblkreg.region" + Set gtmtypes("cm_lckblkreg",1,"off")=0 + Set gtmtypes("cm_lckblkreg",1,"len")=4 + Set gtmtypes("cm_lckblkreg",1,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","region")=1 + Set gtmtypes("cm_lckblkreg",2,"name")="cm_lckblkreg.next" + Set gtmtypes("cm_lckblkreg",2,"off")=4 + Set gtmtypes("cm_lckblkreg",2,"len")=4 + Set gtmtypes("cm_lckblkreg",2,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","next")=2 + Set gtmtypes("cm_lckblkreg",3,"name")="cm_lckblkreg.lock" + Set gtmtypes("cm_lckblkreg",3,"off")=8 + Set gtmtypes("cm_lckblkreg",3,"len")=4 + Set gtmtypes("cm_lckblkreg",3,"type")="addr" + Set gtmtypfldindx("cm_lckblkreg","lock")=3 + Set gtmtypes("cm_lckblkreg",4,"name")="cm_lckblkreg.pass" + Set gtmtypes("cm_lckblkreg",4,"off")=12 + Set gtmtypes("cm_lckblkreg",4,"len")=4 + Set gtmtypes("cm_lckblkreg",4,"type")="unsigned-int" + Set gtmtypfldindx("cm_lckblkreg","pass")=4 + ; + Set gtmtypes("cm_lk_response")="struct" + Set gtmtypes("cm_lk_response",0)=2 + Set gtmtypes("cm_lk_response","len")=8 + Set gtmtypes("cm_lk_response",1,"name")="cm_lk_response.next" + Set gtmtypes("cm_lk_response",1,"off")=0 + Set gtmtypes("cm_lk_response",1,"len")=4 + Set gtmtypes("cm_lk_response",1,"type")="addr" + Set gtmtypfldindx("cm_lk_response","next")=1 + Set gtmtypes("cm_lk_response",2,"name")="cm_lk_response.response" + Set gtmtypes("cm_lk_response",2,"off")=4 + Set gtmtypes("cm_lk_response",2,"len")=4 + Set gtmtypes("cm_lk_response",2,"type")="addr" + Set gtmtypfldindx("cm_lk_response","response")=2 + ; + Set gtmtypes("cm_region_head")="struct" + Set gtmtypes("cm_region_head",0)=11 + Set gtmtypes("cm_region_head","len")=44 + Set gtmtypes("cm_region_head",1,"name")="cm_region_head.head" + Set gtmtypes("cm_region_head",1,"off")=0 + Set gtmtypes("cm_region_head",1,"len")=16 + Set gtmtypes("cm_region_head",1,"type")="que_head" + Set gtmtypfldindx("cm_region_head","head")=1 + Set gtmtypes("cm_region_head",2,"name")="cm_region_head.head.fl" + Set gtmtypes("cm_region_head",2,"off")=0 + Set gtmtypes("cm_region_head",2,"len")=4 + Set gtmtypes("cm_region_head",2,"type")="intptr_t" + Set gtmtypfldindx("cm_region_head","head.fl")=2 + Set gtmtypes("cm_region_head",3,"name")="cm_region_head.head.bl" + Set gtmtypes("cm_region_head",3,"off")=4 + Set gtmtypes("cm_region_head",3,"len")=4 + Set gtmtypes("cm_region_head",3,"type")="intptr_t" + Set gtmtypfldindx("cm_region_head","head.bl")=3 + Set gtmtypes("cm_region_head",4,"name")="cm_region_head.head.latch" + Set gtmtypes("cm_region_head",4,"off")=8 + Set gtmtypes("cm_region_head",4,"len")=8 + Set gtmtypes("cm_region_head",4,"type")="global_latch_t" + Set gtmtypfldindx("cm_region_head","head.latch")=4 + Set gtmtypes("cm_region_head",5,"name")="cm_region_head.next" + Set gtmtypes("cm_region_head",5,"off")=16 + Set gtmtypes("cm_region_head",5,"len")=4 + Set gtmtypes("cm_region_head",5,"type")="addr" + Set gtmtypfldindx("cm_region_head","next")=5 + Set gtmtypes("cm_region_head",6,"name")="cm_region_head.last" + Set gtmtypes("cm_region_head",6,"off")=20 + Set gtmtypes("cm_region_head",6,"len")=4 + Set gtmtypes("cm_region_head",6,"type")="addr" + Set gtmtypfldindx("cm_region_head","last")=6 + Set gtmtypes("cm_region_head",7,"name")="cm_region_head.connect_ptr" + Set gtmtypes("cm_region_head",7,"off")=24 + Set gtmtypes("cm_region_head",7,"len")=4 + Set gtmtypes("cm_region_head",7,"type")="addr" + Set gtmtypfldindx("cm_region_head","connect_ptr")=7 + Set gtmtypes("cm_region_head",8,"name")="cm_region_head.reg" + Set gtmtypes("cm_region_head",8,"off")=28 + Set gtmtypes("cm_region_head",8,"len")=4 + Set gtmtypes("cm_region_head",8,"type")="addr" + Set gtmtypfldindx("cm_region_head","reg")=8 + Set gtmtypes("cm_region_head",9,"name")="cm_region_head.refcnt" + Set gtmtypes("cm_region_head",9,"off")=32 + Set gtmtypes("cm_region_head",9,"len")=4 + Set gtmtypes("cm_region_head",9,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_head","refcnt")=9 + Set gtmtypes("cm_region_head",10,"name")="cm_region_head.wakeup" + Set gtmtypes("cm_region_head",10,"off")=36 + Set gtmtypes("cm_region_head",10,"len")=4 + Set gtmtypes("cm_region_head",10,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_head","wakeup")=10 + Set gtmtypes("cm_region_head",11,"name")="cm_region_head.reg_hash" + Set gtmtypes("cm_region_head",11,"off")=40 + Set gtmtypes("cm_region_head",11,"len")=4 + Set gtmtypes("cm_region_head",11,"type")="addr" + Set gtmtypfldindx("cm_region_head","reg_hash")=11 + ; + Set gtmtypes("cm_region_list")="struct" + Set gtmtypes("cm_region_list",0)=14 + Set gtmtypes("cm_region_list","len")=40 + Set gtmtypes("cm_region_list",1,"name")="cm_region_list.regque" + Set gtmtypes("cm_region_list",1,"off")=0 + Set gtmtypes("cm_region_list",1,"len")=8 + Set gtmtypes("cm_region_list",1,"type")="que_ent" + Set gtmtypfldindx("cm_region_list","regque")=1 + Set gtmtypes("cm_region_list",2,"name")="cm_region_list.regque.fl" + Set gtmtypes("cm_region_list",2,"off")=0 + Set gtmtypes("cm_region_list",2,"len")=4 + Set gtmtypes("cm_region_list",2,"type")="intptr_t" + Set gtmtypfldindx("cm_region_list","regque.fl")=2 + Set gtmtypes("cm_region_list",3,"name")="cm_region_list.regque.bl" + Set gtmtypes("cm_region_list",3,"off")=4 + Set gtmtypes("cm_region_list",3,"len")=4 + Set gtmtypes("cm_region_list",3,"type")="intptr_t" + Set gtmtypfldindx("cm_region_list","regque.bl")=3 + Set gtmtypes("cm_region_list",4,"name")="cm_region_list.next" + Set gtmtypes("cm_region_list",4,"off")=8 + Set gtmtypes("cm_region_list",4,"len")=4 + Set gtmtypes("cm_region_list",4,"type")="addr" + Set gtmtypfldindx("cm_region_list","next")=4 + Set gtmtypes("cm_region_list",5,"name")="cm_region_list.regnum" + Set gtmtypes("cm_region_list",5,"off")=12 + Set gtmtypes("cm_region_list",5,"len")=1 + Set gtmtypes("cm_region_list",5,"type")="unsigned-char" + Set gtmtypfldindx("cm_region_list","regnum")=5 + Set gtmtypes("cm_region_list",6,"name")="cm_region_list.oper" + Set gtmtypes("cm_region_list",6,"off")=13 + Set gtmtypes("cm_region_list",6,"len")=1 + Set gtmtypes("cm_region_list",6,"type")="unsigned-char" + Set gtmtypfldindx("cm_region_list","oper")=6 + Set gtmtypes("cm_region_list",7,"name")="cm_region_list.lks_this_cmd" + Set gtmtypes("cm_region_list",7,"off")=14 + Set gtmtypes("cm_region_list",7,"len")=2 + Set gtmtypes("cm_region_list",7,"type")="unsigned-short" + Set gtmtypfldindx("cm_region_list","lks_this_cmd")=7 + Set gtmtypes("cm_region_list",8,"name")="cm_region_list.reqnode" + Set gtmtypes("cm_region_list",8,"off")=16 + Set gtmtypes("cm_region_list",8,"len")=1 + Set gtmtypes("cm_region_list",8,"type")="char" + Set gtmtypfldindx("cm_region_list","reqnode")=8 + Set gtmtypes("cm_region_list",9,"name")="cm_region_list.filler" + Set gtmtypes("cm_region_list",9,"off")=17 + Set gtmtypes("cm_region_list",9,"len")=3 + Set gtmtypes("cm_region_list",9,"type")="char" + Set gtmtypfldindx("cm_region_list","filler")=9 + Set gtmtypes("cm_region_list",10,"name")="cm_region_list.reghead" + Set gtmtypes("cm_region_list",10,"off")=20 + Set gtmtypes("cm_region_list",10,"len")=4 + Set gtmtypes("cm_region_list",10,"type")="addr" + Set gtmtypfldindx("cm_region_list","reghead")=10 + Set gtmtypes("cm_region_list",11,"name")="cm_region_list.cs" + Set gtmtypes("cm_region_list",11,"off")=24 + Set gtmtypes("cm_region_list",11,"len")=4 + Set gtmtypes("cm_region_list",11,"type")="addr" + Set gtmtypfldindx("cm_region_list","cs")=11 + Set gtmtypes("cm_region_list",12,"name")="cm_region_list.blkd" + Set gtmtypes("cm_region_list",12,"off")=28 + Set gtmtypes("cm_region_list",12,"len")=4 + Set gtmtypes("cm_region_list",12,"type")="addr" + Set gtmtypfldindx("cm_region_list","blkd")=12 + Set gtmtypes("cm_region_list",13,"name")="cm_region_list.lockdata" + Set gtmtypes("cm_region_list",13,"off")=32 + Set gtmtypes("cm_region_list",13,"len")=4 + Set gtmtypes("cm_region_list",13,"type")="addr" + Set gtmtypfldindx("cm_region_list","lockdata")=13 + Set gtmtypes("cm_region_list",14,"name")="cm_region_list.pini_addr" + Set gtmtypes("cm_region_list",14,"off")=36 + Set gtmtypes("cm_region_list",14,"len")=4 + Set gtmtypes("cm_region_list",14,"type")="unsigned-int" + Set gtmtypfldindx("cm_region_list","pini_addr")=14 + ; + Set gtmtypes("coll_hdr")="struct" + Set gtmtypes("coll_hdr",0)=4 + Set gtmtypes("coll_hdr","len")=4 + Set gtmtypes("coll_hdr",1,"name")="coll_hdr.act" + Set gtmtypes("coll_hdr",1,"off")=0 + Set gtmtypes("coll_hdr",1,"len")=1 + Set gtmtypes("coll_hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","act")=1 + Set gtmtypes("coll_hdr",2,"name")="coll_hdr.nct" + Set gtmtypes("coll_hdr",2,"off")=1 + Set gtmtypes("coll_hdr",2,"len")=1 + Set gtmtypes("coll_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","nct")=2 + Set gtmtypes("coll_hdr",3,"name")="coll_hdr.ver" + Set gtmtypes("coll_hdr",3,"off")=2 + Set gtmtypes("coll_hdr",3,"len")=1 + Set gtmtypes("coll_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","ver")=3 + Set gtmtypes("coll_hdr",4,"name")="coll_hdr.pad" + Set gtmtypes("coll_hdr",4,"off")=3 + Set gtmtypes("coll_hdr",4,"len")=1 + Set gtmtypes("coll_hdr",4,"type")="unsigned-char" + Set gtmtypfldindx("coll_hdr","pad")=4 + ; + Set gtmtypes("collseq")="struct" + Set gtmtypes("collseq",0)=7 + Set gtmtypes("collseq","len")=28 + Set gtmtypes("collseq",1,"name")="collseq.flink" + Set gtmtypes("collseq",1,"off")=0 + Set gtmtypes("collseq",1,"len")=4 + Set gtmtypes("collseq",1,"type")="addr" + Set gtmtypfldindx("collseq","flink")=1 + Set gtmtypes("collseq",2,"name")="collseq.act" + Set gtmtypes("collseq",2,"off")=4 + Set gtmtypes("collseq",2,"len")=4 + Set gtmtypes("collseq",2,"type")="int" + Set gtmtypfldindx("collseq","act")=2 + Set gtmtypes("collseq",3,"name")="collseq.xform" + Set gtmtypes("collseq",3,"off")=8 + Set gtmtypes("collseq",3,"len")=4 + Set gtmtypes("collseq",3,"type")="addr" + Set gtmtypfldindx("collseq","xform")=3 + Set gtmtypes("collseq",4,"name")="collseq.xback" + Set gtmtypes("collseq",4,"off")=12 + Set gtmtypes("collseq",4,"len")=4 + Set gtmtypes("collseq",4,"type")="addr" + Set gtmtypfldindx("collseq","xback")=4 + Set gtmtypes("collseq",5,"name")="collseq.version" + Set gtmtypes("collseq",5,"off")=16 + Set gtmtypes("collseq",5,"len")=4 + Set gtmtypes("collseq",5,"type")="addr" + Set gtmtypfldindx("collseq","version")=5 + Set gtmtypes("collseq",6,"name")="collseq.verify" + Set gtmtypes("collseq",6,"off")=20 + Set gtmtypes("collseq",6,"len")=4 + Set gtmtypes("collseq",6,"type")="addr" + Set gtmtypfldindx("collseq","verify")=6 + Set gtmtypes("collseq",7,"name")="collseq.argtype" + Set gtmtypes("collseq",7,"off")=24 + Set gtmtypes("collseq",7,"len")=4 + Set gtmtypes("collseq",7,"type")="int" + Set gtmtypfldindx("collseq","argtype")=7 + ; + Set gtmtypes("command_qualifier")="struct" + Set gtmtypes("command_qualifier",0)=29 + Set gtmtypes("command_qualifier","len")=132 + Set gtmtypes("command_qualifier",1,"name")="command_qualifier.qlf" + Set gtmtypes("command_qualifier",1,"off")=0 + Set gtmtypes("command_qualifier",1,"len")=4 + Set gtmtypes("command_qualifier",1,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","qlf")=1 + Set gtmtypes("command_qualifier",2,"name")="command_qualifier.object_file" + Set gtmtypes("command_qualifier",2,"off")=4 + Set gtmtypes("command_qualifier",2,"len")=32 + Set gtmtypes("command_qualifier",2,"type")="mval" + Set gtmtypfldindx("command_qualifier","object_file")=2 + Set gtmtypes("command_qualifier",3,"name")="command_qualifier.object_file.mvtype" + Set gtmtypes("command_qualifier",3,"off")=4 + Set gtmtypes("command_qualifier",3,"len")=2 + Set gtmtypes("command_qualifier",3,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","object_file.mvtype")=3 + Set gtmtypes("command_qualifier",4,"name")="command_qualifier.object_file.fnpc_indx" + Set gtmtypes("command_qualifier",4,"off")=7 + Set gtmtypes("command_qualifier",4,"len")=1 + Set gtmtypes("command_qualifier",4,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","object_file.fnpc_indx")=4 + Set gtmtypes("command_qualifier",5,"name")="command_qualifier.object_file.utfcgr_indx" + Set gtmtypes("command_qualifier",5,"off")=8 + Set gtmtypes("command_qualifier",5,"len")=4 + Set gtmtypes("command_qualifier",5,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","object_file.utfcgr_indx")=5 + Set gtmtypes("command_qualifier",6,"name")="command_qualifier.object_file.filler2" + Set gtmtypes("command_qualifier",6,"off")=12 + Set gtmtypes("command_qualifier",6,"len")=4 + Set gtmtypes("command_qualifier",6,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","object_file.filler2")=6 + Set gtmtypes("command_qualifier",7,"name")="command_qualifier.object_file.m" + Set gtmtypes("command_qualifier",7,"off")=16 + Set gtmtypes("command_qualifier",7,"len")=8 + Set gtmtypes("command_qualifier",7,"type")="int" + Set gtmtypfldindx("command_qualifier","object_file.m")=7 + Set gtmtypes("command_qualifier",7,"dim")=2 + Set gtmtypes("command_qualifier",8,"name")="command_qualifier.object_file.str" + Set gtmtypes("command_qualifier",8,"off")=24 + Set gtmtypes("command_qualifier",8,"len")=12 + Set gtmtypes("command_qualifier",8,"type")="mstr" + Set gtmtypfldindx("command_qualifier","object_file.str")=8 + Set gtmtypes("command_qualifier",9,"name")="command_qualifier.list_file" + Set gtmtypes("command_qualifier",9,"off")=36 + Set gtmtypes("command_qualifier",9,"len")=32 + Set gtmtypes("command_qualifier",9,"type")="mval" + Set gtmtypfldindx("command_qualifier","list_file")=9 + Set gtmtypes("command_qualifier",10,"name")="command_qualifier.list_file.mvtype" + Set gtmtypes("command_qualifier",10,"off")=36 + Set gtmtypes("command_qualifier",10,"len")=2 + Set gtmtypes("command_qualifier",10,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","list_file.mvtype")=10 + Set gtmtypes("command_qualifier",11,"name")="command_qualifier.list_file.fnpc_indx" + Set gtmtypes("command_qualifier",11,"off")=39 + Set gtmtypes("command_qualifier",11,"len")=1 + Set gtmtypes("command_qualifier",11,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","list_file.fnpc_indx")=11 + Set gtmtypes("command_qualifier",12,"name")="command_qualifier.list_file.utfcgr_indx" + Set gtmtypes("command_qualifier",12,"off")=40 + Set gtmtypes("command_qualifier",12,"len")=4 + Set gtmtypes("command_qualifier",12,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","list_file.utfcgr_indx")=12 + Set gtmtypes("command_qualifier",13,"name")="command_qualifier.list_file.filler2" + Set gtmtypes("command_qualifier",13,"off")=44 + Set gtmtypes("command_qualifier",13,"len")=4 + Set gtmtypes("command_qualifier",13,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","list_file.filler2")=13 + Set gtmtypes("command_qualifier",14,"name")="command_qualifier.list_file.m" + Set gtmtypes("command_qualifier",14,"off")=48 + Set gtmtypes("command_qualifier",14,"len")=8 + Set gtmtypes("command_qualifier",14,"type")="int" + Set gtmtypfldindx("command_qualifier","list_file.m")=14 + Set gtmtypes("command_qualifier",14,"dim")=2 + Set gtmtypes("command_qualifier",15,"name")="command_qualifier.list_file.str" + Set gtmtypes("command_qualifier",15,"off")=56 + Set gtmtypes("command_qualifier",15,"len")=12 + Set gtmtypes("command_qualifier",15,"type")="mstr" + Set gtmtypfldindx("command_qualifier","list_file.str")=15 + Set gtmtypes("command_qualifier",16,"name")="command_qualifier.ceprep_file" + Set gtmtypes("command_qualifier",16,"off")=68 + Set gtmtypes("command_qualifier",16,"len")=32 + Set gtmtypes("command_qualifier",16,"type")="mval" + Set gtmtypfldindx("command_qualifier","ceprep_file")=16 + Set gtmtypes("command_qualifier",17,"name")="command_qualifier.ceprep_file.mvtype" + Set gtmtypes("command_qualifier",17,"off")=68 + Set gtmtypes("command_qualifier",17,"len")=2 + Set gtmtypes("command_qualifier",17,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","ceprep_file.mvtype")=17 + Set gtmtypes("command_qualifier",18,"name")="command_qualifier.ceprep_file.fnpc_indx" + Set gtmtypes("command_qualifier",18,"off")=71 + Set gtmtypes("command_qualifier",18,"len")=1 + Set gtmtypes("command_qualifier",18,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","ceprep_file.fnpc_indx")=18 + Set gtmtypes("command_qualifier",19,"name")="command_qualifier.ceprep_file.utfcgr_indx" + Set gtmtypes("command_qualifier",19,"off")=72 + Set gtmtypes("command_qualifier",19,"len")=4 + Set gtmtypes("command_qualifier",19,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","ceprep_file.utfcgr_indx")=19 + Set gtmtypes("command_qualifier",20,"name")="command_qualifier.ceprep_file.filler2" + Set gtmtypes("command_qualifier",20,"off")=76 + Set gtmtypes("command_qualifier",20,"len")=4 + Set gtmtypes("command_qualifier",20,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","ceprep_file.filler2")=20 + Set gtmtypes("command_qualifier",21,"name")="command_qualifier.ceprep_file.m" + Set gtmtypes("command_qualifier",21,"off")=80 + Set gtmtypes("command_qualifier",21,"len")=8 + Set gtmtypes("command_qualifier",21,"type")="int" + Set gtmtypfldindx("command_qualifier","ceprep_file.m")=21 + Set gtmtypes("command_qualifier",21,"dim")=2 + Set gtmtypes("command_qualifier",22,"name")="command_qualifier.ceprep_file.str" + Set gtmtypes("command_qualifier",22,"off")=88 + Set gtmtypes("command_qualifier",22,"len")=12 + Set gtmtypes("command_qualifier",22,"type")="mstr" + Set gtmtypfldindx("command_qualifier","ceprep_file.str")=22 + Set gtmtypes("command_qualifier",23,"name")="command_qualifier.rtnname" + Set gtmtypes("command_qualifier",23,"off")=100 + Set gtmtypes("command_qualifier",23,"len")=32 + Set gtmtypes("command_qualifier",23,"type")="mval" + Set gtmtypfldindx("command_qualifier","rtnname")=23 + Set gtmtypes("command_qualifier",24,"name")="command_qualifier.rtnname.mvtype" + Set gtmtypes("command_qualifier",24,"off")=100 + Set gtmtypes("command_qualifier",24,"len")=2 + Set gtmtypes("command_qualifier",24,"type")="unsigned-short" + Set gtmtypfldindx("command_qualifier","rtnname.mvtype")=24 + Set gtmtypes("command_qualifier",25,"name")="command_qualifier.rtnname.fnpc_indx" + Set gtmtypes("command_qualifier",25,"off")=103 + Set gtmtypes("command_qualifier",25,"len")=1 + Set gtmtypes("command_qualifier",25,"type")="unsigned-char" + Set gtmtypfldindx("command_qualifier","rtnname.fnpc_indx")=25 + Set gtmtypes("command_qualifier",26,"name")="command_qualifier.rtnname.utfcgr_indx" + Set gtmtypes("command_qualifier",26,"off")=104 + Set gtmtypes("command_qualifier",26,"len")=4 + Set gtmtypes("command_qualifier",26,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","rtnname.utfcgr_indx")=26 + Set gtmtypes("command_qualifier",27,"name")="command_qualifier.rtnname.filler2" + Set gtmtypes("command_qualifier",27,"off")=108 + Set gtmtypes("command_qualifier",27,"len")=4 + Set gtmtypes("command_qualifier",27,"type")="unsigned-int" + Set gtmtypfldindx("command_qualifier","rtnname.filler2")=27 + Set gtmtypes("command_qualifier",28,"name")="command_qualifier.rtnname.m" + Set gtmtypes("command_qualifier",28,"off")=112 + Set gtmtypes("command_qualifier",28,"len")=8 + Set gtmtypes("command_qualifier",28,"type")="int" + Set gtmtypfldindx("command_qualifier","rtnname.m")=28 + Set gtmtypes("command_qualifier",28,"dim")=2 + Set gtmtypes("command_qualifier",29,"name")="command_qualifier.rtnname.str" + Set gtmtypes("command_qualifier",29,"off")=120 + Set gtmtypes("command_qualifier",29,"len")=12 + Set gtmtypes("command_qualifier",29,"type")="mstr" + Set gtmtypfldindx("command_qualifier","rtnname.str")=29 + ; + Set gtmtypes("compswap_time_field")="struct" + Set gtmtypes("compswap_time_field",0)=7 + Set gtmtypes("compswap_time_field","len")=24 + Set gtmtypes("compswap_time_field",1,"name")="compswap_time_field.time_latch" + Set gtmtypes("compswap_time_field",1,"off")=0 + Set gtmtypes("compswap_time_field",1,"len")=8 + Set gtmtypes("compswap_time_field",1,"type")="global_latch_t" + Set gtmtypfldindx("compswap_time_field","time_latch")=1 + Set gtmtypes("compswap_time_field",2,"name")="compswap_time_field.time_latch.u" + Set gtmtypes("compswap_time_field",2,"off")=0 + Set gtmtypes("compswap_time_field",2,"len")=8 + Set gtmtypes("compswap_time_field",2,"type")="union" + Set gtmtypfldindx("compswap_time_field","time_latch.u")=2 + Set gtmtypes("compswap_time_field",3,"name")="compswap_time_field.time_latch.u.pid_imgcnt" + Set gtmtypes("compswap_time_field",3,"off")=0 + Set gtmtypes("compswap_time_field",3,"len")=8 + Set gtmtypes("compswap_time_field",3,"type")="uint64_t" + Set gtmtypfldindx("compswap_time_field","time_latch.u.pid_imgcnt")=3 + Set gtmtypes("compswap_time_field",4,"name")="compswap_time_field.time_latch.u.parts" + Set gtmtypes("compswap_time_field",4,"off")=0 + Set gtmtypes("compswap_time_field",4,"len")=8 + Set gtmtypes("compswap_time_field",4,"type")="struct" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts")=4 + Set gtmtypes("compswap_time_field",5,"name")="compswap_time_field.time_latch.u.parts.latch_pid" + Set gtmtypes("compswap_time_field",5,"off")=0 + Set gtmtypes("compswap_time_field",5,"len")=4 + Set gtmtypes("compswap_time_field",5,"type")="int" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts.latch_pid")=5 + Set gtmtypes("compswap_time_field",6,"name")="compswap_time_field.time_latch.u.parts.latch_word" + Set gtmtypes("compswap_time_field",6,"off")=4 + Set gtmtypes("compswap_time_field",6,"len")=4 + Set gtmtypes("compswap_time_field",6,"type")="int" + Set gtmtypfldindx("compswap_time_field","time_latch.u.parts.latch_word")=6 + Set gtmtypes("compswap_time_field",7,"name")="compswap_time_field.hp_latch_space" + Set gtmtypes("compswap_time_field",7,"off")=8 + Set gtmtypes("compswap_time_field",7,"len")=16 + Set gtmtypes("compswap_time_field",7,"type")="int" + Set gtmtypfldindx("compswap_time_field","hp_latch_space")=7 + Set gtmtypes("compswap_time_field",7,"dim")=4 + ; + Set gtmtypes("condition_handler")="struct" + Set gtmtypes("condition_handler",0)=6 + Set gtmtypes("condition_handler","len")=176 + Set gtmtypes("condition_handler",1,"name")="condition_handler.save_active_ch" + Set gtmtypes("condition_handler",1,"off")=0 + Set gtmtypes("condition_handler",1,"len")=4 + Set gtmtypes("condition_handler",1,"type")="addr" + Set gtmtypfldindx("condition_handler","save_active_ch")=1 + Set gtmtypes("condition_handler",2,"name")="condition_handler.ch_active" + Set gtmtypes("condition_handler",2,"off")=4 + Set gtmtypes("condition_handler",2,"len")=4 + Set gtmtypes("condition_handler",2,"type")="boolean_t" + Set gtmtypfldindx("condition_handler","ch_active")=2 + Set gtmtypes("condition_handler",3,"name")="condition_handler.dollar_tlevel" + Set gtmtypes("condition_handler",3,"off")=8 + Set gtmtypes("condition_handler",3,"len")=4 + Set gtmtypes("condition_handler",3,"type")="unsigned-int" + Set gtmtypfldindx("condition_handler","dollar_tlevel")=3 + Set gtmtypes("condition_handler",4,"name")="condition_handler.ch" + Set gtmtypes("condition_handler",4,"off")=12 + Set gtmtypes("condition_handler",4,"len")=4 + Set gtmtypes("condition_handler",4,"type")="addr" + Set gtmtypfldindx("condition_handler","ch")=4 + Set gtmtypes("condition_handler",5,"name")="condition_handler.jmp" + Set gtmtypes("condition_handler",5,"off")=16 + Set gtmtypes("condition_handler",5,"len")=156 + Set gtmtypes("condition_handler",5,"type")="jmp_buf" + Set gtmtypfldindx("condition_handler","jmp")=5 + Set gtmtypes("condition_handler",6,"name")="condition_handler.intrpt_ok_state" + Set gtmtypes("condition_handler",6,"off")=172 + Set gtmtypes("condition_handler",6,"len")=4 + Set gtmtypes("condition_handler",6,"type")="int" + Set gtmtypfldindx("condition_handler","intrpt_ok_state")=6 + ; + Set gtmtypes("connection_struct")="struct" + Set gtmtypes("connection_struct",0)=26 + Set gtmtypes("connection_struct","len")=1096 + Set gtmtypes("connection_struct",1,"name")="connection_struct.qent" + Set gtmtypes("connection_struct",1,"off")=0 + Set gtmtypes("connection_struct",1,"len")=8 + Set gtmtypes("connection_struct",1,"type")="que_ent" + Set gtmtypfldindx("connection_struct","qent")=1 + Set gtmtypes("connection_struct",2,"name")="connection_struct.qent.fl" + Set gtmtypes("connection_struct",2,"off")=0 + Set gtmtypes("connection_struct",2,"len")=4 + Set gtmtypes("connection_struct",2,"type")="intptr_t" + Set gtmtypfldindx("connection_struct","qent.fl")=2 + Set gtmtypes("connection_struct",3,"name")="connection_struct.qent.bl" + Set gtmtypes("connection_struct",3,"off")=4 + Set gtmtypes("connection_struct",3,"len")=4 + Set gtmtypes("connection_struct",3,"type")="intptr_t" + Set gtmtypfldindx("connection_struct","qent.bl")=3 + Set gtmtypes("connection_struct",4,"name")="connection_struct.region_root" + Set gtmtypes("connection_struct",4,"off")=8 + Set gtmtypes("connection_struct",4,"len")=4 + Set gtmtypes("connection_struct",4,"type")="addr" + Set gtmtypfldindx("connection_struct","region_root")=4 + Set gtmtypes("connection_struct",5,"name")="connection_struct.current_region" + Set gtmtypes("connection_struct",5,"off")=12 + Set gtmtypes("connection_struct",5,"len")=4 + Set gtmtypes("connection_struct",5,"type")="addr" + Set gtmtypfldindx("connection_struct","current_region")=5 + Set gtmtypes("connection_struct",6,"name")="connection_struct.clb_ptr" + Set gtmtypes("connection_struct",6,"off")=16 + Set gtmtypes("connection_struct",6,"len")=4 + Set gtmtypes("connection_struct",6,"type")="addr" + Set gtmtypfldindx("connection_struct","clb_ptr")=6 + Set gtmtypes("connection_struct",7,"name")="connection_struct.state" + Set gtmtypes("connection_struct",7,"off")=20 + Set gtmtypes("connection_struct",7,"len")=1 + Set gtmtypes("connection_struct",7,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","state")=7 + Set gtmtypes("connection_struct",8,"name")="connection_struct.new_msg" + Set gtmtypes("connection_struct",8,"off")=21 + Set gtmtypes("connection_struct",8,"len")=1 + Set gtmtypes("connection_struct",8,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","new_msg")=8 + Set gtmtypes("connection_struct",9,"name")="connection_struct.maxregnum" + Set gtmtypes("connection_struct",9,"off")=22 + Set gtmtypes("connection_struct",9,"len")=1 + Set gtmtypes("connection_struct",9,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","maxregnum")=9 + Set gtmtypes("connection_struct",10,"name")="connection_struct.waiting_in_queue" + Set gtmtypes("connection_struct",10,"off")=23 + Set gtmtypes("connection_struct",10,"len")=1 + Set gtmtypes("connection_struct",10,"type")="char" + Set gtmtypfldindx("connection_struct","waiting_in_queue")=10 + Set gtmtypes("connection_struct",11,"name")="connection_struct.connect" + Set gtmtypes("connection_struct",11,"off")=24 + Set gtmtypes("connection_struct",11,"len")=8 + Set gtmtypes("connection_struct",11,"type")="struct" + Set gtmtypfldindx("connection_struct","connect")=11 + Set gtmtypes("connection_struct",12,"name")="connection_struct.lastact" + Set gtmtypes("connection_struct",12,"off")=32 + Set gtmtypes("connection_struct",12,"len")=4 + Set gtmtypes("connection_struct",12,"type")="time_t" + Set gtmtypfldindx("connection_struct","lastact")=12 + Set gtmtypes("connection_struct",13,"name")="connection_struct.stats" + Set gtmtypes("connection_struct",13,"off")=36 + Set gtmtypes("connection_struct",13,"len")=4 + Set gtmtypes("connection_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("connection_struct","stats")=13 + Set gtmtypes("connection_struct",14,"name")="connection_struct.procnum" + Set gtmtypes("connection_struct",14,"off")=40 + Set gtmtypes("connection_struct",14,"len")=2 + Set gtmtypes("connection_struct",14,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","procnum")=14 + Set gtmtypes("connection_struct",15,"name")="connection_struct.transnum" + Set gtmtypes("connection_struct",15,"off")=42 + Set gtmtypes("connection_struct",15,"len")=2 + Set gtmtypes("connection_struct",15,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","transnum")=15 + Set gtmtypes("connection_struct",16,"name")="connection_struct.lk_cancel" + Set gtmtypes("connection_struct",16,"off")=44 + Set gtmtypes("connection_struct",16,"len")=2 + Set gtmtypes("connection_struct",16,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","lk_cancel")=16 + Set gtmtypes("connection_struct",17,"name")="connection_struct.last_cancelled" + Set gtmtypes("connection_struct",17,"off")=46 + Set gtmtypes("connection_struct",17,"len")=2 + Set gtmtypes("connection_struct",17,"type")="unsigned-short" + Set gtmtypfldindx("connection_struct","last_cancelled")=17 + Set gtmtypes("connection_struct",18,"name")="connection_struct.int_cancel" + Set gtmtypes("connection_struct",18,"off")=48 + Set gtmtypes("connection_struct",18,"len")=2 + Set gtmtypes("connection_struct",18,"type")="struct" + Set gtmtypfldindx("connection_struct","int_cancel")=18 + Set gtmtypes("connection_struct",19,"name")="connection_struct.int_cancel.laflag" + Set gtmtypes("connection_struct",19,"off")=48 + Set gtmtypes("connection_struct",19,"len")=1 + Set gtmtypes("connection_struct",19,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","int_cancel.laflag")=19 + Set gtmtypes("connection_struct",20,"name")="connection_struct.int_cancel.transnum" + Set gtmtypes("connection_struct",20,"off")=49 + Set gtmtypes("connection_struct",20,"len")=1 + Set gtmtypes("connection_struct",20,"type")="unsigned-char" + Set gtmtypfldindx("connection_struct","int_cancel.transnum")=20 + Set gtmtypes("connection_struct",21,"name")="connection_struct.pvec" + Set gtmtypes("connection_struct",21,"off")=52 + Set gtmtypes("connection_struct",21,"len")=4 + Set gtmtypes("connection_struct",21,"type")="addr" + Set gtmtypfldindx("connection_struct","pvec")=21 + Set gtmtypes("connection_struct",22,"name")="connection_struct.query_is_queryget" + Set gtmtypes("connection_struct",22,"off")=56 + Set gtmtypes("connection_struct",22,"len")=4 + Set gtmtypes("connection_struct",22,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","query_is_queryget")=22 + Set gtmtypes("connection_struct",23,"name")="connection_struct.err_compat" + Set gtmtypes("connection_struct",23,"off")=60 + Set gtmtypes("connection_struct",23,"len")=4 + Set gtmtypes("connection_struct",23,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","err_compat")=23 + Set gtmtypes("connection_struct",24,"name")="connection_struct.cli_supp_allowexisting_stdnullcoll" + Set gtmtypes("connection_struct",24,"off")=64 + Set gtmtypes("connection_struct",24,"len")=4 + Set gtmtypes("connection_struct",24,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","cli_supp_allowexisting_stdnullcoll")=24 + Set gtmtypes("connection_struct",25,"name")="connection_struct.client_supports_long_names" + Set gtmtypes("connection_struct",25,"off")=68 + Set gtmtypes("connection_struct",25,"len")=4 + Set gtmtypes("connection_struct",25,"type")="boolean_t" + Set gtmtypfldindx("connection_struct","client_supports_long_names")=25 + Set gtmtypes("connection_struct",26,"name")="connection_struct.region_array" + Set gtmtypes("connection_struct",26,"off")=72 + Set gtmtypes("connection_struct",26,"len")=1024 + Set gtmtypes("connection_struct",26,"type")="addr" + Set gtmtypfldindx("connection_struct","region_array")=26 + Set gtmtypes("connection_struct",26,"dim")=256 + ; + Set gtmtypes("crit_trace")="struct" + Set gtmtypes("crit_trace",0)=4 + Set gtmtypes("crit_trace","len")=20 + Set gtmtypes("crit_trace",1,"name")="crit_trace.call_from" + Set gtmtypes("crit_trace",1,"off")=0 + Set gtmtypes("crit_trace",1,"len")=4 + Set gtmtypes("crit_trace",1,"type")="caddr_t" + Set gtmtypfldindx("crit_trace","call_from")=1 + Set gtmtypes("crit_trace",2,"name")="crit_trace.crit_act" + Set gtmtypes("crit_trace",2,"off")=4 + Set gtmtypes("crit_trace",2,"len")=4 + Set gtmtypes("crit_trace",2,"type")="int" + Set gtmtypfldindx("crit_trace","crit_act")=2 + Set gtmtypes("crit_trace",3,"name")="crit_trace.epid" + Set gtmtypes("crit_trace",3,"off")=8 + Set gtmtypes("crit_trace",3,"len")=4 + Set gtmtypes("crit_trace",3,"type")="int" + Set gtmtypfldindx("crit_trace","epid")=3 + Set gtmtypes("crit_trace",4,"name")="crit_trace.curr_tn" + Set gtmtypes("crit_trace",4,"off")=12 + Set gtmtypes("crit_trace",4,"len")=8 + Set gtmtypes("crit_trace",4,"type")="uint64_t" + Set gtmtypfldindx("crit_trace","curr_tn")=4 + ; + Set gtmtypes("cvs_MD5_CTX")="struct" + Set gtmtypes("cvs_MD5_CTX",0)=3 + Set gtmtypes("cvs_MD5_CTX","len")=88 + Set gtmtypes("cvs_MD5_CTX",1,"name")="cvs_MD5_CTX.buf" + Set gtmtypes("cvs_MD5_CTX",1,"off")=0 + Set gtmtypes("cvs_MD5_CTX",1,"len")=16 + Set gtmtypes("cvs_MD5_CTX",1,"type")="unsigned-long" + Set gtmtypfldindx("cvs_MD5_CTX","buf")=1 + Set gtmtypes("cvs_MD5_CTX",1,"dim")=4 + Set gtmtypes("cvs_MD5_CTX",2,"name")="cvs_MD5_CTX.bits" + Set gtmtypes("cvs_MD5_CTX",2,"off")=16 + Set gtmtypes("cvs_MD5_CTX",2,"len")=8 + Set gtmtypes("cvs_MD5_CTX",2,"type")="unsigned-long" + Set gtmtypfldindx("cvs_MD5_CTX","bits")=2 + Set gtmtypes("cvs_MD5_CTX",2,"dim")=2 + Set gtmtypes("cvs_MD5_CTX",3,"name")="cvs_MD5_CTX.in" + Set gtmtypes("cvs_MD5_CTX",3,"off")=24 + Set gtmtypes("cvs_MD5_CTX",3,"len")=64 + Set gtmtypes("cvs_MD5_CTX",3,"type")="unsigned-char" + Set gtmtypfldindx("cvs_MD5_CTX","in")=3 + ; + Set gtmtypes("cw_set_element")="struct" + Set gtmtypes("cw_set_element",0)=33 + Set gtmtypes("cw_set_element","len")=144 + Set gtmtypes("cw_set_element",1,"name")="cw_set_element.tn" + Set gtmtypes("cw_set_element",1,"off")=0 + Set gtmtypes("cw_set_element",1,"len")=8 + Set gtmtypes("cw_set_element",1,"type")="uint64_t" + Set gtmtypfldindx("cw_set_element","tn")=1 + Set gtmtypes("cw_set_element",2,"name")="cw_set_element.old_block" + Set gtmtypes("cw_set_element",2,"off")=8 + Set gtmtypes("cw_set_element",2,"len")=4 + Set gtmtypes("cw_set_element",2,"type")="addr" + Set gtmtypfldindx("cw_set_element","old_block")=2 + Set gtmtypes("cw_set_element",3,"name")="cw_set_element.cr" + Set gtmtypes("cw_set_element",3,"off")=12 + Set gtmtypes("cw_set_element",3,"len")=4 + Set gtmtypes("cw_set_element",3,"type")="addr" + Set gtmtypfldindx("cw_set_element","cr")=3 + Set gtmtypes("cw_set_element",4,"name")="cw_set_element.next_cw_set" + Set gtmtypes("cw_set_element",4,"off")=16 + Set gtmtypes("cw_set_element",4,"len")=4 + Set gtmtypes("cw_set_element",4,"type")="addr" + Set gtmtypfldindx("cw_set_element","next_cw_set")=4 + Set gtmtypes("cw_set_element",5,"name")="cw_set_element.prev_cw_set" + Set gtmtypes("cw_set_element",5,"off")=20 + Set gtmtypes("cw_set_element",5,"len")=4 + Set gtmtypes("cw_set_element",5,"type")="addr" + Set gtmtypfldindx("cw_set_element","prev_cw_set")=5 + Set gtmtypes("cw_set_element",6,"name")="cw_set_element.high_tlevel" + Set gtmtypes("cw_set_element",6,"off")=24 + Set gtmtypes("cw_set_element",6,"len")=4 + Set gtmtypes("cw_set_element",6,"type")="addr" + Set gtmtypfldindx("cw_set_element","high_tlevel")=6 + Set gtmtypes("cw_set_element",7,"name")="cw_set_element.low_tlevel" + Set gtmtypes("cw_set_element",7,"off")=28 + Set gtmtypes("cw_set_element",7,"len")=4 + Set gtmtypes("cw_set_element",7,"type")="addr" + Set gtmtypfldindx("cw_set_element","low_tlevel")=7 + Set gtmtypes("cw_set_element",8,"name")="cw_set_element.jnl_freeaddr" + Set gtmtypes("cw_set_element",8,"off")=32 + Set gtmtypes("cw_set_element",8,"len")=4 + Set gtmtypes("cw_set_element",8,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","jnl_freeaddr")=8 + Set gtmtypes("cw_set_element",9,"name")="cw_set_element.write_type" + Set gtmtypes("cw_set_element",9,"off")=36 + Set gtmtypes("cw_set_element",9,"len")=4 + Set gtmtypes("cw_set_element",9,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","write_type")=9 + Set gtmtypes("cw_set_element",10,"name")="cw_set_element.recompute_list_head" + Set gtmtypes("cw_set_element",10,"off")=40 + Set gtmtypes("cw_set_element",10,"len")=4 + Set gtmtypes("cw_set_element",10,"type")="addr" + Set gtmtypfldindx("cw_set_element","recompute_list_head")=10 + Set gtmtypes("cw_set_element",11,"name")="cw_set_element.recompute_list_tail" + Set gtmtypes("cw_set_element",11,"off")=44 + Set gtmtypes("cw_set_element",11,"len")=4 + Set gtmtypes("cw_set_element",11,"type")="addr" + Set gtmtypfldindx("cw_set_element","recompute_list_tail")=11 + Set gtmtypes("cw_set_element",12,"name")="cw_set_element.mode" + Set gtmtypes("cw_set_element",12,"off")=48 + Set gtmtypes("cw_set_element",12,"len")=4 + Set gtmtypes("cw_set_element",12,"type")="int" + Set gtmtypfldindx("cw_set_element","mode")=12 + Set gtmtypes("cw_set_element",13,"name")="cw_set_element.blk" + Set gtmtypes("cw_set_element",13,"off")=52 + Set gtmtypes("cw_set_element",13,"len")=4 + Set gtmtypes("cw_set_element",13,"type")="int" + Set gtmtypfldindx("cw_set_element","blk")=13 + Set gtmtypes("cw_set_element",14,"name")="cw_set_element.upd_addr" + Set gtmtypes("cw_set_element",14,"off")=56 + Set gtmtypes("cw_set_element",14,"len")=4 + Set gtmtypes("cw_set_element",14,"type")="addr" + Set gtmtypfldindx("cw_set_element","upd_addr")=14 + Set gtmtypes("cw_set_element",15,"name")="cw_set_element.new_buff" + Set gtmtypes("cw_set_element",15,"off")=60 + Set gtmtypes("cw_set_element",15,"len")=4 + Set gtmtypes("cw_set_element",15,"type")="addr" + Set gtmtypfldindx("cw_set_element","new_buff")=15 + Set gtmtypes("cw_set_element",16,"name")="cw_set_element.blk_target" + Set gtmtypes("cw_set_element",16,"off")=64 + Set gtmtypes("cw_set_element",16,"len")=4 + Set gtmtypes("cw_set_element",16,"type")="addr" + Set gtmtypfldindx("cw_set_element","blk_target")=16 + Set gtmtypes("cw_set_element",17,"name")="cw_set_element.cycle" + Set gtmtypes("cw_set_element",17,"off")=68 + Set gtmtypes("cw_set_element",17,"len")=4 + Set gtmtypes("cw_set_element",17,"type")="int" + Set gtmtypfldindx("cw_set_element","cycle")=17 + Set gtmtypes("cw_set_element",18,"name")="cw_set_element.first_off" + Set gtmtypes("cw_set_element",18,"off")=72 + Set gtmtypes("cw_set_element",18,"len")=4 + Set gtmtypes("cw_set_element",18,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","first_off")=18 + Set gtmtypes("cw_set_element",19,"name")="cw_set_element.ins_off" + Set gtmtypes("cw_set_element",19,"off")=76 + Set gtmtypes("cw_set_element",19,"len")=4 + Set gtmtypes("cw_set_element",19,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","ins_off")=19 + Set gtmtypes("cw_set_element",20,"name")="cw_set_element.next_off" + Set gtmtypes("cw_set_element",20,"off")=80 + Set gtmtypes("cw_set_element",20,"len")=4 + Set gtmtypes("cw_set_element",20,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","next_off")=20 + Set gtmtypes("cw_set_element",21,"name")="cw_set_element.index" + Set gtmtypes("cw_set_element",21,"off")=84 + Set gtmtypes("cw_set_element",21,"len")=4 + Set gtmtypes("cw_set_element",21,"type")="int" + Set gtmtypfldindx("cw_set_element","index")=21 + Set gtmtypes("cw_set_element",22,"name")="cw_set_element.reference_cnt" + Set gtmtypes("cw_set_element",22,"off")=88 + Set gtmtypes("cw_set_element",22,"len")=4 + Set gtmtypes("cw_set_element",22,"type")="int" + Set gtmtypfldindx("cw_set_element","reference_cnt")=22 + Set gtmtypes("cw_set_element",23,"name")="cw_set_element.level" + Set gtmtypes("cw_set_element",23,"off")=92 + Set gtmtypes("cw_set_element",23,"len")=4 + Set gtmtypes("cw_set_element",23,"type")="int" + Set gtmtypfldindx("cw_set_element","level")=23 + Set gtmtypes("cw_set_element",24,"name")="cw_set_element.done" + Set gtmtypes("cw_set_element",24,"off")=96 + Set gtmtypes("cw_set_element",24,"len")=4 + Set gtmtypes("cw_set_element",24,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","done")=24 + Set gtmtypes("cw_set_element",25,"name")="cw_set_element.first_copy" + Set gtmtypes("cw_set_element",25,"off")=100 + Set gtmtypes("cw_set_element",25,"len")=4 + Set gtmtypes("cw_set_element",25,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","first_copy")=25 + Set gtmtypes("cw_set_element",26,"name")="cw_set_element.forward_process" + Set gtmtypes("cw_set_element",26,"off")=104 + Set gtmtypes("cw_set_element",26,"len")=4 + Set gtmtypes("cw_set_element",26,"type")="boolean_t" + Set gtmtypfldindx("cw_set_element","forward_process")=26 + Set gtmtypes("cw_set_element",27,"name")="cw_set_element.t_level" + Set gtmtypes("cw_set_element",27,"off")=108 + Set gtmtypes("cw_set_element",27,"len")=4 + Set gtmtypes("cw_set_element",27,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","t_level")=27 + Set gtmtypes("cw_set_element",28,"name")="cw_set_element.ondsk_blkver" + Set gtmtypes("cw_set_element",28,"off")=112 + Set gtmtypes("cw_set_element",28,"len")=4 + Set gtmtypes("cw_set_element",28,"type")="int" + Set gtmtypfldindx("cw_set_element","ondsk_blkver")=28 + Set gtmtypes("cw_set_element",29,"name")="cw_set_element.old_mode" + Set gtmtypes("cw_set_element",29,"off")=116 + Set gtmtypes("cw_set_element",29,"len")=4 + Set gtmtypes("cw_set_element",29,"type")="int" + Set gtmtypfldindx("cw_set_element","old_mode")=29 + Set gtmtypes("cw_set_element",30,"name")="cw_set_element.undo_next_off" + Set gtmtypes("cw_set_element",30,"off")=120 + Set gtmtypes("cw_set_element",30,"len")=8 + Set gtmtypes("cw_set_element",30,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","undo_next_off")=30 + Set gtmtypes("cw_set_element",30,"dim")=2 + Set gtmtypes("cw_set_element",31,"name")="cw_set_element.undo_offset" + Set gtmtypes("cw_set_element",31,"off")=128 + Set gtmtypes("cw_set_element",31,"len")=8 + Set gtmtypes("cw_set_element",31,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","undo_offset")=31 + Set gtmtypes("cw_set_element",31,"dim")=2 + Set gtmtypes("cw_set_element",32,"name")="cw_set_element.blk_checksum" + Set gtmtypes("cw_set_element",32,"off")=136 + Set gtmtypes("cw_set_element",32,"len")=4 + Set gtmtypes("cw_set_element",32,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","blk_checksum")=32 + Set gtmtypes("cw_set_element",33,"name")="cw_set_element.blk_prior_state" + Set gtmtypes("cw_set_element",33,"off")=140 + Set gtmtypes("cw_set_element",33,"len")=4 + Set gtmtypes("cw_set_element",33,"type")="unsigned-int" + Set gtmtypfldindx("cw_set_element","blk_prior_state")=33 + ; + Set gtmtypes("d_mt_struct")="struct" + Set gtmtypes("d_mt_struct",0)=32 + Set gtmtypes("d_mt_struct","len")=148 + Set gtmtypes("d_mt_struct",1,"name")="d_mt_struct.access_id" + Set gtmtypes("d_mt_struct",1,"off")=0 + Set gtmtypes("d_mt_struct",1,"len")=4 + Set gtmtypes("d_mt_struct",1,"type")="int" + Set gtmtypfldindx("d_mt_struct","access_id")=1 + Set gtmtypes("d_mt_struct",2,"name")="d_mt_struct.read_mask" + Set gtmtypes("d_mt_struct",2,"off")=4 + Set gtmtypes("d_mt_struct",2,"len")=4 + Set gtmtypes("d_mt_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","read_mask")=2 + Set gtmtypes("d_mt_struct",3,"name")="d_mt_struct.write_mask" + Set gtmtypes("d_mt_struct",3,"off")=8 + Set gtmtypes("d_mt_struct",3,"len")=4 + Set gtmtypes("d_mt_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","write_mask")=3 + Set gtmtypes("d_mt_struct",4,"name")="d_mt_struct.record_sz" + Set gtmtypes("d_mt_struct",4,"off")=12 + Set gtmtypes("d_mt_struct",4,"len")=4 + Set gtmtypes("d_mt_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","record_sz")=4 + Set gtmtypes("d_mt_struct",5,"name")="d_mt_struct.block_sz" + Set gtmtypes("d_mt_struct",5,"off")=16 + Set gtmtypes("d_mt_struct",5,"len")=4 + Set gtmtypes("d_mt_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","block_sz")=5 + Set gtmtypes("d_mt_struct",6,"name")="d_mt_struct.filepos" + Set gtmtypes("d_mt_struct",6,"off")=20 + Set gtmtypes("d_mt_struct",6,"len")=2 + Set gtmtypes("d_mt_struct",6,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","filepos")=6 + Set gtmtypes("d_mt_struct",7,"name")="d_mt_struct.recpos" + Set gtmtypes("d_mt_struct",7,"off")=22 + Set gtmtypes("d_mt_struct",7,"len")=2 + Set gtmtypes("d_mt_struct",7,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","recpos")=7 + Set gtmtypes("d_mt_struct",8,"name")="d_mt_struct.mode" + Set gtmtypes("d_mt_struct",8,"off")=24 + Set gtmtypes("d_mt_struct",8,"len")=2 + Set gtmtypes("d_mt_struct",8,"type")="unsigned-short" + Set gtmtypfldindx("d_mt_struct","mode")=8 + Set gtmtypes("d_mt_struct",9,"name")="d_mt_struct.filename" + Set gtmtypes("d_mt_struct",9,"off")=26 + Set gtmtypes("d_mt_struct",9,"len")=64 + Set gtmtypes("d_mt_struct",9,"type")="char" + Set gtmtypfldindx("d_mt_struct","filename")=9 + Set gtmtypes("d_mt_struct",10,"name")="d_mt_struct.buffer" + Set gtmtypes("d_mt_struct",10,"off")=92 + Set gtmtypes("d_mt_struct",10,"len")=4 + Set gtmtypes("d_mt_struct",10,"type")="addr" + Set gtmtypfldindx("d_mt_struct","buffer")=10 + Set gtmtypes("d_mt_struct",11,"name")="d_mt_struct.bufftop" + Set gtmtypes("d_mt_struct",11,"off")=96 + Set gtmtypes("d_mt_struct",11,"len")=4 + Set gtmtypes("d_mt_struct",11,"type")="addr" + Set gtmtypfldindx("d_mt_struct","bufftop")=11 + Set gtmtypes("d_mt_struct",12,"name")="d_mt_struct.buffptr" + Set gtmtypes("d_mt_struct",12,"off")=100 + Set gtmtypes("d_mt_struct",12,"len")=4 + Set gtmtypes("d_mt_struct",12,"type")="addr" + Set gtmtypfldindx("d_mt_struct","buffptr")=12 + Set gtmtypes("d_mt_struct",13,"name")="d_mt_struct.cap" + Set gtmtypes("d_mt_struct",13,"off")=104 + Set gtmtypes("d_mt_struct",13,"len")=12 + Set gtmtypes("d_mt_struct",13,"type")="m_cap" + Set gtmtypfldindx("d_mt_struct","cap")=13 + Set gtmtypes("d_mt_struct",14,"name")="d_mt_struct.cap.mt_type" + Set gtmtypes("d_mt_struct",14,"off")=104 + Set gtmtypes("d_mt_struct",14,"len")=4 + Set gtmtypes("d_mt_struct",14,"type")="int" + Set gtmtypfldindx("d_mt_struct","cap.mt_type")=14 + Set gtmtypes("d_mt_struct",15,"name")="d_mt_struct.cap.is_seekable" + Set gtmtypes("d_mt_struct",15,"off")=108 + Set gtmtypes("d_mt_struct",15,"len")=1 + Set gtmtypes("d_mt_struct",15,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.is_seekable")=15 + Set gtmtypes("d_mt_struct",16,"name")="d_mt_struct.cap.filemarks_supported" + Set gtmtypes("d_mt_struct",16,"off")=109 + Set gtmtypes("d_mt_struct",16,"len")=1 + Set gtmtypes("d_mt_struct",16,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.filemarks_supported")=16 + Set gtmtypes("d_mt_struct",17,"name")="d_mt_struct.cap.req_extra_filemark" + Set gtmtypes("d_mt_struct",17,"off")=110 + Set gtmtypes("d_mt_struct",17,"len")=1 + Set gtmtypes("d_mt_struct",17,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.req_extra_filemark")=17 + Set gtmtypes("d_mt_struct",18,"name")="d_mt_struct.cap.can_bksp_by_filemark" + Set gtmtypes("d_mt_struct",18,"off")=111 + Set gtmtypes("d_mt_struct",18,"len")=1 + Set gtmtypes("d_mt_struct",18,"type")="char" + Set gtmtypfldindx("d_mt_struct","cap.can_bksp_by_filemark")=18 + Set gtmtypes("d_mt_struct",19,"name")="d_mt_struct.cap.block_size" + Set gtmtypes("d_mt_struct",19,"off")=112 + Set gtmtypes("d_mt_struct",19,"len")=4 + Set gtmtypes("d_mt_struct",19,"type")="int" + Set gtmtypfldindx("d_mt_struct","cap.block_size")=19 + Set gtmtypes("d_mt_struct",20,"name")="d_mt_struct.bufftoggle" + Set gtmtypes("d_mt_struct",20,"off")=116 + Set gtmtypes("d_mt_struct",20,"len")=4 + Set gtmtypes("d_mt_struct",20,"type")="int" + Set gtmtypfldindx("d_mt_struct","bufftoggle")=20 + Set gtmtypes("d_mt_struct",21,"name")="d_mt_struct.ebcdic" + Set gtmtypes("d_mt_struct",21,"off")=120 + Set gtmtypes("d_mt_struct",21,"len")=1 + Set gtmtypes("d_mt_struct",21,"type")="char" + Set gtmtypfldindx("d_mt_struct","ebcdic")=21 + Set gtmtypes("d_mt_struct",22,"name")="d_mt_struct.labeled" + Set gtmtypes("d_mt_struct",22,"off")=121 + Set gtmtypes("d_mt_struct",22,"len")=1 + Set gtmtypes("d_mt_struct",22,"type")="unsigned-char" + Set gtmtypfldindx("d_mt_struct","labeled")=22 + Set gtmtypes("d_mt_struct",23,"name")="d_mt_struct.rec" + Set gtmtypes("d_mt_struct",23,"off")=124 + Set gtmtypes("d_mt_struct",23,"len")=12 + Set gtmtypes("d_mt_struct",23,"type")="mstr" + Set gtmtypfldindx("d_mt_struct","rec")=23 + Set gtmtypes("d_mt_struct",24,"name")="d_mt_struct.rec.char_len" + Set gtmtypes("d_mt_struct",24,"off")=124 + Set gtmtypes("d_mt_struct",24,"len")=4 + Set gtmtypes("d_mt_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("d_mt_struct","rec.char_len")=24 + Set gtmtypes("d_mt_struct",25,"name")="d_mt_struct.rec.len" + Set gtmtypes("d_mt_struct",25,"off")=128 + Set gtmtypes("d_mt_struct",25,"len")=4 + Set gtmtypes("d_mt_struct",25,"type")="int" + Set gtmtypfldindx("d_mt_struct","rec.len")=25 + Set gtmtypes("d_mt_struct",26,"name")="d_mt_struct.rec.addr" + Set gtmtypes("d_mt_struct",26,"off")=132 + Set gtmtypes("d_mt_struct",26,"len")=4 + Set gtmtypes("d_mt_struct",26,"type")="addr" + Set gtmtypfldindx("d_mt_struct","rec.addr")=26 + Set gtmtypes("d_mt_struct",27,"name")="d_mt_struct.last_op" + Set gtmtypes("d_mt_struct",27,"off")=136 + Set gtmtypes("d_mt_struct",27,"len")=4 + Set gtmtypes("d_mt_struct",27,"type")="int" + Set gtmtypfldindx("d_mt_struct","last_op")=27 + Set gtmtypes("d_mt_struct",28,"name")="d_mt_struct.newversion" + Set gtmtypes("d_mt_struct",28,"off")=140 + Set gtmtypes("d_mt_struct",28,"len")=1 + Set gtmtypes("d_mt_struct",28,"type")="char" + Set gtmtypfldindx("d_mt_struct","newversion")=28 + Set gtmtypes("d_mt_struct",29,"name")="d_mt_struct.read_only" + Set gtmtypes("d_mt_struct",29,"off")=141 + Set gtmtypes("d_mt_struct",29,"len")=1 + Set gtmtypes("d_mt_struct",29,"type")="char" + Set gtmtypfldindx("d_mt_struct","read_only")=29 + Set gtmtypes("d_mt_struct",30,"name")="d_mt_struct.wrap" + Set gtmtypes("d_mt_struct",30,"off")=142 + Set gtmtypes("d_mt_struct",30,"len")=1 + Set gtmtypes("d_mt_struct",30,"type")="char" + Set gtmtypfldindx("d_mt_struct","wrap")=30 + Set gtmtypes("d_mt_struct",31,"name")="d_mt_struct.fixed" + Set gtmtypes("d_mt_struct",31,"off")=143 + Set gtmtypes("d_mt_struct",31,"len")=1 + Set gtmtypes("d_mt_struct",31,"type")="char" + Set gtmtypfldindx("d_mt_struct","fixed")=31 + Set gtmtypes("d_mt_struct",32,"name")="d_mt_struct.stream" + Set gtmtypes("d_mt_struct",32,"off")=144 + Set gtmtypes("d_mt_struct",32,"len")=1 + Set gtmtypes("d_mt_struct",32,"type")="char" + Set gtmtypfldindx("d_mt_struct","stream")=32 + ; + Set gtmtypes("d_rm_struct")="struct" + Set gtmtypes("d_rm_struct",0)=88 + Set gtmtypes("d_rm_struct","len")=856 + Set gtmtypes("d_rm_struct",1,"name")="d_rm_struct.fixed" + Set gtmtypes("d_rm_struct",1,"off")=0 + Set gtmtypes("d_rm_struct",1,"len")=4 + Set gtmtypes("d_rm_struct",1,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","fixed")=1 + Set gtmtypes("d_rm_struct",2,"name")="d_rm_struct.read_only" + Set gtmtypes("d_rm_struct",2,"off")=4 + Set gtmtypes("d_rm_struct",2,"len")=4 + Set gtmtypes("d_rm_struct",2,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","read_only")=2 + Set gtmtypes("d_rm_struct",3,"name")="d_rm_struct.write_only" + Set gtmtypes("d_rm_struct",3,"off")=8 + Set gtmtypes("d_rm_struct",3,"len")=4 + Set gtmtypes("d_rm_struct",3,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","write_only")=3 + Set gtmtypes("d_rm_struct",4,"name")="d_rm_struct.stream" + Set gtmtypes("d_rm_struct",4,"off")=12 + Set gtmtypes("d_rm_struct",4,"len")=4 + Set gtmtypes("d_rm_struct",4,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","stream")=4 + Set gtmtypes("d_rm_struct",5,"name")="d_rm_struct.fifo" + Set gtmtypes("d_rm_struct",5,"off")=16 + Set gtmtypes("d_rm_struct",5,"len")=4 + Set gtmtypes("d_rm_struct",5,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","fifo")=5 + Set gtmtypes("d_rm_struct",6,"name")="d_rm_struct.gtm_pipe1" + Set gtmtypes("d_rm_struct",6,"off")=20 + Set gtmtypes("d_rm_struct",6,"len")=4 + Set gtmtypes("d_rm_struct",6,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","gtm_pipe1")=6 + Set gtmtypes("d_rm_struct",7,"name")="d_rm_struct.independent" + Set gtmtypes("d_rm_struct",7,"off")=24 + Set gtmtypes("d_rm_struct",7,"len")=4 + Set gtmtypes("d_rm_struct",7,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","independent")=7 + Set gtmtypes("d_rm_struct",8,"name")="d_rm_struct.parse" + Set gtmtypes("d_rm_struct",8,"off")=28 + Set gtmtypes("d_rm_struct",8,"len")=4 + Set gtmtypes("d_rm_struct",8,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","parse")=8 + Set gtmtypes("d_rm_struct",9,"name")="d_rm_struct.done_1st_read" + Set gtmtypes("d_rm_struct",9,"off")=32 + Set gtmtypes("d_rm_struct",9,"len")=4 + Set gtmtypes("d_rm_struct",9,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","done_1st_read")=9 + Set gtmtypes("d_rm_struct",10,"name")="d_rm_struct.done_1st_write" + Set gtmtypes("d_rm_struct",10,"off")=36 + Set gtmtypes("d_rm_struct",10,"len")=4 + Set gtmtypes("d_rm_struct",10,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","done_1st_write")=10 + Set gtmtypes("d_rm_struct",11,"name")="d_rm_struct.crlast" + Set gtmtypes("d_rm_struct",11,"off")=40 + Set gtmtypes("d_rm_struct",11,"len")=4 + Set gtmtypes("d_rm_struct",11,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","crlast")=11 + Set gtmtypes("d_rm_struct",12,"name")="d_rm_struct.def_width" + Set gtmtypes("d_rm_struct",12,"off")=44 + Set gtmtypes("d_rm_struct",12,"len")=4 + Set gtmtypes("d_rm_struct",12,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","def_width")=12 + Set gtmtypes("d_rm_struct",13,"name")="d_rm_struct.def_recsize" + Set gtmtypes("d_rm_struct",13,"off")=48 + Set gtmtypes("d_rm_struct",13,"len")=4 + Set gtmtypes("d_rm_struct",13,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","def_recsize")=13 + Set gtmtypes("d_rm_struct",14,"name")="d_rm_struct.bom_read_one_done" + Set gtmtypes("d_rm_struct",14,"off")=52 + Set gtmtypes("d_rm_struct",14,"len")=4 + Set gtmtypes("d_rm_struct",14,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","bom_read_one_done")=14 + Set gtmtypes("d_rm_struct",15,"name")="d_rm_struct.follow" + Set gtmtypes("d_rm_struct",15,"off")=56 + Set gtmtypes("d_rm_struct",15,"len")=4 + Set gtmtypes("d_rm_struct",15,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","follow")=15 + Set gtmtypes("d_rm_struct",16,"name")="d_rm_struct.no_destroy" + Set gtmtypes("d_rm_struct",16,"off")=60 + Set gtmtypes("d_rm_struct",16,"len")=4 + Set gtmtypes("d_rm_struct",16,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","no_destroy")=16 + Set gtmtypes("d_rm_struct",17,"name")="d_rm_struct.bom_checked" + Set gtmtypes("d_rm_struct",17,"off")=64 + Set gtmtypes("d_rm_struct",17,"len")=4 + Set gtmtypes("d_rm_struct",17,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","bom_checked")=17 + Set gtmtypes("d_rm_struct",18,"name")="d_rm_struct.pipe_save_state" + Set gtmtypes("d_rm_struct",18,"off")=68 + Set gtmtypes("d_rm_struct",18,"len")=44 + Set gtmtypes("d_rm_struct",18,"type")="pipe_interrupt" + Set gtmtypfldindx("d_rm_struct","pipe_save_state")=18 + Set gtmtypes("d_rm_struct",19,"name")="d_rm_struct.pipe_save_state.end_time" + Set gtmtypes("d_rm_struct",19,"off")=68 + Set gtmtypes("d_rm_struct",19,"len")=8 + Set gtmtypes("d_rm_struct",19,"type")="ABS_TIME" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.end_time")=19 + Set gtmtypes("d_rm_struct",20,"name")="d_rm_struct.pipe_save_state.who_saved" + Set gtmtypes("d_rm_struct",20,"off")=76 + Set gtmtypes("d_rm_struct",20,"len")=4 + Set gtmtypes("d_rm_struct",20,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.who_saved")=20 + Set gtmtypes("d_rm_struct",21,"name")="d_rm_struct.pipe_save_state.max_bufflen" + Set gtmtypes("d_rm_struct",21,"off")=80 + Set gtmtypes("d_rm_struct",21,"len")=4 + Set gtmtypes("d_rm_struct",21,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.max_bufflen")=21 + Set gtmtypes("d_rm_struct",22,"name")="d_rm_struct.pipe_save_state.bytes_read" + Set gtmtypes("d_rm_struct",22,"off")=84 + Set gtmtypes("d_rm_struct",22,"len")=4 + Set gtmtypes("d_rm_struct",22,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes_read")=22 + Set gtmtypes("d_rm_struct",23,"name")="d_rm_struct.pipe_save_state.bytes2read" + Set gtmtypes("d_rm_struct",23,"off")=88 + Set gtmtypes("d_rm_struct",23,"len")=4 + Set gtmtypes("d_rm_struct",23,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes2read")=23 + Set gtmtypes("d_rm_struct",24,"name")="d_rm_struct.pipe_save_state.char_count" + Set gtmtypes("d_rm_struct",24,"off")=92 + Set gtmtypes("d_rm_struct",24,"len")=4 + Set gtmtypes("d_rm_struct",24,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.char_count")=24 + Set gtmtypes("d_rm_struct",25,"name")="d_rm_struct.pipe_save_state.bytes_count" + Set gtmtypes("d_rm_struct",25,"off")=96 + Set gtmtypes("d_rm_struct",25,"len")=4 + Set gtmtypes("d_rm_struct",25,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.bytes_count")=25 + Set gtmtypes("d_rm_struct",26,"name")="d_rm_struct.pipe_save_state.add_bytes" + Set gtmtypes("d_rm_struct",26,"off")=100 + Set gtmtypes("d_rm_struct",26,"len")=4 + Set gtmtypes("d_rm_struct",26,"type")="int" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.add_bytes")=26 + Set gtmtypes("d_rm_struct",27,"name")="d_rm_struct.pipe_save_state.end_time_valid" + Set gtmtypes("d_rm_struct",27,"off")=104 + Set gtmtypes("d_rm_struct",27,"len")=4 + Set gtmtypes("d_rm_struct",27,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.end_time_valid")=27 + Set gtmtypes("d_rm_struct",28,"name")="d_rm_struct.pipe_save_state.newpipe" + Set gtmtypes("d_rm_struct",28,"off")=108 + Set gtmtypes("d_rm_struct",28,"len")=4 + Set gtmtypes("d_rm_struct",28,"type")="addr" + Set gtmtypfldindx("d_rm_struct","pipe_save_state.newpipe")=28 + Set gtmtypes("d_rm_struct",29,"name")="d_rm_struct.mupintr" + Set gtmtypes("d_rm_struct",29,"off")=112 + Set gtmtypes("d_rm_struct",29,"len")=4 + Set gtmtypes("d_rm_struct",29,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","mupintr")=29 + Set gtmtypes("d_rm_struct",30,"name")="d_rm_struct.lastop" + Set gtmtypes("d_rm_struct",30,"off")=116 + Set gtmtypes("d_rm_struct",30,"len")=4 + Set gtmtypes("d_rm_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","lastop")=30 + Set gtmtypes("d_rm_struct",31,"name")="d_rm_struct.fildes" + Set gtmtypes("d_rm_struct",31,"off")=120 + Set gtmtypes("d_rm_struct",31,"len")=4 + Set gtmtypes("d_rm_struct",31,"type")="int" + Set gtmtypfldindx("d_rm_struct","fildes")=31 + Set gtmtypes("d_rm_struct",32,"name")="d_rm_struct.read_fildes" + Set gtmtypes("d_rm_struct",32,"off")=124 + Set gtmtypes("d_rm_struct",32,"len")=4 + Set gtmtypes("d_rm_struct",32,"type")="int" + Set gtmtypfldindx("d_rm_struct","read_fildes")=32 + Set gtmtypes("d_rm_struct",33,"name")="d_rm_struct.read_filstr" + Set gtmtypes("d_rm_struct",33,"off")=128 + Set gtmtypes("d_rm_struct",33,"len")=4 + Set gtmtypes("d_rm_struct",33,"type")="addr" + Set gtmtypfldindx("d_rm_struct","read_filstr")=33 + Set gtmtypes("d_rm_struct",34,"name")="d_rm_struct.stderr_child" + Set gtmtypes("d_rm_struct",34,"off")=132 + Set gtmtypes("d_rm_struct",34,"len")=4 + Set gtmtypes("d_rm_struct",34,"type")="addr" + Set gtmtypfldindx("d_rm_struct","stderr_child")=34 + Set gtmtypes("d_rm_struct",35,"name")="d_rm_struct.stderr_parent" + Set gtmtypes("d_rm_struct",35,"off")=136 + Set gtmtypes("d_rm_struct",35,"len")=4 + Set gtmtypes("d_rm_struct",35,"type")="addr" + Set gtmtypfldindx("d_rm_struct","stderr_parent")=35 + Set gtmtypes("d_rm_struct",36,"name")="d_rm_struct.pipe_pid" + Set gtmtypes("d_rm_struct",36,"off")=140 + Set gtmtypes("d_rm_struct",36,"len")=4 + Set gtmtypes("d_rm_struct",36,"type")="pid_t" + Set gtmtypfldindx("d_rm_struct","pipe_pid")=36 + Set gtmtypes("d_rm_struct",37,"name")="d_rm_struct.dev_param_pairs" + Set gtmtypes("d_rm_struct",37,"off")=144 + Set gtmtypes("d_rm_struct",37,"len")=28 + Set gtmtypes("d_rm_struct",37,"type")="Dev_param_pairs" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs")=37 + Set gtmtypes("d_rm_struct",38,"name")="d_rm_struct.dev_param_pairs.num_pairs" + Set gtmtypes("d_rm_struct",38,"off")=144 + Set gtmtypes("d_rm_struct",38,"len")=4 + Set gtmtypes("d_rm_struct",38,"type")="int" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.num_pairs")=38 + Set gtmtypes("d_rm_struct",39,"name")="d_rm_struct.dev_param_pairs.pairs" + Set gtmtypes("d_rm_struct",39,"off")=148 + Set gtmtypes("d_rm_struct",39,"len")=24 + Set gtmtypes("d_rm_struct",39,"type")="Dev_param_pair" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs")=39 + Set gtmtypes("d_rm_struct",39,"dim")=3 + Set gtmtypes("d_rm_struct",40,"name")="d_rm_struct.dev_param_pairs.pairs[0].name" + Set gtmtypes("d_rm_struct",40,"off")=148 + Set gtmtypes("d_rm_struct",40,"len")=4 + Set gtmtypes("d_rm_struct",40,"type")="addr" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs[0].name")=40 + Set gtmtypes("d_rm_struct",41,"name")="d_rm_struct.dev_param_pairs.pairs[0].definition" + Set gtmtypes("d_rm_struct",41,"off")=152 + Set gtmtypes("d_rm_struct",41,"len")=4 + Set gtmtypes("d_rm_struct",41,"type")="addr" + Set gtmtypfldindx("d_rm_struct","dev_param_pairs.pairs[0].definition")=41 + Set gtmtypes("d_rm_struct",42,"name")="d_rm_struct.bufsize" + Set gtmtypes("d_rm_struct",42,"off")=172 + Set gtmtypes("d_rm_struct",42,"len")=4 + Set gtmtypes("d_rm_struct",42,"type")="int" + Set gtmtypfldindx("d_rm_struct","bufsize")=42 + Set gtmtypes("d_rm_struct",43,"name")="d_rm_struct.outbufsize" + Set gtmtypes("d_rm_struct",43,"off")=176 + Set gtmtypes("d_rm_struct",43,"len")=4 + Set gtmtypes("d_rm_struct",43,"type")="int" + Set gtmtypfldindx("d_rm_struct","outbufsize")=43 + Set gtmtypes("d_rm_struct",44,"name")="d_rm_struct.recordsize" + Set gtmtypes("d_rm_struct",44,"off")=180 + Set gtmtypes("d_rm_struct",44,"len")=4 + Set gtmtypes("d_rm_struct",44,"type")="int" + Set gtmtypfldindx("d_rm_struct","recordsize")=44 + Set gtmtypes("d_rm_struct",45,"name")="d_rm_struct.padchar" + Set gtmtypes("d_rm_struct",45,"off")=184 + Set gtmtypes("d_rm_struct",45,"len")=4 + Set gtmtypes("d_rm_struct",45,"type")="int" + Set gtmtypfldindx("d_rm_struct","padchar")=45 + Set gtmtypes("d_rm_struct",46,"name")="d_rm_struct.fol_bytes_read" + Set gtmtypes("d_rm_struct",46,"off")=188 + Set gtmtypes("d_rm_struct",46,"len")=4 + Set gtmtypes("d_rm_struct",46,"type")="int" + Set gtmtypfldindx("d_rm_struct","fol_bytes_read")=46 + Set gtmtypes("d_rm_struct",47,"name")="d_rm_struct.last_was_timeout" + Set gtmtypes("d_rm_struct",47,"off")=192 + Set gtmtypes("d_rm_struct",47,"len")=4 + Set gtmtypes("d_rm_struct",47,"type")="int" + Set gtmtypfldindx("d_rm_struct","last_was_timeout")=47 + Set gtmtypes("d_rm_struct",48,"name")="d_rm_struct.orig_bytes_already_read" + Set gtmtypes("d_rm_struct",48,"off")=196 + Set gtmtypes("d_rm_struct",48,"len")=4 + Set gtmtypes("d_rm_struct",48,"type")="int" + Set gtmtypfldindx("d_rm_struct","orig_bytes_already_read")=48 + Set gtmtypes("d_rm_struct",49,"name")="d_rm_struct.out_bytes" + Set gtmtypes("d_rm_struct",49,"off")=200 + Set gtmtypes("d_rm_struct",49,"len")=4 + Set gtmtypes("d_rm_struct",49,"type")="int" + Set gtmtypfldindx("d_rm_struct","out_bytes")=49 + Set gtmtypes("d_rm_struct",50,"name")="d_rm_struct.bom_buf_cnt" + Set gtmtypes("d_rm_struct",50,"off")=204 + Set gtmtypes("d_rm_struct",50,"len")=4 + Set gtmtypes("d_rm_struct",50,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_buf_cnt")=50 + Set gtmtypes("d_rm_struct",51,"name")="d_rm_struct.bom_buf_off" + Set gtmtypes("d_rm_struct",51,"off")=208 + Set gtmtypes("d_rm_struct",51,"len")=4 + Set gtmtypes("d_rm_struct",51,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_buf_off")=51 + Set gtmtypes("d_rm_struct",52,"name")="d_rm_struct.bom_num_bytes" + Set gtmtypes("d_rm_struct",52,"off")=212 + Set gtmtypes("d_rm_struct",52,"len")=4 + Set gtmtypes("d_rm_struct",52,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","bom_num_bytes")=52 + Set gtmtypes("d_rm_struct",53,"name")="d_rm_struct.bom_buf" + Set gtmtypes("d_rm_struct",53,"off")=216 + Set gtmtypes("d_rm_struct",53,"len")=4 + Set gtmtypes("d_rm_struct",53,"type")="unsigned-char" + Set gtmtypfldindx("d_rm_struct","bom_buf")=53 + Set gtmtypes("d_rm_struct",54,"name")="d_rm_struct.inbuf" + Set gtmtypes("d_rm_struct",54,"off")=220 + Set gtmtypes("d_rm_struct",54,"len")=4 + Set gtmtypes("d_rm_struct",54,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf")=54 + Set gtmtypes("d_rm_struct",55,"name")="d_rm_struct.inbuf_pos" + Set gtmtypes("d_rm_struct",55,"off")=224 + Set gtmtypes("d_rm_struct",55,"len")=4 + Set gtmtypes("d_rm_struct",55,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_pos")=55 + Set gtmtypes("d_rm_struct",56,"name")="d_rm_struct.inbuf_off" + Set gtmtypes("d_rm_struct",56,"off")=228 + Set gtmtypes("d_rm_struct",56,"len")=4 + Set gtmtypes("d_rm_struct",56,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_off")=56 + Set gtmtypes("d_rm_struct",57,"name")="d_rm_struct.inbuf_top" + Set gtmtypes("d_rm_struct",57,"off")=232 + Set gtmtypes("d_rm_struct",57,"len")=4 + Set gtmtypes("d_rm_struct",57,"type")="addr" + Set gtmtypfldindx("d_rm_struct","inbuf_top")=57 + Set gtmtypes("d_rm_struct",58,"name")="d_rm_struct.outbuf" + Set gtmtypes("d_rm_struct",58,"off")=236 + Set gtmtypes("d_rm_struct",58,"len")=4 + Set gtmtypes("d_rm_struct",58,"type")="addr" + Set gtmtypfldindx("d_rm_struct","outbuf")=58 + Set gtmtypes("d_rm_struct",59,"name")="d_rm_struct.filstr" + Set gtmtypes("d_rm_struct",59,"off")=240 + Set gtmtypes("d_rm_struct",59,"len")=4 + Set gtmtypes("d_rm_struct",59,"type")="addr" + Set gtmtypfldindx("d_rm_struct","filstr")=59 + Set gtmtypes("d_rm_struct",60,"name")="d_rm_struct.file_pos" + Set gtmtypes("d_rm_struct",60,"off")=244 + Set gtmtypes("d_rm_struct",60,"len")=8 + Set gtmtypes("d_rm_struct",60,"type")="off_t" + Set gtmtypfldindx("d_rm_struct","file_pos")=60 + Set gtmtypes("d_rm_struct",61,"name")="d_rm_struct.pipe_buff_size" + Set gtmtypes("d_rm_struct",61,"off")=252 + Set gtmtypes("d_rm_struct",61,"len")=4 + Set gtmtypes("d_rm_struct",61,"type")="long" + Set gtmtypfldindx("d_rm_struct","pipe_buff_size")=61 + Set gtmtypes("d_rm_struct",62,"name")="d_rm_struct.utf_tmp_buffer" + Set gtmtypes("d_rm_struct",62,"off")=256 + Set gtmtypes("d_rm_struct",62,"len")=512 + Set gtmtypes("d_rm_struct",62,"type")="char" + Set gtmtypfldindx("d_rm_struct","utf_tmp_buffer")=62 + Set gtmtypes("d_rm_struct",63,"name")="d_rm_struct.utf_tot_bytes_in_buffer" + Set gtmtypes("d_rm_struct",63,"off")=768 + Set gtmtypes("d_rm_struct",63,"len")=4 + Set gtmtypes("d_rm_struct",63,"type")="int" + Set gtmtypfldindx("d_rm_struct","utf_tot_bytes_in_buffer")=63 + Set gtmtypes("d_rm_struct",64,"name")="d_rm_struct.utf_start_pos" + Set gtmtypes("d_rm_struct",64,"off")=772 + Set gtmtypes("d_rm_struct",64,"len")=4 + Set gtmtypes("d_rm_struct",64,"type")="int" + Set gtmtypfldindx("d_rm_struct","utf_start_pos")=64 + Set gtmtypes("d_rm_struct",65,"name")="d_rm_struct.write_occurred" + Set gtmtypes("d_rm_struct",65,"off")=776 + Set gtmtypes("d_rm_struct",65,"len")=4 + Set gtmtypes("d_rm_struct",65,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","write_occurred")=65 + Set gtmtypes("d_rm_struct",66,"name")="d_rm_struct.read_occurred" + Set gtmtypes("d_rm_struct",66,"off")=780 + Set gtmtypes("d_rm_struct",66,"len")=4 + Set gtmtypes("d_rm_struct",66,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","read_occurred")=66 + Set gtmtypes("d_rm_struct",67,"name")="d_rm_struct.input_encrypted" + Set gtmtypes("d_rm_struct",67,"off")=784 + Set gtmtypes("d_rm_struct",67,"len")=4 + Set gtmtypes("d_rm_struct",67,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","input_encrypted")=67 + Set gtmtypes("d_rm_struct",68,"name")="d_rm_struct.output_encrypted" + Set gtmtypes("d_rm_struct",68,"off")=788 + Set gtmtypes("d_rm_struct",68,"len")=4 + Set gtmtypes("d_rm_struct",68,"type")="boolean_t" + Set gtmtypfldindx("d_rm_struct","output_encrypted")=68 + Set gtmtypes("d_rm_struct",69,"name")="d_rm_struct.input_iv" + Set gtmtypes("d_rm_struct",69,"off")=792 + Set gtmtypes("d_rm_struct",69,"len")=12 + Set gtmtypes("d_rm_struct",69,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","input_iv")=69 + Set gtmtypes("d_rm_struct",70,"name")="d_rm_struct.input_iv.char_len" + Set gtmtypes("d_rm_struct",70,"off")=792 + Set gtmtypes("d_rm_struct",70,"len")=4 + Set gtmtypes("d_rm_struct",70,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","input_iv.char_len")=70 + Set gtmtypes("d_rm_struct",71,"name")="d_rm_struct.input_iv.len" + Set gtmtypes("d_rm_struct",71,"off")=796 + Set gtmtypes("d_rm_struct",71,"len")=4 + Set gtmtypes("d_rm_struct",71,"type")="int" + Set gtmtypfldindx("d_rm_struct","input_iv.len")=71 + Set gtmtypes("d_rm_struct",72,"name")="d_rm_struct.input_iv.addr" + Set gtmtypes("d_rm_struct",72,"off")=800 + Set gtmtypes("d_rm_struct",72,"len")=4 + Set gtmtypes("d_rm_struct",72,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_iv.addr")=72 + Set gtmtypes("d_rm_struct",73,"name")="d_rm_struct.output_iv" + Set gtmtypes("d_rm_struct",73,"off")=804 + Set gtmtypes("d_rm_struct",73,"len")=12 + Set gtmtypes("d_rm_struct",73,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","output_iv")=73 + Set gtmtypes("d_rm_struct",74,"name")="d_rm_struct.output_iv.char_len" + Set gtmtypes("d_rm_struct",74,"off")=804 + Set gtmtypes("d_rm_struct",74,"len")=4 + Set gtmtypes("d_rm_struct",74,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","output_iv.char_len")=74 + Set gtmtypes("d_rm_struct",75,"name")="d_rm_struct.output_iv.len" + Set gtmtypes("d_rm_struct",75,"off")=808 + Set gtmtypes("d_rm_struct",75,"len")=4 + Set gtmtypes("d_rm_struct",75,"type")="int" + Set gtmtypfldindx("d_rm_struct","output_iv.len")=75 + Set gtmtypes("d_rm_struct",76,"name")="d_rm_struct.output_iv.addr" + Set gtmtypes("d_rm_struct",76,"off")=812 + Set gtmtypes("d_rm_struct",76,"len")=4 + Set gtmtypes("d_rm_struct",76,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_iv.addr")=76 + Set gtmtypes("d_rm_struct",77,"name")="d_rm_struct.input_key" + Set gtmtypes("d_rm_struct",77,"off")=816 + Set gtmtypes("d_rm_struct",77,"len")=12 + Set gtmtypes("d_rm_struct",77,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","input_key")=77 + Set gtmtypes("d_rm_struct",78,"name")="d_rm_struct.input_key.char_len" + Set gtmtypes("d_rm_struct",78,"off")=816 + Set gtmtypes("d_rm_struct",78,"len")=4 + Set gtmtypes("d_rm_struct",78,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","input_key.char_len")=78 + Set gtmtypes("d_rm_struct",79,"name")="d_rm_struct.input_key.len" + Set gtmtypes("d_rm_struct",79,"off")=820 + Set gtmtypes("d_rm_struct",79,"len")=4 + Set gtmtypes("d_rm_struct",79,"type")="int" + Set gtmtypfldindx("d_rm_struct","input_key.len")=79 + Set gtmtypes("d_rm_struct",80,"name")="d_rm_struct.input_key.addr" + Set gtmtypes("d_rm_struct",80,"off")=824 + Set gtmtypes("d_rm_struct",80,"len")=4 + Set gtmtypes("d_rm_struct",80,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_key.addr")=80 + Set gtmtypes("d_rm_struct",81,"name")="d_rm_struct.output_key" + Set gtmtypes("d_rm_struct",81,"off")=828 + Set gtmtypes("d_rm_struct",81,"len")=12 + Set gtmtypes("d_rm_struct",81,"type")="mstr" + Set gtmtypfldindx("d_rm_struct","output_key")=81 + Set gtmtypes("d_rm_struct",82,"name")="d_rm_struct.output_key.char_len" + Set gtmtypes("d_rm_struct",82,"off")=828 + Set gtmtypes("d_rm_struct",82,"len")=4 + Set gtmtypes("d_rm_struct",82,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","output_key.char_len")=82 + Set gtmtypes("d_rm_struct",83,"name")="d_rm_struct.output_key.len" + Set gtmtypes("d_rm_struct",83,"off")=832 + Set gtmtypes("d_rm_struct",83,"len")=4 + Set gtmtypes("d_rm_struct",83,"type")="int" + Set gtmtypfldindx("d_rm_struct","output_key.len")=83 + Set gtmtypes("d_rm_struct",84,"name")="d_rm_struct.output_key.addr" + Set gtmtypes("d_rm_struct",84,"off")=836 + Set gtmtypes("d_rm_struct",84,"len")=4 + Set gtmtypes("d_rm_struct",84,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_key.addr")=84 + Set gtmtypes("d_rm_struct",85,"name")="d_rm_struct.input_cipher_handle" + Set gtmtypes("d_rm_struct",85,"off")=840 + Set gtmtypes("d_rm_struct",85,"len")=4 + Set gtmtypes("d_rm_struct",85,"type")="addr" + Set gtmtypfldindx("d_rm_struct","input_cipher_handle")=85 + Set gtmtypes("d_rm_struct",86,"name")="d_rm_struct.output_cipher_handle" + Set gtmtypes("d_rm_struct",86,"off")=844 + Set gtmtypes("d_rm_struct",86,"len")=4 + Set gtmtypes("d_rm_struct",86,"type")="addr" + Set gtmtypfldindx("d_rm_struct","output_cipher_handle")=86 + Set gtmtypes("d_rm_struct",87,"name")="d_rm_struct.fsblock_buffer_size" + Set gtmtypes("d_rm_struct",87,"off")=848 + Set gtmtypes("d_rm_struct",87,"len")=4 + Set gtmtypes("d_rm_struct",87,"type")="unsigned-int" + Set gtmtypfldindx("d_rm_struct","fsblock_buffer_size")=87 + Set gtmtypes("d_rm_struct",88,"name")="d_rm_struct.fsblock_buffer" + Set gtmtypes("d_rm_struct",88,"off")=852 + Set gtmtypes("d_rm_struct",88,"len")=4 + Set gtmtypes("d_rm_struct",88,"type")="addr" + Set gtmtypfldindx("d_rm_struct","fsblock_buffer")=88 + ; + Set gtmtypes("d_socket_struct")="struct" + Set gtmtypes("d_socket_struct",0)=17 + Set gtmtypes("d_socket_struct","len")=68 + Set gtmtypes("d_socket_struct",1,"name")="d_socket_struct.sock_save_state" + Set gtmtypes("d_socket_struct",1,"off")=0 + Set gtmtypes("d_socket_struct",1,"len")=36 + Set gtmtypes("d_socket_struct",1,"type")="socket_interrupt" + Set gtmtypfldindx("d_socket_struct","sock_save_state")=1 + Set gtmtypes("d_socket_struct",2,"name")="d_socket_struct.sock_save_state.end_time" + Set gtmtypes("d_socket_struct",2,"off")=0 + Set gtmtypes("d_socket_struct",2,"len")=8 + Set gtmtypes("d_socket_struct",2,"type")="ABS_TIME" + Set gtmtypfldindx("d_socket_struct","sock_save_state.end_time")=2 + Set gtmtypes("d_socket_struct",3,"name")="d_socket_struct.sock_save_state.who_saved" + Set gtmtypes("d_socket_struct",3,"off")=8 + Set gtmtypes("d_socket_struct",3,"len")=4 + Set gtmtypes("d_socket_struct",3,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.who_saved")=3 + Set gtmtypes("d_socket_struct",4,"name")="d_socket_struct.sock_save_state.max_bufflen" + Set gtmtypes("d_socket_struct",4,"off")=12 + Set gtmtypes("d_socket_struct",4,"len")=4 + Set gtmtypes("d_socket_struct",4,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.max_bufflen")=4 + Set gtmtypes("d_socket_struct",5,"name")="d_socket_struct.sock_save_state.bytes_read" + Set gtmtypes("d_socket_struct",5,"off")=16 + Set gtmtypes("d_socket_struct",5,"len")=4 + Set gtmtypes("d_socket_struct",5,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.bytes_read")=5 + Set gtmtypes("d_socket_struct",6,"name")="d_socket_struct.sock_save_state.chars_read" + Set gtmtypes("d_socket_struct",6,"off")=20 + Set gtmtypes("d_socket_struct",6,"len")=4 + Set gtmtypes("d_socket_struct",6,"type")="int" + Set gtmtypfldindx("d_socket_struct","sock_save_state.chars_read")=6 + Set gtmtypes("d_socket_struct",7,"name")="d_socket_struct.sock_save_state.end_time_valid" + Set gtmtypes("d_socket_struct",7,"off")=24 + Set gtmtypes("d_socket_struct",7,"len")=4 + Set gtmtypes("d_socket_struct",7,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","sock_save_state.end_time_valid")=7 + Set gtmtypes("d_socket_struct",8,"name")="d_socket_struct.sock_save_state.ibfsize_specified" + Set gtmtypes("d_socket_struct",8,"off")=28 + Set gtmtypes("d_socket_struct",8,"len")=4 + Set gtmtypes("d_socket_struct",8,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","sock_save_state.ibfsize_specified")=8 + Set gtmtypes("d_socket_struct",9,"name")="d_socket_struct.sock_save_state.newdsocket" + Set gtmtypes("d_socket_struct",9,"off")=32 + Set gtmtypes("d_socket_struct",9,"len")=4 + Set gtmtypes("d_socket_struct",9,"type")="addr" + Set gtmtypfldindx("d_socket_struct","sock_save_state.newdsocket")=9 + Set gtmtypes("d_socket_struct",10,"name")="d_socket_struct.mupintr" + Set gtmtypes("d_socket_struct",10,"off")=36 + Set gtmtypes("d_socket_struct",10,"len")=4 + Set gtmtypes("d_socket_struct",10,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","mupintr")=10 + Set gtmtypes("d_socket_struct",11,"name")="d_socket_struct.current_socket" + Set gtmtypes("d_socket_struct",11,"off")=40 + Set gtmtypes("d_socket_struct",11,"len")=4 + Set gtmtypes("d_socket_struct",11,"type")="int" + Set gtmtypfldindx("d_socket_struct","current_socket")=11 + Set gtmtypes("d_socket_struct",12,"name")="d_socket_struct.n_socket" + Set gtmtypes("d_socket_struct",12,"off")=44 + Set gtmtypes("d_socket_struct",12,"len")=4 + Set gtmtypes("d_socket_struct",12,"type")="int" + Set gtmtypfldindx("d_socket_struct","n_socket")=12 + Set gtmtypes("d_socket_struct",13,"name")="d_socket_struct.waitcycle" + Set gtmtypes("d_socket_struct",13,"off")=48 + Set gtmtypes("d_socket_struct",13,"len")=4 + Set gtmtypes("d_socket_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("d_socket_struct","waitcycle")=13 + Set gtmtypes("d_socket_struct",14,"name")="d_socket_struct.ichset_specified" + Set gtmtypes("d_socket_struct",14,"off")=52 + Set gtmtypes("d_socket_struct",14,"len")=4 + Set gtmtypes("d_socket_struct",14,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","ichset_specified")=14 + Set gtmtypes("d_socket_struct",15,"name")="d_socket_struct.ochset_specified" + Set gtmtypes("d_socket_struct",15,"off")=56 + Set gtmtypes("d_socket_struct",15,"len")=4 + Set gtmtypes("d_socket_struct",15,"type")="boolean_t" + Set gtmtypfldindx("d_socket_struct","ochset_specified")=15 + Set gtmtypes("d_socket_struct",16,"name")="d_socket_struct.iod" + Set gtmtypes("d_socket_struct",16,"off")=60 + Set gtmtypes("d_socket_struct",16,"len")=4 + Set gtmtypes("d_socket_struct",16,"type")="addr" + Set gtmtypfldindx("d_socket_struct","iod")=16 + Set gtmtypes("d_socket_struct",17,"name")="d_socket_struct.gtm_socket" + Set gtmtypes("d_socket_struct",17,"off")=64 + Set gtmtypes("d_socket_struct",17,"len")=4 + Set gtmtypes("d_socket_struct",17,"type")="addr" + Set gtmtypfldindx("d_socket_struct","gtm_socket")=17 + ; + Set gtmtypes("d_tt_struct")="struct" + Set gtmtypes("d_tt_struct",0)=48 + Set gtmtypes("d_tt_struct","len")=220 + Set gtmtypes("d_tt_struct",1,"name")="d_tt_struct.in_buf_sz" + Set gtmtypes("d_tt_struct",1,"off")=0 + Set gtmtypes("d_tt_struct",1,"len")=4 + Set gtmtypes("d_tt_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","in_buf_sz")=1 + Set gtmtypes("d_tt_struct",2,"name")="d_tt_struct.ext_cap" + Set gtmtypes("d_tt_struct",2,"off")=4 + Set gtmtypes("d_tt_struct",2,"len")=4 + Set gtmtypes("d_tt_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","ext_cap")=2 + Set gtmtypes("d_tt_struct",3,"name")="d_tt_struct.enbld_outofbands" + Set gtmtypes("d_tt_struct",3,"off")=8 + Set gtmtypes("d_tt_struct",3,"len")=8 + Set gtmtypes("d_tt_struct",3,"type")="io_terminator" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands")=3 + Set gtmtypes("d_tt_struct",4,"name")="d_tt_struct.enbld_outofbands.x" + Set gtmtypes("d_tt_struct",4,"off")=8 + Set gtmtypes("d_tt_struct",4,"len")=4 + Set gtmtypes("d_tt_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands.x")=4 + Set gtmtypes("d_tt_struct",5,"name")="d_tt_struct.enbld_outofbands.mask" + Set gtmtypes("d_tt_struct",5,"off")=12 + Set gtmtypes("d_tt_struct",5,"len")=4 + Set gtmtypes("d_tt_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","enbld_outofbands.mask")=5 + Set gtmtypes("d_tt_struct",6,"name")="d_tt_struct.term_ctrl" + Set gtmtypes("d_tt_struct",6,"off")=16 + Set gtmtypes("d_tt_struct",6,"len")=4 + Set gtmtypes("d_tt_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","term_ctrl")=6 + Set gtmtypes("d_tt_struct",7,"name")="d_tt_struct.mask_term" + Set gtmtypes("d_tt_struct",7,"off")=20 + Set gtmtypes("d_tt_struct",7,"len")=32 + Set gtmtypes("d_tt_struct",7,"type")="io_termmask" + Set gtmtypfldindx("d_tt_struct","mask_term")=7 + Set gtmtypes("d_tt_struct",8,"name")="d_tt_struct.mask_term.mask" + Set gtmtypes("d_tt_struct",8,"off")=20 + Set gtmtypes("d_tt_struct",8,"len")=32 + Set gtmtypes("d_tt_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","mask_term.mask")=8 + Set gtmtypes("d_tt_struct",8,"dim")=8 + Set gtmtypes("d_tt_struct",9,"name")="d_tt_struct.fildes" + Set gtmtypes("d_tt_struct",9,"off")=52 + Set gtmtypes("d_tt_struct",9,"len")=4 + Set gtmtypes("d_tt_struct",9,"type")="int" + Set gtmtypfldindx("d_tt_struct","fildes")=9 + Set gtmtypes("d_tt_struct",10,"name")="d_tt_struct.ttio_struct" + Set gtmtypes("d_tt_struct",10,"off")=56 + Set gtmtypes("d_tt_struct",10,"len")=4 + Set gtmtypes("d_tt_struct",10,"type")="addr" + Set gtmtypfldindx("d_tt_struct","ttio_struct")=10 + Set gtmtypes("d_tt_struct",11,"name")="d_tt_struct.tt_state_save" + Set gtmtypes("d_tt_struct",11,"off")=60 + Set gtmtypes("d_tt_struct",11,"len")=104 + Set gtmtypes("d_tt_struct",11,"type")="tt_interrupt" + Set gtmtypfldindx("d_tt_struct","tt_state_save")=11 + Set gtmtypes("d_tt_struct",12,"name")="d_tt_struct.tt_state_save.who_saved" + Set gtmtypes("d_tt_struct",12,"off")=60 + Set gtmtypes("d_tt_struct",12,"len")=4 + Set gtmtypes("d_tt_struct",12,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.who_saved")=12 + Set gtmtypes("d_tt_struct",13,"name")="d_tt_struct.tt_state_save.buffer_start" + Set gtmtypes("d_tt_struct",13,"off")=64 + Set gtmtypes("d_tt_struct",13,"len")=4 + Set gtmtypes("d_tt_struct",13,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.buffer_start")=13 + Set gtmtypes("d_tt_struct",14,"name")="d_tt_struct.tt_state_save.buffer_32_start" + Set gtmtypes("d_tt_struct",14,"off")=68 + Set gtmtypes("d_tt_struct",14,"len")=4 + Set gtmtypes("d_tt_struct",14,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.buffer_32_start")=14 + Set gtmtypes("d_tt_struct",15,"name")="d_tt_struct.tt_state_save.utf8_more" + Set gtmtypes("d_tt_struct",15,"off")=72 + Set gtmtypes("d_tt_struct",15,"len")=4 + Set gtmtypes("d_tt_struct",15,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.utf8_more")=15 + Set gtmtypes("d_tt_struct",16,"name")="d_tt_struct.tt_state_save.dx" + Set gtmtypes("d_tt_struct",16,"off")=76 + Set gtmtypes("d_tt_struct",16,"len")=4 + Set gtmtypes("d_tt_struct",16,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx")=16 + Set gtmtypes("d_tt_struct",17,"name")="d_tt_struct.tt_state_save.dx_start" + Set gtmtypes("d_tt_struct",17,"off")=80 + Set gtmtypes("d_tt_struct",17,"len")=4 + Set gtmtypes("d_tt_struct",17,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_start")=17 + Set gtmtypes("d_tt_struct",18,"name")="d_tt_struct.tt_state_save.dx_instr" + Set gtmtypes("d_tt_struct",18,"off")=84 + Set gtmtypes("d_tt_struct",18,"len")=4 + Set gtmtypes("d_tt_struct",18,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_instr")=18 + Set gtmtypes("d_tt_struct",19,"name")="d_tt_struct.tt_state_save.dx_outlen" + Set gtmtypes("d_tt_struct",19,"off")=88 + Set gtmtypes("d_tt_struct",19,"len")=4 + Set gtmtypes("d_tt_struct",19,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.dx_outlen")=19 + Set gtmtypes("d_tt_struct",20,"name")="d_tt_struct.tt_state_save.instr" + Set gtmtypes("d_tt_struct",20,"off")=92 + Set gtmtypes("d_tt_struct",20,"len")=4 + Set gtmtypes("d_tt_struct",20,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.instr")=20 + Set gtmtypes("d_tt_struct",21,"name")="d_tt_struct.tt_state_save.outlen" + Set gtmtypes("d_tt_struct",21,"off")=96 + Set gtmtypes("d_tt_struct",21,"len")=4 + Set gtmtypes("d_tt_struct",21,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.outlen")=21 + Set gtmtypes("d_tt_struct",22,"name")="d_tt_struct.tt_state_save.index" + Set gtmtypes("d_tt_struct",22,"off")=100 + Set gtmtypes("d_tt_struct",22,"len")=4 + Set gtmtypes("d_tt_struct",22,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.index")=22 + Set gtmtypes("d_tt_struct",23,"name")="d_tt_struct.tt_state_save.cl" + Set gtmtypes("d_tt_struct",23,"off")=104 + Set gtmtypes("d_tt_struct",23,"len")=4 + Set gtmtypes("d_tt_struct",23,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.cl")=23 + Set gtmtypes("d_tt_struct",24,"name")="d_tt_struct.tt_state_save.length" + Set gtmtypes("d_tt_struct",24,"off")=108 + Set gtmtypes("d_tt_struct",24,"len")=4 + Set gtmtypes("d_tt_struct",24,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.length")=24 + Set gtmtypes("d_tt_struct",25,"name")="d_tt_struct.tt_state_save.exp_length" + Set gtmtypes("d_tt_struct",25,"off")=112 + Set gtmtypes("d_tt_struct",25,"len")=4 + Set gtmtypes("d_tt_struct",25,"type")="int" + Set gtmtypfldindx("d_tt_struct","tt_state_save.exp_length")=25 + Set gtmtypes("d_tt_struct",26,"name")="d_tt_struct.tt_state_save.insert_mode" + Set gtmtypes("d_tt_struct",26,"off")=116 + Set gtmtypes("d_tt_struct",26,"len")=4 + Set gtmtypes("d_tt_struct",26,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","tt_state_save.insert_mode")=26 + Set gtmtypes("d_tt_struct",27,"name")="d_tt_struct.tt_state_save.end_time" + Set gtmtypes("d_tt_struct",27,"off")=120 + Set gtmtypes("d_tt_struct",27,"len")=8 + Set gtmtypes("d_tt_struct",27,"type")="ABS_TIME" + Set gtmtypfldindx("d_tt_struct","tt_state_save.end_time")=27 + Set gtmtypes("d_tt_struct",28,"name")="d_tt_struct.tt_state_save.more_ptr" + Set gtmtypes("d_tt_struct",28,"off")=128 + Set gtmtypes("d_tt_struct",28,"len")=4 + Set gtmtypes("d_tt_struct",28,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.more_ptr")=28 + Set gtmtypes("d_tt_struct",29,"name")="d_tt_struct.tt_state_save.zb_ptr" + Set gtmtypes("d_tt_struct",29,"off")=132 + Set gtmtypes("d_tt_struct",29,"len")=4 + Set gtmtypes("d_tt_struct",29,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.zb_ptr")=29 + Set gtmtypes("d_tt_struct",30,"name")="d_tt_struct.tt_state_save.zb_top" + Set gtmtypes("d_tt_struct",30,"off")=136 + Set gtmtypes("d_tt_struct",30,"len")=4 + Set gtmtypes("d_tt_struct",30,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tt_state_save.zb_top")=30 + Set gtmtypes("d_tt_struct",31,"name")="d_tt_struct.tt_state_save.escape_length" + Set gtmtypes("d_tt_struct",31,"off")=140 + Set gtmtypes("d_tt_struct",31,"len")=2 + Set gtmtypes("d_tt_struct",31,"type")="unsigned-short" + Set gtmtypfldindx("d_tt_struct","tt_state_save.escape_length")=31 + Set gtmtypes("d_tt_struct",32,"name")="d_tt_struct.tt_state_save.escape_sequence" + Set gtmtypes("d_tt_struct",32,"off")=142 + Set gtmtypes("d_tt_struct",32,"len")=16 + Set gtmtypes("d_tt_struct",32,"type")="unsigned-char" + Set gtmtypfldindx("d_tt_struct","tt_state_save.escape_sequence")=32 + Set gtmtypes("d_tt_struct",33,"name")="d_tt_struct.tt_state_save.more_buf" + Set gtmtypes("d_tt_struct",33,"off")=158 + Set gtmtypes("d_tt_struct",33,"len")=5 + Set gtmtypes("d_tt_struct",33,"type")="unsigned-char" + Set gtmtypfldindx("d_tt_struct","tt_state_save.more_buf")=33 + Set gtmtypes("d_tt_struct",34,"name")="d_tt_struct.mupintr" + Set gtmtypes("d_tt_struct",34,"off")=164 + Set gtmtypes("d_tt_struct",34,"len")=4 + Set gtmtypes("d_tt_struct",34,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","mupintr")=34 + Set gtmtypes("d_tt_struct",35,"name")="d_tt_struct.ttybuff" + Set gtmtypes("d_tt_struct",35,"off")=168 + Set gtmtypes("d_tt_struct",35,"len")=4 + Set gtmtypes("d_tt_struct",35,"type")="addr" + Set gtmtypfldindx("d_tt_struct","ttybuff")=35 + Set gtmtypes("d_tt_struct",36,"name")="d_tt_struct.tbuffp" + Set gtmtypes("d_tt_struct",36,"off")=172 + Set gtmtypes("d_tt_struct",36,"len")=4 + Set gtmtypes("d_tt_struct",36,"type")="addr" + Set gtmtypfldindx("d_tt_struct","tbuffp")=36 + Set gtmtypes("d_tt_struct",37,"name")="d_tt_struct.timer_set" + Set gtmtypes("d_tt_struct",37,"off")=176 + Set gtmtypes("d_tt_struct",37,"len")=4 + Set gtmtypes("d_tt_struct",37,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","timer_set")=37 + Set gtmtypes("d_tt_struct",38,"name")="d_tt_struct.write_active" + Set gtmtypes("d_tt_struct",38,"off")=180 + Set gtmtypes("d_tt_struct",38,"len")=4 + Set gtmtypes("d_tt_struct",38,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","write_active")=38 + Set gtmtypes("d_tt_struct",39,"name")="d_tt_struct.canonical" + Set gtmtypes("d_tt_struct",39,"off")=184 + Set gtmtypes("d_tt_struct",39,"len")=4 + Set gtmtypes("d_tt_struct",39,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","canonical")=39 + Set gtmtypes("d_tt_struct",40,"name")="d_tt_struct.recall_buff" + Set gtmtypes("d_tt_struct",40,"off")=188 + Set gtmtypes("d_tt_struct",40,"len")=12 + Set gtmtypes("d_tt_struct",40,"type")="mstr" + Set gtmtypfldindx("d_tt_struct","recall_buff")=40 + Set gtmtypes("d_tt_struct",41,"name")="d_tt_struct.recall_buff.char_len" + Set gtmtypes("d_tt_struct",41,"off")=188 + Set gtmtypes("d_tt_struct",41,"len")=4 + Set gtmtypes("d_tt_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("d_tt_struct","recall_buff.char_len")=41 + Set gtmtypes("d_tt_struct",42,"name")="d_tt_struct.recall_buff.len" + Set gtmtypes("d_tt_struct",42,"off")=192 + Set gtmtypes("d_tt_struct",42,"len")=4 + Set gtmtypes("d_tt_struct",42,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_buff.len")=42 + Set gtmtypes("d_tt_struct",43,"name")="d_tt_struct.recall_buff.addr" + Set gtmtypes("d_tt_struct",43,"off")=196 + Set gtmtypes("d_tt_struct",43,"len")=4 + Set gtmtypes("d_tt_struct",43,"type")="addr" + Set gtmtypfldindx("d_tt_struct","recall_buff.addr")=43 + Set gtmtypes("d_tt_struct",44,"name")="d_tt_struct.recall_size" + Set gtmtypes("d_tt_struct",44,"off")=200 + Set gtmtypes("d_tt_struct",44,"len")=4 + Set gtmtypes("d_tt_struct",44,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_size")=44 + Set gtmtypes("d_tt_struct",45,"name")="d_tt_struct.recall_width" + Set gtmtypes("d_tt_struct",45,"off")=204 + Set gtmtypes("d_tt_struct",45,"len")=4 + Set gtmtypes("d_tt_struct",45,"type")="int" + Set gtmtypfldindx("d_tt_struct","recall_width")=45 + Set gtmtypes("d_tt_struct",46,"name")="d_tt_struct.discard_lf" + Set gtmtypes("d_tt_struct",46,"off")=208 + Set gtmtypes("d_tt_struct",46,"len")=4 + Set gtmtypes("d_tt_struct",46,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","discard_lf")=46 + Set gtmtypes("d_tt_struct",47,"name")="d_tt_struct.default_mask_term" + Set gtmtypes("d_tt_struct",47,"off")=212 + Set gtmtypes("d_tt_struct",47,"len")=4 + Set gtmtypes("d_tt_struct",47,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","default_mask_term")=47 + Set gtmtypes("d_tt_struct",48,"name")="d_tt_struct.done_1st_read" + Set gtmtypes("d_tt_struct",48,"off")=216 + Set gtmtypes("d_tt_struct",48,"len")=4 + Set gtmtypes("d_tt_struct",48,"type")="boolean_t" + Set gtmtypfldindx("d_tt_struct","done_1st_read")=48 + ; + Set gtmtypes("d_us_struct")="struct" + Set gtmtypes("d_us_struct",0)=1 + Set gtmtypes("d_us_struct","len")=4 + Set gtmtypes("d_us_struct",1,"name")="d_us_struct.disp" + Set gtmtypes("d_us_struct",1,"off")=0 + Set gtmtypes("d_us_struct",1,"len")=4 + Set gtmtypes("d_us_struct",1,"type")="addr" + Set gtmtypfldindx("d_us_struct","disp")=1 + ; + Set gtmtypes("date_time")="struct" + Set gtmtypes("date_time",0)=2 + Set gtmtypes("date_time","len")=8 + Set gtmtypes("date_time",1,"name")="date_time.low" + Set gtmtypes("date_time",1,"off")=0 + Set gtmtypes("date_time",1,"len")=4 + Set gtmtypes("date_time",1,"type")="unsigned-int" + Set gtmtypfldindx("date_time","low")=1 + Set gtmtypes("date_time",2,"name")="date_time.high" + Set gtmtypes("date_time",2,"off")=4 + Set gtmtypes("date_time",2,"len")=4 + Set gtmtypes("date_time",2,"type")="unsigned-int" + Set gtmtypfldindx("date_time","high")=2 + ; + Set gtmtypes("db_csh_acct_rec")="struct" + Set gtmtypes("db_csh_acct_rec",0)=2 + Set gtmtypes("db_csh_acct_rec","len")=8 + Set gtmtypes("db_csh_acct_rec",1,"name")="db_csh_acct_rec.curr_count" + Set gtmtypes("db_csh_acct_rec",1,"off")=0 + Set gtmtypes("db_csh_acct_rec",1,"len")=4 + Set gtmtypes("db_csh_acct_rec",1,"type")="int" + Set gtmtypfldindx("db_csh_acct_rec","curr_count")=1 + Set gtmtypes("db_csh_acct_rec",2,"name")="db_csh_acct_rec.cumul_count" + Set gtmtypes("db_csh_acct_rec",2,"off")=4 + Set gtmtypes("db_csh_acct_rec",2,"len")=4 + Set gtmtypes("db_csh_acct_rec",2,"type")="int" + Set gtmtypfldindx("db_csh_acct_rec","cumul_count")=2 + ; + Set gtmtypes("dbc_gv_key")="struct" + Set gtmtypes("dbc_gv_key",0)=4 + Set gtmtypes("dbc_gv_key","len")=16 + Set gtmtypes("dbc_gv_key",1,"name")="dbc_gv_key.top" + Set gtmtypes("dbc_gv_key",1,"off")=0 + Set gtmtypes("dbc_gv_key",1,"len")=4 + Set gtmtypes("dbc_gv_key",1,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","top")=1 + Set gtmtypes("dbc_gv_key",2,"name")="dbc_gv_key.end" + Set gtmtypes("dbc_gv_key",2,"off")=4 + Set gtmtypes("dbc_gv_key",2,"len")=4 + Set gtmtypes("dbc_gv_key",2,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","end")=2 + Set gtmtypes("dbc_gv_key",3,"name")="dbc_gv_key.gvn_len" + Set gtmtypes("dbc_gv_key",3,"off")=8 + Set gtmtypes("dbc_gv_key",3,"len")=4 + Set gtmtypes("dbc_gv_key",3,"type")="unsigned-int" + Set gtmtypfldindx("dbc_gv_key","gvn_len")=3 + Set gtmtypes("dbc_gv_key",4,"name")="dbc_gv_key.base" + Set gtmtypes("dbc_gv_key",4,"off")=12 + Set gtmtypes("dbc_gv_key",4,"len")=1 + Set gtmtypes("dbc_gv_key",4,"type")="unsigned-char" + Set gtmtypfldindx("dbc_gv_key","base")=4 + ; + Set gtmtypes("dbc_inserted_rec")="struct" + Set gtmtypes("dbc_inserted_rec",0)=2 + Set gtmtypes("dbc_inserted_rec","len")=8 + Set gtmtypes("dbc_inserted_rec",1,"name")="dbc_inserted_rec.ins_key" + Set gtmtypes("dbc_inserted_rec",1,"off")=0 + Set gtmtypes("dbc_inserted_rec",1,"len")=4 + Set gtmtypes("dbc_inserted_rec",1,"type")="addr" + Set gtmtypfldindx("dbc_inserted_rec","ins_key")=1 + Set gtmtypes("dbc_inserted_rec",2,"name")="dbc_inserted_rec.blk_id" + Set gtmtypes("dbc_inserted_rec",2,"off")=4 + Set gtmtypes("dbc_inserted_rec",2,"len")=4 + Set gtmtypes("dbc_inserted_rec",2,"type")="int" + Set gtmtypfldindx("dbc_inserted_rec","blk_id")=2 + ; + Set gtmtypes("ddp_announce_msg_t")="struct" + Set gtmtypes("ddp_announce_msg_t",0)=19 + Set gtmtypes("ddp_announce_msg_t","len")=106 + Set gtmtypes("ddp_announce_msg_t",1,"name")="ddp_announce_msg_t.filler0" + Set gtmtypes("ddp_announce_msg_t",1,"off")=0 + Set gtmtypes("ddp_announce_msg_t",1,"len")=2 + Set gtmtypes("ddp_announce_msg_t",1,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler0")=1 + Set gtmtypes("ddp_announce_msg_t",2,"name")="ddp_announce_msg_t.code" + Set gtmtypes("ddp_announce_msg_t",2,"off")=2 + Set gtmtypes("ddp_announce_msg_t",2,"len")=2 + Set gtmtypes("ddp_announce_msg_t",2,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","code")=2 + Set gtmtypes("ddp_announce_msg_t",3,"name")="ddp_announce_msg_t.ether_addr" + Set gtmtypes("ddp_announce_msg_t",3,"off")=4 + Set gtmtypes("ddp_announce_msg_t",3,"len")=6 + Set gtmtypes("ddp_announce_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","ether_addr")=3 + Set gtmtypes("ddp_announce_msg_t",4,"name")="ddp_announce_msg_t.circuit_name" + Set gtmtypes("ddp_announce_msg_t",4,"off")=10 + Set gtmtypes("ddp_announce_msg_t",4,"len")=2 + Set gtmtypes("ddp_announce_msg_t",4,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","circuit_name")=4 + Set gtmtypes("ddp_announce_msg_t",5,"name")="ddp_announce_msg_t.filler1" + Set gtmtypes("ddp_announce_msg_t",5,"off")=12 + Set gtmtypes("ddp_announce_msg_t",5,"len")=2 + Set gtmtypes("ddp_announce_msg_t",5,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler1")=5 + Set gtmtypes("ddp_announce_msg_t",6,"name")="ddp_announce_msg_t.filler2" + Set gtmtypes("ddp_announce_msg_t",6,"off")=14 + Set gtmtypes("ddp_announce_msg_t",6,"len")=2 + Set gtmtypes("ddp_announce_msg_t",6,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","filler2")=6 + Set gtmtypes("ddp_announce_msg_t",7,"name")="ddp_announce_msg_t.max_job_no" + Set gtmtypes("ddp_announce_msg_t",7,"off")=16 + Set gtmtypes("ddp_announce_msg_t",7,"len")=2 + Set gtmtypes("ddp_announce_msg_t",7,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","max_job_no")=7 + Set gtmtypes("ddp_announce_msg_t",8,"name")="ddp_announce_msg_t.group_mask" + Set gtmtypes("ddp_announce_msg_t",8,"off")=18 + Set gtmtypes("ddp_announce_msg_t",8,"len")=2 + Set gtmtypes("ddp_announce_msg_t",8,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","group_mask")=8 + Set gtmtypes("ddp_announce_msg_t",9,"name")="ddp_announce_msg_t.advertise_interval" + Set gtmtypes("ddp_announce_msg_t",9,"off")=20 + Set gtmtypes("ddp_announce_msg_t",9,"len")=1 + Set gtmtypes("ddp_announce_msg_t",9,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","advertise_interval")=9 + Set gtmtypes("ddp_announce_msg_t",10,"name")="ddp_announce_msg_t.max_request_credits" + Set gtmtypes("ddp_announce_msg_t",10,"off")=21 + Set gtmtypes("ddp_announce_msg_t",10,"len")=1 + Set gtmtypes("ddp_announce_msg_t",10,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","max_request_credits")=10 + Set gtmtypes("ddp_announce_msg_t",11,"name")="ddp_announce_msg_t.cpu_type" + Set gtmtypes("ddp_announce_msg_t",11,"off")=22 + Set gtmtypes("ddp_announce_msg_t",11,"len")=1 + Set gtmtypes("ddp_announce_msg_t",11,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","cpu_type")=11 + Set gtmtypes("ddp_announce_msg_t",12,"name")="ddp_announce_msg_t.version" + Set gtmtypes("ddp_announce_msg_t",12,"off")=23 + Set gtmtypes("ddp_announce_msg_t",12,"len")=1 + Set gtmtypes("ddp_announce_msg_t",12,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","version")=12 + Set gtmtypes("ddp_announce_msg_t",13,"name")="ddp_announce_msg_t.cpu_load_rating" + Set gtmtypes("ddp_announce_msg_t",13,"off")=24 + Set gtmtypes("ddp_announce_msg_t",13,"len")=1 + Set gtmtypes("ddp_announce_msg_t",13,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","cpu_load_rating")=13 + Set gtmtypes("ddp_announce_msg_t",14,"name")="ddp_announce_msg_t.proto_version" + Set gtmtypes("ddp_announce_msg_t",14,"off")=25 + Set gtmtypes("ddp_announce_msg_t",14,"len")=1 + Set gtmtypes("ddp_announce_msg_t",14,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","proto_version")=14 + Set gtmtypes("ddp_announce_msg_t",15,"name")="ddp_announce_msg_t.node_status" + Set gtmtypes("ddp_announce_msg_t",15,"off")=26 + Set gtmtypes("ddp_announce_msg_t",15,"len")=1 + Set gtmtypes("ddp_announce_msg_t",15,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","node_status")=15 + Set gtmtypes("ddp_announce_msg_t",16,"name")="ddp_announce_msg_t.autoconfigure_version" + Set gtmtypes("ddp_announce_msg_t",16,"off")=27 + Set gtmtypes("ddp_announce_msg_t",16,"len")=1 + Set gtmtypes("ddp_announce_msg_t",16,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","autoconfigure_version")=16 + Set gtmtypes("ddp_announce_msg_t",17,"name")="ddp_announce_msg_t.volset" + Set gtmtypes("ddp_announce_msg_t",17,"off")=28 + Set gtmtypes("ddp_announce_msg_t",17,"len")=32 + Set gtmtypes("ddp_announce_msg_t",17,"type")="unsigned-short" + Set gtmtypfldindx("ddp_announce_msg_t","volset")=17 + Set gtmtypes("ddp_announce_msg_t",17,"dim")=16 + Set gtmtypes("ddp_announce_msg_t",18,"name")="ddp_announce_msg_t.filler3" + Set gtmtypes("ddp_announce_msg_t",18,"off")=60 + Set gtmtypes("ddp_announce_msg_t",18,"len")=44 + Set gtmtypes("ddp_announce_msg_t",18,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","filler3")=18 + Set gtmtypes("ddp_announce_msg_t",19,"name")="ddp_announce_msg_t.terminator" + Set gtmtypes("ddp_announce_msg_t",19,"off")=104 + Set gtmtypes("ddp_announce_msg_t",19,"len")=1 + Set gtmtypes("ddp_announce_msg_t",19,"type")="unsigned-char" + Set gtmtypfldindx("ddp_announce_msg_t","terminator")=19 + ; + Set gtmtypes("ddp_global_request_t")="struct" + Set gtmtypes("ddp_global_request_t",0)=6 + Set gtmtypes("ddp_global_request_t","len")=10 + Set gtmtypes("ddp_global_request_t",1,"name")="ddp_global_request_t.naked_size" + Set gtmtypes("ddp_global_request_t",1,"off")=0 + Set gtmtypes("ddp_global_request_t",1,"len")=1 + Set gtmtypes("ddp_global_request_t",1,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","naked_size")=1 + Set gtmtypes("ddp_global_request_t",2,"name")="ddp_global_request_t.uci" + Set gtmtypes("ddp_global_request_t",2,"off")=2 + Set gtmtypes("ddp_global_request_t",2,"len")=2 + Set gtmtypes("ddp_global_request_t",2,"type")="unsigned-short" + Set gtmtypfldindx("ddp_global_request_t","uci")=2 + Set gtmtypes("ddp_global_request_t",3,"name")="ddp_global_request_t.vol" + Set gtmtypes("ddp_global_request_t",3,"off")=4 + Set gtmtypes("ddp_global_request_t",3,"len")=2 + Set gtmtypes("ddp_global_request_t",3,"type")="unsigned-short" + Set gtmtypfldindx("ddp_global_request_t","vol")=3 + Set gtmtypes("ddp_global_request_t",4,"name")="ddp_global_request_t.global_type" + Set gtmtypes("ddp_global_request_t",4,"off")=6 + Set gtmtypes("ddp_global_request_t",4,"len")=1 + Set gtmtypes("ddp_global_request_t",4,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global_type")=4 + Set gtmtypes("ddp_global_request_t",5,"name")="ddp_global_request_t.global_len" + Set gtmtypes("ddp_global_request_t",5,"off")=7 + Set gtmtypes("ddp_global_request_t",5,"len")=1 + Set gtmtypes("ddp_global_request_t",5,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global_len")=5 + Set gtmtypes("ddp_global_request_t",6,"name")="ddp_global_request_t.global" + Set gtmtypes("ddp_global_request_t",6,"off")=8 + Set gtmtypes("ddp_global_request_t",6,"len")=1 + Set gtmtypes("ddp_global_request_t",6,"type")="unsigned-char" + Set gtmtypfldindx("ddp_global_request_t","global")=6 + ; + Set gtmtypes("ddp_hdr_t")="struct" + Set gtmtypes("ddp_hdr_t",0)=11 + Set gtmtypes("ddp_hdr_t","len")=16 + Set gtmtypes("ddp_hdr_t",1,"name")="ddp_hdr_t.trancode" + Set gtmtypes("ddp_hdr_t",1,"off")=0 + Set gtmtypes("ddp_hdr_t",1,"len")=1 + Set gtmtypes("ddp_hdr_t",1,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","trancode")=1 + Set gtmtypes("ddp_hdr_t",2,"name")="ddp_hdr_t.proto" + Set gtmtypes("ddp_hdr_t",2,"off")=1 + Set gtmtypes("ddp_hdr_t",2,"len")=1 + Set gtmtypes("ddp_hdr_t",2,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","proto")=2 + Set gtmtypes("ddp_hdr_t",3,"name")="ddp_hdr_t.source_circuit_name" + Set gtmtypes("ddp_hdr_t",3,"off")=2 + Set gtmtypes("ddp_hdr_t",3,"len")=2 + Set gtmtypes("ddp_hdr_t",3,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","source_circuit_name")=3 + Set gtmtypes("ddp_hdr_t",4,"name")="ddp_hdr_t.source_job_number" + Set gtmtypes("ddp_hdr_t",4,"off")=4 + Set gtmtypes("ddp_hdr_t",4,"len")=2 + Set gtmtypes("ddp_hdr_t",4,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","source_job_number")=4 + Set gtmtypes("ddp_hdr_t",5,"name")="ddp_hdr_t.remote_circuit_name" + Set gtmtypes("ddp_hdr_t",5,"off")=6 + Set gtmtypes("ddp_hdr_t",5,"len")=2 + Set gtmtypes("ddp_hdr_t",5,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","remote_circuit_name")=5 + Set gtmtypes("ddp_hdr_t",6,"name")="ddp_hdr_t.remote_job_number" + Set gtmtypes("ddp_hdr_t",6,"off")=8 + Set gtmtypes("ddp_hdr_t",6,"len")=2 + Set gtmtypes("ddp_hdr_t",6,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","remote_job_number")=6 + Set gtmtypes("ddp_hdr_t",7,"name")="ddp_hdr_t.message_number" + Set gtmtypes("ddp_hdr_t",7,"off")=10 + Set gtmtypes("ddp_hdr_t",7,"len")=1 + Set gtmtypes("ddp_hdr_t",7,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","message_number")=7 + Set gtmtypes("ddp_hdr_t",8,"name")="ddp_hdr_t.filler1" + Set gtmtypes("ddp_hdr_t",8,"off")=11 + Set gtmtypes("ddp_hdr_t",8,"len")=1 + Set gtmtypes("ddp_hdr_t",8,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","filler1")=8 + Set gtmtypes("ddp_hdr_t",9,"name")="ddp_hdr_t.message_length" + Set gtmtypes("ddp_hdr_t",9,"off")=12 + Set gtmtypes("ddp_hdr_t",9,"len")=2 + Set gtmtypes("ddp_hdr_t",9,"type")="unsigned-short" + Set gtmtypfldindx("ddp_hdr_t","message_length")=9 + Set gtmtypes("ddp_hdr_t",10,"name")="ddp_hdr_t.hdrlen" + Set gtmtypes("ddp_hdr_t",10,"off")=14 + Set gtmtypes("ddp_hdr_t",10,"len")=1 + Set gtmtypes("ddp_hdr_t",10,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","hdrlen")=10 + Set gtmtypes("ddp_hdr_t",11,"name")="ddp_hdr_t.txt" + Set gtmtypes("ddp_hdr_t",11,"off")=15 + Set gtmtypes("ddp_hdr_t",11,"len")=1 + Set gtmtypes("ddp_hdr_t",11,"type")="unsigned-char" + Set gtmtypfldindx("ddp_hdr_t","txt")=11 + ; + Set gtmtypes("ddp_info")="struct" + Set gtmtypes("ddp_info",0)=2 + Set gtmtypes("ddp_info","len")=4 + Set gtmtypes("ddp_info",1,"name")="ddp_info.uci" + Set gtmtypes("ddp_info",1,"off")=0 + Set gtmtypes("ddp_info",1,"len")=2 + Set gtmtypes("ddp_info",1,"type")="unsigned-short" + Set gtmtypfldindx("ddp_info","uci")=1 + Set gtmtypes("ddp_info",2,"name")="ddp_info.volset" + Set gtmtypes("ddp_info",2,"off")=2 + Set gtmtypes("ddp_info",2,"len")=2 + Set gtmtypes("ddp_info",2,"type")="unsigned-short" + Set gtmtypfldindx("ddp_info","volset")=2 + ; + Set gtmtypes("delimfmt")="union" + Set gtmtypes("delimfmt",0)=2 + Set gtmtypes("delimfmt","len")=4 + Set gtmtypes("delimfmt",1,"name")="delimfmt.unichar_val" + Set gtmtypes("delimfmt",1,"off")=0 + Set gtmtypes("delimfmt",1,"len")=4 + Set gtmtypes("delimfmt",1,"type")="int" + Set gtmtypfldindx("delimfmt","unichar_val")=1 + Set gtmtypes("delimfmt",2,"name")="delimfmt.unibytes_val" + Set gtmtypes("delimfmt",2,"off")=0 + Set gtmtypes("delimfmt",2,"len")=4 + Set gtmtypes("delimfmt",2,"type")="unsigned-char" + Set gtmtypfldindx("delimfmt","unibytes_val")=2 + ; + Set gtmtypes("desc_struct")="struct" + Set gtmtypes("desc_struct",0)=4 + Set gtmtypes("desc_struct","len")=8 + Set gtmtypes("desc_struct",1,"name")="desc_struct.len" + Set gtmtypes("desc_struct",1,"off")=0 + Set gtmtypes("desc_struct",1,"len")=2 + Set gtmtypes("desc_struct",1,"type")="unsigned-short" + Set gtmtypfldindx("desc_struct","len")=1 + Set gtmtypes("desc_struct",2,"name")="desc_struct.fill1" + Set gtmtypes("desc_struct",2,"off")=2 + Set gtmtypes("desc_struct",2,"len")=1 + Set gtmtypes("desc_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("desc_struct","fill1")=2 + Set gtmtypes("desc_struct",3,"name")="desc_struct.fill2" + Set gtmtypes("desc_struct",3,"off")=3 + Set gtmtypes("desc_struct",3,"len")=1 + Set gtmtypes("desc_struct",3,"type")="unsigned-char" + Set gtmtypfldindx("desc_struct","fill2")=3 + Set gtmtypes("desc_struct",4,"name")="desc_struct.addr" + Set gtmtypes("desc_struct",4,"off")=4 + Set gtmtypes("desc_struct",4,"len")=4 + Set gtmtypes("desc_struct",4,"type")="addr" + Set gtmtypfldindx("desc_struct","addr")=4 + ; + Set gtmtypes("dev_ctl_struct")="struct" + Set gtmtypes("dev_ctl_struct",0)=2 + Set gtmtypes("dev_ctl_struct","len")=2 + Set gtmtypes("dev_ctl_struct",1,"name")="dev_ctl_struct.valid_with" + Set gtmtypes("dev_ctl_struct",1,"off")=0 + Set gtmtypes("dev_ctl_struct",1,"len")=1 + Set gtmtypes("dev_ctl_struct",1,"type")="unsigned-char" + Set gtmtypfldindx("dev_ctl_struct","valid_with")=1 + Set gtmtypes("dev_ctl_struct",2,"name")="dev_ctl_struct.source_type" + Set gtmtypes("dev_ctl_struct",2,"off")=1 + Set gtmtypes("dev_ctl_struct",2,"len")=1 + Set gtmtypes("dev_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("dev_ctl_struct","source_type")=2 + ; + Set gtmtypes("dev_dispatch_struct")="struct" + Set gtmtypes("dev_dispatch_struct",0)=16 + Set gtmtypes("dev_dispatch_struct","len")=64 + Set gtmtypes("dev_dispatch_struct",1,"name")="dev_dispatch_struct.open" + Set gtmtypes("dev_dispatch_struct",1,"off")=0 + Set gtmtypes("dev_dispatch_struct",1,"len")=4 + Set gtmtypes("dev_dispatch_struct",1,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","open")=1 + Set gtmtypes("dev_dispatch_struct",2,"name")="dev_dispatch_struct.gtm_close" + Set gtmtypes("dev_dispatch_struct",2,"off")=4 + Set gtmtypes("dev_dispatch_struct",2,"len")=4 + Set gtmtypes("dev_dispatch_struct",2,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","gtm_close")=2 + Set gtmtypes("dev_dispatch_struct",3,"name")="dev_dispatch_struct.use" + Set gtmtypes("dev_dispatch_struct",3,"off")=8 + Set gtmtypes("dev_dispatch_struct",3,"len")=4 + Set gtmtypes("dev_dispatch_struct",3,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","use")=3 + Set gtmtypes("dev_dispatch_struct",4,"name")="dev_dispatch_struct.read" + Set gtmtypes("dev_dispatch_struct",4,"off")=12 + Set gtmtypes("dev_dispatch_struct",4,"len")=4 + Set gtmtypes("dev_dispatch_struct",4,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","read")=4 + Set gtmtypes("dev_dispatch_struct",5,"name")="dev_dispatch_struct.rdone" + Set gtmtypes("dev_dispatch_struct",5,"off")=16 + Set gtmtypes("dev_dispatch_struct",5,"len")=4 + Set gtmtypes("dev_dispatch_struct",5,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","rdone")=5 + Set gtmtypes("dev_dispatch_struct",6,"name")="dev_dispatch_struct.write" + Set gtmtypes("dev_dispatch_struct",6,"off")=20 + Set gtmtypes("dev_dispatch_struct",6,"len")=4 + Set gtmtypes("dev_dispatch_struct",6,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","write")=6 + Set gtmtypes("dev_dispatch_struct",7,"name")="dev_dispatch_struct.wtone" + Set gtmtypes("dev_dispatch_struct",7,"off")=24 + Set gtmtypes("dev_dispatch_struct",7,"len")=4 + Set gtmtypes("dev_dispatch_struct",7,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wtone")=7 + Set gtmtypes("dev_dispatch_struct",8,"name")="dev_dispatch_struct.wteol" + Set gtmtypes("dev_dispatch_struct",8,"off")=28 + Set gtmtypes("dev_dispatch_struct",8,"len")=4 + Set gtmtypes("dev_dispatch_struct",8,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wteol")=8 + Set gtmtypes("dev_dispatch_struct",9,"name")="dev_dispatch_struct.wtff" + Set gtmtypes("dev_dispatch_struct",9,"off")=32 + Set gtmtypes("dev_dispatch_struct",9,"len")=4 + Set gtmtypes("dev_dispatch_struct",9,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wtff")=9 + Set gtmtypes("dev_dispatch_struct",10,"name")="dev_dispatch_struct.wttab" + Set gtmtypes("dev_dispatch_struct",10,"off")=36 + Set gtmtypes("dev_dispatch_struct",10,"len")=4 + Set gtmtypes("dev_dispatch_struct",10,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","wttab")=10 + Set gtmtypes("dev_dispatch_struct",11,"name")="dev_dispatch_struct.flush" + Set gtmtypes("dev_dispatch_struct",11,"off")=40 + Set gtmtypes("dev_dispatch_struct",11,"len")=4 + Set gtmtypes("dev_dispatch_struct",11,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","flush")=11 + Set gtmtypes("dev_dispatch_struct",12,"name")="dev_dispatch_struct.readfl" + Set gtmtypes("dev_dispatch_struct",12,"off")=44 + Set gtmtypes("dev_dispatch_struct",12,"len")=4 + Set gtmtypes("dev_dispatch_struct",12,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","readfl")=12 + Set gtmtypes("dev_dispatch_struct",13,"name")="dev_dispatch_struct.iocontrol" + Set gtmtypes("dev_dispatch_struct",13,"off")=48 + Set gtmtypes("dev_dispatch_struct",13,"len")=4 + Set gtmtypes("dev_dispatch_struct",13,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","iocontrol")=13 + Set gtmtypes("dev_dispatch_struct",14,"name")="dev_dispatch_struct.dlr_device" + Set gtmtypes("dev_dispatch_struct",14,"off")=52 + Set gtmtypes("dev_dispatch_struct",14,"len")=4 + Set gtmtypes("dev_dispatch_struct",14,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_device")=14 + Set gtmtypes("dev_dispatch_struct",15,"name")="dev_dispatch_struct.dlr_key" + Set gtmtypes("dev_dispatch_struct",15,"off")=56 + Set gtmtypes("dev_dispatch_struct",15,"len")=4 + Set gtmtypes("dev_dispatch_struct",15,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_key")=15 + Set gtmtypes("dev_dispatch_struct",16,"name")="dev_dispatch_struct.dlr_zkey" + Set gtmtypes("dev_dispatch_struct",16,"off")=60 + Set gtmtypes("dev_dispatch_struct",16,"len")=4 + Set gtmtypes("dev_dispatch_struct",16,"type")="addr" + Set gtmtypfldindx("dev_dispatch_struct","dlr_zkey")=16 + ; + Set gtmtypes("dollar_ecode_struct")="struct" + Set gtmtypes("dollar_ecode_struct",0)=4 + Set gtmtypes("dollar_ecode_struct","len")=12 + Set gtmtypes("dollar_ecode_struct",1,"name")="dollar_ecode_struct.ecode_str" + Set gtmtypes("dollar_ecode_struct",1,"off")=0 + Set gtmtypes("dollar_ecode_struct",1,"len")=12 + Set gtmtypes("dollar_ecode_struct",1,"type")="mstr" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str")=1 + Set gtmtypes("dollar_ecode_struct",2,"name")="dollar_ecode_struct.ecode_str.char_len" + Set gtmtypes("dollar_ecode_struct",2,"off")=0 + Set gtmtypes("dollar_ecode_struct",2,"len")=4 + Set gtmtypes("dollar_ecode_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.char_len")=2 + Set gtmtypes("dollar_ecode_struct",3,"name")="dollar_ecode_struct.ecode_str.len" + Set gtmtypes("dollar_ecode_struct",3,"off")=4 + Set gtmtypes("dollar_ecode_struct",3,"len")=4 + Set gtmtypes("dollar_ecode_struct",3,"type")="int" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.len")=3 + Set gtmtypes("dollar_ecode_struct",4,"name")="dollar_ecode_struct.ecode_str.addr" + Set gtmtypes("dollar_ecode_struct",4,"off")=8 + Set gtmtypes("dollar_ecode_struct",4,"len")=4 + Set gtmtypes("dollar_ecode_struct",4,"type")="addr" + Set gtmtypfldindx("dollar_ecode_struct","ecode_str.addr")=4 + ; + Set gtmtypes("dollar_ecode_type")="struct" + Set gtmtypes("dollar_ecode_type",0)=11 + Set gtmtypes("dollar_ecode_type","len")=44 + Set gtmtypes("dollar_ecode_type",1,"name")="dollar_ecode_type.begin" + Set gtmtypes("dollar_ecode_type",1,"off")=0 + Set gtmtypes("dollar_ecode_type",1,"len")=4 + Set gtmtypes("dollar_ecode_type",1,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","begin")=1 + Set gtmtypes("dollar_ecode_type",2,"name")="dollar_ecode_type.end" + Set gtmtypes("dollar_ecode_type",2,"off")=4 + Set gtmtypes("dollar_ecode_type",2,"len")=4 + Set gtmtypes("dollar_ecode_type",2,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","end")=2 + Set gtmtypes("dollar_ecode_type",3,"name")="dollar_ecode_type.top" + Set gtmtypes("dollar_ecode_type",3,"off")=8 + Set gtmtypes("dollar_ecode_type",3,"len")=4 + Set gtmtypes("dollar_ecode_type",3,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","top")=3 + Set gtmtypes("dollar_ecode_type",4,"name")="dollar_ecode_type.array" + Set gtmtypes("dollar_ecode_type",4,"off")=12 + Set gtmtypes("dollar_ecode_type",4,"len")=4 + Set gtmtypes("dollar_ecode_type",4,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","array")=4 + Set gtmtypes("dollar_ecode_type",5,"name")="dollar_ecode_type.index" + Set gtmtypes("dollar_ecode_type",5,"off")=16 + Set gtmtypes("dollar_ecode_type",5,"len")=4 + Set gtmtypes("dollar_ecode_type",5,"type")="unsigned-int" + Set gtmtypfldindx("dollar_ecode_type","index")=5 + Set gtmtypes("dollar_ecode_type",6,"name")="dollar_ecode_type.error_last_ecode" + Set gtmtypes("dollar_ecode_type",6,"off")=20 + Set gtmtypes("dollar_ecode_type",6,"len")=4 + Set gtmtypes("dollar_ecode_type",6,"type")="int" + Set gtmtypfldindx("dollar_ecode_type","error_last_ecode")=6 + Set gtmtypes("dollar_ecode_type",7,"name")="dollar_ecode_type.error_last_b_line" + Set gtmtypes("dollar_ecode_type",7,"off")=24 + Set gtmtypes("dollar_ecode_type",7,"len")=4 + Set gtmtypes("dollar_ecode_type",7,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_last_b_line")=7 + Set gtmtypes("dollar_ecode_type",8,"name")="dollar_ecode_type.first_ecode_error_frame" + Set gtmtypes("dollar_ecode_type",8,"off")=28 + Set gtmtypes("dollar_ecode_type",8,"len")=4 + Set gtmtypes("dollar_ecode_type",8,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","first_ecode_error_frame")=8 + Set gtmtypes("dollar_ecode_type",9,"name")="dollar_ecode_type.error_rtn_addr" + Set gtmtypes("dollar_ecode_type",9,"off")=32 + Set gtmtypes("dollar_ecode_type",9,"len")=4 + Set gtmtypes("dollar_ecode_type",9,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_rtn_addr")=9 + Set gtmtypes("dollar_ecode_type",10,"name")="dollar_ecode_type.error_rtn_ctxt" + Set gtmtypes("dollar_ecode_type",10,"off")=36 + Set gtmtypes("dollar_ecode_type",10,"len")=4 + Set gtmtypes("dollar_ecode_type",10,"type")="addr" + Set gtmtypfldindx("dollar_ecode_type","error_rtn_ctxt")=10 + Set gtmtypes("dollar_ecode_type",11,"name")="dollar_ecode_type.error_return_addr" + Set gtmtypes("dollar_ecode_type",11,"off")=40 + Set gtmtypes("dollar_ecode_type",11,"len")=4 + Set gtmtypes("dollar_ecode_type",11,"type")="void" + Set gtmtypfldindx("dollar_ecode_type","error_return_addr")=11 + ; + Set gtmtypes("dollar_stack_struct")="struct" + Set gtmtypes("dollar_stack_struct",0)=13 + Set gtmtypes("dollar_stack_struct","len")=40 + Set gtmtypes("dollar_stack_struct",1,"name")="dollar_stack_struct.mode_str" + Set gtmtypes("dollar_stack_struct",1,"off")=0 + Set gtmtypes("dollar_stack_struct",1,"len")=12 + Set gtmtypes("dollar_stack_struct",1,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","mode_str")=1 + Set gtmtypes("dollar_stack_struct",2,"name")="dollar_stack_struct.mode_str.char_len" + Set gtmtypes("dollar_stack_struct",2,"off")=0 + Set gtmtypes("dollar_stack_struct",2,"len")=4 + Set gtmtypes("dollar_stack_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","mode_str.char_len")=2 + Set gtmtypes("dollar_stack_struct",3,"name")="dollar_stack_struct.mode_str.len" + Set gtmtypes("dollar_stack_struct",3,"off")=4 + Set gtmtypes("dollar_stack_struct",3,"len")=4 + Set gtmtypes("dollar_stack_struct",3,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","mode_str.len")=3 + Set gtmtypes("dollar_stack_struct",4,"name")="dollar_stack_struct.mode_str.addr" + Set gtmtypes("dollar_stack_struct",4,"off")=8 + Set gtmtypes("dollar_stack_struct",4,"len")=4 + Set gtmtypes("dollar_stack_struct",4,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","mode_str.addr")=4 + Set gtmtypes("dollar_stack_struct",5,"name")="dollar_stack_struct.ecode_ptr" + Set gtmtypes("dollar_stack_struct",5,"off")=12 + Set gtmtypes("dollar_stack_struct",5,"len")=4 + Set gtmtypes("dollar_stack_struct",5,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","ecode_ptr")=5 + Set gtmtypes("dollar_stack_struct",6,"name")="dollar_stack_struct.mcode_str" + Set gtmtypes("dollar_stack_struct",6,"off")=16 + Set gtmtypes("dollar_stack_struct",6,"len")=12 + Set gtmtypes("dollar_stack_struct",6,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","mcode_str")=6 + Set gtmtypes("dollar_stack_struct",7,"name")="dollar_stack_struct.mcode_str.char_len" + Set gtmtypes("dollar_stack_struct",7,"off")=16 + Set gtmtypes("dollar_stack_struct",7,"len")=4 + Set gtmtypes("dollar_stack_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.char_len")=7 + Set gtmtypes("dollar_stack_struct",8,"name")="dollar_stack_struct.mcode_str.len" + Set gtmtypes("dollar_stack_struct",8,"off")=20 + Set gtmtypes("dollar_stack_struct",8,"len")=4 + Set gtmtypes("dollar_stack_struct",8,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.len")=8 + Set gtmtypes("dollar_stack_struct",9,"name")="dollar_stack_struct.mcode_str.addr" + Set gtmtypes("dollar_stack_struct",9,"off")=24 + Set gtmtypes("dollar_stack_struct",9,"len")=4 + Set gtmtypes("dollar_stack_struct",9,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","mcode_str.addr")=9 + Set gtmtypes("dollar_stack_struct",10,"name")="dollar_stack_struct.place_str" + Set gtmtypes("dollar_stack_struct",10,"off")=28 + Set gtmtypes("dollar_stack_struct",10,"len")=12 + Set gtmtypes("dollar_stack_struct",10,"type")="mstr" + Set gtmtypfldindx("dollar_stack_struct","place_str")=10 + Set gtmtypes("dollar_stack_struct",11,"name")="dollar_stack_struct.place_str.char_len" + Set gtmtypes("dollar_stack_struct",11,"off")=28 + Set gtmtypes("dollar_stack_struct",11,"len")=4 + Set gtmtypes("dollar_stack_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_struct","place_str.char_len")=11 + Set gtmtypes("dollar_stack_struct",12,"name")="dollar_stack_struct.place_str.len" + Set gtmtypes("dollar_stack_struct",12,"off")=32 + Set gtmtypes("dollar_stack_struct",12,"len")=4 + Set gtmtypes("dollar_stack_struct",12,"type")="int" + Set gtmtypfldindx("dollar_stack_struct","place_str.len")=12 + Set gtmtypes("dollar_stack_struct",13,"name")="dollar_stack_struct.place_str.addr" + Set gtmtypes("dollar_stack_struct",13,"off")=36 + Set gtmtypes("dollar_stack_struct",13,"len")=4 + Set gtmtypes("dollar_stack_struct",13,"type")="addr" + Set gtmtypfldindx("dollar_stack_struct","place_str.addr")=13 + ; + Set gtmtypes("dollar_stack_type")="struct" + Set gtmtypes("dollar_stack_type",0)=6 + Set gtmtypes("dollar_stack_type","len")=24 + Set gtmtypes("dollar_stack_type",1,"name")="dollar_stack_type.begin" + Set gtmtypes("dollar_stack_type",1,"off")=0 + Set gtmtypes("dollar_stack_type",1,"len")=4 + Set gtmtypes("dollar_stack_type",1,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","begin")=1 + Set gtmtypes("dollar_stack_type",2,"name")="dollar_stack_type.end" + Set gtmtypes("dollar_stack_type",2,"off")=4 + Set gtmtypes("dollar_stack_type",2,"len")=4 + Set gtmtypes("dollar_stack_type",2,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","end")=2 + Set gtmtypes("dollar_stack_type",3,"name")="dollar_stack_type.top" + Set gtmtypes("dollar_stack_type",3,"off")=8 + Set gtmtypes("dollar_stack_type",3,"len")=4 + Set gtmtypes("dollar_stack_type",3,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","top")=3 + Set gtmtypes("dollar_stack_type",4,"name")="dollar_stack_type.array" + Set gtmtypes("dollar_stack_type",4,"off")=12 + Set gtmtypes("dollar_stack_type",4,"len")=4 + Set gtmtypes("dollar_stack_type",4,"type")="addr" + Set gtmtypfldindx("dollar_stack_type","array")=4 + Set gtmtypes("dollar_stack_type",5,"name")="dollar_stack_type.index" + Set gtmtypes("dollar_stack_type",5,"off")=16 + Set gtmtypes("dollar_stack_type",5,"len")=4 + Set gtmtypes("dollar_stack_type",5,"type")="unsigned-int" + Set gtmtypfldindx("dollar_stack_type","index")=5 + Set gtmtypes("dollar_stack_type",6,"name")="dollar_stack_type.incomplete" + Set gtmtypes("dollar_stack_type",6,"off")=20 + Set gtmtypes("dollar_stack_type",6,"len")=4 + Set gtmtypes("dollar_stack_type",6,"type")="boolean_t" + Set gtmtypfldindx("dollar_stack_type","incomplete")=6 + ; + Set gtmtypes("dskread_trace")="struct" + Set gtmtypes("dskread_trace",0)=5 + Set gtmtypes("dskread_trace","len")=24 + Set gtmtypes("dskread_trace",1,"name")="dskread_trace.cr_off" + Set gtmtypes("dskread_trace",1,"off")=0 + Set gtmtypes("dskread_trace",1,"len")=4 + Set gtmtypes("dskread_trace",1,"type")="intptr_t" + Set gtmtypfldindx("dskread_trace","cr_off")=1 + Set gtmtypes("dskread_trace",2,"name")="dskread_trace.cr_tn" + Set gtmtypes("dskread_trace",2,"off")=4 + Set gtmtypes("dskread_trace",2,"len")=8 + Set gtmtypes("dskread_trace",2,"type")="uint64_t" + Set gtmtypfldindx("dskread_trace","cr_tn")=2 + Set gtmtypes("dskread_trace",3,"name")="dskread_trace.process_id" + Set gtmtypes("dskread_trace",3,"off")=12 + Set gtmtypes("dskread_trace",3,"len")=4 + Set gtmtypes("dskread_trace",3,"type")="unsigned-int" + Set gtmtypfldindx("dskread_trace","process_id")=3 + Set gtmtypes("dskread_trace",4,"name")="dskread_trace.blk" + Set gtmtypes("dskread_trace",4,"off")=16 + Set gtmtypes("dskread_trace",4,"len")=4 + Set gtmtypes("dskread_trace",4,"type")="int" + Set gtmtypfldindx("dskread_trace","blk")=4 + Set gtmtypes("dskread_trace",5,"name")="dskread_trace.cycle" + Set gtmtypes("dskread_trace",5,"off")=20 + Set gtmtypes("dskread_trace",5,"len")=4 + Set gtmtypes("dskread_trace",5,"type")="unsigned-int" + Set gtmtypfldindx("dskread_trace","cycle")=5 + ; + Set gtmtypes("enc_handles")="struct" + Set gtmtypes("enc_handles",0)=2 + Set gtmtypes("enc_handles","len")=8 + Set gtmtypes("enc_handles",1,"name")="enc_handles.encr_key_handle" + Set gtmtypes("enc_handles",1,"off")=0 + Set gtmtypes("enc_handles",1,"len")=4 + Set gtmtypes("enc_handles",1,"type")="addr" + Set gtmtypfldindx("enc_handles","encr_key_handle")=1 + Set gtmtypes("enc_handles",2,"name")="enc_handles.encr_key_handle2" + Set gtmtypes("enc_handles",2,"off")=4 + Set gtmtypes("enc_handles",2,"len")=4 + Set gtmtypes("enc_handles",2,"type")="addr" + Set gtmtypfldindx("enc_handles","encr_key_handle2")=2 + ; + Set gtmtypes("enc_info_t")="struct" + Set gtmtypes("enc_info_t",0)=9 + Set gtmtypes("enc_info_t","len")=160 + Set gtmtypes("enc_info_t",1,"name")="enc_info_t.reorg_encrypt_cycle" + Set gtmtypes("enc_info_t",1,"off")=0 + Set gtmtypes("enc_info_t",1,"len")=4 + Set gtmtypes("enc_info_t",1,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","reorg_encrypt_cycle")=1 + Set gtmtypes("enc_info_t",2,"name")="enc_info_t.is_encrypted" + Set gtmtypes("enc_info_t",2,"off")=4 + Set gtmtypes("enc_info_t",2,"len")=4 + Set gtmtypes("enc_info_t",2,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","is_encrypted")=2 + Set gtmtypes("enc_info_t",3,"name")="enc_info_t.non_null_iv" + Set gtmtypes("enc_info_t",3,"off")=8 + Set gtmtypes("enc_info_t",3,"len")=4 + Set gtmtypes("enc_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("enc_info_t","non_null_iv")=3 + Set gtmtypes("enc_info_t",4,"name")="enc_info_t.encryption_hash_cutoff" + Set gtmtypes("enc_info_t",4,"off")=12 + Set gtmtypes("enc_info_t",4,"len")=4 + Set gtmtypes("enc_info_t",4,"type")="int" + Set gtmtypfldindx("enc_info_t","encryption_hash_cutoff")=4 + Set gtmtypes("enc_info_t",5,"name")="enc_info_t.encryption_hash2_start_tn" + Set gtmtypes("enc_info_t",5,"off")=16 + Set gtmtypes("enc_info_t",5,"len")=8 + Set gtmtypes("enc_info_t",5,"type")="uint64_t" + Set gtmtypfldindx("enc_info_t","encryption_hash2_start_tn")=5 + Set gtmtypes("enc_info_t",6,"name")="enc_info_t.encryption_hash" + Set gtmtypes("enc_info_t",6,"off")=24 + Set gtmtypes("enc_info_t",6,"len")=64 + Set gtmtypes("enc_info_t",6,"type")="char" + Set gtmtypfldindx("enc_info_t","encryption_hash")=6 + Set gtmtypes("enc_info_t",7,"name")="enc_info_t.encryption_hash2" + Set gtmtypes("enc_info_t",7,"off")=88 + Set gtmtypes("enc_info_t",7,"len")=64 + Set gtmtypes("enc_info_t",7,"type")="char" + Set gtmtypfldindx("enc_info_t","encryption_hash2")=7 + Set gtmtypes("enc_info_t",8,"name")="enc_info_t.issued_db_init_crypt_warning" + Set gtmtypes("enc_info_t",8,"off")=152 + Set gtmtypes("enc_info_t",8,"len")=4 + Set gtmtypes("enc_info_t",8,"type")="boolean_t" + Set gtmtypfldindx("enc_info_t","issued_db_init_crypt_warning")=8 + Set gtmtypes("enc_info_t",9,"name")="enc_info_t.filler" + Set gtmtypes("enc_info_t",9,"off")=156 + Set gtmtypes("enc_info_t",9,"len")=4 + Set gtmtypes("enc_info_t",9,"type")="unsigned-int" + Set gtmtypfldindx("enc_info_t","filler")=9 + ; + Set gtmtypes("endian32_struct")="union" + Set gtmtypes("endian32_struct",0)=4 + Set gtmtypes("endian32_struct","len")=4 + Set gtmtypes("endian32_struct",1,"name")="endian32_struct.shorts" + Set gtmtypes("endian32_struct",1,"off")=0 + Set gtmtypes("endian32_struct",1,"len")=4 + Set gtmtypes("endian32_struct",1,"type")="struct" + Set gtmtypfldindx("endian32_struct","shorts")=1 + Set gtmtypes("endian32_struct",2,"name")="endian32_struct.shorts.little_endian" + Set gtmtypes("endian32_struct",2,"off")=0 + Set gtmtypes("endian32_struct",2,"len")=2 + Set gtmtypes("endian32_struct",2,"type")="unsigned-short" + Set gtmtypfldindx("endian32_struct","shorts.little_endian")=2 + Set gtmtypes("endian32_struct",3,"name")="endian32_struct.shorts.big_endian" + Set gtmtypes("endian32_struct",3,"off")=2 + Set gtmtypes("endian32_struct",3,"len")=2 + Set gtmtypes("endian32_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("endian32_struct","shorts.big_endian")=3 + Set gtmtypes("endian32_struct",4,"name")="endian32_struct.word32" + Set gtmtypes("endian32_struct",4,"off")=0 + Set gtmtypes("endian32_struct",4,"len")=4 + Set gtmtypes("endian32_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("endian32_struct","word32")=4 + ; + Set gtmtypes("err_ctl")="struct" + Set gtmtypes("err_ctl",0)=4 + Set gtmtypes("err_ctl","len")=16 + Set gtmtypes("err_ctl",1,"name")="err_ctl.facnum" + Set gtmtypes("err_ctl",1,"off")=0 + Set gtmtypes("err_ctl",1,"len")=4 + Set gtmtypes("err_ctl",1,"type")="int" + Set gtmtypfldindx("err_ctl","facnum")=1 + Set gtmtypes("err_ctl",2,"name")="err_ctl.facname" + Set gtmtypes("err_ctl",2,"off")=4 + Set gtmtypes("err_ctl",2,"len")=4 + Set gtmtypes("err_ctl",2,"type")="addr" + Set gtmtypfldindx("err_ctl","facname")=2 + Set gtmtypes("err_ctl",3,"name")="err_ctl.fst_msg" + Set gtmtypes("err_ctl",3,"off")=8 + Set gtmtypes("err_ctl",3,"len")=4 + Set gtmtypes("err_ctl",3,"type")="addr" + Set gtmtypfldindx("err_ctl","fst_msg")=3 + Set gtmtypes("err_ctl",4,"name")="err_ctl.msg_cnt" + Set gtmtypes("err_ctl",4,"off")=12 + Set gtmtypes("err_ctl",4,"len")=4 + Set gtmtypes("err_ctl",4,"type")="int" + Set gtmtypfldindx("err_ctl","msg_cnt")=4 + ; + Set gtmtypes("err_msg")="struct" + Set gtmtypes("err_msg",0)=3 + Set gtmtypes("err_msg","len")=12 + Set gtmtypes("err_msg",1,"name")="err_msg.tag" + Set gtmtypes("err_msg",1,"off")=0 + Set gtmtypes("err_msg",1,"len")=4 + Set gtmtypes("err_msg",1,"type")="addr" + Set gtmtypfldindx("err_msg","tag")=1 + Set gtmtypes("err_msg",2,"name")="err_msg.msg" + Set gtmtypes("err_msg",2,"off")=4 + Set gtmtypes("err_msg",2,"len")=4 + Set gtmtypes("err_msg",2,"type")="addr" + Set gtmtypfldindx("err_msg","msg")=2 + Set gtmtypes("err_msg",3,"name")="err_msg.parm_count" + Set gtmtypes("err_msg",3,"off")=8 + Set gtmtypes("err_msg",3,"len")=4 + Set gtmtypes("err_msg",3,"type")="int" + Set gtmtypfldindx("err_msg","parm_count")=3 + ; + Set gtmtypes("ext_tms")="struct" + Set gtmtypes("ext_tms",0)=3 + Set gtmtypes("ext_tms","len")=24 + Set gtmtypes("ext_tms",1,"name")="ext_tms.tms_utime" + Set gtmtypes("ext_tms",1,"off")=0 + Set gtmtypes("ext_tms",1,"len")=8 + Set gtmtypes("ext_tms",1,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_utime")=1 + Set gtmtypes("ext_tms",2,"name")="ext_tms.tms_stime" + Set gtmtypes("ext_tms",2,"off")=8 + Set gtmtypes("ext_tms",2,"len")=8 + Set gtmtypes("ext_tms",2,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_stime")=2 + Set gtmtypes("ext_tms",3,"name")="ext_tms.tms_etime" + Set gtmtypes("ext_tms",3,"off")=16 + Set gtmtypes("ext_tms",3,"len")=8 + Set gtmtypes("ext_tms",3,"type")="uint64_t" + Set gtmtypfldindx("ext_tms","tms_etime")=3 + ; + Set gtmtypes("extr_fn_t")="struct" + Set gtmtypes("extr_fn_t",0)=1 + Set gtmtypes("extr_fn_t","len")=256 + Set gtmtypes("extr_fn_t",1,"name")="extr_fn_t.fn" + Set gtmtypes("extr_fn_t",1,"off")=0 + Set gtmtypes("extr_fn_t",1,"len")=256 + Set gtmtypes("extr_fn_t",1,"type")="char" + Set gtmtypfldindx("extr_fn_t","fn")=1 + ; + Set gtmtypes("fdinfo_t")="struct" + Set gtmtypes("fdinfo_t",0)=2 + Set gtmtypes("fdinfo_t","len")=8 + Set gtmtypes("fdinfo_t",1,"name")="fdinfo_t.reg" + Set gtmtypes("fdinfo_t",1,"off")=0 + Set gtmtypes("fdinfo_t",1,"len")=4 + Set gtmtypes("fdinfo_t",1,"type")="addr" + Set gtmtypfldindx("fdinfo_t","reg")=1 + Set gtmtypes("fdinfo_t",2,"name")="fdinfo_t.is_db" + Set gtmtypes("fdinfo_t",2,"off")=4 + Set gtmtypes("fdinfo_t",2,"len")=4 + Set gtmtypes("fdinfo_t",2,"type")="boolean_t" + Set gtmtypfldindx("fdinfo_t","is_db")=2 + ; + Set gtmtypes("file_control")="struct" + Set gtmtypes("file_control",0)=6 + Set gtmtypes("file_control","len")=24 + Set gtmtypes("file_control",1,"name")="file_control.op_buff" + Set gtmtypes("file_control",1,"off")=0 + Set gtmtypes("file_control",1,"len")=4 + Set gtmtypes("file_control",1,"type")="addr" + Set gtmtypfldindx("file_control","op_buff")=1 + Set gtmtypes("file_control",2,"name")="file_control.op_pos" + Set gtmtypes("file_control",2,"off")=4 + Set gtmtypes("file_control",2,"len")=8 + Set gtmtypes("file_control",2,"type")="int64_t" + Set gtmtypfldindx("file_control","op_pos")=2 + Set gtmtypes("file_control",3,"name")="file_control.op_len" + Set gtmtypes("file_control",3,"off")=12 + Set gtmtypes("file_control",3,"len")=4 + Set gtmtypes("file_control",3,"type")="int" + Set gtmtypfldindx("file_control","op_len")=3 + Set gtmtypes("file_control",4,"name")="file_control.file_info" + Set gtmtypes("file_control",4,"off")=16 + Set gtmtypes("file_control",4,"len")=4 + Set gtmtypes("file_control",4,"type")="addr" + Set gtmtypfldindx("file_control","file_info")=4 + Set gtmtypes("file_control",5,"name")="file_control.file_type" + Set gtmtypes("file_control",5,"off")=20 + Set gtmtypes("file_control",5,"len")=1 + Set gtmtypes("file_control",5,"type")="char" + Set gtmtypfldindx("file_control","file_type")=5 + Set gtmtypes("file_control",6,"name")="file_control.op" + Set gtmtypes("file_control",6,"off")=21 + Set gtmtypes("file_control",6,"len")=1 + Set gtmtypes("file_control",6,"type")="char" + Set gtmtypfldindx("file_control","op")=6 + ; + Set gtmtypes("file_info")="struct" + Set gtmtypes("file_info",0)=5 + Set gtmtypes("file_info","len")=52 + Set gtmtypes("file_info",1,"name")="file_info.fac" + Set gtmtypes("file_info",1,"off")=0 + Set gtmtypes("file_info",1,"len")=4 + Set gtmtypes("file_info",1,"type")="int" + Set gtmtypfldindx("file_info","fac")=1 + Set gtmtypes("file_info",2,"name")="file_info.dat" + Set gtmtypes("file_info",2,"off")=4 + Set gtmtypes("file_info",2,"len")=8 + Set gtmtypes("file_info",2,"type")="short" + Set gtmtypfldindx("file_info","dat")=2 + Set gtmtypes("file_info",2,"dim")=4 + Set gtmtypes("file_info",3,"name")="file_info.usr" + Set gtmtypes("file_info",3,"off")=12 + Set gtmtypes("file_info",3,"len")=31 + Set gtmtypes("file_info",3,"type")="char" + Set gtmtypfldindx("file_info","usr")=3 + Set gtmtypes("file_info",4,"name")="file_info.trm" + Set gtmtypes("file_info",4,"off")=43 + Set gtmtypes("file_info",4,"len")=7 + Set gtmtypes("file_info",4,"type")="char" + Set gtmtypfldindx("file_info","trm")=4 + Set gtmtypes("file_info",5,"name")="file_info.filler" + Set gtmtypes("file_info",5,"off")=50 + Set gtmtypes("file_info",5,"len")=2 + Set gtmtypes("file_info",5,"type")="char" + Set gtmtypfldindx("file_info","filler")=5 + ; + Set gtmtypes("file_log")="struct" + Set gtmtypes("file_log",0)=7 + Set gtmtypes("file_log","len")=264 + Set gtmtypes("file_log",1,"name")="file_log.cnt" + Set gtmtypes("file_log",1,"off")=0 + Set gtmtypes("file_log",1,"len")=4 + Set gtmtypes("file_log",1,"type")="int" + Set gtmtypfldindx("file_log","cnt")=1 + Set gtmtypes("file_log",2,"name")="file_log.ent" + Set gtmtypes("file_log",2,"off")=4 + Set gtmtypes("file_log",2,"len")=260 + Set gtmtypes("file_log",2,"type")="file_info" + Set gtmtypfldindx("file_log","ent")=2 + Set gtmtypes("file_log",2,"dim")=5 + Set gtmtypes("file_log",3,"name")="file_log.ent[0].fac" + Set gtmtypes("file_log",3,"off")=4 + Set gtmtypes("file_log",3,"len")=4 + Set gtmtypes("file_log",3,"type")="int" + Set gtmtypfldindx("file_log","ent[0].fac")=3 + Set gtmtypes("file_log",4,"name")="file_log.ent[0].dat" + Set gtmtypes("file_log",4,"off")=8 + Set gtmtypes("file_log",4,"len")=8 + Set gtmtypes("file_log",4,"type")="short" + Set gtmtypfldindx("file_log","ent[0].dat")=4 + Set gtmtypes("file_log",4,"dim")=4 + Set gtmtypes("file_log",5,"name")="file_log.ent[0].usr" + Set gtmtypes("file_log",5,"off")=16 + Set gtmtypes("file_log",5,"len")=31 + Set gtmtypes("file_log",5,"type")="char" + Set gtmtypfldindx("file_log","ent[0].usr")=5 + Set gtmtypes("file_log",6,"name")="file_log.ent[0].trm" + Set gtmtypes("file_log",6,"off")=47 + Set gtmtypes("file_log",6,"len")=7 + Set gtmtypes("file_log",6,"type")="char" + Set gtmtypfldindx("file_log","ent[0].trm")=6 + Set gtmtypes("file_log",7,"name")="file_log.ent[0].filler" + Set gtmtypes("file_log",7,"off")=54 + Set gtmtypes("file_log",7,"len")=2 + Set gtmtypes("file_log",7,"type")="char" + Set gtmtypfldindx("file_log","ent[0].filler")=7 + ; + Set gtmtypes("file_pointer")="struct" + Set gtmtypes("file_pointer",0)=5 + Set gtmtypes("file_pointer","len")=16 + Set gtmtypes("file_pointer",1,"name")="file_pointer.fd" + Set gtmtypes("file_pointer",1,"off")=0 + Set gtmtypes("file_pointer",1,"len")=4 + Set gtmtypes("file_pointer",1,"type")="int" + Set gtmtypfldindx("file_pointer","fd")=1 + Set gtmtypes("file_pointer",2,"name")="file_pointer.v" + Set gtmtypes("file_pointer",2,"off")=4 + Set gtmtypes("file_pointer",2,"len")=12 + Set gtmtypes("file_pointer",2,"type")="mstr" + Set gtmtypfldindx("file_pointer","v")=2 + Set gtmtypes("file_pointer",3,"name")="file_pointer.v.char_len" + Set gtmtypes("file_pointer",3,"off")=4 + Set gtmtypes("file_pointer",3,"len")=4 + Set gtmtypes("file_pointer",3,"type")="unsigned-int" + Set gtmtypfldindx("file_pointer","v.char_len")=3 + Set gtmtypes("file_pointer",4,"name")="file_pointer.v.len" + Set gtmtypes("file_pointer",4,"off")=8 + Set gtmtypes("file_pointer",4,"len")=4 + Set gtmtypes("file_pointer",4,"type")="int" + Set gtmtypfldindx("file_pointer","v.len")=4 + Set gtmtypes("file_pointer",5,"name")="file_pointer.v.addr" + Set gtmtypes("file_pointer",5,"off")=12 + Set gtmtypes("file_pointer",5,"len")=4 + Set gtmtypes("file_pointer",5,"type")="addr" + Set gtmtypfldindx("file_pointer","v.addr")=5 + ; + Set gtmtypes("fnpc")="struct" + Set gtmtypes("fnpc",0)=9 + Set gtmtypes("fnpc","len")=356 + Set gtmtypes("fnpc",1,"name")="fnpc.last_str" + Set gtmtypes("fnpc",1,"off")=0 + Set gtmtypes("fnpc",1,"len")=12 + Set gtmtypes("fnpc",1,"type")="mstr" + Set gtmtypfldindx("fnpc","last_str")=1 + Set gtmtypes("fnpc",2,"name")="fnpc.last_str.char_len" + Set gtmtypes("fnpc",2,"off")=0 + Set gtmtypes("fnpc",2,"len")=4 + Set gtmtypes("fnpc",2,"type")="unsigned-int" + Set gtmtypfldindx("fnpc","last_str.char_len")=2 + Set gtmtypes("fnpc",3,"name")="fnpc.last_str.len" + Set gtmtypes("fnpc",3,"off")=4 + Set gtmtypes("fnpc",3,"len")=4 + Set gtmtypes("fnpc",3,"type")="int" + Set gtmtypfldindx("fnpc","last_str.len")=3 + Set gtmtypes("fnpc",4,"name")="fnpc.last_str.addr" + Set gtmtypes("fnpc",4,"off")=8 + Set gtmtypes("fnpc",4,"len")=4 + Set gtmtypes("fnpc",4,"type")="addr" + Set gtmtypfldindx("fnpc","last_str.addr")=4 + Set gtmtypes("fnpc",5,"name")="fnpc.delim" + Set gtmtypes("fnpc",5,"off")=12 + Set gtmtypes("fnpc",5,"len")=4 + Set gtmtypes("fnpc",5,"type")="int" + Set gtmtypfldindx("fnpc","delim")=5 + Set gtmtypes("fnpc",6,"name")="fnpc.npcs" + Set gtmtypes("fnpc",6,"off")=16 + Set gtmtypes("fnpc",6,"len")=4 + Set gtmtypes("fnpc",6,"type")="int" + Set gtmtypfldindx("fnpc","npcs")=6 + Set gtmtypes("fnpc",7,"name")="fnpc.indx" + Set gtmtypes("fnpc",7,"off")=20 + Set gtmtypes("fnpc",7,"len")=4 + Set gtmtypes("fnpc",7,"type")="int" + Set gtmtypfldindx("fnpc","indx")=7 + Set gtmtypes("fnpc",8,"name")="fnpc.byte_oriented" + Set gtmtypes("fnpc",8,"off")=24 + Set gtmtypes("fnpc",8,"len")=4 + Set gtmtypes("fnpc",8,"type")="boolean_t" + Set gtmtypfldindx("fnpc","byte_oriented")=8 + Set gtmtypes("fnpc",9,"name")="fnpc.pstart" + Set gtmtypes("fnpc",9,"off")=28 + Set gtmtypes("fnpc",9,"len")=328 + Set gtmtypes("fnpc",9,"type")="unsigned-int" + Set gtmtypfldindx("fnpc","pstart")=9 + Set gtmtypes("fnpc",9,"dim")=82 + ; + Set gtmtypes("fnpc_area")="struct" + Set gtmtypes("fnpc_area",0)=12 + Set gtmtypes("fnpc_area","len")=17808 + Set gtmtypes("fnpc_area",1,"name")="fnpc_area.fnpcsteal" + Set gtmtypes("fnpc_area",1,"off")=0 + Set gtmtypes("fnpc_area",1,"len")=4 + Set gtmtypes("fnpc_area",1,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcsteal")=1 + Set gtmtypes("fnpc_area",2,"name")="fnpc_area.fnpcmax" + Set gtmtypes("fnpc_area",2,"off")=4 + Set gtmtypes("fnpc_area",2,"len")=4 + Set gtmtypes("fnpc_area",2,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcmax")=2 + Set gtmtypes("fnpc_area",3,"name")="fnpc_area.fnpcs" + Set gtmtypes("fnpc_area",3,"off")=8 + Set gtmtypes("fnpc_area",3,"len")=17800 + Set gtmtypes("fnpc_area",3,"type")="fnpc" + Set gtmtypfldindx("fnpc_area","fnpcs")=3 + Set gtmtypes("fnpc_area",3,"dim")=50 + Set gtmtypes("fnpc_area",4,"name")="fnpc_area.fnpcs[0].last_str" + Set gtmtypes("fnpc_area",4,"off")=8 + Set gtmtypes("fnpc_area",4,"len")=12 + Set gtmtypes("fnpc_area",4,"type")="mstr" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str")=4 + Set gtmtypes("fnpc_area",5,"name")="fnpc_area.fnpcs[0].last_str.char_len" + Set gtmtypes("fnpc_area",5,"off")=8 + Set gtmtypes("fnpc_area",5,"len")=4 + Set gtmtypes("fnpc_area",5,"type")="unsigned-int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.char_len")=5 + Set gtmtypes("fnpc_area",6,"name")="fnpc_area.fnpcs[0].last_str.len" + Set gtmtypes("fnpc_area",6,"off")=12 + Set gtmtypes("fnpc_area",6,"len")=4 + Set gtmtypes("fnpc_area",6,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.len")=6 + Set gtmtypes("fnpc_area",7,"name")="fnpc_area.fnpcs[0].last_str.addr" + Set gtmtypes("fnpc_area",7,"off")=16 + Set gtmtypes("fnpc_area",7,"len")=4 + Set gtmtypes("fnpc_area",7,"type")="addr" + Set gtmtypfldindx("fnpc_area","fnpcs[0].last_str.addr")=7 + Set gtmtypes("fnpc_area",8,"name")="fnpc_area.fnpcs[0].delim" + Set gtmtypes("fnpc_area",8,"off")=20 + Set gtmtypes("fnpc_area",8,"len")=4 + Set gtmtypes("fnpc_area",8,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].delim")=8 + Set gtmtypes("fnpc_area",9,"name")="fnpc_area.fnpcs[0].npcs" + Set gtmtypes("fnpc_area",9,"off")=24 + Set gtmtypes("fnpc_area",9,"len")=4 + Set gtmtypes("fnpc_area",9,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].npcs")=9 + Set gtmtypes("fnpc_area",10,"name")="fnpc_area.fnpcs[0].indx" + Set gtmtypes("fnpc_area",10,"off")=28 + Set gtmtypes("fnpc_area",10,"len")=4 + Set gtmtypes("fnpc_area",10,"type")="int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].indx")=10 + Set gtmtypes("fnpc_area",11,"name")="fnpc_area.fnpcs[0].byte_oriented" + Set gtmtypes("fnpc_area",11,"off")=32 + Set gtmtypes("fnpc_area",11,"len")=4 + Set gtmtypes("fnpc_area",11,"type")="boolean_t" + Set gtmtypfldindx("fnpc_area","fnpcs[0].byte_oriented")=11 + Set gtmtypes("fnpc_area",12,"name")="fnpc_area.fnpcs[0].pstart" + Set gtmtypes("fnpc_area",12,"off")=36 + Set gtmtypes("fnpc_area",12,"len")=328 + Set gtmtypes("fnpc_area",12,"type")="unsigned-int" + Set gtmtypfldindx("fnpc_area","fnpcs[0].pstart")=12 + Set gtmtypes("fnpc_area",12,"dim")=82 + ; + Set gtmtypes("forw_multi_struct")="struct" + Set gtmtypes("forw_multi_struct",0)=16 + Set gtmtypes("forw_multi_struct","len")=56 + Set gtmtypes("forw_multi_struct",1,"name")="forw_multi_struct.u" + Set gtmtypes("forw_multi_struct",1,"off")=0 + Set gtmtypes("forw_multi_struct",1,"len")=8 + Set gtmtypes("forw_multi_struct",1,"type")="union" + Set gtmtypfldindx("forw_multi_struct","u")=1 + Set gtmtypes("forw_multi_struct",2,"name")="forw_multi_struct.u.tabent" + Set gtmtypes("forw_multi_struct",2,"off")=0 + Set gtmtypes("forw_multi_struct",2,"len")=4 + Set gtmtypes("forw_multi_struct",2,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","u.tabent")=2 + Set gtmtypes("forw_multi_struct",3,"name")="forw_multi_struct.u.free_que" + Set gtmtypes("forw_multi_struct",3,"off")=0 + Set gtmtypes("forw_multi_struct",3,"len")=8 + Set gtmtypes("forw_multi_struct",3,"type")="que_ent" + Set gtmtypfldindx("forw_multi_struct","u.free_que")=3 + Set gtmtypes("forw_multi_struct",4,"name")="forw_multi_struct.u.free_que.fl" + Set gtmtypes("forw_multi_struct",4,"off")=0 + Set gtmtypes("forw_multi_struct",4,"len")=4 + Set gtmtypes("forw_multi_struct",4,"type")="intptr_t" + Set gtmtypfldindx("forw_multi_struct","u.free_que.fl")=4 + Set gtmtypes("forw_multi_struct",5,"name")="forw_multi_struct.u.free_que.bl" + Set gtmtypes("forw_multi_struct",5,"off")=4 + Set gtmtypes("forw_multi_struct",5,"len")=4 + Set gtmtypes("forw_multi_struct",5,"type")="intptr_t" + Set gtmtypfldindx("forw_multi_struct","u.free_que.bl")=5 + Set gtmtypes("forw_multi_struct",6,"name")="forw_multi_struct.token" + Set gtmtypes("forw_multi_struct",6,"off")=8 + Set gtmtypes("forw_multi_struct",6,"len")=8 + Set gtmtypes("forw_multi_struct",6,"type")="uint64_t" + Set gtmtypfldindx("forw_multi_struct","token")=6 + Set gtmtypes("forw_multi_struct",7,"name")="forw_multi_struct.first_tp_rctl" + Set gtmtypes("forw_multi_struct",7,"off")=16 + Set gtmtypes("forw_multi_struct",7,"len")=4 + Set gtmtypes("forw_multi_struct",7,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","first_tp_rctl")=7 + Set gtmtypes("forw_multi_struct",8,"name")="forw_multi_struct.next" + Set gtmtypes("forw_multi_struct",8,"off")=20 + Set gtmtypes("forw_multi_struct",8,"len")=4 + Set gtmtypes("forw_multi_struct",8,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","next")=8 + Set gtmtypes("forw_multi_struct",9,"name")="forw_multi_struct.shm_forw_multi" + Set gtmtypes("forw_multi_struct",9,"off")=24 + Set gtmtypes("forw_multi_struct",9,"len")=4 + Set gtmtypes("forw_multi_struct",9,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","shm_forw_multi")=9 + Set gtmtypes("forw_multi_struct",10,"name")="forw_multi_struct.multi" + Set gtmtypes("forw_multi_struct",10,"off")=28 + Set gtmtypes("forw_multi_struct",10,"len")=4 + Set gtmtypes("forw_multi_struct",10,"type")="addr" + Set gtmtypfldindx("forw_multi_struct","multi")=10 + Set gtmtypes("forw_multi_struct",11,"name")="forw_multi_struct.time" + Set gtmtypes("forw_multi_struct",11,"off")=32 + Set gtmtypes("forw_multi_struct",11,"len")=4 + Set gtmtypes("forw_multi_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","time")=11 + Set gtmtypes("forw_multi_struct",12,"name")="forw_multi_struct.recstat" + Set gtmtypes("forw_multi_struct",12,"off")=36 + Set gtmtypes("forw_multi_struct",12,"len")=4 + Set gtmtypes("forw_multi_struct",12,"type")="int" + Set gtmtypfldindx("forw_multi_struct","recstat")=12 + Set gtmtypes("forw_multi_struct",13,"name")="forw_multi_struct.num_reg_total" + Set gtmtypes("forw_multi_struct",13,"off")=40 + Set gtmtypes("forw_multi_struct",13,"len")=4 + Set gtmtypes("forw_multi_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_total")=13 + Set gtmtypes("forw_multi_struct",14,"name")="forw_multi_struct.num_reg_seen_backward" + Set gtmtypes("forw_multi_struct",14,"off")=44 + Set gtmtypes("forw_multi_struct",14,"len")=4 + Set gtmtypes("forw_multi_struct",14,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_seen_backward")=14 + Set gtmtypes("forw_multi_struct",15,"name")="forw_multi_struct.num_reg_seen_forward" + Set gtmtypes("forw_multi_struct",15,"off")=48 + Set gtmtypes("forw_multi_struct",15,"len")=4 + Set gtmtypes("forw_multi_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("forw_multi_struct","num_reg_seen_forward")=15 + Set gtmtypes("forw_multi_struct",16,"name")="forw_multi_struct.no_longer_stuck" + Set gtmtypes("forw_multi_struct",16,"off")=52 + Set gtmtypes("forw_multi_struct",16,"len")=4 + Set gtmtypes("forw_multi_struct",16,"type")="boolean_t" + Set gtmtypfldindx("forw_multi_struct","no_longer_stuck")=16 + ; + Set gtmtypes("ftokhist")="struct" + Set gtmtypes("ftokhist",0)=3 + Set gtmtypes("ftokhist","len")=16 + Set gtmtypes("ftokhist",1,"name")="ftokhist.ftok_oper" + Set gtmtypes("ftokhist",1,"off")=0 + Set gtmtypes("ftokhist",1,"len")=4 + Set gtmtypes("ftokhist",1,"type")="int" + Set gtmtypfldindx("ftokhist","ftok_oper")=1 + Set gtmtypes("ftokhist",2,"name")="ftokhist.process_id" + Set gtmtypes("ftokhist",2,"off")=4 + Set gtmtypes("ftokhist",2,"len")=4 + Set gtmtypes("ftokhist",2,"type")="unsigned-int" + Set gtmtypfldindx("ftokhist","process_id")=2 + Set gtmtypes("ftokhist",3,"name")="ftokhist.cr_tn" + Set gtmtypes("ftokhist",3,"off")=8 + Set gtmtypes("ftokhist",3,"len")=8 + Set gtmtypes("ftokhist",3,"type")="uint64_t" + Set gtmtypfldindx("ftokhist","cr_tn")=3 + ; + Set gtmtypes("fun_data_type")="struct" + Set gtmtypes("fun_data_type",0)=2 + Set gtmtypes("fun_data_type","len")=8 + Set gtmtypes("fun_data_type",1,"name")="fun_data_type.opcode" + Set gtmtypes("fun_data_type",1,"off")=0 + Set gtmtypes("fun_data_type",1,"len")=4 + Set gtmtypes("fun_data_type",1,"type")="unsigned-int" + Set gtmtypfldindx("fun_data_type","opcode")=1 + Set gtmtypes("fun_data_type",2,"name")="fun_data_type.os_syst" + Set gtmtypes("fun_data_type",2,"off")=4 + Set gtmtypes("fun_data_type",2,"len")=1 + Set gtmtypes("fun_data_type",2,"type")="char" + Set gtmtypfldindx("fun_data_type","os_syst")=2 + ; + Set gtmtypes("gcall_args")="struct" + Set gtmtypes("gcall_args",0)=6 + Set gtmtypes("gcall_args","len")=148 + Set gtmtypes("gcall_args",1,"name")="gcall_args.callargs" + Set gtmtypes("gcall_args",1,"off")=0 + Set gtmtypes("gcall_args",1,"len")=4 + Set gtmtypes("gcall_args",1,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","callargs")=1 + Set gtmtypes("gcall_args",2,"name")="gcall_args.truth" + Set gtmtypes("gcall_args",2,"off")=4 + Set gtmtypes("gcall_args",2,"len")=4 + Set gtmtypes("gcall_args",2,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","truth")=2 + Set gtmtypes("gcall_args",3,"name")="gcall_args.retval" + Set gtmtypes("gcall_args",3,"off")=8 + Set gtmtypes("gcall_args",3,"len")=4 + Set gtmtypes("gcall_args",3,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","retval")=3 + Set gtmtypes("gcall_args",4,"name")="gcall_args.mask" + Set gtmtypes("gcall_args",4,"off")=12 + Set gtmtypes("gcall_args",4,"len")=4 + Set gtmtypes("gcall_args",4,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","mask")=4 + Set gtmtypes("gcall_args",5,"name")="gcall_args.argcnt" + Set gtmtypes("gcall_args",5,"off")=16 + Set gtmtypes("gcall_args",5,"len")=4 + Set gtmtypes("gcall_args",5,"type")="intptr_t" + Set gtmtypfldindx("gcall_args","argcnt")=5 + Set gtmtypes("gcall_args",6,"name")="gcall_args.argval" + Set gtmtypes("gcall_args",6,"off")=20 + Set gtmtypes("gcall_args",6,"len")=128 + Set gtmtypes("gcall_args",6,"type")="addr" + Set gtmtypfldindx("gcall_args","argval")=6 + Set gtmtypes("gcall_args",6,"dim")=32 + ; + Set gtmtypes("gd_addr")="struct" + Set gtmtypes("gd_addr",0)=17 + Set gtmtypes("gd_addr","len")=76 + Set gtmtypes("gd_addr",1,"name")="gd_addr.local_locks" + Set gtmtypes("gd_addr",1,"off")=0 + Set gtmtypes("gd_addr",1,"len")=4 + Set gtmtypes("gd_addr",1,"type")="addr" + Set gtmtypfldindx("gd_addr","local_locks")=1 + Set gtmtypes("gd_addr",2,"name")="gd_addr.max_rec_size" + Set gtmtypes("gd_addr",2,"off")=4 + Set gtmtypes("gd_addr",2,"len")=4 + Set gtmtypes("gd_addr",2,"type")="int" + Set gtmtypfldindx("gd_addr","max_rec_size")=2 + Set gtmtypes("gd_addr",3,"name")="gd_addr.n_maps" + Set gtmtypes("gd_addr",3,"off")=8 + Set gtmtypes("gd_addr",3,"len")=4 + Set gtmtypes("gd_addr",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_maps")=3 + Set gtmtypes("gd_addr",4,"name")="gd_addr.n_regions" + Set gtmtypes("gd_addr",4,"off")=12 + Set gtmtypes("gd_addr",4,"len")=4 + Set gtmtypes("gd_addr",4,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_regions")=4 + Set gtmtypes("gd_addr",5,"name")="gd_addr.n_segments" + Set gtmtypes("gd_addr",5,"off")=16 + Set gtmtypes("gd_addr",5,"len")=4 + Set gtmtypes("gd_addr",5,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_segments")=5 + Set gtmtypes("gd_addr",6,"name")="gd_addr.n_gblnames" + Set gtmtypes("gd_addr",6,"off")=20 + Set gtmtypes("gd_addr",6,"len")=4 + Set gtmtypes("gd_addr",6,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","n_gblnames")=6 + Set gtmtypes("gd_addr",7,"name")="gd_addr.var_maps_len" + Set gtmtypes("gd_addr",7,"off")=24 + Set gtmtypes("gd_addr",7,"len")=4 + Set gtmtypes("gd_addr",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","var_maps_len")=7 + Set gtmtypes("gd_addr",8,"name")="gd_addr.maps" + Set gtmtypes("gd_addr",8,"off")=28 + Set gtmtypes("gd_addr",8,"len")=4 + Set gtmtypes("gd_addr",8,"type")="addr" + Set gtmtypfldindx("gd_addr","maps")=8 + Set gtmtypes("gd_addr",9,"name")="gd_addr.regions" + Set gtmtypes("gd_addr",9,"off")=32 + Set gtmtypes("gd_addr",9,"len")=4 + Set gtmtypes("gd_addr",9,"type")="addr" + Set gtmtypfldindx("gd_addr","regions")=9 + Set gtmtypes("gd_addr",10,"name")="gd_addr.segments" + Set gtmtypes("gd_addr",10,"off")=36 + Set gtmtypes("gd_addr",10,"len")=4 + Set gtmtypes("gd_addr",10,"type")="addr" + Set gtmtypfldindx("gd_addr","segments")=10 + Set gtmtypes("gd_addr",11,"name")="gd_addr.gblnames" + Set gtmtypes("gd_addr",11,"off")=40 + Set gtmtypes("gd_addr",11,"len")=4 + Set gtmtypes("gd_addr",11,"type")="addr" + Set gtmtypfldindx("gd_addr","gblnames")=11 + Set gtmtypes("gd_addr",12,"name")="gd_addr.link" + Set gtmtypes("gd_addr",12,"off")=44 + Set gtmtypes("gd_addr",12,"len")=4 + Set gtmtypes("gd_addr",12,"type")="addr" + Set gtmtypfldindx("gd_addr","link")=12 + Set gtmtypes("gd_addr",13,"name")="gd_addr.tab_ptr" + Set gtmtypes("gd_addr",13,"off")=48 + Set gtmtypes("gd_addr",13,"len")=4 + Set gtmtypes("gd_addr",13,"type")="addr" + Set gtmtypfldindx("gd_addr","tab_ptr")=13 + Set gtmtypes("gd_addr",14,"name")="gd_addr.id" + Set gtmtypes("gd_addr",14,"off")=52 + Set gtmtypes("gd_addr",14,"len")=4 + Set gtmtypes("gd_addr",14,"type")="addr" + Set gtmtypfldindx("gd_addr","id")=14 + Set gtmtypes("gd_addr",15,"name")="gd_addr.end" + Set gtmtypes("gd_addr",15,"off")=56 + Set gtmtypes("gd_addr",15,"len")=4 + Set gtmtypes("gd_addr",15,"type")="uintptr_t" + Set gtmtypfldindx("gd_addr","end")=15 + Set gtmtypes("gd_addr",16,"name")="gd_addr.has_span_gbls" + Set gtmtypes("gd_addr",16,"off")=60 + Set gtmtypes("gd_addr",16,"len")=4 + Set gtmtypes("gd_addr",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_addr","has_span_gbls")=16 + Set gtmtypes("gd_addr",17,"name")="gd_addr.filler" + Set gtmtypes("gd_addr",17,"off")=64 + Set gtmtypes("gd_addr",17,"len")=12 + Set gtmtypes("gd_addr",17,"type")="char" + Set gtmtypfldindx("gd_addr","filler")=17 + ; + Set gtmtypes("gd_binding")="struct" + Set gtmtypes("gd_binding",0)=8 + Set gtmtypes("gd_binding","len")=16 + Set gtmtypes("gd_binding",1,"name")="gd_binding.gvkey" + Set gtmtypes("gd_binding",1,"off")=0 + Set gtmtypes("gd_binding",1,"len")=4 + Set gtmtypes("gd_binding",1,"type")="union" + Set gtmtypfldindx("gd_binding","gvkey")=1 + Set gtmtypes("gd_binding",2,"name")="gd_binding.gvkey.addr" + Set gtmtypes("gd_binding",2,"off")=0 + Set gtmtypes("gd_binding",2,"len")=4 + Set gtmtypes("gd_binding",2,"type")="addr" + Set gtmtypfldindx("gd_binding","gvkey.addr")=2 + Set gtmtypes("gd_binding",3,"name")="gd_binding.gvkey.offset" + Set gtmtypes("gd_binding",3,"off")=0 + Set gtmtypes("gd_binding",3,"len")=4 + Set gtmtypes("gd_binding",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvkey.offset")=3 + Set gtmtypes("gd_binding",4,"name")="gd_binding.reg" + Set gtmtypes("gd_binding",4,"off")=4 + Set gtmtypes("gd_binding",4,"len")=4 + Set gtmtypes("gd_binding",4,"type")="union" + Set gtmtypfldindx("gd_binding","reg")=4 + Set gtmtypes("gd_binding",5,"name")="gd_binding.reg.addr" + Set gtmtypes("gd_binding",5,"off")=4 + Set gtmtypes("gd_binding",5,"len")=4 + Set gtmtypes("gd_binding",5,"type")="addr" + Set gtmtypfldindx("gd_binding","reg.addr")=5 + Set gtmtypes("gd_binding",6,"name")="gd_binding.reg.offset" + Set gtmtypes("gd_binding",6,"off")=4 + Set gtmtypes("gd_binding",6,"len")=4 + Set gtmtypes("gd_binding",6,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","reg.offset")=6 + Set gtmtypes("gd_binding",7,"name")="gd_binding.gvname_len" + Set gtmtypes("gd_binding",7,"off")=8 + Set gtmtypes("gd_binding",7,"len")=4 + Set gtmtypes("gd_binding",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvname_len")=7 + Set gtmtypes("gd_binding",8,"name")="gd_binding.gvkey_len" + Set gtmtypes("gd_binding",8,"off")=12 + Set gtmtypes("gd_binding",8,"len")=4 + Set gtmtypes("gd_binding",8,"type")="unsigned-int" + Set gtmtypfldindx("gd_binding","gvkey_len")=8 + ; + Set gtmtypes("gd_gblname")="struct" + Set gtmtypes("gd_gblname",0)=3 + Set gtmtypes("gd_gblname","len")=40 + Set gtmtypes("gd_gblname",1,"name")="gd_gblname.gblname" + Set gtmtypes("gd_gblname",1,"off")=0 + Set gtmtypes("gd_gblname",1,"len")=32 + Set gtmtypes("gd_gblname",1,"type")="unsigned-char" + Set gtmtypfldindx("gd_gblname","gblname")=1 + Set gtmtypes("gd_gblname",2,"name")="gd_gblname.act" + Set gtmtypes("gd_gblname",2,"off")=32 + Set gtmtypes("gd_gblname",2,"len")=4 + Set gtmtypes("gd_gblname",2,"type")="unsigned-int" + Set gtmtypfldindx("gd_gblname","act")=2 + Set gtmtypes("gd_gblname",3,"name")="gd_gblname.ver" + Set gtmtypes("gd_gblname",3,"off")=36 + Set gtmtypes("gd_gblname",3,"len")=4 + Set gtmtypes("gd_gblname",3,"type")="unsigned-int" + Set gtmtypfldindx("gd_gblname","ver")=3 + ; + Set gtmtypes("gd_region")="struct" + Set gtmtypes("gd_region",0)=38 + Set gtmtypes("gd_region","len")=372 + Set gtmtypes("gd_region",1,"name")="gd_region.rname_len" + Set gtmtypes("gd_region",1,"off")=0 + Set gtmtypes("gd_region",1,"len")=2 + Set gtmtypes("gd_region",1,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","rname_len")=1 + Set gtmtypes("gd_region",2,"name")="gd_region.rname" + Set gtmtypes("gd_region",2,"off")=2 + Set gtmtypes("gd_region",2,"len")=32 + Set gtmtypes("gd_region",2,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","rname")=2 + Set gtmtypes("gd_region",3,"name")="gd_region.max_key_size" + Set gtmtypes("gd_region",3,"off")=34 + Set gtmtypes("gd_region",3,"len")=2 + Set gtmtypes("gd_region",3,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","max_key_size")=3 + Set gtmtypes("gd_region",4,"name")="gd_region.max_rec_size" + Set gtmtypes("gd_region",4,"off")=36 + Set gtmtypes("gd_region",4,"len")=4 + Set gtmtypes("gd_region",4,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","max_rec_size")=4 + Set gtmtypes("gd_region",5,"name")="gd_region.dyn" + Set gtmtypes("gd_region",5,"off")=40 + Set gtmtypes("gd_region",5,"len")=4 + Set gtmtypes("gd_region",5,"type")="gd_seg_addr" + Set gtmtypfldindx("gd_region","dyn")=5 + Set gtmtypes("gd_region",6,"name")="gd_region.dyn.offset" + Set gtmtypes("gd_region",6,"off")=40 + Set gtmtypes("gd_region",6,"len")=4 + Set gtmtypes("gd_region",6,"type")="int" + Set gtmtypfldindx("gd_region","dyn.offset")=6 + Set gtmtypes("gd_region",7,"name")="gd_region.dyn.addr" + Set gtmtypes("gd_region",7,"off")=40 + Set gtmtypes("gd_region",7,"len")=4 + Set gtmtypes("gd_region",7,"type")="addr" + Set gtmtypfldindx("gd_region","dyn.addr")=7 + Set gtmtypes("gd_region",8,"name")="gd_region.stat" + Set gtmtypes("gd_region",8,"off")=44 + Set gtmtypes("gd_region",8,"len")=4 + Set gtmtypes("gd_region",8,"type")="gd_seg_addr" + Set gtmtypfldindx("gd_region","stat")=8 + Set gtmtypes("gd_region",9,"name")="gd_region.stat.offset" + Set gtmtypes("gd_region",9,"off")=44 + Set gtmtypes("gd_region",9,"len")=4 + Set gtmtypes("gd_region",9,"type")="int" + Set gtmtypfldindx("gd_region","stat.offset")=9 + Set gtmtypes("gd_region",10,"name")="gd_region.stat.addr" + Set gtmtypes("gd_region",10,"off")=44 + Set gtmtypes("gd_region",10,"len")=4 + Set gtmtypes("gd_region",10,"type")="addr" + Set gtmtypfldindx("gd_region","stat.addr")=10 + Set gtmtypes("gd_region",11,"name")="gd_region.open" + Set gtmtypes("gd_region",11,"off")=48 + Set gtmtypes("gd_region",11,"len")=1 + Set gtmtypes("gd_region",11,"type")="char" + Set gtmtypfldindx("gd_region","open")=11 + Set gtmtypes("gd_region",12,"name")="gd_region.lock_write" + Set gtmtypes("gd_region",12,"off")=49 + Set gtmtypes("gd_region",12,"len")=1 + Set gtmtypes("gd_region",12,"type")="char" + Set gtmtypfldindx("gd_region","lock_write")=12 + Set gtmtypes("gd_region",13,"name")="gd_region.null_subs" + Set gtmtypes("gd_region",13,"off")=50 + Set gtmtypes("gd_region",13,"len")=1 + Set gtmtypes("gd_region",13,"type")="char" + Set gtmtypfldindx("gd_region","null_subs")=13 + Set gtmtypes("gd_region",14,"name")="gd_region.jnl_state" + Set gtmtypes("gd_region",14,"off")=51 + Set gtmtypes("gd_region",14,"len")=1 + Set gtmtypes("gd_region",14,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_state")=14 + Set gtmtypes("gd_region",15,"name")="gd_region.jnl_alq" + Set gtmtypes("gd_region",15,"off")=52 + Set gtmtypes("gd_region",15,"len")=4 + Set gtmtypes("gd_region",15,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_alq")=15 + Set gtmtypes("gd_region",16,"name")="gd_region.jnl_deq" + Set gtmtypes("gd_region",16,"off")=56 + Set gtmtypes("gd_region",16,"len")=4 + Set gtmtypes("gd_region",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_deq")=16 + Set gtmtypes("gd_region",17,"name")="gd_region.jnl_autoswitchlimit" + Set gtmtypes("gd_region",17,"off")=60 + Set gtmtypes("gd_region",17,"len")=4 + Set gtmtypes("gd_region",17,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_autoswitchlimit")=17 + Set gtmtypes("gd_region",18,"name")="gd_region.jnl_alignsize" + Set gtmtypes("gd_region",18,"off")=64 + Set gtmtypes("gd_region",18,"len")=4 + Set gtmtypes("gd_region",18,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","jnl_alignsize")=18 + Set gtmtypes("gd_region",19,"name")="gd_region.jnl_epoch_interval" + Set gtmtypes("gd_region",19,"off")=68 + Set gtmtypes("gd_region",19,"len")=4 + Set gtmtypes("gd_region",19,"type")="int" + Set gtmtypfldindx("gd_region","jnl_epoch_interval")=19 + Set gtmtypes("gd_region",20,"name")="gd_region.jnl_sync_io" + Set gtmtypes("gd_region",20,"off")=72 + Set gtmtypes("gd_region",20,"len")=4 + Set gtmtypes("gd_region",20,"type")="int" + Set gtmtypfldindx("gd_region","jnl_sync_io")=20 + Set gtmtypes("gd_region",21,"name")="gd_region.jnl_yield_lmt" + Set gtmtypes("gd_region",21,"off")=76 + Set gtmtypes("gd_region",21,"len")=4 + Set gtmtypes("gd_region",21,"type")="int" + Set gtmtypfldindx("gd_region","jnl_yield_lmt")=21 + Set gtmtypes("gd_region",22,"name")="gd_region.jnl_buffer_size" + Set gtmtypes("gd_region",22,"off")=80 + Set gtmtypes("gd_region",22,"len")=2 + Set gtmtypes("gd_region",22,"type")="unsigned-short" + Set gtmtypfldindx("gd_region","jnl_buffer_size")=22 + Set gtmtypes("gd_region",23,"name")="gd_region.jnl_before_image" + Set gtmtypes("gd_region",23,"off")=82 + Set gtmtypes("gd_region",23,"len")=1 + Set gtmtypes("gd_region",23,"type")="char" + Set gtmtypfldindx("gd_region","jnl_before_image")=23 + Set gtmtypes("gd_region",24,"name")="gd_region.opening" + Set gtmtypes("gd_region",24,"off")=83 + Set gtmtypes("gd_region",24,"len")=1 + Set gtmtypes("gd_region",24,"type")="char" + Set gtmtypfldindx("gd_region","opening")=24 + Set gtmtypes("gd_region",25,"name")="gd_region.read_only" + Set gtmtypes("gd_region",25,"off")=84 + Set gtmtypes("gd_region",25,"len")=1 + Set gtmtypes("gd_region",25,"type")="char" + Set gtmtypfldindx("gd_region","read_only")=25 + Set gtmtypes("gd_region",26,"name")="gd_region.was_open" + Set gtmtypes("gd_region",26,"off")=85 + Set gtmtypes("gd_region",26,"len")=1 + Set gtmtypes("gd_region",26,"type")="char" + Set gtmtypfldindx("gd_region","was_open")=26 + Set gtmtypes("gd_region",27,"name")="gd_region.cmx_regnum" + Set gtmtypes("gd_region",27,"off")=86 + Set gtmtypes("gd_region",27,"len")=1 + Set gtmtypes("gd_region",27,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","cmx_regnum")=27 + Set gtmtypes("gd_region",28,"name")="gd_region.def_coll" + Set gtmtypes("gd_region",28,"off")=87 + Set gtmtypes("gd_region",28,"len")=1 + Set gtmtypes("gd_region",28,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","def_coll")=28 + Set gtmtypes("gd_region",29,"name")="gd_region.std_null_coll" + Set gtmtypes("gd_region",29,"off")=88 + Set gtmtypes("gd_region",29,"len")=1 + Set gtmtypes("gd_region",29,"type")="char" + Set gtmtypfldindx("gd_region","std_null_coll")=29 + Set gtmtypes("gd_region",30,"name")="gd_region.freeze_on_fail" + Set gtmtypes("gd_region",30,"off")=89 + Set gtmtypes("gd_region",30,"len")=1 + Set gtmtypes("gd_region",30,"type")="char" + Set gtmtypfldindx("gd_region","freeze_on_fail")=30 + Set gtmtypes("gd_region",31,"name")="gd_region.mumps_can_bypass" + Set gtmtypes("gd_region",31,"off")=90 + Set gtmtypes("gd_region",31,"len")=1 + Set gtmtypes("gd_region",31,"type")="char" + Set gtmtypfldindx("gd_region","mumps_can_bypass")=31 + Set gtmtypes("gd_region",32,"name")="gd_region.jnl_file_len" + Set gtmtypes("gd_region",32,"off")=91 + Set gtmtypes("gd_region",32,"len")=1 + Set gtmtypes("gd_region",32,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_file_len")=32 + Set gtmtypes("gd_region",33,"name")="gd_region.jnl_file_name" + Set gtmtypes("gd_region",33,"off")=92 + Set gtmtypes("gd_region",33,"len")=256 + Set gtmtypes("gd_region",33,"type")="unsigned-char" + Set gtmtypfldindx("gd_region","jnl_file_name")=33 + Set gtmtypes("gd_region",34,"name")="gd_region.node" + Set gtmtypes("gd_region",34,"off")=348 + Set gtmtypes("gd_region",34,"len")=4 + Set gtmtypes("gd_region",34,"type")="int" + Set gtmtypfldindx("gd_region","node")=34 + Set gtmtypes("gd_region",35,"name")="gd_region.sec_size" + Set gtmtypes("gd_region",35,"off")=352 + Set gtmtypes("gd_region",35,"len")=4 + Set gtmtypes("gd_region",35,"type")="int" + Set gtmtypfldindx("gd_region","sec_size")=35 + Set gtmtypes("gd_region",36,"name")="gd_region.is_spanned" + Set gtmtypes("gd_region",36,"off")=356 + Set gtmtypes("gd_region",36,"len")=4 + Set gtmtypes("gd_region",36,"type")="unsigned-int" + Set gtmtypfldindx("gd_region","is_spanned")=36 + Set gtmtypes("gd_region",37,"name")="gd_region.epoch_taper" + Set gtmtypes("gd_region",37,"off")=360 + Set gtmtypes("gd_region",37,"len")=1 + Set gtmtypes("gd_region",37,"type")="char" + Set gtmtypfldindx("gd_region","epoch_taper")=37 + Set gtmtypes("gd_region",38,"name")="gd_region.filler" + Set gtmtypes("gd_region",38,"off")=361 + Set gtmtypes("gd_region",38,"len")=11 + Set gtmtypes("gd_region",38,"type")="char" + Set gtmtypfldindx("gd_region","filler")=38 + ; + Set gtmtypes("gd_seg_addr")="union" + Set gtmtypes("gd_seg_addr",0)=2 + Set gtmtypes("gd_seg_addr","len")=4 + Set gtmtypes("gd_seg_addr",1,"name")="gd_seg_addr.offset" + Set gtmtypes("gd_seg_addr",1,"off")=0 + Set gtmtypes("gd_seg_addr",1,"len")=4 + Set gtmtypes("gd_seg_addr",1,"type")="int" + Set gtmtypfldindx("gd_seg_addr","offset")=1 + Set gtmtypes("gd_seg_addr",2,"name")="gd_seg_addr.addr" + Set gtmtypes("gd_seg_addr",2,"off")=0 + Set gtmtypes("gd_seg_addr",2,"len")=4 + Set gtmtypes("gd_seg_addr",2,"type")="addr" + Set gtmtypfldindx("gd_seg_addr","addr")=2 + ; + Set gtmtypes("gd_segment")="struct" + Set gtmtypes("gd_segment",0)=23 + Set gtmtypes("gd_segment","len")=364 + Set gtmtypes("gd_segment",1,"name")="gd_segment.sname_len" + Set gtmtypes("gd_segment",1,"off")=0 + Set gtmtypes("gd_segment",1,"len")=2 + Set gtmtypes("gd_segment",1,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","sname_len")=1 + Set gtmtypes("gd_segment",2,"name")="gd_segment.sname" + Set gtmtypes("gd_segment",2,"off")=2 + Set gtmtypes("gd_segment",2,"len")=32 + Set gtmtypes("gd_segment",2,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","sname")=2 + Set gtmtypes("gd_segment",3,"name")="gd_segment.fname_len" + Set gtmtypes("gd_segment",3,"off")=34 + Set gtmtypes("gd_segment",3,"len")=2 + Set gtmtypes("gd_segment",3,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","fname_len")=3 + Set gtmtypes("gd_segment",4,"name")="gd_segment.fname" + Set gtmtypes("gd_segment",4,"off")=36 + Set gtmtypes("gd_segment",4,"len")=256 + Set gtmtypes("gd_segment",4,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","fname")=4 + Set gtmtypes("gd_segment",5,"name")="gd_segment.blk_size" + Set gtmtypes("gd_segment",5,"off")=292 + Set gtmtypes("gd_segment",5,"len")=2 + Set gtmtypes("gd_segment",5,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","blk_size")=5 + Set gtmtypes("gd_segment",6,"name")="gd_segment.ext_blk_count" + Set gtmtypes("gd_segment",6,"off")=294 + Set gtmtypes("gd_segment",6,"len")=2 + Set gtmtypes("gd_segment",6,"type")="unsigned-short" + Set gtmtypfldindx("gd_segment","ext_blk_count")=6 + Set gtmtypes("gd_segment",7,"name")="gd_segment.allocation" + Set gtmtypes("gd_segment",7,"off")=296 + Set gtmtypes("gd_segment",7,"len")=4 + Set gtmtypes("gd_segment",7,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","allocation")=7 + Set gtmtypes("gd_segment",8,"name")="gd_segment.cm_blk" + Set gtmtypes("gd_segment",8,"off")=300 + Set gtmtypes("gd_segment",8,"len")=4 + Set gtmtypes("gd_segment",8,"type")="addr" + Set gtmtypfldindx("gd_segment","cm_blk")=8 + Set gtmtypes("gd_segment",9,"name")="gd_segment.defext" + Set gtmtypes("gd_segment",9,"off")=304 + Set gtmtypes("gd_segment",9,"len")=4 + Set gtmtypes("gd_segment",9,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","defext")=9 + Set gtmtypes("gd_segment",10,"name")="gd_segment.defer_time" + Set gtmtypes("gd_segment",10,"off")=308 + Set gtmtypes("gd_segment",10,"len")=1 + Set gtmtypes("gd_segment",10,"type")="char" + Set gtmtypfldindx("gd_segment","defer_time")=10 + Set gtmtypes("gd_segment",11,"name")="gd_segment.file_type" + Set gtmtypes("gd_segment",11,"off")=309 + Set gtmtypes("gd_segment",11,"len")=1 + Set gtmtypes("gd_segment",11,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","file_type")=11 + Set gtmtypes("gd_segment",12,"name")="gd_segment.buckets" + Set gtmtypes("gd_segment",12,"off")=310 + Set gtmtypes("gd_segment",12,"len")=1 + Set gtmtypes("gd_segment",12,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","buckets")=12 + Set gtmtypes("gd_segment",13,"name")="gd_segment.windows" + Set gtmtypes("gd_segment",13,"off")=311 + Set gtmtypes("gd_segment",13,"len")=1 + Set gtmtypes("gd_segment",13,"type")="unsigned-char" + Set gtmtypfldindx("gd_segment","windows")=13 + Set gtmtypes("gd_segment",14,"name")="gd_segment.lock_space" + Set gtmtypes("gd_segment",14,"off")=312 + Set gtmtypes("gd_segment",14,"len")=4 + Set gtmtypes("gd_segment",14,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","lock_space")=14 + Set gtmtypes("gd_segment",15,"name")="gd_segment.global_buffers" + Set gtmtypes("gd_segment",15,"off")=316 + Set gtmtypes("gd_segment",15,"len")=4 + Set gtmtypes("gd_segment",15,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","global_buffers")=15 + Set gtmtypes("gd_segment",16,"name")="gd_segment.reserved_bytes" + Set gtmtypes("gd_segment",16,"off")=320 + Set gtmtypes("gd_segment",16,"len")=4 + Set gtmtypes("gd_segment",16,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","reserved_bytes")=16 + Set gtmtypes("gd_segment",17,"name")="gd_segment.mutex_slots" + Set gtmtypes("gd_segment",17,"off")=324 + Set gtmtypes("gd_segment",17,"len")=4 + Set gtmtypes("gd_segment",17,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","mutex_slots")=17 + Set gtmtypes("gd_segment",18,"name")="gd_segment.defer_allocate" + Set gtmtypes("gd_segment",18,"off")=328 + Set gtmtypes("gd_segment",18,"len")=4 + Set gtmtypes("gd_segment",18,"type")="boolean_t" + Set gtmtypfldindx("gd_segment","defer_allocate")=18 + Set gtmtypes("gd_segment",19,"name")="gd_segment.acc_meth" + Set gtmtypes("gd_segment",19,"off")=332 + Set gtmtypes("gd_segment",19,"len")=4 + Set gtmtypes("gd_segment",19,"type")="int" + Set gtmtypfldindx("gd_segment","acc_meth")=19 + Set gtmtypes("gd_segment",20,"name")="gd_segment.file_cntl" + Set gtmtypes("gd_segment",20,"off")=336 + Set gtmtypes("gd_segment",20,"len")=4 + Set gtmtypes("gd_segment",20,"type")="addr" + Set gtmtypfldindx("gd_segment","file_cntl")=20 + Set gtmtypes("gd_segment",21,"name")="gd_segment.repl_list" + Set gtmtypes("gd_segment",21,"off")=340 + Set gtmtypes("gd_segment",21,"len")=4 + Set gtmtypes("gd_segment",21,"type")="addr" + Set gtmtypfldindx("gd_segment","repl_list")=21 + Set gtmtypes("gd_segment",22,"name")="gd_segment.is_encrypted" + Set gtmtypes("gd_segment",22,"off")=344 + Set gtmtypes("gd_segment",22,"len")=4 + Set gtmtypes("gd_segment",22,"type")="unsigned-int" + Set gtmtypfldindx("gd_segment","is_encrypted")=22 + Set gtmtypes("gd_segment",23,"name")="gd_segment.filler" + Set gtmtypes("gd_segment",23,"off")=348 + Set gtmtypes("gd_segment",23,"len")=16 + Set gtmtypes("gd_segment",23,"type")="char" + Set gtmtypfldindx("gd_segment","filler")=23 + ; + Set gtmtypes("gdr_name")="struct" + Set gtmtypes("gdr_name",0)=10 + Set gtmtypes("gdr_name","len")=32 + Set gtmtypes("gdr_name",1,"name")="gdr_name.name" + Set gtmtypes("gdr_name",1,"off")=0 + Set gtmtypes("gdr_name",1,"len")=12 + Set gtmtypes("gdr_name",1,"type")="mstr" + Set gtmtypfldindx("gdr_name","name")=1 + Set gtmtypes("gdr_name",2,"name")="gdr_name.name.char_len" + Set gtmtypes("gdr_name",2,"off")=0 + Set gtmtypes("gdr_name",2,"len")=4 + Set gtmtypes("gdr_name",2,"type")="unsigned-int" + Set gtmtypfldindx("gdr_name","name.char_len")=2 + Set gtmtypes("gdr_name",3,"name")="gdr_name.name.len" + Set gtmtypes("gdr_name",3,"off")=4 + Set gtmtypes("gdr_name",3,"len")=4 + Set gtmtypes("gdr_name",3,"type")="int" + Set gtmtypfldindx("gdr_name","name.len")=3 + Set gtmtypes("gdr_name",4,"name")="gdr_name.name.addr" + Set gtmtypes("gdr_name",4,"off")=8 + Set gtmtypes("gdr_name",4,"len")=4 + Set gtmtypes("gdr_name",4,"type")="addr" + Set gtmtypfldindx("gdr_name","name.addr")=4 + Set gtmtypes("gdr_name",5,"name")="gdr_name.exp_name" + Set gtmtypes("gdr_name",5,"off")=12 + Set gtmtypes("gdr_name",5,"len")=12 + Set gtmtypes("gdr_name",5,"type")="mstr" + Set gtmtypfldindx("gdr_name","exp_name")=5 + Set gtmtypes("gdr_name",6,"name")="gdr_name.exp_name.char_len" + Set gtmtypes("gdr_name",6,"off")=12 + Set gtmtypes("gdr_name",6,"len")=4 + Set gtmtypes("gdr_name",6,"type")="unsigned-int" + Set gtmtypfldindx("gdr_name","exp_name.char_len")=6 + Set gtmtypes("gdr_name",7,"name")="gdr_name.exp_name.len" + Set gtmtypes("gdr_name",7,"off")=16 + Set gtmtypes("gdr_name",7,"len")=4 + Set gtmtypes("gdr_name",7,"type")="int" + Set gtmtypfldindx("gdr_name","exp_name.len")=7 + Set gtmtypes("gdr_name",8,"name")="gdr_name.exp_name.addr" + Set gtmtypes("gdr_name",8,"off")=20 + Set gtmtypes("gdr_name",8,"len")=4 + Set gtmtypes("gdr_name",8,"type")="addr" + Set gtmtypfldindx("gdr_name","exp_name.addr")=8 + Set gtmtypes("gdr_name",9,"name")="gdr_name.link" + Set gtmtypes("gdr_name",9,"off")=24 + Set gtmtypes("gdr_name",9,"len")=4 + Set gtmtypes("gdr_name",9,"type")="addr" + Set gtmtypfldindx("gdr_name","link")=9 + Set gtmtypes("gdr_name",10,"name")="gdr_name.gd_ptr" + Set gtmtypes("gdr_name",10,"off")=28 + Set gtmtypes("gdr_name",10,"len")=4 + Set gtmtypes("gdr_name",10,"type")="addr" + Set gtmtypfldindx("gdr_name","gd_ptr")=10 + ; + Set gtmtypes("gds_file_id")="struct" + Set gtmtypes("gds_file_id",0)=3 + Set gtmtypes("gds_file_id","len")=28 + Set gtmtypes("gds_file_id",1,"name")="gds_file_id.dvi" + Set gtmtypes("gds_file_id",1,"off")=0 + Set gtmtypes("gds_file_id",1,"len")=16 + Set gtmtypes("gds_file_id",1,"type")="char" + Set gtmtypfldindx("gds_file_id","dvi")=1 + Set gtmtypes("gds_file_id",2,"name")="gds_file_id.did" + Set gtmtypes("gds_file_id",2,"off")=16 + Set gtmtypes("gds_file_id",2,"len")=6 + Set gtmtypes("gds_file_id",2,"type")="unsigned-short" + Set gtmtypfldindx("gds_file_id","did")=2 + Set gtmtypes("gds_file_id",2,"dim")=3 + Set gtmtypes("gds_file_id",3,"name")="gds_file_id.fid" + Set gtmtypes("gds_file_id",3,"off")=22 + Set gtmtypes("gds_file_id",3,"len")=6 + Set gtmtypes("gds_file_id",3,"type")="unsigned-short" + Set gtmtypfldindx("gds_file_id","fid")=3 + Set gtmtypes("gds_file_id",3,"dim")=3 + ; + Set gtmtypes("gld_dbname_list")="struct" + Set gtmtypes("gld_dbname_list",0)=3 + Set gtmtypes("gld_dbname_list","len")=12 + Set gtmtypes("gld_dbname_list",1,"name")="gld_dbname_list.next" + Set gtmtypes("gld_dbname_list",1,"off")=0 + Set gtmtypes("gld_dbname_list",1,"len")=4 + Set gtmtypes("gld_dbname_list",1,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","next")=1 + Set gtmtypes("gld_dbname_list",2,"name")="gld_dbname_list.db_ctl" + Set gtmtypes("gld_dbname_list",2,"off")=4 + Set gtmtypes("gld_dbname_list",2,"len")=4 + Set gtmtypes("gld_dbname_list",2,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","db_ctl")=2 + Set gtmtypes("gld_dbname_list",3,"name")="gld_dbname_list.gd" + Set gtmtypes("gld_dbname_list",3,"off")=8 + Set gtmtypes("gld_dbname_list",3,"len")=4 + Set gtmtypes("gld_dbname_list",3,"type")="addr" + Set gtmtypfldindx("gld_dbname_list","gd")=3 + ; + Set gtmtypes("glist")="struct" + Set gtmtypes("glist",0)=4 + Set gtmtypes("glist","len")=16 + Set gtmtypes("glist",1,"name")="glist.next" + Set gtmtypes("glist",1,"off")=0 + Set gtmtypes("glist",1,"len")=4 + Set gtmtypes("glist",1,"type")="addr" + Set gtmtypfldindx("glist","next")=1 + Set gtmtypes("glist",2,"name")="glist.reg" + Set gtmtypes("glist",2,"off")=4 + Set gtmtypes("glist",2,"len")=4 + Set gtmtypes("glist",2,"type")="addr" + Set gtmtypfldindx("glist","reg")=2 + Set gtmtypes("glist",3,"name")="glist.gvt" + Set gtmtypes("glist",3,"off")=8 + Set gtmtypes("glist",3,"len")=4 + Set gtmtypes("glist",3,"type")="addr" + Set gtmtypfldindx("glist","gvt")=3 + Set gtmtypes("glist",4,"name")="glist.gvnh_reg" + Set gtmtypes("glist",4,"off")=12 + Set gtmtypes("glist",4,"len")=4 + Set gtmtypes("glist",4,"type")="addr" + Set gtmtypfldindx("glist","gvnh_reg")=4 + ; + Set gtmtypes("global_dir_path")="struct" + Set gtmtypes("global_dir_path",0)=3 + Set gtmtypes("global_dir_path","len")=12 + Set gtmtypes("global_dir_path",1,"name")="global_dir_path.block" + Set gtmtypes("global_dir_path",1,"off")=0 + Set gtmtypes("global_dir_path",1,"len")=4 + Set gtmtypes("global_dir_path",1,"type")="int" + Set gtmtypfldindx("global_dir_path","block")=1 + Set gtmtypes("global_dir_path",2,"name")="global_dir_path.offset" + Set gtmtypes("global_dir_path",2,"off")=4 + Set gtmtypes("global_dir_path",2,"len")=4 + Set gtmtypes("global_dir_path",2,"type")="int" + Set gtmtypfldindx("global_dir_path","offset")=2 + Set gtmtypes("global_dir_path",3,"name")="global_dir_path.next" + Set gtmtypes("global_dir_path",3,"off")=8 + Set gtmtypes("global_dir_path",3,"len")=4 + Set gtmtypes("global_dir_path",3,"type")="addr" + Set gtmtypfldindx("global_dir_path","next")=3 + ; + Set gtmtypes("global_latch_t")="struct" + Set gtmtypes("global_latch_t",0)=5 + Set gtmtypes("global_latch_t","len")=8 + Set gtmtypes("global_latch_t",1,"name")="global_latch_t.u" + Set gtmtypes("global_latch_t",1,"off")=0 + Set gtmtypes("global_latch_t",1,"len")=8 + Set gtmtypes("global_latch_t",1,"type")="union" + Set gtmtypfldindx("global_latch_t","u")=1 + Set gtmtypes("global_latch_t",2,"name")="global_latch_t.u.pid_imgcnt" + Set gtmtypes("global_latch_t",2,"off")=0 + Set gtmtypes("global_latch_t",2,"len")=8 + Set gtmtypes("global_latch_t",2,"type")="uint64_t" + Set gtmtypfldindx("global_latch_t","u.pid_imgcnt")=2 + Set gtmtypes("global_latch_t",3,"name")="global_latch_t.u.parts" + Set gtmtypes("global_latch_t",3,"off")=0 + Set gtmtypes("global_latch_t",3,"len")=8 + Set gtmtypes("global_latch_t",3,"type")="struct" + Set gtmtypfldindx("global_latch_t","u.parts")=3 + Set gtmtypes("global_latch_t",4,"name")="global_latch_t.u.parts.latch_pid" + Set gtmtypes("global_latch_t",4,"off")=0 + Set gtmtypes("global_latch_t",4,"len")=4 + Set gtmtypes("global_latch_t",4,"type")="int" + Set gtmtypfldindx("global_latch_t","u.parts.latch_pid")=4 + Set gtmtypes("global_latch_t",5,"name")="global_latch_t.u.parts.latch_word" + Set gtmtypes("global_latch_t",5,"off")=4 + Set gtmtypes("global_latch_t",5,"len")=4 + Set gtmtypes("global_latch_t",5,"type")="int" + Set gtmtypfldindx("global_latch_t","u.parts.latch_word")=5 + ; + Set gtmtypes("global_list")="struct" + Set gtmtypes("global_list",0)=9 + Set gtmtypes("global_list","len")=112 + Set gtmtypes("global_list",1,"name")="global_list.root" + Set gtmtypes("global_list",1,"off")=0 + Set gtmtypes("global_list",1,"len")=4 + Set gtmtypes("global_list",1,"type")="int" + Set gtmtypfldindx("global_list","root")=1 + Set gtmtypes("global_list",2,"name")="global_list.link" + Set gtmtypes("global_list",2,"off")=4 + Set gtmtypes("global_list",2,"len")=4 + Set gtmtypes("global_list",2,"type")="addr" + Set gtmtypfldindx("global_list","link")=2 + Set gtmtypes("global_list",3,"name")="global_list.path" + Set gtmtypes("global_list",3,"off")=8 + Set gtmtypes("global_list",3,"len")=32 + Set gtmtypes("global_list",3,"type")="int" + Set gtmtypfldindx("global_list","path")=3 + Set gtmtypes("global_list",3,"dim")=8 + Set gtmtypes("global_list",4,"name")="global_list.offset" + Set gtmtypes("global_list",4,"off")=40 + Set gtmtypes("global_list",4,"len")=32 + Set gtmtypes("global_list",4,"type")="unsigned-int" + Set gtmtypfldindx("global_list","offset")=4 + Set gtmtypes("global_list",4,"dim")=8 + Set gtmtypes("global_list",5,"name")="global_list.nct" + Set gtmtypes("global_list",5,"off")=72 + Set gtmtypes("global_list",5,"len")=1 + Set gtmtypes("global_list",5,"type")="unsigned-char" + Set gtmtypfldindx("global_list","nct")=5 + Set gtmtypes("global_list",6,"name")="global_list.act" + Set gtmtypes("global_list",6,"off")=73 + Set gtmtypes("global_list",6,"len")=1 + Set gtmtypes("global_list",6,"type")="unsigned-char" + Set gtmtypfldindx("global_list","act")=6 + Set gtmtypes("global_list",7,"name")="global_list.ver" + Set gtmtypes("global_list",7,"off")=74 + Set gtmtypes("global_list",7,"len")=1 + Set gtmtypes("global_list",7,"type")="unsigned-char" + Set gtmtypfldindx("global_list","ver")=7 + Set gtmtypes("global_list",8,"name")="global_list.key" + Set gtmtypes("global_list",8,"off")=75 + Set gtmtypes("global_list",8,"len")=32 + Set gtmtypes("global_list",8,"type")="char" + Set gtmtypfldindx("global_list","key")=8 + Set gtmtypes("global_list",9,"name")="global_list.keysize" + Set gtmtypes("global_list",9,"off")=108 + Set gtmtypes("global_list",9,"len")=4 + Set gtmtypes("global_list",9,"type")="int" + Set gtmtypfldindx("global_list","keysize")=9 + ; + Set gtmtypes("global_root_list")="struct" + Set gtmtypes("global_root_list",0)=3 + Set gtmtypes("global_root_list","len")=12 + Set gtmtypes("global_root_list",1,"name")="global_root_list.root" + Set gtmtypes("global_root_list",1,"off")=0 + Set gtmtypes("global_root_list",1,"len")=4 + Set gtmtypes("global_root_list",1,"type")="int" + Set gtmtypfldindx("global_root_list","root")=1 + Set gtmtypes("global_root_list",2,"name")="global_root_list.dir_path" + Set gtmtypes("global_root_list",2,"off")=4 + Set gtmtypes("global_root_list",2,"len")=4 + Set gtmtypes("global_root_list",2,"type")="addr" + Set gtmtypfldindx("global_root_list","dir_path")=2 + Set gtmtypes("global_root_list",3,"name")="global_root_list.link" + Set gtmtypes("global_root_list",3,"off")=8 + Set gtmtypes("global_root_list",3,"len")=4 + Set gtmtypes("global_root_list",3,"type")="addr" + Set gtmtypfldindx("global_root_list","link")=3 + ; + Set gtmtypes("global_tlvl_info")="struct" + Set gtmtypes("global_tlvl_info",0)=9 + Set gtmtypes("global_tlvl_info","len")=36 + Set gtmtypes("global_tlvl_info",1,"name")="global_tlvl_info.next_global_tlvl_info" + Set gtmtypes("global_tlvl_info",1,"off")=0 + Set gtmtypes("global_tlvl_info",1,"len")=4 + Set gtmtypes("global_tlvl_info",1,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","next_global_tlvl_info")=1 + Set gtmtypes("global_tlvl_info",2,"name")="global_tlvl_info.global_tlvl_fence_info" + Set gtmtypes("global_tlvl_info",2,"off")=4 + Set gtmtypes("global_tlvl_info",2,"len")=4 + Set gtmtypes("global_tlvl_info",2,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","global_tlvl_fence_info")=2 + Set gtmtypes("global_tlvl_info",3,"name")="global_tlvl_info.t_level" + Set gtmtypes("global_tlvl_info",3,"off")=8 + Set gtmtypes("global_tlvl_info",3,"len")=4 + Set gtmtypes("global_tlvl_info",3,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","t_level")=3 + Set gtmtypes("global_tlvl_info",4,"name")="global_tlvl_info.tlvl_cumul_jrec_len" + Set gtmtypes("global_tlvl_info",4,"off")=12 + Set gtmtypes("global_tlvl_info",4,"len")=4 + Set gtmtypes("global_tlvl_info",4,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","tlvl_cumul_jrec_len")=4 + Set gtmtypes("global_tlvl_info",5,"name")="global_tlvl_info.tlvl_tp_ztp_jnl_upd_num" + Set gtmtypes("global_tlvl_info",5,"off")=16 + Set gtmtypes("global_tlvl_info",5,"len")=4 + Set gtmtypes("global_tlvl_info",5,"type")="unsigned-int" + Set gtmtypfldindx("global_tlvl_info","tlvl_tp_ztp_jnl_upd_num")=5 + Set gtmtypes("global_tlvl_info",6,"name")="global_tlvl_info.tlvl_prev_ztworm_ptr" + Set gtmtypes("global_tlvl_info",6,"off")=20 + Set gtmtypes("global_tlvl_info",6,"len")=4 + Set gtmtypes("global_tlvl_info",6,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","tlvl_prev_ztworm_ptr")=6 + Set gtmtypes("global_tlvl_info",7,"name")="global_tlvl_info.curr_ua" + Set gtmtypes("global_tlvl_info",7,"off")=24 + Set gtmtypes("global_tlvl_info",7,"len")=4 + Set gtmtypes("global_tlvl_info",7,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","curr_ua")=7 + Set gtmtypes("global_tlvl_info",8,"name")="global_tlvl_info.upd_array_ptr" + Set gtmtypes("global_tlvl_info",8,"off")=28 + Set gtmtypes("global_tlvl_info",8,"len")=4 + Set gtmtypes("global_tlvl_info",8,"type")="addr" + Set gtmtypfldindx("global_tlvl_info","upd_array_ptr")=8 + Set gtmtypes("global_tlvl_info",9,"name")="global_tlvl_info.ztrigbuffLen" + Set gtmtypes("global_tlvl_info",9,"off")=32 + Set gtmtypes("global_tlvl_info",9,"len")=4 + Set gtmtypes("global_tlvl_info",9,"type")="int" + Set gtmtypfldindx("global_tlvl_info","ztrigbuffLen")=9 + ; + Set gtmtypes("glvn_pool")="struct" + Set gtmtypes("glvn_pool",0)=14 + Set gtmtypes("glvn_pool","len")=324 + Set gtmtypes("glvn_pool",1,"name")="glvn_pool.capacity" + Set gtmtypes("glvn_pool",1,"off")=0 + Set gtmtypes("glvn_pool",1,"len")=4 + Set gtmtypes("glvn_pool",1,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","capacity")=1 + Set gtmtypes("glvn_pool",2,"name")="glvn_pool.top" + Set gtmtypes("glvn_pool",2,"off")=4 + Set gtmtypes("glvn_pool",2,"len")=4 + Set gtmtypes("glvn_pool",2,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","top")=2 + Set gtmtypes("glvn_pool",3,"name")="glvn_pool.for_slot" + Set gtmtypes("glvn_pool",3,"off")=8 + Set gtmtypes("glvn_pool",3,"len")=132 + Set gtmtypes("glvn_pool",3,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","for_slot")=3 + Set gtmtypes("glvn_pool",3,"dim")=33 + Set gtmtypes("glvn_pool",4,"name")="glvn_pool.share_slot" + Set gtmtypes("glvn_pool",4,"off")=140 + Set gtmtypes("glvn_pool",4,"len")=4 + Set gtmtypes("glvn_pool",4,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","share_slot")=4 + Set gtmtypes("glvn_pool",5,"name")="glvn_pool.share_opcode" + Set gtmtypes("glvn_pool",5,"off")=144 + Set gtmtypes("glvn_pool",5,"len")=4 + Set gtmtypes("glvn_pool",5,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","share_opcode")=5 + Set gtmtypes("glvn_pool",6,"name")="glvn_pool.mval_capacity" + Set gtmtypes("glvn_pool",6,"off")=148 + Set gtmtypes("glvn_pool",6,"len")=4 + Set gtmtypes("glvn_pool",6,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","mval_capacity")=6 + Set gtmtypes("glvn_pool",7,"name")="glvn_pool.mval_top" + Set gtmtypes("glvn_pool",7,"off")=152 + Set gtmtypes("glvn_pool",7,"len")=4 + Set gtmtypes("glvn_pool",7,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","mval_top")=7 + Set gtmtypes("glvn_pool",8,"name")="glvn_pool.mval_stack" + Set gtmtypes("glvn_pool",8,"off")=156 + Set gtmtypes("glvn_pool",8,"len")=4 + Set gtmtypes("glvn_pool",8,"type")="addr" + Set gtmtypfldindx("glvn_pool","mval_stack")=8 + Set gtmtypes("glvn_pool",9,"name")="glvn_pool.slot" + Set gtmtypes("glvn_pool",9,"off")=160 + Set gtmtypes("glvn_pool",9,"len")=164 + Set gtmtypes("glvn_pool",9,"type")="glvn_pool_entry" + Set gtmtypfldindx("glvn_pool","slot")=9 + Set gtmtypes("glvn_pool",10,"name")="glvn_pool.slot[0].sav_opcode" + Set gtmtypes("glvn_pool",10,"off")=160 + Set gtmtypes("glvn_pool",10,"len")=4 + Set gtmtypes("glvn_pool",10,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].sav_opcode")=10 + Set gtmtypes("glvn_pool",11,"name")="glvn_pool.slot[0].mval_top" + Set gtmtypes("glvn_pool",11,"off")=164 + Set gtmtypes("glvn_pool",11,"len")=4 + Set gtmtypes("glvn_pool",11,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].mval_top")=11 + Set gtmtypes("glvn_pool",12,"name")="glvn_pool.slot[0].precursor" + Set gtmtypes("glvn_pool",12,"off")=168 + Set gtmtypes("glvn_pool",12,"len")=4 + Set gtmtypes("glvn_pool",12,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool","slot[0].precursor")=12 + Set gtmtypes("glvn_pool",13,"name")="glvn_pool.slot[0].lvname" + Set gtmtypes("glvn_pool",13,"off")=172 + Set gtmtypes("glvn_pool",13,"len")=4 + Set gtmtypes("glvn_pool",13,"type")="addr" + Set gtmtypfldindx("glvn_pool","slot[0].lvname")=13 + Set gtmtypes("glvn_pool",14,"name")="glvn_pool.slot[0].glvn_info" + Set gtmtypes("glvn_pool",14,"off")=176 + Set gtmtypes("glvn_pool",14,"len")=148 + Set gtmtypes("glvn_pool",14,"type")="gparam_list" + Set gtmtypfldindx("glvn_pool","slot[0].glvn_info")=14 + ; + Set gtmtypes("glvn_pool_entry")="struct" + Set gtmtypes("glvn_pool_entry",0)=7 + Set gtmtypes("glvn_pool_entry","len")=164 + Set gtmtypes("glvn_pool_entry",1,"name")="glvn_pool_entry.sav_opcode" + Set gtmtypes("glvn_pool_entry",1,"off")=0 + Set gtmtypes("glvn_pool_entry",1,"len")=4 + Set gtmtypes("glvn_pool_entry",1,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","sav_opcode")=1 + Set gtmtypes("glvn_pool_entry",2,"name")="glvn_pool_entry.mval_top" + Set gtmtypes("glvn_pool_entry",2,"off")=4 + Set gtmtypes("glvn_pool_entry",2,"len")=4 + Set gtmtypes("glvn_pool_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","mval_top")=2 + Set gtmtypes("glvn_pool_entry",3,"name")="glvn_pool_entry.precursor" + Set gtmtypes("glvn_pool_entry",3,"off")=8 + Set gtmtypes("glvn_pool_entry",3,"len")=4 + Set gtmtypes("glvn_pool_entry",3,"type")="unsigned-int" + Set gtmtypfldindx("glvn_pool_entry","precursor")=3 + Set gtmtypes("glvn_pool_entry",4,"name")="glvn_pool_entry.lvname" + Set gtmtypes("glvn_pool_entry",4,"off")=12 + Set gtmtypes("glvn_pool_entry",4,"len")=4 + Set gtmtypes("glvn_pool_entry",4,"type")="addr" + Set gtmtypfldindx("glvn_pool_entry","lvname")=4 + Set gtmtypes("glvn_pool_entry",5,"name")="glvn_pool_entry.glvn_info" + Set gtmtypes("glvn_pool_entry",5,"off")=16 + Set gtmtypes("glvn_pool_entry",5,"len")=148 + Set gtmtypes("glvn_pool_entry",5,"type")="gparam_list" + Set gtmtypfldindx("glvn_pool_entry","glvn_info")=5 + Set gtmtypes("glvn_pool_entry",6,"name")="glvn_pool_entry.glvn_info.n" + Set gtmtypes("glvn_pool_entry",6,"off")=16 + Set gtmtypes("glvn_pool_entry",6,"len")=4 + Set gtmtypes("glvn_pool_entry",6,"type")="intptr_t" + Set gtmtypfldindx("glvn_pool_entry","glvn_info.n")=6 + Set gtmtypes("glvn_pool_entry",7,"name")="glvn_pool_entry.glvn_info.arg" + Set gtmtypes("glvn_pool_entry",7,"off")=20 + Set gtmtypes("glvn_pool_entry",7,"len")=144 + Set gtmtypes("glvn_pool_entry",7,"type")="addr" + Set gtmtypfldindx("glvn_pool_entry","glvn_info.arg")=7 + Set gtmtypes("glvn_pool_entry",7,"dim")=36 + ; + Set gtmtypes("gparam_list")="struct" + Set gtmtypes("gparam_list",0)=2 + Set gtmtypes("gparam_list","len")=148 + Set gtmtypes("gparam_list",1,"name")="gparam_list.n" + Set gtmtypes("gparam_list",1,"off")=0 + Set gtmtypes("gparam_list",1,"len")=4 + Set gtmtypes("gparam_list",1,"type")="intptr_t" + Set gtmtypfldindx("gparam_list","n")=1 + Set gtmtypes("gparam_list",2,"name")="gparam_list.arg" + Set gtmtypes("gparam_list",2,"off")=4 + Set gtmtypes("gparam_list",2,"len")=144 + Set gtmtypes("gparam_list",2,"type")="addr" + Set gtmtypfldindx("gparam_list","arg")=2 + Set gtmtypes("gparam_list",2,"dim")=36 + ; + Set gtmtypes("gtcm_proto_cpu_info_t")="struct" + Set gtmtypes("gtcm_proto_cpu_info_t",0)=3 + Set gtmtypes("gtcm_proto_cpu_info_t","len")=12 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"name")="gtcm_proto_cpu_info_t.cpu_in_rel_str" + Set gtmtypes("gtcm_proto_cpu_info_t",1,"off")=0 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",1,"type")="addr" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","cpu_in_rel_str")=1 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"name")="gtcm_proto_cpu_info_t.size_of_cpu_in_rel_str" + Set gtmtypes("gtcm_proto_cpu_info_t",2,"off")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",2,"type")="int" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","size_of_cpu_in_rel_str")=2 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"name")="gtcm_proto_cpu_info_t.proto_cpu" + Set gtmtypes("gtcm_proto_cpu_info_t",3,"off")=8 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"len")=4 + Set gtmtypes("gtcm_proto_cpu_info_t",3,"type")="addr" + Set gtmtypfldindx("gtcm_proto_cpu_info_t","proto_cpu")=3 + ; + Set gtmtypes("gtcm_proto_os_info_t")="struct" + Set gtmtypes("gtcm_proto_os_info_t",0)=3 + Set gtmtypes("gtcm_proto_os_info_t","len")=12 + Set gtmtypes("gtcm_proto_os_info_t",1,"name")="gtcm_proto_os_info_t.os_in_rel_str" + Set gtmtypes("gtcm_proto_os_info_t",1,"off")=0 + Set gtmtypes("gtcm_proto_os_info_t",1,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",1,"type")="addr" + Set gtmtypfldindx("gtcm_proto_os_info_t","os_in_rel_str")=1 + Set gtmtypes("gtcm_proto_os_info_t",2,"name")="gtcm_proto_os_info_t.size_of_os_in_rel_str" + Set gtmtypes("gtcm_proto_os_info_t",2,"off")=4 + Set gtmtypes("gtcm_proto_os_info_t",2,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",2,"type")="int" + Set gtmtypfldindx("gtcm_proto_os_info_t","size_of_os_in_rel_str")=2 + Set gtmtypes("gtcm_proto_os_info_t",3,"name")="gtcm_proto_os_info_t.proto_os" + Set gtmtypes("gtcm_proto_os_info_t",3,"off")=8 + Set gtmtypes("gtcm_proto_os_info_t",3,"len")=4 + Set gtmtypes("gtcm_proto_os_info_t",3,"type")="addr" + Set gtmtypfldindx("gtcm_proto_os_info_t","proto_os")=3 + ; + Set gtmtypes("gtm32_descriptor")="struct" + Set gtmtypes("gtm32_descriptor",0)=3 + Set gtmtypes("gtm32_descriptor","len")=12 + Set gtmtypes("gtm32_descriptor",1,"name")="gtm32_descriptor.len" + Set gtmtypes("gtm32_descriptor",1,"off")=0 + Set gtmtypes("gtm32_descriptor",1,"len")=4 + Set gtmtypes("gtm32_descriptor",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm32_descriptor","len")=1 + Set gtmtypes("gtm32_descriptor",2,"name")="gtm32_descriptor.type" + Set gtmtypes("gtm32_descriptor",2,"off")=4 + Set gtmtypes("gtm32_descriptor",2,"len")=4 + Set gtmtypes("gtm32_descriptor",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm32_descriptor","type")=2 + Set gtmtypes("gtm32_descriptor",3,"name")="gtm32_descriptor.val" + Set gtmtypes("gtm32_descriptor",3,"off")=8 + Set gtmtypes("gtm32_descriptor",3,"len")=4 + Set gtmtypes("gtm32_descriptor",3,"type")="addr" + Set gtmtypfldindx("gtm32_descriptor","val")=3 + ; + Set gtmtypes("gtmImageName")="struct" + Set gtmtypes("gtmImageName",0)=2 + Set gtmtypes("gtmImageName","len")=8 + Set gtmtypes("gtmImageName",1,"name")="gtmImageName.imageName" + Set gtmtypes("gtmImageName",1,"off")=0 + Set gtmtypes("gtmImageName",1,"len")=4 + Set gtmtypes("gtmImageName",1,"type")="addr" + Set gtmtypfldindx("gtmImageName","imageName")=1 + Set gtmtypes("gtmImageName",2,"name")="gtmImageName.imageNameLen" + Set gtmtypes("gtmImageName",2,"off")=4 + Set gtmtypes("gtmImageName",2,"len")=4 + Set gtmtypes("gtmImageName",2,"type")="int" + Set gtmtypfldindx("gtmImageName","imageNameLen")=2 + ; + Set gtmtypes("gtm_descriptor")="struct" + Set gtmtypes("gtm_descriptor",0)=3 + Set gtmtypes("gtm_descriptor","len")=8 + Set gtmtypes("gtm_descriptor",1,"name")="gtm_descriptor.len" + Set gtmtypes("gtm_descriptor",1,"off")=0 + Set gtmtypes("gtm_descriptor",1,"len")=2 + Set gtmtypes("gtm_descriptor",1,"type")="short" + Set gtmtypfldindx("gtm_descriptor","len")=1 + Set gtmtypes("gtm_descriptor",2,"name")="gtm_descriptor.type" + Set gtmtypes("gtm_descriptor",2,"off")=2 + Set gtmtypes("gtm_descriptor",2,"len")=2 + Set gtmtypes("gtm_descriptor",2,"type")="short" + Set gtmtypfldindx("gtm_descriptor","type")=2 + Set gtmtypes("gtm_descriptor",3,"name")="gtm_descriptor.val" + Set gtmtypes("gtm_descriptor",3,"off")=4 + Set gtmtypes("gtm_descriptor",3,"len")=4 + Set gtmtypes("gtm_descriptor",3,"type")="addr" + Set gtmtypfldindx("gtm_descriptor","val")=3 + ; + Set gtmtypes("gtm_id_block")="struct" + Set gtmtypes("gtm_id_block",0)=3 + Set gtmtypes("gtm_id_block","len")=76 + Set gtmtypes("gtm_id_block",1,"name")="gtm_id_block.sid" + Set gtmtypes("gtm_id_block",1,"off")=0 + Set gtmtypes("gtm_id_block",1,"len")=64 + Set gtmtypes("gtm_id_block",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_block","sid")=1 + Set gtmtypes("gtm_id_block",1,"dim")=16 + Set gtmtypes("gtm_id_block",2,"name")="gtm_id_block.exp_date" + Set gtmtypes("gtm_id_block",2,"off")=64 + Set gtmtypes("gtm_id_block",2,"len")=4 + Set gtmtypes("gtm_id_block",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_block","exp_date")=2 + Set gtmtypes("gtm_id_block",3,"name")="gtm_id_block.gtm_serial" + Set gtmtypes("gtm_id_block",3,"off")=68 + Set gtmtypes("gtm_id_block",3,"len")=8 + Set gtmtypes("gtm_id_block",3,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_block","gtm_serial")=3 + ; + Set gtmtypes("gtm_id_struct")="struct" + Set gtmtypes("gtm_id_struct",0)=9 + Set gtmtypes("gtm_id_struct","len")=228 + Set gtmtypes("gtm_id_struct",1,"name")="gtm_id_struct.plaintext" + Set gtmtypes("gtm_id_struct",1,"off")=0 + Set gtmtypes("gtm_id_struct",1,"len")=76 + Set gtmtypes("gtm_id_struct",1,"type")="gtm_id_block" + Set gtmtypfldindx("gtm_id_struct","plaintext")=1 + Set gtmtypes("gtm_id_struct",2,"name")="gtm_id_struct.plaintext.sid" + Set gtmtypes("gtm_id_struct",2,"off")=0 + Set gtmtypes("gtm_id_struct",2,"len")=64 + Set gtmtypes("gtm_id_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","plaintext.sid")=2 + Set gtmtypes("gtm_id_struct",2,"dim")=16 + Set gtmtypes("gtm_id_struct",3,"name")="gtm_id_struct.plaintext.exp_date" + Set gtmtypes("gtm_id_struct",3,"off")=64 + Set gtmtypes("gtm_id_struct",3,"len")=4 + Set gtmtypes("gtm_id_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","plaintext.exp_date")=3 + Set gtmtypes("gtm_id_struct",4,"name")="gtm_id_struct.plaintext.gtm_serial" + Set gtmtypes("gtm_id_struct",4,"off")=68 + Set gtmtypes("gtm_id_struct",4,"len")=8 + Set gtmtypes("gtm_id_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","plaintext.gtm_serial")=4 + Set gtmtypes("gtm_id_struct",5,"name")="gtm_id_struct.key" + Set gtmtypes("gtm_id_struct",5,"off")=76 + Set gtmtypes("gtm_id_struct",5,"len")=76 + Set gtmtypes("gtm_id_struct",5,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","key")=5 + Set gtmtypes("gtm_id_struct",6,"name")="gtm_id_struct.cryptext" + Set gtmtypes("gtm_id_struct",6,"off")=152 + Set gtmtypes("gtm_id_struct",6,"len")=76 + Set gtmtypes("gtm_id_struct",6,"type")="gtm_id_block" + Set gtmtypfldindx("gtm_id_struct","cryptext")=6 + Set gtmtypes("gtm_id_struct",7,"name")="gtm_id_struct.cryptext.sid" + Set gtmtypes("gtm_id_struct",7,"off")=152 + Set gtmtypes("gtm_id_struct",7,"len")=64 + Set gtmtypes("gtm_id_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","cryptext.sid")=7 + Set gtmtypes("gtm_id_struct",7,"dim")=16 + Set gtmtypes("gtm_id_struct",8,"name")="gtm_id_struct.cryptext.exp_date" + Set gtmtypes("gtm_id_struct",8,"off")=216 + Set gtmtypes("gtm_id_struct",8,"len")=4 + Set gtmtypes("gtm_id_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("gtm_id_struct","cryptext.exp_date")=8 + Set gtmtypes("gtm_id_struct",9,"name")="gtm_id_struct.cryptext.gtm_serial" + Set gtmtypes("gtm_id_struct",9,"off")=220 + Set gtmtypes("gtm_id_struct",9,"len")=8 + Set gtmtypes("gtm_id_struct",9,"type")="unsigned-char" + Set gtmtypfldindx("gtm_id_struct","cryptext.gtm_serial")=9 + ; + Set gtmtypes("gtm_num_range_t")="struct" + Set gtmtypes("gtm_num_range_t",0)=2 + Set gtmtypes("gtm_num_range_t","len")=8 + Set gtmtypes("gtm_num_range_t",1,"name")="gtm_num_range_t.min" + Set gtmtypes("gtm_num_range_t",1,"off")=0 + Set gtmtypes("gtm_num_range_t",1,"len")=4 + Set gtmtypes("gtm_num_range_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gtm_num_range_t","min")=1 + Set gtmtypes("gtm_num_range_t",2,"name")="gtm_num_range_t.max" + Set gtmtypes("gtm_num_range_t",2,"off")=4 + Set gtmtypes("gtm_num_range_t",2,"len")=4 + Set gtmtypes("gtm_num_range_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gtm_num_range_t","max")=2 + ; + Set gtmtypes("gtm_rtn_src_chksum_ctx")="struct" + Set gtmtypes("gtm_rtn_src_chksum_ctx",0)=6 + Set gtmtypes("gtm_rtn_src_chksum_ctx","len")=56 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"name")="gtm_rtn_src_chksum_ctx.hash_state" + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"off")=0 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"len")=36 + Set gtmtypes("gtm_rtn_src_chksum_ctx",1,"type")="hash128_state_t" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state")=1 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"name")="gtm_rtn_src_chksum_ctx.hash_state.h" + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"off")=0 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",2,"type")="gtm_uint16" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.h")=2 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"name")="gtm_rtn_src_chksum_ctx.hash_state.c" + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"off")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",3,"type")="gtm_uint16" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.c")=3 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"name")="gtm_rtn_src_chksum_ctx.hash_state.carry_bytes" + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"off")=32 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"len")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",4,"type")="int" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","hash_state.carry_bytes")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"name")="gtm_rtn_src_chksum_ctx.total_size" + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"off")=36 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"len")=4 + Set gtmtypes("gtm_rtn_src_chksum_ctx",5,"type")="unsigned-int" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","total_size")=5 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"name")="gtm_rtn_src_chksum_ctx.digest" + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"off")=40 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"len")=16 + Set gtmtypes("gtm_rtn_src_chksum_ctx",6,"type")="unsigned-char" + Set gtmtypfldindx("gtm_rtn_src_chksum_ctx","digest")=6 + ; + Set gtmtypes("gtm_time8")="union" + Set gtmtypes("gtm_time8",0)=2 + Set gtmtypes("gtm_time8","len")=8 + Set gtmtypes("gtm_time8",1,"name")="gtm_time8.ctime" + Set gtmtypes("gtm_time8",1,"off")=0 + Set gtmtypes("gtm_time8",1,"len")=4 + Set gtmtypes("gtm_time8",1,"type")="time_t" + Set gtmtypfldindx("gtm_time8","ctime")=1 + Set gtmtypes("gtm_time8",2,"name")="gtm_time8.filler" + Set gtmtypes("gtm_time8",2,"off")=0 + Set gtmtypes("gtm_time8",2,"len")=8 + Set gtmtypes("gtm_time8",2,"type")="int" + Set gtmtypfldindx("gtm_time8","filler")=2 + Set gtmtypes("gtm_time8",2,"dim")=2 + ; + Set gtmtypes("gtm_tls_conn_info")="struct" + Set gtmtypes("gtm_tls_conn_info",0)=17 + Set gtmtypes("gtm_tls_conn_info","len")=872 + Set gtmtypes("gtm_tls_conn_info",1,"name")="gtm_tls_conn_info.protocol" + Set gtmtypes("gtm_tls_conn_info",1,"off")=0 + Set gtmtypes("gtm_tls_conn_info",1,"len")=64 + Set gtmtypes("gtm_tls_conn_info",1,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","protocol")=1 + Set gtmtypes("gtm_tls_conn_info",2,"name")="gtm_tls_conn_info.session_algo" + Set gtmtypes("gtm_tls_conn_info",2,"off")=64 + Set gtmtypes("gtm_tls_conn_info",2,"len")=64 + Set gtmtypes("gtm_tls_conn_info",2,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","session_algo")=2 + Set gtmtypes("gtm_tls_conn_info",3,"name")="gtm_tls_conn_info.session_id" + Set gtmtypes("gtm_tls_conn_info",3,"off")=128 + Set gtmtypes("gtm_tls_conn_info",3,"len")=65 + Set gtmtypes("gtm_tls_conn_info",3,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","session_id")=3 + Set gtmtypes("gtm_tls_conn_info",4,"name")="gtm_tls_conn_info.compression" + Set gtmtypes("gtm_tls_conn_info",4,"off")=196 + Set gtmtypes("gtm_tls_conn_info",4,"len")=4 + Set gtmtypes("gtm_tls_conn_info",4,"type")="addr" + Set gtmtypfldindx("gtm_tls_conn_info","compression")=4 + Set gtmtypes("gtm_tls_conn_info",5,"name")="gtm_tls_conn_info.secure_renegotiation" + Set gtmtypes("gtm_tls_conn_info",5,"off")=200 + Set gtmtypes("gtm_tls_conn_info",5,"len")=4 + Set gtmtypes("gtm_tls_conn_info",5,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","secure_renegotiation")=5 + Set gtmtypes("gtm_tls_conn_info",6,"name")="gtm_tls_conn_info.reused" + Set gtmtypes("gtm_tls_conn_info",6,"off")=204 + Set gtmtypes("gtm_tls_conn_info",6,"len")=4 + Set gtmtypes("gtm_tls_conn_info",6,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","reused")=6 + Set gtmtypes("gtm_tls_conn_info",7,"name")="gtm_tls_conn_info.session_expiry_timeout" + Set gtmtypes("gtm_tls_conn_info",7,"off")=208 + Set gtmtypes("gtm_tls_conn_info",7,"len")=4 + Set gtmtypes("gtm_tls_conn_info",7,"type")="long" + Set gtmtypfldindx("gtm_tls_conn_info","session_expiry_timeout")=7 + Set gtmtypes("gtm_tls_conn_info",8,"name")="gtm_tls_conn_info.cert_algo" + Set gtmtypes("gtm_tls_conn_info",8,"off")=212 + Set gtmtypes("gtm_tls_conn_info",8,"len")=64 + Set gtmtypes("gtm_tls_conn_info",8,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","cert_algo")=8 + Set gtmtypes("gtm_tls_conn_info",9,"name")="gtm_tls_conn_info.cert_nbits" + Set gtmtypes("gtm_tls_conn_info",9,"off")=276 + Set gtmtypes("gtm_tls_conn_info",9,"len")=4 + Set gtmtypes("gtm_tls_conn_info",9,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","cert_nbits")=9 + Set gtmtypes("gtm_tls_conn_info",10,"name")="gtm_tls_conn_info.subject" + Set gtmtypes("gtm_tls_conn_info",10,"off")=280 + Set gtmtypes("gtm_tls_conn_info",10,"len")=256 + Set gtmtypes("gtm_tls_conn_info",10,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","subject")=10 + Set gtmtypes("gtm_tls_conn_info",11,"name")="gtm_tls_conn_info.issuer" + Set gtmtypes("gtm_tls_conn_info",11,"off")=536 + Set gtmtypes("gtm_tls_conn_info",11,"len")=256 + Set gtmtypes("gtm_tls_conn_info",11,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","issuer")=11 + Set gtmtypes("gtm_tls_conn_info",12,"name")="gtm_tls_conn_info.not_before" + Set gtmtypes("gtm_tls_conn_info",12,"off")=792 + Set gtmtypes("gtm_tls_conn_info",12,"len")=32 + Set gtmtypes("gtm_tls_conn_info",12,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","not_before")=12 + Set gtmtypes("gtm_tls_conn_info",13,"name")="gtm_tls_conn_info.not_after" + Set gtmtypes("gtm_tls_conn_info",13,"off")=824 + Set gtmtypes("gtm_tls_conn_info",13,"len")=32 + Set gtmtypes("gtm_tls_conn_info",13,"type")="char" + Set gtmtypfldindx("gtm_tls_conn_info","not_after")=13 + Set gtmtypes("gtm_tls_conn_info",14,"name")="gtm_tls_conn_info.options" + Set gtmtypes("gtm_tls_conn_info",14,"off")=856 + Set gtmtypes("gtm_tls_conn_info",14,"len")=4 + Set gtmtypes("gtm_tls_conn_info",14,"type")="long" + Set gtmtypfldindx("gtm_tls_conn_info","options")=14 + Set gtmtypes("gtm_tls_conn_info",15,"name")="gtm_tls_conn_info.renegotiation_pending" + Set gtmtypes("gtm_tls_conn_info",15,"off")=860 + Set gtmtypes("gtm_tls_conn_info",15,"len")=4 + Set gtmtypes("gtm_tls_conn_info",15,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","renegotiation_pending")=15 + Set gtmtypes("gtm_tls_conn_info",16,"name")="gtm_tls_conn_info.total_renegotiations" + Set gtmtypes("gtm_tls_conn_info",16,"off")=864 + Set gtmtypes("gtm_tls_conn_info",16,"len")=4 + Set gtmtypes("gtm_tls_conn_info",16,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","total_renegotiations")=16 + Set gtmtypes("gtm_tls_conn_info",17,"name")="gtm_tls_conn_info.verify_mode" + Set gtmtypes("gtm_tls_conn_info",17,"off")=868 + Set gtmtypes("gtm_tls_conn_info",17,"len")=4 + Set gtmtypes("gtm_tls_conn_info",17,"type")="int" + Set gtmtypfldindx("gtm_tls_conn_info","verify_mode")=17 + ; + Set gtmtypes("gtm_tls_ctx_t")="struct" + Set gtmtypes("gtm_tls_ctx_t",0)=6 + Set gtmtypes("gtm_tls_ctx_t","len")=24 + Set gtmtypes("gtm_tls_ctx_t",1,"name")="gtm_tls_ctx_t.flags" + Set gtmtypes("gtm_tls_ctx_t",1,"off")=0 + Set gtmtypes("gtm_tls_ctx_t",1,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",1,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","flags")=1 + Set gtmtypes("gtm_tls_ctx_t",2,"name")="gtm_tls_ctx_t.fips_mode" + Set gtmtypes("gtm_tls_ctx_t",2,"off")=4 + Set gtmtypes("gtm_tls_ctx_t",2,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",2,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","fips_mode")=2 + Set gtmtypes("gtm_tls_ctx_t",3,"name")="gtm_tls_ctx_t.compile_time_version" + Set gtmtypes("gtm_tls_ctx_t",3,"off")=8 + Set gtmtypes("gtm_tls_ctx_t",3,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",3,"type")="unsigned-long" + Set gtmtypfldindx("gtm_tls_ctx_t","compile_time_version")=3 + Set gtmtypes("gtm_tls_ctx_t",4,"name")="gtm_tls_ctx_t.runtime_version" + Set gtmtypes("gtm_tls_ctx_t",4,"off")=12 + Set gtmtypes("gtm_tls_ctx_t",4,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",4,"type")="unsigned-long" + Set gtmtypfldindx("gtm_tls_ctx_t","runtime_version")=4 + Set gtmtypes("gtm_tls_ctx_t",5,"name")="gtm_tls_ctx_t.ctx" + Set gtmtypes("gtm_tls_ctx_t",5,"off")=16 + Set gtmtypes("gtm_tls_ctx_t",5,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",5,"type")="addr" + Set gtmtypfldindx("gtm_tls_ctx_t","ctx")=5 + Set gtmtypes("gtm_tls_ctx_t",6,"name")="gtm_tls_ctx_t.version" + Set gtmtypes("gtm_tls_ctx_t",6,"off")=20 + Set gtmtypes("gtm_tls_ctx_t",6,"len")=4 + Set gtmtypes("gtm_tls_ctx_t",6,"type")="int" + Set gtmtypfldindx("gtm_tls_ctx_t","version")=6 + ; + Set gtmtypes("gtm_tls_socket_t")="struct" + Set gtmtypes("gtm_tls_socket_t",0)=5 + Set gtmtypes("gtm_tls_socket_t","len")=52 + Set gtmtypes("gtm_tls_socket_t",1,"name")="gtm_tls_socket_t.flags" + Set gtmtypes("gtm_tls_socket_t",1,"off")=0 + Set gtmtypes("gtm_tls_socket_t",1,"len")=4 + Set gtmtypes("gtm_tls_socket_t",1,"type")="int" + Set gtmtypfldindx("gtm_tls_socket_t","flags")=1 + Set gtmtypes("gtm_tls_socket_t",2,"name")="gtm_tls_socket_t.ssl" + Set gtmtypes("gtm_tls_socket_t",2,"off")=4 + Set gtmtypes("gtm_tls_socket_t",2,"len")=4 + Set gtmtypes("gtm_tls_socket_t",2,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","ssl")=2 + Set gtmtypes("gtm_tls_socket_t",3,"name")="gtm_tls_socket_t.session" + Set gtmtypes("gtm_tls_socket_t",3,"off")=8 + Set gtmtypes("gtm_tls_socket_t",3,"len")=4 + Set gtmtypes("gtm_tls_socket_t",3,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","session")=3 + Set gtmtypes("gtm_tls_socket_t",4,"name")="gtm_tls_socket_t.tlsid" + Set gtmtypes("gtm_tls_socket_t",4,"off")=12 + Set gtmtypes("gtm_tls_socket_t",4,"len")=33 + Set gtmtypes("gtm_tls_socket_t",4,"type")="char" + Set gtmtypfldindx("gtm_tls_socket_t","tlsid")=4 + Set gtmtypes("gtm_tls_socket_t",5,"name")="gtm_tls_socket_t.gtm_ctx" + Set gtmtypes("gtm_tls_socket_t",5,"off")=48 + Set gtmtypes("gtm_tls_socket_t",5,"len")=4 + Set gtmtypes("gtm_tls_socket_t",5,"type")="addr" + Set gtmtypfldindx("gtm_tls_socket_t","gtm_ctx")=5 + ; + Set gtmtypes("gtm_trigger_parms")="struct" + Set gtmtypes("gtm_trigger_parms",0)=8 + Set gtmtypes("gtm_trigger_parms","len")=32 + Set gtmtypes("gtm_trigger_parms",1,"name")="gtm_trigger_parms.ztoldval_new" + Set gtmtypes("gtm_trigger_parms",1,"off")=0 + Set gtmtypes("gtm_trigger_parms",1,"len")=4 + Set gtmtypes("gtm_trigger_parms",1,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztoldval_new")=1 + Set gtmtypes("gtm_trigger_parms",2,"name")="gtm_trigger_parms.ztvalue_new" + Set gtmtypes("gtm_trigger_parms",2,"off")=4 + Set gtmtypes("gtm_trigger_parms",2,"len")=4 + Set gtmtypes("gtm_trigger_parms",2,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztvalue_new")=2 + Set gtmtypes("gtm_trigger_parms",3,"name")="gtm_trigger_parms.ztdata_new" + Set gtmtypes("gtm_trigger_parms",3,"off")=8 + Set gtmtypes("gtm_trigger_parms",3,"len")=4 + Set gtmtypes("gtm_trigger_parms",3,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztdata_new")=3 + Set gtmtypes("gtm_trigger_parms",4,"name")="gtm_trigger_parms.ztdelim_new" + Set gtmtypes("gtm_trigger_parms",4,"off")=12 + Set gtmtypes("gtm_trigger_parms",4,"len")=4 + Set gtmtypes("gtm_trigger_parms",4,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztdelim_new")=4 + Set gtmtypes("gtm_trigger_parms",5,"name")="gtm_trigger_parms.ztriggerop_new" + Set gtmtypes("gtm_trigger_parms",5,"off")=16 + Set gtmtypes("gtm_trigger_parms",5,"len")=4 + Set gtmtypes("gtm_trigger_parms",5,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztriggerop_new")=5 + Set gtmtypes("gtm_trigger_parms",6,"name")="gtm_trigger_parms.ztupdate_new" + Set gtmtypes("gtm_trigger_parms",6,"off")=20 + Set gtmtypes("gtm_trigger_parms",6,"len")=4 + Set gtmtypes("gtm_trigger_parms",6,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","ztupdate_new")=6 + Set gtmtypes("gtm_trigger_parms",7,"name")="gtm_trigger_parms.lvvalarray" + Set gtmtypes("gtm_trigger_parms",7,"off")=24 + Set gtmtypes("gtm_trigger_parms",7,"len")=4 + Set gtmtypes("gtm_trigger_parms",7,"type")="addr" + Set gtmtypfldindx("gtm_trigger_parms","lvvalarray")=7 + Set gtmtypes("gtm_trigger_parms",8,"name")="gtm_trigger_parms.ztvalue_changed" + Set gtmtypes("gtm_trigger_parms",8,"off")=28 + Set gtmtypes("gtm_trigger_parms",8,"len")=4 + Set gtmtypes("gtm_trigger_parms",8,"type")="boolean_t" + Set gtmtypfldindx("gtm_trigger_parms","ztvalue_changed")=8 + ; + Set gtmtypes("gtm_uint16")="struct" + Set gtmtypes("gtm_uint16",0)=2 + Set gtmtypes("gtm_uint16","len")=16 + Set gtmtypes("gtm_uint16",1,"name")="gtm_uint16.one" + Set gtmtypes("gtm_uint16",1,"off")=0 + Set gtmtypes("gtm_uint16",1,"len")=8 + Set gtmtypes("gtm_uint16",1,"type")="gtm_uint8" + Set gtmtypfldindx("gtm_uint16","one")=1 + Set gtmtypes("gtm_uint16",2,"name")="gtm_uint16.two" + Set gtmtypes("gtm_uint16",2,"off")=8 + Set gtmtypes("gtm_uint16",2,"len")=8 + Set gtmtypes("gtm_uint16",2,"type")="gtm_uint8" + Set gtmtypfldindx("gtm_uint16","two")=2 + ; + Set gtmtypes("gtmrecv_local_struct")="struct" + Set gtmtypes("gtmrecv_local_struct",0)=41 + Set gtmtypes("gtmrecv_local_struct","len")=1284 + Set gtmtypes("gtmrecv_local_struct",1,"name")="gtmrecv_local_struct.recv_serv_pid" + Set gtmtypes("gtmrecv_local_struct",1,"off")=0 + Set gtmtypes("gtmrecv_local_struct",1,"len")=4 + Set gtmtypes("gtmrecv_local_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","recv_serv_pid")=1 + Set gtmtypes("gtmrecv_local_struct",2,"name")="gtmrecv_local_struct.lastrecvd_time" + Set gtmtypes("gtmrecv_local_struct",2,"off")=4 + Set gtmtypes("gtmrecv_local_struct",2,"len")=4 + Set gtmtypes("gtmrecv_local_struct",2,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","lastrecvd_time")=2 + Set gtmtypes("gtmrecv_local_struct",3,"name")="gtmrecv_local_struct.statslog" + Set gtmtypes("gtmrecv_local_struct",3,"off")=8 + Set gtmtypes("gtmrecv_local_struct",3,"len")=4 + Set gtmtypes("gtmrecv_local_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","statslog")=3 + Set gtmtypes("gtmrecv_local_struct",4,"name")="gtmrecv_local_struct.shutdown" + Set gtmtypes("gtmrecv_local_struct",4,"off")=12 + Set gtmtypes("gtmrecv_local_struct",4,"len")=4 + Set gtmtypes("gtmrecv_local_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","shutdown")=4 + Set gtmtypes("gtmrecv_local_struct",5,"name")="gtmrecv_local_struct.shutdown_time" + Set gtmtypes("gtmrecv_local_struct",5,"off")=16 + Set gtmtypes("gtmrecv_local_struct",5,"len")=4 + Set gtmtypes("gtmrecv_local_struct",5,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","shutdown_time")=5 + Set gtmtypes("gtmrecv_local_struct",6,"name")="gtmrecv_local_struct.listen_port" + Set gtmtypes("gtmrecv_local_struct",6,"off")=20 + Set gtmtypes("gtmrecv_local_struct",6,"len")=4 + Set gtmtypes("gtmrecv_local_struct",6,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","listen_port")=6 + Set gtmtypes("gtmrecv_local_struct",7,"name")="gtmrecv_local_struct.restart" + Set gtmtypes("gtmrecv_local_struct",7,"off")=24 + Set gtmtypes("gtmrecv_local_struct",7,"len")=4 + Set gtmtypes("gtmrecv_local_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","restart")=7 + Set gtmtypes("gtmrecv_local_struct",8,"name")="gtmrecv_local_struct.changelog" + Set gtmtypes("gtmrecv_local_struct",8,"off")=28 + Set gtmtypes("gtmrecv_local_struct",8,"len")=4 + Set gtmtypes("gtmrecv_local_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","changelog")=8 + Set gtmtypes("gtmrecv_local_struct",9,"name")="gtmrecv_local_struct.log_interval" + Set gtmtypes("gtmrecv_local_struct",9,"off")=32 + Set gtmtypes("gtmrecv_local_struct",9,"len")=4 + Set gtmtypes("gtmrecv_local_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","log_interval")=9 + Set gtmtypes("gtmrecv_local_struct",10,"name")="gtmrecv_local_struct.filter_cmd" + Set gtmtypes("gtmrecv_local_struct",10,"off")=36 + Set gtmtypes("gtmrecv_local_struct",10,"len")=512 + Set gtmtypes("gtmrecv_local_struct",10,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","filter_cmd")=10 + Set gtmtypes("gtmrecv_local_struct",11,"name")="gtmrecv_local_struct.log_file" + Set gtmtypes("gtmrecv_local_struct",11,"off")=548 + Set gtmtypes("gtmrecv_local_struct",11,"len")=256 + Set gtmtypes("gtmrecv_local_struct",11,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","log_file")=11 + Set gtmtypes("gtmrecv_local_struct",12,"name")="gtmrecv_local_struct.statslog_file" + Set gtmtypes("gtmrecv_local_struct",12,"off")=804 + Set gtmtypes("gtmrecv_local_struct",12,"len")=256 + Set gtmtypes("gtmrecv_local_struct",12,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","statslog_file")=12 + Set gtmtypes("gtmrecv_local_struct",13,"name")="gtmrecv_local_struct.remote_side" + Set gtmtypes("gtmrecv_local_struct",13,"off")=1060 + Set gtmtypes("gtmrecv_local_struct",13,"len")=48 + Set gtmtypes("gtmrecv_local_struct",13,"type")="repl_conn_info_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side")=13 + Set gtmtypes("gtmrecv_local_struct",14,"name")="gtmrecv_local_struct.remote_side.proto_ver" + Set gtmtypes("gtmrecv_local_struct",14,"off")=1060 + Set gtmtypes("gtmrecv_local_struct",14,"len")=4 + Set gtmtypes("gtmrecv_local_struct",14,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.proto_ver")=14 + Set gtmtypes("gtmrecv_local_struct",15,"name")="gtmrecv_local_struct.remote_side.jnl_ver" + Set gtmtypes("gtmrecv_local_struct",15,"off")=1064 + Set gtmtypes("gtmrecv_local_struct",15,"len")=4 + Set gtmtypes("gtmrecv_local_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.jnl_ver")=15 + Set gtmtypes("gtmrecv_local_struct",16,"name")="gtmrecv_local_struct.remote_side.is_std_null_coll" + Set gtmtypes("gtmrecv_local_struct",16,"off")=1068 + Set gtmtypes("gtmrecv_local_struct",16,"len")=4 + Set gtmtypes("gtmrecv_local_struct",16,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.is_std_null_coll")=16 + Set gtmtypes("gtmrecv_local_struct",17,"name")="gtmrecv_local_struct.remote_side.trigger_supported" + Set gtmtypes("gtmrecv_local_struct",17,"off")=1072 + Set gtmtypes("gtmrecv_local_struct",17,"len")=4 + Set gtmtypes("gtmrecv_local_struct",17,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.trigger_supported")=17 + Set gtmtypes("gtmrecv_local_struct",18,"name")="gtmrecv_local_struct.remote_side.cross_endian" + Set gtmtypes("gtmrecv_local_struct",18,"off")=1076 + Set gtmtypes("gtmrecv_local_struct",18,"len")=4 + Set gtmtypes("gtmrecv_local_struct",18,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.cross_endian")=18 + Set gtmtypes("gtmrecv_local_struct",19,"name")="gtmrecv_local_struct.remote_side.endianness_known" + Set gtmtypes("gtmrecv_local_struct",19,"off")=1080 + Set gtmtypes("gtmrecv_local_struct",19,"len")=4 + Set gtmtypes("gtmrecv_local_struct",19,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.endianness_known")=19 + Set gtmtypes("gtmrecv_local_struct",20,"name")="gtmrecv_local_struct.remote_side.null_subs_xform" + Set gtmtypes("gtmrecv_local_struct",20,"off")=1084 + Set gtmtypes("gtmrecv_local_struct",20,"len")=4 + Set gtmtypes("gtmrecv_local_struct",20,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.null_subs_xform")=20 + Set gtmtypes("gtmrecv_local_struct",21,"name")="gtmrecv_local_struct.remote_side.is_supplementary" + Set gtmtypes("gtmrecv_local_struct",21,"off")=1088 + Set gtmtypes("gtmrecv_local_struct",21,"len")=4 + Set gtmtypes("gtmrecv_local_struct",21,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.is_supplementary")=21 + Set gtmtypes("gtmrecv_local_struct",22,"name")="gtmrecv_local_struct.remote_side.tls_requested" + Set gtmtypes("gtmrecv_local_struct",22,"off")=1092 + Set gtmtypes("gtmrecv_local_struct",22,"len")=4 + Set gtmtypes("gtmrecv_local_struct",22,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.tls_requested")=22 + Set gtmtypes("gtmrecv_local_struct",23,"name")="gtmrecv_local_struct.remote_side.filler_16" + Set gtmtypes("gtmrecv_local_struct",23,"off")=1096 + Set gtmtypes("gtmrecv_local_struct",23,"len")=12 + Set gtmtypes("gtmrecv_local_struct",23,"type")="char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_side.filler_16")=23 + Set gtmtypes("gtmrecv_local_struct",24,"name")="gtmrecv_local_struct.strm_index" + Set gtmtypes("gtmrecv_local_struct",24,"off")=1108 + Set gtmtypes("gtmrecv_local_struct",24,"len")=4 + Set gtmtypes("gtmrecv_local_struct",24,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","strm_index")=24 + Set gtmtypes("gtmrecv_local_struct",25,"name")="gtmrecv_local_struct.updateresync" + Set gtmtypes("gtmrecv_local_struct",25,"off")=1112 + Set gtmtypes("gtmrecv_local_struct",25,"len")=4 + Set gtmtypes("gtmrecv_local_struct",25,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","updateresync")=25 + Set gtmtypes("gtmrecv_local_struct",26,"name")="gtmrecv_local_struct.noresync" + Set gtmtypes("gtmrecv_local_struct",26,"off")=1116 + Set gtmtypes("gtmrecv_local_struct",26,"len")=4 + Set gtmtypes("gtmrecv_local_struct",26,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","noresync")=26 + Set gtmtypes("gtmrecv_local_struct",27,"name")="gtmrecv_local_struct.updresync_instfile_fd" + Set gtmtypes("gtmrecv_local_struct",27,"off")=1120 + Set gtmtypes("gtmrecv_local_struct",27,"len")=4 + Set gtmtypes("gtmrecv_local_struct",27,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_instfile_fd")=27 + Set gtmtypes("gtmrecv_local_struct",28,"name")="gtmrecv_local_struct.updresync_num_histinfo" + Set gtmtypes("gtmrecv_local_struct",28,"off")=1124 + Set gtmtypes("gtmrecv_local_struct",28,"len")=4 + Set gtmtypes("gtmrecv_local_struct",28,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_num_histinfo")=28 + Set gtmtypes("gtmrecv_local_struct",29,"name")="gtmrecv_local_struct.updresync_cross_endian" + Set gtmtypes("gtmrecv_local_struct",29,"off")=1128 + Set gtmtypes("gtmrecv_local_struct",29,"len")=4 + Set gtmtypes("gtmrecv_local_struct",29,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_cross_endian")=29 + Set gtmtypes("gtmrecv_local_struct",30,"name")="gtmrecv_local_struct.updresync_num_histinfo_strm" + Set gtmtypes("gtmrecv_local_struct",30,"off")=1132 + Set gtmtypes("gtmrecv_local_struct",30,"len")=64 + Set gtmtypes("gtmrecv_local_struct",30,"type")="int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_num_histinfo_strm")=30 + Set gtmtypes("gtmrecv_local_struct",30,"dim")=16 + Set gtmtypes("gtmrecv_local_struct",31,"name")="gtmrecv_local_struct.updresync_lms_group" + Set gtmtypes("gtmrecv_local_struct",31,"off")=1196 + Set gtmtypes("gtmrecv_local_struct",31,"len")=40 + Set gtmtypes("gtmrecv_local_struct",31,"type")="repl_inst_uuid" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group")=31 + Set gtmtypes("gtmrecv_local_struct",32,"name")="gtmrecv_local_struct.updresync_lms_group.created_nodename" + Set gtmtypes("gtmrecv_local_struct",32,"off")=1196 + Set gtmtypes("gtmrecv_local_struct",32,"len")=16 + Set gtmtypes("gtmrecv_local_struct",32,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.created_nodename")=32 + Set gtmtypes("gtmrecv_local_struct",33,"name")="gtmrecv_local_struct.updresync_lms_group.this_instname" + Set gtmtypes("gtmrecv_local_struct",33,"off")=1212 + Set gtmtypes("gtmrecv_local_struct",33,"len")=16 + Set gtmtypes("gtmrecv_local_struct",33,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.this_instname")=33 + Set gtmtypes("gtmrecv_local_struct",34,"name")="gtmrecv_local_struct.updresync_lms_group.created_time" + Set gtmtypes("gtmrecv_local_struct",34,"off")=1228 + Set gtmtypes("gtmrecv_local_struct",34,"len")=4 + Set gtmtypes("gtmrecv_local_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.created_time")=34 + Set gtmtypes("gtmrecv_local_struct",35,"name")="gtmrecv_local_struct.updresync_lms_group.creator_pid" + Set gtmtypes("gtmrecv_local_struct",35,"off")=1232 + Set gtmtypes("gtmrecv_local_struct",35,"len")=4 + Set gtmtypes("gtmrecv_local_struct",35,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_lms_group.creator_pid")=35 + Set gtmtypes("gtmrecv_local_struct",36,"name")="gtmrecv_local_struct.updresync_jnl_seqno" + Set gtmtypes("gtmrecv_local_struct",36,"off")=1236 + Set gtmtypes("gtmrecv_local_struct",36,"len")=8 + Set gtmtypes("gtmrecv_local_struct",36,"type")="uint64_t" + Set gtmtypfldindx("gtmrecv_local_struct","updresync_jnl_seqno")=36 + Set gtmtypes("gtmrecv_local_struct",37,"name")="gtmrecv_local_struct.remote_lms_group" + Set gtmtypes("gtmrecv_local_struct",37,"off")=1244 + Set gtmtypes("gtmrecv_local_struct",37,"len")=40 + Set gtmtypes("gtmrecv_local_struct",37,"type")="repl_inst_uuid" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group")=37 + Set gtmtypes("gtmrecv_local_struct",38,"name")="gtmrecv_local_struct.remote_lms_group.created_nodename" + Set gtmtypes("gtmrecv_local_struct",38,"off")=1244 + Set gtmtypes("gtmrecv_local_struct",38,"len")=16 + Set gtmtypes("gtmrecv_local_struct",38,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.created_nodename")=38 + Set gtmtypes("gtmrecv_local_struct",39,"name")="gtmrecv_local_struct.remote_lms_group.this_instname" + Set gtmtypes("gtmrecv_local_struct",39,"off")=1260 + Set gtmtypes("gtmrecv_local_struct",39,"len")=16 + Set gtmtypes("gtmrecv_local_struct",39,"type")="unsigned-char" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.this_instname")=39 + Set gtmtypes("gtmrecv_local_struct",40,"name")="gtmrecv_local_struct.remote_lms_group.created_time" + Set gtmtypes("gtmrecv_local_struct",40,"off")=1276 + Set gtmtypes("gtmrecv_local_struct",40,"len")=4 + Set gtmtypes("gtmrecv_local_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.created_time")=40 + Set gtmtypes("gtmrecv_local_struct",41,"name")="gtmrecv_local_struct.remote_lms_group.creator_pid" + Set gtmtypes("gtmrecv_local_struct",41,"off")=1280 + Set gtmtypes("gtmrecv_local_struct",41,"len")=4 + Set gtmtypes("gtmrecv_local_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_local_struct","remote_lms_group.creator_pid")=41 + ; + Set gtmtypes("gtmrecv_options_t")="struct" + Set gtmtypes("gtmrecv_options_t",0)=29 + Set gtmtypes("gtmrecv_options_t","len")=1140 + Set gtmtypes("gtmrecv_options_t",1,"name")="gtmrecv_options_t.start" + Set gtmtypes("gtmrecv_options_t",1,"off")=0 + Set gtmtypes("gtmrecv_options_t",1,"len")=4 + Set gtmtypes("gtmrecv_options_t",1,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","start")=1 + Set gtmtypes("gtmrecv_options_t",2,"name")="gtmrecv_options_t.shut_down" + Set gtmtypes("gtmrecv_options_t",2,"off")=4 + Set gtmtypes("gtmrecv_options_t",2,"len")=4 + Set gtmtypes("gtmrecv_options_t",2,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","shut_down")=2 + Set gtmtypes("gtmrecv_options_t",3,"name")="gtmrecv_options_t.checkhealth" + Set gtmtypes("gtmrecv_options_t",3,"off")=8 + Set gtmtypes("gtmrecv_options_t",3,"len")=4 + Set gtmtypes("gtmrecv_options_t",3,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","checkhealth")=3 + Set gtmtypes("gtmrecv_options_t",4,"name")="gtmrecv_options_t.statslog" + Set gtmtypes("gtmrecv_options_t",4,"off")=12 + Set gtmtypes("gtmrecv_options_t",4,"len")=4 + Set gtmtypes("gtmrecv_options_t",4,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","statslog")=4 + Set gtmtypes("gtmrecv_options_t",5,"name")="gtmrecv_options_t.showbacklog" + Set gtmtypes("gtmrecv_options_t",5,"off")=16 + Set gtmtypes("gtmrecv_options_t",5,"len")=4 + Set gtmtypes("gtmrecv_options_t",5,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","showbacklog")=5 + Set gtmtypes("gtmrecv_options_t",6,"name")="gtmrecv_options_t.updateonly" + Set gtmtypes("gtmrecv_options_t",6,"off")=20 + Set gtmtypes("gtmrecv_options_t",6,"len")=4 + Set gtmtypes("gtmrecv_options_t",6,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","updateonly")=6 + Set gtmtypes("gtmrecv_options_t",7,"name")="gtmrecv_options_t.stopsourcefilter" + Set gtmtypes("gtmrecv_options_t",7,"off")=24 + Set gtmtypes("gtmrecv_options_t",7,"len")=4 + Set gtmtypes("gtmrecv_options_t",7,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","stopsourcefilter")=7 + Set gtmtypes("gtmrecv_options_t",8,"name")="gtmrecv_options_t.changelog" + Set gtmtypes("gtmrecv_options_t",8,"off")=28 + Set gtmtypes("gtmrecv_options_t",8,"len")=4 + Set gtmtypes("gtmrecv_options_t",8,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","changelog")=8 + Set gtmtypes("gtmrecv_options_t",9,"name")="gtmrecv_options_t.buffsize" + Set gtmtypes("gtmrecv_options_t",9,"off")=32 + Set gtmtypes("gtmrecv_options_t",9,"len")=4 + Set gtmtypes("gtmrecv_options_t",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","buffsize")=9 + Set gtmtypes("gtmrecv_options_t",10,"name")="gtmrecv_options_t.shutdown_time" + Set gtmtypes("gtmrecv_options_t",10,"off")=36 + Set gtmtypes("gtmrecv_options_t",10,"len")=4 + Set gtmtypes("gtmrecv_options_t",10,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","shutdown_time")=10 + Set gtmtypes("gtmrecv_options_t",11,"name")="gtmrecv_options_t.listen_port" + Set gtmtypes("gtmrecv_options_t",11,"off")=40 + Set gtmtypes("gtmrecv_options_t",11,"len")=4 + Set gtmtypes("gtmrecv_options_t",11,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","listen_port")=11 + Set gtmtypes("gtmrecv_options_t",12,"name")="gtmrecv_options_t.updateresync" + Set gtmtypes("gtmrecv_options_t",12,"off")=44 + Set gtmtypes("gtmrecv_options_t",12,"len")=4 + Set gtmtypes("gtmrecv_options_t",12,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","updateresync")=12 + Set gtmtypes("gtmrecv_options_t",13,"name")="gtmrecv_options_t.noresync" + Set gtmtypes("gtmrecv_options_t",13,"off")=48 + Set gtmtypes("gtmrecv_options_t",13,"len")=4 + Set gtmtypes("gtmrecv_options_t",13,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","noresync")=13 + Set gtmtypes("gtmrecv_options_t",14,"name")="gtmrecv_options_t.rcvr_log_interval" + Set gtmtypes("gtmrecv_options_t",14,"off")=52 + Set gtmtypes("gtmrecv_options_t",14,"len")=4 + Set gtmtypes("gtmrecv_options_t",14,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","rcvr_log_interval")=14 + Set gtmtypes("gtmrecv_options_t",15,"name")="gtmrecv_options_t.upd_log_interval" + Set gtmtypes("gtmrecv_options_t",15,"off")=56 + Set gtmtypes("gtmrecv_options_t",15,"len")=4 + Set gtmtypes("gtmrecv_options_t",15,"type")="unsigned-int" + Set gtmtypfldindx("gtmrecv_options_t","upd_log_interval")=15 + Set gtmtypes("gtmrecv_options_t",16,"name")="gtmrecv_options_t.helpers" + Set gtmtypes("gtmrecv_options_t",16,"off")=60 + Set gtmtypes("gtmrecv_options_t",16,"len")=4 + Set gtmtypes("gtmrecv_options_t",16,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","helpers")=16 + Set gtmtypes("gtmrecv_options_t",17,"name")="gtmrecv_options_t.reuse_specified" + Set gtmtypes("gtmrecv_options_t",17,"off")=64 + Set gtmtypes("gtmrecv_options_t",17,"len")=4 + Set gtmtypes("gtmrecv_options_t",17,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","reuse_specified")=17 + Set gtmtypes("gtmrecv_options_t",18,"name")="gtmrecv_options_t.resume_specified" + Set gtmtypes("gtmrecv_options_t",18,"off")=68 + Set gtmtypes("gtmrecv_options_t",18,"len")=4 + Set gtmtypes("gtmrecv_options_t",18,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","resume_specified")=18 + Set gtmtypes("gtmrecv_options_t",19,"name")="gtmrecv_options_t.initialize_specified" + Set gtmtypes("gtmrecv_options_t",19,"off")=72 + Set gtmtypes("gtmrecv_options_t",19,"len")=4 + Set gtmtypes("gtmrecv_options_t",19,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","initialize_specified")=19 + Set gtmtypes("gtmrecv_options_t",20,"name")="gtmrecv_options_t.resume_strm_num" + Set gtmtypes("gtmrecv_options_t",20,"off")=76 + Set gtmtypes("gtmrecv_options_t",20,"len")=4 + Set gtmtypes("gtmrecv_options_t",20,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","resume_strm_num")=20 + Set gtmtypes("gtmrecv_options_t",21,"name")="gtmrecv_options_t.n_readers" + Set gtmtypes("gtmrecv_options_t",21,"off")=80 + Set gtmtypes("gtmrecv_options_t",21,"len")=4 + Set gtmtypes("gtmrecv_options_t",21,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","n_readers")=21 + Set gtmtypes("gtmrecv_options_t",22,"name")="gtmrecv_options_t.n_writers" + Set gtmtypes("gtmrecv_options_t",22,"off")=84 + Set gtmtypes("gtmrecv_options_t",22,"len")=4 + Set gtmtypes("gtmrecv_options_t",22,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","n_writers")=22 + Set gtmtypes("gtmrecv_options_t",23,"name")="gtmrecv_options_t.cmplvl" + Set gtmtypes("gtmrecv_options_t",23,"off")=88 + Set gtmtypes("gtmrecv_options_t",23,"len")=4 + Set gtmtypes("gtmrecv_options_t",23,"type")="int" + Set gtmtypfldindx("gtmrecv_options_t","cmplvl")=23 + Set gtmtypes("gtmrecv_options_t",24,"name")="gtmrecv_options_t.log_file" + Set gtmtypes("gtmrecv_options_t",24,"off")=92 + Set gtmtypes("gtmrecv_options_t",24,"len")=256 + Set gtmtypes("gtmrecv_options_t",24,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","log_file")=24 + Set gtmtypes("gtmrecv_options_t",25,"name")="gtmrecv_options_t.updresync_instfilename" + Set gtmtypes("gtmrecv_options_t",25,"off")=348 + Set gtmtypes("gtmrecv_options_t",25,"len")=256 + Set gtmtypes("gtmrecv_options_t",25,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","updresync_instfilename")=25 + Set gtmtypes("gtmrecv_options_t",26,"name")="gtmrecv_options_t.filter_cmd" + Set gtmtypes("gtmrecv_options_t",26,"off")=604 + Set gtmtypes("gtmrecv_options_t",26,"len")=512 + Set gtmtypes("gtmrecv_options_t",26,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","filter_cmd")=26 + Set gtmtypes("gtmrecv_options_t",27,"name")="gtmrecv_options_t.reuse_instname" + Set gtmtypes("gtmrecv_options_t",27,"off")=1116 + Set gtmtypes("gtmrecv_options_t",27,"len")=16 + Set gtmtypes("gtmrecv_options_t",27,"type")="char" + Set gtmtypfldindx("gtmrecv_options_t","reuse_instname")=27 + Set gtmtypes("gtmrecv_options_t",28,"name")="gtmrecv_options_t.autorollback" + Set gtmtypes("gtmrecv_options_t",28,"off")=1132 + Set gtmtypes("gtmrecv_options_t",28,"len")=4 + Set gtmtypes("gtmrecv_options_t",28,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","autorollback")=28 + Set gtmtypes("gtmrecv_options_t",29,"name")="gtmrecv_options_t.autorollback_verbose" + Set gtmtypes("gtmrecv_options_t",29,"off")=1136 + Set gtmtypes("gtmrecv_options_t",29,"len")=4 + Set gtmtypes("gtmrecv_options_t",29,"type")="boolean_t" + Set gtmtypfldindx("gtmrecv_options_t","autorollback_verbose")=29 + ; + Set gtmtypes("gtmsecshr_mesg")="struct" + Set gtmtypes("gtmsecshr_mesg",0)=15 + Set gtmtypes("gtmsecshr_mesg","len")=4140 + Set gtmtypes("gtmsecshr_mesg",1,"name")="gtmsecshr_mesg.code" + Set gtmtypes("gtmsecshr_mesg",1,"off")=0 + Set gtmtypes("gtmsecshr_mesg",1,"len")=4 + Set gtmtypes("gtmsecshr_mesg",1,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","code")=1 + Set gtmtypes("gtmsecshr_mesg",2,"name")="gtmsecshr_mesg.comkey" + Set gtmtypes("gtmsecshr_mesg",2,"off")=4 + Set gtmtypes("gtmsecshr_mesg",2,"len")=4 + Set gtmtypes("gtmsecshr_mesg",2,"type")="unsigned-int" + Set gtmtypfldindx("gtmsecshr_mesg","comkey")=2 + Set gtmtypes("gtmsecshr_mesg",3,"name")="gtmsecshr_mesg.usesecshr" + Set gtmtypes("gtmsecshr_mesg",3,"off")=8 + Set gtmtypes("gtmsecshr_mesg",3,"len")=4 + Set gtmtypes("gtmsecshr_mesg",3,"type")="boolean_t" + Set gtmtypfldindx("gtmsecshr_mesg","usesecshr")=3 + Set gtmtypes("gtmsecshr_mesg",4,"name")="gtmsecshr_mesg.pid" + Set gtmtypes("gtmsecshr_mesg",4,"off")=12 + Set gtmtypes("gtmsecshr_mesg",4,"len")=4 + Set gtmtypes("gtmsecshr_mesg",4,"type")="pid_t" + Set gtmtypfldindx("gtmsecshr_mesg","pid")=4 + Set gtmtypes("gtmsecshr_mesg",5,"name")="gtmsecshr_mesg.seqno" + Set gtmtypes("gtmsecshr_mesg",5,"off")=16 + Set gtmtypes("gtmsecshr_mesg",5,"len")=4 + Set gtmtypes("gtmsecshr_mesg",5,"type")="unsigned-long" + Set gtmtypfldindx("gtmsecshr_mesg","seqno")=5 + Set gtmtypes("gtmsecshr_mesg",6,"name")="gtmsecshr_mesg.mesg" + Set gtmtypes("gtmsecshr_mesg",6,"off")=20 + Set gtmtypes("gtmsecshr_mesg",6,"len")=4120 + Set gtmtypes("gtmsecshr_mesg",6,"type")="union" + Set gtmtypfldindx("gtmsecshr_mesg","mesg")=6 + Set gtmtypes("gtmsecshr_mesg",7,"name")="gtmsecshr_mesg.mesg.id" + Set gtmtypes("gtmsecshr_mesg",7,"off")=20 + Set gtmtypes("gtmsecshr_mesg",7,"len")=4 + Set gtmtypes("gtmsecshr_mesg",7,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.id")=7 + Set gtmtypes("gtmsecshr_mesg",8,"name")="gtmsecshr_mesg.mesg.path" + Set gtmtypes("gtmsecshr_mesg",8,"off")=20 + Set gtmtypes("gtmsecshr_mesg",8,"len")=4097 + Set gtmtypes("gtmsecshr_mesg",8,"type")="char" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.path")=8 + Set gtmtypes("gtmsecshr_mesg",9,"name")="gtmsecshr_mesg.mesg.db_ipcs" + Set gtmtypes("gtmsecshr_mesg",9,"off")=20 + Set gtmtypes("gtmsecshr_mesg",9,"len")=4120 + Set gtmtypes("gtmsecshr_mesg",9,"type")="ipcs_mesg" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs")=9 + Set gtmtypes("gtmsecshr_mesg",10,"name")="gtmsecshr_mesg.mesg.db_ipcs.semid" + Set gtmtypes("gtmsecshr_mesg",10,"off")=20 + Set gtmtypes("gtmsecshr_mesg",10,"len")=4 + Set gtmtypes("gtmsecshr_mesg",10,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.semid")=10 + Set gtmtypes("gtmsecshr_mesg",11,"name")="gtmsecshr_mesg.mesg.db_ipcs.shmid" + Set gtmtypes("gtmsecshr_mesg",11,"off")=24 + Set gtmtypes("gtmsecshr_mesg",11,"len")=4 + Set gtmtypes("gtmsecshr_mesg",11,"type")="int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.shmid")=11 + Set gtmtypes("gtmsecshr_mesg",12,"name")="gtmsecshr_mesg.mesg.db_ipcs.gt_sem_ctime" + Set gtmtypes("gtmsecshr_mesg",12,"off")=28 + Set gtmtypes("gtmsecshr_mesg",12,"len")=4 + Set gtmtypes("gtmsecshr_mesg",12,"type")="time_t" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.gt_sem_ctime")=12 + Set gtmtypes("gtmsecshr_mesg",13,"name")="gtmsecshr_mesg.mesg.db_ipcs.gt_shm_ctime" + Set gtmtypes("gtmsecshr_mesg",13,"off")=32 + Set gtmtypes("gtmsecshr_mesg",13,"len")=4 + Set gtmtypes("gtmsecshr_mesg",13,"type")="time_t" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.gt_shm_ctime")=13 + Set gtmtypes("gtmsecshr_mesg",14,"name")="gtmsecshr_mesg.mesg.db_ipcs.fn_len" + Set gtmtypes("gtmsecshr_mesg",14,"off")=36 + Set gtmtypes("gtmsecshr_mesg",14,"len")=4 + Set gtmtypes("gtmsecshr_mesg",14,"type")="unsigned-int" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.fn_len")=14 + Set gtmtypes("gtmsecshr_mesg",15,"name")="gtmsecshr_mesg.mesg.db_ipcs.fn" + Set gtmtypes("gtmsecshr_mesg",15,"off")=40 + Set gtmtypes("gtmsecshr_mesg",15,"len")=4097 + Set gtmtypes("gtmsecshr_mesg",15,"type")="char" + Set gtmtypfldindx("gtmsecshr_mesg","mesg.db_ipcs.fn")=15 + ; + Set gtmtypes("gtmsiginfo_t")="struct" + Set gtmtypes("gtmsiginfo_t",0)=8 + Set gtmtypes("gtmsiginfo_t","len")=32 + Set gtmtypes("gtmsiginfo_t",1,"name")="gtmsiginfo_t.int_iadr" + Set gtmtypes("gtmsiginfo_t",1,"off")=0 + Set gtmtypes("gtmsiginfo_t",1,"len")=4 + Set gtmtypes("gtmsiginfo_t",1,"type")="caddr_t" + Set gtmtypfldindx("gtmsiginfo_t","int_iadr")=1 + Set gtmtypes("gtmsiginfo_t",2,"name")="gtmsiginfo_t.bad_vadr" + Set gtmtypes("gtmsiginfo_t",2,"off")=4 + Set gtmtypes("gtmsiginfo_t",2,"len")=4 + Set gtmtypes("gtmsiginfo_t",2,"type")="caddr_t" + Set gtmtypfldindx("gtmsiginfo_t","bad_vadr")=2 + Set gtmtypes("gtmsiginfo_t",3,"name")="gtmsiginfo_t.sig_err" + Set gtmtypes("gtmsiginfo_t",3,"off")=8 + Set gtmtypes("gtmsiginfo_t",3,"len")=4 + Set gtmtypes("gtmsiginfo_t",3,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","sig_err")=3 + Set gtmtypes("gtmsiginfo_t",4,"name")="gtmsiginfo_t.send_pid" + Set gtmtypes("gtmsiginfo_t",4,"off")=12 + Set gtmtypes("gtmsiginfo_t",4,"len")=4 + Set gtmtypes("gtmsiginfo_t",4,"type")="pid_t" + Set gtmtypfldindx("gtmsiginfo_t","send_pid")=4 + Set gtmtypes("gtmsiginfo_t",5,"name")="gtmsiginfo_t.send_uid" + Set gtmtypes("gtmsiginfo_t",5,"off")=16 + Set gtmtypes("gtmsiginfo_t",5,"len")=4 + Set gtmtypes("gtmsiginfo_t",5,"type")="uid_t" + Set gtmtypfldindx("gtmsiginfo_t","send_uid")=5 + Set gtmtypes("gtmsiginfo_t",6,"name")="gtmsiginfo_t.subcode" + Set gtmtypes("gtmsiginfo_t",6,"off")=20 + Set gtmtypes("gtmsiginfo_t",6,"len")=4 + Set gtmtypes("gtmsiginfo_t",6,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","subcode")=6 + Set gtmtypes("gtmsiginfo_t",7,"name")="gtmsiginfo_t.infotype" + Set gtmtypes("gtmsiginfo_t",7,"off")=24 + Set gtmtypes("gtmsiginfo_t",7,"len")=4 + Set gtmtypes("gtmsiginfo_t",7,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","infotype")=7 + Set gtmtypes("gtmsiginfo_t",8,"name")="gtmsiginfo_t.signal" + Set gtmtypes("gtmsiginfo_t",8,"off")=28 + Set gtmtypes("gtmsiginfo_t",8,"len")=4 + Set gtmtypes("gtmsiginfo_t",8,"type")="int" + Set gtmtypfldindx("gtmsiginfo_t","signal")=8 + ; + Set gtmtypes("gtmsource_local_struct")="struct" + Set gtmtypes("gtmsource_local_struct",0)=54 + Set gtmtypes("gtmsource_local_struct","len")=1544 + Set gtmtypes("gtmsource_local_struct",1,"name")="gtmsource_local_struct.secondary_instname" + Set gtmtypes("gtmsource_local_struct",1,"off")=0 + Set gtmtypes("gtmsource_local_struct",1,"len")=16 + Set gtmtypes("gtmsource_local_struct",1,"type")="unsigned-char" + Set gtmtypfldindx("gtmsource_local_struct","secondary_instname")=1 + Set gtmtypes("gtmsource_local_struct",2,"name")="gtmsource_local_struct.gtmsource_pid" + Set gtmtypes("gtmsource_local_struct",2,"off")=16 + Set gtmtypes("gtmsource_local_struct",2,"len")=4 + Set gtmtypes("gtmsource_local_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_pid")=2 + Set gtmtypes("gtmsource_local_struct",3,"name")="gtmsource_local_struct.mode" + Set gtmtypes("gtmsource_local_struct",3,"off")=20 + Set gtmtypes("gtmsource_local_struct",3,"len")=4 + Set gtmtypes("gtmsource_local_struct",3,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","mode")=3 + Set gtmtypes("gtmsource_local_struct",4,"name")="gtmsource_local_struct.gtmsource_state" + Set gtmtypes("gtmsource_local_struct",4,"off")=24 + Set gtmtypes("gtmsource_local_struct",4,"len")=4 + Set gtmtypes("gtmsource_local_struct",4,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_state")=4 + Set gtmtypes("gtmsource_local_struct",5,"name")="gtmsource_local_struct.gtmsrc_lcl_array_index" + Set gtmtypes("gtmsource_local_struct",5,"off")=28 + Set gtmtypes("gtmsource_local_struct",5,"len")=4 + Set gtmtypes("gtmsource_local_struct",5,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsrc_lcl_array_index")=5 + Set gtmtypes("gtmsource_local_struct",6,"name")="gtmsource_local_struct.repl_zlib_cmp_level" + Set gtmtypes("gtmsource_local_struct",6,"off")=32 + Set gtmtypes("gtmsource_local_struct",6,"len")=4 + Set gtmtypes("gtmsource_local_struct",6,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","repl_zlib_cmp_level")=6 + Set gtmtypes("gtmsource_local_struct",7,"name")="gtmsource_local_struct.filler1_align_8" + Set gtmtypes("gtmsource_local_struct",7,"off")=36 + Set gtmtypes("gtmsource_local_struct",7,"len")=4 + Set gtmtypes("gtmsource_local_struct",7,"type")="unsigned-char" + Set gtmtypfldindx("gtmsource_local_struct","filler1_align_8")=7 + Set gtmtypes("gtmsource_local_struct",8,"name")="gtmsource_local_struct.read_state" + Set gtmtypes("gtmsource_local_struct",8,"off")=40 + Set gtmtypes("gtmsource_local_struct",8,"len")=4 + Set gtmtypes("gtmsource_local_struct",8,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","read_state")=8 + Set gtmtypes("gtmsource_local_struct",9,"name")="gtmsource_local_struct.read" + Set gtmtypes("gtmsource_local_struct",9,"off")=44 + Set gtmtypes("gtmsource_local_struct",9,"len")=4 + Set gtmtypes("gtmsource_local_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","read")=9 + Set gtmtypes("gtmsource_local_struct",10,"name")="gtmsource_local_struct.remote_side" + Set gtmtypes("gtmsource_local_struct",10,"off")=48 + Set gtmtypes("gtmsource_local_struct",10,"len")=48 + Set gtmtypes("gtmsource_local_struct",10,"type")="repl_conn_info_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side")=10 + Set gtmtypes("gtmsource_local_struct",11,"name")="gtmsource_local_struct.remote_side.proto_ver" + Set gtmtypes("gtmsource_local_struct",11,"off")=48 + Set gtmtypes("gtmsource_local_struct",11,"len")=4 + Set gtmtypes("gtmsource_local_struct",11,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.proto_ver")=11 + Set gtmtypes("gtmsource_local_struct",12,"name")="gtmsource_local_struct.remote_side.jnl_ver" + Set gtmtypes("gtmsource_local_struct",12,"off")=52 + Set gtmtypes("gtmsource_local_struct",12,"len")=4 + Set gtmtypes("gtmsource_local_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.jnl_ver")=12 + Set gtmtypes("gtmsource_local_struct",13,"name")="gtmsource_local_struct.remote_side.is_std_null_coll" + Set gtmtypes("gtmsource_local_struct",13,"off")=56 + Set gtmtypes("gtmsource_local_struct",13,"len")=4 + Set gtmtypes("gtmsource_local_struct",13,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.is_std_null_coll")=13 + Set gtmtypes("gtmsource_local_struct",14,"name")="gtmsource_local_struct.remote_side.trigger_supported" + Set gtmtypes("gtmsource_local_struct",14,"off")=60 + Set gtmtypes("gtmsource_local_struct",14,"len")=4 + Set gtmtypes("gtmsource_local_struct",14,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.trigger_supported")=14 + Set gtmtypes("gtmsource_local_struct",15,"name")="gtmsource_local_struct.remote_side.cross_endian" + Set gtmtypes("gtmsource_local_struct",15,"off")=64 + Set gtmtypes("gtmsource_local_struct",15,"len")=4 + Set gtmtypes("gtmsource_local_struct",15,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.cross_endian")=15 + Set gtmtypes("gtmsource_local_struct",16,"name")="gtmsource_local_struct.remote_side.endianness_known" + Set gtmtypes("gtmsource_local_struct",16,"off")=68 + Set gtmtypes("gtmsource_local_struct",16,"len")=4 + Set gtmtypes("gtmsource_local_struct",16,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.endianness_known")=16 + Set gtmtypes("gtmsource_local_struct",17,"name")="gtmsource_local_struct.remote_side.null_subs_xform" + Set gtmtypes("gtmsource_local_struct",17,"off")=72 + Set gtmtypes("gtmsource_local_struct",17,"len")=4 + Set gtmtypes("gtmsource_local_struct",17,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.null_subs_xform")=17 + Set gtmtypes("gtmsource_local_struct",18,"name")="gtmsource_local_struct.remote_side.is_supplementary" + Set gtmtypes("gtmsource_local_struct",18,"off")=76 + Set gtmtypes("gtmsource_local_struct",18,"len")=4 + Set gtmtypes("gtmsource_local_struct",18,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.is_supplementary")=18 + Set gtmtypes("gtmsource_local_struct",19,"name")="gtmsource_local_struct.remote_side.tls_requested" + Set gtmtypes("gtmsource_local_struct",19,"off")=80 + Set gtmtypes("gtmsource_local_struct",19,"len")=4 + Set gtmtypes("gtmsource_local_struct",19,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.tls_requested")=19 + Set gtmtypes("gtmsource_local_struct",20,"name")="gtmsource_local_struct.remote_side.filler_16" + Set gtmtypes("gtmsource_local_struct",20,"off")=84 + Set gtmtypes("gtmsource_local_struct",20,"len")=12 + Set gtmtypes("gtmsource_local_struct",20,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","remote_side.filler_16")=20 + Set gtmtypes("gtmsource_local_struct",21,"name")="gtmsource_local_struct.read_addr" + Set gtmtypes("gtmsource_local_struct",21,"off")=96 + Set gtmtypes("gtmsource_local_struct",21,"len")=8 + Set gtmtypes("gtmsource_local_struct",21,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","read_addr")=21 + Set gtmtypes("gtmsource_local_struct",22,"name")="gtmsource_local_struct.read_jnl_seqno" + Set gtmtypes("gtmsource_local_struct",22,"off")=104 + Set gtmtypes("gtmsource_local_struct",22,"len")=8 + Set gtmtypes("gtmsource_local_struct",22,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","read_jnl_seqno")=22 + Set gtmtypes("gtmsource_local_struct",23,"name")="gtmsource_local_struct.connect_jnl_seqno" + Set gtmtypes("gtmsource_local_struct",23,"off")=112 + Set gtmtypes("gtmsource_local_struct",23,"len")=8 + Set gtmtypes("gtmsource_local_struct",23,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","connect_jnl_seqno")=23 + Set gtmtypes("gtmsource_local_struct",24,"name")="gtmsource_local_struct.num_histinfo" + Set gtmtypes("gtmsource_local_struct",24,"off")=120 + Set gtmtypes("gtmsource_local_struct",24,"len")=4 + Set gtmtypes("gtmsource_local_struct",24,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","num_histinfo")=24 + Set gtmtypes("gtmsource_local_struct",25,"name")="gtmsource_local_struct.next_histinfo_num" + Set gtmtypes("gtmsource_local_struct",25,"off")=124 + Set gtmtypes("gtmsource_local_struct",25,"len")=4 + Set gtmtypes("gtmsource_local_struct",25,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","next_histinfo_num")=25 + Set gtmtypes("gtmsource_local_struct",26,"name")="gtmsource_local_struct.next_histinfo_seqno" + Set gtmtypes("gtmsource_local_struct",26,"off")=128 + Set gtmtypes("gtmsource_local_struct",26,"len")=8 + Set gtmtypes("gtmsource_local_struct",26,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","next_histinfo_seqno")=26 + Set gtmtypes("gtmsource_local_struct",27,"name")="gtmsource_local_struct.last_flush_resync_seqno" + Set gtmtypes("gtmsource_local_struct",27,"off")=136 + Set gtmtypes("gtmsource_local_struct",27,"len")=8 + Set gtmtypes("gtmsource_local_struct",27,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","last_flush_resync_seqno")=27 + Set gtmtypes("gtmsource_local_struct",28,"name")="gtmsource_local_struct.send_new_histrec" + Set gtmtypes("gtmsource_local_struct",28,"off")=144 + Set gtmtypes("gtmsource_local_struct",28,"len")=4 + Set gtmtypes("gtmsource_local_struct",28,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","send_new_histrec")=28 + Set gtmtypes("gtmsource_local_struct",29,"name")="gtmsource_local_struct.send_losttn_complete" + Set gtmtypes("gtmsource_local_struct",29,"off")=148 + Set gtmtypes("gtmsource_local_struct",29,"len")=4 + Set gtmtypes("gtmsource_local_struct",29,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","send_losttn_complete")=29 + Set gtmtypes("gtmsource_local_struct",30,"name")="gtmsource_local_struct.secondary_host" + Set gtmtypes("gtmsource_local_struct",30,"off")=152 + Set gtmtypes("gtmsource_local_struct",30,"len")=256 + Set gtmtypes("gtmsource_local_struct",30,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","secondary_host")=30 + Set gtmtypes("gtmsource_local_struct",31,"name")="gtmsource_local_struct.secondary_inet_addr" + Set gtmtypes("gtmsource_local_struct",31,"off")=408 + Set gtmtypes("gtmsource_local_struct",31,"len")=28 + Set gtmtypes("gtmsource_local_struct",31,"type")="union" + Set gtmtypfldindx("gtmsource_local_struct","secondary_inet_addr")=31 + Set gtmtypes("gtmsource_local_struct",32,"name")="gtmsource_local_struct.secondary_af" + Set gtmtypes("gtmsource_local_struct",32,"off")=436 + Set gtmtypes("gtmsource_local_struct",32,"len")=4 + Set gtmtypes("gtmsource_local_struct",32,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_af")=32 + Set gtmtypes("gtmsource_local_struct",33,"name")="gtmsource_local_struct.secondary_addrlen" + Set gtmtypes("gtmsource_local_struct",33,"off")=440 + Set gtmtypes("gtmsource_local_struct",33,"len")=4 + Set gtmtypes("gtmsource_local_struct",33,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_addrlen")=33 + Set gtmtypes("gtmsource_local_struct",34,"name")="gtmsource_local_struct.secondary_port" + Set gtmtypes("gtmsource_local_struct",34,"off")=444 + Set gtmtypes("gtmsource_local_struct",34,"len")=4 + Set gtmtypes("gtmsource_local_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","secondary_port")=34 + Set gtmtypes("gtmsource_local_struct",35,"name")="gtmsource_local_struct.child_server_running" + Set gtmtypes("gtmsource_local_struct",35,"off")=448 + Set gtmtypes("gtmsource_local_struct",35,"len")=4 + Set gtmtypes("gtmsource_local_struct",35,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","child_server_running")=35 + Set gtmtypes("gtmsource_local_struct",36,"name")="gtmsource_local_struct.log_interval" + Set gtmtypes("gtmsource_local_struct",36,"off")=452 + Set gtmtypes("gtmsource_local_struct",36,"len")=4 + Set gtmtypes("gtmsource_local_struct",36,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","log_interval")=36 + Set gtmtypes("gtmsource_local_struct",37,"name")="gtmsource_local_struct.log_file" + Set gtmtypes("gtmsource_local_struct",37,"off")=456 + Set gtmtypes("gtmsource_local_struct",37,"len")=256 + Set gtmtypes("gtmsource_local_struct",37,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","log_file")=37 + Set gtmtypes("gtmsource_local_struct",38,"name")="gtmsource_local_struct.changelog" + Set gtmtypes("gtmsource_local_struct",38,"off")=712 + Set gtmtypes("gtmsource_local_struct",38,"len")=4 + Set gtmtypes("gtmsource_local_struct",38,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","changelog")=38 + Set gtmtypes("gtmsource_local_struct",39,"name")="gtmsource_local_struct.statslog" + Set gtmtypes("gtmsource_local_struct",39,"off")=716 + Set gtmtypes("gtmsource_local_struct",39,"len")=4 + Set gtmtypes("gtmsource_local_struct",39,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","statslog")=39 + Set gtmtypes("gtmsource_local_struct",40,"name")="gtmsource_local_struct.statslog_file" + Set gtmtypes("gtmsource_local_struct",40,"off")=720 + Set gtmtypes("gtmsource_local_struct",40,"len")=256 + Set gtmtypes("gtmsource_local_struct",40,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","statslog_file")=40 + Set gtmtypes("gtmsource_local_struct",41,"name")="gtmsource_local_struct.connect_parms" + Set gtmtypes("gtmsource_local_struct",41,"off")=976 + Set gtmtypes("gtmsource_local_struct",41,"len")=24 + Set gtmtypes("gtmsource_local_struct",41,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","connect_parms")=41 + Set gtmtypes("gtmsource_local_struct",41,"dim")=6 + Set gtmtypes("gtmsource_local_struct",42,"name")="gtmsource_local_struct.shutdown" + Set gtmtypes("gtmsource_local_struct",42,"off")=1000 + Set gtmtypes("gtmsource_local_struct",42,"len")=4 + Set gtmtypes("gtmsource_local_struct",42,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","shutdown")=42 + Set gtmtypes("gtmsource_local_struct",43,"name")="gtmsource_local_struct.shutdown_time" + Set gtmtypes("gtmsource_local_struct",43,"off")=1004 + Set gtmtypes("gtmsource_local_struct",43,"len")=4 + Set gtmtypes("gtmsource_local_struct",43,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","shutdown_time")=43 + Set gtmtypes("gtmsource_local_struct",44,"name")="gtmsource_local_struct.filter_cmd" + Set gtmtypes("gtmsource_local_struct",44,"off")=1008 + Set gtmtypes("gtmsource_local_struct",44,"len")=512 + Set gtmtypes("gtmsource_local_struct",44,"type")="char" + Set gtmtypfldindx("gtmsource_local_struct","filter_cmd")=44 + Set gtmtypes("gtmsource_local_struct",45,"name")="gtmsource_local_struct.gtmsource_srv_latch" + Set gtmtypes("gtmsource_local_struct",45,"off")=1520 + Set gtmtypes("gtmsource_local_struct",45,"len")=8 + Set gtmtypes("gtmsource_local_struct",45,"type")="global_latch_t" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch")=45 + Set gtmtypes("gtmsource_local_struct",46,"name")="gtmsource_local_struct.gtmsource_srv_latch.u" + Set gtmtypes("gtmsource_local_struct",46,"off")=1520 + Set gtmtypes("gtmsource_local_struct",46,"len")=8 + Set gtmtypes("gtmsource_local_struct",46,"type")="union" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u")=46 + Set gtmtypes("gtmsource_local_struct",47,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.pid_imgcnt" + Set gtmtypes("gtmsource_local_struct",47,"off")=1520 + Set gtmtypes("gtmsource_local_struct",47,"len")=8 + Set gtmtypes("gtmsource_local_struct",47,"type")="uint64_t" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.pid_imgcnt")=47 + Set gtmtypes("gtmsource_local_struct",48,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts" + Set gtmtypes("gtmsource_local_struct",48,"off")=1520 + Set gtmtypes("gtmsource_local_struct",48,"len")=8 + Set gtmtypes("gtmsource_local_struct",48,"type")="struct" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts")=48 + Set gtmtypes("gtmsource_local_struct",49,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts.latch_pid" + Set gtmtypes("gtmsource_local_struct",49,"off")=1520 + Set gtmtypes("gtmsource_local_struct",49,"len")=4 + Set gtmtypes("gtmsource_local_struct",49,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts.latch_pid")=49 + Set gtmtypes("gtmsource_local_struct",50,"name")="gtmsource_local_struct.gtmsource_srv_latch.u.parts.latch_word" + Set gtmtypes("gtmsource_local_struct",50,"off")=1524 + Set gtmtypes("gtmsource_local_struct",50,"len")=4 + Set gtmtypes("gtmsource_local_struct",50,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","gtmsource_srv_latch.u.parts.latch_word")=50 + Set gtmtypes("gtmsource_local_struct",51,"name")="gtmsource_local_struct.jnlfileonly" + Set gtmtypes("gtmsource_local_struct",51,"off")=1528 + Set gtmtypes("gtmsource_local_struct",51,"len")=4 + Set gtmtypes("gtmsource_local_struct",51,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_local_struct","jnlfileonly")=51 + Set gtmtypes("gtmsource_local_struct",52,"name")="gtmsource_local_struct.next_renegotiate_time" + Set gtmtypes("gtmsource_local_struct",52,"off")=1532 + Set gtmtypes("gtmsource_local_struct",52,"len")=4 + Set gtmtypes("gtmsource_local_struct",52,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_local_struct","next_renegotiate_time")=52 + Set gtmtypes("gtmsource_local_struct",53,"name")="gtmsource_local_struct.num_renegotiations" + Set gtmtypes("gtmsource_local_struct",53,"off")=1536 + Set gtmtypes("gtmsource_local_struct",53,"len")=4 + Set gtmtypes("gtmsource_local_struct",53,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","num_renegotiations")=53 + Set gtmtypes("gtmsource_local_struct",54,"name")="gtmsource_local_struct.padding" + Set gtmtypes("gtmsource_local_struct",54,"off")=1540 + Set gtmtypes("gtmsource_local_struct",54,"len")=4 + Set gtmtypes("gtmsource_local_struct",54,"type")="int" + Set gtmtypfldindx("gtmsource_local_struct","padding")=54 + ; + Set gtmtypes("gtmsource_options_t")="struct" + Set gtmtypes("gtmsource_options_t",0)=34 + Set gtmtypes("gtmsource_options_t","len")=2228 + Set gtmtypes("gtmsource_options_t",1,"name")="gtmsource_options_t.start" + Set gtmtypes("gtmsource_options_t",1,"off")=0 + Set gtmtypes("gtmsource_options_t",1,"len")=4 + Set gtmtypes("gtmsource_options_t",1,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","start")=1 + Set gtmtypes("gtmsource_options_t",2,"name")="gtmsource_options_t.shut_down" + Set gtmtypes("gtmsource_options_t",2,"off")=4 + Set gtmtypes("gtmsource_options_t",2,"len")=4 + Set gtmtypes("gtmsource_options_t",2,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","shut_down")=2 + Set gtmtypes("gtmsource_options_t",3,"name")="gtmsource_options_t.activate" + Set gtmtypes("gtmsource_options_t",3,"off")=8 + Set gtmtypes("gtmsource_options_t",3,"len")=4 + Set gtmtypes("gtmsource_options_t",3,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","activate")=3 + Set gtmtypes("gtmsource_options_t",4,"name")="gtmsource_options_t.changelog" + Set gtmtypes("gtmsource_options_t",4,"off")=12 + Set gtmtypes("gtmsource_options_t",4,"len")=4 + Set gtmtypes("gtmsource_options_t",4,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","changelog")=4 + Set gtmtypes("gtmsource_options_t",5,"name")="gtmsource_options_t.checkhealth" + Set gtmtypes("gtmsource_options_t",5,"off")=16 + Set gtmtypes("gtmsource_options_t",5,"len")=4 + Set gtmtypes("gtmsource_options_t",5,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","checkhealth")=5 + Set gtmtypes("gtmsource_options_t",6,"name")="gtmsource_options_t.deactivate" + Set gtmtypes("gtmsource_options_t",6,"off")=20 + Set gtmtypes("gtmsource_options_t",6,"len")=4 + Set gtmtypes("gtmsource_options_t",6,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","deactivate")=6 + Set gtmtypes("gtmsource_options_t",7,"name")="gtmsource_options_t.jnlpool" + Set gtmtypes("gtmsource_options_t",7,"off")=24 + Set gtmtypes("gtmsource_options_t",7,"len")=4 + Set gtmtypes("gtmsource_options_t",7,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","jnlpool")=7 + Set gtmtypes("gtmsource_options_t",8,"name")="gtmsource_options_t.showbacklog" + Set gtmtypes("gtmsource_options_t",8,"off")=28 + Set gtmtypes("gtmsource_options_t",8,"len")=4 + Set gtmtypes("gtmsource_options_t",8,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","showbacklog")=8 + Set gtmtypes("gtmsource_options_t",9,"name")="gtmsource_options_t.statslog" + Set gtmtypes("gtmsource_options_t",9,"off")=32 + Set gtmtypes("gtmsource_options_t",9,"len")=4 + Set gtmtypes("gtmsource_options_t",9,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","statslog")=9 + Set gtmtypes("gtmsource_options_t",10,"name")="gtmsource_options_t.stopsourcefilter" + Set gtmtypes("gtmsource_options_t",10,"off")=36 + Set gtmtypes("gtmsource_options_t",10,"len")=4 + Set gtmtypes("gtmsource_options_t",10,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","stopsourcefilter")=10 + Set gtmtypes("gtmsource_options_t",11,"name")="gtmsource_options_t.rootprimary" + Set gtmtypes("gtmsource_options_t",11,"off")=40 + Set gtmtypes("gtmsource_options_t",11,"len")=4 + Set gtmtypes("gtmsource_options_t",11,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","rootprimary")=11 + Set gtmtypes("gtmsource_options_t",12,"name")="gtmsource_options_t.instsecondary" + Set gtmtypes("gtmsource_options_t",12,"off")=44 + Set gtmtypes("gtmsource_options_t",12,"len")=4 + Set gtmtypes("gtmsource_options_t",12,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","instsecondary")=12 + Set gtmtypes("gtmsource_options_t",13,"name")="gtmsource_options_t.needrestart" + Set gtmtypes("gtmsource_options_t",13,"off")=48 + Set gtmtypes("gtmsource_options_t",13,"len")=4 + Set gtmtypes("gtmsource_options_t",13,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","needrestart")=13 + Set gtmtypes("gtmsource_options_t",14,"name")="gtmsource_options_t.losttncomplete" + Set gtmtypes("gtmsource_options_t",14,"off")=52 + Set gtmtypes("gtmsource_options_t",14,"len")=4 + Set gtmtypes("gtmsource_options_t",14,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","losttncomplete")=14 + Set gtmtypes("gtmsource_options_t",15,"name")="gtmsource_options_t.showfreeze" + Set gtmtypes("gtmsource_options_t",15,"off")=56 + Set gtmtypes("gtmsource_options_t",15,"len")=4 + Set gtmtypes("gtmsource_options_t",15,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","showfreeze")=15 + Set gtmtypes("gtmsource_options_t",16,"name")="gtmsource_options_t.setfreeze" + Set gtmtypes("gtmsource_options_t",16,"off")=60 + Set gtmtypes("gtmsource_options_t",16,"len")=4 + Set gtmtypes("gtmsource_options_t",16,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","setfreeze")=16 + Set gtmtypes("gtmsource_options_t",17,"name")="gtmsource_options_t.freezeval" + Set gtmtypes("gtmsource_options_t",17,"off")=64 + Set gtmtypes("gtmsource_options_t",17,"len")=4 + Set gtmtypes("gtmsource_options_t",17,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","freezeval")=17 + Set gtmtypes("gtmsource_options_t",18,"name")="gtmsource_options_t.setcomment" + Set gtmtypes("gtmsource_options_t",18,"off")=68 + Set gtmtypes("gtmsource_options_t",18,"len")=4 + Set gtmtypes("gtmsource_options_t",18,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","setcomment")=18 + Set gtmtypes("gtmsource_options_t",19,"name")="gtmsource_options_t.jnlfileonly" + Set gtmtypes("gtmsource_options_t",19,"off")=72 + Set gtmtypes("gtmsource_options_t",19,"len")=4 + Set gtmtypes("gtmsource_options_t",19,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","jnlfileonly")=19 + Set gtmtypes("gtmsource_options_t",20,"name")="gtmsource_options_t.zerobacklog" + Set gtmtypes("gtmsource_options_t",20,"off")=76 + Set gtmtypes("gtmsource_options_t",20,"len")=4 + Set gtmtypes("gtmsource_options_t",20,"type")="boolean_t" + Set gtmtypfldindx("gtmsource_options_t","zerobacklog")=20 + Set gtmtypes("gtmsource_options_t",21,"name")="gtmsource_options_t.cmplvl" + Set gtmtypes("gtmsource_options_t",21,"off")=80 + Set gtmtypes("gtmsource_options_t",21,"len")=4 + Set gtmtypes("gtmsource_options_t",21,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","cmplvl")=21 + Set gtmtypes("gtmsource_options_t",22,"name")="gtmsource_options_t.shutdown_time" + Set gtmtypes("gtmsource_options_t",22,"off")=84 + Set gtmtypes("gtmsource_options_t",22,"len")=4 + Set gtmtypes("gtmsource_options_t",22,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","shutdown_time")=22 + Set gtmtypes("gtmsource_options_t",23,"name")="gtmsource_options_t.buffsize" + Set gtmtypes("gtmsource_options_t",23,"off")=88 + Set gtmtypes("gtmsource_options_t",23,"len")=4 + Set gtmtypes("gtmsource_options_t",23,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_options_t","buffsize")=23 + Set gtmtypes("gtmsource_options_t",24,"name")="gtmsource_options_t.mode" + Set gtmtypes("gtmsource_options_t",24,"off")=92 + Set gtmtypes("gtmsource_options_t",24,"len")=4 + Set gtmtypes("gtmsource_options_t",24,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","mode")=24 + Set gtmtypes("gtmsource_options_t",25,"name")="gtmsource_options_t.secondary_port" + Set gtmtypes("gtmsource_options_t",25,"off")=96 + Set gtmtypes("gtmsource_options_t",25,"len")=4 + Set gtmtypes("gtmsource_options_t",25,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","secondary_port")=25 + Set gtmtypes("gtmsource_options_t",26,"name")="gtmsource_options_t.src_log_interval" + Set gtmtypes("gtmsource_options_t",26,"off")=100 + Set gtmtypes("gtmsource_options_t",26,"len")=4 + Set gtmtypes("gtmsource_options_t",26,"type")="unsigned-int" + Set gtmtypfldindx("gtmsource_options_t","src_log_interval")=26 + Set gtmtypes("gtmsource_options_t",27,"name")="gtmsource_options_t.connect_parms" + Set gtmtypes("gtmsource_options_t",27,"off")=104 + Set gtmtypes("gtmsource_options_t",27,"len")=24 + Set gtmtypes("gtmsource_options_t",27,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","connect_parms")=27 + Set gtmtypes("gtmsource_options_t",27,"dim")=6 + Set gtmtypes("gtmsource_options_t",28,"name")="gtmsource_options_t.filter_cmd" + Set gtmtypes("gtmsource_options_t",28,"off")=128 + Set gtmtypes("gtmsource_options_t",28,"len")=512 + Set gtmtypes("gtmsource_options_t",28,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","filter_cmd")=28 + Set gtmtypes("gtmsource_options_t",29,"name")="gtmsource_options_t.secondary_host" + Set gtmtypes("gtmsource_options_t",29,"off")=640 + Set gtmtypes("gtmsource_options_t",29,"len")=256 + Set gtmtypes("gtmsource_options_t",29,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","secondary_host")=29 + Set gtmtypes("gtmsource_options_t",30,"name")="gtmsource_options_t.log_file" + Set gtmtypes("gtmsource_options_t",30,"off")=896 + Set gtmtypes("gtmsource_options_t",30,"len")=256 + Set gtmtypes("gtmsource_options_t",30,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","log_file")=30 + Set gtmtypes("gtmsource_options_t",31,"name")="gtmsource_options_t.secondary_instname" + Set gtmtypes("gtmsource_options_t",31,"off")=1152 + Set gtmtypes("gtmsource_options_t",31,"len")=16 + Set gtmtypes("gtmsource_options_t",31,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","secondary_instname")=31 + Set gtmtypes("gtmsource_options_t",32,"name")="gtmsource_options_t.freeze_comment" + Set gtmtypes("gtmsource_options_t",32,"off")=1168 + Set gtmtypes("gtmsource_options_t",32,"len")=1024 + Set gtmtypes("gtmsource_options_t",32,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","freeze_comment")=32 + Set gtmtypes("gtmsource_options_t",33,"name")="gtmsource_options_t.tlsid" + Set gtmtypes("gtmsource_options_t",33,"off")=2192 + Set gtmtypes("gtmsource_options_t",33,"len")=32 + Set gtmtypes("gtmsource_options_t",33,"type")="char" + Set gtmtypfldindx("gtmsource_options_t","tlsid")=33 + Set gtmtypes("gtmsource_options_t",34,"name")="gtmsource_options_t.renegotiate_interval" + Set gtmtypes("gtmsource_options_t",34,"off")=2224 + Set gtmtypes("gtmsource_options_t",34,"len")=4 + Set gtmtypes("gtmsource_options_t",34,"type")="int" + Set gtmtypfldindx("gtmsource_options_t","renegotiate_interval")=34 + ; + Set gtmtypes("gtmsrc_lcl")="struct" + Set gtmtypes("gtmsrc_lcl",0)=4 + Set gtmtypes("gtmsrc_lcl","len")=64 + Set gtmtypes("gtmsrc_lcl",1,"name")="gtmsrc_lcl.secondary_instname" + Set gtmtypes("gtmsrc_lcl",1,"off")=0 + Set gtmtypes("gtmsrc_lcl",1,"len")=16 + Set gtmtypes("gtmsrc_lcl",1,"type")="unsigned-char" + Set gtmtypfldindx("gtmsrc_lcl","secondary_instname")=1 + Set gtmtypes("gtmsrc_lcl",2,"name")="gtmsrc_lcl.resync_seqno" + Set gtmtypes("gtmsrc_lcl",2,"off")=16 + Set gtmtypes("gtmsrc_lcl",2,"len")=8 + Set gtmtypes("gtmsrc_lcl",2,"type")="uint64_t" + Set gtmtypfldindx("gtmsrc_lcl","resync_seqno")=2 + Set gtmtypes("gtmsrc_lcl",3,"name")="gtmsrc_lcl.connect_jnl_seqno" + Set gtmtypes("gtmsrc_lcl",3,"off")=24 + Set gtmtypes("gtmsrc_lcl",3,"len")=8 + Set gtmtypes("gtmsrc_lcl",3,"type")="uint64_t" + Set gtmtypfldindx("gtmsrc_lcl","connect_jnl_seqno")=3 + Set gtmtypes("gtmsrc_lcl",4,"name")="gtmsrc_lcl.filler_64" + Set gtmtypes("gtmsrc_lcl",4,"off")=32 + Set gtmtypes("gtmsrc_lcl",4,"len")=32 + Set gtmtypes("gtmsrc_lcl",4,"type")="unsigned-char" + Set gtmtypfldindx("gtmsrc_lcl","filler_64")=4 + ; + Set gtmtypes("gv_key")="struct" + Set gtmtypes("gv_key",0)=4 + Set gtmtypes("gv_key","len")=8 + Set gtmtypes("gv_key",1,"name")="gv_key.top" + Set gtmtypes("gv_key",1,"off")=0 + Set gtmtypes("gv_key",1,"len")=2 + Set gtmtypes("gv_key",1,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","top")=1 + Set gtmtypes("gv_key",2,"name")="gv_key.end" + Set gtmtypes("gv_key",2,"off")=2 + Set gtmtypes("gv_key",2,"len")=2 + Set gtmtypes("gv_key",2,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","end")=2 + Set gtmtypes("gv_key",3,"name")="gv_key.prev" + Set gtmtypes("gv_key",3,"off")=4 + Set gtmtypes("gv_key",3,"len")=2 + Set gtmtypes("gv_key",3,"type")="unsigned-short" + Set gtmtypfldindx("gv_key","prev")=3 + Set gtmtypes("gv_key",4,"name")="gv_key.base" + Set gtmtypes("gv_key",4,"off")=6 + Set gtmtypes("gv_key",4,"len")=1 + Set gtmtypes("gv_key",4,"type")="unsigned-char" + Set gtmtypfldindx("gv_key","base")=4 + ; + Set gtmtypes("gv_namehead")="struct" + Set gtmtypes("gv_namehead",0)=41 + Set gtmtypes("gv_namehead","len")=568 + Set gtmtypes("gv_namehead",1,"name")="gv_namehead.first_rec" + Set gtmtypes("gv_namehead",1,"off")=0 + Set gtmtypes("gv_namehead",1,"len")=4 + Set gtmtypes("gv_namehead",1,"type")="addr" + Set gtmtypfldindx("gv_namehead","first_rec")=1 + Set gtmtypes("gv_namehead",2,"name")="gv_namehead.last_rec" + Set gtmtypes("gv_namehead",2,"off")=4 + Set gtmtypes("gv_namehead",2,"len")=4 + Set gtmtypes("gv_namehead",2,"type")="addr" + Set gtmtypfldindx("gv_namehead","last_rec")=2 + Set gtmtypes("gv_namehead",3,"name")="gv_namehead.next_gvnh" + Set gtmtypes("gv_namehead",3,"off")=8 + Set gtmtypes("gv_namehead",3,"len")=4 + Set gtmtypes("gv_namehead",3,"type")="addr" + Set gtmtypfldindx("gv_namehead","next_gvnh")=3 + Set gtmtypes("gv_namehead",4,"name")="gv_namehead.prev_gvnh" + Set gtmtypes("gv_namehead",4,"off")=12 + Set gtmtypes("gv_namehead",4,"len")=4 + Set gtmtypes("gv_namehead",4,"type")="addr" + Set gtmtypfldindx("gv_namehead","prev_gvnh")=4 + Set gtmtypes("gv_namehead",5,"name")="gv_namehead.next_tp_gvnh" + Set gtmtypes("gv_namehead",5,"off")=16 + Set gtmtypes("gv_namehead",5,"len")=4 + Set gtmtypes("gv_namehead",5,"type")="addr" + Set gtmtypfldindx("gv_namehead","next_tp_gvnh")=5 + Set gtmtypes("gv_namehead",6,"name")="gv_namehead.gd_csa" + Set gtmtypes("gv_namehead",6,"off")=20 + Set gtmtypes("gv_namehead",6,"len")=4 + Set gtmtypes("gv_namehead",6,"type")="addr" + Set gtmtypfldindx("gv_namehead","gd_csa")=6 + Set gtmtypes("gv_namehead",7,"name")="gv_namehead.alt_hist" + Set gtmtypes("gv_namehead",7,"off")=24 + Set gtmtypes("gv_namehead",7,"len")=4 + Set gtmtypes("gv_namehead",7,"type")="addr" + Set gtmtypfldindx("gv_namehead","alt_hist")=7 + Set gtmtypes("gv_namehead",8,"name")="gv_namehead.collseq" + Set gtmtypes("gv_namehead",8,"off")=28 + Set gtmtypes("gv_namehead",8,"len")=4 + Set gtmtypes("gv_namehead",8,"type")="addr" + Set gtmtypfldindx("gv_namehead","collseq")=8 + Set gtmtypes("gv_namehead",9,"name")="gv_namehead.read_local_tn" + Set gtmtypes("gv_namehead",9,"off")=32 + Set gtmtypes("gv_namehead",9,"len")=8 + Set gtmtypes("gv_namehead",9,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","read_local_tn")=9 + Set gtmtypes("gv_namehead",10,"name")="gv_namehead.trig_local_tn" + Set gtmtypes("gv_namehead",10,"off")=40 + Set gtmtypes("gv_namehead",10,"len")=8 + Set gtmtypes("gv_namehead",10,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","trig_local_tn")=10 + Set gtmtypes("gv_namehead",11,"name")="gv_namehead.trig_read_tn" + Set gtmtypes("gv_namehead",11,"off")=48 + Set gtmtypes("gv_namehead",11,"len")=8 + Set gtmtypes("gv_namehead",11,"type")="uint64_t" + Set gtmtypfldindx("gv_namehead","trig_read_tn")=11 + Set gtmtypes("gv_namehead",12,"name")="gv_namehead.prev_key" + Set gtmtypes("gv_namehead",12,"off")=56 + Set gtmtypes("gv_namehead",12,"len")=4 + Set gtmtypes("gv_namehead",12,"type")="addr" + Set gtmtypfldindx("gv_namehead","prev_key")=12 + Set gtmtypes("gv_namehead",13,"name")="gv_namehead.noisolation" + Set gtmtypes("gv_namehead",13,"off")=60 + Set gtmtypes("gv_namehead",13,"len")=4 + Set gtmtypes("gv_namehead",13,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","noisolation")=13 + Set gtmtypes("gv_namehead",14,"name")="gv_namehead.root" + Set gtmtypes("gv_namehead",14,"off")=64 + Set gtmtypes("gv_namehead",14,"len")=4 + Set gtmtypes("gv_namehead",14,"type")="int" + Set gtmtypfldindx("gv_namehead","root")=14 + Set gtmtypes("gv_namehead",15,"name")="gv_namehead.gvname" + Set gtmtypes("gv_namehead",15,"off")=68 + Set gtmtypes("gv_namehead",15,"len")=20 + Set gtmtypes("gv_namehead",15,"type")="mname_entry" + Set gtmtypfldindx("gv_namehead","gvname")=15 + Set gtmtypes("gv_namehead",16,"name")="gv_namehead.gvname.var_name" + Set gtmtypes("gv_namehead",16,"off")=68 + Set gtmtypes("gv_namehead",16,"len")=12 + Set gtmtypes("gv_namehead",16,"type")="mstr" + Set gtmtypfldindx("gv_namehead","gvname.var_name")=16 + Set gtmtypes("gv_namehead",17,"name")="gv_namehead.gvname.hash_code" + Set gtmtypes("gv_namehead",17,"off")=80 + Set gtmtypes("gv_namehead",17,"len")=4 + Set gtmtypes("gv_namehead",17,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","gvname.hash_code")=17 + Set gtmtypes("gv_namehead",18,"name")="gv_namehead.gvname.marked" + Set gtmtypes("gv_namehead",18,"off")=84 + Set gtmtypes("gv_namehead",18,"len")=4 + Set gtmtypes("gv_namehead",18,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","gvname.marked")=18 + Set gtmtypes("gv_namehead",19,"name")="gv_namehead.hist" + Set gtmtypes("gv_namehead",19,"off")=88 + Set gtmtypes("gv_namehead",19,"len")=392 + Set gtmtypes("gv_namehead",19,"type")="srch_hist" + Set gtmtypfldindx("gv_namehead","hist")=19 + Set gtmtypes("gv_namehead",20,"name")="gv_namehead.hist.depth" + Set gtmtypes("gv_namehead",20,"off")=88 + Set gtmtypes("gv_namehead",20,"len")=4 + Set gtmtypes("gv_namehead",20,"type")="int" + Set gtmtypfldindx("gv_namehead","hist.depth")=20 + Set gtmtypes("gv_namehead",21,"name")="gv_namehead.hist.filler" + Set gtmtypes("gv_namehead",21,"off")=92 + Set gtmtypes("gv_namehead",21,"len")=4 + Set gtmtypes("gv_namehead",21,"type")="int" + Set gtmtypfldindx("gv_namehead","hist.filler")=21 + Set gtmtypes("gv_namehead",22,"name")="gv_namehead.hist.h" + Set gtmtypes("gv_namehead",22,"off")=96 + Set gtmtypes("gv_namehead",22,"len")=384 + Set gtmtypes("gv_namehead",22,"type")="srch_blk_status" + Set gtmtypfldindx("gv_namehead","hist.h")=22 + Set gtmtypes("gv_namehead",22,"dim")=8 + Set gtmtypes("gv_namehead",23,"name")="gv_namehead.regcnt" + Set gtmtypes("gv_namehead",23,"off")=480 + Set gtmtypes("gv_namehead",23,"len")=4 + Set gtmtypes("gv_namehead",23,"type")="int" + Set gtmtypfldindx("gv_namehead","regcnt")=23 + Set gtmtypes("gv_namehead",24,"name")="gv_namehead.nct" + Set gtmtypes("gv_namehead",24,"off")=484 + Set gtmtypes("gv_namehead",24,"len")=4 + Set gtmtypes("gv_namehead",24,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","nct")=24 + Set gtmtypes("gv_namehead",25,"name")="gv_namehead.act" + Set gtmtypes("gv_namehead",25,"off")=488 + Set gtmtypes("gv_namehead",25,"len")=4 + Set gtmtypes("gv_namehead",25,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","act")=25 + Set gtmtypes("gv_namehead",26,"name")="gv_namehead.ver" + Set gtmtypes("gv_namehead",26,"off")=492 + Set gtmtypes("gv_namehead",26,"len")=4 + Set gtmtypes("gv_namehead",26,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","ver")=26 + Set gtmtypes("gv_namehead",27,"name")="gv_namehead.act_specified_in_gld" + Set gtmtypes("gv_namehead",27,"off")=496 + Set gtmtypes("gv_namehead",27,"len")=4 + Set gtmtypes("gv_namehead",27,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","act_specified_in_gld")=27 + Set gtmtypes("gv_namehead",28,"name")="gv_namehead.nct_must_be_zero" + Set gtmtypes("gv_namehead",28,"off")=500 + Set gtmtypes("gv_namehead",28,"len")=4 + Set gtmtypes("gv_namehead",28,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","nct_must_be_zero")=28 + Set gtmtypes("gv_namehead",29,"name")="gv_namehead.split_cleanup_needed" + Set gtmtypes("gv_namehead",29,"off")=504 + Set gtmtypes("gv_namehead",29,"len")=4 + Set gtmtypes("gv_namehead",29,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","split_cleanup_needed")=29 + Set gtmtypes("gv_namehead",30,"name")="gv_namehead.last_split_direction" + Set gtmtypes("gv_namehead",30,"off")=508 + Set gtmtypes("gv_namehead",30,"len")=6 + Set gtmtypes("gv_namehead",30,"type")="char" + Set gtmtypfldindx("gv_namehead","last_split_direction")=30 + Set gtmtypes("gv_namehead",31,"name")="gv_namehead.filler_8byte_align1" + Set gtmtypes("gv_namehead",31,"off")=514 + Set gtmtypes("gv_namehead",31,"len")=6 + Set gtmtypes("gv_namehead",31,"type")="char" + Set gtmtypfldindx("gv_namehead","filler_8byte_align1")=31 + Set gtmtypes("gv_namehead",32,"name")="gv_namehead.last_split_blk_num" + Set gtmtypes("gv_namehead",32,"off")=520 + Set gtmtypes("gv_namehead",32,"len")=24 + Set gtmtypes("gv_namehead",32,"type")="int" + Set gtmtypfldindx("gv_namehead","last_split_blk_num")=32 + Set gtmtypes("gv_namehead",32,"dim")=6 + Set gtmtypes("gv_namehead",33,"name")="gv_namehead.gvt_trigger" + Set gtmtypes("gv_namehead",33,"off")=544 + Set gtmtypes("gv_namehead",33,"len")=4 + Set gtmtypes("gv_namehead",33,"type")="addr" + Set gtmtypfldindx("gv_namehead","gvt_trigger")=33 + Set gtmtypes("gv_namehead",34,"name")="gv_namehead.db_trigger_cycle" + Set gtmtypes("gv_namehead",34,"off")=548 + Set gtmtypes("gv_namehead",34,"len")=4 + Set gtmtypes("gv_namehead",34,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","db_trigger_cycle")=34 + Set gtmtypes("gv_namehead",35,"name")="gv_namehead.db_dztrigger_cycle" + Set gtmtypes("gv_namehead",35,"off")=552 + Set gtmtypes("gv_namehead",35,"len")=4 + Set gtmtypes("gv_namehead",35,"type")="unsigned-int" + Set gtmtypfldindx("gv_namehead","db_dztrigger_cycle")=35 + Set gtmtypes("gv_namehead",36,"name")="gv_namehead.trig_mismatch_test_done" + Set gtmtypes("gv_namehead",36,"off")=556 + Set gtmtypes("gv_namehead",36,"len")=4 + Set gtmtypes("gv_namehead",36,"type")="boolean_t" + Set gtmtypfldindx("gv_namehead","trig_mismatch_test_done")=36 + Set gtmtypes("gv_namehead",37,"name")="gv_namehead.clue" + Set gtmtypes("gv_namehead",37,"off")=560 + Set gtmtypes("gv_namehead",37,"len")=8 + Set gtmtypes("gv_namehead",37,"type")="gv_key" + Set gtmtypfldindx("gv_namehead","clue")=37 + Set gtmtypes("gv_namehead",38,"name")="gv_namehead.clue.top" + Set gtmtypes("gv_namehead",38,"off")=560 + Set gtmtypes("gv_namehead",38,"len")=2 + Set gtmtypes("gv_namehead",38,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.top")=38 + Set gtmtypes("gv_namehead",39,"name")="gv_namehead.clue.end" + Set gtmtypes("gv_namehead",39,"off")=562 + Set gtmtypes("gv_namehead",39,"len")=2 + Set gtmtypes("gv_namehead",39,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.end")=39 + Set gtmtypes("gv_namehead",40,"name")="gv_namehead.clue.prev" + Set gtmtypes("gv_namehead",40,"off")=564 + Set gtmtypes("gv_namehead",40,"len")=2 + Set gtmtypes("gv_namehead",40,"type")="unsigned-short" + Set gtmtypfldindx("gv_namehead","clue.prev")=40 + Set gtmtypes("gv_namehead",41,"name")="gv_namehead.clue.base" + Set gtmtypes("gv_namehead",41,"off")=566 + Set gtmtypes("gv_namehead",41,"len")=1 + Set gtmtypes("gv_namehead",41,"type")="unsigned-char" + Set gtmtypfldindx("gv_namehead","clue.base")=41 + ; + Set gtmtypes("gv_trigger_t")="struct" + Set gtmtypes("gv_trigger_t",0)=34 + Set gtmtypes("gv_trigger_t","len")=144 + Set gtmtypes("gv_trigger_t",1,"name")="gv_trigger_t.next_set" + Set gtmtypes("gv_trigger_t",1,"off")=0 + Set gtmtypes("gv_trigger_t",1,"len")=4 + Set gtmtypes("gv_trigger_t",1,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_set")=1 + Set gtmtypes("gv_trigger_t",2,"name")="gv_trigger_t.next_kill" + Set gtmtypes("gv_trigger_t",2,"off")=4 + Set gtmtypes("gv_trigger_t",2,"len")=4 + Set gtmtypes("gv_trigger_t",2,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_kill")=2 + Set gtmtypes("gv_trigger_t",3,"name")="gv_trigger_t.next_ztrig" + Set gtmtypes("gv_trigger_t",3,"off")=8 + Set gtmtypes("gv_trigger_t",3,"len")=4 + Set gtmtypes("gv_trigger_t",3,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","next_ztrig")=3 + Set gtmtypes("gv_trigger_t",4,"name")="gv_trigger_t.cmdmask" + Set gtmtypes("gv_trigger_t",4,"off")=12 + Set gtmtypes("gv_trigger_t",4,"len")=4 + Set gtmtypes("gv_trigger_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","cmdmask")=4 + Set gtmtypes("gv_trigger_t",5,"name")="gv_trigger_t.numsubs" + Set gtmtypes("gv_trigger_t",5,"off")=16 + Set gtmtypes("gv_trigger_t",5,"len")=4 + Set gtmtypes("gv_trigger_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numsubs")=5 + Set gtmtypes("gv_trigger_t",6,"name")="gv_trigger_t.numlvsubs" + Set gtmtypes("gv_trigger_t",6,"off")=20 + Set gtmtypes("gv_trigger_t",6,"len")=4 + Set gtmtypes("gv_trigger_t",6,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numlvsubs")=6 + Set gtmtypes("gv_trigger_t",7,"name")="gv_trigger_t.numpieces" + Set gtmtypes("gv_trigger_t",7,"off")=24 + Set gtmtypes("gv_trigger_t",7,"len")=4 + Set gtmtypes("gv_trigger_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","numpieces")=7 + Set gtmtypes("gv_trigger_t",8,"name")="gv_trigger_t.subsarray" + Set gtmtypes("gv_trigger_t",8,"off")=28 + Set gtmtypes("gv_trigger_t",8,"len")=4 + Set gtmtypes("gv_trigger_t",8,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","subsarray")=8 + Set gtmtypes("gv_trigger_t",9,"name")="gv_trigger_t.lvindexarray" + Set gtmtypes("gv_trigger_t",9,"off")=32 + Set gtmtypes("gv_trigger_t",9,"len")=4 + Set gtmtypes("gv_trigger_t",9,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","lvindexarray")=9 + Set gtmtypes("gv_trigger_t",10,"name")="gv_trigger_t.lvnamearray" + Set gtmtypes("gv_trigger_t",10,"off")=36 + Set gtmtypes("gv_trigger_t",10,"len")=4 + Set gtmtypes("gv_trigger_t",10,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","lvnamearray")=10 + Set gtmtypes("gv_trigger_t",11,"name")="gv_trigger_t.piecearray" + Set gtmtypes("gv_trigger_t",11,"off")=40 + Set gtmtypes("gv_trigger_t",11,"len")=4 + Set gtmtypes("gv_trigger_t",11,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","piecearray")=11 + Set gtmtypes("gv_trigger_t",12,"name")="gv_trigger_t.rtn_desc" + Set gtmtypes("gv_trigger_t",12,"off")=44 + Set gtmtypes("gv_trigger_t",12,"len")=16 + Set gtmtypes("gv_trigger_t",12,"type")="rtn_tabent" + Set gtmtypfldindx("gv_trigger_t","rtn_desc")=12 + Set gtmtypes("gv_trigger_t",13,"name")="gv_trigger_t.rtn_desc.rt_name" + Set gtmtypes("gv_trigger_t",13,"off")=44 + Set gtmtypes("gv_trigger_t",13,"len")=12 + Set gtmtypes("gv_trigger_t",13,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","rtn_desc.rt_name")=13 + Set gtmtypes("gv_trigger_t",14,"name")="gv_trigger_t.rtn_desc.rt_adr" + Set gtmtypes("gv_trigger_t",14,"off")=56 + Set gtmtypes("gv_trigger_t",14,"len")=4 + Set gtmtypes("gv_trigger_t",14,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","rtn_desc.rt_adr")=14 + Set gtmtypes("gv_trigger_t",15,"name")="gv_trigger_t.is_zdelim" + Set gtmtypes("gv_trigger_t",15,"off")=60 + Set gtmtypes("gv_trigger_t",15,"len")=4 + Set gtmtypes("gv_trigger_t",15,"type")="boolean_t" + Set gtmtypfldindx("gv_trigger_t","is_zdelim")=15 + Set gtmtypes("gv_trigger_t",16,"name")="gv_trigger_t.delimiter" + Set gtmtypes("gv_trigger_t",16,"off")=64 + Set gtmtypes("gv_trigger_t",16,"len")=32 + Set gtmtypes("gv_trigger_t",16,"type")="mval" + Set gtmtypfldindx("gv_trigger_t","delimiter")=16 + Set gtmtypes("gv_trigger_t",17,"name")="gv_trigger_t.delimiter.mvtype" + Set gtmtypes("gv_trigger_t",17,"off")=64 + Set gtmtypes("gv_trigger_t",17,"len")=2 + Set gtmtypes("gv_trigger_t",17,"type")="unsigned-short" + Set gtmtypfldindx("gv_trigger_t","delimiter.mvtype")=17 + Set gtmtypes("gv_trigger_t",18,"name")="gv_trigger_t.delimiter.fnpc_indx" + Set gtmtypes("gv_trigger_t",18,"off")=67 + Set gtmtypes("gv_trigger_t",18,"len")=1 + Set gtmtypes("gv_trigger_t",18,"type")="unsigned-char" + Set gtmtypfldindx("gv_trigger_t","delimiter.fnpc_indx")=18 + Set gtmtypes("gv_trigger_t",19,"name")="gv_trigger_t.delimiter.utfcgr_indx" + Set gtmtypes("gv_trigger_t",19,"off")=68 + Set gtmtypes("gv_trigger_t",19,"len")=4 + Set gtmtypes("gv_trigger_t",19,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","delimiter.utfcgr_indx")=19 + Set gtmtypes("gv_trigger_t",20,"name")="gv_trigger_t.delimiter.filler2" + Set gtmtypes("gv_trigger_t",20,"off")=72 + Set gtmtypes("gv_trigger_t",20,"len")=4 + Set gtmtypes("gv_trigger_t",20,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","delimiter.filler2")=20 + Set gtmtypes("gv_trigger_t",21,"name")="gv_trigger_t.delimiter.m" + Set gtmtypes("gv_trigger_t",21,"off")=76 + Set gtmtypes("gv_trigger_t",21,"len")=8 + Set gtmtypes("gv_trigger_t",21,"type")="int" + Set gtmtypfldindx("gv_trigger_t","delimiter.m")=21 + Set gtmtypes("gv_trigger_t",21,"dim")=2 + Set gtmtypes("gv_trigger_t",22,"name")="gv_trigger_t.delimiter.str" + Set gtmtypes("gv_trigger_t",22,"off")=84 + Set gtmtypes("gv_trigger_t",22,"len")=12 + Set gtmtypes("gv_trigger_t",22,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","delimiter.str")=22 + Set gtmtypes("gv_trigger_t",23,"name")="gv_trigger_t.options" + Set gtmtypes("gv_trigger_t",23,"off")=96 + Set gtmtypes("gv_trigger_t",23,"len")=12 + Set gtmtypes("gv_trigger_t",23,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","options")=23 + Set gtmtypes("gv_trigger_t",24,"name")="gv_trigger_t.options.char_len" + Set gtmtypes("gv_trigger_t",24,"off")=96 + Set gtmtypes("gv_trigger_t",24,"len")=4 + Set gtmtypes("gv_trigger_t",24,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","options.char_len")=24 + Set gtmtypes("gv_trigger_t",25,"name")="gv_trigger_t.options.len" + Set gtmtypes("gv_trigger_t",25,"off")=100 + Set gtmtypes("gv_trigger_t",25,"len")=4 + Set gtmtypes("gv_trigger_t",25,"type")="int" + Set gtmtypfldindx("gv_trigger_t","options.len")=25 + Set gtmtypes("gv_trigger_t",26,"name")="gv_trigger_t.options.addr" + Set gtmtypes("gv_trigger_t",26,"off")=104 + Set gtmtypes("gv_trigger_t",26,"len")=4 + Set gtmtypes("gv_trigger_t",26,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","options.addr")=26 + Set gtmtypes("gv_trigger_t",27,"name")="gv_trigger_t.xecute_str" + Set gtmtypes("gv_trigger_t",27,"off")=108 + Set gtmtypes("gv_trigger_t",27,"len")=32 + Set gtmtypes("gv_trigger_t",27,"type")="mval" + Set gtmtypfldindx("gv_trigger_t","xecute_str")=27 + Set gtmtypes("gv_trigger_t",28,"name")="gv_trigger_t.xecute_str.mvtype" + Set gtmtypes("gv_trigger_t",28,"off")=108 + Set gtmtypes("gv_trigger_t",28,"len")=2 + Set gtmtypes("gv_trigger_t",28,"type")="unsigned-short" + Set gtmtypfldindx("gv_trigger_t","xecute_str.mvtype")=28 + Set gtmtypes("gv_trigger_t",29,"name")="gv_trigger_t.xecute_str.fnpc_indx" + Set gtmtypes("gv_trigger_t",29,"off")=111 + Set gtmtypes("gv_trigger_t",29,"len")=1 + Set gtmtypes("gv_trigger_t",29,"type")="unsigned-char" + Set gtmtypfldindx("gv_trigger_t","xecute_str.fnpc_indx")=29 + Set gtmtypes("gv_trigger_t",30,"name")="gv_trigger_t.xecute_str.utfcgr_indx" + Set gtmtypes("gv_trigger_t",30,"off")=112 + Set gtmtypes("gv_trigger_t",30,"len")=4 + Set gtmtypes("gv_trigger_t",30,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.utfcgr_indx")=30 + Set gtmtypes("gv_trigger_t",31,"name")="gv_trigger_t.xecute_str.filler2" + Set gtmtypes("gv_trigger_t",31,"off")=116 + Set gtmtypes("gv_trigger_t",31,"len")=4 + Set gtmtypes("gv_trigger_t",31,"type")="unsigned-int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.filler2")=31 + Set gtmtypes("gv_trigger_t",32,"name")="gv_trigger_t.xecute_str.m" + Set gtmtypes("gv_trigger_t",32,"off")=120 + Set gtmtypes("gv_trigger_t",32,"len")=8 + Set gtmtypes("gv_trigger_t",32,"type")="int" + Set gtmtypfldindx("gv_trigger_t","xecute_str.m")=32 + Set gtmtypes("gv_trigger_t",32,"dim")=2 + Set gtmtypes("gv_trigger_t",33,"name")="gv_trigger_t.xecute_str.str" + Set gtmtypes("gv_trigger_t",33,"off")=128 + Set gtmtypes("gv_trigger_t",33,"len")=12 + Set gtmtypes("gv_trigger_t",33,"type")="mstr" + Set gtmtypfldindx("gv_trigger_t","xecute_str.str")=33 + Set gtmtypes("gv_trigger_t",34,"name")="gv_trigger_t.gvt_trigger" + Set gtmtypes("gv_trigger_t",34,"off")=140 + Set gtmtypes("gv_trigger_t",34,"len")=4 + Set gtmtypes("gv_trigger_t",34,"type")="addr" + Set gtmtypfldindx("gv_trigger_t","gvt_trigger")=34 + ; + Set gtmtypes("gvargs_t")="struct" + Set gtmtypes("gvargs_t",0)=2 + Set gtmtypes("gvargs_t","len")=136 + Set gtmtypes("gvargs_t",1,"name")="gvargs_t.count" + Set gtmtypes("gvargs_t",1,"off")=0 + Set gtmtypes("gvargs_t",1,"len")=4 + Set gtmtypes("gvargs_t",1,"type")="ssize_t" + Set gtmtypfldindx("gvargs_t","count")=1 + Set gtmtypes("gvargs_t",2,"name")="gvargs_t.args" + Set gtmtypes("gvargs_t",2,"off")=4 + Set gtmtypes("gvargs_t",2,"len")=132 + Set gtmtypes("gvargs_t",2,"type")="addr" + Set gtmtypfldindx("gvargs_t","args")=2 + Set gtmtypes("gvargs_t",2,"dim")=33 + ; + Set gtmtypes("gvname_info")="struct" + Set gtmtypes("gvname_info",0)=9 + Set gtmtypes("gvname_info","len")=36 + Set gtmtypes("gvname_info",1,"name")="gvname_info.s_gv_currkey" + Set gtmtypes("gvname_info",1,"off")=0 + Set gtmtypes("gvname_info",1,"len")=4 + Set gtmtypes("gvname_info",1,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_currkey")=1 + Set gtmtypes("gvname_info",2,"name")="gvname_info.s_gv_target" + Set gtmtypes("gvname_info",2,"off")=4 + Set gtmtypes("gvname_info",2,"len")=4 + Set gtmtypes("gvname_info",2,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_target")=2 + Set gtmtypes("gvname_info",3,"name")="gvname_info.s_gv_cur_region" + Set gtmtypes("gvname_info",3,"off")=8 + Set gtmtypes("gvname_info",3,"len")=4 + Set gtmtypes("gvname_info",3,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gv_cur_region")=3 + Set gtmtypes("gvname_info",4,"name")="gvname_info.s_cs_addrs" + Set gtmtypes("gvname_info",4,"off")=12 + Set gtmtypes("gvname_info",4,"len")=4 + Set gtmtypes("gvname_info",4,"type")="addr" + Set gtmtypfldindx("gvname_info","s_cs_addrs")=4 + Set gtmtypes("gvname_info",5,"name")="gvname_info.s_sgm_info_ptr" + Set gtmtypes("gvname_info",5,"off")=16 + Set gtmtypes("gvname_info",5,"len")=4 + Set gtmtypes("gvname_info",5,"type")="addr" + Set gtmtypfldindx("gvname_info","s_sgm_info_ptr")=5 + Set gtmtypes("gvname_info",6,"name")="gvname_info.s_gd_targ_gvnh_reg" + Set gtmtypes("gvname_info",6,"off")=20 + Set gtmtypes("gvname_info",6,"len")=4 + Set gtmtypes("gvname_info",6,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_gvnh_reg")=6 + Set gtmtypes("gvname_info",7,"name")="gvname_info.s_gd_targ_map" + Set gtmtypes("gvname_info",7,"off")=24 + Set gtmtypes("gvname_info",7,"len")=4 + Set gtmtypes("gvname_info",7,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_map")=7 + Set gtmtypes("gvname_info",8,"name")="gvname_info.s_gd_targ_addr" + Set gtmtypes("gvname_info",8,"off")=28 + Set gtmtypes("gvname_info",8,"len")=4 + Set gtmtypes("gvname_info",8,"type")="addr" + Set gtmtypfldindx("gvname_info","s_gd_targ_addr")=8 + Set gtmtypes("gvname_info",9,"name")="gvname_info.gvkey_nsubs" + Set gtmtypes("gvname_info",9,"off")=32 + Set gtmtypes("gvname_info",9,"len")=4 + Set gtmtypes("gvname_info",9,"type")="int" + Set gtmtypfldindx("gvname_info","gvkey_nsubs")=9 + ; + Set gtmtypes("gvnh_reg_t")="struct" + Set gtmtypes("gvnh_reg_t",0)=5 + Set gtmtypes("gvnh_reg_t","len")=20 + Set gtmtypes("gvnh_reg_t",1,"name")="gvnh_reg_t.gvt" + Set gtmtypes("gvnh_reg_t",1,"off")=0 + Set gtmtypes("gvnh_reg_t",1,"len")=4 + Set gtmtypes("gvnh_reg_t",1,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gvt")=1 + Set gtmtypes("gvnh_reg_t",2,"name")="gvnh_reg_t.gd_reg" + Set gtmtypes("gvnh_reg_t",2,"off")=4 + Set gtmtypes("gvnh_reg_t",2,"len")=4 + Set gtmtypes("gvnh_reg_t",2,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gd_reg")=2 + Set gtmtypes("gvnh_reg_t",3,"name")="gvnh_reg_t.gvspan" + Set gtmtypes("gvnh_reg_t",3,"off")=8 + Set gtmtypes("gvnh_reg_t",3,"len")=4 + Set gtmtypes("gvnh_reg_t",3,"type")="addr" + Set gtmtypfldindx("gvnh_reg_t","gvspan")=3 + Set gtmtypes("gvnh_reg_t",4,"name")="gvnh_reg_t.act" + Set gtmtypes("gvnh_reg_t",4,"off")=12 + Set gtmtypes("gvnh_reg_t",4,"len")=4 + Set gtmtypes("gvnh_reg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gvnh_reg_t","act")=4 + Set gtmtypes("gvnh_reg_t",5,"name")="gvnh_reg_t.ver" + Set gtmtypes("gvnh_reg_t",5,"off")=16 + Set gtmtypes("gvnh_reg_t",5,"len")=4 + Set gtmtypes("gvnh_reg_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gvnh_reg_t","ver")=5 + ; + Set gtmtypes("gvnh_spanreg_t")="struct" + Set gtmtypes("gvnh_spanreg_t",0)=5 + Set gtmtypes("gvnh_spanreg_t","len")=20 + Set gtmtypes("gvnh_spanreg_t",1,"name")="gvnh_spanreg_t.start_map_index" + Set gtmtypes("gvnh_spanreg_t",1,"off")=0 + Set gtmtypes("gvnh_spanreg_t",1,"len")=4 + Set gtmtypes("gvnh_spanreg_t",1,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","start_map_index")=1 + Set gtmtypes("gvnh_spanreg_t",2,"name")="gvnh_spanreg_t.end_map_index" + Set gtmtypes("gvnh_spanreg_t",2,"off")=4 + Set gtmtypes("gvnh_spanreg_t",2,"len")=4 + Set gtmtypes("gvnh_spanreg_t",2,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","end_map_index")=2 + Set gtmtypes("gvnh_spanreg_t",3,"name")="gvnh_spanreg_t.min_reg_index" + Set gtmtypes("gvnh_spanreg_t",3,"off")=8 + Set gtmtypes("gvnh_spanreg_t",3,"len")=4 + Set gtmtypes("gvnh_spanreg_t",3,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","min_reg_index")=3 + Set gtmtypes("gvnh_spanreg_t",4,"name")="gvnh_spanreg_t.max_reg_index" + Set gtmtypes("gvnh_spanreg_t",4,"off")=12 + Set gtmtypes("gvnh_spanreg_t",4,"len")=4 + Set gtmtypes("gvnh_spanreg_t",4,"type")="int" + Set gtmtypfldindx("gvnh_spanreg_t","max_reg_index")=4 + Set gtmtypes("gvnh_spanreg_t",5,"name")="gvnh_spanreg_t.gvt_array" + Set gtmtypes("gvnh_spanreg_t",5,"off")=16 + Set gtmtypes("gvnh_spanreg_t",5,"len")=4 + Set gtmtypes("gvnh_spanreg_t",5,"type")="addr" + Set gtmtypfldindx("gvnh_spanreg_t","gvt_array")=5 + ; + Set gtmtypes("gvsavtarg_t")="struct" + Set gtmtypes("gvsavtarg_t",0)=8 + Set gtmtypes("gvsavtarg_t","len")=32 + Set gtmtypes("gvsavtarg_t",1,"name")="gvsavtarg_t.gv_cur_region" + Set gtmtypes("gvsavtarg_t",1,"off")=0 + Set gtmtypes("gvsavtarg_t",1,"len")=4 + Set gtmtypes("gvsavtarg_t",1,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gv_cur_region")=1 + Set gtmtypes("gvsavtarg_t",2,"name")="gvsavtarg_t.gv_target" + Set gtmtypes("gvsavtarg_t",2,"off")=4 + Set gtmtypes("gvsavtarg_t",2,"len")=4 + Set gtmtypes("gvsavtarg_t",2,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gv_target")=2 + Set gtmtypes("gvsavtarg_t",3,"name")="gvsavtarg_t.gd_targ_gvnh_reg" + Set gtmtypes("gvsavtarg_t",3,"off")=8 + Set gtmtypes("gvsavtarg_t",3,"len")=4 + Set gtmtypes("gvsavtarg_t",3,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gd_targ_gvnh_reg")=3 + Set gtmtypes("gvsavtarg_t",4,"name")="gvsavtarg_t.gd_targ_map" + Set gtmtypes("gvsavtarg_t",4,"off")=12 + Set gtmtypes("gvsavtarg_t",4,"len")=4 + Set gtmtypes("gvsavtarg_t",4,"type")="addr" + Set gtmtypfldindx("gvsavtarg_t","gd_targ_map")=4 + Set gtmtypes("gvsavtarg_t",5,"name")="gvsavtarg_t.gv_last_subsc_null" + Set gtmtypes("gvsavtarg_t",5,"off")=16 + Set gtmtypes("gvsavtarg_t",5,"len")=4 + Set gtmtypes("gvsavtarg_t",5,"type")="boolean_t" + Set gtmtypfldindx("gvsavtarg_t","gv_last_subsc_null")=5 + Set gtmtypes("gvsavtarg_t",6,"name")="gvsavtarg_t.gv_some_subsc_null" + Set gtmtypes("gvsavtarg_t",6,"off")=20 + Set gtmtypes("gvsavtarg_t",6,"len")=4 + Set gtmtypes("gvsavtarg_t",6,"type")="boolean_t" + Set gtmtypfldindx("gvsavtarg_t","gv_some_subsc_null")=6 + Set gtmtypes("gvsavtarg_t",7,"name")="gvsavtarg_t.prev" + Set gtmtypes("gvsavtarg_t",7,"off")=24 + Set gtmtypes("gvsavtarg_t",7,"len")=4 + Set gtmtypes("gvsavtarg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvsavtarg_t","prev")=7 + Set gtmtypes("gvsavtarg_t",8,"name")="gvsavtarg_t.end" + Set gtmtypes("gvsavtarg_t",8,"off")=28 + Set gtmtypes("gvsavtarg_t",8,"len")=4 + Set gtmtypes("gvsavtarg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvsavtarg_t","end")=8 + ; + Set gtmtypes("gvstats_rec_t")="struct" + Set gtmtypes("gvstats_rec_t",0)=58 + Set gtmtypes("gvstats_rec_t","len")=464 + Set gtmtypes("gvstats_rec_t",1,"name")="gvstats_rec_t.n_set" + Set gtmtypes("gvstats_rec_t",1,"off")=0 + Set gtmtypes("gvstats_rec_t",1,"len")=8 + Set gtmtypes("gvstats_rec_t",1,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_set")=1 + Set gtmtypes("gvstats_rec_t",2,"name")="gvstats_rec_t.n_kill" + Set gtmtypes("gvstats_rec_t",2,"off")=8 + Set gtmtypes("gvstats_rec_t",2,"len")=8 + Set gtmtypes("gvstats_rec_t",2,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_kill")=2 + Set gtmtypes("gvstats_rec_t",3,"name")="gvstats_rec_t.n_get" + Set gtmtypes("gvstats_rec_t",3,"off")=16 + Set gtmtypes("gvstats_rec_t",3,"len")=8 + Set gtmtypes("gvstats_rec_t",3,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_get")=3 + Set gtmtypes("gvstats_rec_t",4,"name")="gvstats_rec_t.n_data" + Set gtmtypes("gvstats_rec_t",4,"off")=24 + Set gtmtypes("gvstats_rec_t",4,"len")=8 + Set gtmtypes("gvstats_rec_t",4,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_data")=4 + Set gtmtypes("gvstats_rec_t",5,"name")="gvstats_rec_t.n_order" + Set gtmtypes("gvstats_rec_t",5,"off")=32 + Set gtmtypes("gvstats_rec_t",5,"len")=8 + Set gtmtypes("gvstats_rec_t",5,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_order")=5 + Set gtmtypes("gvstats_rec_t",6,"name")="gvstats_rec_t.n_zprev" + Set gtmtypes("gvstats_rec_t",6,"off")=40 + Set gtmtypes("gvstats_rec_t",6,"len")=8 + Set gtmtypes("gvstats_rec_t",6,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_zprev")=6 + Set gtmtypes("gvstats_rec_t",7,"name")="gvstats_rec_t.n_query" + Set gtmtypes("gvstats_rec_t",7,"off")=48 + Set gtmtypes("gvstats_rec_t",7,"len")=8 + Set gtmtypes("gvstats_rec_t",7,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_query")=7 + Set gtmtypes("gvstats_rec_t",8,"name")="gvstats_rec_t.n_lock_success" + Set gtmtypes("gvstats_rec_t",8,"off")=56 + Set gtmtypes("gvstats_rec_t",8,"len")=8 + Set gtmtypes("gvstats_rec_t",8,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_lock_success")=8 + Set gtmtypes("gvstats_rec_t",9,"name")="gvstats_rec_t.n_lock_fail" + Set gtmtypes("gvstats_rec_t",9,"off")=64 + Set gtmtypes("gvstats_rec_t",9,"len")=8 + Set gtmtypes("gvstats_rec_t",9,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_lock_fail")=9 + Set gtmtypes("gvstats_rec_t",10,"name")="gvstats_rec_t.db_curr_tn" + Set gtmtypes("gvstats_rec_t",10,"off")=72 + Set gtmtypes("gvstats_rec_t",10,"len")=8 + Set gtmtypes("gvstats_rec_t",10,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","db_curr_tn")=10 + Set gtmtypes("gvstats_rec_t",11,"name")="gvstats_rec_t.n_dsk_read" + Set gtmtypes("gvstats_rec_t",11,"off")=80 + Set gtmtypes("gvstats_rec_t",11,"len")=8 + Set gtmtypes("gvstats_rec_t",11,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_dsk_read")=11 + Set gtmtypes("gvstats_rec_t",12,"name")="gvstats_rec_t.n_dsk_write" + Set gtmtypes("gvstats_rec_t",12,"off")=88 + Set gtmtypes("gvstats_rec_t",12,"len")=8 + Set gtmtypes("gvstats_rec_t",12,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_dsk_write")=12 + Set gtmtypes("gvstats_rec_t",13,"name")="gvstats_rec_t.n_nontp_readwrite" + Set gtmtypes("gvstats_rec_t",13,"off")=96 + Set gtmtypes("gvstats_rec_t",13,"len")=8 + Set gtmtypes("gvstats_rec_t",13,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_readwrite")=13 + Set gtmtypes("gvstats_rec_t",14,"name")="gvstats_rec_t.n_nontp_readonly" + Set gtmtypes("gvstats_rec_t",14,"off")=104 + Set gtmtypes("gvstats_rec_t",14,"len")=8 + Set gtmtypes("gvstats_rec_t",14,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_readonly")=14 + Set gtmtypes("gvstats_rec_t",15,"name")="gvstats_rec_t.n_nontp_blkwrite" + Set gtmtypes("gvstats_rec_t",15,"off")=112 + Set gtmtypes("gvstats_rec_t",15,"len")=8 + Set gtmtypes("gvstats_rec_t",15,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_blkwrite")=15 + Set gtmtypes("gvstats_rec_t",16,"name")="gvstats_rec_t.n_nontp_blkread" + Set gtmtypes("gvstats_rec_t",16,"off")=120 + Set gtmtypes("gvstats_rec_t",16,"len")=8 + Set gtmtypes("gvstats_rec_t",16,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_blkread")=16 + Set gtmtypes("gvstats_rec_t",17,"name")="gvstats_rec_t.n_nontp_retries_0" + Set gtmtypes("gvstats_rec_t",17,"off")=128 + Set gtmtypes("gvstats_rec_t",17,"len")=8 + Set gtmtypes("gvstats_rec_t",17,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_0")=17 + Set gtmtypes("gvstats_rec_t",18,"name")="gvstats_rec_t.n_nontp_retries_1" + Set gtmtypes("gvstats_rec_t",18,"off")=136 + Set gtmtypes("gvstats_rec_t",18,"len")=8 + Set gtmtypes("gvstats_rec_t",18,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_1")=18 + Set gtmtypes("gvstats_rec_t",19,"name")="gvstats_rec_t.n_nontp_retries_2" + Set gtmtypes("gvstats_rec_t",19,"off")=144 + Set gtmtypes("gvstats_rec_t",19,"len")=8 + Set gtmtypes("gvstats_rec_t",19,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_2")=19 + Set gtmtypes("gvstats_rec_t",20,"name")="gvstats_rec_t.n_nontp_retries_3" + Set gtmtypes("gvstats_rec_t",20,"off")=152 + Set gtmtypes("gvstats_rec_t",20,"len")=8 + Set gtmtypes("gvstats_rec_t",20,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_nontp_retries_3")=20 + Set gtmtypes("gvstats_rec_t",21,"name")="gvstats_rec_t.n_tp_readwrite" + Set gtmtypes("gvstats_rec_t",21,"off")=160 + Set gtmtypes("gvstats_rec_t",21,"len")=8 + Set gtmtypes("gvstats_rec_t",21,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_readwrite")=21 + Set gtmtypes("gvstats_rec_t",22,"name")="gvstats_rec_t.n_tp_readonly" + Set gtmtypes("gvstats_rec_t",22,"off")=168 + Set gtmtypes("gvstats_rec_t",22,"len")=8 + Set gtmtypes("gvstats_rec_t",22,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_readonly")=22 + Set gtmtypes("gvstats_rec_t",23,"name")="gvstats_rec_t.n_tp_rolledback" + Set gtmtypes("gvstats_rec_t",23,"off")=176 + Set gtmtypes("gvstats_rec_t",23,"len")=8 + Set gtmtypes("gvstats_rec_t",23,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_rolledback")=23 + Set gtmtypes("gvstats_rec_t",24,"name")="gvstats_rec_t.n_tp_blkwrite" + Set gtmtypes("gvstats_rec_t",24,"off")=184 + Set gtmtypes("gvstats_rec_t",24,"len")=8 + Set gtmtypes("gvstats_rec_t",24,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_blkwrite")=24 + Set gtmtypes("gvstats_rec_t",25,"name")="gvstats_rec_t.n_tp_blkread" + Set gtmtypes("gvstats_rec_t",25,"off")=192 + Set gtmtypes("gvstats_rec_t",25,"len")=8 + Set gtmtypes("gvstats_rec_t",25,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_blkread")=25 + Set gtmtypes("gvstats_rec_t",26,"name")="gvstats_rec_t.n_tp_tot_retries_0" + Set gtmtypes("gvstats_rec_t",26,"off")=200 + Set gtmtypes("gvstats_rec_t",26,"len")=8 + Set gtmtypes("gvstats_rec_t",26,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_0")=26 + Set gtmtypes("gvstats_rec_t",27,"name")="gvstats_rec_t.n_tp_tot_retries_1" + Set gtmtypes("gvstats_rec_t",27,"off")=208 + Set gtmtypes("gvstats_rec_t",27,"len")=8 + Set gtmtypes("gvstats_rec_t",27,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_1")=27 + Set gtmtypes("gvstats_rec_t",28,"name")="gvstats_rec_t.n_tp_tot_retries_2" + Set gtmtypes("gvstats_rec_t",28,"off")=216 + Set gtmtypes("gvstats_rec_t",28,"len")=8 + Set gtmtypes("gvstats_rec_t",28,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_2")=28 + Set gtmtypes("gvstats_rec_t",29,"name")="gvstats_rec_t.n_tp_tot_retries_3" + Set gtmtypes("gvstats_rec_t",29,"off")=224 + Set gtmtypes("gvstats_rec_t",29,"len")=8 + Set gtmtypes("gvstats_rec_t",29,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_3")=29 + Set gtmtypes("gvstats_rec_t",30,"name")="gvstats_rec_t.n_tp_tot_retries_4" + Set gtmtypes("gvstats_rec_t",30,"off")=232 + Set gtmtypes("gvstats_rec_t",30,"len")=8 + Set gtmtypes("gvstats_rec_t",30,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_tot_retries_4")=30 + Set gtmtypes("gvstats_rec_t",31,"name")="gvstats_rec_t.n_tp_cnflct_retries_0" + Set gtmtypes("gvstats_rec_t",31,"off")=240 + Set gtmtypes("gvstats_rec_t",31,"len")=8 + Set gtmtypes("gvstats_rec_t",31,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_0")=31 + Set gtmtypes("gvstats_rec_t",32,"name")="gvstats_rec_t.n_tp_cnflct_retries_1" + Set gtmtypes("gvstats_rec_t",32,"off")=248 + Set gtmtypes("gvstats_rec_t",32,"len")=8 + Set gtmtypes("gvstats_rec_t",32,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_1")=32 + Set gtmtypes("gvstats_rec_t",33,"name")="gvstats_rec_t.n_tp_cnflct_retries_2" + Set gtmtypes("gvstats_rec_t",33,"off")=256 + Set gtmtypes("gvstats_rec_t",33,"len")=8 + Set gtmtypes("gvstats_rec_t",33,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_2")=33 + Set gtmtypes("gvstats_rec_t",34,"name")="gvstats_rec_t.n_tp_cnflct_retries_3" + Set gtmtypes("gvstats_rec_t",34,"off")=264 + Set gtmtypes("gvstats_rec_t",34,"len")=8 + Set gtmtypes("gvstats_rec_t",34,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_3")=34 + Set gtmtypes("gvstats_rec_t",35,"name")="gvstats_rec_t.n_tp_cnflct_retries_4" + Set gtmtypes("gvstats_rec_t",35,"off")=272 + Set gtmtypes("gvstats_rec_t",35,"len")=8 + Set gtmtypes("gvstats_rec_t",35,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_tp_cnflct_retries_4")=35 + Set gtmtypes("gvstats_rec_t",36,"name")="gvstats_rec_t.n_ztrigger" + Set gtmtypes("gvstats_rec_t",36,"off")=280 + Set gtmtypes("gvstats_rec_t",36,"len")=8 + Set gtmtypes("gvstats_rec_t",36,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_ztrigger")=36 + Set gtmtypes("gvstats_rec_t",37,"name")="gvstats_rec_t.n_db_flush" + Set gtmtypes("gvstats_rec_t",37,"off")=288 + Set gtmtypes("gvstats_rec_t",37,"len")=8 + Set gtmtypes("gvstats_rec_t",37,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_flush")=37 + Set gtmtypes("gvstats_rec_t",38,"name")="gvstats_rec_t.n_db_fsync" + Set gtmtypes("gvstats_rec_t",38,"off")=296 + Set gtmtypes("gvstats_rec_t",38,"len")=8 + Set gtmtypes("gvstats_rec_t",38,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_fsync")=38 + Set gtmtypes("gvstats_rec_t",39,"name")="gvstats_rec_t.n_jnl_flush" + Set gtmtypes("gvstats_rec_t",39,"off")=304 + Set gtmtypes("gvstats_rec_t",39,"len")=8 + Set gtmtypes("gvstats_rec_t",39,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_flush")=39 + Set gtmtypes("gvstats_rec_t",40,"name")="gvstats_rec_t.n_jnl_fsync" + Set gtmtypes("gvstats_rec_t",40,"off")=312 + Set gtmtypes("gvstats_rec_t",40,"len")=8 + Set gtmtypes("gvstats_rec_t",40,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_fsync")=40 + Set gtmtypes("gvstats_rec_t",41,"name")="gvstats_rec_t.n_jbuff_bytes" + Set gtmtypes("gvstats_rec_t",41,"off")=320 + Set gtmtypes("gvstats_rec_t",41,"len")=8 + Set gtmtypes("gvstats_rec_t",41,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jbuff_bytes")=41 + Set gtmtypes("gvstats_rec_t",42,"name")="gvstats_rec_t.n_jfile_bytes" + Set gtmtypes("gvstats_rec_t",42,"off")=328 + Set gtmtypes("gvstats_rec_t",42,"len")=8 + Set gtmtypes("gvstats_rec_t",42,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jfile_bytes")=42 + Set gtmtypes("gvstats_rec_t",43,"name")="gvstats_rec_t.n_jfile_writes" + Set gtmtypes("gvstats_rec_t",43,"off")=336 + Set gtmtypes("gvstats_rec_t",43,"len")=8 + Set gtmtypes("gvstats_rec_t",43,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jfile_writes")=43 + Set gtmtypes("gvstats_rec_t",44,"name")="gvstats_rec_t.n_jrec_logical" + Set gtmtypes("gvstats_rec_t",44,"off")=344 + Set gtmtypes("gvstats_rec_t",44,"len")=8 + Set gtmtypes("gvstats_rec_t",44,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_logical")=44 + Set gtmtypes("gvstats_rec_t",45,"name")="gvstats_rec_t.n_jrec_pblk" + Set gtmtypes("gvstats_rec_t",45,"off")=352 + Set gtmtypes("gvstats_rec_t",45,"len")=8 + Set gtmtypes("gvstats_rec_t",45,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_pblk")=45 + Set gtmtypes("gvstats_rec_t",46,"name")="gvstats_rec_t.n_jrec_epoch_regular" + Set gtmtypes("gvstats_rec_t",46,"off")=360 + Set gtmtypes("gvstats_rec_t",46,"len")=8 + Set gtmtypes("gvstats_rec_t",46,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_epoch_regular")=46 + Set gtmtypes("gvstats_rec_t",47,"name")="gvstats_rec_t.n_jrec_epoch_idle" + Set gtmtypes("gvstats_rec_t",47,"off")=368 + Set gtmtypes("gvstats_rec_t",47,"len")=8 + Set gtmtypes("gvstats_rec_t",47,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_epoch_idle")=47 + Set gtmtypes("gvstats_rec_t",48,"name")="gvstats_rec_t.n_jrec_other" + Set gtmtypes("gvstats_rec_t",48,"off")=376 + Set gtmtypes("gvstats_rec_t",48,"len")=8 + Set gtmtypes("gvstats_rec_t",48,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jrec_other")=48 + Set gtmtypes("gvstats_rec_t",49,"name")="gvstats_rec_t.n_jnl_extends" + Set gtmtypes("gvstats_rec_t",49,"off")=384 + Set gtmtypes("gvstats_rec_t",49,"len")=8 + Set gtmtypes("gvstats_rec_t",49,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_jnl_extends")=49 + Set gtmtypes("gvstats_rec_t",50,"name")="gvstats_rec_t.n_db_extends" + Set gtmtypes("gvstats_rec_t",50,"off")=392 + Set gtmtypes("gvstats_rec_t",50,"len")=8 + Set gtmtypes("gvstats_rec_t",50,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_db_extends")=50 + Set gtmtypes("gvstats_rec_t",51,"name")="gvstats_rec_t.n_crit_success" + Set gtmtypes("gvstats_rec_t",51,"off")=400 + Set gtmtypes("gvstats_rec_t",51,"len")=8 + Set gtmtypes("gvstats_rec_t",51,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_success")=51 + Set gtmtypes("gvstats_rec_t",52,"name")="gvstats_rec_t.n_crits_in_epch" + Set gtmtypes("gvstats_rec_t",52,"off")=408 + Set gtmtypes("gvstats_rec_t",52,"len")=8 + Set gtmtypes("gvstats_rec_t",52,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crits_in_epch")=52 + Set gtmtypes("gvstats_rec_t",53,"name")="gvstats_rec_t.sq_crit_failed" + Set gtmtypes("gvstats_rec_t",53,"off")=416 + Set gtmtypes("gvstats_rec_t",53,"len")=8 + Set gtmtypes("gvstats_rec_t",53,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_failed")=53 + Set gtmtypes("gvstats_rec_t",54,"name")="gvstats_rec_t.n_crit_failed" + Set gtmtypes("gvstats_rec_t",54,"off")=424 + Set gtmtypes("gvstats_rec_t",54,"len")=8 + Set gtmtypes("gvstats_rec_t",54,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_failed")=54 + Set gtmtypes("gvstats_rec_t",55,"name")="gvstats_rec_t.sq_crit_que_slps" + Set gtmtypes("gvstats_rec_t",55,"off")=432 + Set gtmtypes("gvstats_rec_t",55,"len")=8 + Set gtmtypes("gvstats_rec_t",55,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_que_slps")=55 + Set gtmtypes("gvstats_rec_t",56,"name")="gvstats_rec_t.n_crit_que_slps" + Set gtmtypes("gvstats_rec_t",56,"off")=440 + Set gtmtypes("gvstats_rec_t",56,"len")=8 + Set gtmtypes("gvstats_rec_t",56,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_que_slps")=56 + Set gtmtypes("gvstats_rec_t",57,"name")="gvstats_rec_t.sq_crit_yields" + Set gtmtypes("gvstats_rec_t",57,"off")=448 + Set gtmtypes("gvstats_rec_t",57,"len")=8 + Set gtmtypes("gvstats_rec_t",57,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","sq_crit_yields")=57 + Set gtmtypes("gvstats_rec_t",58,"name")="gvstats_rec_t.n_crit_yields" + Set gtmtypes("gvstats_rec_t",58,"off")=456 + Set gtmtypes("gvstats_rec_t",58,"len")=8 + Set gtmtypes("gvstats_rec_t",58,"type")="uint64_t" + Set gtmtypfldindx("gvstats_rec_t","n_crit_yields")=58 + ; + Set gtmtypes("gvt_container")="struct" + Set gtmtypes("gvt_container",0)=4 + Set gtmtypes("gvt_container","len")=16 + Set gtmtypes("gvt_container",1,"name")="gvt_container.gvt_ptr" + Set gtmtypes("gvt_container",1,"off")=0 + Set gtmtypes("gvt_container",1,"len")=4 + Set gtmtypes("gvt_container",1,"type")="addr" + Set gtmtypfldindx("gvt_container","gvt_ptr")=1 + Set gtmtypes("gvt_container",2,"name")="gvt_container.gvt_ptr2" + Set gtmtypes("gvt_container",2,"off")=4 + Set gtmtypes("gvt_container",2,"len")=4 + Set gtmtypes("gvt_container",2,"type")="addr" + Set gtmtypfldindx("gvt_container","gvt_ptr2")=2 + Set gtmtypes("gvt_container",3,"name")="gvt_container.gd_reg" + Set gtmtypes("gvt_container",3,"off")=8 + Set gtmtypes("gvt_container",3,"len")=4 + Set gtmtypes("gvt_container",3,"type")="addr" + Set gtmtypfldindx("gvt_container","gd_reg")=3 + Set gtmtypes("gvt_container",4,"name")="gvt_container.next_gvtc" + Set gtmtypes("gvt_container",4,"off")=12 + Set gtmtypes("gvt_container",4,"len")=4 + Set gtmtypes("gvt_container",4,"type")="addr" + Set gtmtypfldindx("gvt_container","next_gvtc")=4 + ; + Set gtmtypes("gvt_trigger_t")="struct" + Set gtmtypes("gvt_trigger_t",0)=9 + Set gtmtypes("gvt_trigger_t","len")=36 + Set gtmtypes("gvt_trigger_t",1,"name")="gvt_trigger_t.gv_trigger_cycle" + Set gtmtypes("gvt_trigger_t",1,"off")=0 + Set gtmtypes("gvt_trigger_t",1,"len")=4 + Set gtmtypes("gvt_trigger_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvt_trigger_t","gv_trigger_cycle")=1 + Set gtmtypes("gvt_trigger_t",2,"name")="gvt_trigger_t.num_gv_triggers" + Set gtmtypes("gvt_trigger_t",2,"off")=4 + Set gtmtypes("gvt_trigger_t",2,"len")=4 + Set gtmtypes("gvt_trigger_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvt_trigger_t","num_gv_triggers")=2 + Set gtmtypes("gvt_trigger_t",3,"name")="gvt_trigger_t.set_triglist" + Set gtmtypes("gvt_trigger_t",3,"off")=8 + Set gtmtypes("gvt_trigger_t",3,"len")=4 + Set gtmtypes("gvt_trigger_t",3,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","set_triglist")=3 + Set gtmtypes("gvt_trigger_t",4,"name")="gvt_trigger_t.kill_triglist" + Set gtmtypes("gvt_trigger_t",4,"off")=12 + Set gtmtypes("gvt_trigger_t",4,"len")=4 + Set gtmtypes("gvt_trigger_t",4,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","kill_triglist")=4 + Set gtmtypes("gvt_trigger_t",5,"name")="gvt_trigger_t.ztrig_triglist" + Set gtmtypes("gvt_trigger_t",5,"off")=16 + Set gtmtypes("gvt_trigger_t",5,"len")=4 + Set gtmtypes("gvt_trigger_t",5,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","ztrig_triglist")=5 + Set gtmtypes("gvt_trigger_t",6,"name")="gvt_trigger_t.gv_target" + Set gtmtypes("gvt_trigger_t",6,"off")=20 + Set gtmtypes("gvt_trigger_t",6,"len")=4 + Set gtmtypes("gvt_trigger_t",6,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_target")=6 + Set gtmtypes("gvt_trigger_t",7,"name")="gvt_trigger_t.gv_trig_top" + Set gtmtypes("gvt_trigger_t",7,"off")=24 + Set gtmtypes("gvt_trigger_t",7,"len")=4 + Set gtmtypes("gvt_trigger_t",7,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_top")=7 + Set gtmtypes("gvt_trigger_t",8,"name")="gvt_trigger_t.gv_trig_list" + Set gtmtypes("gvt_trigger_t",8,"off")=28 + Set gtmtypes("gvt_trigger_t",8,"len")=4 + Set gtmtypes("gvt_trigger_t",8,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_list")=8 + Set gtmtypes("gvt_trigger_t",9,"name")="gvt_trigger_t.gv_trig_array" + Set gtmtypes("gvt_trigger_t",9,"off")=32 + Set gtmtypes("gvt_trigger_t",9,"len")=4 + Set gtmtypes("gvt_trigger_t",9,"type")="addr" + Set gtmtypfldindx("gvt_trigger_t","gv_trig_array")=9 + ; + Set gtmtypes("gvtr_invoke_parms_t")="struct" + Set gtmtypes("gvtr_invoke_parms_t",0)=3 + Set gtmtypes("gvtr_invoke_parms_t","len")=12 + Set gtmtypes("gvtr_invoke_parms_t",1,"name")="gvtr_invoke_parms_t.gvt_trigger" + Set gtmtypes("gvtr_invoke_parms_t",1,"off")=0 + Set gtmtypes("gvtr_invoke_parms_t",1,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",1,"type")="addr" + Set gtmtypfldindx("gvtr_invoke_parms_t","gvt_trigger")=1 + Set gtmtypes("gvtr_invoke_parms_t",2,"name")="gvtr_invoke_parms_t.gvtr_cmd" + Set gtmtypes("gvtr_invoke_parms_t",2,"off")=4 + Set gtmtypes("gvtr_invoke_parms_t",2,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",2,"type")="int" + Set gtmtypfldindx("gvtr_invoke_parms_t","gvtr_cmd")=2 + Set gtmtypes("gvtr_invoke_parms_t",3,"name")="gvtr_invoke_parms_t.num_triggers_invoked" + Set gtmtypes("gvtr_invoke_parms_t",3,"off")=8 + Set gtmtypes("gvtr_invoke_parms_t",3,"len")=4 + Set gtmtypes("gvtr_invoke_parms_t",3,"type")="int" + Set gtmtypfldindx("gvtr_invoke_parms_t","num_triggers_invoked")=3 + ; + Set gtmtypes("gvtr_subs_pattern_t")="struct" + Set gtmtypes("gvtr_subs_pattern_t",0)=10 + Set gtmtypes("gvtr_subs_pattern_t","len")=44 + Set gtmtypes("gvtr_subs_pattern_t",1,"name")="gvtr_subs_pattern_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_pattern_t",1,"off")=0 + Set gtmtypes("gvtr_subs_pattern_t",1,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_pattern_t",2,"name")="gvtr_subs_pattern_t.filler_8byte_align" + Set gtmtypes("gvtr_subs_pattern_t",2,"off")=4 + Set gtmtypes("gvtr_subs_pattern_t",2,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","filler_8byte_align")=2 + Set gtmtypes("gvtr_subs_pattern_t",3,"name")="gvtr_subs_pattern_t.next_range" + Set gtmtypes("gvtr_subs_pattern_t",3,"off")=8 + Set gtmtypes("gvtr_subs_pattern_t",3,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_pattern_t","next_range")=3 + Set gtmtypes("gvtr_subs_pattern_t",4,"name")="gvtr_subs_pattern_t.pat_mval" + Set gtmtypes("gvtr_subs_pattern_t",4,"off")=12 + Set gtmtypes("gvtr_subs_pattern_t",4,"len")=32 + Set gtmtypes("gvtr_subs_pattern_t",4,"type")="mval" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval")=4 + Set gtmtypes("gvtr_subs_pattern_t",5,"name")="gvtr_subs_pattern_t.pat_mval.mvtype" + Set gtmtypes("gvtr_subs_pattern_t",5,"off")=12 + Set gtmtypes("gvtr_subs_pattern_t",5,"len")=2 + Set gtmtypes("gvtr_subs_pattern_t",5,"type")="unsigned-short" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.mvtype")=5 + Set gtmtypes("gvtr_subs_pattern_t",6,"name")="gvtr_subs_pattern_t.pat_mval.fnpc_indx" + Set gtmtypes("gvtr_subs_pattern_t",6,"off")=15 + Set gtmtypes("gvtr_subs_pattern_t",6,"len")=1 + Set gtmtypes("gvtr_subs_pattern_t",6,"type")="unsigned-char" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.fnpc_indx")=6 + Set gtmtypes("gvtr_subs_pattern_t",7,"name")="gvtr_subs_pattern_t.pat_mval.utfcgr_indx" + Set gtmtypes("gvtr_subs_pattern_t",7,"off")=16 + Set gtmtypes("gvtr_subs_pattern_t",7,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.utfcgr_indx")=7 + Set gtmtypes("gvtr_subs_pattern_t",8,"name")="gvtr_subs_pattern_t.pat_mval.filler2" + Set gtmtypes("gvtr_subs_pattern_t",8,"off")=20 + Set gtmtypes("gvtr_subs_pattern_t",8,"len")=4 + Set gtmtypes("gvtr_subs_pattern_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.filler2")=8 + Set gtmtypes("gvtr_subs_pattern_t",9,"name")="gvtr_subs_pattern_t.pat_mval.m" + Set gtmtypes("gvtr_subs_pattern_t",9,"off")=24 + Set gtmtypes("gvtr_subs_pattern_t",9,"len")=8 + Set gtmtypes("gvtr_subs_pattern_t",9,"type")="int" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.m")=9 + Set gtmtypes("gvtr_subs_pattern_t",9,"dim")=2 + Set gtmtypes("gvtr_subs_pattern_t",10,"name")="gvtr_subs_pattern_t.pat_mval.str" + Set gtmtypes("gvtr_subs_pattern_t",10,"off")=32 + Set gtmtypes("gvtr_subs_pattern_t",10,"len")=12 + Set gtmtypes("gvtr_subs_pattern_t",10,"type")="mstr" + Set gtmtypfldindx("gvtr_subs_pattern_t","pat_mval.str")=10 + ; + Set gtmtypes("gvtr_subs_point_t")="struct" + Set gtmtypes("gvtr_subs_point_t",0)=4 + Set gtmtypes("gvtr_subs_point_t","len")=16 + Set gtmtypes("gvtr_subs_point_t",1,"name")="gvtr_subs_point_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_point_t",1,"off")=0 + Set gtmtypes("gvtr_subs_point_t",1,"len")=4 + Set gtmtypes("gvtr_subs_point_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_point_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_point_t",2,"name")="gvtr_subs_point_t.len" + Set gtmtypes("gvtr_subs_point_t",2,"off")=4 + Set gtmtypes("gvtr_subs_point_t",2,"len")=4 + Set gtmtypes("gvtr_subs_point_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_point_t","len")=2 + Set gtmtypes("gvtr_subs_point_t",3,"name")="gvtr_subs_point_t.next_range" + Set gtmtypes("gvtr_subs_point_t",3,"off")=8 + Set gtmtypes("gvtr_subs_point_t",3,"len")=4 + Set gtmtypes("gvtr_subs_point_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_point_t","next_range")=3 + Set gtmtypes("gvtr_subs_point_t",4,"name")="gvtr_subs_point_t.subs_key" + Set gtmtypes("gvtr_subs_point_t",4,"off")=12 + Set gtmtypes("gvtr_subs_point_t",4,"len")=4 + Set gtmtypes("gvtr_subs_point_t",4,"type")="addr" + Set gtmtypfldindx("gvtr_subs_point_t","subs_key")=4 + ; + Set gtmtypes("gvtr_subs_range_t")="struct" + Set gtmtypes("gvtr_subs_range_t",0)=6 + Set gtmtypes("gvtr_subs_range_t","len")=24 + Set gtmtypes("gvtr_subs_range_t",1,"name")="gvtr_subs_range_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_range_t",1,"off")=0 + Set gtmtypes("gvtr_subs_range_t",1,"len")=4 + Set gtmtypes("gvtr_subs_range_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_range_t",2,"name")="gvtr_subs_range_t.len1" + Set gtmtypes("gvtr_subs_range_t",2,"off")=4 + Set gtmtypes("gvtr_subs_range_t",2,"len")=4 + Set gtmtypes("gvtr_subs_range_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","len1")=2 + Set gtmtypes("gvtr_subs_range_t",3,"name")="gvtr_subs_range_t.next_range" + Set gtmtypes("gvtr_subs_range_t",3,"off")=8 + Set gtmtypes("gvtr_subs_range_t",3,"len")=4 + Set gtmtypes("gvtr_subs_range_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","next_range")=3 + Set gtmtypes("gvtr_subs_range_t",4,"name")="gvtr_subs_range_t.subs_key1" + Set gtmtypes("gvtr_subs_range_t",4,"off")=12 + Set gtmtypes("gvtr_subs_range_t",4,"len")=4 + Set gtmtypes("gvtr_subs_range_t",4,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","subs_key1")=4 + Set gtmtypes("gvtr_subs_range_t",5,"name")="gvtr_subs_range_t.len2" + Set gtmtypes("gvtr_subs_range_t",5,"off")=16 + Set gtmtypes("gvtr_subs_range_t",5,"len")=4 + Set gtmtypes("gvtr_subs_range_t",5,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_range_t","len2")=5 + Set gtmtypes("gvtr_subs_range_t",6,"name")="gvtr_subs_range_t.subs_key2" + Set gtmtypes("gvtr_subs_range_t",6,"off")=20 + Set gtmtypes("gvtr_subs_range_t",6,"len")=4 + Set gtmtypes("gvtr_subs_range_t",6,"type")="addr" + Set gtmtypfldindx("gvtr_subs_range_t","subs_key2")=6 + ; + Set gtmtypes("gvtr_subs_star_t")="struct" + Set gtmtypes("gvtr_subs_star_t",0)=3 + Set gtmtypes("gvtr_subs_star_t","len")=12 + Set gtmtypes("gvtr_subs_star_t",1,"name")="gvtr_subs_star_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_star_t",1,"off")=0 + Set gtmtypes("gvtr_subs_star_t",1,"len")=4 + Set gtmtypes("gvtr_subs_star_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_star_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_star_t",2,"name")="gvtr_subs_star_t.filler_8byte_align" + Set gtmtypes("gvtr_subs_star_t",2,"off")=4 + Set gtmtypes("gvtr_subs_star_t",2,"len")=4 + Set gtmtypes("gvtr_subs_star_t",2,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_star_t","filler_8byte_align")=2 + Set gtmtypes("gvtr_subs_star_t",3,"name")="gvtr_subs_star_t.next_range" + Set gtmtypes("gvtr_subs_star_t",3,"off")=8 + Set gtmtypes("gvtr_subs_star_t",3,"len")=4 + Set gtmtypes("gvtr_subs_star_t",3,"type")="addr" + Set gtmtypfldindx("gvtr_subs_star_t","next_range")=3 + ; + Set gtmtypes("gvtr_subs_t")="union" + Set gtmtypes("gvtr_subs_t",0)=28 + Set gtmtypes("gvtr_subs_t","len")=44 + Set gtmtypes("gvtr_subs_t",1,"name")="gvtr_subs_t.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",1,"off")=0 + Set gtmtypes("gvtr_subs_t",1,"len")=4 + Set gtmtypes("gvtr_subs_t",1,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_type")=1 + Set gtmtypes("gvtr_subs_t",2,"name")="gvtr_subs_t.gvtr_subs_star" + Set gtmtypes("gvtr_subs_t",2,"off")=0 + Set gtmtypes("gvtr_subs_t",2,"len")=12 + Set gtmtypes("gvtr_subs_t",2,"type")="gvtr_subs_star_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star")=2 + Set gtmtypes("gvtr_subs_t",3,"name")="gvtr_subs_t.gvtr_subs_star.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",3,"off")=0 + Set gtmtypes("gvtr_subs_t",3,"len")=4 + Set gtmtypes("gvtr_subs_t",3,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.gvtr_subs_type")=3 + Set gtmtypes("gvtr_subs_t",4,"name")="gvtr_subs_t.gvtr_subs_star.filler_8byte_align" + Set gtmtypes("gvtr_subs_t",4,"off")=4 + Set gtmtypes("gvtr_subs_t",4,"len")=4 + Set gtmtypes("gvtr_subs_t",4,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.filler_8byte_align")=4 + Set gtmtypes("gvtr_subs_t",5,"name")="gvtr_subs_t.gvtr_subs_star.next_range" + Set gtmtypes("gvtr_subs_t",5,"off")=8 + Set gtmtypes("gvtr_subs_t",5,"len")=4 + Set gtmtypes("gvtr_subs_t",5,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_star.next_range")=5 + Set gtmtypes("gvtr_subs_t",6,"name")="gvtr_subs_t.gvtr_subs_point" + Set gtmtypes("gvtr_subs_t",6,"off")=0 + Set gtmtypes("gvtr_subs_t",6,"len")=16 + Set gtmtypes("gvtr_subs_t",6,"type")="gvtr_subs_point_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point")=6 + Set gtmtypes("gvtr_subs_t",7,"name")="gvtr_subs_t.gvtr_subs_point.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",7,"off")=0 + Set gtmtypes("gvtr_subs_t",7,"len")=4 + Set gtmtypes("gvtr_subs_t",7,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.gvtr_subs_type")=7 + Set gtmtypes("gvtr_subs_t",8,"name")="gvtr_subs_t.gvtr_subs_point.len" + Set gtmtypes("gvtr_subs_t",8,"off")=4 + Set gtmtypes("gvtr_subs_t",8,"len")=4 + Set gtmtypes("gvtr_subs_t",8,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.len")=8 + Set gtmtypes("gvtr_subs_t",9,"name")="gvtr_subs_t.gvtr_subs_point.next_range" + Set gtmtypes("gvtr_subs_t",9,"off")=8 + Set gtmtypes("gvtr_subs_t",9,"len")=4 + Set gtmtypes("gvtr_subs_t",9,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.next_range")=9 + Set gtmtypes("gvtr_subs_t",10,"name")="gvtr_subs_t.gvtr_subs_point.subs_key" + Set gtmtypes("gvtr_subs_t",10,"off")=12 + Set gtmtypes("gvtr_subs_t",10,"len")=4 + Set gtmtypes("gvtr_subs_t",10,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_point.subs_key")=10 + Set gtmtypes("gvtr_subs_t",11,"name")="gvtr_subs_t.gvtr_subs_range" + Set gtmtypes("gvtr_subs_t",11,"off")=0 + Set gtmtypes("gvtr_subs_t",11,"len")=24 + Set gtmtypes("gvtr_subs_t",11,"type")="gvtr_subs_range_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range")=11 + Set gtmtypes("gvtr_subs_t",12,"name")="gvtr_subs_t.gvtr_subs_range.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",12,"off")=0 + Set gtmtypes("gvtr_subs_t",12,"len")=4 + Set gtmtypes("gvtr_subs_t",12,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.gvtr_subs_type")=12 + Set gtmtypes("gvtr_subs_t",13,"name")="gvtr_subs_t.gvtr_subs_range.len1" + Set gtmtypes("gvtr_subs_t",13,"off")=4 + Set gtmtypes("gvtr_subs_t",13,"len")=4 + Set gtmtypes("gvtr_subs_t",13,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.len1")=13 + Set gtmtypes("gvtr_subs_t",14,"name")="gvtr_subs_t.gvtr_subs_range.next_range" + Set gtmtypes("gvtr_subs_t",14,"off")=8 + Set gtmtypes("gvtr_subs_t",14,"len")=4 + Set gtmtypes("gvtr_subs_t",14,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.next_range")=14 + Set gtmtypes("gvtr_subs_t",15,"name")="gvtr_subs_t.gvtr_subs_range.subs_key1" + Set gtmtypes("gvtr_subs_t",15,"off")=12 + Set gtmtypes("gvtr_subs_t",15,"len")=4 + Set gtmtypes("gvtr_subs_t",15,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.subs_key1")=15 + Set gtmtypes("gvtr_subs_t",16,"name")="gvtr_subs_t.gvtr_subs_range.len2" + Set gtmtypes("gvtr_subs_t",16,"off")=16 + Set gtmtypes("gvtr_subs_t",16,"len")=4 + Set gtmtypes("gvtr_subs_t",16,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.len2")=16 + Set gtmtypes("gvtr_subs_t",17,"name")="gvtr_subs_t.gvtr_subs_range.subs_key2" + Set gtmtypes("gvtr_subs_t",17,"off")=20 + Set gtmtypes("gvtr_subs_t",17,"len")=4 + Set gtmtypes("gvtr_subs_t",17,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_range.subs_key2")=17 + Set gtmtypes("gvtr_subs_t",18,"name")="gvtr_subs_t.gvtr_subs_pattern" + Set gtmtypes("gvtr_subs_t",18,"off")=0 + Set gtmtypes("gvtr_subs_t",18,"len")=44 + Set gtmtypes("gvtr_subs_t",18,"type")="gvtr_subs_pattern_t" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern")=18 + Set gtmtypes("gvtr_subs_t",19,"name")="gvtr_subs_t.gvtr_subs_pattern.gvtr_subs_type" + Set gtmtypes("gvtr_subs_t",19,"off")=0 + Set gtmtypes("gvtr_subs_t",19,"len")=4 + Set gtmtypes("gvtr_subs_t",19,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.gvtr_subs_type")=19 + Set gtmtypes("gvtr_subs_t",20,"name")="gvtr_subs_t.gvtr_subs_pattern.filler_8byte_align" + Set gtmtypes("gvtr_subs_t",20,"off")=4 + Set gtmtypes("gvtr_subs_t",20,"len")=4 + Set gtmtypes("gvtr_subs_t",20,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.filler_8byte_align")=20 + Set gtmtypes("gvtr_subs_t",21,"name")="gvtr_subs_t.gvtr_subs_pattern.next_range" + Set gtmtypes("gvtr_subs_t",21,"off")=8 + Set gtmtypes("gvtr_subs_t",21,"len")=4 + Set gtmtypes("gvtr_subs_t",21,"type")="addr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.next_range")=21 + Set gtmtypes("gvtr_subs_t",22,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval" + Set gtmtypes("gvtr_subs_t",22,"off")=12 + Set gtmtypes("gvtr_subs_t",22,"len")=32 + Set gtmtypes("gvtr_subs_t",22,"type")="mval" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval")=22 + Set gtmtypes("gvtr_subs_t",23,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.mvtype" + Set gtmtypes("gvtr_subs_t",23,"off")=12 + Set gtmtypes("gvtr_subs_t",23,"len")=2 + Set gtmtypes("gvtr_subs_t",23,"type")="unsigned-short" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.mvtype")=23 + Set gtmtypes("gvtr_subs_t",24,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.fnpc_indx" + Set gtmtypes("gvtr_subs_t",24,"off")=15 + Set gtmtypes("gvtr_subs_t",24,"len")=1 + Set gtmtypes("gvtr_subs_t",24,"type")="unsigned-char" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.fnpc_indx")=24 + Set gtmtypes("gvtr_subs_t",25,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.utfcgr_indx" + Set gtmtypes("gvtr_subs_t",25,"off")=16 + Set gtmtypes("gvtr_subs_t",25,"len")=4 + Set gtmtypes("gvtr_subs_t",25,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.utfcgr_indx")=25 + Set gtmtypes("gvtr_subs_t",26,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.filler2" + Set gtmtypes("gvtr_subs_t",26,"off")=20 + Set gtmtypes("gvtr_subs_t",26,"len")=4 + Set gtmtypes("gvtr_subs_t",26,"type")="unsigned-int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.filler2")=26 + Set gtmtypes("gvtr_subs_t",27,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.m" + Set gtmtypes("gvtr_subs_t",27,"off")=24 + Set gtmtypes("gvtr_subs_t",27,"len")=8 + Set gtmtypes("gvtr_subs_t",27,"type")="int" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.m")=27 + Set gtmtypes("gvtr_subs_t",27,"dim")=2 + Set gtmtypes("gvtr_subs_t",28,"name")="gvtr_subs_t.gvtr_subs_pattern.pat_mval.str" + Set gtmtypes("gvtr_subs_t",28,"off")=32 + Set gtmtypes("gvtr_subs_t",28,"len")=12 + Set gtmtypes("gvtr_subs_t",28,"type")="mstr" + Set gtmtypfldindx("gvtr_subs_t","gvtr_subs_pattern.pat_mval.str")=28 + ; + Set gtmtypes("gvzwrite_datablk")="struct" + Set gtmtypes("gvzwrite_datablk",0)=12 + Set gtmtypes("gvzwrite_datablk","len")=44 + Set gtmtypes("gvzwrite_datablk",1,"name")="gvzwrite_datablk.type" + Set gtmtypes("gvzwrite_datablk",1,"off")=0 + Set gtmtypes("gvzwrite_datablk",1,"len")=4 + Set gtmtypes("gvzwrite_datablk",1,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","type")=1 + Set gtmtypes("gvzwrite_datablk",2,"name")="gvzwrite_datablk.subsc_count" + Set gtmtypes("gvzwrite_datablk",2,"off")=4 + Set gtmtypes("gvzwrite_datablk",2,"len")=2 + Set gtmtypes("gvzwrite_datablk",2,"type")="unsigned-short" + Set gtmtypfldindx("gvzwrite_datablk","subsc_count")=2 + Set gtmtypes("gvzwrite_datablk",3,"name")="gvzwrite_datablk.curr_subsc" + Set gtmtypes("gvzwrite_datablk",3,"off")=6 + Set gtmtypes("gvzwrite_datablk",3,"len")=2 + Set gtmtypes("gvzwrite_datablk",3,"type")="unsigned-short" + Set gtmtypfldindx("gvzwrite_datablk","curr_subsc")=3 + Set gtmtypes("gvzwrite_datablk",4,"name")="gvzwrite_datablk.fixed" + Set gtmtypes("gvzwrite_datablk",4,"off")=8 + Set gtmtypes("gvzwrite_datablk",4,"len")=4 + Set gtmtypes("gvzwrite_datablk",4,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","fixed")=4 + Set gtmtypes("gvzwrite_datablk",5,"name")="gvzwrite_datablk.mask" + Set gtmtypes("gvzwrite_datablk",5,"off")=12 + Set gtmtypes("gvzwrite_datablk",5,"len")=4 + Set gtmtypes("gvzwrite_datablk",5,"type")="unsigned-int" + Set gtmtypfldindx("gvzwrite_datablk","mask")=5 + Set gtmtypes("gvzwrite_datablk",6,"name")="gvzwrite_datablk.pat" + Set gtmtypes("gvzwrite_datablk",6,"off")=16 + Set gtmtypes("gvzwrite_datablk",6,"len")=4 + Set gtmtypes("gvzwrite_datablk",6,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","pat")=6 + Set gtmtypes("gvzwrite_datablk",7,"name")="gvzwrite_datablk.old_key" + Set gtmtypes("gvzwrite_datablk",7,"off")=20 + Set gtmtypes("gvzwrite_datablk",7,"len")=4 + Set gtmtypes("gvzwrite_datablk",7,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","old_key")=7 + Set gtmtypes("gvzwrite_datablk",8,"name")="gvzwrite_datablk.old_targ" + Set gtmtypes("gvzwrite_datablk",8,"off")=24 + Set gtmtypes("gvzwrite_datablk",8,"len")=4 + Set gtmtypes("gvzwrite_datablk",8,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","old_targ")=8 + Set gtmtypes("gvzwrite_datablk",9,"name")="gvzwrite_datablk.sub" + Set gtmtypes("gvzwrite_datablk",9,"off")=28 + Set gtmtypes("gvzwrite_datablk",9,"len")=4 + Set gtmtypes("gvzwrite_datablk",9,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","sub")=9 + Set gtmtypes("gvzwrite_datablk",10,"name")="gvzwrite_datablk.gd_reg" + Set gtmtypes("gvzwrite_datablk",10,"off")=32 + Set gtmtypes("gvzwrite_datablk",10,"len")=4 + Set gtmtypes("gvzwrite_datablk",10,"type")="addr" + Set gtmtypfldindx("gvzwrite_datablk","gd_reg")=10 + Set gtmtypes("gvzwrite_datablk",11,"name")="gvzwrite_datablk.gv_last_subsc_null" + Set gtmtypes("gvzwrite_datablk",11,"off")=36 + Set gtmtypes("gvzwrite_datablk",11,"len")=4 + Set gtmtypes("gvzwrite_datablk",11,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","gv_last_subsc_null")=11 + Set gtmtypes("gvzwrite_datablk",12,"name")="gvzwrite_datablk.gv_some_subsc_null" + Set gtmtypes("gvzwrite_datablk",12,"off")=40 + Set gtmtypes("gvzwrite_datablk",12,"len")=4 + Set gtmtypes("gvzwrite_datablk",12,"type")="boolean_t" + Set gtmtypfldindx("gvzwrite_datablk","gv_some_subsc_null")=12 + ; + Set gtmtypes("hash128_state_t")="struct" + Set gtmtypes("hash128_state_t",0)=7 + Set gtmtypes("hash128_state_t","len")=36 + Set gtmtypes("hash128_state_t",1,"name")="hash128_state_t.h" + Set gtmtypes("hash128_state_t",1,"off")=0 + Set gtmtypes("hash128_state_t",1,"len")=16 + Set gtmtypes("hash128_state_t",1,"type")="gtm_uint16" + Set gtmtypfldindx("hash128_state_t","h")=1 + Set gtmtypes("hash128_state_t",2,"name")="hash128_state_t.h.one" + Set gtmtypes("hash128_state_t",2,"off")=0 + Set gtmtypes("hash128_state_t",2,"len")=8 + Set gtmtypes("hash128_state_t",2,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","h.one")=2 + Set gtmtypes("hash128_state_t",3,"name")="hash128_state_t.h.two" + Set gtmtypes("hash128_state_t",3,"off")=8 + Set gtmtypes("hash128_state_t",3,"len")=8 + Set gtmtypes("hash128_state_t",3,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","h.two")=3 + Set gtmtypes("hash128_state_t",4,"name")="hash128_state_t.c" + Set gtmtypes("hash128_state_t",4,"off")=16 + Set gtmtypes("hash128_state_t",4,"len")=16 + Set gtmtypes("hash128_state_t",4,"type")="gtm_uint16" + Set gtmtypfldindx("hash128_state_t","c")=4 + Set gtmtypes("hash128_state_t",5,"name")="hash128_state_t.c.one" + Set gtmtypes("hash128_state_t",5,"off")=16 + Set gtmtypes("hash128_state_t",5,"len")=8 + Set gtmtypes("hash128_state_t",5,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","c.one")=5 + Set gtmtypes("hash128_state_t",6,"name")="hash128_state_t.c.two" + Set gtmtypes("hash128_state_t",6,"off")=24 + Set gtmtypes("hash128_state_t",6,"len")=8 + Set gtmtypes("hash128_state_t",6,"type")="gtm_uint8" + Set gtmtypfldindx("hash128_state_t","c.two")=6 + Set gtmtypes("hash128_state_t",7,"name")="hash128_state_t.carry_bytes" + Set gtmtypes("hash128_state_t",7,"off")=32 + Set gtmtypes("hash128_state_t",7,"len")=4 + Set gtmtypes("hash128_state_t",7,"type")="int" + Set gtmtypfldindx("hash128_state_t","carry_bytes")=7 + ; + Set gtmtypes("hash_table_addr")="struct" + Set gtmtypes("hash_table_addr",0)=14 + Set gtmtypes("hash_table_addr","len")=56 + Set gtmtypes("hash_table_addr",1,"name")="hash_table_addr.base" + Set gtmtypes("hash_table_addr",1,"off")=0 + Set gtmtypes("hash_table_addr",1,"len")=4 + Set gtmtypes("hash_table_addr",1,"type")="addr" + Set gtmtypfldindx("hash_table_addr","base")=1 + Set gtmtypes("hash_table_addr",2,"name")="hash_table_addr.top" + Set gtmtypes("hash_table_addr",2,"off")=4 + Set gtmtypes("hash_table_addr",2,"len")=4 + Set gtmtypes("hash_table_addr",2,"type")="addr" + Set gtmtypfldindx("hash_table_addr","top")=2 + Set gtmtypes("hash_table_addr",3,"name")="hash_table_addr.size" + Set gtmtypes("hash_table_addr",3,"off")=8 + Set gtmtypes("hash_table_addr",3,"len")=4 + Set gtmtypes("hash_table_addr",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","size")=3 + Set gtmtypes("hash_table_addr",4,"name")="hash_table_addr.initial_size" + Set gtmtypes("hash_table_addr",4,"off")=12 + Set gtmtypes("hash_table_addr",4,"len")=4 + Set gtmtypes("hash_table_addr",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","initial_size")=4 + Set gtmtypes("hash_table_addr",5,"name")="hash_table_addr.spare_base" + Set gtmtypes("hash_table_addr",5,"off")=16 + Set gtmtypes("hash_table_addr",5,"len")=4 + Set gtmtypes("hash_table_addr",5,"type")="addr" + Set gtmtypfldindx("hash_table_addr","spare_base")=5 + Set gtmtypes("hash_table_addr",6,"name")="hash_table_addr.spare_base_size" + Set gtmtypes("hash_table_addr",6,"off")=20 + Set gtmtypes("hash_table_addr",6,"len")=4 + Set gtmtypes("hash_table_addr",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","spare_base_size")=6 + Set gtmtypes("hash_table_addr",7,"name")="hash_table_addr.dont_compact" + Set gtmtypes("hash_table_addr",7,"off")=24 + Set gtmtypes("hash_table_addr",7,"len")=4 + Set gtmtypes("hash_table_addr",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","dont_compact")=7 + Set gtmtypes("hash_table_addr",8,"name")="hash_table_addr.dont_keep_spare_table" + Set gtmtypes("hash_table_addr",8,"off")=28 + Set gtmtypes("hash_table_addr",8,"len")=4 + Set gtmtypes("hash_table_addr",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_addr",9,"name")="hash_table_addr.defer_base_release" + Set gtmtypes("hash_table_addr",9,"off")=32 + Set gtmtypes("hash_table_addr",9,"len")=4 + Set gtmtypes("hash_table_addr",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_addr","defer_base_release")=9 + Set gtmtypes("hash_table_addr",10,"name")="hash_table_addr.count" + Set gtmtypes("hash_table_addr",10,"off")=36 + Set gtmtypes("hash_table_addr",10,"len")=4 + Set gtmtypes("hash_table_addr",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","count")=10 + Set gtmtypes("hash_table_addr",11,"name")="hash_table_addr.del_count" + Set gtmtypes("hash_table_addr",11,"off")=40 + Set gtmtypes("hash_table_addr",11,"len")=4 + Set gtmtypes("hash_table_addr",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","del_count")=11 + Set gtmtypes("hash_table_addr",12,"name")="hash_table_addr.exp_trigger_size" + Set gtmtypes("hash_table_addr",12,"off")=44 + Set gtmtypes("hash_table_addr",12,"len")=4 + Set gtmtypes("hash_table_addr",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","exp_trigger_size")=12 + Set gtmtypes("hash_table_addr",13,"name")="hash_table_addr.cmp_trigger_size" + Set gtmtypes("hash_table_addr",13,"off")=48 + Set gtmtypes("hash_table_addr",13,"len")=4 + Set gtmtypes("hash_table_addr",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_addr","cmp_trigger_size")=13 + Set gtmtypes("hash_table_addr",14,"name")="hash_table_addr.entry_passed_thru" + Set gtmtypes("hash_table_addr",14,"off")=52 + Set gtmtypes("hash_table_addr",14,"len")=4 + Set gtmtypes("hash_table_addr",14,"type")="addr" + Set gtmtypfldindx("hash_table_addr","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_int4")="struct" + Set gtmtypes("hash_table_int4",0)=14 + Set gtmtypes("hash_table_int4","len")=56 + Set gtmtypes("hash_table_int4",1,"name")="hash_table_int4.base" + Set gtmtypes("hash_table_int4",1,"off")=0 + Set gtmtypes("hash_table_int4",1,"len")=4 + Set gtmtypes("hash_table_int4",1,"type")="addr" + Set gtmtypfldindx("hash_table_int4","base")=1 + Set gtmtypes("hash_table_int4",2,"name")="hash_table_int4.top" + Set gtmtypes("hash_table_int4",2,"off")=4 + Set gtmtypes("hash_table_int4",2,"len")=4 + Set gtmtypes("hash_table_int4",2,"type")="addr" + Set gtmtypfldindx("hash_table_int4","top")=2 + Set gtmtypes("hash_table_int4",3,"name")="hash_table_int4.size" + Set gtmtypes("hash_table_int4",3,"off")=8 + Set gtmtypes("hash_table_int4",3,"len")=4 + Set gtmtypes("hash_table_int4",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","size")=3 + Set gtmtypes("hash_table_int4",4,"name")="hash_table_int4.initial_size" + Set gtmtypes("hash_table_int4",4,"off")=12 + Set gtmtypes("hash_table_int4",4,"len")=4 + Set gtmtypes("hash_table_int4",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","initial_size")=4 + Set gtmtypes("hash_table_int4",5,"name")="hash_table_int4.spare_base" + Set gtmtypes("hash_table_int4",5,"off")=16 + Set gtmtypes("hash_table_int4",5,"len")=4 + Set gtmtypes("hash_table_int4",5,"type")="addr" + Set gtmtypfldindx("hash_table_int4","spare_base")=5 + Set gtmtypes("hash_table_int4",6,"name")="hash_table_int4.spare_base_size" + Set gtmtypes("hash_table_int4",6,"off")=20 + Set gtmtypes("hash_table_int4",6,"len")=4 + Set gtmtypes("hash_table_int4",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","spare_base_size")=6 + Set gtmtypes("hash_table_int4",7,"name")="hash_table_int4.dont_compact" + Set gtmtypes("hash_table_int4",7,"off")=24 + Set gtmtypes("hash_table_int4",7,"len")=4 + Set gtmtypes("hash_table_int4",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","dont_compact")=7 + Set gtmtypes("hash_table_int4",8,"name")="hash_table_int4.dont_keep_spare_table" + Set gtmtypes("hash_table_int4",8,"off")=28 + Set gtmtypes("hash_table_int4",8,"len")=4 + Set gtmtypes("hash_table_int4",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_int4",9,"name")="hash_table_int4.defer_base_release" + Set gtmtypes("hash_table_int4",9,"off")=32 + Set gtmtypes("hash_table_int4",9,"len")=4 + Set gtmtypes("hash_table_int4",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int4","defer_base_release")=9 + Set gtmtypes("hash_table_int4",10,"name")="hash_table_int4.count" + Set gtmtypes("hash_table_int4",10,"off")=36 + Set gtmtypes("hash_table_int4",10,"len")=4 + Set gtmtypes("hash_table_int4",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","count")=10 + Set gtmtypes("hash_table_int4",11,"name")="hash_table_int4.del_count" + Set gtmtypes("hash_table_int4",11,"off")=40 + Set gtmtypes("hash_table_int4",11,"len")=4 + Set gtmtypes("hash_table_int4",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","del_count")=11 + Set gtmtypes("hash_table_int4",12,"name")="hash_table_int4.exp_trigger_size" + Set gtmtypes("hash_table_int4",12,"off")=44 + Set gtmtypes("hash_table_int4",12,"len")=4 + Set gtmtypes("hash_table_int4",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","exp_trigger_size")=12 + Set gtmtypes("hash_table_int4",13,"name")="hash_table_int4.cmp_trigger_size" + Set gtmtypes("hash_table_int4",13,"off")=48 + Set gtmtypes("hash_table_int4",13,"len")=4 + Set gtmtypes("hash_table_int4",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int4","cmp_trigger_size")=13 + Set gtmtypes("hash_table_int4",14,"name")="hash_table_int4.entry_passed_thru" + Set gtmtypes("hash_table_int4",14,"off")=52 + Set gtmtypes("hash_table_int4",14,"len")=4 + Set gtmtypes("hash_table_int4",14,"type")="addr" + Set gtmtypfldindx("hash_table_int4","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_int8")="struct" + Set gtmtypes("hash_table_int8",0)=14 + Set gtmtypes("hash_table_int8","len")=56 + Set gtmtypes("hash_table_int8",1,"name")="hash_table_int8.base" + Set gtmtypes("hash_table_int8",1,"off")=0 + Set gtmtypes("hash_table_int8",1,"len")=4 + Set gtmtypes("hash_table_int8",1,"type")="addr" + Set gtmtypfldindx("hash_table_int8","base")=1 + Set gtmtypes("hash_table_int8",2,"name")="hash_table_int8.top" + Set gtmtypes("hash_table_int8",2,"off")=4 + Set gtmtypes("hash_table_int8",2,"len")=4 + Set gtmtypes("hash_table_int8",2,"type")="addr" + Set gtmtypfldindx("hash_table_int8","top")=2 + Set gtmtypes("hash_table_int8",3,"name")="hash_table_int8.size" + Set gtmtypes("hash_table_int8",3,"off")=8 + Set gtmtypes("hash_table_int8",3,"len")=4 + Set gtmtypes("hash_table_int8",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","size")=3 + Set gtmtypes("hash_table_int8",4,"name")="hash_table_int8.initial_size" + Set gtmtypes("hash_table_int8",4,"off")=12 + Set gtmtypes("hash_table_int8",4,"len")=4 + Set gtmtypes("hash_table_int8",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","initial_size")=4 + Set gtmtypes("hash_table_int8",5,"name")="hash_table_int8.spare_base" + Set gtmtypes("hash_table_int8",5,"off")=16 + Set gtmtypes("hash_table_int8",5,"len")=4 + Set gtmtypes("hash_table_int8",5,"type")="addr" + Set gtmtypfldindx("hash_table_int8","spare_base")=5 + Set gtmtypes("hash_table_int8",6,"name")="hash_table_int8.spare_base_size" + Set gtmtypes("hash_table_int8",6,"off")=20 + Set gtmtypes("hash_table_int8",6,"len")=4 + Set gtmtypes("hash_table_int8",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","spare_base_size")=6 + Set gtmtypes("hash_table_int8",7,"name")="hash_table_int8.dont_compact" + Set gtmtypes("hash_table_int8",7,"off")=24 + Set gtmtypes("hash_table_int8",7,"len")=4 + Set gtmtypes("hash_table_int8",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","dont_compact")=7 + Set gtmtypes("hash_table_int8",8,"name")="hash_table_int8.dont_keep_spare_table" + Set gtmtypes("hash_table_int8",8,"off")=28 + Set gtmtypes("hash_table_int8",8,"len")=4 + Set gtmtypes("hash_table_int8",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_int8",9,"name")="hash_table_int8.defer_base_release" + Set gtmtypes("hash_table_int8",9,"off")=32 + Set gtmtypes("hash_table_int8",9,"len")=4 + Set gtmtypes("hash_table_int8",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_int8","defer_base_release")=9 + Set gtmtypes("hash_table_int8",10,"name")="hash_table_int8.count" + Set gtmtypes("hash_table_int8",10,"off")=36 + Set gtmtypes("hash_table_int8",10,"len")=4 + Set gtmtypes("hash_table_int8",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","count")=10 + Set gtmtypes("hash_table_int8",11,"name")="hash_table_int8.del_count" + Set gtmtypes("hash_table_int8",11,"off")=40 + Set gtmtypes("hash_table_int8",11,"len")=4 + Set gtmtypes("hash_table_int8",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","del_count")=11 + Set gtmtypes("hash_table_int8",12,"name")="hash_table_int8.exp_trigger_size" + Set gtmtypes("hash_table_int8",12,"off")=44 + Set gtmtypes("hash_table_int8",12,"len")=4 + Set gtmtypes("hash_table_int8",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","exp_trigger_size")=12 + Set gtmtypes("hash_table_int8",13,"name")="hash_table_int8.cmp_trigger_size" + Set gtmtypes("hash_table_int8",13,"off")=48 + Set gtmtypes("hash_table_int8",13,"len")=4 + Set gtmtypes("hash_table_int8",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_int8","cmp_trigger_size")=13 + Set gtmtypes("hash_table_int8",14,"name")="hash_table_int8.entry_passed_thru" + Set gtmtypes("hash_table_int8",14,"off")=52 + Set gtmtypes("hash_table_int8",14,"len")=4 + Set gtmtypes("hash_table_int8",14,"type")="addr" + Set gtmtypfldindx("hash_table_int8","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_mname")="struct" + Set gtmtypes("hash_table_mname",0)=14 + Set gtmtypes("hash_table_mname","len")=56 + Set gtmtypes("hash_table_mname",1,"name")="hash_table_mname.base" + Set gtmtypes("hash_table_mname",1,"off")=0 + Set gtmtypes("hash_table_mname",1,"len")=4 + Set gtmtypes("hash_table_mname",1,"type")="addr" + Set gtmtypfldindx("hash_table_mname","base")=1 + Set gtmtypes("hash_table_mname",2,"name")="hash_table_mname.top" + Set gtmtypes("hash_table_mname",2,"off")=4 + Set gtmtypes("hash_table_mname",2,"len")=4 + Set gtmtypes("hash_table_mname",2,"type")="addr" + Set gtmtypfldindx("hash_table_mname","top")=2 + Set gtmtypes("hash_table_mname",3,"name")="hash_table_mname.size" + Set gtmtypes("hash_table_mname",3,"off")=8 + Set gtmtypes("hash_table_mname",3,"len")=4 + Set gtmtypes("hash_table_mname",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","size")=3 + Set gtmtypes("hash_table_mname",4,"name")="hash_table_mname.initial_size" + Set gtmtypes("hash_table_mname",4,"off")=12 + Set gtmtypes("hash_table_mname",4,"len")=4 + Set gtmtypes("hash_table_mname",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","initial_size")=4 + Set gtmtypes("hash_table_mname",5,"name")="hash_table_mname.spare_base" + Set gtmtypes("hash_table_mname",5,"off")=16 + Set gtmtypes("hash_table_mname",5,"len")=4 + Set gtmtypes("hash_table_mname",5,"type")="addr" + Set gtmtypfldindx("hash_table_mname","spare_base")=5 + Set gtmtypes("hash_table_mname",6,"name")="hash_table_mname.spare_base_size" + Set gtmtypes("hash_table_mname",6,"off")=20 + Set gtmtypes("hash_table_mname",6,"len")=4 + Set gtmtypes("hash_table_mname",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","spare_base_size")=6 + Set gtmtypes("hash_table_mname",7,"name")="hash_table_mname.dont_compact" + Set gtmtypes("hash_table_mname",7,"off")=24 + Set gtmtypes("hash_table_mname",7,"len")=4 + Set gtmtypes("hash_table_mname",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","dont_compact")=7 + Set gtmtypes("hash_table_mname",8,"name")="hash_table_mname.dont_keep_spare_table" + Set gtmtypes("hash_table_mname",8,"off")=28 + Set gtmtypes("hash_table_mname",8,"len")=4 + Set gtmtypes("hash_table_mname",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_mname",9,"name")="hash_table_mname.defer_base_release" + Set gtmtypes("hash_table_mname",9,"off")=32 + Set gtmtypes("hash_table_mname",9,"len")=4 + Set gtmtypes("hash_table_mname",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_mname","defer_base_release")=9 + Set gtmtypes("hash_table_mname",10,"name")="hash_table_mname.count" + Set gtmtypes("hash_table_mname",10,"off")=36 + Set gtmtypes("hash_table_mname",10,"len")=4 + Set gtmtypes("hash_table_mname",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","count")=10 + Set gtmtypes("hash_table_mname",11,"name")="hash_table_mname.del_count" + Set gtmtypes("hash_table_mname",11,"off")=40 + Set gtmtypes("hash_table_mname",11,"len")=4 + Set gtmtypes("hash_table_mname",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","del_count")=11 + Set gtmtypes("hash_table_mname",12,"name")="hash_table_mname.exp_trigger_size" + Set gtmtypes("hash_table_mname",12,"off")=44 + Set gtmtypes("hash_table_mname",12,"len")=4 + Set gtmtypes("hash_table_mname",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","exp_trigger_size")=12 + Set gtmtypes("hash_table_mname",13,"name")="hash_table_mname.cmp_trigger_size" + Set gtmtypes("hash_table_mname",13,"off")=48 + Set gtmtypes("hash_table_mname",13,"len")=4 + Set gtmtypes("hash_table_mname",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_mname","cmp_trigger_size")=13 + Set gtmtypes("hash_table_mname",14,"name")="hash_table_mname.entry_passed_thru" + Set gtmtypes("hash_table_mname",14,"off")=52 + Set gtmtypes("hash_table_mname",14,"len")=4 + Set gtmtypes("hash_table_mname",14,"type")="addr" + Set gtmtypfldindx("hash_table_mname","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_objcode")="struct" + Set gtmtypes("hash_table_objcode",0)=14 + Set gtmtypes("hash_table_objcode","len")=56 + Set gtmtypes("hash_table_objcode",1,"name")="hash_table_objcode.base" + Set gtmtypes("hash_table_objcode",1,"off")=0 + Set gtmtypes("hash_table_objcode",1,"len")=4 + Set gtmtypes("hash_table_objcode",1,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","base")=1 + Set gtmtypes("hash_table_objcode",2,"name")="hash_table_objcode.top" + Set gtmtypes("hash_table_objcode",2,"off")=4 + Set gtmtypes("hash_table_objcode",2,"len")=4 + Set gtmtypes("hash_table_objcode",2,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","top")=2 + Set gtmtypes("hash_table_objcode",3,"name")="hash_table_objcode.size" + Set gtmtypes("hash_table_objcode",3,"off")=8 + Set gtmtypes("hash_table_objcode",3,"len")=4 + Set gtmtypes("hash_table_objcode",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","size")=3 + Set gtmtypes("hash_table_objcode",4,"name")="hash_table_objcode.initial_size" + Set gtmtypes("hash_table_objcode",4,"off")=12 + Set gtmtypes("hash_table_objcode",4,"len")=4 + Set gtmtypes("hash_table_objcode",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","initial_size")=4 + Set gtmtypes("hash_table_objcode",5,"name")="hash_table_objcode.spare_base" + Set gtmtypes("hash_table_objcode",5,"off")=16 + Set gtmtypes("hash_table_objcode",5,"len")=4 + Set gtmtypes("hash_table_objcode",5,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","spare_base")=5 + Set gtmtypes("hash_table_objcode",6,"name")="hash_table_objcode.spare_base_size" + Set gtmtypes("hash_table_objcode",6,"off")=20 + Set gtmtypes("hash_table_objcode",6,"len")=4 + Set gtmtypes("hash_table_objcode",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","spare_base_size")=6 + Set gtmtypes("hash_table_objcode",7,"name")="hash_table_objcode.dont_compact" + Set gtmtypes("hash_table_objcode",7,"off")=24 + Set gtmtypes("hash_table_objcode",7,"len")=4 + Set gtmtypes("hash_table_objcode",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","dont_compact")=7 + Set gtmtypes("hash_table_objcode",8,"name")="hash_table_objcode.dont_keep_spare_table" + Set gtmtypes("hash_table_objcode",8,"off")=28 + Set gtmtypes("hash_table_objcode",8,"len")=4 + Set gtmtypes("hash_table_objcode",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_objcode",9,"name")="hash_table_objcode.defer_base_release" + Set gtmtypes("hash_table_objcode",9,"off")=32 + Set gtmtypes("hash_table_objcode",9,"len")=4 + Set gtmtypes("hash_table_objcode",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_objcode","defer_base_release")=9 + Set gtmtypes("hash_table_objcode",10,"name")="hash_table_objcode.count" + Set gtmtypes("hash_table_objcode",10,"off")=36 + Set gtmtypes("hash_table_objcode",10,"len")=4 + Set gtmtypes("hash_table_objcode",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","count")=10 + Set gtmtypes("hash_table_objcode",11,"name")="hash_table_objcode.del_count" + Set gtmtypes("hash_table_objcode",11,"off")=40 + Set gtmtypes("hash_table_objcode",11,"len")=4 + Set gtmtypes("hash_table_objcode",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","del_count")=11 + Set gtmtypes("hash_table_objcode",12,"name")="hash_table_objcode.exp_trigger_size" + Set gtmtypes("hash_table_objcode",12,"off")=44 + Set gtmtypes("hash_table_objcode",12,"len")=4 + Set gtmtypes("hash_table_objcode",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","exp_trigger_size")=12 + Set gtmtypes("hash_table_objcode",13,"name")="hash_table_objcode.cmp_trigger_size" + Set gtmtypes("hash_table_objcode",13,"off")=48 + Set gtmtypes("hash_table_objcode",13,"len")=4 + Set gtmtypes("hash_table_objcode",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_objcode","cmp_trigger_size")=13 + Set gtmtypes("hash_table_objcode",14,"name")="hash_table_objcode.entry_passed_thru" + Set gtmtypes("hash_table_objcode",14,"off")=52 + Set gtmtypes("hash_table_objcode",14,"len")=4 + Set gtmtypes("hash_table_objcode",14,"type")="addr" + Set gtmtypfldindx("hash_table_objcode","entry_passed_thru")=14 + ; + Set gtmtypes("hash_table_str")="struct" + Set gtmtypes("hash_table_str",0)=14 + Set gtmtypes("hash_table_str","len")=56 + Set gtmtypes("hash_table_str",1,"name")="hash_table_str.base" + Set gtmtypes("hash_table_str",1,"off")=0 + Set gtmtypes("hash_table_str",1,"len")=4 + Set gtmtypes("hash_table_str",1,"type")="addr" + Set gtmtypfldindx("hash_table_str","base")=1 + Set gtmtypes("hash_table_str",2,"name")="hash_table_str.top" + Set gtmtypes("hash_table_str",2,"off")=4 + Set gtmtypes("hash_table_str",2,"len")=4 + Set gtmtypes("hash_table_str",2,"type")="addr" + Set gtmtypfldindx("hash_table_str","top")=2 + Set gtmtypes("hash_table_str",3,"name")="hash_table_str.size" + Set gtmtypes("hash_table_str",3,"off")=8 + Set gtmtypes("hash_table_str",3,"len")=4 + Set gtmtypes("hash_table_str",3,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","size")=3 + Set gtmtypes("hash_table_str",4,"name")="hash_table_str.initial_size" + Set gtmtypes("hash_table_str",4,"off")=12 + Set gtmtypes("hash_table_str",4,"len")=4 + Set gtmtypes("hash_table_str",4,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","initial_size")=4 + Set gtmtypes("hash_table_str",5,"name")="hash_table_str.spare_base" + Set gtmtypes("hash_table_str",5,"off")=16 + Set gtmtypes("hash_table_str",5,"len")=4 + Set gtmtypes("hash_table_str",5,"type")="addr" + Set gtmtypfldindx("hash_table_str","spare_base")=5 + Set gtmtypes("hash_table_str",6,"name")="hash_table_str.spare_base_size" + Set gtmtypes("hash_table_str",6,"off")=20 + Set gtmtypes("hash_table_str",6,"len")=4 + Set gtmtypes("hash_table_str",6,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","spare_base_size")=6 + Set gtmtypes("hash_table_str",7,"name")="hash_table_str.dont_compact" + Set gtmtypes("hash_table_str",7,"off")=24 + Set gtmtypes("hash_table_str",7,"len")=4 + Set gtmtypes("hash_table_str",7,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","dont_compact")=7 + Set gtmtypes("hash_table_str",8,"name")="hash_table_str.dont_keep_spare_table" + Set gtmtypes("hash_table_str",8,"off")=28 + Set gtmtypes("hash_table_str",8,"len")=4 + Set gtmtypes("hash_table_str",8,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","dont_keep_spare_table")=8 + Set gtmtypes("hash_table_str",9,"name")="hash_table_str.defer_base_release" + Set gtmtypes("hash_table_str",9,"off")=32 + Set gtmtypes("hash_table_str",9,"len")=4 + Set gtmtypes("hash_table_str",9,"type")="boolean_t" + Set gtmtypfldindx("hash_table_str","defer_base_release")=9 + Set gtmtypes("hash_table_str",10,"name")="hash_table_str.count" + Set gtmtypes("hash_table_str",10,"off")=36 + Set gtmtypes("hash_table_str",10,"len")=4 + Set gtmtypes("hash_table_str",10,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","count")=10 + Set gtmtypes("hash_table_str",11,"name")="hash_table_str.del_count" + Set gtmtypes("hash_table_str",11,"off")=40 + Set gtmtypes("hash_table_str",11,"len")=4 + Set gtmtypes("hash_table_str",11,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","del_count")=11 + Set gtmtypes("hash_table_str",12,"name")="hash_table_str.exp_trigger_size" + Set gtmtypes("hash_table_str",12,"off")=44 + Set gtmtypes("hash_table_str",12,"len")=4 + Set gtmtypes("hash_table_str",12,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","exp_trigger_size")=12 + Set gtmtypes("hash_table_str",13,"name")="hash_table_str.cmp_trigger_size" + Set gtmtypes("hash_table_str",13,"off")=48 + Set gtmtypes("hash_table_str",13,"len")=4 + Set gtmtypes("hash_table_str",13,"type")="unsigned-int" + Set gtmtypfldindx("hash_table_str","cmp_trigger_size")=13 + Set gtmtypes("hash_table_str",14,"name")="hash_table_str.entry_passed_thru" + Set gtmtypes("hash_table_str",14,"off")=52 + Set gtmtypes("hash_table_str",14,"len")=4 + Set gtmtypes("hash_table_str",14,"type")="addr" + Set gtmtypfldindx("hash_table_str","entry_passed_thru")=14 + ; + Set gtmtypes("header_struct")="struct" + Set gtmtypes("header_struct",0)=2 + Set gtmtypes("header_struct","len")=16 + Set gtmtypes("header_struct",1,"name")="header_struct.label" + Set gtmtypes("header_struct",1,"off")=0 + Set gtmtypes("header_struct",1,"len")=12 + Set gtmtypes("header_struct",1,"type")="char" + Set gtmtypfldindx("header_struct","label")=1 + Set gtmtypes("header_struct",2,"name")="header_struct.filesize" + Set gtmtypes("header_struct",2,"off")=12 + Set gtmtypes("header_struct",2,"len")=4 + Set gtmtypes("header_struct",2,"type")="unsigned" + Set gtmtypfldindx("header_struct","filesize")=2 + ; + Set gtmtypes("ht_ent_addr")="struct" + Set gtmtypes("ht_ent_addr",0)=2 + Set gtmtypes("ht_ent_addr","len")=8 + Set gtmtypes("ht_ent_addr",1,"name")="ht_ent_addr.key" + Set gtmtypes("ht_ent_addr",1,"off")=0 + Set gtmtypes("ht_ent_addr",1,"len")=4 + Set gtmtypes("ht_ent_addr",1,"type")="addr" + Set gtmtypfldindx("ht_ent_addr","key")=1 + Set gtmtypes("ht_ent_addr",2,"name")="ht_ent_addr.value" + Set gtmtypes("ht_ent_addr",2,"off")=4 + Set gtmtypes("ht_ent_addr",2,"len")=4 + Set gtmtypes("ht_ent_addr",2,"type")="addr" + Set gtmtypfldindx("ht_ent_addr","value")=2 + ; + Set gtmtypes("ht_ent_int4")="struct" + Set gtmtypes("ht_ent_int4",0)=2 + Set gtmtypes("ht_ent_int4","len")=8 + Set gtmtypes("ht_ent_int4",1,"name")="ht_ent_int4.key" + Set gtmtypes("ht_ent_int4",1,"off")=0 + Set gtmtypes("ht_ent_int4",1,"len")=4 + Set gtmtypes("ht_ent_int4",1,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_int4","key")=1 + Set gtmtypes("ht_ent_int4",2,"name")="ht_ent_int4.value" + Set gtmtypes("ht_ent_int4",2,"off")=4 + Set gtmtypes("ht_ent_int4",2,"len")=4 + Set gtmtypes("ht_ent_int4",2,"type")="addr" + Set gtmtypfldindx("ht_ent_int4","value")=2 + ; + Set gtmtypes("ht_ent_int8")="struct" + Set gtmtypes("ht_ent_int8",0)=3 + Set gtmtypes("ht_ent_int8","len")=16 + Set gtmtypes("ht_ent_int8",1,"name")="ht_ent_int8.key" + Set gtmtypes("ht_ent_int8",1,"off")=0 + Set gtmtypes("ht_ent_int8",1,"len")=8 + Set gtmtypes("ht_ent_int8",1,"type")="uint64_t" + Set gtmtypfldindx("ht_ent_int8","key")=1 + Set gtmtypes("ht_ent_int8",2,"name")="ht_ent_int8.value" + Set gtmtypes("ht_ent_int8",2,"off")=8 + Set gtmtypes("ht_ent_int8",2,"len")=4 + Set gtmtypes("ht_ent_int8",2,"type")="addr" + Set gtmtypfldindx("ht_ent_int8","value")=2 + Set gtmtypes("ht_ent_int8",3,"name")="ht_ent_int8.filler" + Set gtmtypes("ht_ent_int8",3,"off")=12 + Set gtmtypes("ht_ent_int8",3,"len")=4 + Set gtmtypes("ht_ent_int8",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_int8","filler")=3 + ; + Set gtmtypes("ht_ent_mname")="struct" + Set gtmtypes("ht_ent_mname",0)=5 + Set gtmtypes("ht_ent_mname","len")=24 + Set gtmtypes("ht_ent_mname",1,"name")="ht_ent_mname.key" + Set gtmtypes("ht_ent_mname",1,"off")=0 + Set gtmtypes("ht_ent_mname",1,"len")=20 + Set gtmtypes("ht_ent_mname",1,"type")="mname_entry" + Set gtmtypfldindx("ht_ent_mname","key")=1 + Set gtmtypes("ht_ent_mname",2,"name")="ht_ent_mname.key.var_name" + Set gtmtypes("ht_ent_mname",2,"off")=0 + Set gtmtypes("ht_ent_mname",2,"len")=12 + Set gtmtypes("ht_ent_mname",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_mname","key.var_name")=2 + Set gtmtypes("ht_ent_mname",3,"name")="ht_ent_mname.key.hash_code" + Set gtmtypes("ht_ent_mname",3,"off")=12 + Set gtmtypes("ht_ent_mname",3,"len")=4 + Set gtmtypes("ht_ent_mname",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_mname","key.hash_code")=3 + Set gtmtypes("ht_ent_mname",4,"name")="ht_ent_mname.key.marked" + Set gtmtypes("ht_ent_mname",4,"off")=16 + Set gtmtypes("ht_ent_mname",4,"len")=4 + Set gtmtypes("ht_ent_mname",4,"type")="boolean_t" + Set gtmtypfldindx("ht_ent_mname","key.marked")=4 + Set gtmtypes("ht_ent_mname",5,"name")="ht_ent_mname.value" + Set gtmtypes("ht_ent_mname",5,"off")=20 + Set gtmtypes("ht_ent_mname",5,"len")=4 + Set gtmtypes("ht_ent_mname",5,"type")="addr" + Set gtmtypfldindx("ht_ent_mname","value")=5 + ; + Set gtmtypes("ht_ent_objcode")="struct" + Set gtmtypes("ht_ent_objcode",0)=4 + Set gtmtypes("ht_ent_objcode","len")=20 + Set gtmtypes("ht_ent_objcode",1,"name")="ht_ent_objcode.key" + Set gtmtypes("ht_ent_objcode",1,"off")=0 + Set gtmtypes("ht_ent_objcode",1,"len")=16 + Set gtmtypes("ht_ent_objcode",1,"type")="icode_str" + Set gtmtypfldindx("ht_ent_objcode","key")=1 + Set gtmtypes("ht_ent_objcode",2,"name")="ht_ent_objcode.key.str" + Set gtmtypes("ht_ent_objcode",2,"off")=0 + Set gtmtypes("ht_ent_objcode",2,"len")=12 + Set gtmtypes("ht_ent_objcode",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_objcode","key.str")=2 + Set gtmtypes("ht_ent_objcode",3,"name")="ht_ent_objcode.key.code" + Set gtmtypes("ht_ent_objcode",3,"off")=12 + Set gtmtypes("ht_ent_objcode",3,"len")=4 + Set gtmtypes("ht_ent_objcode",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_objcode","key.code")=3 + Set gtmtypes("ht_ent_objcode",4,"name")="ht_ent_objcode.value" + Set gtmtypes("ht_ent_objcode",4,"off")=16 + Set gtmtypes("ht_ent_objcode",4,"len")=4 + Set gtmtypes("ht_ent_objcode",4,"type")="addr" + Set gtmtypfldindx("ht_ent_objcode","value")=4 + ; + Set gtmtypes("ht_ent_str")="struct" + Set gtmtypes("ht_ent_str",0)=4 + Set gtmtypes("ht_ent_str","len")=20 + Set gtmtypes("ht_ent_str",1,"name")="ht_ent_str.key" + Set gtmtypes("ht_ent_str",1,"off")=0 + Set gtmtypes("ht_ent_str",1,"len")=16 + Set gtmtypes("ht_ent_str",1,"type")="stringkey" + Set gtmtypfldindx("ht_ent_str","key")=1 + Set gtmtypes("ht_ent_str",2,"name")="ht_ent_str.key.str" + Set gtmtypes("ht_ent_str",2,"off")=0 + Set gtmtypes("ht_ent_str",2,"len")=12 + Set gtmtypes("ht_ent_str",2,"type")="mstr" + Set gtmtypfldindx("ht_ent_str","key.str")=2 + Set gtmtypes("ht_ent_str",3,"name")="ht_ent_str.key.hash_code" + Set gtmtypes("ht_ent_str",3,"off")=12 + Set gtmtypes("ht_ent_str",3,"len")=4 + Set gtmtypes("ht_ent_str",3,"type")="unsigned-int" + Set gtmtypfldindx("ht_ent_str","key.hash_code")=3 + Set gtmtypes("ht_ent_str",4,"name")="ht_ent_str.value" + Set gtmtypes("ht_ent_str",4,"off")=16 + Set gtmtypes("ht_ent_str",4,"len")=4 + Set gtmtypes("ht_ent_str",4,"type")="addr" + Set gtmtypfldindx("ht_ent_str","value")=4 + ; + Set gtmtypes("icode_str")="struct" + Set gtmtypes("icode_str",0)=5 + Set gtmtypes("icode_str","len")=16 + Set gtmtypes("icode_str",1,"name")="icode_str.str" + Set gtmtypes("icode_str",1,"off")=0 + Set gtmtypes("icode_str",1,"len")=12 + Set gtmtypes("icode_str",1,"type")="mstr" + Set gtmtypfldindx("icode_str","str")=1 + Set gtmtypes("icode_str",2,"name")="icode_str.str.char_len" + Set gtmtypes("icode_str",2,"off")=0 + Set gtmtypes("icode_str",2,"len")=4 + Set gtmtypes("icode_str",2,"type")="unsigned-int" + Set gtmtypfldindx("icode_str","str.char_len")=2 + Set gtmtypes("icode_str",3,"name")="icode_str.str.len" + Set gtmtypes("icode_str",3,"off")=4 + Set gtmtypes("icode_str",3,"len")=4 + Set gtmtypes("icode_str",3,"type")="int" + Set gtmtypfldindx("icode_str","str.len")=3 + Set gtmtypes("icode_str",4,"name")="icode_str.str.addr" + Set gtmtypes("icode_str",4,"off")=8 + Set gtmtypes("icode_str",4,"len")=4 + Set gtmtypes("icode_str",4,"type")="addr" + Set gtmtypfldindx("icode_str","str.addr")=4 + Set gtmtypes("icode_str",5,"name")="icode_str.code" + Set gtmtypes("icode_str",5,"off")=12 + Set gtmtypes("icode_str",5,"len")=4 + Set gtmtypes("icode_str",5,"type")="unsigned-int" + Set gtmtypfldindx("icode_str","code")=5 + ; + Set gtmtypes("ihdtyp")="struct" + Set gtmtypes("ihdtyp",0)=7 + Set gtmtypes("ihdtyp","len")=28 + Set gtmtypes("ihdtyp",1,"name")="ihdtyp.indce" + Set gtmtypes("ihdtyp",1,"off")=0 + Set gtmtypes("ihdtyp",1,"len")=4 + Set gtmtypes("ihdtyp",1,"type")="addr" + Set gtmtypfldindx("ihdtyp","indce")=1 + Set gtmtypes("ihdtyp",2,"name")="ihdtyp.vartab_off" + Set gtmtypes("ihdtyp",2,"off")=4 + Set gtmtypes("ihdtyp",2,"len")=4 + Set gtmtypes("ihdtyp",2,"type")="int" + Set gtmtypfldindx("ihdtyp","vartab_off")=2 + Set gtmtypes("ihdtyp",3,"name")="ihdtyp.vartab_len" + Set gtmtypes("ihdtyp",3,"off")=8 + Set gtmtypes("ihdtyp",3,"len")=4 + Set gtmtypes("ihdtyp",3,"type")="int" + Set gtmtypfldindx("ihdtyp","vartab_len")=3 + Set gtmtypes("ihdtyp",4,"name")="ihdtyp.temp_mvals" + Set gtmtypes("ihdtyp",4,"off")=12 + Set gtmtypes("ihdtyp",4,"len")=4 + Set gtmtypes("ihdtyp",4,"type")="int" + Set gtmtypfldindx("ihdtyp","temp_mvals")=4 + Set gtmtypes("ihdtyp",5,"name")="ihdtyp.temp_size" + Set gtmtypes("ihdtyp",5,"off")=16 + Set gtmtypes("ihdtyp",5,"len")=4 + Set gtmtypes("ihdtyp",5,"type")="int" + Set gtmtypfldindx("ihdtyp","temp_size")=5 + Set gtmtypes("ihdtyp",6,"name")="ihdtyp.fixup_vals_off" + Set gtmtypes("ihdtyp",6,"off")=20 + Set gtmtypes("ihdtyp",6,"len")=4 + Set gtmtypes("ihdtyp",6,"type")="int" + Set gtmtypfldindx("ihdtyp","fixup_vals_off")=6 + Set gtmtypes("ihdtyp",7,"name")="ihdtyp.fixup_vals_num" + Set gtmtypes("ihdtyp",7,"off")=24 + Set gtmtypes("ihdtyp",7,"len")=4 + Set gtmtypes("ihdtyp",7,"type")="int" + Set gtmtypfldindx("ihdtyp","fixup_vals_num")=7 + ; + Set gtmtypes("inc_header")="struct" + Set gtmtypes("inc_header",0)=14 + Set gtmtypes("inc_header","len")=280 + Set gtmtypes("inc_header",1,"name")="inc_header.label" + Set gtmtypes("inc_header",1,"off")=0 + Set gtmtypes("inc_header",1,"len")=26 + Set gtmtypes("inc_header",1,"type")="char" + Set gtmtypfldindx("inc_header","label")=1 + Set gtmtypes("inc_header",2,"name")="inc_header.date" + Set gtmtypes("inc_header",2,"off")=26 + Set gtmtypes("inc_header",2,"len")=14 + Set gtmtypes("inc_header",2,"type")="char" + Set gtmtypfldindx("inc_header","date")=2 + Set gtmtypes("inc_header",3,"name")="inc_header.reg" + Set gtmtypes("inc_header",3,"off")=40 + Set gtmtypes("inc_header",3,"len")=31 + Set gtmtypes("inc_header",3,"type")="char" + Set gtmtypfldindx("inc_header","reg")=3 + Set gtmtypes("inc_header",4,"name")="inc_header.start_tn" + Set gtmtypes("inc_header",4,"off")=72 + Set gtmtypes("inc_header",4,"len")=8 + Set gtmtypes("inc_header",4,"type")="uint64_t" + Set gtmtypfldindx("inc_header","start_tn")=4 + Set gtmtypes("inc_header",5,"name")="inc_header.end_tn" + Set gtmtypes("inc_header",5,"off")=80 + Set gtmtypes("inc_header",5,"len")=8 + Set gtmtypes("inc_header",5,"type")="uint64_t" + Set gtmtypfldindx("inc_header","end_tn")=5 + Set gtmtypes("inc_header",6,"name")="inc_header.db_total_blks" + Set gtmtypes("inc_header",6,"off")=88 + Set gtmtypes("inc_header",6,"len")=4 + Set gtmtypes("inc_header",6,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","db_total_blks")=6 + Set gtmtypes("inc_header",7,"name")="inc_header.blk_size" + Set gtmtypes("inc_header",7,"off")=92 + Set gtmtypes("inc_header",7,"len")=4 + Set gtmtypes("inc_header",7,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","blk_size")=7 + Set gtmtypes("inc_header",8,"name")="inc_header.blks_to_upgrd" + Set gtmtypes("inc_header",8,"off")=96 + Set gtmtypes("inc_header",8,"len")=4 + Set gtmtypes("inc_header",8,"type")="int" + Set gtmtypfldindx("inc_header","blks_to_upgrd")=8 + Set gtmtypes("inc_header",9,"name")="inc_header.is_encrypted" + Set gtmtypes("inc_header",9,"off")=100 + Set gtmtypes("inc_header",9,"len")=4 + Set gtmtypes("inc_header",9,"type")="unsigned-int" + Set gtmtypfldindx("inc_header","is_encrypted")=9 + Set gtmtypes("inc_header",10,"name")="inc_header.encryption_hash" + Set gtmtypes("inc_header",10,"off")=104 + Set gtmtypes("inc_header",10,"len")=80 + Set gtmtypes("inc_header",10,"type")="char" + Set gtmtypfldindx("inc_header","encryption_hash")=10 + Set gtmtypes("inc_header",11,"name")="inc_header.encryption_hash2" + Set gtmtypes("inc_header",11,"off")=184 + Set gtmtypes("inc_header",11,"len")=80 + Set gtmtypes("inc_header",11,"type")="char" + Set gtmtypfldindx("inc_header","encryption_hash2")=11 + Set gtmtypes("inc_header",12,"name")="inc_header.non_null_iv" + Set gtmtypes("inc_header",12,"off")=264 + Set gtmtypes("inc_header",12,"len")=4 + Set gtmtypes("inc_header",12,"type")="boolean_t" + Set gtmtypfldindx("inc_header","non_null_iv")=12 + Set gtmtypes("inc_header",13,"name")="inc_header.encryption_hash_cutoff" + Set gtmtypes("inc_header",13,"off")=268 + Set gtmtypes("inc_header",13,"len")=4 + Set gtmtypes("inc_header",13,"type")="int" + Set gtmtypfldindx("inc_header","encryption_hash_cutoff")=13 + Set gtmtypes("inc_header",14,"name")="inc_header.encryption_hash2_start_tn" + Set gtmtypes("inc_header",14,"off")=272 + Set gtmtypes("inc_header",14,"len")=8 + Set gtmtypes("inc_header",14,"type")="uint64_t" + Set gtmtypfldindx("inc_header","encryption_hash2_start_tn")=14 + ; + Set gtmtypes("inc_list_struct")="struct" + Set gtmtypes("inc_list_struct",0)=5 + Set gtmtypes("inc_list_struct","len")=16 + Set gtmtypes("inc_list_struct",1,"name")="inc_list_struct.input_file" + Set gtmtypes("inc_list_struct",1,"off")=0 + Set gtmtypes("inc_list_struct",1,"len")=12 + Set gtmtypes("inc_list_struct",1,"type")="mstr" + Set gtmtypfldindx("inc_list_struct","input_file")=1 + Set gtmtypes("inc_list_struct",2,"name")="inc_list_struct.input_file.char_len" + Set gtmtypes("inc_list_struct",2,"off")=0 + Set gtmtypes("inc_list_struct",2,"len")=4 + Set gtmtypes("inc_list_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("inc_list_struct","input_file.char_len")=2 + Set gtmtypes("inc_list_struct",3,"name")="inc_list_struct.input_file.len" + Set gtmtypes("inc_list_struct",3,"off")=4 + Set gtmtypes("inc_list_struct",3,"len")=4 + Set gtmtypes("inc_list_struct",3,"type")="int" + Set gtmtypfldindx("inc_list_struct","input_file.len")=3 + Set gtmtypes("inc_list_struct",4,"name")="inc_list_struct.input_file.addr" + Set gtmtypes("inc_list_struct",4,"off")=8 + Set gtmtypes("inc_list_struct",4,"len")=4 + Set gtmtypes("inc_list_struct",4,"type")="addr" + Set gtmtypfldindx("inc_list_struct","input_file.addr")=4 + Set gtmtypes("inc_list_struct",5,"name")="inc_list_struct.next" + Set gtmtypes("inc_list_struct",5,"off")=12 + Set gtmtypes("inc_list_struct",5,"len")=4 + Set gtmtypes("inc_list_struct",5,"type")="addr" + Set gtmtypfldindx("inc_list_struct","next")=5 + ; + Set gtmtypes("inctn_detail_blknum_t")="struct" + Set gtmtypes("inctn_detail_blknum_t",0)=5 + Set gtmtypes("inctn_detail_blknum_t","len")=16 + Set gtmtypes("inctn_detail_blknum_t",1,"name")="inctn_detail_blknum_t.blknum" + Set gtmtypes("inctn_detail_blknum_t",1,"off")=0 + Set gtmtypes("inctn_detail_blknum_t",1,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",1,"type")="int" + Set gtmtypfldindx("inctn_detail_blknum_t","blknum")=1 + Set gtmtypes("inctn_detail_blknum_t",2,"name")="inctn_detail_blknum_t.filler_uint4" + Set gtmtypes("inctn_detail_blknum_t",2,"off")=4 + Set gtmtypes("inctn_detail_blknum_t",2,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",2,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_blknum_t","filler_uint4")=2 + Set gtmtypes("inctn_detail_blknum_t",3,"name")="inctn_detail_blknum_t.filler_short" + Set gtmtypes("inctn_detail_blknum_t",3,"off")=8 + Set gtmtypes("inctn_detail_blknum_t",3,"len")=2 + Set gtmtypes("inctn_detail_blknum_t",3,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blknum_t","filler_short")=3 + Set gtmtypes("inctn_detail_blknum_t",4,"name")="inctn_detail_blknum_t.opcode" + Set gtmtypes("inctn_detail_blknum_t",4,"off")=10 + Set gtmtypes("inctn_detail_blknum_t",4,"len")=2 + Set gtmtypes("inctn_detail_blknum_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blknum_t","opcode")=4 + Set gtmtypes("inctn_detail_blknum_t",5,"name")="inctn_detail_blknum_t.suffix" + Set gtmtypes("inctn_detail_blknum_t",5,"off")=12 + Set gtmtypes("inctn_detail_blknum_t",5,"len")=4 + Set gtmtypes("inctn_detail_blknum_t",5,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_blknum_t","suffix")=5 + ; + Set gtmtypes("inctn_detail_blks2upgrd_t")="struct" + Set gtmtypes("inctn_detail_blks2upgrd_t",0)=5 + Set gtmtypes("inctn_detail_blks2upgrd_t","len")=16 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"name")="inctn_detail_blks2upgrd_t.blks_to_upgrd_delta" + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"off")=0 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",1,"type")="int" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","blks_to_upgrd_delta")=1 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"name")="inctn_detail_blks2upgrd_t.filler_uint4" + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"off")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",2,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","filler_uint4")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"name")="inctn_detail_blks2upgrd_t.filler_short" + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"off")=8 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"len")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",3,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","filler_short")=3 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"name")="inctn_detail_blks2upgrd_t.opcode" + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"off")=10 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"len")=2 + Set gtmtypes("inctn_detail_blks2upgrd_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","opcode")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"name")="inctn_detail_blks2upgrd_t.suffix" + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"off")=12 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"len")=4 + Set gtmtypes("inctn_detail_blks2upgrd_t",5,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_blks2upgrd_t","suffix")=5 + ; + Set gtmtypes("inctn_detail_t")="union" + Set gtmtypes("inctn_detail_t",0)=12 + Set gtmtypes("inctn_detail_t","len")=16 + Set gtmtypes("inctn_detail_t",1,"name")="inctn_detail_t.blknum_struct" + Set gtmtypes("inctn_detail_t",1,"off")=0 + Set gtmtypes("inctn_detail_t",1,"len")=16 + Set gtmtypes("inctn_detail_t",1,"type")="inctn_detail_blknum_t" + Set gtmtypfldindx("inctn_detail_t","blknum_struct")=1 + Set gtmtypes("inctn_detail_t",2,"name")="inctn_detail_t.blknum_struct.blknum" + Set gtmtypes("inctn_detail_t",2,"off")=0 + Set gtmtypes("inctn_detail_t",2,"len")=4 + Set gtmtypes("inctn_detail_t",2,"type")="int" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.blknum")=2 + Set gtmtypes("inctn_detail_t",3,"name")="inctn_detail_t.blknum_struct.filler_uint4" + Set gtmtypes("inctn_detail_t",3,"off")=4 + Set gtmtypes("inctn_detail_t",3,"len")=4 + Set gtmtypes("inctn_detail_t",3,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.filler_uint4")=3 + Set gtmtypes("inctn_detail_t",4,"name")="inctn_detail_t.blknum_struct.filler_short" + Set gtmtypes("inctn_detail_t",4,"off")=8 + Set gtmtypes("inctn_detail_t",4,"len")=2 + Set gtmtypes("inctn_detail_t",4,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.filler_short")=4 + Set gtmtypes("inctn_detail_t",5,"name")="inctn_detail_t.blknum_struct.opcode" + Set gtmtypes("inctn_detail_t",5,"off")=10 + Set gtmtypes("inctn_detail_t",5,"len")=2 + Set gtmtypes("inctn_detail_t",5,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.opcode")=5 + Set gtmtypes("inctn_detail_t",6,"name")="inctn_detail_t.blknum_struct.suffix" + Set gtmtypes("inctn_detail_t",6,"off")=12 + Set gtmtypes("inctn_detail_t",6,"len")=4 + Set gtmtypes("inctn_detail_t",6,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_t","blknum_struct.suffix")=6 + Set gtmtypes("inctn_detail_t",7,"name")="inctn_detail_t.blks2upgrd_struct" + Set gtmtypes("inctn_detail_t",7,"off")=0 + Set gtmtypes("inctn_detail_t",7,"len")=16 + Set gtmtypes("inctn_detail_t",7,"type")="inctn_detail_blks2upgrd_t" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct")=7 + Set gtmtypes("inctn_detail_t",8,"name")="inctn_detail_t.blks2upgrd_struct.blks_to_upgrd_delta" + Set gtmtypes("inctn_detail_t",8,"off")=0 + Set gtmtypes("inctn_detail_t",8,"len")=4 + Set gtmtypes("inctn_detail_t",8,"type")="int" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.blks_to_upgrd_delta")=8 + Set gtmtypes("inctn_detail_t",9,"name")="inctn_detail_t.blks2upgrd_struct.filler_uint4" + Set gtmtypes("inctn_detail_t",9,"off")=4 + Set gtmtypes("inctn_detail_t",9,"len")=4 + Set gtmtypes("inctn_detail_t",9,"type")="unsigned-int" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.filler_uint4")=9 + Set gtmtypes("inctn_detail_t",10,"name")="inctn_detail_t.blks2upgrd_struct.filler_short" + Set gtmtypes("inctn_detail_t",10,"off")=8 + Set gtmtypes("inctn_detail_t",10,"len")=2 + Set gtmtypes("inctn_detail_t",10,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.filler_short")=10 + Set gtmtypes("inctn_detail_t",11,"name")="inctn_detail_t.blks2upgrd_struct.opcode" + Set gtmtypes("inctn_detail_t",11,"off")=10 + Set gtmtypes("inctn_detail_t",11,"len")=2 + Set gtmtypes("inctn_detail_t",11,"type")="unsigned-short" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.opcode")=11 + Set gtmtypes("inctn_detail_t",12,"name")="inctn_detail_t.blks2upgrd_struct.suffix" + Set gtmtypes("inctn_detail_t",12,"off")=12 + Set gtmtypes("inctn_detail_t",12,"len")=4 + Set gtmtypes("inctn_detail_t",12,"type")="jrec_suffix" + Set gtmtypfldindx("inctn_detail_t","blks2upgrd_struct.suffix")=12 + ; + Set gtmtypes("integ_error_blk_list")="struct" + Set gtmtypes("integ_error_blk_list",0)=3 + Set gtmtypes("integ_error_blk_list","len")=48 + Set gtmtypes("integ_error_blk_list",1,"name")="integ_error_blk_list.next" + Set gtmtypes("integ_error_blk_list",1,"off")=0 + Set gtmtypes("integ_error_blk_list",1,"len")=4 + Set gtmtypes("integ_error_blk_list",1,"type")="addr" + Set gtmtypfldindx("integ_error_blk_list","next")=1 + Set gtmtypes("integ_error_blk_list",2,"name")="integ_error_blk_list.blk_cnt" + Set gtmtypes("integ_error_blk_list",2,"off")=4 + Set gtmtypes("integ_error_blk_list",2,"len")=4 + Set gtmtypes("integ_error_blk_list",2,"type")="int" + Set gtmtypfldindx("integ_error_blk_list","blk_cnt")=2 + Set gtmtypes("integ_error_blk_list",3,"name")="integ_error_blk_list.blk_list" + Set gtmtypes("integ_error_blk_list",3,"off")=8 + Set gtmtypes("integ_error_blk_list",3,"len")=40 + Set gtmtypes("integ_error_blk_list",3,"type")="int" + Set gtmtypfldindx("integ_error_blk_list","blk_list")=3 + Set gtmtypes("integ_error_blk_list",3,"dim")=10 + ; + Set gtmtypes("io_desc")="struct" + Set gtmtypes("io_desc",0)=30 + Set gtmtypes("io_desc","len")=264 + Set gtmtypes("io_desc",1,"name")="io_desc.pair" + Set gtmtypes("io_desc",1,"off")=0 + Set gtmtypes("io_desc",1,"len")=8 + Set gtmtypes("io_desc",1,"type")="io_pair" + Set gtmtypfldindx("io_desc","pair")=1 + Set gtmtypes("io_desc",2,"name")="io_desc.pair.in" + Set gtmtypes("io_desc",2,"off")=0 + Set gtmtypes("io_desc",2,"len")=4 + Set gtmtypes("io_desc",2,"type")="addr" + Set gtmtypfldindx("io_desc","pair.in")=2 + Set gtmtypes("io_desc",3,"name")="io_desc.pair.out" + Set gtmtypes("io_desc",3,"off")=4 + Set gtmtypes("io_desc",3,"len")=4 + Set gtmtypes("io_desc",3,"type")="addr" + Set gtmtypfldindx("io_desc","pair.out")=3 + Set gtmtypes("io_desc",4,"name")="io_desc.trans_name" + Set gtmtypes("io_desc",4,"off")=8 + Set gtmtypes("io_desc",4,"len")=4 + Set gtmtypes("io_desc",4,"type")="addr" + Set gtmtypfldindx("io_desc","trans_name")=4 + Set gtmtypes("io_desc",5,"name")="io_desc.name" + Set gtmtypes("io_desc",5,"off")=12 + Set gtmtypes("io_desc",5,"len")=4 + Set gtmtypes("io_desc",5,"type")="addr" + Set gtmtypfldindx("io_desc","name")=5 + Set gtmtypes("io_desc",6,"name")="io_desc.error_handler" + Set gtmtypes("io_desc",6,"off")=16 + Set gtmtypes("io_desc",6,"len")=12 + Set gtmtypes("io_desc",6,"type")="mstr" + Set gtmtypfldindx("io_desc","error_handler")=6 + Set gtmtypes("io_desc",7,"name")="io_desc.error_handler.char_len" + Set gtmtypes("io_desc",7,"off")=16 + Set gtmtypes("io_desc",7,"len")=4 + Set gtmtypes("io_desc",7,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","error_handler.char_len")=7 + Set gtmtypes("io_desc",8,"name")="io_desc.error_handler.len" + Set gtmtypes("io_desc",8,"off")=20 + Set gtmtypes("io_desc",8,"len")=4 + Set gtmtypes("io_desc",8,"type")="int" + Set gtmtypfldindx("io_desc","error_handler.len")=8 + Set gtmtypes("io_desc",9,"name")="io_desc.error_handler.addr" + Set gtmtypes("io_desc",9,"off")=24 + Set gtmtypes("io_desc",9,"len")=4 + Set gtmtypes("io_desc",9,"type")="addr" + Set gtmtypfldindx("io_desc","error_handler.addr")=9 + Set gtmtypes("io_desc",10,"name")="io_desc.length" + Set gtmtypes("io_desc",10,"off")=28 + Set gtmtypes("io_desc",10,"len")=4 + Set gtmtypes("io_desc",10,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","length")=10 + Set gtmtypes("io_desc",11,"name")="io_desc.width" + Set gtmtypes("io_desc",11,"off")=32 + Set gtmtypes("io_desc",11,"len")=4 + Set gtmtypes("io_desc",11,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","width")=11 + Set gtmtypes("io_desc",12,"name")="io_desc.perm" + Set gtmtypes("io_desc",12,"off")=36 + Set gtmtypes("io_desc",12,"len")=1 + Set gtmtypes("io_desc",12,"type")="char" + Set gtmtypfldindx("io_desc","perm")=12 + Set gtmtypes("io_desc",13,"name")="io_desc.wrap" + Set gtmtypes("io_desc",13,"off")=37 + Set gtmtypes("io_desc",13,"len")=1 + Set gtmtypes("io_desc",13,"type")="char" + Set gtmtypfldindx("io_desc","wrap")=13 + Set gtmtypes("io_desc",14,"name")="io_desc.type" + Set gtmtypes("io_desc",14,"off")=40 + Set gtmtypes("io_desc",14,"len")=4 + Set gtmtypes("io_desc",14,"type")="int" + Set gtmtypfldindx("io_desc","type")=14 + Set gtmtypes("io_desc",15,"name")="io_desc.state" + Set gtmtypes("io_desc",15,"off")=44 + Set gtmtypes("io_desc",15,"len")=4 + Set gtmtypes("io_desc",15,"type")="int" + Set gtmtypfldindx("io_desc","state")=15 + Set gtmtypes("io_desc",16,"name")="io_desc.dollar" + Set gtmtypes("io_desc",16,"off")=48 + Set gtmtypes("io_desc",16,"len")=188 + Set gtmtypes("io_desc",16,"type")="struct" + Set gtmtypfldindx("io_desc","dollar")=16 + Set gtmtypes("io_desc",17,"name")="io_desc.dollar.x" + Set gtmtypes("io_desc",17,"off")=48 + Set gtmtypes("io_desc",17,"len")=4 + Set gtmtypes("io_desc",17,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","dollar.x")=17 + Set gtmtypes("io_desc",18,"name")="io_desc.dollar.y" + Set gtmtypes("io_desc",18,"off")=52 + Set gtmtypes("io_desc",18,"len")=4 + Set gtmtypes("io_desc",18,"type")="unsigned-int" + Set gtmtypfldindx("io_desc","dollar.y")=18 + Set gtmtypes("io_desc",19,"name")="io_desc.dollar.zeof" + Set gtmtypes("io_desc",19,"off")=56 + Set gtmtypes("io_desc",19,"len")=2 + Set gtmtypes("io_desc",19,"type")="unsigned-short" + Set gtmtypfldindx("io_desc","dollar.zeof")=19 + Set gtmtypes("io_desc",20,"name")="io_desc.dollar.za" + Set gtmtypes("io_desc",20,"off")=58 + Set gtmtypes("io_desc",20,"len")=2 + Set gtmtypes("io_desc",20,"type")="unsigned-short" + Set gtmtypfldindx("io_desc","dollar.za")=20 + Set gtmtypes("io_desc",21,"name")="io_desc.dollar.zb" + Set gtmtypes("io_desc",21,"off")=60 + Set gtmtypes("io_desc",21,"len")=16 + Set gtmtypes("io_desc",21,"type")="unsigned-char" + Set gtmtypfldindx("io_desc","dollar.zb")=21 + Set gtmtypes("io_desc",22,"name")="io_desc.dollar.key" + Set gtmtypes("io_desc",22,"off")=76 + Set gtmtypes("io_desc",22,"len")=80 + Set gtmtypes("io_desc",22,"type")="char" + Set gtmtypfldindx("io_desc","dollar.key")=22 + Set gtmtypes("io_desc",23,"name")="io_desc.dollar.device" + Set gtmtypes("io_desc",23,"off")=156 + Set gtmtypes("io_desc",23,"len")=80 + Set gtmtypes("io_desc",23,"type")="char" + Set gtmtypfldindx("io_desc","dollar.device")=23 + Set gtmtypes("io_desc",24,"name")="io_desc.esc_state" + Set gtmtypes("io_desc",24,"off")=236 + Set gtmtypes("io_desc",24,"len")=1 + Set gtmtypes("io_desc",24,"type")="unsigned-char" + Set gtmtypfldindx("io_desc","esc_state")=24 + Set gtmtypes("io_desc",25,"name")="io_desc.dev_sp" + Set gtmtypes("io_desc",25,"off")=240 + Set gtmtypes("io_desc",25,"len")=4 + Set gtmtypes("io_desc",25,"type")="addr" + Set gtmtypfldindx("io_desc","dev_sp")=25 + Set gtmtypes("io_desc",26,"name")="io_desc.disp_ptr" + Set gtmtypes("io_desc",26,"off")=244 + Set gtmtypes("io_desc",26,"len")=4 + Set gtmtypes("io_desc",26,"type")="addr" + Set gtmtypfldindx("io_desc","disp_ptr")=26 + Set gtmtypes("io_desc",27,"name")="io_desc.newly_created" + Set gtmtypes("io_desc",27,"off")=248 + Set gtmtypes("io_desc",27,"len")=4 + Set gtmtypes("io_desc",27,"type")="boolean_t" + Set gtmtypfldindx("io_desc","newly_created")=27 + Set gtmtypes("io_desc",28,"name")="io_desc.ichset" + Set gtmtypes("io_desc",28,"off")=252 + Set gtmtypes("io_desc",28,"len")=4 + Set gtmtypes("io_desc",28,"type")="int" + Set gtmtypfldindx("io_desc","ichset")=28 + Set gtmtypes("io_desc",29,"name")="io_desc.ochset" + Set gtmtypes("io_desc",29,"off")=256 + Set gtmtypes("io_desc",29,"len")=4 + Set gtmtypes("io_desc",29,"type")="int" + Set gtmtypfldindx("io_desc","ochset")=29 + Set gtmtypes("io_desc",30,"name")="io_desc.write_filter" + Set gtmtypes("io_desc",30,"off")=260 + Set gtmtypes("io_desc",30,"len")=4 + Set gtmtypes("io_desc",30,"type")="int" + Set gtmtypfldindx("io_desc","write_filter")=30 + ; + Set gtmtypes("io_log_name")="struct" + Set gtmtypes("io_log_name",0)=4 + Set gtmtypes("io_log_name","len")=12 + Set gtmtypes("io_log_name",1,"name")="io_log_name.iod" + Set gtmtypes("io_log_name",1,"off")=0 + Set gtmtypes("io_log_name",1,"len")=4 + Set gtmtypes("io_log_name",1,"type")="addr" + Set gtmtypfldindx("io_log_name","iod")=1 + Set gtmtypes("io_log_name",2,"name")="io_log_name.next" + Set gtmtypes("io_log_name",2,"off")=4 + Set gtmtypes("io_log_name",2,"len")=4 + Set gtmtypes("io_log_name",2,"type")="addr" + Set gtmtypfldindx("io_log_name","next")=2 + Set gtmtypes("io_log_name",3,"name")="io_log_name.len" + Set gtmtypes("io_log_name",3,"off")=8 + Set gtmtypes("io_log_name",3,"len")=1 + Set gtmtypes("io_log_name",3,"type")="unsigned-char" + Set gtmtypfldindx("io_log_name","len")=3 + Set gtmtypes("io_log_name",4,"name")="io_log_name.dollar_io" + Set gtmtypes("io_log_name",4,"off")=9 + Set gtmtypes("io_log_name",4,"len")=1 + Set gtmtypes("io_log_name",4,"type")="char" + Set gtmtypfldindx("io_log_name","dollar_io")=4 + ; + Set gtmtypes("io_pair")="struct" + Set gtmtypes("io_pair",0)=2 + Set gtmtypes("io_pair","len")=8 + Set gtmtypes("io_pair",1,"name")="io_pair.in" + Set gtmtypes("io_pair",1,"off")=0 + Set gtmtypes("io_pair",1,"len")=4 + Set gtmtypes("io_pair",1,"type")="addr" + Set gtmtypfldindx("io_pair","in")=1 + Set gtmtypes("io_pair",2,"name")="io_pair.out" + Set gtmtypes("io_pair",2,"off")=4 + Set gtmtypes("io_pair",2,"len")=4 + Set gtmtypes("io_pair",2,"type")="addr" + Set gtmtypfldindx("io_pair","out")=2 + ; + Set gtmtypes("io_terminator")="struct" + Set gtmtypes("io_terminator",0)=2 + Set gtmtypes("io_terminator","len")=8 + Set gtmtypes("io_terminator",1,"name")="io_terminator.x" + Set gtmtypes("io_terminator",1,"off")=0 + Set gtmtypes("io_terminator",1,"len")=4 + Set gtmtypes("io_terminator",1,"type")="unsigned-int" + Set gtmtypfldindx("io_terminator","x")=1 + Set gtmtypes("io_terminator",2,"name")="io_terminator.mask" + Set gtmtypes("io_terminator",2,"off")=4 + Set gtmtypes("io_terminator",2,"len")=4 + Set gtmtypes("io_terminator",2,"type")="unsigned-int" + Set gtmtypfldindx("io_terminator","mask")=2 + ; + Set gtmtypes("io_termmask")="struct" + Set gtmtypes("io_termmask",0)=1 + Set gtmtypes("io_termmask","len")=32 + Set gtmtypes("io_termmask",1,"name")="io_termmask.mask" + Set gtmtypes("io_termmask",1,"off")=0 + Set gtmtypes("io_termmask",1,"len")=32 + Set gtmtypes("io_termmask",1,"type")="unsigned-int" + Set gtmtypfldindx("io_termmask","mask")=1 + Set gtmtypes("io_termmask",1,"dim")=8 + ; + Set gtmtypes("iosb")="struct" + Set gtmtypes("iosb",0)=3 + Set gtmtypes("iosb","len")=8 + Set gtmtypes("iosb",1,"name")="iosb.status" + Set gtmtypes("iosb",1,"off")=0 + Set gtmtypes("iosb",1,"len")=2 + Set gtmtypes("iosb",1,"type")="unsigned-short" + Set gtmtypfldindx("iosb","status")=1 + Set gtmtypes("iosb",2,"name")="iosb.char_ct" + Set gtmtypes("iosb",2,"off")=2 + Set gtmtypes("iosb",2,"len")=2 + Set gtmtypes("iosb",2,"type")="unsigned-short" + Set gtmtypfldindx("iosb","char_ct")=2 + Set gtmtypes("iosb",3,"name")="iosb.dev_dep_info" + Set gtmtypes("iosb",3,"off")=4 + Set gtmtypes("iosb",3,"len")=4 + Set gtmtypes("iosb",3,"type")="unsigned-int" + Set gtmtypfldindx("iosb","dev_dep_info")=3 + ; + Set gtmtypes("ipcs_mesg")="struct" + Set gtmtypes("ipcs_mesg",0)=6 + Set gtmtypes("ipcs_mesg","len")=4120 + Set gtmtypes("ipcs_mesg",1,"name")="ipcs_mesg.semid" + Set gtmtypes("ipcs_mesg",1,"off")=0 + Set gtmtypes("ipcs_mesg",1,"len")=4 + Set gtmtypes("ipcs_mesg",1,"type")="int" + Set gtmtypfldindx("ipcs_mesg","semid")=1 + Set gtmtypes("ipcs_mesg",2,"name")="ipcs_mesg.shmid" + Set gtmtypes("ipcs_mesg",2,"off")=4 + Set gtmtypes("ipcs_mesg",2,"len")=4 + Set gtmtypes("ipcs_mesg",2,"type")="int" + Set gtmtypfldindx("ipcs_mesg","shmid")=2 + Set gtmtypes("ipcs_mesg",3,"name")="ipcs_mesg.gt_sem_ctime" + Set gtmtypes("ipcs_mesg",3,"off")=8 + Set gtmtypes("ipcs_mesg",3,"len")=4 + Set gtmtypes("ipcs_mesg",3,"type")="time_t" + Set gtmtypfldindx("ipcs_mesg","gt_sem_ctime")=3 + Set gtmtypes("ipcs_mesg",4,"name")="ipcs_mesg.gt_shm_ctime" + Set gtmtypes("ipcs_mesg",4,"off")=12 + Set gtmtypes("ipcs_mesg",4,"len")=4 + Set gtmtypes("ipcs_mesg",4,"type")="time_t" + Set gtmtypfldindx("ipcs_mesg","gt_shm_ctime")=4 + Set gtmtypes("ipcs_mesg",5,"name")="ipcs_mesg.fn_len" + Set gtmtypes("ipcs_mesg",5,"off")=16 + Set gtmtypes("ipcs_mesg",5,"len")=4 + Set gtmtypes("ipcs_mesg",5,"type")="unsigned-int" + Set gtmtypfldindx("ipcs_mesg","fn_len")=5 + Set gtmtypes("ipcs_mesg",6,"name")="ipcs_mesg.fn" + Set gtmtypes("ipcs_mesg",6,"off")=20 + Set gtmtypes("ipcs_mesg",6,"len")=4097 + Set gtmtypes("ipcs_mesg",6,"type")="char" + Set gtmtypfldindx("ipcs_mesg","fn")=6 + ; + Set gtmtypes("jext_heap_elem_t")="struct" + Set gtmtypes("jext_heap_elem_t",0)=2 + Set gtmtypes("jext_heap_elem_t","len")=8 + Set gtmtypes("jext_heap_elem_t",1,"name")="jext_heap_elem_t.rctl_index" + Set gtmtypes("jext_heap_elem_t",1,"off")=0 + Set gtmtypes("jext_heap_elem_t",1,"len")=4 + Set gtmtypes("jext_heap_elem_t",1,"type")="int" + Set gtmtypfldindx("jext_heap_elem_t","rctl_index")=1 + Set gtmtypes("jext_heap_elem_t",2,"name")="jext_heap_elem_t.jext_rec" + Set gtmtypes("jext_heap_elem_t",2,"off")=4 + Set gtmtypes("jext_heap_elem_t",2,"len")=4 + Set gtmtypes("jext_heap_elem_t",2,"type")="addr" + Set gtmtypfldindx("jext_heap_elem_t","jext_rec")=2 + ; + Set gtmtypes("jnl_action")="struct" + Set gtmtypes("jnl_action",0)=2 + Set gtmtypes("jnl_action","len")=8 + Set gtmtypes("jnl_action",1,"name")="jnl_action.operation" + Set gtmtypes("jnl_action",1,"off")=0 + Set gtmtypes("jnl_action",1,"len")=4 + Set gtmtypes("jnl_action",1,"type")="int" + Set gtmtypfldindx("jnl_action","operation")=1 + Set gtmtypes("jnl_action",2,"name")="jnl_action.nodeflags" + Set gtmtypes("jnl_action",2,"off")=4 + Set gtmtypes("jnl_action",2,"len")=4 + Set gtmtypes("jnl_action",2,"type")="unsigned-int" + Set gtmtypfldindx("jnl_action","nodeflags")=2 + ; + Set gtmtypes("jnl_buffer")="struct" + Set gtmtypes("jnl_buffer",0)=60 + Set gtmtypes("jnl_buffer","len")=536 + Set gtmtypes("jnl_buffer",1,"name")="jnl_buffer.eov_tn" + Set gtmtypes("jnl_buffer",1,"off")=0 + Set gtmtypes("jnl_buffer",1,"len")=8 + Set gtmtypes("jnl_buffer",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","eov_tn")=1 + Set gtmtypes("jnl_buffer",2,"name")="jnl_buffer.epoch_tn" + Set gtmtypes("jnl_buffer",2,"off")=8 + Set gtmtypes("jnl_buffer",2,"len")=8 + Set gtmtypes("jnl_buffer",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","epoch_tn")=2 + Set gtmtypes("jnl_buffer",3,"name")="jnl_buffer.end_seqno" + Set gtmtypes("jnl_buffer",3,"off")=16 + Set gtmtypes("jnl_buffer",3,"len")=8 + Set gtmtypes("jnl_buffer",3,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","end_seqno")=3 + Set gtmtypes("jnl_buffer",4,"name")="jnl_buffer.strm_end_seqno" + Set gtmtypes("jnl_buffer",4,"off")=24 + Set gtmtypes("jnl_buffer",4,"len")=128 + Set gtmtypes("jnl_buffer",4,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","strm_end_seqno")=4 + Set gtmtypes("jnl_buffer",4,"dim")=16 + Set gtmtypes("jnl_buffer",5,"name")="jnl_buffer.min_write_size" + Set gtmtypes("jnl_buffer",5,"off")=152 + Set gtmtypes("jnl_buffer",5,"len")=4 + Set gtmtypes("jnl_buffer",5,"type")="int" + Set gtmtypfldindx("jnl_buffer","min_write_size")=5 + Set gtmtypes("jnl_buffer",6,"name")="jnl_buffer.max_write_size" + Set gtmtypes("jnl_buffer",6,"off")=156 + Set gtmtypes("jnl_buffer",6,"len")=4 + Set gtmtypes("jnl_buffer",6,"type")="int" + Set gtmtypfldindx("jnl_buffer","max_write_size")=6 + Set gtmtypes("jnl_buffer",7,"name")="jnl_buffer.size" + Set gtmtypes("jnl_buffer",7,"off")=160 + Set gtmtypes("jnl_buffer",7,"len")=4 + Set gtmtypes("jnl_buffer",7,"type")="int" + Set gtmtypfldindx("jnl_buffer","size")=7 + Set gtmtypes("jnl_buffer",8,"name")="jnl_buffer.epoch_interval" + Set gtmtypes("jnl_buffer",8,"off")=164 + Set gtmtypes("jnl_buffer",8,"len")=4 + Set gtmtypes("jnl_buffer",8,"type")="int" + Set gtmtypfldindx("jnl_buffer","epoch_interval")=8 + Set gtmtypes("jnl_buffer",9,"name")="jnl_buffer.before_images" + Set gtmtypes("jnl_buffer",9,"off")=168 + Set gtmtypes("jnl_buffer",9,"len")=4 + Set gtmtypes("jnl_buffer",9,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","before_images")=9 + Set gtmtypes("jnl_buffer",10,"name")="jnl_buffer.buff_off" + Set gtmtypes("jnl_buffer",10,"off")=172 + Set gtmtypes("jnl_buffer",10,"len")=4 + Set gtmtypes("jnl_buffer",10,"type")="uintptr_t" + Set gtmtypfldindx("jnl_buffer","buff_off")=10 + Set gtmtypes("jnl_buffer",11,"name")="jnl_buffer.gtm_free" + Set gtmtypes("jnl_buffer",11,"off")=176 + Set gtmtypes("jnl_buffer",11,"len")=4 + Set gtmtypes("jnl_buffer",11,"type")="int" + Set gtmtypfldindx("jnl_buffer","gtm_free")=11 + Set gtmtypes("jnl_buffer",12,"name")="jnl_buffer.freeaddr" + Set gtmtypes("jnl_buffer",12,"off")=180 + Set gtmtypes("jnl_buffer",12,"len")=4 + Set gtmtypes("jnl_buffer",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","freeaddr")=12 + Set gtmtypes("jnl_buffer",13,"name")="jnl_buffer.end_of_data" + Set gtmtypes("jnl_buffer",13,"off")=184 + Set gtmtypes("jnl_buffer",13,"len")=4 + Set gtmtypes("jnl_buffer",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","end_of_data")=13 + Set gtmtypes("jnl_buffer",14,"name")="jnl_buffer.filesize" + Set gtmtypes("jnl_buffer",14,"off")=188 + Set gtmtypes("jnl_buffer",14,"len")=4 + Set gtmtypes("jnl_buffer",14,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","filesize")=14 + Set gtmtypes("jnl_buffer",15,"name")="jnl_buffer.blocked" + Set gtmtypes("jnl_buffer",15,"off")=192 + Set gtmtypes("jnl_buffer",15,"len")=4 + Set gtmtypes("jnl_buffer",15,"type")="int" + Set gtmtypfldindx("jnl_buffer","blocked")=15 + Set gtmtypes("jnl_buffer",16,"name")="jnl_buffer.fsync_dskaddr" + Set gtmtypes("jnl_buffer",16,"off")=196 + Set gtmtypes("jnl_buffer",16,"len")=4 + Set gtmtypes("jnl_buffer",16,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","fsync_dskaddr")=16 + Set gtmtypes("jnl_buffer",17,"name")="jnl_buffer.dsk" + Set gtmtypes("jnl_buffer",17,"off")=200 + Set gtmtypes("jnl_buffer",17,"len")=4 + Set gtmtypes("jnl_buffer",17,"type")="int" + Set gtmtypfldindx("jnl_buffer","dsk")=17 + Set gtmtypes("jnl_buffer",18,"name")="jnl_buffer.wrtsize" + Set gtmtypes("jnl_buffer",18,"off")=204 + Set gtmtypes("jnl_buffer",18,"len")=4 + Set gtmtypes("jnl_buffer",18,"type")="int" + Set gtmtypfldindx("jnl_buffer","wrtsize")=18 + Set gtmtypes("jnl_buffer",19,"name")="jnl_buffer.dskaddr" + Set gtmtypes("jnl_buffer",19,"off")=208 + Set gtmtypes("jnl_buffer",19,"len")=4 + Set gtmtypes("jnl_buffer",19,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","dskaddr")=19 + Set gtmtypes("jnl_buffer",20,"name")="jnl_buffer.now_writer" + Set gtmtypes("jnl_buffer",20,"off")=212 + Set gtmtypes("jnl_buffer",20,"len")=4 + Set gtmtypes("jnl_buffer",20,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","now_writer")=20 + Set gtmtypes("jnl_buffer",21,"name")="jnl_buffer.image_count" + Set gtmtypes("jnl_buffer",21,"off")=216 + Set gtmtypes("jnl_buffer",21,"len")=4 + Set gtmtypes("jnl_buffer",21,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","image_count")=21 + Set gtmtypes("jnl_buffer",22,"name")="jnl_buffer.iosb" + Set gtmtypes("jnl_buffer",22,"off")=220 + Set gtmtypes("jnl_buffer",22,"len")=8 + Set gtmtypes("jnl_buffer",22,"type")="struct" + Set gtmtypfldindx("jnl_buffer","iosb")=22 + Set gtmtypes("jnl_buffer",23,"name")="jnl_buffer.iosb.cond" + Set gtmtypes("jnl_buffer",23,"off")=220 + Set gtmtypes("jnl_buffer",23,"len")=2 + Set gtmtypes("jnl_buffer",23,"type")="short" + Set gtmtypfldindx("jnl_buffer","iosb.cond")=23 + Set gtmtypes("jnl_buffer",24,"name")="jnl_buffer.iosb.length" + Set gtmtypes("jnl_buffer",24,"off")=222 + Set gtmtypes("jnl_buffer",24,"len")=2 + Set gtmtypes("jnl_buffer",24,"type")="unsigned-short" + Set gtmtypfldindx("jnl_buffer","iosb.length")=24 + Set gtmtypes("jnl_buffer",25,"name")="jnl_buffer.iosb.dev_specific" + Set gtmtypes("jnl_buffer",25,"off")=224 + Set gtmtypes("jnl_buffer",25,"len")=4 + Set gtmtypes("jnl_buffer",25,"type")="int" + Set gtmtypfldindx("jnl_buffer","iosb.dev_specific")=25 + Set gtmtypes("jnl_buffer",26,"name")="jnl_buffer.log2_of_alignsize" + Set gtmtypes("jnl_buffer",26,"off")=228 + Set gtmtypes("jnl_buffer",26,"len")=4 + Set gtmtypes("jnl_buffer",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","log2_of_alignsize")=26 + Set gtmtypes("jnl_buffer",27,"name")="jnl_buffer.eov_timestamp" + Set gtmtypes("jnl_buffer",27,"off")=232 + Set gtmtypes("jnl_buffer",27,"len")=4 + Set gtmtypes("jnl_buffer",27,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","eov_timestamp")=27 + Set gtmtypes("jnl_buffer",28,"name")="jnl_buffer.cycle" + Set gtmtypes("jnl_buffer",28,"off")=236 + Set gtmtypes("jnl_buffer",28,"len")=4 + Set gtmtypes("jnl_buffer",28,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","cycle")=28 + Set gtmtypes("jnl_buffer",29,"name")="jnl_buffer.qiocnt" + Set gtmtypes("jnl_buffer",29,"off")=240 + Set gtmtypes("jnl_buffer",29,"len")=4 + Set gtmtypes("jnl_buffer",29,"type")="int" + Set gtmtypfldindx("jnl_buffer","qiocnt")=29 + Set gtmtypes("jnl_buffer",30,"name")="jnl_buffer.bytcnt" + Set gtmtypes("jnl_buffer",30,"off")=244 + Set gtmtypes("jnl_buffer",30,"len")=4 + Set gtmtypes("jnl_buffer",30,"type")="int" + Set gtmtypfldindx("jnl_buffer","bytcnt")=30 + Set gtmtypes("jnl_buffer",31,"name")="jnl_buffer.errcnt" + Set gtmtypes("jnl_buffer",31,"off")=248 + Set gtmtypes("jnl_buffer",31,"len")=4 + Set gtmtypes("jnl_buffer",31,"type")="int" + Set gtmtypfldindx("jnl_buffer","errcnt")=31 + Set gtmtypes("jnl_buffer",32,"name")="jnl_buffer.reccnt" + Set gtmtypes("jnl_buffer",32,"off")=252 + Set gtmtypes("jnl_buffer",32,"len")=144 + Set gtmtypes("jnl_buffer",32,"type")="int" + Set gtmtypfldindx("jnl_buffer","reccnt")=32 + Set gtmtypes("jnl_buffer",32,"dim")=36 + Set gtmtypes("jnl_buffer",33,"name")="jnl_buffer.filler_align" + Set gtmtypes("jnl_buffer",33,"off")=396 + Set gtmtypes("jnl_buffer",33,"len")=4 + Set gtmtypes("jnl_buffer",33,"type")="int" + Set gtmtypfldindx("jnl_buffer","filler_align")=33 + Set gtmtypes("jnl_buffer",34,"name")="jnl_buffer.prev_jrec_time" + Set gtmtypes("jnl_buffer",34,"off")=400 + Set gtmtypes("jnl_buffer",34,"len")=4 + Set gtmtypes("jnl_buffer",34,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","prev_jrec_time")=34 + Set gtmtypes("jnl_buffer",35,"name")="jnl_buffer.free_update_pid" + Set gtmtypes("jnl_buffer",35,"off")=404 + Set gtmtypes("jnl_buffer",35,"len")=4 + Set gtmtypes("jnl_buffer",35,"type")="int" + Set gtmtypfldindx("jnl_buffer","free_update_pid")=35 + Set gtmtypes("jnl_buffer",36,"name")="jnl_buffer.next_epoch_time" + Set gtmtypes("jnl_buffer",36,"off")=408 + Set gtmtypes("jnl_buffer",36,"len")=4 + Set gtmtypes("jnl_buffer",36,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","next_epoch_time")=36 + Set gtmtypes("jnl_buffer",37,"name")="jnl_buffer.need_db_fsync" + Set gtmtypes("jnl_buffer",37,"off")=412 + Set gtmtypes("jnl_buffer",37,"len")=4 + Set gtmtypes("jnl_buffer",37,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","need_db_fsync")=37 + Set gtmtypes("jnl_buffer",38,"name")="jnl_buffer.io_in_prog" + Set gtmtypes("jnl_buffer",38,"off")=416 + Set gtmtypes("jnl_buffer",38,"len")=4 + Set gtmtypes("jnl_buffer",38,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog")=38 + Set gtmtypes("jnl_buffer",39,"name")="jnl_buffer.enospc_errcnt" + Set gtmtypes("jnl_buffer",39,"off")=420 + Set gtmtypes("jnl_buffer",39,"len")=4 + Set gtmtypes("jnl_buffer",39,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","enospc_errcnt")=39 + Set gtmtypes("jnl_buffer",40,"name")="jnl_buffer.max_jrec_len" + Set gtmtypes("jnl_buffer",40,"off")=424 + Set gtmtypes("jnl_buffer",40,"len")=4 + Set gtmtypes("jnl_buffer",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","max_jrec_len")=40 + Set gtmtypes("jnl_buffer",41,"name")="jnl_buffer.fs_block_size" + Set gtmtypes("jnl_buffer",41,"off")=428 + Set gtmtypes("jnl_buffer",41,"len")=4 + Set gtmtypes("jnl_buffer",41,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","fs_block_size")=41 + Set gtmtypes("jnl_buffer",42,"name")="jnl_buffer.post_epoch_freeaddr" + Set gtmtypes("jnl_buffer",42,"off")=432 + Set gtmtypes("jnl_buffer",42,"len")=4 + Set gtmtypes("jnl_buffer",42,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","post_epoch_freeaddr")=42 + Set gtmtypes("jnl_buffer",43,"name")="jnl_buffer.last_eof_written" + Set gtmtypes("jnl_buffer",43,"off")=436 + Set gtmtypes("jnl_buffer",43,"len")=4 + Set gtmtypes("jnl_buffer",43,"type")="boolean_t" + Set gtmtypfldindx("jnl_buffer","last_eof_written")=43 + Set gtmtypes("jnl_buffer",44,"name")="jnl_buffer.end_of_data_at_open" + Set gtmtypes("jnl_buffer",44,"off")=440 + Set gtmtypes("jnl_buffer",44,"len")=4 + Set gtmtypes("jnl_buffer",44,"type")="unsigned-int" + Set gtmtypfldindx("jnl_buffer","end_of_data_at_open")=44 + Set gtmtypes("jnl_buffer",45,"name")="jnl_buffer.fill_cacheline0" + Set gtmtypes("jnl_buffer",45,"off")=444 + Set gtmtypes("jnl_buffer",45,"len")=24 + Set gtmtypes("jnl_buffer",45,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline0")=45 + Set gtmtypes("jnl_buffer",46,"name")="jnl_buffer.io_in_prog_latch" + Set gtmtypes("jnl_buffer",46,"off")=468 + Set gtmtypes("jnl_buffer",46,"len")=8 + Set gtmtypes("jnl_buffer",46,"type")="global_latch_t" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch")=46 + Set gtmtypes("jnl_buffer",47,"name")="jnl_buffer.io_in_prog_latch.u" + Set gtmtypes("jnl_buffer",47,"off")=468 + Set gtmtypes("jnl_buffer",47,"len")=8 + Set gtmtypes("jnl_buffer",47,"type")="union" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u")=47 + Set gtmtypes("jnl_buffer",48,"name")="jnl_buffer.io_in_prog_latch.u.pid_imgcnt" + Set gtmtypes("jnl_buffer",48,"off")=468 + Set gtmtypes("jnl_buffer",48,"len")=8 + Set gtmtypes("jnl_buffer",48,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.pid_imgcnt")=48 + Set gtmtypes("jnl_buffer",49,"name")="jnl_buffer.io_in_prog_latch.u.parts" + Set gtmtypes("jnl_buffer",49,"off")=468 + Set gtmtypes("jnl_buffer",49,"len")=8 + Set gtmtypes("jnl_buffer",49,"type")="struct" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts")=49 + Set gtmtypes("jnl_buffer",50,"name")="jnl_buffer.io_in_prog_latch.u.parts.latch_pid" + Set gtmtypes("jnl_buffer",50,"off")=468 + Set gtmtypes("jnl_buffer",50,"len")=4 + Set gtmtypes("jnl_buffer",50,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts.latch_pid")=50 + Set gtmtypes("jnl_buffer",51,"name")="jnl_buffer.io_in_prog_latch.u.parts.latch_word" + Set gtmtypes("jnl_buffer",51,"off")=472 + Set gtmtypes("jnl_buffer",51,"len")=4 + Set gtmtypes("jnl_buffer",51,"type")="int" + Set gtmtypfldindx("jnl_buffer","io_in_prog_latch.u.parts.latch_word")=51 + Set gtmtypes("jnl_buffer",52,"name")="jnl_buffer.fill_cacheline1" + Set gtmtypes("jnl_buffer",52,"off")=476 + Set gtmtypes("jnl_buffer",52,"len")=24 + Set gtmtypes("jnl_buffer",52,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline1")=52 + Set gtmtypes("jnl_buffer",53,"name")="jnl_buffer.fsync_in_prog_latch" + Set gtmtypes("jnl_buffer",53,"off")=500 + Set gtmtypes("jnl_buffer",53,"len")=8 + Set gtmtypes("jnl_buffer",53,"type")="global_latch_t" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch")=53 + Set gtmtypes("jnl_buffer",54,"name")="jnl_buffer.fsync_in_prog_latch.u" + Set gtmtypes("jnl_buffer",54,"off")=500 + Set gtmtypes("jnl_buffer",54,"len")=8 + Set gtmtypes("jnl_buffer",54,"type")="union" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u")=54 + Set gtmtypes("jnl_buffer",55,"name")="jnl_buffer.fsync_in_prog_latch.u.pid_imgcnt" + Set gtmtypes("jnl_buffer",55,"off")=500 + Set gtmtypes("jnl_buffer",55,"len")=8 + Set gtmtypes("jnl_buffer",55,"type")="uint64_t" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.pid_imgcnt")=55 + Set gtmtypes("jnl_buffer",56,"name")="jnl_buffer.fsync_in_prog_latch.u.parts" + Set gtmtypes("jnl_buffer",56,"off")=500 + Set gtmtypes("jnl_buffer",56,"len")=8 + Set gtmtypes("jnl_buffer",56,"type")="struct" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts")=56 + Set gtmtypes("jnl_buffer",57,"name")="jnl_buffer.fsync_in_prog_latch.u.parts.latch_pid" + Set gtmtypes("jnl_buffer",57,"off")=500 + Set gtmtypes("jnl_buffer",57,"len")=4 + Set gtmtypes("jnl_buffer",57,"type")="int" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts.latch_pid")=57 + Set gtmtypes("jnl_buffer",58,"name")="jnl_buffer.fsync_in_prog_latch.u.parts.latch_word" + Set gtmtypes("jnl_buffer",58,"off")=504 + Set gtmtypes("jnl_buffer",58,"len")=4 + Set gtmtypes("jnl_buffer",58,"type")="int" + Set gtmtypfldindx("jnl_buffer","fsync_in_prog_latch.u.parts.latch_word")=58 + Set gtmtypes("jnl_buffer",59,"name")="jnl_buffer.fill_cacheline2" + Set gtmtypes("jnl_buffer",59,"off")=508 + Set gtmtypes("jnl_buffer",59,"len")=24 + Set gtmtypes("jnl_buffer",59,"type")="char" + Set gtmtypfldindx("jnl_buffer","fill_cacheline2")=59 + Set gtmtypes("jnl_buffer",60,"name")="jnl_buffer.buff" + Set gtmtypes("jnl_buffer",60,"off")=532 + Set gtmtypes("jnl_buffer",60,"len")=1 + Set gtmtypes("jnl_buffer",60,"type")="unsigned-char" + Set gtmtypfldindx("jnl_buffer","buff")=60 + ; + Set gtmtypes("jnl_create_info")="struct" + Set gtmtypes("jnl_create_info",0)=35 + Set gtmtypes("jnl_create_info","len")=540 + Set gtmtypes("jnl_create_info",1,"name")="jnl_create_info.status" + Set gtmtypes("jnl_create_info",1,"off")=0 + Set gtmtypes("jnl_create_info",1,"len")=4 + Set gtmtypes("jnl_create_info",1,"type")="int" + Set gtmtypfldindx("jnl_create_info","status")=1 + Set gtmtypes("jnl_create_info",2,"name")="jnl_create_info.alloc" + Set gtmtypes("jnl_create_info",2,"off")=4 + Set gtmtypes("jnl_create_info",2,"len")=4 + Set gtmtypes("jnl_create_info",2,"type")="int" + Set gtmtypfldindx("jnl_create_info","alloc")=2 + Set gtmtypes("jnl_create_info",3,"name")="jnl_create_info.extend" + Set gtmtypes("jnl_create_info",3,"off")=8 + Set gtmtypes("jnl_create_info",3,"len")=4 + Set gtmtypes("jnl_create_info",3,"type")="int" + Set gtmtypfldindx("jnl_create_info","extend")=3 + Set gtmtypes("jnl_create_info",4,"name")="jnl_create_info.buffer" + Set gtmtypes("jnl_create_info",4,"off")=12 + Set gtmtypes("jnl_create_info",4,"len")=4 + Set gtmtypes("jnl_create_info",4,"type")="int" + Set gtmtypfldindx("jnl_create_info","buffer")=4 + Set gtmtypes("jnl_create_info",5,"name")="jnl_create_info.csd" + Set gtmtypes("jnl_create_info",5,"off")=16 + Set gtmtypes("jnl_create_info",5,"len")=4 + Set gtmtypes("jnl_create_info",5,"type")="addr" + Set gtmtypfldindx("jnl_create_info","csd")=5 + Set gtmtypes("jnl_create_info",6,"name")="jnl_create_info.reg_seqno" + Set gtmtypes("jnl_create_info",6,"off")=20 + Set gtmtypes("jnl_create_info",6,"len")=8 + Set gtmtypes("jnl_create_info",6,"type")="uint64_t" + Set gtmtypfldindx("jnl_create_info","reg_seqno")=6 + Set gtmtypes("jnl_create_info",7,"name")="jnl_create_info.jnl" + Set gtmtypes("jnl_create_info",7,"off")=28 + Set gtmtypes("jnl_create_info",7,"len")=256 + Set gtmtypes("jnl_create_info",7,"type")="unsigned-char" + Set gtmtypfldindx("jnl_create_info","jnl")=7 + Set gtmtypes("jnl_create_info",8,"name")="jnl_create_info.fn" + Set gtmtypes("jnl_create_info",8,"off")=284 + Set gtmtypes("jnl_create_info",8,"len")=4 + Set gtmtypes("jnl_create_info",8,"type")="addr" + Set gtmtypfldindx("jnl_create_info","fn")=8 + Set gtmtypes("jnl_create_info",9,"name")="jnl_create_info.max_jrec_len" + Set gtmtypes("jnl_create_info",9,"off")=288 + Set gtmtypes("jnl_create_info",9,"len")=4 + Set gtmtypes("jnl_create_info",9,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","max_jrec_len")=9 + Set gtmtypes("jnl_create_info",10,"name")="jnl_create_info.fn_len" + Set gtmtypes("jnl_create_info",10,"off")=292 + Set gtmtypes("jnl_create_info",10,"len")=2 + Set gtmtypes("jnl_create_info",10,"type")="short" + Set gtmtypfldindx("jnl_create_info","fn_len")=10 + Set gtmtypes("jnl_create_info",11,"name")="jnl_create_info.jnl_len" + Set gtmtypes("jnl_create_info",11,"off")=294 + Set gtmtypes("jnl_create_info",11,"len")=2 + Set gtmtypes("jnl_create_info",11,"type")="short" + Set gtmtypfldindx("jnl_create_info","jnl_len")=11 + Set gtmtypes("jnl_create_info",12,"name")="jnl_create_info.jnl_def_len" + Set gtmtypes("jnl_create_info",12,"off")=296 + Set gtmtypes("jnl_create_info",12,"len")=2 + Set gtmtypes("jnl_create_info",12,"type")="short" + Set gtmtypfldindx("jnl_create_info","jnl_def_len")=12 + Set gtmtypes("jnl_create_info",13,"name")="jnl_create_info.before_images" + Set gtmtypes("jnl_create_info",13,"off")=298 + Set gtmtypes("jnl_create_info",13,"len")=1 + Set gtmtypes("jnl_create_info",13,"type")="char" + Set gtmtypfldindx("jnl_create_info","before_images")=13 + Set gtmtypes("jnl_create_info",14,"name")="jnl_create_info.filler_bool" + Set gtmtypes("jnl_create_info",14,"off")=299 + Set gtmtypes("jnl_create_info",14,"len")=1 + Set gtmtypes("jnl_create_info",14,"type")="char" + Set gtmtypfldindx("jnl_create_info","filler_bool")=14 + Set gtmtypes("jnl_create_info",15,"name")="jnl_create_info.alignsize" + Set gtmtypes("jnl_create_info",15,"off")=300 + Set gtmtypes("jnl_create_info",15,"len")=4 + Set gtmtypes("jnl_create_info",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","alignsize")=15 + Set gtmtypes("jnl_create_info",16,"name")="jnl_create_info.autoswitchlimit" + Set gtmtypes("jnl_create_info",16,"off")=304 + Set gtmtypes("jnl_create_info",16,"len")=4 + Set gtmtypes("jnl_create_info",16,"type")="int" + Set gtmtypfldindx("jnl_create_info","autoswitchlimit")=16 + Set gtmtypes("jnl_create_info",17,"name")="jnl_create_info.epoch_interval" + Set gtmtypes("jnl_create_info",17,"off")=308 + Set gtmtypes("jnl_create_info",17,"len")=4 + Set gtmtypes("jnl_create_info",17,"type")="int" + Set gtmtypfldindx("jnl_create_info","epoch_interval")=17 + Set gtmtypes("jnl_create_info",18,"name")="jnl_create_info.prev_jnl" + Set gtmtypes("jnl_create_info",18,"off")=312 + Set gtmtypes("jnl_create_info",18,"len")=4 + Set gtmtypes("jnl_create_info",18,"type")="addr" + Set gtmtypfldindx("jnl_create_info","prev_jnl")=18 + Set gtmtypes("jnl_create_info",19,"name")="jnl_create_info.prev_jnl_len" + Set gtmtypes("jnl_create_info",19,"off")=316 + Set gtmtypes("jnl_create_info",19,"len")=4 + Set gtmtypes("jnl_create_info",19,"type")="int" + Set gtmtypfldindx("jnl_create_info","prev_jnl_len")=19 + Set gtmtypes("jnl_create_info",20,"name")="jnl_create_info.jnl_state" + Set gtmtypes("jnl_create_info",20,"off")=320 + Set gtmtypes("jnl_create_info",20,"len")=4 + Set gtmtypes("jnl_create_info",20,"type")="int" + Set gtmtypfldindx("jnl_create_info","jnl_state")=20 + Set gtmtypes("jnl_create_info",21,"name")="jnl_create_info.repl_state" + Set gtmtypes("jnl_create_info",21,"off")=324 + Set gtmtypes("jnl_create_info",21,"len")=4 + Set gtmtypes("jnl_create_info",21,"type")="int" + Set gtmtypfldindx("jnl_create_info","repl_state")=21 + Set gtmtypes("jnl_create_info",22,"name")="jnl_create_info.status2" + Set gtmtypes("jnl_create_info",22,"off")=328 + Set gtmtypes("jnl_create_info",22,"len")=4 + Set gtmtypes("jnl_create_info",22,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","status2")=22 + Set gtmtypes("jnl_create_info",23,"name")="jnl_create_info.no_rename" + Set gtmtypes("jnl_create_info",23,"off")=332 + Set gtmtypes("jnl_create_info",23,"len")=4 + Set gtmtypes("jnl_create_info",23,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","no_rename")=23 + Set gtmtypes("jnl_create_info",24,"name")="jnl_create_info.no_prev_link" + Set gtmtypes("jnl_create_info",24,"off")=336 + Set gtmtypes("jnl_create_info",24,"len")=4 + Set gtmtypes("jnl_create_info",24,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","no_prev_link")=24 + Set gtmtypes("jnl_create_info",25,"name")="jnl_create_info.blks_to_upgrd" + Set gtmtypes("jnl_create_info",25,"off")=340 + Set gtmtypes("jnl_create_info",25,"len")=4 + Set gtmtypes("jnl_create_info",25,"type")="int" + Set gtmtypfldindx("jnl_create_info","blks_to_upgrd")=25 + Set gtmtypes("jnl_create_info",26,"name")="jnl_create_info.checksum" + Set gtmtypes("jnl_create_info",26,"off")=344 + Set gtmtypes("jnl_create_info",26,"len")=4 + Set gtmtypes("jnl_create_info",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","checksum")=26 + Set gtmtypes("jnl_create_info",27,"name")="jnl_create_info.free_blocks" + Set gtmtypes("jnl_create_info",27,"off")=348 + Set gtmtypes("jnl_create_info",27,"len")=4 + Set gtmtypes("jnl_create_info",27,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","free_blocks")=27 + Set gtmtypes("jnl_create_info",28,"name")="jnl_create_info.total_blks" + Set gtmtypes("jnl_create_info",28,"off")=352 + Set gtmtypes("jnl_create_info",28,"len")=4 + Set gtmtypes("jnl_create_info",28,"type")="unsigned-int" + Set gtmtypfldindx("jnl_create_info","total_blks")=28 + Set gtmtypes("jnl_create_info",29,"name")="jnl_create_info.is_encrypted" + Set gtmtypes("jnl_create_info",29,"off")=356 + Set gtmtypes("jnl_create_info",29,"len")=4 + Set gtmtypes("jnl_create_info",29,"type")="int" + Set gtmtypfldindx("jnl_create_info","is_encrypted")=29 + Set gtmtypes("jnl_create_info",30,"name")="jnl_create_info.encryption_hash" + Set gtmtypes("jnl_create_info",30,"off")=360 + Set gtmtypes("jnl_create_info",30,"len")=80 + Set gtmtypes("jnl_create_info",30,"type")="char" + Set gtmtypfldindx("jnl_create_info","encryption_hash")=30 + Set gtmtypes("jnl_create_info",31,"name")="jnl_create_info.encryption_hash2" + Set gtmtypes("jnl_create_info",31,"off")=440 + Set gtmtypes("jnl_create_info",31,"len")=80 + Set gtmtypes("jnl_create_info",31,"type")="char" + Set gtmtypfldindx("jnl_create_info","encryption_hash2")=31 + Set gtmtypes("jnl_create_info",32,"name")="jnl_create_info.non_null_iv" + Set gtmtypes("jnl_create_info",32,"off")=520 + Set gtmtypes("jnl_create_info",32,"len")=4 + Set gtmtypes("jnl_create_info",32,"type")="boolean_t" + Set gtmtypfldindx("jnl_create_info","non_null_iv")=32 + Set gtmtypes("jnl_create_info",33,"name")="jnl_create_info.encryption_hash_cutoff" + Set gtmtypes("jnl_create_info",33,"off")=524 + Set gtmtypes("jnl_create_info",33,"len")=4 + Set gtmtypes("jnl_create_info",33,"type")="int" + Set gtmtypfldindx("jnl_create_info","encryption_hash_cutoff")=33 + Set gtmtypes("jnl_create_info",34,"name")="jnl_create_info.encryption_hash2_start_tn" + Set gtmtypes("jnl_create_info",34,"off")=528 + Set gtmtypes("jnl_create_info",34,"len")=8 + Set gtmtypes("jnl_create_info",34,"type")="uint64_t" + Set gtmtypfldindx("jnl_create_info","encryption_hash2_start_tn")=34 + Set gtmtypes("jnl_create_info",35,"name")="jnl_create_info.csa" + Set gtmtypes("jnl_create_info",35,"off")=536 + Set gtmtypes("jnl_create_info",35,"len")=4 + Set gtmtypes("jnl_create_info",35,"type")="addr" + Set gtmtypfldindx("jnl_create_info","csa")=35 + ; + Set gtmtypes("jnl_ctl_list")="struct" + Set gtmtypes("jnl_ctl_list",0)=47 + Set gtmtypes("jnl_ctl_list","len")=588 + Set gtmtypes("jnl_ctl_list",1,"name")="jnl_ctl_list.turn_around_tn" + Set gtmtypes("jnl_ctl_list",1,"off")=0 + Set gtmtypes("jnl_ctl_list",1,"len")=8 + Set gtmtypes("jnl_ctl_list",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_tn")=1 + Set gtmtypes("jnl_ctl_list",2,"name")="jnl_ctl_list.turn_around_seqno" + Set gtmtypes("jnl_ctl_list",2,"off")=8 + Set gtmtypes("jnl_ctl_list",2,"len")=8 + Set gtmtypes("jnl_ctl_list",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_seqno")=2 + Set gtmtypes("jnl_ctl_list",3,"name")="jnl_ctl_list.jnl_fn" + Set gtmtypes("jnl_ctl_list",3,"off")=16 + Set gtmtypes("jnl_ctl_list",3,"len")=256 + Set gtmtypes("jnl_ctl_list",3,"type")="unsigned-char" + Set gtmtypfldindx("jnl_ctl_list","jnl_fn")=3 + Set gtmtypes("jnl_ctl_list",4,"name")="jnl_ctl_list.jnl_fn_len" + Set gtmtypes("jnl_ctl_list",4,"off")=272 + Set gtmtypes("jnl_ctl_list",4,"len")=4 + Set gtmtypes("jnl_ctl_list",4,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","jnl_fn_len")=4 + Set gtmtypes("jnl_ctl_list",5,"name")="jnl_ctl_list.jfh" + Set gtmtypes("jnl_ctl_list",5,"off")=276 + Set gtmtypes("jnl_ctl_list",5,"len")=4 + Set gtmtypes("jnl_ctl_list",5,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","jfh")=5 + Set gtmtypes("jnl_ctl_list",6,"name")="jnl_ctl_list.lvrec_time" + Set gtmtypes("jnl_ctl_list",6,"off")=280 + Set gtmtypes("jnl_ctl_list",6,"len")=4 + Set gtmtypes("jnl_ctl_list",6,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","lvrec_time")=6 + Set gtmtypes("jnl_ctl_list",7,"name")="jnl_ctl_list.lvrec_off" + Set gtmtypes("jnl_ctl_list",7,"off")=284 + Set gtmtypes("jnl_ctl_list",7,"len")=4 + Set gtmtypes("jnl_ctl_list",7,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","lvrec_off")=7 + Set gtmtypes("jnl_ctl_list",8,"name")="jnl_ctl_list.rec_offset" + Set gtmtypes("jnl_ctl_list",8,"off")=288 + Set gtmtypes("jnl_ctl_list",8,"len")=4 + Set gtmtypes("jnl_ctl_list",8,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","rec_offset")=8 + Set gtmtypes("jnl_ctl_list",9,"name")="jnl_ctl_list.os_filesize" + Set gtmtypes("jnl_ctl_list",9,"off")=292 + Set gtmtypes("jnl_ctl_list",9,"len")=4 + Set gtmtypes("jnl_ctl_list",9,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","os_filesize")=9 + Set gtmtypes("jnl_ctl_list",10,"name")="jnl_ctl_list.eof_addr" + Set gtmtypes("jnl_ctl_list",10,"off")=296 + Set gtmtypes("jnl_ctl_list",10,"len")=4 + Set gtmtypes("jnl_ctl_list",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","eof_addr")=10 + Set gtmtypes("jnl_ctl_list",11,"name")="jnl_ctl_list.apply_pblk_stop_offset" + Set gtmtypes("jnl_ctl_list",11,"off")=300 + Set gtmtypes("jnl_ctl_list",11,"len")=4 + Set gtmtypes("jnl_ctl_list",11,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","apply_pblk_stop_offset")=11 + Set gtmtypes("jnl_ctl_list",12,"name")="jnl_ctl_list.turn_around_offset" + Set gtmtypes("jnl_ctl_list",12,"off")=304 + Set gtmtypes("jnl_ctl_list",12,"len")=4 + Set gtmtypes("jnl_ctl_list",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","turn_around_offset")=12 + Set gtmtypes("jnl_ctl_list",13,"name")="jnl_ctl_list.turn_around_time" + Set gtmtypes("jnl_ctl_list",13,"off")=308 + Set gtmtypes("jnl_ctl_list",13,"len")=4 + Set gtmtypes("jnl_ctl_list",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","turn_around_time")=13 + Set gtmtypes("jnl_ctl_list",14,"name")="jnl_ctl_list.properly_closed" + Set gtmtypes("jnl_ctl_list",14,"off")=312 + Set gtmtypes("jnl_ctl_list",14,"len")=4 + Set gtmtypes("jnl_ctl_list",14,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","properly_closed")=14 + Set gtmtypes("jnl_ctl_list",15,"name")="jnl_ctl_list.tail_analysis" + Set gtmtypes("jnl_ctl_list",15,"off")=316 + Set gtmtypes("jnl_ctl_list",15,"len")=4 + Set gtmtypes("jnl_ctl_list",15,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","tail_analysis")=15 + Set gtmtypes("jnl_ctl_list",16,"name")="jnl_ctl_list.after_end_of_data" + Set gtmtypes("jnl_ctl_list",16,"off")=320 + Set gtmtypes("jnl_ctl_list",16,"len")=4 + Set gtmtypes("jnl_ctl_list",16,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","after_end_of_data")=16 + Set gtmtypes("jnl_ctl_list",17,"name")="jnl_ctl_list.read_only" + Set gtmtypes("jnl_ctl_list",17,"off")=324 + Set gtmtypes("jnl_ctl_list",17,"len")=4 + Set gtmtypes("jnl_ctl_list",17,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","read_only")=17 + Set gtmtypes("jnl_ctl_list",18,"name")="jnl_ctl_list.jnlrec_cnt" + Set gtmtypes("jnl_ctl_list",18,"off")=328 + Set gtmtypes("jnl_ctl_list",18,"len")=144 + Set gtmtypes("jnl_ctl_list",18,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","jnlrec_cnt")=18 + Set gtmtypes("jnl_ctl_list",18,"dim")=36 + Set gtmtypes("jnl_ctl_list",19,"name")="jnl_ctl_list.status" + Set gtmtypes("jnl_ctl_list",19,"off")=472 + Set gtmtypes("jnl_ctl_list",19,"len")=4 + Set gtmtypes("jnl_ctl_list",19,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","status")=19 + Set gtmtypes("jnl_ctl_list",20,"name")="jnl_ctl_list.status2" + Set gtmtypes("jnl_ctl_list",20,"off")=476 + Set gtmtypes("jnl_ctl_list",20,"len")=4 + Set gtmtypes("jnl_ctl_list",20,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","status2")=20 + Set gtmtypes("jnl_ctl_list",21,"name")="jnl_ctl_list.channel" + Set gtmtypes("jnl_ctl_list",21,"off")=480 + Set gtmtypes("jnl_ctl_list",21,"len")=4 + Set gtmtypes("jnl_ctl_list",21,"type")="int" + Set gtmtypfldindx("jnl_ctl_list","channel")=21 + Set gtmtypes("jnl_ctl_list",22,"name")="jnl_ctl_list.fid" + Set gtmtypes("jnl_ctl_list",22,"off")=484 + Set gtmtypes("jnl_ctl_list",22,"len")=20 + Set gtmtypes("jnl_ctl_list",22,"type")="unix_file_id" + Set gtmtypfldindx("jnl_ctl_list","fid")=22 + Set gtmtypes("jnl_ctl_list",23,"name")="jnl_ctl_list.fid.inode" + Set gtmtypes("jnl_ctl_list",23,"off")=484 + Set gtmtypes("jnl_ctl_list",23,"len")=8 + Set gtmtypes("jnl_ctl_list",23,"type")="ino_t" + Set gtmtypfldindx("jnl_ctl_list","fid.inode")=23 + Set gtmtypes("jnl_ctl_list",24,"name")="jnl_ctl_list.fid.device" + Set gtmtypes("jnl_ctl_list",24,"off")=492 + Set gtmtypes("jnl_ctl_list",24,"len")=8 + Set gtmtypes("jnl_ctl_list",24,"type")="dev_t" + Set gtmtypfldindx("jnl_ctl_list","fid.device")=24 + Set gtmtypes("jnl_ctl_list",25,"name")="jnl_ctl_list.fid.st_gen" + Set gtmtypes("jnl_ctl_list",25,"off")=500 + Set gtmtypes("jnl_ctl_list",25,"len")=4 + Set gtmtypes("jnl_ctl_list",25,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","fid.st_gen")=25 + Set gtmtypes("jnl_ctl_list",26,"name")="jnl_ctl_list.pini_list" + Set gtmtypes("jnl_ctl_list",26,"off")=504 + Set gtmtypes("jnl_ctl_list",26,"len")=56 + Set gtmtypes("jnl_ctl_list",26,"type")="hash_table_int4" + Set gtmtypfldindx("jnl_ctl_list","pini_list")=26 + Set gtmtypes("jnl_ctl_list",27,"name")="jnl_ctl_list.pini_list.base" + Set gtmtypes("jnl_ctl_list",27,"off")=504 + Set gtmtypes("jnl_ctl_list",27,"len")=4 + Set gtmtypes("jnl_ctl_list",27,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.base")=27 + Set gtmtypes("jnl_ctl_list",28,"name")="jnl_ctl_list.pini_list.top" + Set gtmtypes("jnl_ctl_list",28,"off")=508 + Set gtmtypes("jnl_ctl_list",28,"len")=4 + Set gtmtypes("jnl_ctl_list",28,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.top")=28 + Set gtmtypes("jnl_ctl_list",29,"name")="jnl_ctl_list.pini_list.size" + Set gtmtypes("jnl_ctl_list",29,"off")=512 + Set gtmtypes("jnl_ctl_list",29,"len")=4 + Set gtmtypes("jnl_ctl_list",29,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.size")=29 + Set gtmtypes("jnl_ctl_list",30,"name")="jnl_ctl_list.pini_list.initial_size" + Set gtmtypes("jnl_ctl_list",30,"off")=516 + Set gtmtypes("jnl_ctl_list",30,"len")=4 + Set gtmtypes("jnl_ctl_list",30,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.initial_size")=30 + Set gtmtypes("jnl_ctl_list",31,"name")="jnl_ctl_list.pini_list.spare_base" + Set gtmtypes("jnl_ctl_list",31,"off")=520 + Set gtmtypes("jnl_ctl_list",31,"len")=4 + Set gtmtypes("jnl_ctl_list",31,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.spare_base")=31 + Set gtmtypes("jnl_ctl_list",32,"name")="jnl_ctl_list.pini_list.spare_base_size" + Set gtmtypes("jnl_ctl_list",32,"off")=524 + Set gtmtypes("jnl_ctl_list",32,"len")=4 + Set gtmtypes("jnl_ctl_list",32,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.spare_base_size")=32 + Set gtmtypes("jnl_ctl_list",33,"name")="jnl_ctl_list.pini_list.dont_compact" + Set gtmtypes("jnl_ctl_list",33,"off")=528 + Set gtmtypes("jnl_ctl_list",33,"len")=4 + Set gtmtypes("jnl_ctl_list",33,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.dont_compact")=33 + Set gtmtypes("jnl_ctl_list",34,"name")="jnl_ctl_list.pini_list.dont_keep_spare_table" + Set gtmtypes("jnl_ctl_list",34,"off")=532 + Set gtmtypes("jnl_ctl_list",34,"len")=4 + Set gtmtypes("jnl_ctl_list",34,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.dont_keep_spare_table")=34 + Set gtmtypes("jnl_ctl_list",35,"name")="jnl_ctl_list.pini_list.defer_base_release" + Set gtmtypes("jnl_ctl_list",35,"off")=536 + Set gtmtypes("jnl_ctl_list",35,"len")=4 + Set gtmtypes("jnl_ctl_list",35,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","pini_list.defer_base_release")=35 + Set gtmtypes("jnl_ctl_list",36,"name")="jnl_ctl_list.pini_list.count" + Set gtmtypes("jnl_ctl_list",36,"off")=540 + Set gtmtypes("jnl_ctl_list",36,"len")=4 + Set gtmtypes("jnl_ctl_list",36,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.count")=36 + Set gtmtypes("jnl_ctl_list",37,"name")="jnl_ctl_list.pini_list.del_count" + Set gtmtypes("jnl_ctl_list",37,"off")=544 + Set gtmtypes("jnl_ctl_list",37,"len")=4 + Set gtmtypes("jnl_ctl_list",37,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.del_count")=37 + Set gtmtypes("jnl_ctl_list",38,"name")="jnl_ctl_list.pini_list.exp_trigger_size" + Set gtmtypes("jnl_ctl_list",38,"off")=548 + Set gtmtypes("jnl_ctl_list",38,"len")=4 + Set gtmtypes("jnl_ctl_list",38,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.exp_trigger_size")=38 + Set gtmtypes("jnl_ctl_list",39,"name")="jnl_ctl_list.pini_list.cmp_trigger_size" + Set gtmtypes("jnl_ctl_list",39,"off")=552 + Set gtmtypes("jnl_ctl_list",39,"len")=4 + Set gtmtypes("jnl_ctl_list",39,"type")="unsigned-int" + Set gtmtypfldindx("jnl_ctl_list","pini_list.cmp_trigger_size")=39 + Set gtmtypes("jnl_ctl_list",40,"name")="jnl_ctl_list.pini_list.entry_passed_thru" + Set gtmtypes("jnl_ctl_list",40,"off")=556 + Set gtmtypes("jnl_ctl_list",40,"len")=4 + Set gtmtypes("jnl_ctl_list",40,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","pini_list.entry_passed_thru")=40 + Set gtmtypes("jnl_ctl_list",41,"name")="jnl_ctl_list.reg_ctl" + Set gtmtypes("jnl_ctl_list",41,"off")=560 + Set gtmtypes("jnl_ctl_list",41,"len")=4 + Set gtmtypes("jnl_ctl_list",41,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","reg_ctl")=41 + Set gtmtypes("jnl_ctl_list",42,"name")="jnl_ctl_list.next_gen" + Set gtmtypes("jnl_ctl_list",42,"off")=564 + Set gtmtypes("jnl_ctl_list",42,"len")=4 + Set gtmtypes("jnl_ctl_list",42,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","next_gen")=42 + Set gtmtypes("jnl_ctl_list",43,"name")="jnl_ctl_list.prev_gen" + Set gtmtypes("jnl_ctl_list",43,"off")=568 + Set gtmtypes("jnl_ctl_list",43,"len")=4 + Set gtmtypes("jnl_ctl_list",43,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","prev_gen")=43 + Set gtmtypes("jnl_ctl_list",44,"name")="jnl_ctl_list.encr_key_handle" + Set gtmtypes("jnl_ctl_list",44,"off")=572 + Set gtmtypes("jnl_ctl_list",44,"len")=4 + Set gtmtypes("jnl_ctl_list",44,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","encr_key_handle")=44 + Set gtmtypes("jnl_ctl_list",45,"name")="jnl_ctl_list.encr_key_handle2" + Set gtmtypes("jnl_ctl_list",45,"off")=576 + Set gtmtypes("jnl_ctl_list",45,"len")=4 + Set gtmtypes("jnl_ctl_list",45,"type")="addr" + Set gtmtypfldindx("jnl_ctl_list","encr_key_handle2")=45 + Set gtmtypes("jnl_ctl_list",46,"name")="jnl_ctl_list.same_encryption_settings" + Set gtmtypes("jnl_ctl_list",46,"off")=580 + Set gtmtypes("jnl_ctl_list",46,"len")=4 + Set gtmtypes("jnl_ctl_list",46,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","same_encryption_settings")=46 + Set gtmtypes("jnl_ctl_list",47,"name")="jnl_ctl_list.turn_around_fullyupgraded" + Set gtmtypes("jnl_ctl_list",47,"off")=584 + Set gtmtypes("jnl_ctl_list",47,"len")=4 + Set gtmtypes("jnl_ctl_list",47,"type")="boolean_t" + Set gtmtypfldindx("jnl_ctl_list","turn_around_fullyupgraded")=47 + ; + Set gtmtypes("jnl_fence_control")="struct" + Set gtmtypes("jnl_fence_control",0)=4 + Set gtmtypes("jnl_fence_control","len")=24 + Set gtmtypes("jnl_fence_control",1,"name")="jnl_fence_control.fence_list" + Set gtmtypes("jnl_fence_control",1,"off")=0 + Set gtmtypes("jnl_fence_control",1,"len")=4 + Set gtmtypes("jnl_fence_control",1,"type")="addr" + Set gtmtypfldindx("jnl_fence_control","fence_list")=1 + Set gtmtypes("jnl_fence_control",2,"name")="jnl_fence_control.level" + Set gtmtypes("jnl_fence_control",2,"off")=4 + Set gtmtypes("jnl_fence_control",2,"len")=4 + Set gtmtypes("jnl_fence_control",2,"type")="int" + Set gtmtypfldindx("jnl_fence_control","level")=2 + Set gtmtypes("jnl_fence_control",3,"name")="jnl_fence_control.token" + Set gtmtypes("jnl_fence_control",3,"off")=8 + Set gtmtypes("jnl_fence_control",3,"len")=8 + Set gtmtypes("jnl_fence_control",3,"type")="uint64_t" + Set gtmtypfldindx("jnl_fence_control","token")=3 + Set gtmtypes("jnl_fence_control",4,"name")="jnl_fence_control.strm_seqno" + Set gtmtypes("jnl_fence_control",4,"off")=16 + Set gtmtypes("jnl_fence_control",4,"len")=8 + Set gtmtypes("jnl_fence_control",4,"type")="uint64_t" + Set gtmtypfldindx("jnl_fence_control","strm_seqno")=4 + ; + Set gtmtypes("jnl_file_header")="struct" + Set gtmtypes("jnl_file_header",0)=66 + Set gtmtypes("jnl_file_header","len")=2048 + Set gtmtypes("jnl_file_header",1,"name")="jnl_file_header.label" + Set gtmtypes("jnl_file_header",1,"off")=0 + Set gtmtypes("jnl_file_header",1,"len")=8 + Set gtmtypes("jnl_file_header",1,"type")="char" + Set gtmtypfldindx("jnl_file_header","label")=1 + Set gtmtypes("jnl_file_header",2,"name")="jnl_file_header.is_little_endian" + Set gtmtypes("jnl_file_header",2,"off")=8 + Set gtmtypes("jnl_file_header",2,"len")=1 + Set gtmtypes("jnl_file_header",2,"type")="char" + Set gtmtypfldindx("jnl_file_header","is_little_endian")=2 + Set gtmtypes("jnl_file_header",3,"name")="jnl_file_header.filler_align8" + Set gtmtypes("jnl_file_header",3,"off")=9 + Set gtmtypes("jnl_file_header",3,"len")=7 + Set gtmtypes("jnl_file_header",3,"type")="char" + Set gtmtypfldindx("jnl_file_header","filler_align8")=3 + Set gtmtypes("jnl_file_header",4,"name")="jnl_file_header.who_created" + Set gtmtypes("jnl_file_header",4,"off")=16 + Set gtmtypes("jnl_file_header",4,"len")=88 + Set gtmtypes("jnl_file_header",4,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_file_header","who_created")=4 + Set gtmtypes("jnl_file_header",5,"name")="jnl_file_header.who_created.jpv_pid" + Set gtmtypes("jnl_file_header",5,"off")=16 + Set gtmtypes("jnl_file_header",5,"len")=4 + Set gtmtypes("jnl_file_header",5,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_pid")=5 + Set gtmtypes("jnl_file_header",6,"name")="jnl_file_header.who_created.jpv_image_count" + Set gtmtypes("jnl_file_header",6,"off")=20 + Set gtmtypes("jnl_file_header",6,"len")=4 + Set gtmtypes("jnl_file_header",6,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_image_count")=6 + Set gtmtypes("jnl_file_header",7,"name")="jnl_file_header.who_created.jpv_time" + Set gtmtypes("jnl_file_header",7,"off")=24 + Set gtmtypes("jnl_file_header",7,"len")=8 + Set gtmtypes("jnl_file_header",7,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_time")=7 + Set gtmtypes("jnl_file_header",8,"name")="jnl_file_header.who_created.jpv_login_time" + Set gtmtypes("jnl_file_header",8,"off")=32 + Set gtmtypes("jnl_file_header",8,"len")=8 + Set gtmtypes("jnl_file_header",8,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_login_time")=8 + Set gtmtypes("jnl_file_header",9,"name")="jnl_file_header.who_created.jpv_node" + Set gtmtypes("jnl_file_header",9,"off")=40 + Set gtmtypes("jnl_file_header",9,"len")=16 + Set gtmtypes("jnl_file_header",9,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_node")=9 + Set gtmtypes("jnl_file_header",10,"name")="jnl_file_header.who_created.jpv_user" + Set gtmtypes("jnl_file_header",10,"off")=56 + Set gtmtypes("jnl_file_header",10,"len")=12 + Set gtmtypes("jnl_file_header",10,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_user")=10 + Set gtmtypes("jnl_file_header",11,"name")="jnl_file_header.who_created.jpv_prcnam" + Set gtmtypes("jnl_file_header",11,"off")=68 + Set gtmtypes("jnl_file_header",11,"len")=16 + Set gtmtypes("jnl_file_header",11,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_prcnam")=11 + Set gtmtypes("jnl_file_header",12,"name")="jnl_file_header.who_created.jpv_terminal" + Set gtmtypes("jnl_file_header",12,"off")=84 + Set gtmtypes("jnl_file_header",12,"len")=15 + Set gtmtypes("jnl_file_header",12,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_terminal")=12 + Set gtmtypes("jnl_file_header",13,"name")="jnl_file_header.who_created.jpv_mode" + Set gtmtypes("jnl_file_header",13,"off")=99 + Set gtmtypes("jnl_file_header",13,"len")=1 + Set gtmtypes("jnl_file_header",13,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","who_created.jpv_mode")=13 + Set gtmtypes("jnl_file_header",14,"name")="jnl_file_header.who_created.filler" + Set gtmtypes("jnl_file_header",14,"off")=100 + Set gtmtypes("jnl_file_header",14,"len")=4 + Set gtmtypes("jnl_file_header",14,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_created.filler")=14 + Set gtmtypes("jnl_file_header",15,"name")="jnl_file_header.who_opened" + Set gtmtypes("jnl_file_header",15,"off")=104 + Set gtmtypes("jnl_file_header",15,"len")=88 + Set gtmtypes("jnl_file_header",15,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_file_header","who_opened")=15 + Set gtmtypes("jnl_file_header",16,"name")="jnl_file_header.who_opened.jpv_pid" + Set gtmtypes("jnl_file_header",16,"off")=104 + Set gtmtypes("jnl_file_header",16,"len")=4 + Set gtmtypes("jnl_file_header",16,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_pid")=16 + Set gtmtypes("jnl_file_header",17,"name")="jnl_file_header.who_opened.jpv_image_count" + Set gtmtypes("jnl_file_header",17,"off")=108 + Set gtmtypes("jnl_file_header",17,"len")=4 + Set gtmtypes("jnl_file_header",17,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_image_count")=17 + Set gtmtypes("jnl_file_header",18,"name")="jnl_file_header.who_opened.jpv_time" + Set gtmtypes("jnl_file_header",18,"off")=112 + Set gtmtypes("jnl_file_header",18,"len")=8 + Set gtmtypes("jnl_file_header",18,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_time")=18 + Set gtmtypes("jnl_file_header",19,"name")="jnl_file_header.who_opened.jpv_login_time" + Set gtmtypes("jnl_file_header",19,"off")=120 + Set gtmtypes("jnl_file_header",19,"len")=8 + Set gtmtypes("jnl_file_header",19,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_login_time")=19 + Set gtmtypes("jnl_file_header",20,"name")="jnl_file_header.who_opened.jpv_node" + Set gtmtypes("jnl_file_header",20,"off")=128 + Set gtmtypes("jnl_file_header",20,"len")=16 + Set gtmtypes("jnl_file_header",20,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_node")=20 + Set gtmtypes("jnl_file_header",21,"name")="jnl_file_header.who_opened.jpv_user" + Set gtmtypes("jnl_file_header",21,"off")=144 + Set gtmtypes("jnl_file_header",21,"len")=12 + Set gtmtypes("jnl_file_header",21,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_user")=21 + Set gtmtypes("jnl_file_header",22,"name")="jnl_file_header.who_opened.jpv_prcnam" + Set gtmtypes("jnl_file_header",22,"off")=156 + Set gtmtypes("jnl_file_header",22,"len")=16 + Set gtmtypes("jnl_file_header",22,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_prcnam")=22 + Set gtmtypes("jnl_file_header",23,"name")="jnl_file_header.who_opened.jpv_terminal" + Set gtmtypes("jnl_file_header",23,"off")=172 + Set gtmtypes("jnl_file_header",23,"len")=15 + Set gtmtypes("jnl_file_header",23,"type")="char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_terminal")=23 + Set gtmtypes("jnl_file_header",24,"name")="jnl_file_header.who_opened.jpv_mode" + Set gtmtypes("jnl_file_header",24,"off")=187 + Set gtmtypes("jnl_file_header",24,"len")=1 + Set gtmtypes("jnl_file_header",24,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","who_opened.jpv_mode")=24 + Set gtmtypes("jnl_file_header",25,"name")="jnl_file_header.who_opened.filler" + Set gtmtypes("jnl_file_header",25,"off")=188 + Set gtmtypes("jnl_file_header",25,"len")=4 + Set gtmtypes("jnl_file_header",25,"type")="int" + Set gtmtypfldindx("jnl_file_header","who_opened.filler")=25 + Set gtmtypes("jnl_file_header",26,"name")="jnl_file_header.bov_timestamp" + Set gtmtypes("jnl_file_header",26,"off")=192 + Set gtmtypes("jnl_file_header",26,"len")=8 + Set gtmtypes("jnl_file_header",26,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","bov_timestamp")=26 + Set gtmtypes("jnl_file_header",27,"name")="jnl_file_header.eov_timestamp" + Set gtmtypes("jnl_file_header",27,"off")=200 + Set gtmtypes("jnl_file_header",27,"len")=8 + Set gtmtypes("jnl_file_header",27,"type")="int64_t" + Set gtmtypfldindx("jnl_file_header","eov_timestamp")=27 + Set gtmtypes("jnl_file_header",28,"name")="jnl_file_header.bov_tn" + Set gtmtypes("jnl_file_header",28,"off")=208 + Set gtmtypes("jnl_file_header",28,"len")=8 + Set gtmtypes("jnl_file_header",28,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","bov_tn")=28 + Set gtmtypes("jnl_file_header",29,"name")="jnl_file_header.eov_tn" + Set gtmtypes("jnl_file_header",29,"off")=216 + Set gtmtypes("jnl_file_header",29,"len")=8 + Set gtmtypes("jnl_file_header",29,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","eov_tn")=29 + Set gtmtypes("jnl_file_header",30,"name")="jnl_file_header.start_seqno" + Set gtmtypes("jnl_file_header",30,"off")=224 + Set gtmtypes("jnl_file_header",30,"len")=8 + Set gtmtypes("jnl_file_header",30,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","start_seqno")=30 + Set gtmtypes("jnl_file_header",31,"name")="jnl_file_header.end_seqno" + Set gtmtypes("jnl_file_header",31,"off")=232 + Set gtmtypes("jnl_file_header",31,"len")=8 + Set gtmtypes("jnl_file_header",31,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","end_seqno")=31 + Set gtmtypes("jnl_file_header",32,"name")="jnl_file_header.end_of_data" + Set gtmtypes("jnl_file_header",32,"off")=240 + Set gtmtypes("jnl_file_header",32,"len")=4 + Set gtmtypes("jnl_file_header",32,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","end_of_data")=32 + Set gtmtypes("jnl_file_header",33,"name")="jnl_file_header.prev_recov_end_of_data" + Set gtmtypes("jnl_file_header",33,"off")=244 + Set gtmtypes("jnl_file_header",33,"len")=4 + Set gtmtypes("jnl_file_header",33,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_recov_end_of_data")=33 + Set gtmtypes("jnl_file_header",34,"name")="jnl_file_header.virtual_size" + Set gtmtypes("jnl_file_header",34,"off")=248 + Set gtmtypes("jnl_file_header",34,"len")=4 + Set gtmtypes("jnl_file_header",34,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","virtual_size")=34 + Set gtmtypes("jnl_file_header",35,"name")="jnl_file_header.crash" + Set gtmtypes("jnl_file_header",35,"off")=252 + Set gtmtypes("jnl_file_header",35,"len")=4 + Set gtmtypes("jnl_file_header",35,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","crash")=35 + Set gtmtypes("jnl_file_header",36,"name")="jnl_file_header.recover_interrupted" + Set gtmtypes("jnl_file_header",36,"off")=256 + Set gtmtypes("jnl_file_header",36,"len")=4 + Set gtmtypes("jnl_file_header",36,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","recover_interrupted")=36 + Set gtmtypes("jnl_file_header",37,"name")="jnl_file_header.turn_around_offset" + Set gtmtypes("jnl_file_header",37,"off")=260 + Set gtmtypes("jnl_file_header",37,"len")=4 + Set gtmtypes("jnl_file_header",37,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","turn_around_offset")=37 + Set gtmtypes("jnl_file_header",38,"name")="jnl_file_header.turn_around_time" + Set gtmtypes("jnl_file_header",38,"off")=264 + Set gtmtypes("jnl_file_header",38,"len")=4 + Set gtmtypes("jnl_file_header",38,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","turn_around_time")=38 + Set gtmtypes("jnl_file_header",39,"name")="jnl_file_header.before_images" + Set gtmtypes("jnl_file_header",39,"off")=268 + Set gtmtypes("jnl_file_header",39,"len")=4 + Set gtmtypes("jnl_file_header",39,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","before_images")=39 + Set gtmtypes("jnl_file_header",40,"name")="jnl_file_header.alignsize" + Set gtmtypes("jnl_file_header",40,"off")=272 + Set gtmtypes("jnl_file_header",40,"len")=4 + Set gtmtypes("jnl_file_header",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","alignsize")=40 + Set gtmtypes("jnl_file_header",41,"name")="jnl_file_header.epoch_interval" + Set gtmtypes("jnl_file_header",41,"off")=276 + Set gtmtypes("jnl_file_header",41,"len")=4 + Set gtmtypes("jnl_file_header",41,"type")="int" + Set gtmtypfldindx("jnl_file_header","epoch_interval")=41 + Set gtmtypes("jnl_file_header",42,"name")="jnl_file_header.repl_state" + Set gtmtypes("jnl_file_header",42,"off")=280 + Set gtmtypes("jnl_file_header",42,"len")=4 + Set gtmtypes("jnl_file_header",42,"type")="int" + Set gtmtypfldindx("jnl_file_header","repl_state")=42 + Set gtmtypes("jnl_file_header",43,"name")="jnl_file_header.autoswitchlimit" + Set gtmtypes("jnl_file_header",43,"off")=284 + Set gtmtypes("jnl_file_header",43,"len")=4 + Set gtmtypes("jnl_file_header",43,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","autoswitchlimit")=43 + Set gtmtypes("jnl_file_header",44,"name")="jnl_file_header.jnl_alq" + Set gtmtypes("jnl_file_header",44,"off")=288 + Set gtmtypes("jnl_file_header",44,"len")=4 + Set gtmtypes("jnl_file_header",44,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","jnl_alq")=44 + Set gtmtypes("jnl_file_header",45,"name")="jnl_file_header.jnl_deq" + Set gtmtypes("jnl_file_header",45,"off")=292 + Set gtmtypes("jnl_file_header",45,"len")=4 + Set gtmtypes("jnl_file_header",45,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","jnl_deq")=45 + Set gtmtypes("jnl_file_header",46,"name")="jnl_file_header.filler_update_disabled" + Set gtmtypes("jnl_file_header",46,"off")=296 + Set gtmtypes("jnl_file_header",46,"len")=4 + Set gtmtypes("jnl_file_header",46,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","filler_update_disabled")=46 + Set gtmtypes("jnl_file_header",47,"name")="jnl_file_header.max_jrec_len" + Set gtmtypes("jnl_file_header",47,"off")=300 + Set gtmtypes("jnl_file_header",47,"len")=4 + Set gtmtypes("jnl_file_header",47,"type")="int" + Set gtmtypfldindx("jnl_file_header","max_jrec_len")=47 + Set gtmtypes("jnl_file_header",48,"name")="jnl_file_header.data_file_name_length" + Set gtmtypes("jnl_file_header",48,"off")=304 + Set gtmtypes("jnl_file_header",48,"len")=4 + Set gtmtypes("jnl_file_header",48,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","data_file_name_length")=48 + Set gtmtypes("jnl_file_header",49,"name")="jnl_file_header.prev_jnl_file_name_length" + Set gtmtypes("jnl_file_header",49,"off")=308 + Set gtmtypes("jnl_file_header",49,"len")=4 + Set gtmtypes("jnl_file_header",49,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_jnl_file_name_length")=49 + Set gtmtypes("jnl_file_header",50,"name")="jnl_file_header.next_jnl_file_name_length" + Set gtmtypes("jnl_file_header",50,"off")=312 + Set gtmtypes("jnl_file_header",50,"len")=4 + Set gtmtypes("jnl_file_header",50,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","next_jnl_file_name_length")=50 + Set gtmtypes("jnl_file_header",51,"name")="jnl_file_header.checksum" + Set gtmtypes("jnl_file_header",51,"off")=316 + Set gtmtypes("jnl_file_header",51,"len")=4 + Set gtmtypes("jnl_file_header",51,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","checksum")=51 + Set gtmtypes("jnl_file_header",52,"name")="jnl_file_header.prev_recov_blks_to_upgrd_adjust" + Set gtmtypes("jnl_file_header",52,"off")=320 + Set gtmtypes("jnl_file_header",52,"len")=4 + Set gtmtypes("jnl_file_header",52,"type")="unsigned-int" + Set gtmtypfldindx("jnl_file_header","prev_recov_blks_to_upgrd_adjust")=52 + Set gtmtypes("jnl_file_header",53,"name")="jnl_file_header.data_file_name" + Set gtmtypes("jnl_file_header",53,"off")=324 + Set gtmtypes("jnl_file_header",53,"len")=256 + Set gtmtypes("jnl_file_header",53,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","data_file_name")=53 + Set gtmtypes("jnl_file_header",54,"name")="jnl_file_header.prev_jnl_file_name" + Set gtmtypes("jnl_file_header",54,"off")=580 + Set gtmtypes("jnl_file_header",54,"len")=256 + Set gtmtypes("jnl_file_header",54,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","prev_jnl_file_name")=54 + Set gtmtypes("jnl_file_header",55,"name")="jnl_file_header.next_jnl_file_name" + Set gtmtypes("jnl_file_header",55,"off")=836 + Set gtmtypes("jnl_file_header",55,"len")=256 + Set gtmtypes("jnl_file_header",55,"type")="unsigned-char" + Set gtmtypfldindx("jnl_file_header","next_jnl_file_name")=55 + Set gtmtypes("jnl_file_header",56,"name")="jnl_file_header.is_encrypted" + Set gtmtypes("jnl_file_header",56,"off")=1092 + Set gtmtypes("jnl_file_header",56,"len")=4 + Set gtmtypes("jnl_file_header",56,"type")="int" + Set gtmtypfldindx("jnl_file_header","is_encrypted")=56 + Set gtmtypes("jnl_file_header",57,"name")="jnl_file_header.encryption_hash" + Set gtmtypes("jnl_file_header",57,"off")=1096 + Set gtmtypes("jnl_file_header",57,"len")=80 + Set gtmtypes("jnl_file_header",57,"type")="char" + Set gtmtypfldindx("jnl_file_header","encryption_hash")=57 + Set gtmtypes("jnl_file_header",58,"name")="jnl_file_header.encryption_hash2" + Set gtmtypes("jnl_file_header",58,"off")=1176 + Set gtmtypes("jnl_file_header",58,"len")=80 + Set gtmtypes("jnl_file_header",58,"type")="char" + Set gtmtypfldindx("jnl_file_header","encryption_hash2")=58 + Set gtmtypes("jnl_file_header",59,"name")="jnl_file_header.non_null_iv" + Set gtmtypes("jnl_file_header",59,"off")=1256 + Set gtmtypes("jnl_file_header",59,"len")=4 + Set gtmtypes("jnl_file_header",59,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","non_null_iv")=59 + Set gtmtypes("jnl_file_header",60,"name")="jnl_file_header.encryption_hash_cutoff" + Set gtmtypes("jnl_file_header",60,"off")=1260 + Set gtmtypes("jnl_file_header",60,"len")=4 + Set gtmtypes("jnl_file_header",60,"type")="int" + Set gtmtypfldindx("jnl_file_header","encryption_hash_cutoff")=60 + Set gtmtypes("jnl_file_header",61,"name")="jnl_file_header.encryption_hash2_start_tn" + Set gtmtypes("jnl_file_header",61,"off")=1264 + Set gtmtypes("jnl_file_header",61,"len")=8 + Set gtmtypes("jnl_file_header",61,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","encryption_hash2_start_tn")=61 + Set gtmtypes("jnl_file_header",62,"name")="jnl_file_header.encr_filler" + Set gtmtypes("jnl_file_header",62,"off")=1272 + Set gtmtypes("jnl_file_header",62,"len")=80 + Set gtmtypes("jnl_file_header",62,"type")="char" + Set gtmtypfldindx("jnl_file_header","encr_filler")=62 + Set gtmtypes("jnl_file_header",63,"name")="jnl_file_header.strm_start_seqno" + Set gtmtypes("jnl_file_header",63,"off")=1352 + Set gtmtypes("jnl_file_header",63,"len")=128 + Set gtmtypes("jnl_file_header",63,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","strm_start_seqno")=63 + Set gtmtypes("jnl_file_header",63,"dim")=16 + Set gtmtypes("jnl_file_header",64,"name")="jnl_file_header.strm_end_seqno" + Set gtmtypes("jnl_file_header",64,"off")=1480 + Set gtmtypes("jnl_file_header",64,"len")=128 + Set gtmtypes("jnl_file_header",64,"type")="uint64_t" + Set gtmtypfldindx("jnl_file_header","strm_end_seqno")=64 + Set gtmtypes("jnl_file_header",64,"dim")=16 + Set gtmtypes("jnl_file_header",65,"name")="jnl_file_header.last_eof_written" + Set gtmtypes("jnl_file_header",65,"off")=1608 + Set gtmtypes("jnl_file_header",65,"len")=4 + Set gtmtypes("jnl_file_header",65,"type")="boolean_t" + Set gtmtypfldindx("jnl_file_header","last_eof_written")=65 + Set gtmtypes("jnl_file_header",66,"name")="jnl_file_header.filler" + Set gtmtypes("jnl_file_header",66,"off")=1612 + Set gtmtypes("jnl_file_header",66,"len")=436 + Set gtmtypes("jnl_file_header",66,"type")="char" + Set gtmtypfldindx("jnl_file_header","filler")=66 + ; + Set gtmtypes("jnl_format_buffer")="struct" + Set gtmtypes("jnl_format_buffer",0)=14 + Set gtmtypes("jnl_format_buffer","len")=48 + Set gtmtypes("jnl_format_buffer",1,"name")="jnl_format_buffer.free_que" + Set gtmtypes("jnl_format_buffer",1,"off")=0 + Set gtmtypes("jnl_format_buffer",1,"len")=8 + Set gtmtypes("jnl_format_buffer",1,"type")="que_ent" + Set gtmtypfldindx("jnl_format_buffer","free_que")=1 + Set gtmtypes("jnl_format_buffer",2,"name")="jnl_format_buffer.free_que.fl" + Set gtmtypes("jnl_format_buffer",2,"off")=0 + Set gtmtypes("jnl_format_buffer",2,"len")=4 + Set gtmtypes("jnl_format_buffer",2,"type")="intptr_t" + Set gtmtypfldindx("jnl_format_buffer","free_que.fl")=2 + Set gtmtypes("jnl_format_buffer",3,"name")="jnl_format_buffer.free_que.bl" + Set gtmtypes("jnl_format_buffer",3,"off")=4 + Set gtmtypes("jnl_format_buffer",3,"len")=4 + Set gtmtypes("jnl_format_buffer",3,"type")="intptr_t" + Set gtmtypfldindx("jnl_format_buffer","free_que.bl")=3 + Set gtmtypes("jnl_format_buffer",4,"name")="jnl_format_buffer.next" + Set gtmtypes("jnl_format_buffer",4,"off")=8 + Set gtmtypes("jnl_format_buffer",4,"len")=4 + Set gtmtypes("jnl_format_buffer",4,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","next")=4 + Set gtmtypes("jnl_format_buffer",5,"name")="jnl_format_buffer.prev" + Set gtmtypes("jnl_format_buffer",5,"off")=12 + Set gtmtypes("jnl_format_buffer",5,"len")=4 + Set gtmtypes("jnl_format_buffer",5,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","prev")=5 + Set gtmtypes("jnl_format_buffer",6,"name")="jnl_format_buffer.rectype" + Set gtmtypes("jnl_format_buffer",6,"off")=16 + Set gtmtypes("jnl_format_buffer",6,"len")=4 + Set gtmtypes("jnl_format_buffer",6,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","rectype")=6 + Set gtmtypes("jnl_format_buffer",7,"name")="jnl_format_buffer.record_size" + Set gtmtypes("jnl_format_buffer",7,"off")=20 + Set gtmtypes("jnl_format_buffer",7,"len")=4 + Set gtmtypes("jnl_format_buffer",7,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","record_size")=7 + Set gtmtypes("jnl_format_buffer",8,"name")="jnl_format_buffer.hi_water_bsize" + Set gtmtypes("jnl_format_buffer",8,"off")=24 + Set gtmtypes("jnl_format_buffer",8,"len")=4 + Set gtmtypes("jnl_format_buffer",8,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","hi_water_bsize")=8 + Set gtmtypes("jnl_format_buffer",9,"name")="jnl_format_buffer.buff" + Set gtmtypes("jnl_format_buffer",9,"off")=28 + Set gtmtypes("jnl_format_buffer",9,"len")=4 + Set gtmtypes("jnl_format_buffer",9,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","buff")=9 + Set gtmtypes("jnl_format_buffer",10,"name")="jnl_format_buffer.checksum" + Set gtmtypes("jnl_format_buffer",10,"off")=32 + Set gtmtypes("jnl_format_buffer",10,"len")=4 + Set gtmtypes("jnl_format_buffer",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_format_buffer","checksum")=10 + Set gtmtypes("jnl_format_buffer",11,"name")="jnl_format_buffer.ja" + Set gtmtypes("jnl_format_buffer",11,"off")=36 + Set gtmtypes("jnl_format_buffer",11,"len")=8 + Set gtmtypes("jnl_format_buffer",11,"type")="jnl_action" + Set gtmtypfldindx("jnl_format_buffer","ja")=11 + Set gtmtypes("jnl_format_buffer",12,"name")="jnl_format_buffer.ja.operation" + Set gtmtypes("jnl_format_buffer",12,"off")=36 + Set gtmtypes("jnl_format_buffer",12,"len")=4 + Set gtmtypes("jnl_format_buffer",12,"type")="int" + Set gtmtypfldindx("jnl_format_buffer","ja.operation")=12 + Set gtmtypes("jnl_format_buffer",13,"name")="jnl_format_buffer.ja.nodeflags" + Set gtmtypes("jnl_format_buffer",13,"off")=40 + Set gtmtypes("jnl_format_buffer",13,"len")=4 + Set gtmtypes("jnl_format_buffer",13,"type")="unsigned-int" + Set gtmtypfldindx("jnl_format_buffer","ja.nodeflags")=13 + Set gtmtypes("jnl_format_buffer",14,"name")="jnl_format_buffer.alt_buff" + Set gtmtypes("jnl_format_buffer",14,"off")=44 + Set gtmtypes("jnl_format_buffer",14,"len")=4 + Set gtmtypes("jnl_format_buffer",14,"type")="addr" + Set gtmtypfldindx("jnl_format_buffer","alt_buff")=14 + ; + Set gtmtypes("jnl_gbls_t")="struct" + Set gtmtypes("jnl_gbls_t",0)=21 + Set gtmtypes("jnl_gbls_t","len")=88 + Set gtmtypes("jnl_gbls_t",1,"name")="jnl_gbls_t.mur_jrec_seqno" + Set gtmtypes("jnl_gbls_t",1,"off")=0 + Set gtmtypes("jnl_gbls_t",1,"len")=8 + Set gtmtypes("jnl_gbls_t",1,"type")="uint64_t" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_seqno")=1 + Set gtmtypes("jnl_gbls_t",2,"name")="jnl_gbls_t.mur_jrec_strm_seqno" + Set gtmtypes("jnl_gbls_t",2,"off")=8 + Set gtmtypes("jnl_gbls_t",2,"len")=8 + Set gtmtypes("jnl_gbls_t",2,"type")="uint64_t" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_strm_seqno")=2 + Set gtmtypes("jnl_gbls_t",3,"name")="jnl_gbls_t.filler_short" + Set gtmtypes("jnl_gbls_t",3,"off")=16 + Set gtmtypes("jnl_gbls_t",3,"len")=2 + Set gtmtypes("jnl_gbls_t",3,"type")="unsigned-short" + Set gtmtypfldindx("jnl_gbls_t","filler_short")=3 + Set gtmtypes("jnl_gbls_t",4,"name")="jnl_gbls_t.mur_jrec_participants" + Set gtmtypes("jnl_gbls_t",4,"off")=18 + Set gtmtypes("jnl_gbls_t",4,"len")=2 + Set gtmtypes("jnl_gbls_t",4,"type")="unsigned-short" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_participants")=4 + Set gtmtypes("jnl_gbls_t",5,"name")="jnl_gbls_t.gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",5,"off")=20 + Set gtmtypes("jnl_gbls_t",5,"len")=4 + Set gtmtypes("jnl_gbls_t",5,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","gbl_jrec_time")=5 + Set gtmtypes("jnl_gbls_t",6,"name")="jnl_gbls_t.mur_tp_resolve_time" + Set gtmtypes("jnl_gbls_t",6,"off")=24 + Set gtmtypes("jnl_gbls_t",6,"len")=4 + Set gtmtypes("jnl_gbls_t",6,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","mur_tp_resolve_time")=6 + Set gtmtypes("jnl_gbls_t",7,"name")="jnl_gbls_t.forw_phase_recovery" + Set gtmtypes("jnl_gbls_t",7,"off")=28 + Set gtmtypes("jnl_gbls_t",7,"len")=4 + Set gtmtypes("jnl_gbls_t",7,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","forw_phase_recovery")=7 + Set gtmtypes("jnl_gbls_t",8,"name")="jnl_gbls_t.mur_rollback" + Set gtmtypes("jnl_gbls_t",8,"off")=32 + Set gtmtypes("jnl_gbls_t",8,"len")=4 + Set gtmtypes("jnl_gbls_t",8,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_rollback")=8 + Set gtmtypes("jnl_gbls_t",9,"name")="jnl_gbls_t.mupip_journal" + Set gtmtypes("jnl_gbls_t",9,"off")=36 + Set gtmtypes("jnl_gbls_t",9,"len")=4 + Set gtmtypes("jnl_gbls_t",9,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mupip_journal")=9 + Set gtmtypes("jnl_gbls_t",10,"name")="jnl_gbls_t.dont_reset_gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",10,"off")=40 + Set gtmtypes("jnl_gbls_t",10,"len")=4 + Set gtmtypes("jnl_gbls_t",10,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","dont_reset_gbl_jrec_time")=10 + Set gtmtypes("jnl_gbls_t",11,"name")="jnl_gbls_t.mur_pini_addr_reset_fnptr" + Set gtmtypes("jnl_gbls_t",11,"off")=44 + Set gtmtypes("jnl_gbls_t",11,"len")=4 + Set gtmtypes("jnl_gbls_t",11,"type")="void" + Set gtmtypfldindx("jnl_gbls_t","mur_pini_addr_reset_fnptr")=11 + Set gtmtypes("jnl_gbls_t",12,"name")="jnl_gbls_t.cumul_jnl_rec_len" + Set gtmtypes("jnl_gbls_t",12,"off")=48 + Set gtmtypes("jnl_gbls_t",12,"len")=4 + Set gtmtypes("jnl_gbls_t",12,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","cumul_jnl_rec_len")=12 + Set gtmtypes("jnl_gbls_t",13,"name")="jnl_gbls_t.wait_for_jnl_hard" + Set gtmtypes("jnl_gbls_t",13,"off")=52 + Set gtmtypes("jnl_gbls_t",13,"len")=4 + Set gtmtypes("jnl_gbls_t",13,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","wait_for_jnl_hard")=13 + Set gtmtypes("jnl_gbls_t",14,"name")="jnl_gbls_t.tp_ztp_jnl_upd_num" + Set gtmtypes("jnl_gbls_t",14,"off")=56 + Set gtmtypes("jnl_gbls_t",14,"len")=4 + Set gtmtypes("jnl_gbls_t",14,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","tp_ztp_jnl_upd_num")=14 + Set gtmtypes("jnl_gbls_t",15,"name")="jnl_gbls_t.mur_jrec_nodeflags" + Set gtmtypes("jnl_gbls_t",15,"off")=60 + Set gtmtypes("jnl_gbls_t",15,"len")=4 + Set gtmtypes("jnl_gbls_t",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_gbls_t","mur_jrec_nodeflags")=15 + Set gtmtypes("jnl_gbls_t",16,"name")="jnl_gbls_t.prev_ztworm_ptr" + Set gtmtypes("jnl_gbls_t",16,"off")=64 + Set gtmtypes("jnl_gbls_t",16,"len")=4 + Set gtmtypes("jnl_gbls_t",16,"type")="addr" + Set gtmtypfldindx("jnl_gbls_t","prev_ztworm_ptr")=16 + Set gtmtypes("jnl_gbls_t",17,"name")="jnl_gbls_t.save_ztworm_ptr" + Set gtmtypes("jnl_gbls_t",17,"off")=68 + Set gtmtypes("jnl_gbls_t",17,"len")=4 + Set gtmtypes("jnl_gbls_t",17,"type")="addr" + Set gtmtypfldindx("jnl_gbls_t","save_ztworm_ptr")=17 + Set gtmtypes("jnl_gbls_t",18,"name")="jnl_gbls_t.onlnrlbk" + Set gtmtypes("jnl_gbls_t",18,"off")=72 + Set gtmtypes("jnl_gbls_t",18,"len")=4 + Set gtmtypes("jnl_gbls_t",18,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","onlnrlbk")=18 + Set gtmtypes("jnl_gbls_t",19,"name")="jnl_gbls_t.mur_extract" + Set gtmtypes("jnl_gbls_t",19,"off")=76 + Set gtmtypes("jnl_gbls_t",19,"len")=4 + Set gtmtypes("jnl_gbls_t",19,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_extract")=19 + Set gtmtypes("jnl_gbls_t",20,"name")="jnl_gbls_t.save_dont_reset_gbl_jrec_time" + Set gtmtypes("jnl_gbls_t",20,"off")=80 + Set gtmtypes("jnl_gbls_t",20,"len")=4 + Set gtmtypes("jnl_gbls_t",20,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","save_dont_reset_gbl_jrec_time")=20 + Set gtmtypes("jnl_gbls_t",21,"name")="jnl_gbls_t.mur_update" + Set gtmtypes("jnl_gbls_t",21,"off")=84 + Set gtmtypes("jnl_gbls_t",21,"len")=4 + Set gtmtypes("jnl_gbls_t",21,"type")="boolean_t" + Set gtmtypfldindx("jnl_gbls_t","mur_update")=21 + ; + Set gtmtypes("jnl_private_control")="struct" + Set gtmtypes("jnl_private_control",0)=23 + Set gtmtypes("jnl_private_control","len")=100 + Set gtmtypes("jnl_private_control",1,"name")="jnl_private_control.jnl_buff" + Set gtmtypes("jnl_private_control",1,"off")=0 + Set gtmtypes("jnl_private_control",1,"len")=4 + Set gtmtypes("jnl_private_control",1,"type")="addr" + Set gtmtypfldindx("jnl_private_control","jnl_buff")=1 + Set gtmtypes("jnl_private_control",2,"name")="jnl_private_control.region" + Set gtmtypes("jnl_private_control",2,"off")=4 + Set gtmtypes("jnl_private_control",2,"len")=4 + Set gtmtypes("jnl_private_control",2,"type")="addr" + Set gtmtypfldindx("jnl_private_control","region")=2 + Set gtmtypes("jnl_private_control",3,"name")="jnl_private_control.channel" + Set gtmtypes("jnl_private_control",3,"off")=8 + Set gtmtypes("jnl_private_control",3,"len")=4 + Set gtmtypes("jnl_private_control",3,"type")="int" + Set gtmtypfldindx("jnl_private_control","channel")=3 + Set gtmtypes("jnl_private_control",4,"name")="jnl_private_control.old_channel" + Set gtmtypes("jnl_private_control",4,"off")=12 + Set gtmtypes("jnl_private_control",4,"len")=4 + Set gtmtypes("jnl_private_control",4,"type")="int" + Set gtmtypfldindx("jnl_private_control","old_channel")=4 + Set gtmtypes("jnl_private_control",5,"name")="jnl_private_control.fileid" + Set gtmtypes("jnl_private_control",5,"off")=16 + Set gtmtypes("jnl_private_control",5,"len")=20 + Set gtmtypes("jnl_private_control",5,"type")="unix_file_id" + Set gtmtypfldindx("jnl_private_control","fileid")=5 + Set gtmtypes("jnl_private_control",6,"name")="jnl_private_control.fileid.inode" + Set gtmtypes("jnl_private_control",6,"off")=16 + Set gtmtypes("jnl_private_control",6,"len")=8 + Set gtmtypes("jnl_private_control",6,"type")="ino_t" + Set gtmtypfldindx("jnl_private_control","fileid.inode")=6 + Set gtmtypes("jnl_private_control",7,"name")="jnl_private_control.fileid.device" + Set gtmtypes("jnl_private_control",7,"off")=24 + Set gtmtypes("jnl_private_control",7,"len")=8 + Set gtmtypes("jnl_private_control",7,"type")="dev_t" + Set gtmtypfldindx("jnl_private_control","fileid.device")=7 + Set gtmtypes("jnl_private_control",8,"name")="jnl_private_control.fileid.st_gen" + Set gtmtypes("jnl_private_control",8,"off")=32 + Set gtmtypes("jnl_private_control",8,"len")=4 + Set gtmtypes("jnl_private_control",8,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","fileid.st_gen")=8 + Set gtmtypes("jnl_private_control",9,"name")="jnl_private_control.jnllsb" + Set gtmtypes("jnl_private_control",9,"off")=36 + Set gtmtypes("jnl_private_control",9,"len")=4 + Set gtmtypes("jnl_private_control",9,"type")="addr" + Set gtmtypfldindx("jnl_private_control","jnllsb")=9 + Set gtmtypes("jnl_private_control",10,"name")="jnl_private_control.pini_addr" + Set gtmtypes("jnl_private_control",10,"off")=40 + Set gtmtypes("jnl_private_control",10,"len")=4 + Set gtmtypes("jnl_private_control",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","pini_addr")=10 + Set gtmtypes("jnl_private_control",11,"name")="jnl_private_control.new_freeaddr" + Set gtmtypes("jnl_private_control",11,"off")=44 + Set gtmtypes("jnl_private_control",11,"len")=4 + Set gtmtypes("jnl_private_control",11,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","new_freeaddr")=11 + Set gtmtypes("jnl_private_control",12,"name")="jnl_private_control.temp_free" + Set gtmtypes("jnl_private_control",12,"off")=48 + Set gtmtypes("jnl_private_control",12,"len")=4 + Set gtmtypes("jnl_private_control",12,"type")="int" + Set gtmtypfldindx("jnl_private_control","temp_free")=12 + Set gtmtypes("jnl_private_control",13,"name")="jnl_private_control.filler_q0" + Set gtmtypes("jnl_private_control",13,"off")=52 + Set gtmtypes("jnl_private_control",13,"len")=8 + Set gtmtypes("jnl_private_control",13,"type")="double" + Set gtmtypfldindx("jnl_private_control","filler_q0")=13 + Set gtmtypes("jnl_private_control",14,"name")="jnl_private_control.new_dsk" + Set gtmtypes("jnl_private_control",14,"off")=60 + Set gtmtypes("jnl_private_control",14,"len")=4 + Set gtmtypes("jnl_private_control",14,"type")="int" + Set gtmtypfldindx("jnl_private_control","new_dsk")=14 + Set gtmtypes("jnl_private_control",15,"name")="jnl_private_control.new_dskaddr" + Set gtmtypes("jnl_private_control",15,"off")=64 + Set gtmtypes("jnl_private_control",15,"len")=4 + Set gtmtypes("jnl_private_control",15,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","new_dskaddr")=15 + Set gtmtypes("jnl_private_control",16,"name")="jnl_private_control.status" + Set gtmtypes("jnl_private_control",16,"off")=68 + Set gtmtypes("jnl_private_control",16,"len")=4 + Set gtmtypes("jnl_private_control",16,"type")="int" + Set gtmtypfldindx("jnl_private_control","status")=16 + Set gtmtypes("jnl_private_control",17,"name")="jnl_private_control.dsk_update_inprog" + Set gtmtypes("jnl_private_control",17,"off")=72 + Set gtmtypes("jnl_private_control",17,"len")=4 + Set gtmtypes("jnl_private_control",17,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","dsk_update_inprog")=17 + Set gtmtypes("jnl_private_control",18,"name")="jnl_private_control.qio_active" + Set gtmtypes("jnl_private_control",18,"off")=76 + Set gtmtypes("jnl_private_control",18,"len")=4 + Set gtmtypes("jnl_private_control",18,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","qio_active")=18 + Set gtmtypes("jnl_private_control",19,"name")="jnl_private_control.fd_mismatch" + Set gtmtypes("jnl_private_control",19,"off")=80 + Set gtmtypes("jnl_private_control",19,"len")=4 + Set gtmtypes("jnl_private_control",19,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","fd_mismatch")=19 + Set gtmtypes("jnl_private_control",20,"name")="jnl_private_control.sync_io" + Set gtmtypes("jnl_private_control",20,"off")=84 + Set gtmtypes("jnl_private_control",20,"len")=4 + Set gtmtypes("jnl_private_control",20,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","sync_io")=20 + Set gtmtypes("jnl_private_control",21,"name")="jnl_private_control.error_reported" + Set gtmtypes("jnl_private_control",21,"off")=88 + Set gtmtypes("jnl_private_control",21,"len")=4 + Set gtmtypes("jnl_private_control",21,"type")="boolean_t" + Set gtmtypfldindx("jnl_private_control","error_reported")=21 + Set gtmtypes("jnl_private_control",22,"name")="jnl_private_control.status2" + Set gtmtypes("jnl_private_control",22,"off")=92 + Set gtmtypes("jnl_private_control",22,"len")=4 + Set gtmtypes("jnl_private_control",22,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","status2")=22 + Set gtmtypes("jnl_private_control",23,"name")="jnl_private_control.cycle" + Set gtmtypes("jnl_private_control",23,"off")=96 + Set gtmtypes("jnl_private_control",23,"len")=4 + Set gtmtypes("jnl_private_control",23,"type")="unsigned-int" + Set gtmtypfldindx("jnl_private_control","cycle")=23 + ; + Set gtmtypes("jnl_process_vector")="struct" + Set gtmtypes("jnl_process_vector",0)=10 + Set gtmtypes("jnl_process_vector","len")=88 + Set gtmtypes("jnl_process_vector",1,"name")="jnl_process_vector.jpv_pid" + Set gtmtypes("jnl_process_vector",1,"off")=0 + Set gtmtypes("jnl_process_vector",1,"len")=4 + Set gtmtypes("jnl_process_vector",1,"type")="unsigned-int" + Set gtmtypfldindx("jnl_process_vector","jpv_pid")=1 + Set gtmtypes("jnl_process_vector",2,"name")="jnl_process_vector.jpv_image_count" + Set gtmtypes("jnl_process_vector",2,"off")=4 + Set gtmtypes("jnl_process_vector",2,"len")=4 + Set gtmtypes("jnl_process_vector",2,"type")="int" + Set gtmtypfldindx("jnl_process_vector","jpv_image_count")=2 + Set gtmtypes("jnl_process_vector",3,"name")="jnl_process_vector.jpv_time" + Set gtmtypes("jnl_process_vector",3,"off")=8 + Set gtmtypes("jnl_process_vector",3,"len")=8 + Set gtmtypes("jnl_process_vector",3,"type")="int64_t" + Set gtmtypfldindx("jnl_process_vector","jpv_time")=3 + Set gtmtypes("jnl_process_vector",4,"name")="jnl_process_vector.jpv_login_time" + Set gtmtypes("jnl_process_vector",4,"off")=16 + Set gtmtypes("jnl_process_vector",4,"len")=8 + Set gtmtypes("jnl_process_vector",4,"type")="int64_t" + Set gtmtypfldindx("jnl_process_vector","jpv_login_time")=4 + Set gtmtypes("jnl_process_vector",5,"name")="jnl_process_vector.jpv_node" + Set gtmtypes("jnl_process_vector",5,"off")=24 + Set gtmtypes("jnl_process_vector",5,"len")=16 + Set gtmtypes("jnl_process_vector",5,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_node")=5 + Set gtmtypes("jnl_process_vector",6,"name")="jnl_process_vector.jpv_user" + Set gtmtypes("jnl_process_vector",6,"off")=40 + Set gtmtypes("jnl_process_vector",6,"len")=12 + Set gtmtypes("jnl_process_vector",6,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_user")=6 + Set gtmtypes("jnl_process_vector",7,"name")="jnl_process_vector.jpv_prcnam" + Set gtmtypes("jnl_process_vector",7,"off")=52 + Set gtmtypes("jnl_process_vector",7,"len")=16 + Set gtmtypes("jnl_process_vector",7,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_prcnam")=7 + Set gtmtypes("jnl_process_vector",8,"name")="jnl_process_vector.jpv_terminal" + Set gtmtypes("jnl_process_vector",8,"off")=68 + Set gtmtypes("jnl_process_vector",8,"len")=15 + Set gtmtypes("jnl_process_vector",8,"type")="char" + Set gtmtypfldindx("jnl_process_vector","jpv_terminal")=8 + Set gtmtypes("jnl_process_vector",9,"name")="jnl_process_vector.jpv_mode" + Set gtmtypes("jnl_process_vector",9,"off")=83 + Set gtmtypes("jnl_process_vector",9,"len")=1 + Set gtmtypes("jnl_process_vector",9,"type")="unsigned-char" + Set gtmtypfldindx("jnl_process_vector","jpv_mode")=9 + Set gtmtypes("jnl_process_vector",10,"name")="jnl_process_vector.filler" + Set gtmtypes("jnl_process_vector",10,"off")=84 + Set gtmtypes("jnl_process_vector",10,"len")=4 + Set gtmtypes("jnl_process_vector",10,"type")="int" + Set gtmtypfldindx("jnl_process_vector","filler")=10 + ; + Set gtmtypes("jnl_record")="union" + Set gtmtypes("jnl_record",0)=100 + Set gtmtypes("jnl_record","len")=208 + Set gtmtypes("jnl_record",1,"name")="jnl_record.prefix" + Set gtmtypes("jnl_record",1,"off")=0 + Set gtmtypes("jnl_record",1,"len")=24 + Set gtmtypes("jnl_record",1,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","prefix")=1 + Set gtmtypes("jnl_record",2,"name")="jnl_record.prefix.pini_addr" + Set gtmtypes("jnl_record",2,"off")=4 + Set gtmtypes("jnl_record",2,"len")=4 + Set gtmtypes("jnl_record",2,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.pini_addr")=2 + Set gtmtypes("jnl_record",3,"name")="jnl_record.prefix.time" + Set gtmtypes("jnl_record",3,"off")=8 + Set gtmtypes("jnl_record",3,"len")=4 + Set gtmtypes("jnl_record",3,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.time")=3 + Set gtmtypes("jnl_record",4,"name")="jnl_record.prefix.checksum" + Set gtmtypes("jnl_record",4,"off")=12 + Set gtmtypes("jnl_record",4,"len")=4 + Set gtmtypes("jnl_record",4,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","prefix.checksum")=4 + Set gtmtypes("jnl_record",5,"name")="jnl_record.prefix.tn" + Set gtmtypes("jnl_record",5,"off")=16 + Set gtmtypes("jnl_record",5,"len")=8 + Set gtmtypes("jnl_record",5,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","prefix.tn")=5 + Set gtmtypes("jnl_record",6,"name")="jnl_record.jrec_set_kill" + Set gtmtypes("jnl_record",6,"off")=0 + Set gtmtypes("jnl_record",6,"len")=56 + Set gtmtypes("jnl_record",6,"type")="struct_jrec_upd" + Set gtmtypfldindx("jnl_record","jrec_set_kill")=6 + Set gtmtypes("jnl_record",7,"name")="jnl_record.jrec_set_kill.prefix" + Set gtmtypes("jnl_record",7,"off")=0 + Set gtmtypes("jnl_record",7,"len")=24 + Set gtmtypes("jnl_record",7,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_set_kill.prefix")=7 + Set gtmtypes("jnl_record",8,"name")="jnl_record.jrec_set_kill.token_seq" + Set gtmtypes("jnl_record",8,"off")=24 + Set gtmtypes("jnl_record",8,"len")=8 + Set gtmtypes("jnl_record",8,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_set_kill.token_seq")=8 + Set gtmtypes("jnl_record",9,"name")="jnl_record.jrec_set_kill.strm_seqno" + Set gtmtypes("jnl_record",9,"off")=32 + Set gtmtypes("jnl_record",9,"len")=8 + Set gtmtypes("jnl_record",9,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_set_kill.strm_seqno")=9 + Set gtmtypes("jnl_record",10,"name")="jnl_record.jrec_set_kill.update_num" + Set gtmtypes("jnl_record",10,"off")=40 + Set gtmtypes("jnl_record",10,"len")=4 + Set gtmtypes("jnl_record",10,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_set_kill.update_num")=10 + Set gtmtypes("jnl_record",11,"name")="jnl_record.jrec_set_kill.filler_short" + Set gtmtypes("jnl_record",11,"off")=44 + Set gtmtypes("jnl_record",11,"len")=2 + Set gtmtypes("jnl_record",11,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_set_kill.filler_short")=11 + Set gtmtypes("jnl_record",12,"name")="jnl_record.jrec_set_kill.num_participants" + Set gtmtypes("jnl_record",12,"off")=46 + Set gtmtypes("jnl_record",12,"len")=2 + Set gtmtypes("jnl_record",12,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_set_kill.num_participants")=12 + Set gtmtypes("jnl_record",13,"name")="jnl_record.jrec_set_kill.mumps_node" + Set gtmtypes("jnl_record",13,"off")=48 + Set gtmtypes("jnl_record",13,"len")=8 + Set gtmtypes("jnl_record",13,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_set_kill.mumps_node")=13 + Set gtmtypes("jnl_record",14,"name")="jnl_record.jrec_ztworm" + Set gtmtypes("jnl_record",14,"off")=0 + Set gtmtypes("jnl_record",14,"len")=56 + Set gtmtypes("jnl_record",14,"type")="struct_jrec_ztworm" + Set gtmtypfldindx("jnl_record","jrec_ztworm")=14 + Set gtmtypes("jnl_record",15,"name")="jnl_record.jrec_ztworm.prefix" + Set gtmtypes("jnl_record",15,"off")=0 + Set gtmtypes("jnl_record",15,"len")=24 + Set gtmtypes("jnl_record",15,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_ztworm.prefix")=15 + Set gtmtypes("jnl_record",16,"name")="jnl_record.jrec_ztworm.token_seq" + Set gtmtypes("jnl_record",16,"off")=24 + Set gtmtypes("jnl_record",16,"len")=8 + Set gtmtypes("jnl_record",16,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_ztworm.token_seq")=16 + Set gtmtypes("jnl_record",17,"name")="jnl_record.jrec_ztworm.strm_seqno" + Set gtmtypes("jnl_record",17,"off")=32 + Set gtmtypes("jnl_record",17,"len")=8 + Set gtmtypes("jnl_record",17,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztworm.strm_seqno")=17 + Set gtmtypes("jnl_record",18,"name")="jnl_record.jrec_ztworm.update_num" + Set gtmtypes("jnl_record",18,"off")=40 + Set gtmtypes("jnl_record",18,"len")=4 + Set gtmtypes("jnl_record",18,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_ztworm.update_num")=18 + Set gtmtypes("jnl_record",19,"name")="jnl_record.jrec_ztworm.filler_short" + Set gtmtypes("jnl_record",19,"off")=44 + Set gtmtypes("jnl_record",19,"len")=2 + Set gtmtypes("jnl_record",19,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztworm.filler_short")=19 + Set gtmtypes("jnl_record",20,"name")="jnl_record.jrec_ztworm.num_participants" + Set gtmtypes("jnl_record",20,"off")=46 + Set gtmtypes("jnl_record",20,"len")=2 + Set gtmtypes("jnl_record",20,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztworm.num_participants")=20 + Set gtmtypes("jnl_record",21,"name")="jnl_record.jrec_ztworm.ztworm_str" + Set gtmtypes("jnl_record",21,"off")=48 + Set gtmtypes("jnl_record",21,"len")=8 + Set gtmtypes("jnl_record",21,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_ztworm.ztworm_str")=21 + Set gtmtypes("jnl_record",22,"name")="jnl_record.jrec_lgtrig" + Set gtmtypes("jnl_record",22,"off")=0 + Set gtmtypes("jnl_record",22,"len")=56 + Set gtmtypes("jnl_record",22,"type")="struct_jrec_lgtrig" + Set gtmtypfldindx("jnl_record","jrec_lgtrig")=22 + Set gtmtypes("jnl_record",23,"name")="jnl_record.jrec_lgtrig.prefix" + Set gtmtypes("jnl_record",23,"off")=0 + Set gtmtypes("jnl_record",23,"len")=24 + Set gtmtypes("jnl_record",23,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.prefix")=23 + Set gtmtypes("jnl_record",24,"name")="jnl_record.jrec_lgtrig.token_seq" + Set gtmtypes("jnl_record",24,"off")=24 + Set gtmtypes("jnl_record",24,"len")=8 + Set gtmtypes("jnl_record",24,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.token_seq")=24 + Set gtmtypes("jnl_record",25,"name")="jnl_record.jrec_lgtrig.strm_seqno" + Set gtmtypes("jnl_record",25,"off")=32 + Set gtmtypes("jnl_record",25,"len")=8 + Set gtmtypes("jnl_record",25,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.strm_seqno")=25 + Set gtmtypes("jnl_record",26,"name")="jnl_record.jrec_lgtrig.update_num" + Set gtmtypes("jnl_record",26,"off")=40 + Set gtmtypes("jnl_record",26,"len")=4 + Set gtmtypes("jnl_record",26,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.update_num")=26 + Set gtmtypes("jnl_record",27,"name")="jnl_record.jrec_lgtrig.filler_short" + Set gtmtypes("jnl_record",27,"off")=44 + Set gtmtypes("jnl_record",27,"len")=2 + Set gtmtypes("jnl_record",27,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.filler_short")=27 + Set gtmtypes("jnl_record",28,"name")="jnl_record.jrec_lgtrig.num_participants" + Set gtmtypes("jnl_record",28,"off")=46 + Set gtmtypes("jnl_record",28,"len")=2 + Set gtmtypes("jnl_record",28,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.num_participants")=28 + Set gtmtypes("jnl_record",29,"name")="jnl_record.jrec_lgtrig.lgtrig_str" + Set gtmtypes("jnl_record",29,"off")=48 + Set gtmtypes("jnl_record",29,"len")=8 + Set gtmtypes("jnl_record",29,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_lgtrig.lgtrig_str")=29 + Set gtmtypes("jnl_record",30,"name")="jnl_record.jrec_pblk" + Set gtmtypes("jnl_record",30,"off")=0 + Set gtmtypes("jnl_record",30,"len")=44 + Set gtmtypes("jnl_record",30,"type")="struct_jrec_blk" + Set gtmtypfldindx("jnl_record","jrec_pblk")=30 + Set gtmtypes("jnl_record",31,"name")="jnl_record.jrec_pblk.prefix" + Set gtmtypes("jnl_record",31,"off")=0 + Set gtmtypes("jnl_record",31,"len")=24 + Set gtmtypes("jnl_record",31,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pblk.prefix")=31 + Set gtmtypes("jnl_record",32,"name")="jnl_record.jrec_pblk.blknum" + Set gtmtypes("jnl_record",32,"off")=24 + Set gtmtypes("jnl_record",32,"len")=4 + Set gtmtypes("jnl_record",32,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.blknum")=32 + Set gtmtypes("jnl_record",33,"name")="jnl_record.jrec_pblk.bsiz" + Set gtmtypes("jnl_record",33,"off")=28 + Set gtmtypes("jnl_record",33,"len")=4 + Set gtmtypes("jnl_record",33,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_pblk.bsiz")=33 + Set gtmtypes("jnl_record",34,"name")="jnl_record.jrec_pblk.ondsk_blkver" + Set gtmtypes("jnl_record",34,"off")=32 + Set gtmtypes("jnl_record",34,"len")=4 + Set gtmtypes("jnl_record",34,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.ondsk_blkver")=34 + Set gtmtypes("jnl_record",35,"name")="jnl_record.jrec_pblk.filler" + Set gtmtypes("jnl_record",35,"off")=36 + Set gtmtypes("jnl_record",35,"len")=4 + Set gtmtypes("jnl_record",35,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pblk.filler")=35 + Set gtmtypes("jnl_record",36,"name")="jnl_record.jrec_pblk.blk_contents" + Set gtmtypes("jnl_record",36,"off")=40 + Set gtmtypes("jnl_record",36,"len")=1 + Set gtmtypes("jnl_record",36,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_pblk.blk_contents")=36 + Set gtmtypes("jnl_record",37,"name")="jnl_record.jrec_aimg" + Set gtmtypes("jnl_record",37,"off")=0 + Set gtmtypes("jnl_record",37,"len")=44 + Set gtmtypes("jnl_record",37,"type")="struct_jrec_blk" + Set gtmtypfldindx("jnl_record","jrec_aimg")=37 + Set gtmtypes("jnl_record",38,"name")="jnl_record.jrec_aimg.prefix" + Set gtmtypes("jnl_record",38,"off")=0 + Set gtmtypes("jnl_record",38,"len")=24 + Set gtmtypes("jnl_record",38,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_aimg.prefix")=38 + Set gtmtypes("jnl_record",39,"name")="jnl_record.jrec_aimg.blknum" + Set gtmtypes("jnl_record",39,"off")=24 + Set gtmtypes("jnl_record",39,"len")=4 + Set gtmtypes("jnl_record",39,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.blknum")=39 + Set gtmtypes("jnl_record",40,"name")="jnl_record.jrec_aimg.bsiz" + Set gtmtypes("jnl_record",40,"off")=28 + Set gtmtypes("jnl_record",40,"len")=4 + Set gtmtypes("jnl_record",40,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_aimg.bsiz")=40 + Set gtmtypes("jnl_record",41,"name")="jnl_record.jrec_aimg.ondsk_blkver" + Set gtmtypes("jnl_record",41,"off")=32 + Set gtmtypes("jnl_record",41,"len")=4 + Set gtmtypes("jnl_record",41,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.ondsk_blkver")=41 + Set gtmtypes("jnl_record",42,"name")="jnl_record.jrec_aimg.filler" + Set gtmtypes("jnl_record",42,"off")=36 + Set gtmtypes("jnl_record",42,"len")=4 + Set gtmtypes("jnl_record",42,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_aimg.filler")=42 + Set gtmtypes("jnl_record",43,"name")="jnl_record.jrec_aimg.blk_contents" + Set gtmtypes("jnl_record",43,"off")=40 + Set gtmtypes("jnl_record",43,"len")=1 + Set gtmtypes("jnl_record",43,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_aimg.blk_contents")=43 + Set gtmtypes("jnl_record",44,"name")="jnl_record.jrec_align" + Set gtmtypes("jnl_record",44,"off")=0 + Set gtmtypes("jnl_record",44,"len")=32 + Set gtmtypes("jnl_record",44,"type")="struct_jrec_align" + Set gtmtypfldindx("jnl_record","jrec_align")=44 + Set gtmtypes("jnl_record",45,"name")="jnl_record.jrec_align.prefix" + Set gtmtypes("jnl_record",45,"off")=0 + Set gtmtypes("jnl_record",45,"len")=24 + Set gtmtypes("jnl_record",45,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_align.prefix")=45 + Set gtmtypes("jnl_record",46,"name")="jnl_record.jrec_align.align_str" + Set gtmtypes("jnl_record",46,"off")=24 + Set gtmtypes("jnl_record",46,"len")=8 + Set gtmtypes("jnl_record",46,"type")="jnl_string" + Set gtmtypfldindx("jnl_record","jrec_align.align_str")=46 + Set gtmtypes("jnl_record",47,"name")="jnl_record.jrec_tcom" + Set gtmtypes("jnl_record",47,"off")=0 + Set gtmtypes("jnl_record",47,"len")=56 + Set gtmtypes("jnl_record",47,"type")="struct_jrec_tcom" + Set gtmtypfldindx("jnl_record","jrec_tcom")=47 + Set gtmtypes("jnl_record",48,"name")="jnl_record.jrec_tcom.prefix" + Set gtmtypes("jnl_record",48,"off")=0 + Set gtmtypes("jnl_record",48,"len")=24 + Set gtmtypes("jnl_record",48,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_tcom.prefix")=48 + Set gtmtypes("jnl_record",49,"name")="jnl_record.jrec_tcom.token_seq" + Set gtmtypes("jnl_record",49,"off")=24 + Set gtmtypes("jnl_record",49,"len")=8 + Set gtmtypes("jnl_record",49,"type")="token_seq_t" + Set gtmtypfldindx("jnl_record","jrec_tcom.token_seq")=49 + Set gtmtypes("jnl_record",50,"name")="jnl_record.jrec_tcom.strm_seqno" + Set gtmtypes("jnl_record",50,"off")=32 + Set gtmtypes("jnl_record",50,"len")=8 + Set gtmtypes("jnl_record",50,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_tcom.strm_seqno")=50 + Set gtmtypes("jnl_record",51,"name")="jnl_record.jrec_tcom.filler_short" + Set gtmtypes("jnl_record",51,"off")=40 + Set gtmtypes("jnl_record",51,"len")=2 + Set gtmtypes("jnl_record",51,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_tcom.filler_short")=51 + Set gtmtypes("jnl_record",52,"name")="jnl_record.jrec_tcom.num_participants" + Set gtmtypes("jnl_record",52,"off")=42 + Set gtmtypes("jnl_record",52,"len")=2 + Set gtmtypes("jnl_record",52,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_tcom.num_participants")=52 + Set gtmtypes("jnl_record",53,"name")="jnl_record.jrec_tcom.jnl_tid" + Set gtmtypes("jnl_record",53,"off")=44 + Set gtmtypes("jnl_record",53,"len")=8 + Set gtmtypes("jnl_record",53,"type")="char" + Set gtmtypfldindx("jnl_record","jrec_tcom.jnl_tid")=53 + Set gtmtypes("jnl_record",54,"name")="jnl_record.jrec_tcom.suffix" + Set gtmtypes("jnl_record",54,"off")=52 + Set gtmtypes("jnl_record",54,"len")=4 + Set gtmtypes("jnl_record",54,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_tcom.suffix")=54 + Set gtmtypes("jnl_record",55,"name")="jnl_record.jrec_ztcom" + Set gtmtypes("jnl_record",55,"off")=0 + Set gtmtypes("jnl_record",55,"len")=48 + Set gtmtypes("jnl_record",55,"type")="struct_jrec_ztcom" + Set gtmtypfldindx("jnl_record","jrec_ztcom")=55 + Set gtmtypes("jnl_record",56,"name")="jnl_record.jrec_ztcom.prefix" + Set gtmtypes("jnl_record",56,"off")=0 + Set gtmtypes("jnl_record",56,"len")=24 + Set gtmtypes("jnl_record",56,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_ztcom.prefix")=56 + Set gtmtypes("jnl_record",57,"name")="jnl_record.jrec_ztcom.token" + Set gtmtypes("jnl_record",57,"off")=24 + Set gtmtypes("jnl_record",57,"len")=8 + Set gtmtypes("jnl_record",57,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztcom.token")=57 + Set gtmtypes("jnl_record",58,"name")="jnl_record.jrec_ztcom.filler_8bytes" + Set gtmtypes("jnl_record",58,"off")=32 + Set gtmtypes("jnl_record",58,"len")=8 + Set gtmtypes("jnl_record",58,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_ztcom.filler_8bytes")=58 + Set gtmtypes("jnl_record",59,"name")="jnl_record.jrec_ztcom.filler_short" + Set gtmtypes("jnl_record",59,"off")=40 + Set gtmtypes("jnl_record",59,"len")=2 + Set gtmtypes("jnl_record",59,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztcom.filler_short")=59 + Set gtmtypes("jnl_record",60,"name")="jnl_record.jrec_ztcom.participants" + Set gtmtypes("jnl_record",60,"off")=42 + Set gtmtypes("jnl_record",60,"len")=2 + Set gtmtypes("jnl_record",60,"type")="unsigned-short" + Set gtmtypfldindx("jnl_record","jrec_ztcom.participants")=60 + Set gtmtypes("jnl_record",61,"name")="jnl_record.jrec_ztcom.suffix" + Set gtmtypes("jnl_record",61,"off")=44 + Set gtmtypes("jnl_record",61,"len")=4 + Set gtmtypes("jnl_record",61,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_ztcom.suffix")=61 + Set gtmtypes("jnl_record",62,"name")="jnl_record.jrec_inctn" + Set gtmtypes("jnl_record",62,"off")=0 + Set gtmtypes("jnl_record",62,"len")=40 + Set gtmtypes("jnl_record",62,"type")="struct_jrec_inctn" + Set gtmtypfldindx("jnl_record","jrec_inctn")=62 + Set gtmtypes("jnl_record",63,"name")="jnl_record.jrec_inctn.prefix" + Set gtmtypes("jnl_record",63,"off")=0 + Set gtmtypes("jnl_record",63,"len")=24 + Set gtmtypes("jnl_record",63,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_inctn.prefix")=63 + Set gtmtypes("jnl_record",64,"name")="jnl_record.jrec_inctn.detail" + Set gtmtypes("jnl_record",64,"off")=24 + Set gtmtypes("jnl_record",64,"len")=16 + Set gtmtypes("jnl_record",64,"type")="inctn_detail_t" + Set gtmtypfldindx("jnl_record","jrec_inctn.detail")=64 + Set gtmtypes("jnl_record",65,"name")="jnl_record.jrec_pini" + Set gtmtypes("jnl_record",65,"off")=0 + Set gtmtypes("jnl_record",65,"len")=208 + Set gtmtypes("jnl_record",65,"type")="struct_jrec_pini" + Set gtmtypfldindx("jnl_record","jrec_pini")=65 + Set gtmtypes("jnl_record",66,"name")="jnl_record.jrec_pini.prefix" + Set gtmtypes("jnl_record",66,"off")=0 + Set gtmtypes("jnl_record",66,"len")=24 + Set gtmtypes("jnl_record",66,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pini.prefix")=66 + Set gtmtypes("jnl_record",67,"name")="jnl_record.jrec_pini.process_vector" + Set gtmtypes("jnl_record",67,"off")=24 + Set gtmtypes("jnl_record",67,"len")=176 + Set gtmtypes("jnl_record",67,"type")="jnl_process_vector" + Set gtmtypfldindx("jnl_record","jrec_pini.process_vector")=67 + Set gtmtypes("jnl_record",67,"dim")=2 + Set gtmtypes("jnl_record",68,"name")="jnl_record.jrec_pini.filler" + Set gtmtypes("jnl_record",68,"off")=200 + Set gtmtypes("jnl_record",68,"len")=4 + Set gtmtypes("jnl_record",68,"type")="int" + Set gtmtypfldindx("jnl_record","jrec_pini.filler")=68 + Set gtmtypes("jnl_record",69,"name")="jnl_record.jrec_pini.suffix" + Set gtmtypes("jnl_record",69,"off")=204 + Set gtmtypes("jnl_record",69,"len")=4 + Set gtmtypes("jnl_record",69,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_pini.suffix")=69 + Set gtmtypes("jnl_record",70,"name")="jnl_record.jrec_pfin" + Set gtmtypes("jnl_record",70,"off")=0 + Set gtmtypes("jnl_record",70,"len")=32 + Set gtmtypes("jnl_record",70,"type")="struct_jrec_pfin" + Set gtmtypfldindx("jnl_record","jrec_pfin")=70 + Set gtmtypes("jnl_record",71,"name")="jnl_record.jrec_pfin.prefix" + Set gtmtypes("jnl_record",71,"off")=0 + Set gtmtypes("jnl_record",71,"len")=24 + Set gtmtypes("jnl_record",71,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_pfin.prefix")=71 + Set gtmtypes("jnl_record",72,"name")="jnl_record.jrec_pfin.filler" + Set gtmtypes("jnl_record",72,"off")=24 + Set gtmtypes("jnl_record",72,"len")=4 + Set gtmtypes("jnl_record",72,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_pfin.filler")=72 + Set gtmtypes("jnl_record",73,"name")="jnl_record.jrec_pfin.suffix" + Set gtmtypes("jnl_record",73,"off")=28 + Set gtmtypes("jnl_record",73,"len")=4 + Set gtmtypes("jnl_record",73,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_pfin.suffix")=73 + Set gtmtypes("jnl_record",74,"name")="jnl_record.jrec_null" + Set gtmtypes("jnl_record",74,"off")=0 + Set gtmtypes("jnl_record",74,"len")=48 + Set gtmtypes("jnl_record",74,"type")="struct_jrec_null" + Set gtmtypfldindx("jnl_record","jrec_null")=74 + Set gtmtypes("jnl_record",75,"name")="jnl_record.jrec_null.prefix" + Set gtmtypes("jnl_record",75,"off")=0 + Set gtmtypes("jnl_record",75,"len")=24 + Set gtmtypes("jnl_record",75,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_null.prefix")=75 + Set gtmtypes("jnl_record",76,"name")="jnl_record.jrec_null.jnl_seqno" + Set gtmtypes("jnl_record",76,"off")=24 + Set gtmtypes("jnl_record",76,"len")=8 + Set gtmtypes("jnl_record",76,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_null.jnl_seqno")=76 + Set gtmtypes("jnl_record",77,"name")="jnl_record.jrec_null.strm_seqno" + Set gtmtypes("jnl_record",77,"off")=32 + Set gtmtypes("jnl_record",77,"len")=8 + Set gtmtypes("jnl_record",77,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_null.strm_seqno")=77 + Set gtmtypes("jnl_record",78,"name")="jnl_record.jrec_null.filler" + Set gtmtypes("jnl_record",78,"off")=40 + Set gtmtypes("jnl_record",78,"len")=4 + Set gtmtypes("jnl_record",78,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_null.filler")=78 + Set gtmtypes("jnl_record",79,"name")="jnl_record.jrec_null.suffix" + Set gtmtypes("jnl_record",79,"off")=44 + Set gtmtypes("jnl_record",79,"len")=4 + Set gtmtypes("jnl_record",79,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_null.suffix")=79 + Set gtmtypes("jnl_record",80,"name")="jnl_record.jrec_epoch" + Set gtmtypes("jnl_record",80,"off")=0 + Set gtmtypes("jnl_record",80,"len")=184 + Set gtmtypes("jnl_record",80,"type")="struct_jrec_epoch" + Set gtmtypfldindx("jnl_record","jrec_epoch")=80 + Set gtmtypes("jnl_record",81,"name")="jnl_record.jrec_epoch.prefix" + Set gtmtypes("jnl_record",81,"off")=0 + Set gtmtypes("jnl_record",81,"len")=24 + Set gtmtypes("jnl_record",81,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_epoch.prefix")=81 + Set gtmtypes("jnl_record",82,"name")="jnl_record.jrec_epoch.jnl_seqno" + Set gtmtypes("jnl_record",82,"off")=24 + Set gtmtypes("jnl_record",82,"len")=8 + Set gtmtypes("jnl_record",82,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.jnl_seqno")=82 + Set gtmtypes("jnl_record",83,"name")="jnl_record.jrec_epoch.blks_to_upgrd" + Set gtmtypes("jnl_record",83,"off")=32 + Set gtmtypes("jnl_record",83,"len")=4 + Set gtmtypes("jnl_record",83,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.blks_to_upgrd")=83 + Set gtmtypes("jnl_record",84,"name")="jnl_record.jrec_epoch.free_blocks" + Set gtmtypes("jnl_record",84,"off")=36 + Set gtmtypes("jnl_record",84,"len")=4 + Set gtmtypes("jnl_record",84,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.free_blocks")=84 + Set gtmtypes("jnl_record",85,"name")="jnl_record.jrec_epoch.total_blks" + Set gtmtypes("jnl_record",85,"off")=40 + Set gtmtypes("jnl_record",85,"len")=4 + Set gtmtypes("jnl_record",85,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.total_blks")=85 + Set gtmtypes("jnl_record",86,"name")="jnl_record.jrec_epoch.fully_upgraded" + Set gtmtypes("jnl_record",86,"off")=44 + Set gtmtypes("jnl_record",86,"len")=4 + Set gtmtypes("jnl_record",86,"type")="boolean_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.fully_upgraded")=86 + Set gtmtypes("jnl_record",87,"name")="jnl_record.jrec_epoch.strm_seqno" + Set gtmtypes("jnl_record",87,"off")=48 + Set gtmtypes("jnl_record",87,"len")=128 + Set gtmtypes("jnl_record",87,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_epoch.strm_seqno")=87 + Set gtmtypes("jnl_record",87,"dim")=16 + Set gtmtypes("jnl_record",88,"name")="jnl_record.jrec_epoch.filler" + Set gtmtypes("jnl_record",88,"off")=176 + Set gtmtypes("jnl_record",88,"len")=4 + Set gtmtypes("jnl_record",88,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_epoch.filler")=88 + Set gtmtypes("jnl_record",89,"name")="jnl_record.jrec_epoch.suffix" + Set gtmtypes("jnl_record",89,"off")=180 + Set gtmtypes("jnl_record",89,"len")=4 + Set gtmtypes("jnl_record",89,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_epoch.suffix")=89 + Set gtmtypes("jnl_record",90,"name")="jnl_record.jrec_eof" + Set gtmtypes("jnl_record",90,"off")=0 + Set gtmtypes("jnl_record",90,"len")=40 + Set gtmtypes("jnl_record",90,"type")="struct_jrec_eof" + Set gtmtypfldindx("jnl_record","jrec_eof")=90 + Set gtmtypes("jnl_record",91,"name")="jnl_record.jrec_eof.prefix" + Set gtmtypes("jnl_record",91,"off")=0 + Set gtmtypes("jnl_record",91,"len")=24 + Set gtmtypes("jnl_record",91,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_eof.prefix")=91 + Set gtmtypes("jnl_record",92,"name")="jnl_record.jrec_eof.jnl_seqno" + Set gtmtypes("jnl_record",92,"off")=24 + Set gtmtypes("jnl_record",92,"len")=8 + Set gtmtypes("jnl_record",92,"type")="uint64_t" + Set gtmtypfldindx("jnl_record","jrec_eof.jnl_seqno")=92 + Set gtmtypes("jnl_record",93,"name")="jnl_record.jrec_eof.filler" + Set gtmtypes("jnl_record",93,"off")=32 + Set gtmtypes("jnl_record",93,"len")=4 + Set gtmtypes("jnl_record",93,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_eof.filler")=93 + Set gtmtypes("jnl_record",94,"name")="jnl_record.jrec_eof.suffix" + Set gtmtypes("jnl_record",94,"off")=36 + Set gtmtypes("jnl_record",94,"len")=4 + Set gtmtypes("jnl_record",94,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_eof.suffix")=94 + Set gtmtypes("jnl_record",95,"name")="jnl_record.jrec_trunc" + Set gtmtypes("jnl_record",95,"off")=0 + Set gtmtypes("jnl_record",95,"len")=40 + Set gtmtypes("jnl_record",95,"type")="struct_jrec_trunc" + Set gtmtypfldindx("jnl_record","jrec_trunc")=95 + Set gtmtypes("jnl_record",96,"name")="jnl_record.jrec_trunc.prefix" + Set gtmtypes("jnl_record",96,"off")=0 + Set gtmtypes("jnl_record",96,"len")=24 + Set gtmtypes("jnl_record",96,"type")="jrec_prefix" + Set gtmtypfldindx("jnl_record","jrec_trunc.prefix")=96 + Set gtmtypes("jnl_record",97,"name")="jnl_record.jrec_trunc.orig_total_blks" + Set gtmtypes("jnl_record",97,"off")=24 + Set gtmtypes("jnl_record",97,"len")=4 + Set gtmtypes("jnl_record",97,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.orig_total_blks")=97 + Set gtmtypes("jnl_record",98,"name")="jnl_record.jrec_trunc.orig_free_blocks" + Set gtmtypes("jnl_record",98,"off")=28 + Set gtmtypes("jnl_record",98,"len")=4 + Set gtmtypes("jnl_record",98,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.orig_free_blocks")=98 + Set gtmtypes("jnl_record",99,"name")="jnl_record.jrec_trunc.total_blks_after_trunc" + Set gtmtypes("jnl_record",99,"off")=32 + Set gtmtypes("jnl_record",99,"len")=4 + Set gtmtypes("jnl_record",99,"type")="unsigned-int" + Set gtmtypfldindx("jnl_record","jrec_trunc.total_blks_after_trunc")=99 + Set gtmtypes("jnl_record",100,"name")="jnl_record.jrec_trunc.suffix" + Set gtmtypes("jnl_record",100,"off")=36 + Set gtmtypes("jnl_record",100,"len")=4 + Set gtmtypes("jnl_record",100,"type")="jrec_suffix" + Set gtmtypfldindx("jnl_record","jrec_trunc.suffix")=100 + ; + Set gtmtypes("jnl_string")="struct" + Set gtmtypes("jnl_string",0)=1 + Set gtmtypes("jnl_string","len")=8 + Set gtmtypes("jnl_string",1,"name")="jnl_string.text" + Set gtmtypes("jnl_string",1,"off")=4 + Set gtmtypes("jnl_string",1,"len")=1 + Set gtmtypes("jnl_string",1,"type")="char" + Set gtmtypfldindx("jnl_string","text")=1 + ; + Set gtmtypes("jnldata_hdr_struct")="struct" + Set gtmtypes("jnldata_hdr_struct",0)=2 + Set gtmtypes("jnldata_hdr_struct","len")=8 + Set gtmtypes("jnldata_hdr_struct",1,"name")="jnldata_hdr_struct.jnldata_len" + Set gtmtypes("jnldata_hdr_struct",1,"off")=0 + Set gtmtypes("jnldata_hdr_struct",1,"len")=4 + Set gtmtypes("jnldata_hdr_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("jnldata_hdr_struct","jnldata_len")=1 + Set gtmtypes("jnldata_hdr_struct",2,"name")="jnldata_hdr_struct.prev_jnldata_len" + Set gtmtypes("jnldata_hdr_struct",2,"off")=4 + Set gtmtypes("jnldata_hdr_struct",2,"len")=4 + Set gtmtypes("jnldata_hdr_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("jnldata_hdr_struct","prev_jnldata_len")=2 + ; + Set gtmtypes("jnlext_multi_t")="struct" + Set gtmtypes("jnlext_multi_t",0)=7 + Set gtmtypes("jnlext_multi_t","len")=24 + Set gtmtypes("jnlext_multi_t",1,"name")="jnlext_multi_t.time" + Set gtmtypes("jnlext_multi_t",1,"off")=0 + Set gtmtypes("jnlext_multi_t",1,"len")=4 + Set gtmtypes("jnlext_multi_t",1,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","time")=1 + Set gtmtypes("jnlext_multi_t",2,"name")="jnlext_multi_t.token_seq" + Set gtmtypes("jnlext_multi_t",2,"off")=4 + Set gtmtypes("jnlext_multi_t",2,"len")=8 + Set gtmtypes("jnlext_multi_t",2,"type")="token_seq_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq")=2 + Set gtmtypes("jnlext_multi_t",3,"name")="jnlext_multi_t.token_seq.jnl_seqno" + Set gtmtypes("jnlext_multi_t",3,"off")=4 + Set gtmtypes("jnlext_multi_t",3,"len")=8 + Set gtmtypes("jnlext_multi_t",3,"type")="uint64_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq.jnl_seqno")=3 + Set gtmtypes("jnlext_multi_t",4,"name")="jnlext_multi_t.token_seq.token" + Set gtmtypes("jnlext_multi_t",4,"off")=4 + Set gtmtypes("jnlext_multi_t",4,"len")=8 + Set gtmtypes("jnlext_multi_t",4,"type")="uint64_t" + Set gtmtypfldindx("jnlext_multi_t","token_seq.token")=4 + Set gtmtypes("jnlext_multi_t",5,"name")="jnlext_multi_t.update_num" + Set gtmtypes("jnlext_multi_t",5,"off")=12 + Set gtmtypes("jnlext_multi_t",5,"len")=4 + Set gtmtypes("jnlext_multi_t",5,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","update_num")=5 + Set gtmtypes("jnlext_multi_t",6,"name")="jnlext_multi_t.num_more_reg" + Set gtmtypes("jnlext_multi_t",6,"off")=16 + Set gtmtypes("jnlext_multi_t",6,"len")=4 + Set gtmtypes("jnlext_multi_t",6,"type")="unsigned-int" + Set gtmtypfldindx("jnlext_multi_t","num_more_reg")=6 + Set gtmtypes("jnlext_multi_t",7,"name")="jnlext_multi_t.size" + Set gtmtypes("jnlext_multi_t",7,"off")=20 + Set gtmtypes("jnlext_multi_t",7,"len")=4 + Set gtmtypes("jnlext_multi_t",7,"type")="size_t" + Set gtmtypfldindx("jnlext_multi_t","size")=7 + ; + Set gtmtypes("jnlpool_addrs")="struct" + Set gtmtypes("jnlpool_addrs",0)=7 + Set gtmtypes("jnlpool_addrs","len")=28 + Set gtmtypes("jnlpool_addrs",1,"name")="jnlpool_addrs.jnlpool_ctl" + Set gtmtypes("jnlpool_addrs",1,"off")=0 + Set gtmtypes("jnlpool_addrs",1,"len")=4 + Set gtmtypes("jnlpool_addrs",1,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnlpool_ctl")=1 + Set gtmtypes("jnlpool_addrs",2,"name")="jnlpool_addrs.jnlpool_dummy_reg" + Set gtmtypes("jnlpool_addrs",2,"off")=4 + Set gtmtypes("jnlpool_addrs",2,"len")=4 + Set gtmtypes("jnlpool_addrs",2,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnlpool_dummy_reg")=2 + Set gtmtypes("jnlpool_addrs",3,"name")="jnlpool_addrs.gtmsource_local" + Set gtmtypes("jnlpool_addrs",3,"off")=8 + Set gtmtypes("jnlpool_addrs",3,"len")=4 + Set gtmtypes("jnlpool_addrs",3,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsource_local")=3 + Set gtmtypes("jnlpool_addrs",4,"name")="jnlpool_addrs.gtmsource_local_array" + Set gtmtypes("jnlpool_addrs",4,"off")=12 + Set gtmtypes("jnlpool_addrs",4,"len")=4 + Set gtmtypes("jnlpool_addrs",4,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsource_local_array")=4 + Set gtmtypes("jnlpool_addrs",5,"name")="jnlpool_addrs.repl_inst_filehdr" + Set gtmtypes("jnlpool_addrs",5,"off")=16 + Set gtmtypes("jnlpool_addrs",5,"len")=4 + Set gtmtypes("jnlpool_addrs",5,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","repl_inst_filehdr")=5 + Set gtmtypes("jnlpool_addrs",6,"name")="jnlpool_addrs.gtmsrc_lcl_array" + Set gtmtypes("jnlpool_addrs",6,"off")=20 + Set gtmtypes("jnlpool_addrs",6,"len")=4 + Set gtmtypes("jnlpool_addrs",6,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","gtmsrc_lcl_array")=6 + Set gtmtypes("jnlpool_addrs",7,"name")="jnlpool_addrs.jnldata_base" + Set gtmtypes("jnlpool_addrs",7,"off")=24 + Set gtmtypes("jnlpool_addrs",7,"len")=4 + Set gtmtypes("jnlpool_addrs",7,"type")="addr" + Set gtmtypfldindx("jnlpool_addrs","jnldata_base")=7 + ; + Set gtmtypes("jnlpool_ctl_struct")="struct" + Set gtmtypes("jnlpool_ctl_struct",0)=47 + Set gtmtypes("jnlpool_ctl_struct","len")=3712 + Set gtmtypes("jnlpool_ctl_struct",1,"name")="jnlpool_ctl_struct.jnlpool_id" + Set gtmtypes("jnlpool_ctl_struct",1,"off")=0 + Set gtmtypes("jnlpool_ctl_struct",1,"len")=312 + Set gtmtypes("jnlpool_ctl_struct",1,"type")="replpool_identifier" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id")=1 + Set gtmtypes("jnlpool_ctl_struct",2,"name")="jnlpool_ctl_struct.jnlpool_id.label" + Set gtmtypes("jnlpool_ctl_struct",2,"off")=0 + Set gtmtypes("jnlpool_ctl_struct",2,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.label")=2 + Set gtmtypes("jnlpool_ctl_struct",3,"name")="jnlpool_ctl_struct.jnlpool_id.pool_type" + Set gtmtypes("jnlpool_ctl_struct",3,"off")=12 + Set gtmtypes("jnlpool_ctl_struct",3,"len")=1 + Set gtmtypes("jnlpool_ctl_struct",3,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.pool_type")=3 + Set gtmtypes("jnlpool_ctl_struct",4,"name")="jnlpool_ctl_struct.jnlpool_id.now_running" + Set gtmtypes("jnlpool_ctl_struct",4,"off")=13 + Set gtmtypes("jnlpool_ctl_struct",4,"len")=36 + Set gtmtypes("jnlpool_ctl_struct",4,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.now_running")=4 + Set gtmtypes("jnlpool_ctl_struct",5,"name")="jnlpool_ctl_struct.jnlpool_id.repl_pool_key_filler" + Set gtmtypes("jnlpool_ctl_struct",5,"off")=52 + Set gtmtypes("jnlpool_ctl_struct",5,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",5,"type")="int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.repl_pool_key_filler")=5 + Set gtmtypes("jnlpool_ctl_struct",6,"name")="jnlpool_ctl_struct.jnlpool_id.instfilename" + Set gtmtypes("jnlpool_ctl_struct",6,"off")=56 + Set gtmtypes("jnlpool_ctl_struct",6,"len")=256 + Set gtmtypes("jnlpool_ctl_struct",6,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_id.instfilename")=6 + Set gtmtypes("jnlpool_ctl_struct",7,"name")="jnlpool_ctl_struct.critical_off" + Set gtmtypes("jnlpool_ctl_struct",7,"off")=312 + Set gtmtypes("jnlpool_ctl_struct",7,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",7,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","critical_off")=7 + Set gtmtypes("jnlpool_ctl_struct",8,"name")="jnlpool_ctl_struct.filehdr_off" + Set gtmtypes("jnlpool_ctl_struct",8,"off")=316 + Set gtmtypes("jnlpool_ctl_struct",8,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",8,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","filehdr_off")=8 + Set gtmtypes("jnlpool_ctl_struct",9,"name")="jnlpool_ctl_struct.srclcl_array_off" + Set gtmtypes("jnlpool_ctl_struct",9,"off")=320 + Set gtmtypes("jnlpool_ctl_struct",9,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",9,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","srclcl_array_off")=9 + Set gtmtypes("jnlpool_ctl_struct",10,"name")="jnlpool_ctl_struct.sourcelocal_array_off" + Set gtmtypes("jnlpool_ctl_struct",10,"off")=324 + Set gtmtypes("jnlpool_ctl_struct",10,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",10,"type")="intptr_t" + Set gtmtypfldindx("jnlpool_ctl_struct","sourcelocal_array_off")=10 + Set gtmtypes("jnlpool_ctl_struct",11,"name")="jnlpool_ctl_struct.jnldata_base_off" + Set gtmtypes("jnlpool_ctl_struct",11,"off")=328 + Set gtmtypes("jnlpool_ctl_struct",11,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnldata_base_off")=11 + Set gtmtypes("jnlpool_ctl_struct",12,"name")="jnlpool_ctl_struct.jnlpool_size" + Set gtmtypes("jnlpool_ctl_struct",12,"off")=332 + Set gtmtypes("jnlpool_ctl_struct",12,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_size")=12 + Set gtmtypes("jnlpool_ctl_struct",13,"name")="jnlpool_ctl_struct.start_jnl_seqno" + Set gtmtypes("jnlpool_ctl_struct",13,"off")=336 + Set gtmtypes("jnlpool_ctl_struct",13,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",13,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","start_jnl_seqno")=13 + Set gtmtypes("jnlpool_ctl_struct",14,"name")="jnlpool_ctl_struct.jnl_seqno" + Set gtmtypes("jnlpool_ctl_struct",14,"off")=344 + Set gtmtypes("jnlpool_ctl_struct",14,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",14,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","jnl_seqno")=14 + Set gtmtypes("jnlpool_ctl_struct",15,"name")="jnlpool_ctl_struct.last_histinfo_seqno" + Set gtmtypes("jnlpool_ctl_struct",15,"off")=352 + Set gtmtypes("jnlpool_ctl_struct",15,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",15,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","last_histinfo_seqno")=15 + Set gtmtypes("jnlpool_ctl_struct",16,"name")="jnlpool_ctl_struct.max_zqgblmod_seqno" + Set gtmtypes("jnlpool_ctl_struct",16,"off")=360 + Set gtmtypes("jnlpool_ctl_struct",16,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",16,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","max_zqgblmod_seqno")=16 + Set gtmtypes("jnlpool_ctl_struct",17,"name")="jnlpool_ctl_struct.early_write_addr" + Set gtmtypes("jnlpool_ctl_struct",17,"off")=368 + Set gtmtypes("jnlpool_ctl_struct",17,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",17,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","early_write_addr")=17 + Set gtmtypes("jnlpool_ctl_struct",18,"name")="jnlpool_ctl_struct.write_addr" + Set gtmtypes("jnlpool_ctl_struct",18,"off")=376 + Set gtmtypes("jnlpool_ctl_struct",18,"len")=8 + Set gtmtypes("jnlpool_ctl_struct",18,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","write_addr")=18 + Set gtmtypes("jnlpool_ctl_struct",19,"name")="jnlpool_ctl_struct.write" + Set gtmtypes("jnlpool_ctl_struct",19,"off")=384 + Set gtmtypes("jnlpool_ctl_struct",19,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",19,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","write")=19 + Set gtmtypes("jnlpool_ctl_struct",20,"name")="jnlpool_ctl_struct.upd_disabled" + Set gtmtypes("jnlpool_ctl_struct",20,"off")=388 + Set gtmtypes("jnlpool_ctl_struct",20,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",20,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","upd_disabled")=20 + Set gtmtypes("jnlpool_ctl_struct",21,"name")="jnlpool_ctl_struct.lastwrite_len" + Set gtmtypes("jnlpool_ctl_struct",21,"off")=392 + Set gtmtypes("jnlpool_ctl_struct",21,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",21,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","lastwrite_len")=21 + Set gtmtypes("jnlpool_ctl_struct",22,"name")="jnlpool_ctl_struct.send_losttn_complete" + Set gtmtypes("jnlpool_ctl_struct",22,"off")=396 + Set gtmtypes("jnlpool_ctl_struct",22,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",22,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","send_losttn_complete")=22 + Set gtmtypes("jnlpool_ctl_struct",23,"name")="jnlpool_ctl_struct.primary_instname" + Set gtmtypes("jnlpool_ctl_struct",23,"off")=400 + Set gtmtypes("jnlpool_ctl_struct",23,"len")=16 + Set gtmtypes("jnlpool_ctl_struct",23,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","primary_instname")=23 + Set gtmtypes("jnlpool_ctl_struct",24,"name")="jnlpool_ctl_struct.gtmrecv_pid" + Set gtmtypes("jnlpool_ctl_struct",24,"off")=416 + Set gtmtypes("jnlpool_ctl_struct",24,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","gtmrecv_pid")=24 + Set gtmtypes("jnlpool_ctl_struct",25,"name")="jnlpool_ctl_struct.prev_jnlseqno_time" + Set gtmtypes("jnlpool_ctl_struct",25,"off")=420 + Set gtmtypes("jnlpool_ctl_struct",25,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","prev_jnlseqno_time")=25 + Set gtmtypes("jnlpool_ctl_struct",26,"name")="jnlpool_ctl_struct.pool_initialized" + Set gtmtypes("jnlpool_ctl_struct",26,"off")=424 + Set gtmtypes("jnlpool_ctl_struct",26,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",26,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","pool_initialized")=26 + Set gtmtypes("jnlpool_ctl_struct",27,"name")="jnlpool_ctl_struct.jnlpool_creator_pid" + Set gtmtypes("jnlpool_ctl_struct",27,"off")=428 + Set gtmtypes("jnlpool_ctl_struct",27,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",27,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","jnlpool_creator_pid")=27 + Set gtmtypes("jnlpool_ctl_struct",28,"name")="jnlpool_ctl_struct.this_side" + Set gtmtypes("jnlpool_ctl_struct",28,"off")=432 + Set gtmtypes("jnlpool_ctl_struct",28,"len")=48 + Set gtmtypes("jnlpool_ctl_struct",28,"type")="repl_conn_info_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side")=28 + Set gtmtypes("jnlpool_ctl_struct",29,"name")="jnlpool_ctl_struct.this_side.proto_ver" + Set gtmtypes("jnlpool_ctl_struct",29,"off")=432 + Set gtmtypes("jnlpool_ctl_struct",29,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",29,"type")="int" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.proto_ver")=29 + Set gtmtypes("jnlpool_ctl_struct",30,"name")="jnlpool_ctl_struct.this_side.jnl_ver" + Set gtmtypes("jnlpool_ctl_struct",30,"off")=436 + Set gtmtypes("jnlpool_ctl_struct",30,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.jnl_ver")=30 + Set gtmtypes("jnlpool_ctl_struct",31,"name")="jnlpool_ctl_struct.this_side.is_std_null_coll" + Set gtmtypes("jnlpool_ctl_struct",31,"off")=440 + Set gtmtypes("jnlpool_ctl_struct",31,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",31,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.is_std_null_coll")=31 + Set gtmtypes("jnlpool_ctl_struct",32,"name")="jnlpool_ctl_struct.this_side.trigger_supported" + Set gtmtypes("jnlpool_ctl_struct",32,"off")=444 + Set gtmtypes("jnlpool_ctl_struct",32,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",32,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.trigger_supported")=32 + Set gtmtypes("jnlpool_ctl_struct",33,"name")="jnlpool_ctl_struct.this_side.cross_endian" + Set gtmtypes("jnlpool_ctl_struct",33,"off")=448 + Set gtmtypes("jnlpool_ctl_struct",33,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",33,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.cross_endian")=33 + Set gtmtypes("jnlpool_ctl_struct",34,"name")="jnlpool_ctl_struct.this_side.endianness_known" + Set gtmtypes("jnlpool_ctl_struct",34,"off")=452 + Set gtmtypes("jnlpool_ctl_struct",34,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",34,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.endianness_known")=34 + Set gtmtypes("jnlpool_ctl_struct",35,"name")="jnlpool_ctl_struct.this_side.null_subs_xform" + Set gtmtypes("jnlpool_ctl_struct",35,"off")=456 + Set gtmtypes("jnlpool_ctl_struct",35,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",35,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.null_subs_xform")=35 + Set gtmtypes("jnlpool_ctl_struct",36,"name")="jnlpool_ctl_struct.this_side.is_supplementary" + Set gtmtypes("jnlpool_ctl_struct",36,"off")=460 + Set gtmtypes("jnlpool_ctl_struct",36,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",36,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.is_supplementary")=36 + Set gtmtypes("jnlpool_ctl_struct",37,"name")="jnlpool_ctl_struct.this_side.tls_requested" + Set gtmtypes("jnlpool_ctl_struct",37,"off")=464 + Set gtmtypes("jnlpool_ctl_struct",37,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",37,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.tls_requested")=37 + Set gtmtypes("jnlpool_ctl_struct",38,"name")="jnlpool_ctl_struct.this_side.filler_16" + Set gtmtypes("jnlpool_ctl_struct",38,"off")=468 + Set gtmtypes("jnlpool_ctl_struct",38,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",38,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","this_side.filler_16")=38 + Set gtmtypes("jnlpool_ctl_struct",39,"name")="jnlpool_ctl_struct.strm_seqno" + Set gtmtypes("jnlpool_ctl_struct",39,"off")=480 + Set gtmtypes("jnlpool_ctl_struct",39,"len")=128 + Set gtmtypes("jnlpool_ctl_struct",39,"type")="uint64_t" + Set gtmtypfldindx("jnlpool_ctl_struct","strm_seqno")=39 + Set gtmtypes("jnlpool_ctl_struct",39,"dim")=16 + Set gtmtypes("jnlpool_ctl_struct",40,"name")="jnlpool_ctl_struct.onln_rlbk_pid" + Set gtmtypes("jnlpool_ctl_struct",40,"off")=608 + Set gtmtypes("jnlpool_ctl_struct",40,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","onln_rlbk_pid")=40 + Set gtmtypes("jnlpool_ctl_struct",41,"name")="jnlpool_ctl_struct.onln_rlbk_cycle" + Set gtmtypes("jnlpool_ctl_struct",41,"off")=612 + Set gtmtypes("jnlpool_ctl_struct",41,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",41,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_ctl_struct","onln_rlbk_cycle")=41 + Set gtmtypes("jnlpool_ctl_struct",42,"name")="jnlpool_ctl_struct.freeze" + Set gtmtypes("jnlpool_ctl_struct",42,"off")=616 + Set gtmtypes("jnlpool_ctl_struct",42,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",42,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","freeze")=42 + Set gtmtypes("jnlpool_ctl_struct",43,"name")="jnlpool_ctl_struct.freeze_comment" + Set gtmtypes("jnlpool_ctl_struct",43,"off")=620 + Set gtmtypes("jnlpool_ctl_struct",43,"len")=1024 + Set gtmtypes("jnlpool_ctl_struct",43,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","freeze_comment")=43 + Set gtmtypes("jnlpool_ctl_struct",44,"name")="jnlpool_ctl_struct.instfreeze_environ_inited" + Set gtmtypes("jnlpool_ctl_struct",44,"off")=1644 + Set gtmtypes("jnlpool_ctl_struct",44,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",44,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","instfreeze_environ_inited")=44 + Set gtmtypes("jnlpool_ctl_struct",45,"name")="jnlpool_ctl_struct.merrors_array" + Set gtmtypes("jnlpool_ctl_struct",45,"off")=1648 + Set gtmtypes("jnlpool_ctl_struct",45,"len")=2048 + Set gtmtypes("jnlpool_ctl_struct",45,"type")="unsigned-char" + Set gtmtypfldindx("jnlpool_ctl_struct","merrors_array")=45 + Set gtmtypes("jnlpool_ctl_struct",46,"name")="jnlpool_ctl_struct.outofsync_core_generated" + Set gtmtypes("jnlpool_ctl_struct",46,"off")=3696 + Set gtmtypes("jnlpool_ctl_struct",46,"len")=4 + Set gtmtypes("jnlpool_ctl_struct",46,"type")="boolean_t" + Set gtmtypfldindx("jnlpool_ctl_struct","outofsync_core_generated")=46 + Set gtmtypes("jnlpool_ctl_struct",47,"name")="jnlpool_ctl_struct.filler_16bytealign" + Set gtmtypes("jnlpool_ctl_struct",47,"off")=3700 + Set gtmtypes("jnlpool_ctl_struct",47,"len")=12 + Set gtmtypes("jnlpool_ctl_struct",47,"type")="char" + Set gtmtypfldindx("jnlpool_ctl_struct","filler_16bytealign")=47 + ; + Set gtmtypes("jnlpool_write_ctx_t")="struct" + Set gtmtypes("jnlpool_write_ctx_t",0)=2 + Set gtmtypes("jnlpool_write_ctx_t","len")=8 + Set gtmtypes("jnlpool_write_ctx_t",1,"name")="jnlpool_write_ctx_t.write" + Set gtmtypes("jnlpool_write_ctx_t",1,"off")=0 + Set gtmtypes("jnlpool_write_ctx_t",1,"len")=4 + Set gtmtypes("jnlpool_write_ctx_t",1,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_write_ctx_t","write")=1 + Set gtmtypes("jnlpool_write_ctx_t",2,"name")="jnlpool_write_ctx_t.write_total" + Set gtmtypes("jnlpool_write_ctx_t",2,"off")=4 + Set gtmtypes("jnlpool_write_ctx_t",2,"len")=4 + Set gtmtypes("jnlpool_write_ctx_t",2,"type")="unsigned-int" + Set gtmtypfldindx("jnlpool_write_ctx_t","write_total")=2 + ; + Set gtmtypes("job_arg_msg")="struct" + Set gtmtypes("job_arg_msg",0)=2 + Set gtmtypes("job_arg_msg","len")=8196 + Set gtmtypes("job_arg_msg",1,"name")="job_arg_msg.len" + Set gtmtypes("job_arg_msg",1,"off")=0 + Set gtmtypes("job_arg_msg",1,"len")=4 + Set gtmtypes("job_arg_msg",1,"type")="ssize_t" + Set gtmtypfldindx("job_arg_msg","len")=1 + Set gtmtypes("job_arg_msg",2,"name")="job_arg_msg.data" + Set gtmtypes("job_arg_msg",2,"off")=4 + Set gtmtypes("job_arg_msg",2,"len")=8192 + Set gtmtypes("job_arg_msg",2,"type")="char" + Set gtmtypfldindx("job_arg_msg","data")=2 + ; + Set gtmtypes("job_params_msg")="struct" + Set gtmtypes("job_params_msg",0)=18 + Set gtmtypes("job_params_msg","len")=8232 + Set gtmtypes("job_params_msg",1,"name")="job_params_msg.directory_len" + Set gtmtypes("job_params_msg",1,"off")=0 + Set gtmtypes("job_params_msg",1,"len")=4 + Set gtmtypes("job_params_msg",1,"type")="size_t" + Set gtmtypfldindx("job_params_msg","directory_len")=1 + Set gtmtypes("job_params_msg",2,"name")="job_params_msg.directory" + Set gtmtypes("job_params_msg",2,"off")=4 + Set gtmtypes("job_params_msg",2,"len")=1024 + Set gtmtypes("job_params_msg",2,"type")="char" + Set gtmtypfldindx("job_params_msg","directory")=2 + Set gtmtypes("job_params_msg",3,"name")="job_params_msg.gbldir_len" + Set gtmtypes("job_params_msg",3,"off")=1028 + Set gtmtypes("job_params_msg",3,"len")=4 + Set gtmtypes("job_params_msg",3,"type")="size_t" + Set gtmtypfldindx("job_params_msg","gbldir_len")=3 + Set gtmtypes("job_params_msg",4,"name")="job_params_msg.gbldir" + Set gtmtypes("job_params_msg",4,"off")=1032 + Set gtmtypes("job_params_msg",4,"len")=1024 + Set gtmtypes("job_params_msg",4,"type")="char" + Set gtmtypfldindx("job_params_msg","gbldir")=4 + Set gtmtypes("job_params_msg",5,"name")="job_params_msg.startup_len" + Set gtmtypes("job_params_msg",5,"off")=2056 + Set gtmtypes("job_params_msg",5,"len")=4 + Set gtmtypes("job_params_msg",5,"type")="size_t" + Set gtmtypfldindx("job_params_msg","startup_len")=5 + Set gtmtypes("job_params_msg",6,"name")="job_params_msg.startup" + Set gtmtypes("job_params_msg",6,"off")=2060 + Set gtmtypes("job_params_msg",6,"len")=1024 + Set gtmtypes("job_params_msg",6,"type")="char" + Set gtmtypfldindx("job_params_msg","startup")=6 + Set gtmtypes("job_params_msg",7,"name")="job_params_msg.input_len" + Set gtmtypes("job_params_msg",7,"off")=3084 + Set gtmtypes("job_params_msg",7,"len")=4 + Set gtmtypes("job_params_msg",7,"type")="size_t" + Set gtmtypfldindx("job_params_msg","input_len")=7 + Set gtmtypes("job_params_msg",8,"name")="job_params_msg.input" + Set gtmtypes("job_params_msg",8,"off")=3088 + Set gtmtypes("job_params_msg",8,"len")=1024 + Set gtmtypes("job_params_msg",8,"type")="char" + Set gtmtypfldindx("job_params_msg","input")=8 + Set gtmtypes("job_params_msg",9,"name")="job_params_msg.output_len" + Set gtmtypes("job_params_msg",9,"off")=4112 + Set gtmtypes("job_params_msg",9,"len")=4 + Set gtmtypes("job_params_msg",9,"type")="size_t" + Set gtmtypfldindx("job_params_msg","output_len")=9 + Set gtmtypes("job_params_msg",10,"name")="job_params_msg.output" + Set gtmtypes("job_params_msg",10,"off")=4116 + Set gtmtypes("job_params_msg",10,"len")=1024 + Set gtmtypes("job_params_msg",10,"type")="char" + Set gtmtypfldindx("job_params_msg","output")=10 + Set gtmtypes("job_params_msg",11,"name")="job_params_msg.error_len" + Set gtmtypes("job_params_msg",11,"off")=5140 + Set gtmtypes("job_params_msg",11,"len")=4 + Set gtmtypes("job_params_msg",11,"type")="size_t" + Set gtmtypfldindx("job_params_msg","error_len")=11 + Set gtmtypes("job_params_msg",12,"name")="job_params_msg.error" + Set gtmtypes("job_params_msg",12,"off")=5144 + Set gtmtypes("job_params_msg",12,"len")=1024 + Set gtmtypes("job_params_msg",12,"type")="char" + Set gtmtypfldindx("job_params_msg","error")=12 + Set gtmtypes("job_params_msg",13,"name")="job_params_msg.routine_len" + Set gtmtypes("job_params_msg",13,"off")=6168 + Set gtmtypes("job_params_msg",13,"len")=4 + Set gtmtypes("job_params_msg",13,"type")="size_t" + Set gtmtypfldindx("job_params_msg","routine_len")=13 + Set gtmtypes("job_params_msg",14,"name")="job_params_msg.routine" + Set gtmtypes("job_params_msg",14,"off")=6172 + Set gtmtypes("job_params_msg",14,"len")=1024 + Set gtmtypes("job_params_msg",14,"type")="char" + Set gtmtypfldindx("job_params_msg","routine")=14 + Set gtmtypes("job_params_msg",15,"name")="job_params_msg.label_len" + Set gtmtypes("job_params_msg",15,"off")=7196 + Set gtmtypes("job_params_msg",15,"len")=4 + Set gtmtypes("job_params_msg",15,"type")="size_t" + Set gtmtypfldindx("job_params_msg","label_len")=15 + Set gtmtypes("job_params_msg",16,"name")="job_params_msg.label" + Set gtmtypes("job_params_msg",16,"off")=7200 + Set gtmtypes("job_params_msg",16,"len")=1024 + Set gtmtypes("job_params_msg",16,"type")="char" + Set gtmtypfldindx("job_params_msg","label")=16 + Set gtmtypes("job_params_msg",17,"name")="job_params_msg.offset" + Set gtmtypes("job_params_msg",17,"off")=8224 + Set gtmtypes("job_params_msg",17,"len")=4 + Set gtmtypes("job_params_msg",17,"type")="int" + Set gtmtypfldindx("job_params_msg","offset")=17 + Set gtmtypes("job_params_msg",18,"name")="job_params_msg.baspri" + Set gtmtypes("job_params_msg",18,"off")=8228 + Set gtmtypes("job_params_msg",18,"len")=4 + Set gtmtypes("job_params_msg",18,"type")="int" + Set gtmtypfldindx("job_params_msg","baspri")=18 + ; + Set gtmtypes("job_params_type")="struct" + Set gtmtypes("job_params_type",0)=42 + Set gtmtypes("job_params_type","len")=132 + Set gtmtypes("job_params_type",1,"name")="job_params_type.input" + Set gtmtypes("job_params_type",1,"off")=0 + Set gtmtypes("job_params_type",1,"len")=12 + Set gtmtypes("job_params_type",1,"type")="mstr" + Set gtmtypfldindx("job_params_type","input")=1 + Set gtmtypes("job_params_type",2,"name")="job_params_type.input.char_len" + Set gtmtypes("job_params_type",2,"off")=0 + Set gtmtypes("job_params_type",2,"len")=4 + Set gtmtypes("job_params_type",2,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","input.char_len")=2 + Set gtmtypes("job_params_type",3,"name")="job_params_type.input.len" + Set gtmtypes("job_params_type",3,"off")=4 + Set gtmtypes("job_params_type",3,"len")=4 + Set gtmtypes("job_params_type",3,"type")="int" + Set gtmtypfldindx("job_params_type","input.len")=3 + Set gtmtypes("job_params_type",4,"name")="job_params_type.input.addr" + Set gtmtypes("job_params_type",4,"off")=8 + Set gtmtypes("job_params_type",4,"len")=4 + Set gtmtypes("job_params_type",4,"type")="addr" + Set gtmtypfldindx("job_params_type","input.addr")=4 + Set gtmtypes("job_params_type",5,"name")="job_params_type.output" + Set gtmtypes("job_params_type",5,"off")=12 + Set gtmtypes("job_params_type",5,"len")=12 + Set gtmtypes("job_params_type",5,"type")="mstr" + Set gtmtypfldindx("job_params_type","output")=5 + Set gtmtypes("job_params_type",6,"name")="job_params_type.output.char_len" + Set gtmtypes("job_params_type",6,"off")=12 + Set gtmtypes("job_params_type",6,"len")=4 + Set gtmtypes("job_params_type",6,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","output.char_len")=6 + Set gtmtypes("job_params_type",7,"name")="job_params_type.output.len" + Set gtmtypes("job_params_type",7,"off")=16 + Set gtmtypes("job_params_type",7,"len")=4 + Set gtmtypes("job_params_type",7,"type")="int" + Set gtmtypfldindx("job_params_type","output.len")=7 + Set gtmtypes("job_params_type",8,"name")="job_params_type.output.addr" + Set gtmtypes("job_params_type",8,"off")=20 + Set gtmtypes("job_params_type",8,"len")=4 + Set gtmtypes("job_params_type",8,"type")="addr" + Set gtmtypfldindx("job_params_type","output.addr")=8 + Set gtmtypes("job_params_type",9,"name")="job_params_type.error" + Set gtmtypes("job_params_type",9,"off")=24 + Set gtmtypes("job_params_type",9,"len")=12 + Set gtmtypes("job_params_type",9,"type")="mstr" + Set gtmtypfldindx("job_params_type","error")=9 + Set gtmtypes("job_params_type",10,"name")="job_params_type.error.char_len" + Set gtmtypes("job_params_type",10,"off")=24 + Set gtmtypes("job_params_type",10,"len")=4 + Set gtmtypes("job_params_type",10,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","error.char_len")=10 + Set gtmtypes("job_params_type",11,"name")="job_params_type.error.len" + Set gtmtypes("job_params_type",11,"off")=28 + Set gtmtypes("job_params_type",11,"len")=4 + Set gtmtypes("job_params_type",11,"type")="int" + Set gtmtypfldindx("job_params_type","error.len")=11 + Set gtmtypes("job_params_type",12,"name")="job_params_type.error.addr" + Set gtmtypes("job_params_type",12,"off")=32 + Set gtmtypes("job_params_type",12,"len")=4 + Set gtmtypes("job_params_type",12,"type")="addr" + Set gtmtypfldindx("job_params_type","error.addr")=12 + Set gtmtypes("job_params_type",13,"name")="job_params_type.gbldir" + Set gtmtypes("job_params_type",13,"off")=36 + Set gtmtypes("job_params_type",13,"len")=12 + Set gtmtypes("job_params_type",13,"type")="mstr" + Set gtmtypfldindx("job_params_type","gbldir")=13 + Set gtmtypes("job_params_type",14,"name")="job_params_type.gbldir.char_len" + Set gtmtypes("job_params_type",14,"off")=36 + Set gtmtypes("job_params_type",14,"len")=4 + Set gtmtypes("job_params_type",14,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","gbldir.char_len")=14 + Set gtmtypes("job_params_type",15,"name")="job_params_type.gbldir.len" + Set gtmtypes("job_params_type",15,"off")=40 + Set gtmtypes("job_params_type",15,"len")=4 + Set gtmtypes("job_params_type",15,"type")="int" + Set gtmtypfldindx("job_params_type","gbldir.len")=15 + Set gtmtypes("job_params_type",16,"name")="job_params_type.gbldir.addr" + Set gtmtypes("job_params_type",16,"off")=44 + Set gtmtypes("job_params_type",16,"len")=4 + Set gtmtypes("job_params_type",16,"type")="addr" + Set gtmtypfldindx("job_params_type","gbldir.addr")=16 + Set gtmtypes("job_params_type",17,"name")="job_params_type.startup" + Set gtmtypes("job_params_type",17,"off")=48 + Set gtmtypes("job_params_type",17,"len")=12 + Set gtmtypes("job_params_type",17,"type")="mstr" + Set gtmtypfldindx("job_params_type","startup")=17 + Set gtmtypes("job_params_type",18,"name")="job_params_type.startup.char_len" + Set gtmtypes("job_params_type",18,"off")=48 + Set gtmtypes("job_params_type",18,"len")=4 + Set gtmtypes("job_params_type",18,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","startup.char_len")=18 + Set gtmtypes("job_params_type",19,"name")="job_params_type.startup.len" + Set gtmtypes("job_params_type",19,"off")=52 + Set gtmtypes("job_params_type",19,"len")=4 + Set gtmtypes("job_params_type",19,"type")="int" + Set gtmtypfldindx("job_params_type","startup.len")=19 + Set gtmtypes("job_params_type",20,"name")="job_params_type.startup.addr" + Set gtmtypes("job_params_type",20,"off")=56 + Set gtmtypes("job_params_type",20,"len")=4 + Set gtmtypes("job_params_type",20,"type")="addr" + Set gtmtypfldindx("job_params_type","startup.addr")=20 + Set gtmtypes("job_params_type",21,"name")="job_params_type.directory" + Set gtmtypes("job_params_type",21,"off")=60 + Set gtmtypes("job_params_type",21,"len")=12 + Set gtmtypes("job_params_type",21,"type")="mstr" + Set gtmtypfldindx("job_params_type","directory")=21 + Set gtmtypes("job_params_type",22,"name")="job_params_type.directory.char_len" + Set gtmtypes("job_params_type",22,"off")=60 + Set gtmtypes("job_params_type",22,"len")=4 + Set gtmtypes("job_params_type",22,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","directory.char_len")=22 + Set gtmtypes("job_params_type",23,"name")="job_params_type.directory.len" + Set gtmtypes("job_params_type",23,"off")=64 + Set gtmtypes("job_params_type",23,"len")=4 + Set gtmtypes("job_params_type",23,"type")="int" + Set gtmtypfldindx("job_params_type","directory.len")=23 + Set gtmtypes("job_params_type",24,"name")="job_params_type.directory.addr" + Set gtmtypes("job_params_type",24,"off")=68 + Set gtmtypes("job_params_type",24,"len")=4 + Set gtmtypes("job_params_type",24,"type")="addr" + Set gtmtypfldindx("job_params_type","directory.addr")=24 + Set gtmtypes("job_params_type",25,"name")="job_params_type.routine" + Set gtmtypes("job_params_type",25,"off")=72 + Set gtmtypes("job_params_type",25,"len")=12 + Set gtmtypes("job_params_type",25,"type")="mstr" + Set gtmtypfldindx("job_params_type","routine")=25 + Set gtmtypes("job_params_type",26,"name")="job_params_type.routine.char_len" + Set gtmtypes("job_params_type",26,"off")=72 + Set gtmtypes("job_params_type",26,"len")=4 + Set gtmtypes("job_params_type",26,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","routine.char_len")=26 + Set gtmtypes("job_params_type",27,"name")="job_params_type.routine.len" + Set gtmtypes("job_params_type",27,"off")=76 + Set gtmtypes("job_params_type",27,"len")=4 + Set gtmtypes("job_params_type",27,"type")="int" + Set gtmtypfldindx("job_params_type","routine.len")=27 + Set gtmtypes("job_params_type",28,"name")="job_params_type.routine.addr" + Set gtmtypes("job_params_type",28,"off")=80 + Set gtmtypes("job_params_type",28,"len")=4 + Set gtmtypes("job_params_type",28,"type")="addr" + Set gtmtypfldindx("job_params_type","routine.addr")=28 + Set gtmtypes("job_params_type",29,"name")="job_params_type.label" + Set gtmtypes("job_params_type",29,"off")=84 + Set gtmtypes("job_params_type",29,"len")=12 + Set gtmtypes("job_params_type",29,"type")="mstr" + Set gtmtypfldindx("job_params_type","label")=29 + Set gtmtypes("job_params_type",30,"name")="job_params_type.label.char_len" + Set gtmtypes("job_params_type",30,"off")=84 + Set gtmtypes("job_params_type",30,"len")=4 + Set gtmtypes("job_params_type",30,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","label.char_len")=30 + Set gtmtypes("job_params_type",31,"name")="job_params_type.label.len" + Set gtmtypes("job_params_type",31,"off")=88 + Set gtmtypes("job_params_type",31,"len")=4 + Set gtmtypes("job_params_type",31,"type")="int" + Set gtmtypfldindx("job_params_type","label.len")=31 + Set gtmtypes("job_params_type",32,"name")="job_params_type.label.addr" + Set gtmtypes("job_params_type",32,"off")=92 + Set gtmtypes("job_params_type",32,"len")=4 + Set gtmtypes("job_params_type",32,"type")="addr" + Set gtmtypfldindx("job_params_type","label.addr")=32 + Set gtmtypes("job_params_type",33,"name")="job_params_type.cmdline" + Set gtmtypes("job_params_type",33,"off")=96 + Set gtmtypes("job_params_type",33,"len")=12 + Set gtmtypes("job_params_type",33,"type")="mstr" + Set gtmtypfldindx("job_params_type","cmdline")=33 + Set gtmtypes("job_params_type",34,"name")="job_params_type.cmdline.char_len" + Set gtmtypes("job_params_type",34,"off")=96 + Set gtmtypes("job_params_type",34,"len")=4 + Set gtmtypes("job_params_type",34,"type")="unsigned-int" + Set gtmtypfldindx("job_params_type","cmdline.char_len")=34 + Set gtmtypes("job_params_type",35,"name")="job_params_type.cmdline.len" + Set gtmtypes("job_params_type",35,"off")=100 + Set gtmtypes("job_params_type",35,"len")=4 + Set gtmtypes("job_params_type",35,"type")="int" + Set gtmtypfldindx("job_params_type","cmdline.len")=35 + Set gtmtypes("job_params_type",36,"name")="job_params_type.cmdline.addr" + Set gtmtypes("job_params_type",36,"off")=104 + Set gtmtypes("job_params_type",36,"len")=4 + Set gtmtypes("job_params_type",36,"type")="addr" + Set gtmtypfldindx("job_params_type","cmdline.addr")=36 + Set gtmtypes("job_params_type",37,"name")="job_params_type.baspri" + Set gtmtypes("job_params_type",37,"off")=108 + Set gtmtypes("job_params_type",37,"len")=4 + Set gtmtypes("job_params_type",37,"type")="int" + Set gtmtypfldindx("job_params_type","baspri")=37 + Set gtmtypes("job_params_type",38,"name")="job_params_type.offset" + Set gtmtypes("job_params_type",38,"off")=112 + Set gtmtypes("job_params_type",38,"len")=4 + Set gtmtypes("job_params_type",38,"type")="int" + Set gtmtypfldindx("job_params_type","offset")=38 + Set gtmtypes("job_params_type",39,"name")="job_params_type.parms" + Set gtmtypes("job_params_type",39,"off")=116 + Set gtmtypes("job_params_type",39,"len")=4 + Set gtmtypes("job_params_type",39,"type")="addr" + Set gtmtypfldindx("job_params_type","parms")=39 + Set gtmtypes("job_params_type",40,"name")="job_params_type.input_prebuffer_size" + Set gtmtypes("job_params_type",40,"off")=120 + Set gtmtypes("job_params_type",40,"len")=4 + Set gtmtypes("job_params_type",40,"type")="size_t" + Set gtmtypfldindx("job_params_type","input_prebuffer_size")=40 + Set gtmtypes("job_params_type",41,"name")="job_params_type.input_prebuffer" + Set gtmtypes("job_params_type",41,"off")=124 + Set gtmtypes("job_params_type",41,"len")=4 + Set gtmtypes("job_params_type",41,"type")="addr" + Set gtmtypfldindx("job_params_type","input_prebuffer")=41 + Set gtmtypes("job_params_type",42,"name")="job_params_type.passcurlvn" + Set gtmtypes("job_params_type",42,"off")=128 + Set gtmtypes("job_params_type",42,"len")=4 + Set gtmtypes("job_params_type",42,"type")="boolean_t" + Set gtmtypfldindx("job_params_type","passcurlvn")=42 + ; + Set gtmtypes("job_parm")="struct" + Set gtmtypes("job_parm",0)=2 + Set gtmtypes("job_parm","len")=8 + Set gtmtypes("job_parm",1,"name")="job_parm.parm" + Set gtmtypes("job_parm",1,"off")=0 + Set gtmtypes("job_parm",1,"len")=4 + Set gtmtypes("job_parm",1,"type")="addr" + Set gtmtypfldindx("job_parm","parm")=1 + Set gtmtypes("job_parm",2,"name")="job_parm.next" + Set gtmtypes("job_parm",2,"off")=4 + Set gtmtypes("job_parm",2,"len")=4 + Set gtmtypes("job_parm",2,"type")="addr" + Set gtmtypfldindx("job_parm","next")=2 + ; + Set gtmtypes("joberr_msg")="struct" + Set gtmtypes("joberr_msg",0)=2 + Set gtmtypes("joberr_msg","len")=8 + Set gtmtypes("joberr_msg",1,"name")="joberr_msg.msg" + Set gtmtypes("joberr_msg",1,"off")=0 + Set gtmtypes("joberr_msg",1,"len")=4 + Set gtmtypes("joberr_msg",1,"type")="addr" + Set gtmtypfldindx("joberr_msg","msg")=1 + Set gtmtypes("joberr_msg",2,"name")="joberr_msg.len" + Set gtmtypes("joberr_msg",2,"off")=4 + Set gtmtypes("joberr_msg",2,"len")=4 + Set gtmtypes("joberr_msg",2,"type")="int" + Set gtmtypfldindx("joberr_msg","len")=2 + ; + Set gtmtypes("jrec_prefix")="struct" + Set gtmtypes("jrec_prefix",0)=4 + Set gtmtypes("jrec_prefix","len")=24 + Set gtmtypes("jrec_prefix",1,"name")="jrec_prefix.pini_addr" + Set gtmtypes("jrec_prefix",1,"off")=4 + Set gtmtypes("jrec_prefix",1,"len")=4 + Set gtmtypes("jrec_prefix",1,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","pini_addr")=1 + Set gtmtypes("jrec_prefix",2,"name")="jrec_prefix.time" + Set gtmtypes("jrec_prefix",2,"off")=8 + Set gtmtypes("jrec_prefix",2,"len")=4 + Set gtmtypes("jrec_prefix",2,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","time")=2 + Set gtmtypes("jrec_prefix",3,"name")="jrec_prefix.checksum" + Set gtmtypes("jrec_prefix",3,"off")=12 + Set gtmtypes("jrec_prefix",3,"len")=4 + Set gtmtypes("jrec_prefix",3,"type")="unsigned-int" + Set gtmtypfldindx("jrec_prefix","checksum")=3 + Set gtmtypes("jrec_prefix",4,"name")="jrec_prefix.tn" + Set gtmtypes("jrec_prefix",4,"off")=16 + Set gtmtypes("jrec_prefix",4,"len")=8 + Set gtmtypes("jrec_prefix",4,"type")="uint64_t" + Set gtmtypfldindx("jrec_prefix","tn")=4 + ; + Set gtmtypes("key_cum_value")="struct" + Set gtmtypes("key_cum_value",0)=11 + Set gtmtypes("key_cum_value","len")=1076 + Set gtmtypes("key_cum_value",1,"name")="key_cum_value.key" + Set gtmtypes("key_cum_value",1,"off")=0 + Set gtmtypes("key_cum_value",1,"len")=8 + Set gtmtypes("key_cum_value",1,"type")="gv_key" + Set gtmtypfldindx("key_cum_value","key")=1 + Set gtmtypes("key_cum_value",2,"name")="key_cum_value.key.top" + Set gtmtypes("key_cum_value",2,"off")=0 + Set gtmtypes("key_cum_value",2,"len")=2 + Set gtmtypes("key_cum_value",2,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.top")=2 + Set gtmtypes("key_cum_value",3,"name")="key_cum_value.key.end" + Set gtmtypes("key_cum_value",3,"off")=2 + Set gtmtypes("key_cum_value",3,"len")=2 + Set gtmtypes("key_cum_value",3,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.end")=3 + Set gtmtypes("key_cum_value",4,"name")="key_cum_value.key.prev" + Set gtmtypes("key_cum_value",4,"off")=4 + Set gtmtypes("key_cum_value",4,"len")=2 + Set gtmtypes("key_cum_value",4,"type")="unsigned-short" + Set gtmtypfldindx("key_cum_value","key.prev")=4 + Set gtmtypes("key_cum_value",5,"name")="key_cum_value.key.base" + Set gtmtypes("key_cum_value",5,"off")=6 + Set gtmtypes("key_cum_value",5,"len")=1 + Set gtmtypes("key_cum_value",5,"type")="unsigned-char" + Set gtmtypfldindx("key_cum_value","key.base")=5 + Set gtmtypes("key_cum_value",6,"name")="key_cum_value.key_contents" + Set gtmtypes("key_cum_value",6,"off")=8 + Set gtmtypes("key_cum_value",6,"len")=1052 + Set gtmtypes("key_cum_value",6,"type")="char" + Set gtmtypfldindx("key_cum_value","key_contents")=6 + Set gtmtypes("key_cum_value",7,"name")="key_cum_value.value" + Set gtmtypes("key_cum_value",7,"off")=1060 + Set gtmtypes("key_cum_value",7,"len")=12 + Set gtmtypes("key_cum_value",7,"type")="mstr" + Set gtmtypfldindx("key_cum_value","value")=7 + Set gtmtypes("key_cum_value",8,"name")="key_cum_value.value.char_len" + Set gtmtypes("key_cum_value",8,"off")=1060 + Set gtmtypes("key_cum_value",8,"len")=4 + Set gtmtypes("key_cum_value",8,"type")="unsigned-int" + Set gtmtypfldindx("key_cum_value","value.char_len")=8 + Set gtmtypes("key_cum_value",9,"name")="key_cum_value.value.len" + Set gtmtypes("key_cum_value",9,"off")=1064 + Set gtmtypes("key_cum_value",9,"len")=4 + Set gtmtypes("key_cum_value",9,"type")="int" + Set gtmtypfldindx("key_cum_value","value.len")=9 + Set gtmtypes("key_cum_value",10,"name")="key_cum_value.value.addr" + Set gtmtypes("key_cum_value",10,"off")=1068 + Set gtmtypes("key_cum_value",10,"len")=4 + Set gtmtypes("key_cum_value",10,"type")="addr" + Set gtmtypfldindx("key_cum_value","value.addr")=10 + Set gtmtypes("key_cum_value",11,"name")="key_cum_value.next" + Set gtmtypes("key_cum_value",11,"off")=1072 + Set gtmtypes("key_cum_value",11,"len")=4 + Set gtmtypes("key_cum_value",11,"type")="addr" + Set gtmtypfldindx("key_cum_value","next")=11 + ; + Set gtmtypes("kill_set")="struct" + Set gtmtypes("kill_set",0)=3 + Set gtmtypes("kill_set","len")=1012 + Set gtmtypes("kill_set",1,"name")="kill_set.next_kill_set" + Set gtmtypes("kill_set",1,"off")=0 + Set gtmtypes("kill_set",1,"len")=4 + Set gtmtypes("kill_set",1,"type")="addr" + Set gtmtypfldindx("kill_set","next_kill_set")=1 + Set gtmtypes("kill_set",2,"name")="kill_set.used" + Set gtmtypes("kill_set",2,"off")=4 + Set gtmtypes("kill_set",2,"len")=4 + Set gtmtypes("kill_set",2,"type")="int" + Set gtmtypfldindx("kill_set","used")=2 + Set gtmtypes("kill_set",3,"name")="kill_set.blk" + Set gtmtypes("kill_set",3,"off")=8 + Set gtmtypes("kill_set",3,"len")=1004 + Set gtmtypes("kill_set",3,"type")="blk_ident" + Set gtmtypfldindx("kill_set","blk")=3 + Set gtmtypes("kill_set",3,"dim")=251 + ; + Set gtmtypes("lab_tabent")="struct" + Set gtmtypes("lab_tabent",0)=6 + Set gtmtypes("lab_tabent","len")=20 + Set gtmtypes("lab_tabent",1,"name")="lab_tabent.lab_name" + Set gtmtypes("lab_tabent",1,"off")=0 + Set gtmtypes("lab_tabent",1,"len")=12 + Set gtmtypes("lab_tabent",1,"type")="mstr" + Set gtmtypfldindx("lab_tabent","lab_name")=1 + Set gtmtypes("lab_tabent",2,"name")="lab_tabent.lab_name.char_len" + Set gtmtypes("lab_tabent",2,"off")=0 + Set gtmtypes("lab_tabent",2,"len")=4 + Set gtmtypes("lab_tabent",2,"type")="unsigned-int" + Set gtmtypfldindx("lab_tabent","lab_name.char_len")=2 + Set gtmtypes("lab_tabent",3,"name")="lab_tabent.lab_name.len" + Set gtmtypes("lab_tabent",3,"off")=4 + Set gtmtypes("lab_tabent",3,"len")=4 + Set gtmtypes("lab_tabent",3,"type")="int" + Set gtmtypfldindx("lab_tabent","lab_name.len")=3 + Set gtmtypes("lab_tabent",4,"name")="lab_tabent.lab_name.addr" + Set gtmtypes("lab_tabent",4,"off")=8 + Set gtmtypes("lab_tabent",4,"len")=4 + Set gtmtypes("lab_tabent",4,"type")="addr" + Set gtmtypfldindx("lab_tabent","lab_name.addr")=4 + Set gtmtypes("lab_tabent",5,"name")="lab_tabent.lab_ln_ptr" + Set gtmtypes("lab_tabent",5,"off")=12 + Set gtmtypes("lab_tabent",5,"len")=4 + Set gtmtypes("lab_tabent",5,"type")="int" + Set gtmtypfldindx("lab_tabent","lab_ln_ptr")=5 + Set gtmtypes("lab_tabent",6,"name")="lab_tabent.has_parms" + Set gtmtypes("lab_tabent",6,"off")=16 + Set gtmtypes("lab_tabent",6,"len")=4 + Set gtmtypes("lab_tabent",6,"type")="boolean_t" + Set gtmtypfldindx("lab_tabent","has_parms")=6 + ; + Set gtmtypes("lab_tabent_proxy")="struct" + Set gtmtypes("lab_tabent_proxy",0)=2 + Set gtmtypes("lab_tabent_proxy","len")=8 + Set gtmtypes("lab_tabent_proxy",1,"name")="lab_tabent_proxy.lab_ln_ptr" + Set gtmtypes("lab_tabent_proxy",1,"off")=0 + Set gtmtypes("lab_tabent_proxy",1,"len")=4 + Set gtmtypes("lab_tabent_proxy",1,"type")="int" + Set gtmtypfldindx("lab_tabent_proxy","lab_ln_ptr")=1 + Set gtmtypes("lab_tabent_proxy",2,"name")="lab_tabent_proxy.has_parms" + Set gtmtypes("lab_tabent_proxy",2,"off")=4 + Set gtmtypes("lab_tabent_proxy",2,"len")=4 + Set gtmtypes("lab_tabent_proxy",2,"type")="boolean_t" + Set gtmtypfldindx("lab_tabent_proxy","has_parms")=2 + ; + Set gtmtypes("link_info")="struct" + Set gtmtypes("link_info",0)=19 + Set gtmtypes("link_info","len")=52 + Set gtmtypes("link_info",1,"name")="link_info.neterr" + Set gtmtypes("link_info",1,"off")=0 + Set gtmtypes("link_info",1,"len")=1 + Set gtmtypes("link_info",1,"type")="unsigned-char" + Set gtmtypfldindx("link_info","neterr")=1 + Set gtmtypes("link_info",2,"name")="link_info.lck_info" + Set gtmtypes("link_info",2,"off")=1 + Set gtmtypes("link_info",2,"len")=1 + Set gtmtypes("link_info",2,"type")="unsigned-char" + Set gtmtypfldindx("link_info","lck_info")=2 + Set gtmtypes("link_info",3,"name")="link_info.lnk_active" + Set gtmtypes("link_info",3,"off")=2 + Set gtmtypes("link_info",3,"len")=1 + Set gtmtypes("link_info",3,"type")="unsigned-char" + Set gtmtypfldindx("link_info","lnk_active")=3 + Set gtmtypes("link_info",4,"name")="link_info.filler" + Set gtmtypes("link_info",4,"off")=3 + Set gtmtypes("link_info",4,"len")=1 + Set gtmtypes("link_info",4,"type")="char" + Set gtmtypfldindx("link_info","filler")=4 + Set gtmtypes("link_info",5,"name")="link_info.netlocks" + Set gtmtypes("link_info",5,"off")=4 + Set gtmtypes("link_info",5,"len")=4 + Set gtmtypes("link_info",5,"type")="addr" + Set gtmtypfldindx("link_info","netlocks")=5 + Set gtmtypes("link_info",6,"name")="link_info.procnum" + Set gtmtypes("link_info",6,"off")=8 + Set gtmtypes("link_info",6,"len")=2 + Set gtmtypes("link_info",6,"type")="unsigned-short" + Set gtmtypfldindx("link_info","procnum")=6 + Set gtmtypes("link_info",7,"name")="link_info.buffered_count" + Set gtmtypes("link_info",7,"off")=10 + Set gtmtypes("link_info",7,"len")=2 + Set gtmtypes("link_info",7,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffered_count")=7 + Set gtmtypes("link_info",8,"name")="link_info.buffer_size" + Set gtmtypes("link_info",8,"off")=12 + Set gtmtypes("link_info",8,"len")=2 + Set gtmtypes("link_info",8,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffer_size")=8 + Set gtmtypes("link_info",9,"name")="link_info.buffer_used" + Set gtmtypes("link_info",9,"off")=14 + Set gtmtypes("link_info",9,"len")=2 + Set gtmtypes("link_info",9,"type")="unsigned-short" + Set gtmtypfldindx("link_info","buffer_used")=9 + Set gtmtypes("link_info",10,"name")="link_info.buffer" + Set gtmtypes("link_info",10,"off")=16 + Set gtmtypes("link_info",10,"len")=4 + Set gtmtypes("link_info",10,"type")="addr" + Set gtmtypfldindx("link_info","buffer")=10 + Set gtmtypes("link_info",11,"name")="link_info.convert_byteorder" + Set gtmtypes("link_info",11,"off")=20 + Set gtmtypes("link_info",11,"len")=4 + Set gtmtypes("link_info",11,"type")="boolean_t" + Set gtmtypfldindx("link_info","convert_byteorder")=11 + Set gtmtypes("link_info",12,"name")="link_info.query_is_queryget" + Set gtmtypes("link_info",12,"off")=24 + Set gtmtypes("link_info",12,"len")=4 + Set gtmtypes("link_info",12,"type")="boolean_t" + Set gtmtypfldindx("link_info","query_is_queryget")=12 + Set gtmtypes("link_info",13,"name")="link_info.err_compat" + Set gtmtypes("link_info",13,"off")=28 + Set gtmtypes("link_info",13,"len")=4 + Set gtmtypes("link_info",13,"type")="boolean_t" + Set gtmtypfldindx("link_info","err_compat")=13 + Set gtmtypes("link_info",14,"name")="link_info.lk_response" + Set gtmtypes("link_info",14,"off")=32 + Set gtmtypes("link_info",14,"len")=8 + Set gtmtypes("link_info",14,"type")="cm_lk_response" + Set gtmtypfldindx("link_info","lk_response")=14 + Set gtmtypes("link_info",15,"name")="link_info.lk_response.next" + Set gtmtypes("link_info",15,"off")=32 + Set gtmtypes("link_info",15,"len")=4 + Set gtmtypes("link_info",15,"type")="addr" + Set gtmtypfldindx("link_info","lk_response.next")=15 + Set gtmtypes("link_info",16,"name")="link_info.lk_response.response" + Set gtmtypes("link_info",16,"off")=36 + Set gtmtypes("link_info",16,"len")=4 + Set gtmtypes("link_info",16,"type")="addr" + Set gtmtypfldindx("link_info","lk_response.response")=16 + Set gtmtypes("link_info",17,"name")="link_info.server_supports_dollar_incr" + Set gtmtypes("link_info",17,"off")=40 + Set gtmtypes("link_info",17,"len")=4 + Set gtmtypes("link_info",17,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_dollar_incr")=17 + Set gtmtypes("link_info",18,"name")="link_info.server_supports_std_null_coll" + Set gtmtypes("link_info",18,"off")=44 + Set gtmtypes("link_info",18,"len")=4 + Set gtmtypes("link_info",18,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_std_null_coll")=18 + Set gtmtypes("link_info",19,"name")="link_info.server_supports_long_names" + Set gtmtypes("link_info",19,"off")=48 + Set gtmtypes("link_info",19,"len")=4 + Set gtmtypes("link_info",19,"type")="boolean_t" + Set gtmtypfldindx("link_info","server_supports_long_names")=19 + ; + Set gtmtypes("list_params")="struct" + Set gtmtypes("list_params",0)=4 + Set gtmtypes("list_params","len")=8 + Set gtmtypes("list_params",1,"name")="list_params.page" + Set gtmtypes("list_params",1,"off")=0 + Set gtmtypes("list_params",1,"len")=2 + Set gtmtypes("list_params",1,"type")="unsigned-short" + Set gtmtypfldindx("list_params","page")=1 + Set gtmtypes("list_params",2,"name")="list_params.list_line" + Set gtmtypes("list_params",2,"off")=2 + Set gtmtypes("list_params",2,"len")=2 + Set gtmtypes("list_params",2,"type")="unsigned-short" + Set gtmtypfldindx("list_params","list_line")=2 + Set gtmtypes("list_params",3,"name")="list_params.lines_per_page" + Set gtmtypes("list_params",3,"off")=4 + Set gtmtypes("list_params",3,"len")=2 + Set gtmtypes("list_params",3,"type")="unsigned-short" + Set gtmtypfldindx("list_params","lines_per_page")=3 + Set gtmtypes("list_params",4,"name")="list_params.space" + Set gtmtypes("list_params",4,"off")=6 + Set gtmtypes("list_params",4,"len")=2 + Set gtmtypes("list_params",4,"type")="unsigned-short" + Set gtmtypfldindx("list_params","space")=4 + ; + Set gtmtypes("lockhist")="struct" + Set gtmtypes("lockhist",0)=5 + Set gtmtypes("lockhist","len")=20 + Set gtmtypes("lockhist",1,"name")="lockhist.lock_addr" + Set gtmtypes("lockhist",1,"off")=0 + Set gtmtypes("lockhist",1,"len")=4 + Set gtmtypes("lockhist",1,"type")="addr" + Set gtmtypfldindx("lockhist","lock_addr")=1 + Set gtmtypes("lockhist",2,"name")="lockhist.lock_callr" + Set gtmtypes("lockhist",2,"off")=4 + Set gtmtypes("lockhist",2,"len")=4 + Set gtmtypes("lockhist",2,"type")="caddr_t" + Set gtmtypfldindx("lockhist","lock_callr")=2 + Set gtmtypes("lockhist",3,"name")="lockhist.lock_pid" + Set gtmtypes("lockhist",3,"off")=8 + Set gtmtypes("lockhist",3,"len")=4 + Set gtmtypes("lockhist",3,"type")="int" + Set gtmtypfldindx("lockhist","lock_pid")=3 + Set gtmtypes("lockhist",4,"name")="lockhist.loop_cnt" + Set gtmtypes("lockhist",4,"off")=12 + Set gtmtypes("lockhist",4,"len")=4 + Set gtmtypes("lockhist",4,"type")="int" + Set gtmtypfldindx("lockhist","loop_cnt")=4 + Set gtmtypes("lockhist",5,"name")="lockhist.lock_op" + Set gtmtypes("lockhist",5,"off")=16 + Set gtmtypes("lockhist",5,"len")=4 + Set gtmtypes("lockhist",5,"type")="char" + Set gtmtypfldindx("lockhist","lock_op")=5 + ; + Set gtmtypes("long_list")="struct" + Set gtmtypes("long_list",0)=3 + Set gtmtypes("long_list","len")=12 + Set gtmtypes("long_list",1,"name")="long_list.next" + Set gtmtypes("long_list",1,"off")=0 + Set gtmtypes("long_list",1,"len")=4 + Set gtmtypes("long_list",1,"type")="addr" + Set gtmtypfldindx("long_list","next")=1 + Set gtmtypes("long_list",2,"name")="long_list.num" + Set gtmtypes("long_list",2,"off")=4 + Set gtmtypes("long_list",2,"len")=4 + Set gtmtypes("long_list",2,"type")="unsigned-int" + Set gtmtypfldindx("long_list","num")=2 + Set gtmtypes("long_list",3,"name")="long_list.exclude" + Set gtmtypes("long_list",3,"off")=8 + Set gtmtypes("long_list",3,"len")=1 + Set gtmtypes("long_list",3,"type")="char" + Set gtmtypfldindx("long_list","exclude")=3 + ; + Set gtmtypes("lvTree")="struct" + Set gtmtypes("lvTree",0)=10 + Set gtmtypes("lvTree","len")=32 + Set gtmtypes("lvTree",1,"name")="lvTree.ident" + Set gtmtypes("lvTree",1,"off")=0 + Set gtmtypes("lvTree",1,"len")=2 + Set gtmtypes("lvTree",1,"type")="unsigned-short" + Set gtmtypfldindx("lvTree","ident")=1 + Set gtmtypes("lvTree",2,"name")="lvTree.sbs_depth" + Set gtmtypes("lvTree",2,"off")=2 + Set gtmtypes("lvTree",2,"len")=2 + Set gtmtypes("lvTree",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTree","sbs_depth")=2 + Set gtmtypes("lvTree",3,"name")="lvTree.avl_height" + Set gtmtypes("lvTree",3,"off")=4 + Set gtmtypes("lvTree",3,"len")=4 + Set gtmtypes("lvTree",3,"type")="unsigned-int" + Set gtmtypfldindx("lvTree","avl_height")=3 + Set gtmtypes("lvTree",4,"name")="lvTree.base_lv" + Set gtmtypes("lvTree",4,"off")=8 + Set gtmtypes("lvTree",4,"len")=4 + Set gtmtypes("lvTree",4,"type")="addr" + Set gtmtypfldindx("lvTree","base_lv")=4 + Set gtmtypes("lvTree",5,"name")="lvTree.avl_root" + Set gtmtypes("lvTree",5,"off")=12 + Set gtmtypes("lvTree",5,"len")=4 + Set gtmtypes("lvTree",5,"type")="addr" + Set gtmtypfldindx("lvTree","avl_root")=5 + Set gtmtypes("lvTree",6,"name")="lvTree.sbs_parent" + Set gtmtypes("lvTree",6,"off")=16 + Set gtmtypes("lvTree",6,"len")=4 + Set gtmtypes("lvTree",6,"type")="addr" + Set gtmtypfldindx("lvTree","sbs_parent")=6 + Set gtmtypes("lvTree",7,"name")="lvTree.lastLookup" + Set gtmtypes("lvTree",7,"off")=20 + Set gtmtypes("lvTree",7,"len")=12 + Set gtmtypes("lvTree",7,"type")="treeSrchStatus" + Set gtmtypfldindx("lvTree","lastLookup")=7 + Set gtmtypes("lvTree",8,"name")="lvTree.lastLookup.lastNodeLookedUp" + Set gtmtypes("lvTree",8,"off")=20 + Set gtmtypes("lvTree",8,"len")=4 + Set gtmtypes("lvTree",8,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeLookedUp")=8 + Set gtmtypes("lvTree",9,"name")="lvTree.lastLookup.lastNodeMin" + Set gtmtypes("lvTree",9,"off")=24 + Set gtmtypes("lvTree",9,"len")=4 + Set gtmtypes("lvTree",9,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeMin")=9 + Set gtmtypes("lvTree",10,"name")="lvTree.lastLookup.lastNodeMax" + Set gtmtypes("lvTree",10,"off")=28 + Set gtmtypes("lvTree",10,"len")=4 + Set gtmtypes("lvTree",10,"type")="addr" + Set gtmtypfldindx("lvTree","lastLookup.lastNodeMax")=10 + ; + Set gtmtypes("lvTreeNode")="struct" + Set gtmtypes("lvTreeNode",0)=18 + Set gtmtypes("lvTreeNode","len")=68 + Set gtmtypes("lvTreeNode",1,"name")="lvTreeNode.v" + Set gtmtypes("lvTreeNode",1,"off")=0 + Set gtmtypes("lvTreeNode",1,"len")=32 + Set gtmtypes("lvTreeNode",1,"type")="mval" + Set gtmtypfldindx("lvTreeNode","v")=1 + Set gtmtypes("lvTreeNode",2,"name")="lvTreeNode.v.mvtype" + Set gtmtypes("lvTreeNode",2,"off")=0 + Set gtmtypes("lvTreeNode",2,"len")=2 + Set gtmtypes("lvTreeNode",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNode","v.mvtype")=2 + Set gtmtypes("lvTreeNode",3,"name")="lvTreeNode.v.fnpc_indx" + Set gtmtypes("lvTreeNode",3,"off")=3 + Set gtmtypes("lvTreeNode",3,"len")=1 + Set gtmtypes("lvTreeNode",3,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNode","v.fnpc_indx")=3 + Set gtmtypes("lvTreeNode",4,"name")="lvTreeNode.v.utfcgr_indx" + Set gtmtypes("lvTreeNode",4,"off")=4 + Set gtmtypes("lvTreeNode",4,"len")=4 + Set gtmtypes("lvTreeNode",4,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","v.utfcgr_indx")=4 + Set gtmtypes("lvTreeNode",5,"name")="lvTreeNode.v.filler2" + Set gtmtypes("lvTreeNode",5,"off")=8 + Set gtmtypes("lvTreeNode",5,"len")=4 + Set gtmtypes("lvTreeNode",5,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","v.filler2")=5 + Set gtmtypes("lvTreeNode",6,"name")="lvTreeNode.v.m" + Set gtmtypes("lvTreeNode",6,"off")=12 + Set gtmtypes("lvTreeNode",6,"len")=8 + Set gtmtypes("lvTreeNode",6,"type")="int" + Set gtmtypfldindx("lvTreeNode","v.m")=6 + Set gtmtypes("lvTreeNode",6,"dim")=2 + Set gtmtypes("lvTreeNode",7,"name")="lvTreeNode.v.str" + Set gtmtypes("lvTreeNode",7,"off")=20 + Set gtmtypes("lvTreeNode",7,"len")=12 + Set gtmtypes("lvTreeNode",7,"type")="mstr" + Set gtmtypfldindx("lvTreeNode","v.str")=7 + Set gtmtypes("lvTreeNode",8,"name")="lvTreeNode.sbs_child" + Set gtmtypes("lvTreeNode",8,"off")=32 + Set gtmtypes("lvTreeNode",8,"len")=4 + Set gtmtypes("lvTreeNode",8,"type")="addr" + Set gtmtypfldindx("lvTreeNode","sbs_child")=8 + Set gtmtypes("lvTreeNode",9,"name")="lvTreeNode.tree_parent" + Set gtmtypes("lvTreeNode",9,"off")=36 + Set gtmtypes("lvTreeNode",9,"len")=4 + Set gtmtypes("lvTreeNode",9,"type")="addr" + Set gtmtypfldindx("lvTreeNode","tree_parent")=9 + Set gtmtypes("lvTreeNode",10,"name")="lvTreeNode.key_mvtype" + Set gtmtypes("lvTreeNode",10,"off")=40 + Set gtmtypes("lvTreeNode",10,"len")=2 + Set gtmtypes("lvTreeNode",10,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNode","key_mvtype")=10 + Set gtmtypes("lvTreeNode",11,"name")="lvTreeNode.balance" + Set gtmtypes("lvTreeNode",11,"off")=42 + Set gtmtypes("lvTreeNode",11,"len")=1 + Set gtmtypes("lvTreeNode",11,"type")="char" + Set gtmtypfldindx("lvTreeNode","balance")=11 + Set gtmtypes("lvTreeNode",12,"name")="lvTreeNode.descent_dir" + Set gtmtypes("lvTreeNode",12,"off")=43 + Set gtmtypes("lvTreeNode",12,"len")=1 + Set gtmtypes("lvTreeNode",12,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNode","descent_dir")=12 + Set gtmtypes("lvTreeNode",13,"name")="lvTreeNode.key_len" + Set gtmtypes("lvTreeNode",13,"off")=44 + Set gtmtypes("lvTreeNode",13,"len")=4 + Set gtmtypes("lvTreeNode",13,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","key_len")=13 + Set gtmtypes("lvTreeNode",14,"name")="lvTreeNode.key_addr" + Set gtmtypes("lvTreeNode",14,"off")=48 + Set gtmtypes("lvTreeNode",14,"len")=4 + Set gtmtypes("lvTreeNode",14,"type")="addr" + Set gtmtypfldindx("lvTreeNode","key_addr")=14 + Set gtmtypes("lvTreeNode",15,"name")="lvTreeNode.filler_8byte" + Set gtmtypes("lvTreeNode",15,"off")=52 + Set gtmtypes("lvTreeNode",15,"len")=4 + Set gtmtypes("lvTreeNode",15,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNode","filler_8byte")=15 + Set gtmtypes("lvTreeNode",16,"name")="lvTreeNode.avl_left" + Set gtmtypes("lvTreeNode",16,"off")=56 + Set gtmtypes("lvTreeNode",16,"len")=4 + Set gtmtypes("lvTreeNode",16,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_left")=16 + Set gtmtypes("lvTreeNode",17,"name")="lvTreeNode.avl_right" + Set gtmtypes("lvTreeNode",17,"off")=60 + Set gtmtypes("lvTreeNode",17,"len")=4 + Set gtmtypes("lvTreeNode",17,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_right")=17 + Set gtmtypes("lvTreeNode",18,"name")="lvTreeNode.avl_parent" + Set gtmtypes("lvTreeNode",18,"off")=64 + Set gtmtypes("lvTreeNode",18,"len")=4 + Set gtmtypes("lvTreeNode",18,"type")="addr" + Set gtmtypfldindx("lvTreeNode","avl_parent")=18 + ; + Set gtmtypes("lvTreeNodeNum")="struct" + Set gtmtypes("lvTreeNodeNum",0)=21 + Set gtmtypes("lvTreeNodeNum","len")=68 + Set gtmtypes("lvTreeNodeNum",1,"name")="lvTreeNodeNum.v" + Set gtmtypes("lvTreeNodeNum",1,"off")=0 + Set gtmtypes("lvTreeNodeNum",1,"len")=32 + Set gtmtypes("lvTreeNodeNum",1,"type")="mval" + Set gtmtypfldindx("lvTreeNodeNum","v")=1 + Set gtmtypes("lvTreeNodeNum",2,"name")="lvTreeNodeNum.v.mvtype" + Set gtmtypes("lvTreeNodeNum",2,"off")=0 + Set gtmtypes("lvTreeNodeNum",2,"len")=2 + Set gtmtypes("lvTreeNodeNum",2,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNodeNum","v.mvtype")=2 + Set gtmtypes("lvTreeNodeNum",3,"name")="lvTreeNodeNum.v.fnpc_indx" + Set gtmtypes("lvTreeNodeNum",3,"off")=3 + Set gtmtypes("lvTreeNodeNum",3,"len")=1 + Set gtmtypes("lvTreeNodeNum",3,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","v.fnpc_indx")=3 + Set gtmtypes("lvTreeNodeNum",4,"name")="lvTreeNodeNum.v.utfcgr_indx" + Set gtmtypes("lvTreeNodeNum",4,"off")=4 + Set gtmtypes("lvTreeNodeNum",4,"len")=4 + Set gtmtypes("lvTreeNodeNum",4,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNodeNum","v.utfcgr_indx")=4 + Set gtmtypes("lvTreeNodeNum",5,"name")="lvTreeNodeNum.v.filler2" + Set gtmtypes("lvTreeNodeNum",5,"off")=8 + Set gtmtypes("lvTreeNodeNum",5,"len")=4 + Set gtmtypes("lvTreeNodeNum",5,"type")="unsigned-int" + Set gtmtypfldindx("lvTreeNodeNum","v.filler2")=5 + Set gtmtypes("lvTreeNodeNum",6,"name")="lvTreeNodeNum.v.m" + Set gtmtypes("lvTreeNodeNum",6,"off")=12 + Set gtmtypes("lvTreeNodeNum",6,"len")=8 + Set gtmtypes("lvTreeNodeNum",6,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","v.m")=6 + Set gtmtypes("lvTreeNodeNum",6,"dim")=2 + Set gtmtypes("lvTreeNodeNum",7,"name")="lvTreeNodeNum.v.str" + Set gtmtypes("lvTreeNodeNum",7,"off")=20 + Set gtmtypes("lvTreeNodeNum",7,"len")=12 + Set gtmtypes("lvTreeNodeNum",7,"type")="mstr" + Set gtmtypfldindx("lvTreeNodeNum","v.str")=7 + Set gtmtypes("lvTreeNodeNum",8,"name")="lvTreeNodeNum.sbs_child" + Set gtmtypes("lvTreeNodeNum",8,"off")=32 + Set gtmtypes("lvTreeNodeNum",8,"len")=4 + Set gtmtypes("lvTreeNodeNum",8,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","sbs_child")=8 + Set gtmtypes("lvTreeNodeNum",9,"name")="lvTreeNodeNum.tree_parent" + Set gtmtypes("lvTreeNodeNum",9,"off")=36 + Set gtmtypes("lvTreeNodeNum",9,"len")=4 + Set gtmtypes("lvTreeNodeNum",9,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","tree_parent")=9 + Set gtmtypes("lvTreeNodeNum",10,"name")="lvTreeNodeNum.key_mvtype" + Set gtmtypes("lvTreeNodeNum",10,"off")=40 + Set gtmtypes("lvTreeNodeNum",10,"len")=2 + Set gtmtypes("lvTreeNodeNum",10,"type")="unsigned-short" + Set gtmtypfldindx("lvTreeNodeNum","key_mvtype")=10 + Set gtmtypes("lvTreeNodeNum",11,"name")="lvTreeNodeNum.balance" + Set gtmtypes("lvTreeNodeNum",11,"off")=42 + Set gtmtypes("lvTreeNodeNum",11,"len")=1 + Set gtmtypes("lvTreeNodeNum",11,"type")="char" + Set gtmtypfldindx("lvTreeNodeNum","balance")=11 + Set gtmtypes("lvTreeNodeNum",12,"name")="lvTreeNodeNum.descent_dir" + Set gtmtypes("lvTreeNodeNum",12,"off")=43 + Set gtmtypes("lvTreeNodeNum",12,"len")=1 + Set gtmtypes("lvTreeNodeNum",12,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","descent_dir")=12 + Set gtmtypes("lvTreeNodeNum",13,"name")="lvTreeNodeNum.key_flags" + Set gtmtypes("lvTreeNodeNum",13,"off")=44 + Set gtmtypes("lvTreeNodeNum",13,"len")=4 + Set gtmtypes("lvTreeNodeNum",13,"type")="union" + Set gtmtypfldindx("lvTreeNodeNum","key_flags")=13 + Set gtmtypes("lvTreeNodeNum",14,"name")="lvTreeNodeNum.key_flags.key_bytes" + Set gtmtypes("lvTreeNodeNum",14,"off")=44 + Set gtmtypes("lvTreeNodeNum",14,"len")=1 + Set gtmtypes("lvTreeNodeNum",14,"type")="struct" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bytes")=14 + Set gtmtypes("lvTreeNodeNum",15,"name")="lvTreeNodeNum.key_flags.key_bytes.key_sgne" + Set gtmtypes("lvTreeNodeNum",15,"off")=44 + Set gtmtypes("lvTreeNodeNum",15,"len")=1 + Set gtmtypes("lvTreeNodeNum",15,"type")="unsigned-char" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bytes.key_sgne")=15 + Set gtmtypes("lvTreeNodeNum",16,"name")="lvTreeNodeNum.key_flags.key_bits" + Set gtmtypes("lvTreeNodeNum",16,"off")=44 + Set gtmtypes("lvTreeNodeNum",16,"len")=4 + Set gtmtypes("lvTreeNodeNum",16,"type")="struct" + Set gtmtypfldindx("lvTreeNodeNum","key_flags.key_bits")=16 + Set gtmtypes("lvTreeNodeNum",17,"name")="lvTreeNodeNum.key_m0" + Set gtmtypes("lvTreeNodeNum",17,"off")=48 + Set gtmtypes("lvTreeNodeNum",17,"len")=4 + Set gtmtypes("lvTreeNodeNum",17,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","key_m0")=17 + Set gtmtypes("lvTreeNodeNum",18,"name")="lvTreeNodeNum.key_m1" + Set gtmtypes("lvTreeNodeNum",18,"off")=52 + Set gtmtypes("lvTreeNodeNum",18,"len")=4 + Set gtmtypes("lvTreeNodeNum",18,"type")="int" + Set gtmtypfldindx("lvTreeNodeNum","key_m1")=18 + Set gtmtypes("lvTreeNodeNum",19,"name")="lvTreeNodeNum.avl_left" + Set gtmtypes("lvTreeNodeNum",19,"off")=56 + Set gtmtypes("lvTreeNodeNum",19,"len")=4 + Set gtmtypes("lvTreeNodeNum",19,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_left")=19 + Set gtmtypes("lvTreeNodeNum",20,"name")="lvTreeNodeNum.avl_right" + Set gtmtypes("lvTreeNodeNum",20,"off")=60 + Set gtmtypes("lvTreeNodeNum",20,"len")=4 + Set gtmtypes("lvTreeNodeNum",20,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_right")=20 + Set gtmtypes("lvTreeNodeNum",21,"name")="lvTreeNodeNum.avl_parent" + Set gtmtypes("lvTreeNodeNum",21,"off")=64 + Set gtmtypes("lvTreeNodeNum",21,"len")=4 + Set gtmtypes("lvTreeNodeNum",21,"type")="addr" + Set gtmtypfldindx("lvTreeNodeNum","avl_parent")=21 + ; + Set gtmtypes("lv_blk")="struct" + Set gtmtypes("lv_blk",0)=3 + Set gtmtypes("lv_blk","len")=12 + Set gtmtypes("lv_blk",1,"name")="lv_blk.next" + Set gtmtypes("lv_blk",1,"off")=0 + Set gtmtypes("lv_blk",1,"len")=4 + Set gtmtypes("lv_blk",1,"type")="addr" + Set gtmtypfldindx("lv_blk","next")=1 + Set gtmtypes("lv_blk",2,"name")="lv_blk.numAlloc" + Set gtmtypes("lv_blk",2,"off")=4 + Set gtmtypes("lv_blk",2,"len")=4 + Set gtmtypes("lv_blk",2,"type")="unsigned-int" + Set gtmtypfldindx("lv_blk","numAlloc")=2 + Set gtmtypes("lv_blk",3,"name")="lv_blk.numUsed" + Set gtmtypes("lv_blk",3,"off")=8 + Set gtmtypes("lv_blk",3,"len")=4 + Set gtmtypes("lv_blk",3,"type")="unsigned-int" + Set gtmtypfldindx("lv_blk","numUsed")=3 + ; + Set gtmtypes("lv_val")="struct" + Set gtmtypes("lv_val",0)=25 + Set gtmtypes("lv_val","len")=68 + Set gtmtypes("lv_val",1,"name")="lv_val.v" + Set gtmtypes("lv_val",1,"off")=0 + Set gtmtypes("lv_val",1,"len")=32 + Set gtmtypes("lv_val",1,"type")="mval" + Set gtmtypfldindx("lv_val","v")=1 + Set gtmtypes("lv_val",2,"name")="lv_val.v.mvtype" + Set gtmtypes("lv_val",2,"off")=0 + Set gtmtypes("lv_val",2,"len")=2 + Set gtmtypes("lv_val",2,"type")="unsigned-short" + Set gtmtypfldindx("lv_val","v.mvtype")=2 + Set gtmtypes("lv_val",3,"name")="lv_val.v.fnpc_indx" + Set gtmtypes("lv_val",3,"off")=3 + Set gtmtypes("lv_val",3,"len")=1 + Set gtmtypes("lv_val",3,"type")="unsigned-char" + Set gtmtypfldindx("lv_val","v.fnpc_indx")=3 + Set gtmtypes("lv_val",4,"name")="lv_val.v.utfcgr_indx" + Set gtmtypes("lv_val",4,"off")=4 + Set gtmtypes("lv_val",4,"len")=4 + Set gtmtypes("lv_val",4,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","v.utfcgr_indx")=4 + Set gtmtypes("lv_val",5,"name")="lv_val.v.filler2" + Set gtmtypes("lv_val",5,"off")=8 + Set gtmtypes("lv_val",5,"len")=4 + Set gtmtypes("lv_val",5,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","v.filler2")=5 + Set gtmtypes("lv_val",6,"name")="lv_val.v.m" + Set gtmtypes("lv_val",6,"off")=12 + Set gtmtypes("lv_val",6,"len")=8 + Set gtmtypes("lv_val",6,"type")="int" + Set gtmtypfldindx("lv_val","v.m")=6 + Set gtmtypes("lv_val",6,"dim")=2 + Set gtmtypes("lv_val",7,"name")="lv_val.v.str" + Set gtmtypes("lv_val",7,"off")=20 + Set gtmtypes("lv_val",7,"len")=12 + Set gtmtypes("lv_val",7,"type")="mstr" + Set gtmtypfldindx("lv_val","v.str")=7 + Set gtmtypes("lv_val",8,"name")="lv_val.ptrs" + Set gtmtypes("lv_val",8,"off")=32 + Set gtmtypes("lv_val",8,"len")=8 + Set gtmtypes("lv_val",8,"type")="union" + Set gtmtypfldindx("lv_val","ptrs")=8 + Set gtmtypes("lv_val",9,"name")="lv_val.ptrs.val_ent" + Set gtmtypes("lv_val",9,"off")=32 + Set gtmtypes("lv_val",9,"len")=8 + Set gtmtypes("lv_val",9,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.val_ent")=9 + Set gtmtypes("lv_val",10,"name")="lv_val.ptrs.val_ent.children" + Set gtmtypes("lv_val",10,"off")=32 + Set gtmtypes("lv_val",10,"len")=4 + Set gtmtypes("lv_val",10,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.children")=10 + Set gtmtypes("lv_val",11,"name")="lv_val.ptrs.val_ent.parent" + Set gtmtypes("lv_val",11,"off")=36 + Set gtmtypes("lv_val",11,"len")=4 + Set gtmtypes("lv_val",11,"type")="union" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent")=11 + Set gtmtypes("lv_val",12,"name")="lv_val.ptrs.val_ent.parent.sym" + Set gtmtypes("lv_val",12,"off")=36 + Set gtmtypes("lv_val",12,"len")=4 + Set gtmtypes("lv_val",12,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent.sym")=12 + Set gtmtypes("lv_val",13,"name")="lv_val.ptrs.val_ent.parent.sbs_tree" + Set gtmtypes("lv_val",13,"off")=36 + Set gtmtypes("lv_val",13,"len")=4 + Set gtmtypes("lv_val",13,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.val_ent.parent.sbs_tree")=13 + Set gtmtypes("lv_val",14,"name")="lv_val.ptrs.free_ent" + Set gtmtypes("lv_val",14,"off")=32 + Set gtmtypes("lv_val",14,"len")=4 + Set gtmtypes("lv_val",14,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.free_ent")=14 + Set gtmtypes("lv_val",15,"name")="lv_val.ptrs.free_ent.next_free" + Set gtmtypes("lv_val",15,"off")=32 + Set gtmtypes("lv_val",15,"len")=4 + Set gtmtypes("lv_val",15,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.free_ent.next_free")=15 + Set gtmtypes("lv_val",16,"name")="lv_val.ptrs.copy_loc" + Set gtmtypes("lv_val",16,"off")=32 + Set gtmtypes("lv_val",16,"len")=4 + Set gtmtypes("lv_val",16,"type")="struct" + Set gtmtypfldindx("lv_val","ptrs.copy_loc")=16 + Set gtmtypes("lv_val",17,"name")="lv_val.ptrs.copy_loc.newtablv" + Set gtmtypes("lv_val",17,"off")=32 + Set gtmtypes("lv_val",17,"len")=4 + Set gtmtypes("lv_val",17,"type")="addr" + Set gtmtypfldindx("lv_val","ptrs.copy_loc.newtablv")=17 + Set gtmtypes("lv_val",18,"name")="lv_val.stats" + Set gtmtypes("lv_val",18,"off")=40 + Set gtmtypes("lv_val",18,"len")=16 + Set gtmtypes("lv_val",18,"type")="struct" + Set gtmtypfldindx("lv_val","stats")=18 + Set gtmtypes("lv_val",19,"name")="lv_val.stats.trefcnt" + Set gtmtypes("lv_val",19,"off")=40 + Set gtmtypes("lv_val",19,"len")=4 + Set gtmtypes("lv_val",19,"type")="int" + Set gtmtypfldindx("lv_val","stats.trefcnt")=19 + Set gtmtypes("lv_val",20,"name")="lv_val.stats.crefcnt" + Set gtmtypes("lv_val",20,"off")=44 + Set gtmtypes("lv_val",20,"len")=4 + Set gtmtypes("lv_val",20,"type")="int" + Set gtmtypfldindx("lv_val","stats.crefcnt")=20 + Set gtmtypes("lv_val",21,"name")="lv_val.stats.tstartcycle" + Set gtmtypes("lv_val",21,"off")=48 + Set gtmtypes("lv_val",21,"len")=4 + Set gtmtypes("lv_val",21,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","stats.tstartcycle")=21 + Set gtmtypes("lv_val",22,"name")="lv_val.stats.lvtaskcycle" + Set gtmtypes("lv_val",22,"off")=52 + Set gtmtypes("lv_val",22,"len")=4 + Set gtmtypes("lv_val",22,"type")="unsigned-int" + Set gtmtypfldindx("lv_val","stats.lvtaskcycle")=22 + Set gtmtypes("lv_val",23,"name")="lv_val.has_aliascont" + Set gtmtypes("lv_val",23,"off")=56 + Set gtmtypes("lv_val",23,"len")=4 + Set gtmtypes("lv_val",23,"type")="boolean_t" + Set gtmtypfldindx("lv_val","has_aliascont")=23 + Set gtmtypes("lv_val",24,"name")="lv_val.lvmon_mark" + Set gtmtypes("lv_val",24,"off")=60 + Set gtmtypes("lv_val",24,"len")=4 + Set gtmtypes("lv_val",24,"type")="boolean_t" + Set gtmtypfldindx("lv_val","lvmon_mark")=24 + Set gtmtypes("lv_val",25,"name")="lv_val.tp_var" + Set gtmtypes("lv_val",25,"off")=64 + Set gtmtypes("lv_val",25,"len")=4 + Set gtmtypes("lv_val",25,"type")="addr" + Set gtmtypfldindx("lv_val","tp_var")=25 + ; + Set gtmtypes("lv_xnew_ref")="struct" + Set gtmtypes("lv_xnew_ref",0)=2 + Set gtmtypes("lv_xnew_ref","len")=8 + Set gtmtypes("lv_xnew_ref",1,"name")="lv_xnew_ref.next" + Set gtmtypes("lv_xnew_ref",1,"off")=0 + Set gtmtypes("lv_xnew_ref",1,"len")=4 + Set gtmtypes("lv_xnew_ref",1,"type")="addr" + Set gtmtypfldindx("lv_xnew_ref","next")=1 + Set gtmtypes("lv_xnew_ref",2,"name")="lv_xnew_ref.lvval" + Set gtmtypes("lv_xnew_ref",2,"off")=4 + Set gtmtypes("lv_xnew_ref",2,"len")=4 + Set gtmtypes("lv_xnew_ref",2,"type")="addr" + Set gtmtypfldindx("lv_xnew_ref","lvval")=2 + ; + Set gtmtypes("lv_xnew_var")="struct" + Set gtmtypes("lv_xnew_var",0)=6 + Set gtmtypes("lv_xnew_var","len")=28 + Set gtmtypes("lv_xnew_var",1,"name")="lv_xnew_var.next" + Set gtmtypes("lv_xnew_var",1,"off")=0 + Set gtmtypes("lv_xnew_var",1,"len")=4 + Set gtmtypes("lv_xnew_var",1,"type")="addr" + Set gtmtypfldindx("lv_xnew_var","next")=1 + Set gtmtypes("lv_xnew_var",2,"name")="lv_xnew_var.key" + Set gtmtypes("lv_xnew_var",2,"off")=4 + Set gtmtypes("lv_xnew_var",2,"len")=20 + Set gtmtypes("lv_xnew_var",2,"type")="mname_entry" + Set gtmtypfldindx("lv_xnew_var","key")=2 + Set gtmtypes("lv_xnew_var",3,"name")="lv_xnew_var.key.var_name" + Set gtmtypes("lv_xnew_var",3,"off")=4 + Set gtmtypes("lv_xnew_var",3,"len")=12 + Set gtmtypes("lv_xnew_var",3,"type")="mstr" + Set gtmtypfldindx("lv_xnew_var","key.var_name")=3 + Set gtmtypes("lv_xnew_var",4,"name")="lv_xnew_var.key.hash_code" + Set gtmtypes("lv_xnew_var",4,"off")=16 + Set gtmtypes("lv_xnew_var",4,"len")=4 + Set gtmtypes("lv_xnew_var",4,"type")="unsigned-int" + Set gtmtypfldindx("lv_xnew_var","key.hash_code")=4 + Set gtmtypes("lv_xnew_var",5,"name")="lv_xnew_var.key.marked" + Set gtmtypes("lv_xnew_var",5,"off")=20 + Set gtmtypes("lv_xnew_var",5,"len")=4 + Set gtmtypes("lv_xnew_var",5,"type")="boolean_t" + Set gtmtypfldindx("lv_xnew_var","key.marked")=5 + Set gtmtypes("lv_xnew_var",6,"name")="lv_xnew_var.lvval" + Set gtmtypes("lv_xnew_var",6,"off")=24 + Set gtmtypes("lv_xnew_var",6,"len")=4 + Set gtmtypes("lv_xnew_var",6,"type")="addr" + Set gtmtypfldindx("lv_xnew_var","lvval")=6 + ; + Set gtmtypes("lvname_info")="struct" + Set gtmtypes("lvname_info",0)=4 + Set gtmtypes("lvname_info","len")=140 + Set gtmtypes("lvname_info",1,"name")="lvname_info.total_lv_subs" + Set gtmtypes("lvname_info",1,"off")=0 + Set gtmtypes("lvname_info",1,"len")=4 + Set gtmtypes("lvname_info",1,"type")="intptr_t" + Set gtmtypfldindx("lvname_info","total_lv_subs")=1 + Set gtmtypes("lvname_info",2,"name")="lvname_info.start_lvp" + Set gtmtypes("lvname_info",2,"off")=4 + Set gtmtypes("lvname_info",2,"len")=4 + Set gtmtypes("lvname_info",2,"type")="addr" + Set gtmtypfldindx("lvname_info","start_lvp")=2 + Set gtmtypes("lvname_info",3,"name")="lvname_info.lv_subs" + Set gtmtypes("lvname_info",3,"off")=8 + Set gtmtypes("lvname_info",3,"len")=128 + Set gtmtypes("lvname_info",3,"type")="addr" + Set gtmtypfldindx("lvname_info","lv_subs")=3 + Set gtmtypes("lvname_info",3,"dim")=32 + Set gtmtypes("lvname_info",4,"name")="lvname_info.end_lvp" + Set gtmtypes("lvname_info",4,"off")=136 + Set gtmtypes("lvname_info",4,"len")=4 + Set gtmtypes("lvname_info",4,"type")="addr" + Set gtmtypfldindx("lvname_info","end_lvp")=4 + ; + Set gtmtypes("lvzwrite_datablk")="struct" + Set gtmtypes("lvzwrite_datablk",0)=10 + Set gtmtypes("lvzwrite_datablk","len")=36 + Set gtmtypes("lvzwrite_datablk",1,"name")="lvzwrite_datablk.zwr_intype" + Set gtmtypes("lvzwrite_datablk",1,"off")=0 + Set gtmtypes("lvzwrite_datablk",1,"len")=4 + Set gtmtypes("lvzwrite_datablk",1,"type")="int" + Set gtmtypfldindx("lvzwrite_datablk","zwr_intype")=1 + Set gtmtypes("lvzwrite_datablk",2,"name")="lvzwrite_datablk.fixed" + Set gtmtypes("lvzwrite_datablk",2,"off")=4 + Set gtmtypes("lvzwrite_datablk",2,"len")=4 + Set gtmtypes("lvzwrite_datablk",2,"type")="boolean_t" + Set gtmtypfldindx("lvzwrite_datablk","fixed")=2 + Set gtmtypes("lvzwrite_datablk",3,"name")="lvzwrite_datablk.zav_added" + Set gtmtypes("lvzwrite_datablk",3,"off")=8 + Set gtmtypes("lvzwrite_datablk",3,"len")=4 + Set gtmtypes("lvzwrite_datablk",3,"type")="boolean_t" + Set gtmtypfldindx("lvzwrite_datablk","zav_added")=3 + Set gtmtypes("lvzwrite_datablk",4,"name")="lvzwrite_datablk.subsc_count" + Set gtmtypes("lvzwrite_datablk",4,"off")=12 + Set gtmtypes("lvzwrite_datablk",4,"len")=2 + Set gtmtypes("lvzwrite_datablk",4,"type")="unsigned-short" + Set gtmtypfldindx("lvzwrite_datablk","subsc_count")=4 + Set gtmtypes("lvzwrite_datablk",5,"name")="lvzwrite_datablk.curr_subsc" + Set gtmtypes("lvzwrite_datablk",5,"off")=14 + Set gtmtypes("lvzwrite_datablk",5,"len")=2 + Set gtmtypes("lvzwrite_datablk",5,"type")="unsigned-short" + Set gtmtypfldindx("lvzwrite_datablk","curr_subsc")=5 + Set gtmtypes("lvzwrite_datablk",6,"name")="lvzwrite_datablk.mask" + Set gtmtypes("lvzwrite_datablk",6,"off")=16 + Set gtmtypes("lvzwrite_datablk",6,"len")=4 + Set gtmtypes("lvzwrite_datablk",6,"type")="unsigned-int" + Set gtmtypfldindx("lvzwrite_datablk","mask")=6 + Set gtmtypes("lvzwrite_datablk",7,"name")="lvzwrite_datablk.pat" + Set gtmtypes("lvzwrite_datablk",7,"off")=20 + Set gtmtypes("lvzwrite_datablk",7,"len")=4 + Set gtmtypes("lvzwrite_datablk",7,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","pat")=7 + Set gtmtypes("lvzwrite_datablk",8,"name")="lvzwrite_datablk.curr_name" + Set gtmtypes("lvzwrite_datablk",8,"off")=24 + Set gtmtypes("lvzwrite_datablk",8,"len")=4 + Set gtmtypes("lvzwrite_datablk",8,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","curr_name")=8 + Set gtmtypes("lvzwrite_datablk",9,"name")="lvzwrite_datablk.sub" + Set gtmtypes("lvzwrite_datablk",9,"off")=28 + Set gtmtypes("lvzwrite_datablk",9,"len")=4 + Set gtmtypes("lvzwrite_datablk",9,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","sub")=9 + Set gtmtypes("lvzwrite_datablk",10,"name")="lvzwrite_datablk.prev" + Set gtmtypes("lvzwrite_datablk",10,"off")=32 + Set gtmtypes("lvzwrite_datablk",10,"len")=4 + Set gtmtypes("lvzwrite_datablk",10,"type")="addr" + Set gtmtypfldindx("lvzwrite_datablk","prev")=10 + ; + Set gtmtypes("m_cap")="struct" + Set gtmtypes("m_cap",0)=6 + Set gtmtypes("m_cap","len")=12 + Set gtmtypes("m_cap",1,"name")="m_cap.mt_type" + Set gtmtypes("m_cap",1,"off")=0 + Set gtmtypes("m_cap",1,"len")=4 + Set gtmtypes("m_cap",1,"type")="int" + Set gtmtypfldindx("m_cap","mt_type")=1 + Set gtmtypes("m_cap",2,"name")="m_cap.is_seekable" + Set gtmtypes("m_cap",2,"off")=4 + Set gtmtypes("m_cap",2,"len")=1 + Set gtmtypes("m_cap",2,"type")="char" + Set gtmtypfldindx("m_cap","is_seekable")=2 + Set gtmtypes("m_cap",3,"name")="m_cap.filemarks_supported" + Set gtmtypes("m_cap",3,"off")=5 + Set gtmtypes("m_cap",3,"len")=1 + Set gtmtypes("m_cap",3,"type")="char" + Set gtmtypfldindx("m_cap","filemarks_supported")=3 + Set gtmtypes("m_cap",4,"name")="m_cap.req_extra_filemark" + Set gtmtypes("m_cap",4,"off")=6 + Set gtmtypes("m_cap",4,"len")=1 + Set gtmtypes("m_cap",4,"type")="char" + Set gtmtypfldindx("m_cap","req_extra_filemark")=4 + Set gtmtypes("m_cap",5,"name")="m_cap.can_bksp_by_filemark" + Set gtmtypes("m_cap",5,"off")=7 + Set gtmtypes("m_cap",5,"len")=1 + Set gtmtypes("m_cap",5,"type")="char" + Set gtmtypfldindx("m_cap","can_bksp_by_filemark")=5 + Set gtmtypes("m_cap",6,"name")="m_cap.block_size" + Set gtmtypes("m_cap",6,"off")=8 + Set gtmtypes("m_cap",6,"len")=4 + Set gtmtypes("m_cap",6,"type")="int" + Set gtmtypfldindx("m_cap","block_size")=6 + ; + Set gtmtypes("mcalloc_hdr")="struct" + Set gtmtypes("mcalloc_hdr",0)=3 + Set gtmtypes("mcalloc_hdr","len")=12 + Set gtmtypes("mcalloc_hdr",1,"name")="mcalloc_hdr.link" + Set gtmtypes("mcalloc_hdr",1,"off")=0 + Set gtmtypes("mcalloc_hdr",1,"len")=4 + Set gtmtypes("mcalloc_hdr",1,"type")="addr" + Set gtmtypfldindx("mcalloc_hdr","link")=1 + Set gtmtypes("mcalloc_hdr",2,"name")="mcalloc_hdr.size" + Set gtmtypes("mcalloc_hdr",2,"off")=4 + Set gtmtypes("mcalloc_hdr",2,"len")=4 + Set gtmtypes("mcalloc_hdr",2,"type")="int" + Set gtmtypfldindx("mcalloc_hdr","size")=2 + Set gtmtypes("mcalloc_hdr",3,"name")="mcalloc_hdr.data" + Set gtmtypes("mcalloc_hdr",3,"off")=8 + Set gtmtypes("mcalloc_hdr",3,"len")=1 + Set gtmtypes("mcalloc_hdr",3,"type")="char" + Set gtmtypfldindx("mcalloc_hdr","data")=3 + ; + Set gtmtypes("mem_list")="struct" + Set gtmtypes("mem_list",0)=5 + Set gtmtypes("mem_list","len")=20 + Set gtmtypes("mem_list",1,"name")="mem_list.addr" + Set gtmtypes("mem_list",1,"off")=0 + Set gtmtypes("mem_list",1,"len")=4 + Set gtmtypes("mem_list",1,"type")="addr" + Set gtmtypfldindx("mem_list","addr")=1 + Set gtmtypes("mem_list",2,"name")="mem_list.pages" + Set gtmtypes("mem_list",2,"off")=4 + Set gtmtypes("mem_list",2,"len")=4 + Set gtmtypes("mem_list",2,"type")="unsigned-int" + Set gtmtypfldindx("mem_list","pages")=2 + Set gtmtypes("mem_list",3,"name")="mem_list.next" + Set gtmtypes("mem_list",3,"off")=8 + Set gtmtypes("mem_list",3,"len")=4 + Set gtmtypes("mem_list",3,"type")="addr" + Set gtmtypfldindx("mem_list","next")=3 + Set gtmtypes("mem_list",4,"name")="mem_list.prev" + Set gtmtypes("mem_list",4,"off")=12 + Set gtmtypes("mem_list",4,"len")=4 + Set gtmtypes("mem_list",4,"type")="addr" + Set gtmtypfldindx("mem_list","prev")=4 + Set gtmtypes("mem_list",5,"name")="mem_list.gtm_free" + Set gtmtypes("mem_list",5,"off")=16 + Set gtmtypes("mem_list",5,"len")=1 + Set gtmtypes("mem_list",5,"type")="char" + Set gtmtypfldindx("mem_list","gtm_free")=5 + ; + Set gtmtypes("merge_glvn_struct")="struct" + Set gtmtypes("merge_glvn_struct",0)=2 + Set gtmtypes("merge_glvn_struct","len")=16 + Set gtmtypes("merge_glvn_struct",1,"name")="merge_glvn_struct.gblp" + Set gtmtypes("merge_glvn_struct",1,"off")=0 + Set gtmtypes("merge_glvn_struct",1,"len")=8 + Set gtmtypes("merge_glvn_struct",1,"type")="addr" + Set gtmtypfldindx("merge_glvn_struct","gblp")=1 + Set gtmtypes("merge_glvn_struct",1,"dim")=2 + Set gtmtypes("merge_glvn_struct",2,"name")="merge_glvn_struct.lclp" + Set gtmtypes("merge_glvn_struct",2,"off")=8 + Set gtmtypes("merge_glvn_struct",2,"len")=8 + Set gtmtypes("merge_glvn_struct",2,"type")="addr" + Set gtmtypfldindx("merge_glvn_struct","lclp")=2 + Set gtmtypes("merge_glvn_struct",2,"dim")=2 + ; + Set gtmtypes("mident_fixed")="struct" + Set gtmtypes("mident_fixed",0)=1 + Set gtmtypes("mident_fixed","len")=32 + Set gtmtypes("mident_fixed",1,"name")="mident_fixed.c" + Set gtmtypes("mident_fixed",1,"off")=0 + Set gtmtypes("mident_fixed",1,"len")=32 + Set gtmtypes("mident_fixed",1,"type")="char" + Set gtmtypfldindx("mident_fixed","c")=1 + ; + Set gtmtypes("mlabel")="struct" + Set gtmtypes("mlabel",0)=9 + Set gtmtypes("mlabel","len")=32 + Set gtmtypes("mlabel",1,"name")="mlabel.lson" + Set gtmtypes("mlabel",1,"off")=0 + Set gtmtypes("mlabel",1,"len")=4 + Set gtmtypes("mlabel",1,"type")="addr" + Set gtmtypfldindx("mlabel","lson")=1 + Set gtmtypes("mlabel",2,"name")="mlabel.rson" + Set gtmtypes("mlabel",2,"off")=4 + Set gtmtypes("mlabel",2,"len")=4 + Set gtmtypes("mlabel",2,"type")="addr" + Set gtmtypfldindx("mlabel","rson")=2 + Set gtmtypes("mlabel",3,"name")="mlabel.ml" + Set gtmtypes("mlabel",3,"off")=8 + Set gtmtypes("mlabel",3,"len")=4 + Set gtmtypes("mlabel",3,"type")="addr" + Set gtmtypfldindx("mlabel","ml")=3 + Set gtmtypes("mlabel",4,"name")="mlabel.mvname" + Set gtmtypes("mlabel",4,"off")=12 + Set gtmtypes("mlabel",4,"len")=12 + Set gtmtypes("mlabel",4,"type")="mstr" + Set gtmtypfldindx("mlabel","mvname")=4 + Set gtmtypes("mlabel",5,"name")="mlabel.mvname.char_len" + Set gtmtypes("mlabel",5,"off")=12 + Set gtmtypes("mlabel",5,"len")=4 + Set gtmtypes("mlabel",5,"type")="unsigned-int" + Set gtmtypfldindx("mlabel","mvname.char_len")=5 + Set gtmtypes("mlabel",6,"name")="mlabel.mvname.len" + Set gtmtypes("mlabel",6,"off")=16 + Set gtmtypes("mlabel",6,"len")=4 + Set gtmtypes("mlabel",6,"type")="int" + Set gtmtypfldindx("mlabel","mvname.len")=6 + Set gtmtypes("mlabel",7,"name")="mlabel.mvname.addr" + Set gtmtypes("mlabel",7,"off")=20 + Set gtmtypes("mlabel",7,"len")=4 + Set gtmtypes("mlabel",7,"type")="addr" + Set gtmtypfldindx("mlabel","mvname.addr")=7 + Set gtmtypes("mlabel",8,"name")="mlabel.formalcnt" + Set gtmtypes("mlabel",8,"off")=24 + Set gtmtypes("mlabel",8,"len")=4 + Set gtmtypes("mlabel",8,"type")="int" + Set gtmtypfldindx("mlabel","formalcnt")=8 + Set gtmtypes("mlabel",9,"name")="mlabel.gbl" + Set gtmtypes("mlabel",9,"off")=28 + Set gtmtypes("mlabel",9,"len")=4 + Set gtmtypes("mlabel",9,"type")="boolean_t" + Set gtmtypfldindx("mlabel","gbl")=9 + ; + Set gtmtypes("mline")="struct" + Set gtmtypes("mline",0)=6 + Set gtmtypes("mline","len")=24 + Set gtmtypes("mline",1,"name")="mline.parent" + Set gtmtypes("mline",1,"off")=0 + Set gtmtypes("mline",1,"len")=4 + Set gtmtypes("mline",1,"type")="addr" + Set gtmtypfldindx("mline","parent")=1 + Set gtmtypes("mline",2,"name")="mline.sibling" + Set gtmtypes("mline",2,"off")=4 + Set gtmtypes("mline",2,"len")=4 + Set gtmtypes("mline",2,"type")="addr" + Set gtmtypfldindx("mline","sibling")=2 + Set gtmtypes("mline",3,"name")="mline.child" + Set gtmtypes("mline",3,"off")=8 + Set gtmtypes("mline",3,"len")=4 + Set gtmtypes("mline",3,"type")="addr" + Set gtmtypfldindx("mline","child")=3 + Set gtmtypes("mline",4,"name")="mline.externalentry" + Set gtmtypes("mline",4,"off")=12 + Set gtmtypes("mline",4,"len")=4 + Set gtmtypes("mline",4,"type")="addr" + Set gtmtypfldindx("mline","externalentry")=4 + Set gtmtypes("mline",5,"name")="mline.line_number" + Set gtmtypes("mline",5,"off")=16 + Set gtmtypes("mline",5,"len")=4 + Set gtmtypes("mline",5,"type")="unsigned-int" + Set gtmtypfldindx("mline","line_number")=5 + Set gtmtypes("mline",6,"name")="mline.table" + Set gtmtypes("mline",6,"off")=20 + Set gtmtypes("mline",6,"len")=4 + Set gtmtypes("mline",6,"type")="boolean_t" + Set gtmtypfldindx("mline","table")=6 + ; + Set gtmtypes("mliteral")="struct" + Set gtmtypes("mliteral",0)=11 + Set gtmtypes("mliteral","len")=44 + Set gtmtypes("mliteral",1,"name")="mliteral.que" + Set gtmtypes("mliteral",1,"off")=0 + Set gtmtypes("mliteral",1,"len")=8 + Set gtmtypes("mliteral",1,"type")="struct" + Set gtmtypfldindx("mliteral","que")=1 + Set gtmtypes("mliteral",2,"name")="mliteral.que.fl" + Set gtmtypes("mliteral",2,"off")=0 + Set gtmtypes("mliteral",2,"len")=4 + Set gtmtypes("mliteral",2,"type")="addr" + Set gtmtypfldindx("mliteral","que.fl")=2 + Set gtmtypes("mliteral",3,"name")="mliteral.que.bl" + Set gtmtypes("mliteral",3,"off")=4 + Set gtmtypes("mliteral",3,"len")=4 + Set gtmtypes("mliteral",3,"type")="addr" + Set gtmtypfldindx("mliteral","que.bl")=3 + Set gtmtypes("mliteral",4,"name")="mliteral.rt_addr" + Set gtmtypes("mliteral",4,"off")=8 + Set gtmtypes("mliteral",4,"len")=4 + Set gtmtypes("mliteral",4,"type")="intptr_t" + Set gtmtypfldindx("mliteral","rt_addr")=4 + Set gtmtypes("mliteral",5,"name")="mliteral.v" + Set gtmtypes("mliteral",5,"off")=12 + Set gtmtypes("mliteral",5,"len")=32 + Set gtmtypes("mliteral",5,"type")="mval" + Set gtmtypfldindx("mliteral","v")=5 + Set gtmtypes("mliteral",6,"name")="mliteral.v.mvtype" + Set gtmtypes("mliteral",6,"off")=12 + Set gtmtypes("mliteral",6,"len")=2 + Set gtmtypes("mliteral",6,"type")="unsigned-short" + Set gtmtypfldindx("mliteral","v.mvtype")=6 + Set gtmtypes("mliteral",7,"name")="mliteral.v.fnpc_indx" + Set gtmtypes("mliteral",7,"off")=15 + Set gtmtypes("mliteral",7,"len")=1 + Set gtmtypes("mliteral",7,"type")="unsigned-char" + Set gtmtypfldindx("mliteral","v.fnpc_indx")=7 + Set gtmtypes("mliteral",8,"name")="mliteral.v.utfcgr_indx" + Set gtmtypes("mliteral",8,"off")=16 + Set gtmtypes("mliteral",8,"len")=4 + Set gtmtypes("mliteral",8,"type")="unsigned-int" + Set gtmtypfldindx("mliteral","v.utfcgr_indx")=8 + Set gtmtypes("mliteral",9,"name")="mliteral.v.filler2" + Set gtmtypes("mliteral",9,"off")=20 + Set gtmtypes("mliteral",9,"len")=4 + Set gtmtypes("mliteral",9,"type")="unsigned-int" + Set gtmtypfldindx("mliteral","v.filler2")=9 + Set gtmtypes("mliteral",10,"name")="mliteral.v.m" + Set gtmtypes("mliteral",10,"off")=24 + Set gtmtypes("mliteral",10,"len")=8 + Set gtmtypes("mliteral",10,"type")="int" + Set gtmtypfldindx("mliteral","v.m")=10 + Set gtmtypes("mliteral",10,"dim")=2 + Set gtmtypes("mliteral",11,"name")="mliteral.v.str" + Set gtmtypes("mliteral",11,"off")=32 + Set gtmtypes("mliteral",11,"len")=12 + Set gtmtypes("mliteral",11,"type")="mstr" + Set gtmtypfldindx("mliteral","v.str")=11 + ; + Set gtmtypes("mlk_ctldata")="struct" + Set gtmtypes("mlk_ctldata",0)=12 + Set gtmtypes("mlk_ctldata","len")=300 + Set gtmtypes("mlk_ctldata",1,"name")="mlk_ctldata.prcfree" + Set gtmtypes("mlk_ctldata",1,"off")=0 + Set gtmtypes("mlk_ctldata",1,"len")=4 + Set gtmtypes("mlk_ctldata",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","prcfree")=1 + Set gtmtypes("mlk_ctldata",2,"name")="mlk_ctldata.blkfree" + Set gtmtypes("mlk_ctldata",2,"off")=4 + Set gtmtypes("mlk_ctldata",2,"len")=4 + Set gtmtypes("mlk_ctldata",2,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","blkfree")=2 + Set gtmtypes("mlk_ctldata",3,"name")="mlk_ctldata.blkroot" + Set gtmtypes("mlk_ctldata",3,"off")=8 + Set gtmtypes("mlk_ctldata",3,"len")=4 + Set gtmtypes("mlk_ctldata",3,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","blkroot")=3 + Set gtmtypes("mlk_ctldata",4,"name")="mlk_ctldata.subbase" + Set gtmtypes("mlk_ctldata",4,"off")=12 + Set gtmtypes("mlk_ctldata",4,"len")=4 + Set gtmtypes("mlk_ctldata",4,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subbase")=4 + Set gtmtypes("mlk_ctldata",5,"name")="mlk_ctldata.subfree" + Set gtmtypes("mlk_ctldata",5,"off")=16 + Set gtmtypes("mlk_ctldata",5,"len")=4 + Set gtmtypes("mlk_ctldata",5,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subfree")=5 + Set gtmtypes("mlk_ctldata",6,"name")="mlk_ctldata.subtop" + Set gtmtypes("mlk_ctldata",6,"off")=20 + Set gtmtypes("mlk_ctldata",6,"len")=4 + Set gtmtypes("mlk_ctldata",6,"type")="intptr_t" + Set gtmtypfldindx("mlk_ctldata","subtop")=6 + Set gtmtypes("mlk_ctldata",7,"name")="mlk_ctldata.max_prccnt" + Set gtmtypes("mlk_ctldata",7,"off")=24 + Set gtmtypes("mlk_ctldata",7,"len")=4 + Set gtmtypes("mlk_ctldata",7,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","max_prccnt")=7 + Set gtmtypes("mlk_ctldata",8,"name")="mlk_ctldata.max_blkcnt" + Set gtmtypes("mlk_ctldata",8,"off")=28 + Set gtmtypes("mlk_ctldata",8,"len")=4 + Set gtmtypes("mlk_ctldata",8,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","max_blkcnt")=8 + Set gtmtypes("mlk_ctldata",9,"name")="mlk_ctldata.prccnt" + Set gtmtypes("mlk_ctldata",9,"off")=32 + Set gtmtypes("mlk_ctldata",9,"len")=4 + Set gtmtypes("mlk_ctldata",9,"type")="int" + Set gtmtypfldindx("mlk_ctldata","prccnt")=9 + Set gtmtypes("mlk_ctldata",10,"name")="mlk_ctldata.blkcnt" + Set gtmtypes("mlk_ctldata",10,"off")=36 + Set gtmtypes("mlk_ctldata",10,"len")=4 + Set gtmtypes("mlk_ctldata",10,"type")="int" + Set gtmtypfldindx("mlk_ctldata","blkcnt")=10 + Set gtmtypes("mlk_ctldata",11,"name")="mlk_ctldata.clus_pids" + Set gtmtypes("mlk_ctldata",11,"off")=40 + Set gtmtypes("mlk_ctldata",11,"len")=256 + Set gtmtypes("mlk_ctldata",11,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","clus_pids")=11 + Set gtmtypes("mlk_ctldata",11,"dim")=64 + Set gtmtypes("mlk_ctldata",12,"name")="mlk_ctldata.wakeups" + Set gtmtypes("mlk_ctldata",12,"off")=296 + Set gtmtypes("mlk_ctldata",12,"len")=4 + Set gtmtypes("mlk_ctldata",12,"type")="unsigned-int" + Set gtmtypfldindx("mlk_ctldata","wakeups")=12 + ; + Set gtmtypes("mlk_prcblk")="struct" + Set gtmtypes("mlk_prcblk",0)=4 + Set gtmtypes("mlk_prcblk","len")=12 + Set gtmtypes("mlk_prcblk",1,"name")="mlk_prcblk.next" + Set gtmtypes("mlk_prcblk",1,"off")=0 + Set gtmtypes("mlk_prcblk",1,"len")=4 + Set gtmtypes("mlk_prcblk",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_prcblk","next")=1 + Set gtmtypes("mlk_prcblk",2,"name")="mlk_prcblk.process_id" + Set gtmtypes("mlk_prcblk",2,"off")=4 + Set gtmtypes("mlk_prcblk",2,"len")=4 + Set gtmtypes("mlk_prcblk",2,"type")="unsigned-int" + Set gtmtypfldindx("mlk_prcblk","process_id")=2 + Set gtmtypes("mlk_prcblk",3,"name")="mlk_prcblk.ref_cnt" + Set gtmtypes("mlk_prcblk",3,"off")=8 + Set gtmtypes("mlk_prcblk",3,"len")=2 + Set gtmtypes("mlk_prcblk",3,"type")="short" + Set gtmtypfldindx("mlk_prcblk","ref_cnt")=3 + Set gtmtypes("mlk_prcblk",4,"name")="mlk_prcblk.filler_4byte" + Set gtmtypes("mlk_prcblk",4,"off")=10 + Set gtmtypes("mlk_prcblk",4,"len")=2 + Set gtmtypes("mlk_prcblk",4,"type")="short" + Set gtmtypfldindx("mlk_prcblk","filler_4byte")=4 + ; + Set gtmtypes("mlk_pvtblk")="struct" + Set gtmtypes("mlk_pvtblk",0)=16 + Set gtmtypes("mlk_pvtblk","len")=52 + Set gtmtypes("mlk_pvtblk",1,"name")="mlk_pvtblk.ctlptr" + Set gtmtypes("mlk_pvtblk",1,"off")=0 + Set gtmtypes("mlk_pvtblk",1,"len")=4 + Set gtmtypes("mlk_pvtblk",1,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","ctlptr")=1 + Set gtmtypes("mlk_pvtblk",2,"name")="mlk_pvtblk.nodptr" + Set gtmtypes("mlk_pvtblk",2,"off")=4 + Set gtmtypes("mlk_pvtblk",2,"len")=4 + Set gtmtypes("mlk_pvtblk",2,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","nodptr")=2 + Set gtmtypes("mlk_pvtblk",3,"name")="mlk_pvtblk.blocked" + Set gtmtypes("mlk_pvtblk",3,"off")=8 + Set gtmtypes("mlk_pvtblk",3,"len")=4 + Set gtmtypes("mlk_pvtblk",3,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","blocked")=3 + Set gtmtypes("mlk_pvtblk",4,"name")="mlk_pvtblk.next" + Set gtmtypes("mlk_pvtblk",4,"off")=12 + Set gtmtypes("mlk_pvtblk",4,"len")=4 + Set gtmtypes("mlk_pvtblk",4,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","next")=4 + Set gtmtypes("mlk_pvtblk",5,"name")="mlk_pvtblk.region" + Set gtmtypes("mlk_pvtblk",5,"off")=16 + Set gtmtypes("mlk_pvtblk",5,"len")=4 + Set gtmtypes("mlk_pvtblk",5,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","region")=5 + Set gtmtypes("mlk_pvtblk",6,"name")="mlk_pvtblk.sequence" + Set gtmtypes("mlk_pvtblk",6,"off")=20 + Set gtmtypes("mlk_pvtblk",6,"len")=4 + Set gtmtypes("mlk_pvtblk",6,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","sequence")=6 + Set gtmtypes("mlk_pvtblk",7,"name")="mlk_pvtblk.blk_sequence" + Set gtmtypes("mlk_pvtblk",7,"off")=24 + Set gtmtypes("mlk_pvtblk",7,"len")=4 + Set gtmtypes("mlk_pvtblk",7,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","blk_sequence")=7 + Set gtmtypes("mlk_pvtblk",8,"name")="mlk_pvtblk.tp" + Set gtmtypes("mlk_pvtblk",8,"off")=28 + Set gtmtypes("mlk_pvtblk",8,"len")=4 + Set gtmtypes("mlk_pvtblk",8,"type")="addr" + Set gtmtypfldindx("mlk_pvtblk","tp")=8 + Set gtmtypes("mlk_pvtblk",9,"name")="mlk_pvtblk.total_length" + Set gtmtypes("mlk_pvtblk",9,"off")=32 + Set gtmtypes("mlk_pvtblk",9,"len")=4 + Set gtmtypes("mlk_pvtblk",9,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","total_length")=9 + Set gtmtypes("mlk_pvtblk",10,"name")="mlk_pvtblk.total_len_padded" + Set gtmtypes("mlk_pvtblk",10,"off")=36 + Set gtmtypes("mlk_pvtblk",10,"len")=4 + Set gtmtypes("mlk_pvtblk",10,"type")="unsigned-int" + Set gtmtypfldindx("mlk_pvtblk","total_len_padded")=10 + Set gtmtypes("mlk_pvtblk",11,"name")="mlk_pvtblk.subscript_cnt" + Set gtmtypes("mlk_pvtblk",11,"off")=40 + Set gtmtypes("mlk_pvtblk",11,"len")=2 + Set gtmtypes("mlk_pvtblk",11,"type")="unsigned-short" + Set gtmtypfldindx("mlk_pvtblk","subscript_cnt")=11 + Set gtmtypes("mlk_pvtblk",12,"name")="mlk_pvtblk.trans" + Set gtmtypes("mlk_pvtblk",12,"off")=44 + Set gtmtypes("mlk_pvtblk",12,"len")=1 + Set gtmtypes("mlk_pvtblk",12,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","trans")=12 + Set gtmtypes("mlk_pvtblk",13,"name")="mlk_pvtblk.translev" + Set gtmtypes("mlk_pvtblk",13,"off")=45 + Set gtmtypes("mlk_pvtblk",13,"len")=1 + Set gtmtypes("mlk_pvtblk",13,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","translev")=13 + Set gtmtypes("mlk_pvtblk",14,"name")="mlk_pvtblk.old" + Set gtmtypes("mlk_pvtblk",14,"off")=46 + Set gtmtypes("mlk_pvtblk",14,"len")=1 + Set gtmtypes("mlk_pvtblk",14,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","old")=14 + Set gtmtypes("mlk_pvtblk",15,"name")="mlk_pvtblk.filler" + Set gtmtypes("mlk_pvtblk",15,"off")=47 + Set gtmtypes("mlk_pvtblk",15,"len")=1 + Set gtmtypes("mlk_pvtblk",15,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","filler")=15 + Set gtmtypes("mlk_pvtblk",16,"name")="mlk_pvtblk.value" + Set gtmtypes("mlk_pvtblk",16,"off")=48 + Set gtmtypes("mlk_pvtblk",16,"len")=1 + Set gtmtypes("mlk_pvtblk",16,"type")="unsigned-char" + Set gtmtypfldindx("mlk_pvtblk","value")=16 + ; + Set gtmtypes("mlk_shrblk")="struct" + Set gtmtypes("mlk_shrblk",0)=11 + Set gtmtypes("mlk_shrblk","len")=56 + Set gtmtypes("mlk_shrblk",1,"name")="mlk_shrblk.value" + Set gtmtypes("mlk_shrblk",1,"off")=0 + Set gtmtypes("mlk_shrblk",1,"len")=4 + Set gtmtypes("mlk_shrblk",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","value")=1 + Set gtmtypes("mlk_shrblk",2,"name")="mlk_shrblk.parent" + Set gtmtypes("mlk_shrblk",2,"off")=4 + Set gtmtypes("mlk_shrblk",2,"len")=4 + Set gtmtypes("mlk_shrblk",2,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","parent")=2 + Set gtmtypes("mlk_shrblk",3,"name")="mlk_shrblk.children" + Set gtmtypes("mlk_shrblk",3,"off")=8 + Set gtmtypes("mlk_shrblk",3,"len")=4 + Set gtmtypes("mlk_shrblk",3,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","children")=3 + Set gtmtypes("mlk_shrblk",4,"name")="mlk_shrblk.lsib" + Set gtmtypes("mlk_shrblk",4,"off")=12 + Set gtmtypes("mlk_shrblk",4,"len")=4 + Set gtmtypes("mlk_shrblk",4,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","lsib")=4 + Set gtmtypes("mlk_shrblk",5,"name")="mlk_shrblk.rsib" + Set gtmtypes("mlk_shrblk",5,"off")=16 + Set gtmtypes("mlk_shrblk",5,"len")=4 + Set gtmtypes("mlk_shrblk",5,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","rsib")=5 + Set gtmtypes("mlk_shrblk",6,"name")="mlk_shrblk.pending" + Set gtmtypes("mlk_shrblk",6,"off")=20 + Set gtmtypes("mlk_shrblk",6,"len")=4 + Set gtmtypes("mlk_shrblk",6,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrblk","pending")=6 + Set gtmtypes("mlk_shrblk",7,"name")="mlk_shrblk.owner" + Set gtmtypes("mlk_shrblk",7,"off")=24 + Set gtmtypes("mlk_shrblk",7,"len")=4 + Set gtmtypes("mlk_shrblk",7,"type")="int" + Set gtmtypfldindx("mlk_shrblk","owner")=7 + Set gtmtypes("mlk_shrblk",8,"name")="mlk_shrblk.sequence" + Set gtmtypes("mlk_shrblk",8,"off")=28 + Set gtmtypes("mlk_shrblk",8,"len")=4 + Set gtmtypes("mlk_shrblk",8,"type")="unsigned-int" + Set gtmtypfldindx("mlk_shrblk","sequence")=8 + Set gtmtypes("mlk_shrblk",9,"name")="mlk_shrblk.auxowner" + Set gtmtypes("mlk_shrblk",9,"off")=32 + Set gtmtypes("mlk_shrblk",9,"len")=4 + Set gtmtypes("mlk_shrblk",9,"type")="uintptr_t" + Set gtmtypfldindx("mlk_shrblk","auxowner")=9 + Set gtmtypes("mlk_shrblk",10,"name")="mlk_shrblk.auxpid" + Set gtmtypes("mlk_shrblk",10,"off")=36 + Set gtmtypes("mlk_shrblk",10,"len")=4 + Set gtmtypes("mlk_shrblk",10,"type")="int" + Set gtmtypfldindx("mlk_shrblk","auxpid")=10 + Set gtmtypes("mlk_shrblk",11,"name")="mlk_shrblk.auxnode" + Set gtmtypes("mlk_shrblk",11,"off")=40 + Set gtmtypes("mlk_shrblk",11,"len")=16 + Set gtmtypes("mlk_shrblk",11,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrblk","auxnode")=11 + ; + Set gtmtypes("mlk_shrsub")="struct" + Set gtmtypes("mlk_shrsub",0)=3 + Set gtmtypes("mlk_shrsub","len")=8 + Set gtmtypes("mlk_shrsub",1,"name")="mlk_shrsub.backpointer" + Set gtmtypes("mlk_shrsub",1,"off")=0 + Set gtmtypes("mlk_shrsub",1,"len")=4 + Set gtmtypes("mlk_shrsub",1,"type")="intptr_t" + Set gtmtypfldindx("mlk_shrsub","backpointer")=1 + Set gtmtypes("mlk_shrsub",2,"name")="mlk_shrsub.length" + Set gtmtypes("mlk_shrsub",2,"off")=4 + Set gtmtypes("mlk_shrsub",2,"len")=1 + Set gtmtypes("mlk_shrsub",2,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrsub","length")=2 + Set gtmtypes("mlk_shrsub",3,"name")="mlk_shrsub.data" + Set gtmtypes("mlk_shrsub",3,"off")=5 + Set gtmtypes("mlk_shrsub",3,"len")=1 + Set gtmtypes("mlk_shrsub",3,"type")="unsigned-char" + Set gtmtypfldindx("mlk_shrsub","data")=3 + ; + Set gtmtypes("mlk_stats_t")="struct" + Set gtmtypes("mlk_stats_t",0)=2 + Set gtmtypes("mlk_stats_t","len")=16 + Set gtmtypes("mlk_stats_t",1,"name")="mlk_stats_t.n_user_locks_success" + Set gtmtypes("mlk_stats_t",1,"off")=0 + Set gtmtypes("mlk_stats_t",1,"len")=8 + Set gtmtypes("mlk_stats_t",1,"type")="uint64_t" + Set gtmtypfldindx("mlk_stats_t","n_user_locks_success")=1 + Set gtmtypes("mlk_stats_t",2,"name")="mlk_stats_t.n_user_locks_fail" + Set gtmtypes("mlk_stats_t",2,"off")=8 + Set gtmtypes("mlk_stats_t",2,"len")=8 + Set gtmtypes("mlk_stats_t",2,"type")="uint64_t" + Set gtmtypfldindx("mlk_stats_t","n_user_locks_fail")=2 + ; + Set gtmtypes("mlk_tp")="struct" + Set gtmtypes("mlk_tp",0)=1 + Set gtmtypes("mlk_tp","len")=8 + Set gtmtypes("mlk_tp",1,"name")="mlk_tp.next" + Set gtmtypes("mlk_tp",1,"off")=0 + Set gtmtypes("mlk_tp",1,"len")=4 + Set gtmtypes("mlk_tp",1,"type")="addr" + Set gtmtypfldindx("mlk_tp","next")=1 + ; + Set gtmtypes("mmseg")="struct" + Set gtmtypes("mmseg",0)=3 + Set gtmtypes("mmseg","len")=12 + Set gtmtypes("mmseg",1,"name")="mmseg.next" + Set gtmtypes("mmseg",1,"off")=0 + Set gtmtypes("mmseg",1,"len")=4 + Set gtmtypes("mmseg",1,"type")="addr" + Set gtmtypfldindx("mmseg","next")=1 + Set gtmtypes("mmseg",2,"name")="mmseg.begin" + Set gtmtypes("mmseg",2,"off")=4 + Set gtmtypes("mmseg",2,"len")=4 + Set gtmtypes("mmseg",2,"type")="addr" + Set gtmtypfldindx("mmseg","begin")=2 + Set gtmtypes("mmseg",3,"name")="mmseg.end" + Set gtmtypes("mmseg",3,"off")=8 + Set gtmtypes("mmseg",3,"len")=4 + Set gtmtypes("mmseg",3,"type")="addr" + Set gtmtypfldindx("mmseg","end")=3 + ; + Set gtmtypes("mname_entry")="struct" + Set gtmtypes("mname_entry",0)=6 + Set gtmtypes("mname_entry","len")=20 + Set gtmtypes("mname_entry",1,"name")="mname_entry.var_name" + Set gtmtypes("mname_entry",1,"off")=0 + Set gtmtypes("mname_entry",1,"len")=12 + Set gtmtypes("mname_entry",1,"type")="mstr" + Set gtmtypfldindx("mname_entry","var_name")=1 + Set gtmtypes("mname_entry",2,"name")="mname_entry.var_name.char_len" + Set gtmtypes("mname_entry",2,"off")=0 + Set gtmtypes("mname_entry",2,"len")=4 + Set gtmtypes("mname_entry",2,"type")="unsigned-int" + Set gtmtypfldindx("mname_entry","var_name.char_len")=2 + Set gtmtypes("mname_entry",3,"name")="mname_entry.var_name.len" + Set gtmtypes("mname_entry",3,"off")=4 + Set gtmtypes("mname_entry",3,"len")=4 + Set gtmtypes("mname_entry",3,"type")="int" + Set gtmtypfldindx("mname_entry","var_name.len")=3 + Set gtmtypes("mname_entry",4,"name")="mname_entry.var_name.addr" + Set gtmtypes("mname_entry",4,"off")=8 + Set gtmtypes("mname_entry",4,"len")=4 + Set gtmtypes("mname_entry",4,"type")="addr" + Set gtmtypfldindx("mname_entry","var_name.addr")=4 + Set gtmtypes("mname_entry",5,"name")="mname_entry.hash_code" + Set gtmtypes("mname_entry",5,"off")=12 + Set gtmtypes("mname_entry",5,"len")=4 + Set gtmtypes("mname_entry",5,"type")="unsigned-int" + Set gtmtypfldindx("mname_entry","hash_code")=5 + Set gtmtypes("mname_entry",6,"name")="mname_entry.marked" + Set gtmtypes("mname_entry",6,"off")=16 + Set gtmtypes("mname_entry",6,"len")=4 + Set gtmtypes("mname_entry",6,"type")="boolean_t" + Set gtmtypfldindx("mname_entry","marked")=6 + ; + Set gtmtypes("mprof_stack_frame")="struct" + Set gtmtypes("mprof_stack_frame",0)=7 + Set gtmtypes("mprof_stack_frame","len")=68 + Set gtmtypes("mprof_stack_frame",1,"name")="mprof_stack_frame.prev" + Set gtmtypes("mprof_stack_frame",1,"off")=0 + Set gtmtypes("mprof_stack_frame",1,"len")=4 + Set gtmtypes("mprof_stack_frame",1,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","prev")=1 + Set gtmtypes("mprof_stack_frame",2,"name")="mprof_stack_frame.rout_name" + Set gtmtypes("mprof_stack_frame",2,"off")=4 + Set gtmtypes("mprof_stack_frame",2,"len")=4 + Set gtmtypes("mprof_stack_frame",2,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","rout_name")=2 + Set gtmtypes("mprof_stack_frame",3,"name")="mprof_stack_frame.label_name" + Set gtmtypes("mprof_stack_frame",3,"off")=8 + Set gtmtypes("mprof_stack_frame",3,"len")=4 + Set gtmtypes("mprof_stack_frame",3,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","label_name")=3 + Set gtmtypes("mprof_stack_frame",4,"name")="mprof_stack_frame.curr_node" + Set gtmtypes("mprof_stack_frame",4,"off")=12 + Set gtmtypes("mprof_stack_frame",4,"len")=4 + Set gtmtypes("mprof_stack_frame",4,"type")="addr" + Set gtmtypfldindx("mprof_stack_frame","curr_node")=4 + Set gtmtypes("mprof_stack_frame",5,"name")="mprof_stack_frame.start" + Set gtmtypes("mprof_stack_frame",5,"off")=16 + Set gtmtypes("mprof_stack_frame",5,"len")=24 + Set gtmtypes("mprof_stack_frame",5,"type")="struct" + Set gtmtypfldindx("mprof_stack_frame","start")=5 + Set gtmtypes("mprof_stack_frame",6,"name")="mprof_stack_frame.carryover" + Set gtmtypes("mprof_stack_frame",6,"off")=40 + Set gtmtypes("mprof_stack_frame",6,"len")=24 + Set gtmtypes("mprof_stack_frame",6,"type")="struct" + Set gtmtypfldindx("mprof_stack_frame","carryover")=6 + Set gtmtypes("mprof_stack_frame",7,"name")="mprof_stack_frame.dummy_stack_count" + Set gtmtypes("mprof_stack_frame",7,"off")=64 + Set gtmtypes("mprof_stack_frame",7,"len")=4 + Set gtmtypes("mprof_stack_frame",7,"type")="int" + Set gtmtypfldindx("mprof_stack_frame","dummy_stack_count")=7 + ; + Set gtmtypes("mprof_tree")="struct" + Set gtmtypes("mprof_tree",0)=14 + Set gtmtypes("mprof_tree","len")=68 + Set gtmtypes("mprof_tree",1,"name")="mprof_tree.e" + Set gtmtypes("mprof_tree",1,"off")=0 + Set gtmtypes("mprof_tree",1,"len")=48 + Set gtmtypes("mprof_tree",1,"type")="trace_entry" + Set gtmtypfldindx("mprof_tree","e")=1 + Set gtmtypes("mprof_tree",2,"name")="mprof_tree.e.rout_name" + Set gtmtypes("mprof_tree",2,"off")=0 + Set gtmtypes("mprof_tree",2,"len")=4 + Set gtmtypes("mprof_tree",2,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.rout_name")=2 + Set gtmtypes("mprof_tree",3,"name")="mprof_tree.e.label_name" + Set gtmtypes("mprof_tree",3,"off")=4 + Set gtmtypes("mprof_tree",3,"len")=4 + Set gtmtypes("mprof_tree",3,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.label_name")=3 + Set gtmtypes("mprof_tree",4,"name")="mprof_tree.e.line_num" + Set gtmtypes("mprof_tree",4,"off")=8 + Set gtmtypes("mprof_tree",4,"len")=4 + Set gtmtypes("mprof_tree",4,"type")="int" + Set gtmtypfldindx("mprof_tree","e.line_num")=4 + Set gtmtypes("mprof_tree",5,"name")="mprof_tree.e.count" + Set gtmtypes("mprof_tree",5,"off")=12 + Set gtmtypes("mprof_tree",5,"len")=4 + Set gtmtypes("mprof_tree",5,"type")="unsigned" + Set gtmtypfldindx("mprof_tree","e.count")=5 + Set gtmtypes("mprof_tree",6,"name")="mprof_tree.e.sys_time" + Set gtmtypes("mprof_tree",6,"off")=16 + Set gtmtypes("mprof_tree",6,"len")=8 + Set gtmtypes("mprof_tree",6,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.sys_time")=6 + Set gtmtypes("mprof_tree",7,"name")="mprof_tree.e.usr_time" + Set gtmtypes("mprof_tree",7,"off")=24 + Set gtmtypes("mprof_tree",7,"len")=8 + Set gtmtypes("mprof_tree",7,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.usr_time")=7 + Set gtmtypes("mprof_tree",8,"name")="mprof_tree.e.elp_time" + Set gtmtypes("mprof_tree",8,"off")=32 + Set gtmtypes("mprof_tree",8,"len")=8 + Set gtmtypes("mprof_tree",8,"type")="uint64_t" + Set gtmtypfldindx("mprof_tree","e.elp_time")=8 + Set gtmtypes("mprof_tree",9,"name")="mprof_tree.e.loop_level" + Set gtmtypes("mprof_tree",9,"off")=40 + Set gtmtypes("mprof_tree",9,"len")=4 + Set gtmtypes("mprof_tree",9,"type")="int" + Set gtmtypfldindx("mprof_tree","e.loop_level")=9 + Set gtmtypes("mprof_tree",10,"name")="mprof_tree.e.raddr" + Set gtmtypes("mprof_tree",10,"off")=44 + Set gtmtypes("mprof_tree",10,"len")=4 + Set gtmtypes("mprof_tree",10,"type")="addr" + Set gtmtypfldindx("mprof_tree","e.raddr")=10 + Set gtmtypes("mprof_tree",11,"name")="mprof_tree.link" + Set gtmtypes("mprof_tree",11,"off")=48 + Set gtmtypes("mprof_tree",11,"len")=8 + Set gtmtypes("mprof_tree",11,"type")="addr" + Set gtmtypfldindx("mprof_tree","link")=11 + Set gtmtypes("mprof_tree",11,"dim")=2 + Set gtmtypes("mprof_tree",12,"name")="mprof_tree.loop_link" + Set gtmtypes("mprof_tree",12,"off")=56 + Set gtmtypes("mprof_tree",12,"len")=4 + Set gtmtypes("mprof_tree",12,"type")="addr" + Set gtmtypfldindx("mprof_tree","loop_link")=12 + Set gtmtypes("mprof_tree",13,"name")="mprof_tree.desc_dir" + Set gtmtypes("mprof_tree",13,"off")=60 + Set gtmtypes("mprof_tree",13,"len")=4 + Set gtmtypes("mprof_tree",13,"type")="int" + Set gtmtypfldindx("mprof_tree","desc_dir")=13 + Set gtmtypes("mprof_tree",14,"name")="mprof_tree.ins_path_hint" + Set gtmtypes("mprof_tree",14,"off")=64 + Set gtmtypes("mprof_tree",14,"len")=4 + Set gtmtypes("mprof_tree",14,"type")="int" + Set gtmtypfldindx("mprof_tree","ins_path_hint")=14 + ; + Set gtmtypes("mprof_wrapper")="struct" + Set gtmtypes("mprof_wrapper",0)=26 + Set gtmtypes("mprof_wrapper","len")=1268 + Set gtmtypes("mprof_wrapper",1,"name")="mprof_wrapper.tprev" + Set gtmtypes("mprof_wrapper",1,"off")=0 + Set gtmtypes("mprof_wrapper",1,"len")=24 + Set gtmtypes("mprof_wrapper",1,"type")="struct" + Set gtmtypfldindx("mprof_wrapper","tprev")=1 + Set gtmtypes("mprof_wrapper",2,"name")="mprof_wrapper.tcurr" + Set gtmtypes("mprof_wrapper",2,"off")=24 + Set gtmtypes("mprof_wrapper",2,"len")=24 + Set gtmtypes("mprof_wrapper",2,"type")="struct" + Set gtmtypfldindx("mprof_wrapper","tcurr")=2 + Set gtmtypes("mprof_wrapper",3,"name")="mprof_wrapper.head_tblnd" + Set gtmtypes("mprof_wrapper",3,"off")=48 + Set gtmtypes("mprof_wrapper",3,"len")=4 + Set gtmtypes("mprof_wrapper",3,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","head_tblnd")=3 + Set gtmtypes("mprof_wrapper",4,"name")="mprof_wrapper.curr_tblnd" + Set gtmtypes("mprof_wrapper",4,"off")=52 + Set gtmtypes("mprof_wrapper",4,"len")=4 + Set gtmtypes("mprof_wrapper",4,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","curr_tblnd")=4 + Set gtmtypes("mprof_wrapper",5,"name")="mprof_wrapper.curr_num_subscripts" + Set gtmtypes("mprof_wrapper",5,"off")=56 + Set gtmtypes("mprof_wrapper",5,"len")=4 + Set gtmtypes("mprof_wrapper",5,"type")="int" + Set gtmtypfldindx("mprof_wrapper","curr_num_subscripts")=5 + Set gtmtypes("mprof_wrapper",6,"name")="mprof_wrapper.pcavailptr" + Set gtmtypes("mprof_wrapper",6,"off")=60 + Set gtmtypes("mprof_wrapper",6,"len")=4 + Set gtmtypes("mprof_wrapper",6,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","pcavailptr")=6 + Set gtmtypes("mprof_wrapper",7,"name")="mprof_wrapper.pcavailbase" + Set gtmtypes("mprof_wrapper",7,"off")=64 + Set gtmtypes("mprof_wrapper",7,"len")=4 + Set gtmtypes("mprof_wrapper",7,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","pcavailbase")=7 + Set gtmtypes("mprof_wrapper",8,"name")="mprof_wrapper.pcavail" + Set gtmtypes("mprof_wrapper",8,"off")=68 + Set gtmtypes("mprof_wrapper",8,"len")=4 + Set gtmtypes("mprof_wrapper",8,"type")="int" + Set gtmtypfldindx("mprof_wrapper","pcavail")=8 + Set gtmtypes("mprof_wrapper",9,"name")="mprof_wrapper.is_tracing_ini" + Set gtmtypes("mprof_wrapper",9,"off")=72 + Set gtmtypes("mprof_wrapper",9,"len")=4 + Set gtmtypes("mprof_wrapper",9,"type")="boolean_t" + Set gtmtypfldindx("mprof_wrapper","is_tracing_ini")=9 + Set gtmtypes("mprof_wrapper",10,"name")="mprof_wrapper.subsc" + Set gtmtypes("mprof_wrapper",10,"off")=76 + Set gtmtypes("mprof_wrapper",10,"len")=1024 + Set gtmtypes("mprof_wrapper",10,"type")="mval" + Set gtmtypfldindx("mprof_wrapper","subsc")=10 + Set gtmtypes("mprof_wrapper",10,"dim")=32 + Set gtmtypes("mprof_wrapper",11,"name")="mprof_wrapper.subsc[0].mvtype" + Set gtmtypes("mprof_wrapper",11,"off")=76 + Set gtmtypes("mprof_wrapper",11,"len")=2 + Set gtmtypes("mprof_wrapper",11,"type")="unsigned-short" + Set gtmtypfldindx("mprof_wrapper","subsc[0].mvtype")=11 + Set gtmtypes("mprof_wrapper",12,"name")="mprof_wrapper.subsc[0].fnpc_indx" + Set gtmtypes("mprof_wrapper",12,"off")=79 + Set gtmtypes("mprof_wrapper",12,"len")=1 + Set gtmtypes("mprof_wrapper",12,"type")="unsigned-char" + Set gtmtypfldindx("mprof_wrapper","subsc[0].fnpc_indx")=12 + Set gtmtypes("mprof_wrapper",13,"name")="mprof_wrapper.subsc[0].utfcgr_indx" + Set gtmtypes("mprof_wrapper",13,"off")=80 + Set gtmtypes("mprof_wrapper",13,"len")=4 + Set gtmtypes("mprof_wrapper",13,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].utfcgr_indx")=13 + Set gtmtypes("mprof_wrapper",14,"name")="mprof_wrapper.subsc[0].filler2" + Set gtmtypes("mprof_wrapper",14,"off")=84 + Set gtmtypes("mprof_wrapper",14,"len")=4 + Set gtmtypes("mprof_wrapper",14,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].filler2")=14 + Set gtmtypes("mprof_wrapper",15,"name")="mprof_wrapper.subsc[0].m" + Set gtmtypes("mprof_wrapper",15,"off")=88 + Set gtmtypes("mprof_wrapper",15,"len")=8 + Set gtmtypes("mprof_wrapper",15,"type")="int" + Set gtmtypfldindx("mprof_wrapper","subsc[0].m")=15 + Set gtmtypes("mprof_wrapper",15,"dim")=2 + Set gtmtypes("mprof_wrapper",16,"name")="mprof_wrapper.subsc[0].str" + Set gtmtypes("mprof_wrapper",16,"off")=96 + Set gtmtypes("mprof_wrapper",16,"len")=12 + Set gtmtypes("mprof_wrapper",16,"type")="mstr" + Set gtmtypfldindx("mprof_wrapper","subsc[0].str")=16 + Set gtmtypes("mprof_wrapper",17,"name")="mprof_wrapper.gvargs" + Set gtmtypes("mprof_wrapper",17,"off")=1100 + Set gtmtypes("mprof_wrapper",17,"len")=136 + Set gtmtypes("mprof_wrapper",17,"type")="gvargs_t" + Set gtmtypfldindx("mprof_wrapper","gvargs")=17 + Set gtmtypes("mprof_wrapper",18,"name")="mprof_wrapper.gvargs.count" + Set gtmtypes("mprof_wrapper",18,"off")=1100 + Set gtmtypes("mprof_wrapper",18,"len")=4 + Set gtmtypes("mprof_wrapper",18,"type")="ssize_t" + Set gtmtypfldindx("mprof_wrapper","gvargs.count")=18 + Set gtmtypes("mprof_wrapper",19,"name")="mprof_wrapper.gvargs.args" + Set gtmtypes("mprof_wrapper",19,"off")=1104 + Set gtmtypes("mprof_wrapper",19,"len")=132 + Set gtmtypes("mprof_wrapper",19,"type")="addr" + Set gtmtypfldindx("mprof_wrapper","gvargs.args")=19 + Set gtmtypes("mprof_wrapper",19,"dim")=33 + Set gtmtypes("mprof_wrapper",20,"name")="mprof_wrapper.gbl_to_fill" + Set gtmtypes("mprof_wrapper",20,"off")=1236 + Set gtmtypes("mprof_wrapper",20,"len")=32 + Set gtmtypes("mprof_wrapper",20,"type")="mval" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill")=20 + Set gtmtypes("mprof_wrapper",21,"name")="mprof_wrapper.gbl_to_fill.mvtype" + Set gtmtypes("mprof_wrapper",21,"off")=1236 + Set gtmtypes("mprof_wrapper",21,"len")=2 + Set gtmtypes("mprof_wrapper",21,"type")="unsigned-short" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.mvtype")=21 + Set gtmtypes("mprof_wrapper",22,"name")="mprof_wrapper.gbl_to_fill.fnpc_indx" + Set gtmtypes("mprof_wrapper",22,"off")=1239 + Set gtmtypes("mprof_wrapper",22,"len")=1 + Set gtmtypes("mprof_wrapper",22,"type")="unsigned-char" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.fnpc_indx")=22 + Set gtmtypes("mprof_wrapper",23,"name")="mprof_wrapper.gbl_to_fill.utfcgr_indx" + Set gtmtypes("mprof_wrapper",23,"off")=1240 + Set gtmtypes("mprof_wrapper",23,"len")=4 + Set gtmtypes("mprof_wrapper",23,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.utfcgr_indx")=23 + Set gtmtypes("mprof_wrapper",24,"name")="mprof_wrapper.gbl_to_fill.filler2" + Set gtmtypes("mprof_wrapper",24,"off")=1244 + Set gtmtypes("mprof_wrapper",24,"len")=4 + Set gtmtypes("mprof_wrapper",24,"type")="unsigned-int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.filler2")=24 + Set gtmtypes("mprof_wrapper",25,"name")="mprof_wrapper.gbl_to_fill.m" + Set gtmtypes("mprof_wrapper",25,"off")=1248 + Set gtmtypes("mprof_wrapper",25,"len")=8 + Set gtmtypes("mprof_wrapper",25,"type")="int" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.m")=25 + Set gtmtypes("mprof_wrapper",25,"dim")=2 + Set gtmtypes("mprof_wrapper",26,"name")="mprof_wrapper.gbl_to_fill.str" + Set gtmtypes("mprof_wrapper",26,"off")=1256 + Set gtmtypes("mprof_wrapper",26,"len")=12 + Set gtmtypes("mprof_wrapper",26,"type")="mstr" + Set gtmtypfldindx("mprof_wrapper","gbl_to_fill.str")=26 + ; + Set gtmtypes("mstr")="struct" + Set gtmtypes("mstr",0)=3 + Set gtmtypes("mstr","len")=12 + Set gtmtypes("mstr",1,"name")="mstr.char_len" + Set gtmtypes("mstr",1,"off")=0 + Set gtmtypes("mstr",1,"len")=4 + Set gtmtypes("mstr",1,"type")="unsigned-int" + Set gtmtypfldindx("mstr","char_len")=1 + Set gtmtypes("mstr",2,"name")="mstr.len" + Set gtmtypes("mstr",2,"off")=4 + Set gtmtypes("mstr",2,"len")=4 + Set gtmtypes("mstr",2,"type")="int" + Set gtmtypfldindx("mstr","len")=2 + Set gtmtypes("mstr",3,"name")="mstr.addr" + Set gtmtypes("mstr",3,"off")=8 + Set gtmtypes("mstr",3,"len")=4 + Set gtmtypes("mstr",3,"type")="addr" + Set gtmtypfldindx("mstr","addr")=3 + ; + Set gtmtypes("mu_extr_stats")="struct" + Set gtmtypes("mu_extr_stats",0)=4 + Set gtmtypes("mu_extr_stats","len")=20 + Set gtmtypes("mu_extr_stats",1,"name")="mu_extr_stats.recknt" + Set gtmtypes("mu_extr_stats",1,"off")=0 + Set gtmtypes("mu_extr_stats",1,"len")=8 + Set gtmtypes("mu_extr_stats",1,"type")="uint64_t" + Set gtmtypfldindx("mu_extr_stats","recknt")=1 + Set gtmtypes("mu_extr_stats",2,"name")="mu_extr_stats.reclen" + Set gtmtypes("mu_extr_stats",2,"off")=8 + Set gtmtypes("mu_extr_stats",2,"len")=4 + Set gtmtypes("mu_extr_stats",2,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","reclen")=2 + Set gtmtypes("mu_extr_stats",3,"name")="mu_extr_stats.keylen" + Set gtmtypes("mu_extr_stats",3,"off")=12 + Set gtmtypes("mu_extr_stats",3,"len")=4 + Set gtmtypes("mu_extr_stats",3,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","keylen")=3 + Set gtmtypes("mu_extr_stats",4,"name")="mu_extr_stats.datalen" + Set gtmtypes("mu_extr_stats",4,"off")=16 + Set gtmtypes("mu_extr_stats",4,"len")=4 + Set gtmtypes("mu_extr_stats",4,"type")="unsigned-int" + Set gtmtypfldindx("mu_extr_stats","datalen")=4 + ; + Set gtmtypes("mu_set_rlist")="struct" + Set gtmtypes("mu_set_rlist",0)=10 + Set gtmtypes("mu_set_rlist","len")=56 + Set gtmtypes("mu_set_rlist",1,"name")="mu_set_rlist.fPtr" + Set gtmtypes("mu_set_rlist",1,"off")=0 + Set gtmtypes("mu_set_rlist",1,"len")=4 + Set gtmtypes("mu_set_rlist",1,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","fPtr")=1 + Set gtmtypes("mu_set_rlist",2,"name")="mu_set_rlist.reg" + Set gtmtypes("mu_set_rlist",2,"off")=4 + Set gtmtypes("mu_set_rlist",2,"len")=4 + Set gtmtypes("mu_set_rlist",2,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","reg")=2 + Set gtmtypes("mu_set_rlist",3,"name")="mu_set_rlist.unique_id" + Set gtmtypes("mu_set_rlist",3,"off")=8 + Set gtmtypes("mu_set_rlist",3,"len")=20 + Set gtmtypes("mu_set_rlist",3,"type")="char" + Set gtmtypfldindx("mu_set_rlist","unique_id")=3 + Set gtmtypes("mu_set_rlist",4,"name")="mu_set_rlist.state" + Set gtmtypes("mu_set_rlist",4,"off")=28 + Set gtmtypes("mu_set_rlist",4,"len")=4 + Set gtmtypes("mu_set_rlist",4,"type")="int" + Set gtmtypfldindx("mu_set_rlist","state")=4 + Set gtmtypes("mu_set_rlist",5,"name")="mu_set_rlist.sd" + Set gtmtypes("mu_set_rlist",5,"off")=32 + Set gtmtypes("mu_set_rlist",5,"len")=4 + Set gtmtypes("mu_set_rlist",5,"type")="addr" + Set gtmtypfldindx("mu_set_rlist","sd")=5 + Set gtmtypes("mu_set_rlist",6,"name")="mu_set_rlist.exclusive" + Set gtmtypes("mu_set_rlist",6,"off")=36 + Set gtmtypes("mu_set_rlist",6,"len")=1 + Set gtmtypes("mu_set_rlist",6,"type")="char" + Set gtmtypfldindx("mu_set_rlist","exclusive")=6 + Set gtmtypes("mu_set_rlist",7,"name")="mu_set_rlist.fd" + Set gtmtypes("mu_set_rlist",7,"off")=40 + Set gtmtypes("mu_set_rlist",7,"len")=4 + Set gtmtypes("mu_set_rlist",7,"type")="int" + Set gtmtypfldindx("mu_set_rlist","fd")=7 + Set gtmtypes("mu_set_rlist",8,"name")="mu_set_rlist.jnl_new_state" + Set gtmtypes("mu_set_rlist",8,"off")=44 + Set gtmtypes("mu_set_rlist",8,"len")=4 + Set gtmtypes("mu_set_rlist",8,"type")="int" + Set gtmtypfldindx("mu_set_rlist","jnl_new_state")=8 + Set gtmtypes("mu_set_rlist",9,"name")="mu_set_rlist.repl_new_state" + Set gtmtypes("mu_set_rlist",9,"off")=48 + Set gtmtypes("mu_set_rlist",9,"len")=4 + Set gtmtypes("mu_set_rlist",9,"type")="int" + Set gtmtypfldindx("mu_set_rlist","repl_new_state")=9 + Set gtmtypes("mu_set_rlist",10,"name")="mu_set_rlist.before_images" + Set gtmtypes("mu_set_rlist",10,"off")=52 + Set gtmtypes("mu_set_rlist",10,"len")=4 + Set gtmtypes("mu_set_rlist",10,"type")="boolean_t" + Set gtmtypfldindx("mu_set_rlist","before_images")=10 + ; + Set gtmtypes("muinc_blk_hdr")="struct" + Set gtmtypes("muinc_blk_hdr",0)=9 + Set gtmtypes("muinc_blk_hdr","len")=32 + Set gtmtypes("muinc_blk_hdr",1,"name")="muinc_blk_hdr.filler_8byte" + Set gtmtypes("muinc_blk_hdr",1,"off")=0 + Set gtmtypes("muinc_blk_hdr",1,"len")=8 + Set gtmtypes("muinc_blk_hdr",1,"type")="char" + Set gtmtypfldindx("muinc_blk_hdr","filler_8byte")=1 + Set gtmtypes("muinc_blk_hdr",2,"name")="muinc_blk_hdr.blktype" + Set gtmtypes("muinc_blk_hdr",2,"off")=8 + Set gtmtypes("muinc_blk_hdr",2,"len")=4 + Set gtmtypes("muinc_blk_hdr",2,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","blktype")=2 + Set gtmtypes("muinc_blk_hdr",3,"name")="muinc_blk_hdr.blkid" + Set gtmtypes("muinc_blk_hdr",3,"off")=12 + Set gtmtypes("muinc_blk_hdr",3,"len")=4 + Set gtmtypes("muinc_blk_hdr",3,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","blkid")=3 + Set gtmtypes("muinc_blk_hdr",4,"name")="muinc_blk_hdr.use" + Set gtmtypes("muinc_blk_hdr",4,"off")=16 + Set gtmtypes("muinc_blk_hdr",4,"len")=4 + Set gtmtypes("muinc_blk_hdr",4,"type")="union" + Set gtmtypfldindx("muinc_blk_hdr","use")=4 + Set gtmtypes("muinc_blk_hdr",5,"name")="muinc_blk_hdr.use.bkup" + Set gtmtypes("muinc_blk_hdr",5,"off")=16 + Set gtmtypes("muinc_blk_hdr",5,"len")=4 + Set gtmtypes("muinc_blk_hdr",5,"type")="struct" + Set gtmtypfldindx("muinc_blk_hdr","use.bkup")=5 + Set gtmtypes("muinc_blk_hdr",6,"name")="muinc_blk_hdr.use.bkup.ondsk_blkver" + Set gtmtypes("muinc_blk_hdr",6,"off")=16 + Set gtmtypes("muinc_blk_hdr",6,"len")=4 + Set gtmtypes("muinc_blk_hdr",6,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","use.bkup.ondsk_blkver")=6 + Set gtmtypes("muinc_blk_hdr",7,"name")="muinc_blk_hdr.holder_pid" + Set gtmtypes("muinc_blk_hdr",7,"off")=20 + Set gtmtypes("muinc_blk_hdr",7,"len")=4 + Set gtmtypes("muinc_blk_hdr",7,"type")="pid_t" + Set gtmtypfldindx("muinc_blk_hdr","holder_pid")=7 + Set gtmtypes("muinc_blk_hdr",8,"name")="muinc_blk_hdr.valid_data" + Set gtmtypes("muinc_blk_hdr",8,"off")=24 + Set gtmtypes("muinc_blk_hdr",8,"len")=4 + Set gtmtypes("muinc_blk_hdr",8,"type")="boolean_t" + Set gtmtypfldindx("muinc_blk_hdr","valid_data")=8 + Set gtmtypes("muinc_blk_hdr",9,"name")="muinc_blk_hdr.image_count" + Set gtmtypes("muinc_blk_hdr",9,"off")=28 + Set gtmtypes("muinc_blk_hdr",9,"len")=4 + Set gtmtypes("muinc_blk_hdr",9,"type")="int" + Set gtmtypfldindx("muinc_blk_hdr","image_count")=9 + ; + Set gtmtypes("multi_proc_shm_hdr_t")="struct" + Set gtmtypes("multi_proc_shm_hdr_t",0)=22 + Set gtmtypes("multi_proc_shm_hdr_t","len")=12060 + Set gtmtypes("multi_proc_shm_hdr_t",1,"name")="multi_proc_shm_hdr_t.multi_proc_latch" + Set gtmtypes("multi_proc_shm_hdr_t",1,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",1,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",1,"type")="global_latch_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch")=1 + Set gtmtypes("multi_proc_shm_hdr_t",2,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u" + Set gtmtypes("multi_proc_shm_hdr_t",2,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",2,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",2,"type")="union" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u")=2 + Set gtmtypes("multi_proc_shm_hdr_t",3,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.pid_imgcnt" + Set gtmtypes("multi_proc_shm_hdr_t",3,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",3,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",3,"type")="uint64_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.pid_imgcnt")=3 + Set gtmtypes("multi_proc_shm_hdr_t",4,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts" + Set gtmtypes("multi_proc_shm_hdr_t",4,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",4,"len")=8 + Set gtmtypes("multi_proc_shm_hdr_t",4,"type")="struct" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts")=4 + Set gtmtypes("multi_proc_shm_hdr_t",5,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts.latch_pid" + Set gtmtypes("multi_proc_shm_hdr_t",5,"off")=0 + Set gtmtypes("multi_proc_shm_hdr_t",5,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",5,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts.latch_pid")=5 + Set gtmtypes("multi_proc_shm_hdr_t",6,"name")="multi_proc_shm_hdr_t.multi_proc_latch.u.parts.latch_word" + Set gtmtypes("multi_proc_shm_hdr_t",6,"off")=4 + Set gtmtypes("multi_proc_shm_hdr_t",6,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",6,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","multi_proc_latch.u.parts.latch_word")=6 + Set gtmtypes("multi_proc_shm_hdr_t",7,"name")="multi_proc_shm_hdr_t.forced_multi_proc_exit" + Set gtmtypes("multi_proc_shm_hdr_t",7,"off")=8 + Set gtmtypes("multi_proc_shm_hdr_t",7,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",7,"type")="boolean_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","forced_multi_proc_exit")=7 + Set gtmtypes("multi_proc_shm_hdr_t",8,"name")="multi_proc_shm_hdr_t.wait_done" + Set gtmtypes("multi_proc_shm_hdr_t",8,"off")=12 + Set gtmtypes("multi_proc_shm_hdr_t",8,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",8,"type")="boolean_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","wait_done")=8 + Set gtmtypes("multi_proc_shm_hdr_t",9,"name")="multi_proc_shm_hdr_t.shmid" + Set gtmtypes("multi_proc_shm_hdr_t",9,"off")=16 + Set gtmtypes("multi_proc_shm_hdr_t",9,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",9,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","shmid")=9 + Set gtmtypes("multi_proc_shm_hdr_t",10,"name")="multi_proc_shm_hdr_t.procs_created" + Set gtmtypes("multi_proc_shm_hdr_t",10,"off")=20 + Set gtmtypes("multi_proc_shm_hdr_t",10,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",10,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","procs_created")=10 + Set gtmtypes("multi_proc_shm_hdr_t",11,"name")="multi_proc_shm_hdr_t.parent_pid" + Set gtmtypes("multi_proc_shm_hdr_t",11,"off")=24 + Set gtmtypes("multi_proc_shm_hdr_t",11,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",11,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parent_pid")=11 + Set gtmtypes("multi_proc_shm_hdr_t",12,"name")="multi_proc_shm_hdr_t.next_task" + Set gtmtypes("multi_proc_shm_hdr_t",12,"off")=28 + Set gtmtypes("multi_proc_shm_hdr_t",12,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",12,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","next_task")=12 + Set gtmtypes("multi_proc_shm_hdr_t",13,"name")="multi_proc_shm_hdr_t.pid" + Set gtmtypes("multi_proc_shm_hdr_t",13,"off")=32 + Set gtmtypes("multi_proc_shm_hdr_t",13,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",13,"type")="pid_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","pid")=13 + Set gtmtypes("multi_proc_shm_hdr_t",13,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",14,"name")="multi_proc_shm_hdr_t.orig_pid" + Set gtmtypes("multi_proc_shm_hdr_t",14,"off")=4032 + Set gtmtypes("multi_proc_shm_hdr_t",14,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",14,"type")="pid_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","orig_pid")=14 + Set gtmtypes("multi_proc_shm_hdr_t",14,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",15,"name")="multi_proc_shm_hdr_t.wait_stat" + Set gtmtypes("multi_proc_shm_hdr_t",15,"off")=8032 + Set gtmtypes("multi_proc_shm_hdr_t",15,"len")=4000 + Set gtmtypes("multi_proc_shm_hdr_t",15,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","wait_stat")=15 + Set gtmtypes("multi_proc_shm_hdr_t",15,"dim")=1000 + Set gtmtypes("multi_proc_shm_hdr_t",16,"name")="multi_proc_shm_hdr_t.fnptr" + Set gtmtypes("multi_proc_shm_hdr_t",16,"off")=12032 + Set gtmtypes("multi_proc_shm_hdr_t",16,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",16,"type")="gtm_multi_proc_fnptr_t" + Set gtmtypfldindx("multi_proc_shm_hdr_t","fnptr")=16 + Set gtmtypes("multi_proc_shm_hdr_t",17,"name")="multi_proc_shm_hdr_t.pvt_ret_array" + Set gtmtypes("multi_proc_shm_hdr_t",17,"off")=12036 + Set gtmtypes("multi_proc_shm_hdr_t",17,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",17,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","pvt_ret_array")=17 + Set gtmtypes("multi_proc_shm_hdr_t",18,"name")="multi_proc_shm_hdr_t.shm_ret_array" + Set gtmtypes("multi_proc_shm_hdr_t",18,"off")=12040 + Set gtmtypes("multi_proc_shm_hdr_t",18,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",18,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","shm_ret_array")=18 + Set gtmtypes("multi_proc_shm_hdr_t",19,"name")="multi_proc_shm_hdr_t.parm_array" + Set gtmtypes("multi_proc_shm_hdr_t",19,"off")=12044 + Set gtmtypes("multi_proc_shm_hdr_t",19,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",19,"type")="addr" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parm_array")=19 + Set gtmtypes("multi_proc_shm_hdr_t",20,"name")="multi_proc_shm_hdr_t.ntasks" + Set gtmtypes("multi_proc_shm_hdr_t",20,"off")=12048 + Set gtmtypes("multi_proc_shm_hdr_t",20,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",20,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","ntasks")=20 + Set gtmtypes("multi_proc_shm_hdr_t",21,"name")="multi_proc_shm_hdr_t.max_procs" + Set gtmtypes("multi_proc_shm_hdr_t",21,"off")=12052 + Set gtmtypes("multi_proc_shm_hdr_t",21,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",21,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","max_procs")=21 + Set gtmtypes("multi_proc_shm_hdr_t",22,"name")="multi_proc_shm_hdr_t.parmElemSize" + Set gtmtypes("multi_proc_shm_hdr_t",22,"off")=12056 + Set gtmtypes("multi_proc_shm_hdr_t",22,"len")=4 + Set gtmtypes("multi_proc_shm_hdr_t",22,"type")="int" + Set gtmtypfldindx("multi_proc_shm_hdr_t","parmElemSize")=22 + ; + Set gtmtypes("multi_struct")="struct" + Set gtmtypes("multi_struct",0)=6 + Set gtmtypes("multi_struct","len")=28 + Set gtmtypes("multi_struct",1,"name")="multi_struct.token" + Set gtmtypes("multi_struct",1,"off")=0 + Set gtmtypes("multi_struct",1,"len")=8 + Set gtmtypes("multi_struct",1,"type")="uint64_t" + Set gtmtypfldindx("multi_struct","token")=1 + Set gtmtypes("multi_struct",2,"name")="multi_struct.time" + Set gtmtypes("multi_struct",2,"off")=8 + Set gtmtypes("multi_struct",2,"len")=4 + Set gtmtypes("multi_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","time")=2 + Set gtmtypes("multi_struct",3,"name")="multi_struct.partner" + Set gtmtypes("multi_struct",3,"off")=12 + Set gtmtypes("multi_struct",3,"len")=4 + Set gtmtypes("multi_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","partner")=3 + Set gtmtypes("multi_struct",4,"name")="multi_struct.tot_partner" + Set gtmtypes("multi_struct",4,"off")=16 + Set gtmtypes("multi_struct",4,"len")=4 + Set gtmtypes("multi_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("multi_struct","tot_partner")=4 + Set gtmtypes("multi_struct",5,"name")="multi_struct.fence" + Set gtmtypes("multi_struct",5,"off")=20 + Set gtmtypes("multi_struct",5,"len")=4 + Set gtmtypes("multi_struct",5,"type")="int" + Set gtmtypfldindx("multi_struct","fence")=5 + Set gtmtypes("multi_struct",6,"name")="multi_struct.next" + Set gtmtypes("multi_struct",6,"off")=24 + Set gtmtypes("multi_struct",6,"len")=4 + Set gtmtypes("multi_struct",6,"type")="addr" + Set gtmtypfldindx("multi_struct","next")=6 + ; + Set gtmtypes("mur_back_opt_t")="struct" + Set gtmtypes("mur_back_opt_t",0)=4 + Set gtmtypes("mur_back_opt_t","len")=20 + Set gtmtypes("mur_back_opt_t",1,"name")="mur_back_opt_t.jctl" + Set gtmtypes("mur_back_opt_t",1,"off")=0 + Set gtmtypes("mur_back_opt_t",1,"len")=4 + Set gtmtypes("mur_back_opt_t",1,"type")="addr" + Set gtmtypfldindx("mur_back_opt_t","jctl")=1 + Set gtmtypes("mur_back_opt_t",2,"name")="mur_back_opt_t.rec_token_seq" + Set gtmtypes("mur_back_opt_t",2,"off")=4 + Set gtmtypes("mur_back_opt_t",2,"len")=8 + Set gtmtypes("mur_back_opt_t",2,"type")="uint64_t" + Set gtmtypfldindx("mur_back_opt_t","rec_token_seq")=2 + Set gtmtypes("mur_back_opt_t",3,"name")="mur_back_opt_t.first_epoch" + Set gtmtypes("mur_back_opt_t",3,"off")=12 + Set gtmtypes("mur_back_opt_t",3,"len")=4 + Set gtmtypes("mur_back_opt_t",3,"type")="boolean_t" + Set gtmtypfldindx("mur_back_opt_t","first_epoch")=3 + Set gtmtypes("mur_back_opt_t",4,"name")="mur_back_opt_t.status" + Set gtmtypes("mur_back_opt_t",4,"off")=16 + Set gtmtypes("mur_back_opt_t",4,"len")=4 + Set gtmtypes("mur_back_opt_t",4,"type")="unsigned-int" + Set gtmtypfldindx("mur_back_opt_t","status")=4 + ; + Set gtmtypes("mur_buff_desc_t")="struct" + Set gtmtypes("mur_buff_desc_t",0)=7 + Set gtmtypes("mur_buff_desc_t","len")=28 + Set gtmtypes("mur_buff_desc_t",1,"name")="mur_buff_desc_t.base" + Set gtmtypes("mur_buff_desc_t",1,"off")=0 + Set gtmtypes("mur_buff_desc_t",1,"len")=4 + Set gtmtypes("mur_buff_desc_t",1,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","base")=1 + Set gtmtypes("mur_buff_desc_t",2,"name")="mur_buff_desc_t.top" + Set gtmtypes("mur_buff_desc_t",2,"off")=4 + Set gtmtypes("mur_buff_desc_t",2,"len")=4 + Set gtmtypes("mur_buff_desc_t",2,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","top")=2 + Set gtmtypes("mur_buff_desc_t",3,"name")="mur_buff_desc_t.blen" + Set gtmtypes("mur_buff_desc_t",3,"off")=8 + Set gtmtypes("mur_buff_desc_t",3,"len")=4 + Set gtmtypes("mur_buff_desc_t",3,"type")="unsigned-int" + Set gtmtypfldindx("mur_buff_desc_t","blen")=3 + Set gtmtypes("mur_buff_desc_t",4,"name")="mur_buff_desc_t.dskaddr" + Set gtmtypes("mur_buff_desc_t",4,"off")=12 + Set gtmtypes("mur_buff_desc_t",4,"len")=4 + Set gtmtypes("mur_buff_desc_t",4,"type")="unsigned-int" + Set gtmtypfldindx("mur_buff_desc_t","dskaddr")=4 + Set gtmtypes("mur_buff_desc_t",5,"name")="mur_buff_desc_t.read_in_progress" + Set gtmtypes("mur_buff_desc_t",5,"off")=16 + Set gtmtypes("mur_buff_desc_t",5,"len")=4 + Set gtmtypes("mur_buff_desc_t",5,"type")="boolean_t" + Set gtmtypfldindx("mur_buff_desc_t","read_in_progress")=5 + Set gtmtypes("mur_buff_desc_t",6,"name")="mur_buff_desc_t.aiocbp" + Set gtmtypes("mur_buff_desc_t",6,"off")=20 + Set gtmtypes("mur_buff_desc_t",6,"len")=4 + Set gtmtypes("mur_buff_desc_t",6,"type")="addr" + Set gtmtypfldindx("mur_buff_desc_t","aiocbp")=6 + Set gtmtypes("mur_buff_desc_t",7,"name")="mur_buff_desc_t.rip_channel" + Set gtmtypes("mur_buff_desc_t",7,"off")=24 + Set gtmtypes("mur_buff_desc_t",7,"len")=4 + Set gtmtypes("mur_buff_desc_t",7,"type")="int" + Set gtmtypfldindx("mur_buff_desc_t","rip_channel")=7 + ; + Set gtmtypes("mur_gbls_t")="struct" + Set gtmtypes("mur_gbls_t",0)=73 + Set gtmtypes("mur_gbls_t","len")=436 + Set gtmtypes("mur_gbls_t",1,"name")="mur_gbls_t.repl_standalone" + Set gtmtypes("mur_gbls_t",1,"off")=0 + Set gtmtypes("mur_gbls_t",1,"len")=4 + Set gtmtypes("mur_gbls_t",1,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","repl_standalone")=1 + Set gtmtypes("mur_gbls_t",2,"name")="mur_gbls_t.clean_exit" + Set gtmtypes("mur_gbls_t",2,"off")=4 + Set gtmtypes("mur_gbls_t",2,"len")=4 + Set gtmtypes("mur_gbls_t",2,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","clean_exit")=2 + Set gtmtypes("mur_gbls_t",3,"name")="mur_gbls_t.ok_to_update_db" + Set gtmtypes("mur_gbls_t",3,"off")=8 + Set gtmtypes("mur_gbls_t",3,"len")=4 + Set gtmtypes("mur_gbls_t",3,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","ok_to_update_db")=3 + Set gtmtypes("mur_gbls_t",4,"name")="mur_gbls_t.intrpt_recovery" + Set gtmtypes("mur_gbls_t",4,"off")=12 + Set gtmtypes("mur_gbls_t",4,"len")=4 + Set gtmtypes("mur_gbls_t",4,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","intrpt_recovery")=4 + Set gtmtypes("mur_gbls_t",5,"name")="mur_gbls_t.reg_total" + Set gtmtypes("mur_gbls_t",5,"off")=16 + Set gtmtypes("mur_gbls_t",5,"len")=4 + Set gtmtypes("mur_gbls_t",5,"type")="int" + Set gtmtypfldindx("mur_gbls_t","reg_total")=5 + Set gtmtypes("mur_gbls_t",6,"name")="mur_gbls_t.reg_full_total" + Set gtmtypes("mur_gbls_t",6,"off")=20 + Set gtmtypes("mur_gbls_t",6,"len")=4 + Set gtmtypes("mur_gbls_t",6,"type")="int" + Set gtmtypfldindx("mur_gbls_t","reg_full_total")=6 + Set gtmtypes("mur_gbls_t",7,"name")="mur_gbls_t.regcnt_remaining" + Set gtmtypes("mur_gbls_t",7,"off")=24 + Set gtmtypes("mur_gbls_t",7,"len")=4 + Set gtmtypes("mur_gbls_t",7,"type")="int" + Set gtmtypfldindx("mur_gbls_t","regcnt_remaining")=7 + Set gtmtypes("mur_gbls_t",8,"name")="mur_gbls_t.err_cnt" + Set gtmtypes("mur_gbls_t",8,"off")=28 + Set gtmtypes("mur_gbls_t",8,"len")=4 + Set gtmtypes("mur_gbls_t",8,"type")="int" + Set gtmtypfldindx("mur_gbls_t","err_cnt")=8 + Set gtmtypes("mur_gbls_t",9,"name")="mur_gbls_t.wrn_count" + Set gtmtypes("mur_gbls_t",9,"off")=32 + Set gtmtypes("mur_gbls_t",9,"len")=4 + Set gtmtypes("mur_gbls_t",9,"type")="int" + Set gtmtypfldindx("mur_gbls_t","wrn_count")=9 + Set gtmtypes("mur_gbls_t",10,"name")="mur_gbls_t.broken_cnt" + Set gtmtypes("mur_gbls_t",10,"off")=36 + Set gtmtypes("mur_gbls_t",10,"len")=4 + Set gtmtypes("mur_gbls_t",10,"type")="int" + Set gtmtypfldindx("mur_gbls_t","broken_cnt")=10 + Set gtmtypes("mur_gbls_t",11,"name")="mur_gbls_t.max_extr_record_length" + Set gtmtypes("mur_gbls_t",11,"off")=40 + Set gtmtypes("mur_gbls_t",11,"len")=4 + Set gtmtypes("mur_gbls_t",11,"type")="int" + Set gtmtypfldindx("mur_gbls_t","max_extr_record_length")=11 + Set gtmtypes("mur_gbls_t",12,"name")="mur_gbls_t.resync_seqno" + Set gtmtypes("mur_gbls_t",12,"off")=44 + Set gtmtypes("mur_gbls_t",12,"len")=8 + Set gtmtypes("mur_gbls_t",12,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","resync_seqno")=12 + Set gtmtypes("mur_gbls_t",13,"name")="mur_gbls_t.consist_jnl_seqno" + Set gtmtypes("mur_gbls_t",13,"off")=52 + Set gtmtypes("mur_gbls_t",13,"len")=8 + Set gtmtypes("mur_gbls_t",13,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","consist_jnl_seqno")=13 + Set gtmtypes("mur_gbls_t",14,"name")="mur_gbls_t.losttn_seqno" + Set gtmtypes("mur_gbls_t",14,"off")=60 + Set gtmtypes("mur_gbls_t",14,"len")=8 + Set gtmtypes("mur_gbls_t",14,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","losttn_seqno")=14 + Set gtmtypes("mur_gbls_t",15,"name")="mur_gbls_t.min_broken_seqno" + Set gtmtypes("mur_gbls_t",15,"off")=68 + Set gtmtypes("mur_gbls_t",15,"len")=8 + Set gtmtypes("mur_gbls_t",15,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","min_broken_seqno")=15 + Set gtmtypes("mur_gbls_t",16,"name")="mur_gbls_t.min_broken_time" + Set gtmtypes("mur_gbls_t",16,"off")=76 + Set gtmtypes("mur_gbls_t",16,"len")=4 + Set gtmtypes("mur_gbls_t",16,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","min_broken_time")=16 + Set gtmtypes("mur_gbls_t",17,"name")="mur_gbls_t.token_table" + Set gtmtypes("mur_gbls_t",17,"off")=80 + Set gtmtypes("mur_gbls_t",17,"len")=56 + Set gtmtypes("mur_gbls_t",17,"type")="hash_table_int8" + Set gtmtypfldindx("mur_gbls_t","token_table")=17 + Set gtmtypes("mur_gbls_t",18,"name")="mur_gbls_t.token_table.base" + Set gtmtypes("mur_gbls_t",18,"off")=80 + Set gtmtypes("mur_gbls_t",18,"len")=4 + Set gtmtypes("mur_gbls_t",18,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.base")=18 + Set gtmtypes("mur_gbls_t",19,"name")="mur_gbls_t.token_table.top" + Set gtmtypes("mur_gbls_t",19,"off")=84 + Set gtmtypes("mur_gbls_t",19,"len")=4 + Set gtmtypes("mur_gbls_t",19,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.top")=19 + Set gtmtypes("mur_gbls_t",20,"name")="mur_gbls_t.token_table.size" + Set gtmtypes("mur_gbls_t",20,"off")=88 + Set gtmtypes("mur_gbls_t",20,"len")=4 + Set gtmtypes("mur_gbls_t",20,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.size")=20 + Set gtmtypes("mur_gbls_t",21,"name")="mur_gbls_t.token_table.initial_size" + Set gtmtypes("mur_gbls_t",21,"off")=92 + Set gtmtypes("mur_gbls_t",21,"len")=4 + Set gtmtypes("mur_gbls_t",21,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.initial_size")=21 + Set gtmtypes("mur_gbls_t",22,"name")="mur_gbls_t.token_table.spare_base" + Set gtmtypes("mur_gbls_t",22,"off")=96 + Set gtmtypes("mur_gbls_t",22,"len")=4 + Set gtmtypes("mur_gbls_t",22,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.spare_base")=22 + Set gtmtypes("mur_gbls_t",23,"name")="mur_gbls_t.token_table.spare_base_size" + Set gtmtypes("mur_gbls_t",23,"off")=100 + Set gtmtypes("mur_gbls_t",23,"len")=4 + Set gtmtypes("mur_gbls_t",23,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.spare_base_size")=23 + Set gtmtypes("mur_gbls_t",24,"name")="mur_gbls_t.token_table.dont_compact" + Set gtmtypes("mur_gbls_t",24,"off")=104 + Set gtmtypes("mur_gbls_t",24,"len")=4 + Set gtmtypes("mur_gbls_t",24,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.dont_compact")=24 + Set gtmtypes("mur_gbls_t",25,"name")="mur_gbls_t.token_table.dont_keep_spare_table" + Set gtmtypes("mur_gbls_t",25,"off")=108 + Set gtmtypes("mur_gbls_t",25,"len")=4 + Set gtmtypes("mur_gbls_t",25,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.dont_keep_spare_table")=25 + Set gtmtypes("mur_gbls_t",26,"name")="mur_gbls_t.token_table.defer_base_release" + Set gtmtypes("mur_gbls_t",26,"off")=112 + Set gtmtypes("mur_gbls_t",26,"len")=4 + Set gtmtypes("mur_gbls_t",26,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","token_table.defer_base_release")=26 + Set gtmtypes("mur_gbls_t",27,"name")="mur_gbls_t.token_table.count" + Set gtmtypes("mur_gbls_t",27,"off")=116 + Set gtmtypes("mur_gbls_t",27,"len")=4 + Set gtmtypes("mur_gbls_t",27,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.count")=27 + Set gtmtypes("mur_gbls_t",28,"name")="mur_gbls_t.token_table.del_count" + Set gtmtypes("mur_gbls_t",28,"off")=120 + Set gtmtypes("mur_gbls_t",28,"len")=4 + Set gtmtypes("mur_gbls_t",28,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.del_count")=28 + Set gtmtypes("mur_gbls_t",29,"name")="mur_gbls_t.token_table.exp_trigger_size" + Set gtmtypes("mur_gbls_t",29,"off")=124 + Set gtmtypes("mur_gbls_t",29,"len")=4 + Set gtmtypes("mur_gbls_t",29,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.exp_trigger_size")=29 + Set gtmtypes("mur_gbls_t",30,"name")="mur_gbls_t.token_table.cmp_trigger_size" + Set gtmtypes("mur_gbls_t",30,"off")=128 + Set gtmtypes("mur_gbls_t",30,"len")=4 + Set gtmtypes("mur_gbls_t",30,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","token_table.cmp_trigger_size")=30 + Set gtmtypes("mur_gbls_t",31,"name")="mur_gbls_t.token_table.entry_passed_thru" + Set gtmtypes("mur_gbls_t",31,"off")=132 + Set gtmtypes("mur_gbls_t",31,"len")=4 + Set gtmtypes("mur_gbls_t",31,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","token_table.entry_passed_thru")=31 + Set gtmtypes("mur_gbls_t",32,"name")="mur_gbls_t.forw_token_table" + Set gtmtypes("mur_gbls_t",32,"off")=136 + Set gtmtypes("mur_gbls_t",32,"len")=56 + Set gtmtypes("mur_gbls_t",32,"type")="hash_table_int8" + Set gtmtypfldindx("mur_gbls_t","forw_token_table")=32 + Set gtmtypes("mur_gbls_t",33,"name")="mur_gbls_t.forw_token_table.base" + Set gtmtypes("mur_gbls_t",33,"off")=136 + Set gtmtypes("mur_gbls_t",33,"len")=4 + Set gtmtypes("mur_gbls_t",33,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.base")=33 + Set gtmtypes("mur_gbls_t",34,"name")="mur_gbls_t.forw_token_table.top" + Set gtmtypes("mur_gbls_t",34,"off")=140 + Set gtmtypes("mur_gbls_t",34,"len")=4 + Set gtmtypes("mur_gbls_t",34,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.top")=34 + Set gtmtypes("mur_gbls_t",35,"name")="mur_gbls_t.forw_token_table.size" + Set gtmtypes("mur_gbls_t",35,"off")=144 + Set gtmtypes("mur_gbls_t",35,"len")=4 + Set gtmtypes("mur_gbls_t",35,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.size")=35 + Set gtmtypes("mur_gbls_t",36,"name")="mur_gbls_t.forw_token_table.initial_size" + Set gtmtypes("mur_gbls_t",36,"off")=148 + Set gtmtypes("mur_gbls_t",36,"len")=4 + Set gtmtypes("mur_gbls_t",36,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.initial_size")=36 + Set gtmtypes("mur_gbls_t",37,"name")="mur_gbls_t.forw_token_table.spare_base" + Set gtmtypes("mur_gbls_t",37,"off")=152 + Set gtmtypes("mur_gbls_t",37,"len")=4 + Set gtmtypes("mur_gbls_t",37,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.spare_base")=37 + Set gtmtypes("mur_gbls_t",38,"name")="mur_gbls_t.forw_token_table.spare_base_size" + Set gtmtypes("mur_gbls_t",38,"off")=156 + Set gtmtypes("mur_gbls_t",38,"len")=4 + Set gtmtypes("mur_gbls_t",38,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.spare_base_size")=38 + Set gtmtypes("mur_gbls_t",39,"name")="mur_gbls_t.forw_token_table.dont_compact" + Set gtmtypes("mur_gbls_t",39,"off")=160 + Set gtmtypes("mur_gbls_t",39,"len")=4 + Set gtmtypes("mur_gbls_t",39,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.dont_compact")=39 + Set gtmtypes("mur_gbls_t",40,"name")="mur_gbls_t.forw_token_table.dont_keep_spare_table" + Set gtmtypes("mur_gbls_t",40,"off")=164 + Set gtmtypes("mur_gbls_t",40,"len")=4 + Set gtmtypes("mur_gbls_t",40,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.dont_keep_spare_table")=40 + Set gtmtypes("mur_gbls_t",41,"name")="mur_gbls_t.forw_token_table.defer_base_release" + Set gtmtypes("mur_gbls_t",41,"off")=168 + Set gtmtypes("mur_gbls_t",41,"len")=4 + Set gtmtypes("mur_gbls_t",41,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.defer_base_release")=41 + Set gtmtypes("mur_gbls_t",42,"name")="mur_gbls_t.forw_token_table.count" + Set gtmtypes("mur_gbls_t",42,"off")=172 + Set gtmtypes("mur_gbls_t",42,"len")=4 + Set gtmtypes("mur_gbls_t",42,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.count")=42 + Set gtmtypes("mur_gbls_t",43,"name")="mur_gbls_t.forw_token_table.del_count" + Set gtmtypes("mur_gbls_t",43,"off")=176 + Set gtmtypes("mur_gbls_t",43,"len")=4 + Set gtmtypes("mur_gbls_t",43,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.del_count")=43 + Set gtmtypes("mur_gbls_t",44,"name")="mur_gbls_t.forw_token_table.exp_trigger_size" + Set gtmtypes("mur_gbls_t",44,"off")=180 + Set gtmtypes("mur_gbls_t",44,"len")=4 + Set gtmtypes("mur_gbls_t",44,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.exp_trigger_size")=44 + Set gtmtypes("mur_gbls_t",45,"name")="mur_gbls_t.forw_token_table.cmp_trigger_size" + Set gtmtypes("mur_gbls_t",45,"off")=184 + Set gtmtypes("mur_gbls_t",45,"len")=4 + Set gtmtypes("mur_gbls_t",45,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.cmp_trigger_size")=45 + Set gtmtypes("mur_gbls_t",46,"name")="mur_gbls_t.forw_token_table.entry_passed_thru" + Set gtmtypes("mur_gbls_t",46,"off")=188 + Set gtmtypes("mur_gbls_t",46,"len")=4 + Set gtmtypes("mur_gbls_t",46,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_token_table.entry_passed_thru")=46 + Set gtmtypes("mur_gbls_t",47,"name")="mur_gbls_t.multi_list" + Set gtmtypes("mur_gbls_t",47,"off")=192 + Set gtmtypes("mur_gbls_t",47,"len")=4 + Set gtmtypes("mur_gbls_t",47,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","multi_list")=47 + Set gtmtypes("mur_gbls_t",48,"name")="mur_gbls_t.forw_multi_list" + Set gtmtypes("mur_gbls_t",48,"off")=196 + Set gtmtypes("mur_gbls_t",48,"len")=4 + Set gtmtypes("mur_gbls_t",48,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","forw_multi_list")=48 + Set gtmtypes("mur_gbls_t",49,"name")="mur_gbls_t.pini_buddy_list" + Set gtmtypes("mur_gbls_t",49,"off")=200 + Set gtmtypes("mur_gbls_t",49,"len")=4 + Set gtmtypes("mur_gbls_t",49,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","pini_buddy_list")=49 + Set gtmtypes("mur_gbls_t",50,"name")="mur_gbls_t.extr_buff" + Set gtmtypes("mur_gbls_t",50,"off")=204 + Set gtmtypes("mur_gbls_t",50,"len")=4 + Set gtmtypes("mur_gbls_t",50,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","extr_buff")=50 + Set gtmtypes("mur_gbls_t",51,"name")="mur_gbls_t.prc_vec" + Set gtmtypes("mur_gbls_t",51,"off")=208 + Set gtmtypes("mur_gbls_t",51,"len")=4 + Set gtmtypes("mur_gbls_t",51,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","prc_vec")=51 + Set gtmtypes("mur_gbls_t",52,"name")="mur_gbls_t.remote_side" + Set gtmtypes("mur_gbls_t",52,"off")=212 + Set gtmtypes("mur_gbls_t",52,"len")=48 + Set gtmtypes("mur_gbls_t",52,"type")="repl_conn_info_t" + Set gtmtypfldindx("mur_gbls_t","remote_side")=52 + Set gtmtypes("mur_gbls_t",53,"name")="mur_gbls_t.remote_side.proto_ver" + Set gtmtypes("mur_gbls_t",53,"off")=212 + Set gtmtypes("mur_gbls_t",53,"len")=4 + Set gtmtypes("mur_gbls_t",53,"type")="int" + Set gtmtypfldindx("mur_gbls_t","remote_side.proto_ver")=53 + Set gtmtypes("mur_gbls_t",54,"name")="mur_gbls_t.remote_side.jnl_ver" + Set gtmtypes("mur_gbls_t",54,"off")=216 + Set gtmtypes("mur_gbls_t",54,"len")=4 + Set gtmtypes("mur_gbls_t",54,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","remote_side.jnl_ver")=54 + Set gtmtypes("mur_gbls_t",55,"name")="mur_gbls_t.remote_side.is_std_null_coll" + Set gtmtypes("mur_gbls_t",55,"off")=220 + Set gtmtypes("mur_gbls_t",55,"len")=4 + Set gtmtypes("mur_gbls_t",55,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.is_std_null_coll")=55 + Set gtmtypes("mur_gbls_t",56,"name")="mur_gbls_t.remote_side.trigger_supported" + Set gtmtypes("mur_gbls_t",56,"off")=224 + Set gtmtypes("mur_gbls_t",56,"len")=4 + Set gtmtypes("mur_gbls_t",56,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.trigger_supported")=56 + Set gtmtypes("mur_gbls_t",57,"name")="mur_gbls_t.remote_side.cross_endian" + Set gtmtypes("mur_gbls_t",57,"off")=228 + Set gtmtypes("mur_gbls_t",57,"len")=4 + Set gtmtypes("mur_gbls_t",57,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.cross_endian")=57 + Set gtmtypes("mur_gbls_t",58,"name")="mur_gbls_t.remote_side.endianness_known" + Set gtmtypes("mur_gbls_t",58,"off")=232 + Set gtmtypes("mur_gbls_t",58,"len")=4 + Set gtmtypes("mur_gbls_t",58,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.endianness_known")=58 + Set gtmtypes("mur_gbls_t",59,"name")="mur_gbls_t.remote_side.null_subs_xform" + Set gtmtypes("mur_gbls_t",59,"off")=236 + Set gtmtypes("mur_gbls_t",59,"len")=4 + Set gtmtypes("mur_gbls_t",59,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.null_subs_xform")=59 + Set gtmtypes("mur_gbls_t",60,"name")="mur_gbls_t.remote_side.is_supplementary" + Set gtmtypes("mur_gbls_t",60,"off")=240 + Set gtmtypes("mur_gbls_t",60,"len")=4 + Set gtmtypes("mur_gbls_t",60,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.is_supplementary")=60 + Set gtmtypes("mur_gbls_t",61,"name")="mur_gbls_t.remote_side.tls_requested" + Set gtmtypes("mur_gbls_t",61,"off")=244 + Set gtmtypes("mur_gbls_t",61,"len")=4 + Set gtmtypes("mur_gbls_t",61,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","remote_side.tls_requested")=61 + Set gtmtypes("mur_gbls_t",62,"name")="mur_gbls_t.remote_side.filler_16" + Set gtmtypes("mur_gbls_t",62,"off")=248 + Set gtmtypes("mur_gbls_t",62,"len")=12 + Set gtmtypes("mur_gbls_t",62,"type")="char" + Set gtmtypfldindx("mur_gbls_t","remote_side.filler_16")=62 + Set gtmtypes("mur_gbls_t",63,"name")="mur_gbls_t.was_rootprimary" + Set gtmtypes("mur_gbls_t",63,"off")=260 + Set gtmtypes("mur_gbls_t",63,"len")=4 + Set gtmtypes("mur_gbls_t",63,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","was_rootprimary")=63 + Set gtmtypes("mur_gbls_t",64,"name")="mur_gbls_t.resync_strm_index" + Set gtmtypes("mur_gbls_t",64,"off")=264 + Set gtmtypes("mur_gbls_t",64,"len")=4 + Set gtmtypes("mur_gbls_t",64,"type")="int" + Set gtmtypfldindx("mur_gbls_t","resync_strm_index")=64 + Set gtmtypes("mur_gbls_t",65,"name")="mur_gbls_t.resync_strm_seqno" + Set gtmtypes("mur_gbls_t",65,"off")=268 + Set gtmtypes("mur_gbls_t",65,"len")=128 + Set gtmtypes("mur_gbls_t",65,"type")="uint64_t" + Set gtmtypfldindx("mur_gbls_t","resync_strm_seqno")=65 + Set gtmtypes("mur_gbls_t",65,"dim")=16 + Set gtmtypes("mur_gbls_t",66,"name")="mur_gbls_t.resync_strm_seqno_nonzero" + Set gtmtypes("mur_gbls_t",66,"off")=396 + Set gtmtypes("mur_gbls_t",66,"len")=4 + Set gtmtypes("mur_gbls_t",66,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","resync_strm_seqno_nonzero")=66 + Set gtmtypes("mur_gbls_t",67,"name")="mur_gbls_t.incr_onln_rlbk_cycle" + Set gtmtypes("mur_gbls_t",67,"off")=400 + Set gtmtypes("mur_gbls_t",67,"len")=4 + Set gtmtypes("mur_gbls_t",67,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","incr_onln_rlbk_cycle")=67 + Set gtmtypes("mur_gbls_t",68,"name")="mur_gbls_t.incr_db_rlbkd_cycle" + Set gtmtypes("mur_gbls_t",68,"off")=404 + Set gtmtypes("mur_gbls_t",68,"len")=4 + Set gtmtypes("mur_gbls_t",68,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","incr_db_rlbkd_cycle")=68 + Set gtmtypes("mur_gbls_t",69,"name")="mur_gbls_t.thr_array" + Set gtmtypes("mur_gbls_t",69,"off")=408 + Set gtmtypes("mur_gbls_t",69,"len")=4 + Set gtmtypes("mur_gbls_t",69,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","thr_array")=69 + Set gtmtypes("mur_gbls_t",70,"name")="mur_gbls_t.ret_array" + Set gtmtypes("mur_gbls_t",70,"off")=412 + Set gtmtypes("mur_gbls_t",70,"len")=4 + Set gtmtypes("mur_gbls_t",70,"type")="addr" + Set gtmtypfldindx("mur_gbls_t","ret_array")=70 + Set gtmtypes("mur_gbls_t",71,"name")="mur_gbls_t.mur_state" + Set gtmtypes("mur_gbls_t",71,"off")=416 + Set gtmtypes("mur_gbls_t",71,"len")=4 + Set gtmtypes("mur_gbls_t",71,"type")="int" + Set gtmtypfldindx("mur_gbls_t","mur_state")=71 + Set gtmtypes("mur_gbls_t",72,"name")="mur_gbls_t.adjusted_resolve_time" + Set gtmtypes("mur_gbls_t",72,"off")=420 + Set gtmtypes("mur_gbls_t",72,"len")=4 + Set gtmtypes("mur_gbls_t",72,"type")="unsigned-int" + Set gtmtypfldindx("mur_gbls_t","adjusted_resolve_time")=72 + Set gtmtypes("mur_gbls_t",73,"name")="mur_gbls_t.filenotcreate_displayed" + Set gtmtypes("mur_gbls_t",73,"off")=424 + Set gtmtypes("mur_gbls_t",73,"len")=12 + Set gtmtypes("mur_gbls_t",73,"type")="boolean_t" + Set gtmtypfldindx("mur_gbls_t","filenotcreate_displayed")=73 + Set gtmtypes("mur_gbls_t",73,"dim")=3 + ; + Set gtmtypes("mur_opt_struct")="struct" + Set gtmtypes("mur_opt_struct",0)=41 + Set gtmtypes("mur_opt_struct","len")=212 + Set gtmtypes("mur_opt_struct",1,"name")="mur_opt_struct.lookback_time" + Set gtmtypes("mur_opt_struct",1,"off")=0 + Set gtmtypes("mur_opt_struct",1,"len")=8 + Set gtmtypes("mur_opt_struct",1,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","lookback_time")=1 + Set gtmtypes("mur_opt_struct",2,"name")="mur_opt_struct.before_time" + Set gtmtypes("mur_opt_struct",2,"off")=8 + Set gtmtypes("mur_opt_struct",2,"len")=8 + Set gtmtypes("mur_opt_struct",2,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","before_time")=2 + Set gtmtypes("mur_opt_struct",3,"name")="mur_opt_struct.since_time" + Set gtmtypes("mur_opt_struct",3,"off")=16 + Set gtmtypes("mur_opt_struct",3,"len")=8 + Set gtmtypes("mur_opt_struct",3,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","since_time")=3 + Set gtmtypes("mur_opt_struct",4,"name")="mur_opt_struct.after_time" + Set gtmtypes("mur_opt_struct",4,"off")=24 + Set gtmtypes("mur_opt_struct",4,"len")=8 + Set gtmtypes("mur_opt_struct",4,"type")="int64_t" + Set gtmtypfldindx("mur_opt_struct","after_time")=4 + Set gtmtypes("mur_opt_struct",5,"name")="mur_opt_struct.fences" + Set gtmtypes("mur_opt_struct",5,"off")=32 + Set gtmtypes("mur_opt_struct",5,"len")=4 + Set gtmtypes("mur_opt_struct",5,"type")="int" + Set gtmtypfldindx("mur_opt_struct","fences")=5 + Set gtmtypes("mur_opt_struct",6,"name")="mur_opt_struct.error_limit" + Set gtmtypes("mur_opt_struct",6,"off")=36 + Set gtmtypes("mur_opt_struct",6,"len")=4 + Set gtmtypes("mur_opt_struct",6,"type")="int" + Set gtmtypfldindx("mur_opt_struct","error_limit")=6 + Set gtmtypes("mur_opt_struct",7,"name")="mur_opt_struct.fetchresync_port" + Set gtmtypes("mur_opt_struct",7,"off")=40 + Set gtmtypes("mur_opt_struct",7,"len")=4 + Set gtmtypes("mur_opt_struct",7,"type")="int" + Set gtmtypfldindx("mur_opt_struct","fetchresync_port")=7 + Set gtmtypes("mur_opt_struct",8,"name")="mur_opt_struct.show" + Set gtmtypes("mur_opt_struct",8,"off")=44 + Set gtmtypes("mur_opt_struct",8,"len")=4 + Set gtmtypes("mur_opt_struct",8,"type")="int" + Set gtmtypfldindx("mur_opt_struct","show")=8 + Set gtmtypes("mur_opt_struct",9,"name")="mur_opt_struct.lookback_opers" + Set gtmtypes("mur_opt_struct",9,"off")=48 + Set gtmtypes("mur_opt_struct",9,"len")=4 + Set gtmtypes("mur_opt_struct",9,"type")="int" + Set gtmtypfldindx("mur_opt_struct","lookback_opers")=9 + Set gtmtypes("mur_opt_struct",10,"name")="mur_opt_struct.forward" + Set gtmtypes("mur_opt_struct",10,"off")=52 + Set gtmtypes("mur_opt_struct",10,"len")=4 + Set gtmtypes("mur_opt_struct",10,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","forward")=10 + Set gtmtypes("mur_opt_struct",11,"name")="mur_opt_struct.update" + Set gtmtypes("mur_opt_struct",11,"off")=56 + Set gtmtypes("mur_opt_struct",11,"len")=4 + Set gtmtypes("mur_opt_struct",11,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","update")=11 + Set gtmtypes("mur_opt_struct",12,"name")="mur_opt_struct.rollback" + Set gtmtypes("mur_opt_struct",12,"off")=60 + Set gtmtypes("mur_opt_struct",12,"len")=4 + Set gtmtypes("mur_opt_struct",12,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","rollback")=12 + Set gtmtypes("mur_opt_struct",13,"name")="mur_opt_struct.rollback_losttnonly" + Set gtmtypes("mur_opt_struct",13,"off")=64 + Set gtmtypes("mur_opt_struct",13,"len")=4 + Set gtmtypes("mur_opt_struct",13,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","rollback_losttnonly")=13 + Set gtmtypes("mur_opt_struct",14,"name")="mur_opt_struct.verify" + Set gtmtypes("mur_opt_struct",14,"off")=68 + Set gtmtypes("mur_opt_struct",14,"len")=4 + Set gtmtypes("mur_opt_struct",14,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verify")=14 + Set gtmtypes("mur_opt_struct",15,"name")="mur_opt_struct.verify_specified" + Set gtmtypes("mur_opt_struct",15,"off")=72 + Set gtmtypes("mur_opt_struct",15,"len")=4 + Set gtmtypes("mur_opt_struct",15,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verify_specified")=15 + Set gtmtypes("mur_opt_struct",16,"name")="mur_opt_struct.before_time_specified" + Set gtmtypes("mur_opt_struct",16,"off")=76 + Set gtmtypes("mur_opt_struct",16,"len")=4 + Set gtmtypes("mur_opt_struct",16,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","before_time_specified")=16 + Set gtmtypes("mur_opt_struct",17,"name")="mur_opt_struct.since_time_specified" + Set gtmtypes("mur_opt_struct",17,"off")=80 + Set gtmtypes("mur_opt_struct",17,"len")=4 + Set gtmtypes("mur_opt_struct",17,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","since_time_specified")=17 + Set gtmtypes("mur_opt_struct",18,"name")="mur_opt_struct.resync_specified" + Set gtmtypes("mur_opt_struct",18,"off")=84 + Set gtmtypes("mur_opt_struct",18,"len")=4 + Set gtmtypes("mur_opt_struct",18,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","resync_specified")=18 + Set gtmtypes("mur_opt_struct",19,"name")="mur_opt_struct.lookback_time_specified" + Set gtmtypes("mur_opt_struct",19,"off")=88 + Set gtmtypes("mur_opt_struct",19,"len")=4 + Set gtmtypes("mur_opt_struct",19,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","lookback_time_specified")=19 + Set gtmtypes("mur_opt_struct",20,"name")="mur_opt_struct.lookback_opers_specified" + Set gtmtypes("mur_opt_struct",20,"off")=92 + Set gtmtypes("mur_opt_struct",20,"len")=4 + Set gtmtypes("mur_opt_struct",20,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","lookback_opers_specified")=20 + Set gtmtypes("mur_opt_struct",21,"name")="mur_opt_struct.interactive" + Set gtmtypes("mur_opt_struct",21,"off")=96 + Set gtmtypes("mur_opt_struct",21,"len")=4 + Set gtmtypes("mur_opt_struct",21,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","interactive")=21 + Set gtmtypes("mur_opt_struct",22,"name")="mur_opt_struct.selection" + Set gtmtypes("mur_opt_struct",22,"off")=100 + Set gtmtypes("mur_opt_struct",22,"len")=4 + Set gtmtypes("mur_opt_struct",22,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","selection")=22 + Set gtmtypes("mur_opt_struct",23,"name")="mur_opt_struct.apply_after_image" + Set gtmtypes("mur_opt_struct",23,"off")=104 + Set gtmtypes("mur_opt_struct",23,"len")=4 + Set gtmtypes("mur_opt_struct",23,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","apply_after_image")=23 + Set gtmtypes("mur_opt_struct",24,"name")="mur_opt_struct.chain" + Set gtmtypes("mur_opt_struct",24,"off")=108 + Set gtmtypes("mur_opt_struct",24,"len")=4 + Set gtmtypes("mur_opt_struct",24,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","chain")=24 + Set gtmtypes("mur_opt_struct",25,"name")="mur_opt_struct.notncheck" + Set gtmtypes("mur_opt_struct",25,"off")=112 + Set gtmtypes("mur_opt_struct",25,"len")=4 + Set gtmtypes("mur_opt_struct",25,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","notncheck")=25 + Set gtmtypes("mur_opt_struct",26,"name")="mur_opt_struct.verbose" + Set gtmtypes("mur_opt_struct",26,"off")=116 + Set gtmtypes("mur_opt_struct",26,"len")=4 + Set gtmtypes("mur_opt_struct",26,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","verbose")=26 + Set gtmtypes("mur_opt_struct",27,"name")="mur_opt_struct.log" + Set gtmtypes("mur_opt_struct",27,"off")=120 + Set gtmtypes("mur_opt_struct",27,"len")=4 + Set gtmtypes("mur_opt_struct",27,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","log")=27 + Set gtmtypes("mur_opt_struct",28,"name")="mur_opt_struct.detail" + Set gtmtypes("mur_opt_struct",28,"off")=124 + Set gtmtypes("mur_opt_struct",28,"len")=4 + Set gtmtypes("mur_opt_struct",28,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","detail")=28 + Set gtmtypes("mur_opt_struct",29,"name")="mur_opt_struct.extract_full" + Set gtmtypes("mur_opt_struct",29,"off")=128 + Set gtmtypes("mur_opt_struct",29,"len")=4 + Set gtmtypes("mur_opt_struct",29,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extract_full")=29 + Set gtmtypes("mur_opt_struct",30,"name")="mur_opt_struct.show_head_only" + Set gtmtypes("mur_opt_struct",30,"off")=132 + Set gtmtypes("mur_opt_struct",30,"len")=4 + Set gtmtypes("mur_opt_struct",30,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","show_head_only")=30 + Set gtmtypes("mur_opt_struct",31,"name")="mur_opt_struct.extr" + Set gtmtypes("mur_opt_struct",31,"off")=136 + Set gtmtypes("mur_opt_struct",31,"len")=12 + Set gtmtypes("mur_opt_struct",31,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extr")=31 + Set gtmtypes("mur_opt_struct",31,"dim")=3 + Set gtmtypes("mur_opt_struct",32,"name")="mur_opt_struct.transaction" + Set gtmtypes("mur_opt_struct",32,"off")=148 + Set gtmtypes("mur_opt_struct",32,"len")=1 + Set gtmtypes("mur_opt_struct",32,"type")="char" + Set gtmtypfldindx("mur_opt_struct","transaction")=32 + Set gtmtypes("mur_opt_struct",33,"name")="mur_opt_struct.redirect" + Set gtmtypes("mur_opt_struct",33,"off")=152 + Set gtmtypes("mur_opt_struct",33,"len")=4 + Set gtmtypes("mur_opt_struct",33,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","redirect")=33 + Set gtmtypes("mur_opt_struct",34,"name")="mur_opt_struct.user" + Set gtmtypes("mur_opt_struct",34,"off")=156 + Set gtmtypes("mur_opt_struct",34,"len")=4 + Set gtmtypes("mur_opt_struct",34,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","user")=34 + Set gtmtypes("mur_opt_struct",35,"name")="mur_opt_struct.database" + Set gtmtypes("mur_opt_struct",35,"off")=160 + Set gtmtypes("mur_opt_struct",35,"len")=4 + Set gtmtypes("mur_opt_struct",35,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","database")=35 + Set gtmtypes("mur_opt_struct",36,"name")="mur_opt_struct.global" + Set gtmtypes("mur_opt_struct",36,"off")=164 + Set gtmtypes("mur_opt_struct",36,"len")=4 + Set gtmtypes("mur_opt_struct",36,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","global")=36 + Set gtmtypes("mur_opt_struct",37,"name")="mur_opt_struct.process" + Set gtmtypes("mur_opt_struct",37,"off")=168 + Set gtmtypes("mur_opt_struct",37,"len")=4 + Set gtmtypes("mur_opt_struct",37,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","process")=37 + Set gtmtypes("mur_opt_struct",38,"name")="mur_opt_struct.id" + Set gtmtypes("mur_opt_struct",38,"off")=172 + Set gtmtypes("mur_opt_struct",38,"len")=4 + Set gtmtypes("mur_opt_struct",38,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","id")=38 + Set gtmtypes("mur_opt_struct",39,"name")="mur_opt_struct.extr_fn" + Set gtmtypes("mur_opt_struct",39,"off")=176 + Set gtmtypes("mur_opt_struct",39,"len")=12 + Set gtmtypes("mur_opt_struct",39,"type")="addr" + Set gtmtypfldindx("mur_opt_struct","extr_fn")=39 + Set gtmtypes("mur_opt_struct",39,"dim")=3 + Set gtmtypes("mur_opt_struct",40,"name")="mur_opt_struct.extr_fn_len" + Set gtmtypes("mur_opt_struct",40,"off")=188 + Set gtmtypes("mur_opt_struct",40,"len")=12 + Set gtmtypes("mur_opt_struct",40,"type")="int" + Set gtmtypfldindx("mur_opt_struct","extr_fn_len")=40 + Set gtmtypes("mur_opt_struct",40,"dim")=3 + Set gtmtypes("mur_opt_struct",41,"name")="mur_opt_struct.extr_fn_is_stdout" + Set gtmtypes("mur_opt_struct",41,"off")=200 + Set gtmtypes("mur_opt_struct",41,"len")=12 + Set gtmtypes("mur_opt_struct",41,"type")="boolean_t" + Set gtmtypfldindx("mur_opt_struct","extr_fn_is_stdout")=41 + Set gtmtypes("mur_opt_struct",41,"dim")=3 + ; + Set gtmtypes("mur_read_desc_t")="struct" + Set gtmtypes("mur_read_desc_t",0)=33 + Set gtmtypes("mur_read_desc_t","len")=148 + Set gtmtypes("mur_read_desc_t",1,"name")="mur_read_desc_t.blocksize" + Set gtmtypes("mur_read_desc_t",1,"off")=0 + Set gtmtypes("mur_read_desc_t",1,"len")=4 + Set gtmtypes("mur_read_desc_t",1,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","blocksize")=1 + Set gtmtypes("mur_read_desc_t",2,"name")="mur_read_desc_t.alloc_base" + Set gtmtypes("mur_read_desc_t",2,"off")=4 + Set gtmtypes("mur_read_desc_t",2,"len")=4 + Set gtmtypes("mur_read_desc_t",2,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","alloc_base")=2 + Set gtmtypes("mur_read_desc_t",3,"name")="mur_read_desc_t.alloc_len" + Set gtmtypes("mur_read_desc_t",3,"off")=8 + Set gtmtypes("mur_read_desc_t",3,"len")=4 + Set gtmtypes("mur_read_desc_t",3,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","alloc_len")=3 + Set gtmtypes("mur_read_desc_t",4,"name")="mur_read_desc_t.random_buff" + Set gtmtypes("mur_read_desc_t",4,"off")=12 + Set gtmtypes("mur_read_desc_t",4,"len")=28 + Set gtmtypes("mur_read_desc_t",4,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","random_buff")=4 + Set gtmtypes("mur_read_desc_t",5,"name")="mur_read_desc_t.random_buff.base" + Set gtmtypes("mur_read_desc_t",5,"off")=12 + Set gtmtypes("mur_read_desc_t",5,"len")=4 + Set gtmtypes("mur_read_desc_t",5,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.base")=5 + Set gtmtypes("mur_read_desc_t",6,"name")="mur_read_desc_t.random_buff.top" + Set gtmtypes("mur_read_desc_t",6,"off")=16 + Set gtmtypes("mur_read_desc_t",6,"len")=4 + Set gtmtypes("mur_read_desc_t",6,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.top")=6 + Set gtmtypes("mur_read_desc_t",7,"name")="mur_read_desc_t.random_buff.blen" + Set gtmtypes("mur_read_desc_t",7,"off")=20 + Set gtmtypes("mur_read_desc_t",7,"len")=4 + Set gtmtypes("mur_read_desc_t",7,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.blen")=7 + Set gtmtypes("mur_read_desc_t",8,"name")="mur_read_desc_t.random_buff.dskaddr" + Set gtmtypes("mur_read_desc_t",8,"off")=24 + Set gtmtypes("mur_read_desc_t",8,"len")=4 + Set gtmtypes("mur_read_desc_t",8,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.dskaddr")=8 + Set gtmtypes("mur_read_desc_t",9,"name")="mur_read_desc_t.random_buff.read_in_progress" + Set gtmtypes("mur_read_desc_t",9,"off")=28 + Set gtmtypes("mur_read_desc_t",9,"len")=4 + Set gtmtypes("mur_read_desc_t",9,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","random_buff.read_in_progress")=9 + Set gtmtypes("mur_read_desc_t",10,"name")="mur_read_desc_t.random_buff.aiocbp" + Set gtmtypes("mur_read_desc_t",10,"off")=32 + Set gtmtypes("mur_read_desc_t",10,"len")=4 + Set gtmtypes("mur_read_desc_t",10,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","random_buff.aiocbp")=10 + Set gtmtypes("mur_read_desc_t",11,"name")="mur_read_desc_t.random_buff.rip_channel" + Set gtmtypes("mur_read_desc_t",11,"off")=36 + Set gtmtypes("mur_read_desc_t",11,"len")=4 + Set gtmtypes("mur_read_desc_t",11,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","random_buff.rip_channel")=11 + Set gtmtypes("mur_read_desc_t",12,"name")="mur_read_desc_t.aux_buff1" + Set gtmtypes("mur_read_desc_t",12,"off")=40 + Set gtmtypes("mur_read_desc_t",12,"len")=4 + Set gtmtypes("mur_read_desc_t",12,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff1")=12 + Set gtmtypes("mur_read_desc_t",13,"name")="mur_read_desc_t.seq_buff" + Set gtmtypes("mur_read_desc_t",13,"off")=44 + Set gtmtypes("mur_read_desc_t",13,"len")=56 + Set gtmtypes("mur_read_desc_t",13,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","seq_buff")=13 + Set gtmtypes("mur_read_desc_t",13,"dim")=2 + Set gtmtypes("mur_read_desc_t",14,"name")="mur_read_desc_t.seq_buff[0].base" + Set gtmtypes("mur_read_desc_t",14,"off")=44 + Set gtmtypes("mur_read_desc_t",14,"len")=4 + Set gtmtypes("mur_read_desc_t",14,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].base")=14 + Set gtmtypes("mur_read_desc_t",15,"name")="mur_read_desc_t.seq_buff[0].top" + Set gtmtypes("mur_read_desc_t",15,"off")=48 + Set gtmtypes("mur_read_desc_t",15,"len")=4 + Set gtmtypes("mur_read_desc_t",15,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].top")=15 + Set gtmtypes("mur_read_desc_t",16,"name")="mur_read_desc_t.seq_buff[0].blen" + Set gtmtypes("mur_read_desc_t",16,"off")=52 + Set gtmtypes("mur_read_desc_t",16,"len")=4 + Set gtmtypes("mur_read_desc_t",16,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].blen")=16 + Set gtmtypes("mur_read_desc_t",17,"name")="mur_read_desc_t.seq_buff[0].dskaddr" + Set gtmtypes("mur_read_desc_t",17,"off")=56 + Set gtmtypes("mur_read_desc_t",17,"len")=4 + Set gtmtypes("mur_read_desc_t",17,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].dskaddr")=17 + Set gtmtypes("mur_read_desc_t",18,"name")="mur_read_desc_t.seq_buff[0].read_in_progress" + Set gtmtypes("mur_read_desc_t",18,"off")=60 + Set gtmtypes("mur_read_desc_t",18,"len")=4 + Set gtmtypes("mur_read_desc_t",18,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].read_in_progress")=18 + Set gtmtypes("mur_read_desc_t",19,"name")="mur_read_desc_t.seq_buff[0].aiocbp" + Set gtmtypes("mur_read_desc_t",19,"off")=64 + Set gtmtypes("mur_read_desc_t",19,"len")=4 + Set gtmtypes("mur_read_desc_t",19,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].aiocbp")=19 + Set gtmtypes("mur_read_desc_t",20,"name")="mur_read_desc_t.seq_buff[0].rip_channel" + Set gtmtypes("mur_read_desc_t",20,"off")=68 + Set gtmtypes("mur_read_desc_t",20,"len")=4 + Set gtmtypes("mur_read_desc_t",20,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","seq_buff[0].rip_channel")=20 + Set gtmtypes("mur_read_desc_t",21,"name")="mur_read_desc_t.aux_buff2" + Set gtmtypes("mur_read_desc_t",21,"off")=100 + Set gtmtypes("mur_read_desc_t",21,"len")=28 + Set gtmtypes("mur_read_desc_t",21,"type")="mur_buff_desc_t" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2")=21 + Set gtmtypes("mur_read_desc_t",22,"name")="mur_read_desc_t.aux_buff2.base" + Set gtmtypes("mur_read_desc_t",22,"off")=100 + Set gtmtypes("mur_read_desc_t",22,"len")=4 + Set gtmtypes("mur_read_desc_t",22,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.base")=22 + Set gtmtypes("mur_read_desc_t",23,"name")="mur_read_desc_t.aux_buff2.top" + Set gtmtypes("mur_read_desc_t",23,"off")=104 + Set gtmtypes("mur_read_desc_t",23,"len")=4 + Set gtmtypes("mur_read_desc_t",23,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.top")=23 + Set gtmtypes("mur_read_desc_t",24,"name")="mur_read_desc_t.aux_buff2.blen" + Set gtmtypes("mur_read_desc_t",24,"off")=108 + Set gtmtypes("mur_read_desc_t",24,"len")=4 + Set gtmtypes("mur_read_desc_t",24,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.blen")=24 + Set gtmtypes("mur_read_desc_t",25,"name")="mur_read_desc_t.aux_buff2.dskaddr" + Set gtmtypes("mur_read_desc_t",25,"off")=112 + Set gtmtypes("mur_read_desc_t",25,"len")=4 + Set gtmtypes("mur_read_desc_t",25,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.dskaddr")=25 + Set gtmtypes("mur_read_desc_t",26,"name")="mur_read_desc_t.aux_buff2.read_in_progress" + Set gtmtypes("mur_read_desc_t",26,"off")=116 + Set gtmtypes("mur_read_desc_t",26,"len")=4 + Set gtmtypes("mur_read_desc_t",26,"type")="boolean_t" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.read_in_progress")=26 + Set gtmtypes("mur_read_desc_t",27,"name")="mur_read_desc_t.aux_buff2.aiocbp" + Set gtmtypes("mur_read_desc_t",27,"off")=120 + Set gtmtypes("mur_read_desc_t",27,"len")=4 + Set gtmtypes("mur_read_desc_t",27,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.aiocbp")=27 + Set gtmtypes("mur_read_desc_t",28,"name")="mur_read_desc_t.aux_buff2.rip_channel" + Set gtmtypes("mur_read_desc_t",28,"off")=124 + Set gtmtypes("mur_read_desc_t",28,"len")=4 + Set gtmtypes("mur_read_desc_t",28,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","aux_buff2.rip_channel")=28 + Set gtmtypes("mur_read_desc_t",29,"name")="mur_read_desc_t.buff_index" + Set gtmtypes("mur_read_desc_t",29,"off")=128 + Set gtmtypes("mur_read_desc_t",29,"len")=4 + Set gtmtypes("mur_read_desc_t",29,"type")="int" + Set gtmtypfldindx("mur_read_desc_t","buff_index")=29 + Set gtmtypes("mur_read_desc_t",30,"name")="mur_read_desc_t.cur_buff" + Set gtmtypes("mur_read_desc_t",30,"off")=132 + Set gtmtypes("mur_read_desc_t",30,"len")=4 + Set gtmtypes("mur_read_desc_t",30,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","cur_buff")=30 + Set gtmtypes("mur_read_desc_t",31,"name")="mur_read_desc_t.sec_buff" + Set gtmtypes("mur_read_desc_t",31,"off")=136 + Set gtmtypes("mur_read_desc_t",31,"len")=4 + Set gtmtypes("mur_read_desc_t",31,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","sec_buff")=31 + Set gtmtypes("mur_read_desc_t",32,"name")="mur_read_desc_t.jnlrec" + Set gtmtypes("mur_read_desc_t",32,"off")=140 + Set gtmtypes("mur_read_desc_t",32,"len")=4 + Set gtmtypes("mur_read_desc_t",32,"type")="addr" + Set gtmtypfldindx("mur_read_desc_t","jnlrec")=32 + Set gtmtypes("mur_read_desc_t",33,"name")="mur_read_desc_t.jreclen" + Set gtmtypes("mur_read_desc_t",33,"off")=144 + Set gtmtypes("mur_read_desc_t",33,"len")=4 + Set gtmtypes("mur_read_desc_t",33,"type")="unsigned-int" + Set gtmtypfldindx("mur_read_desc_t","jreclen")=33 + ; + Set gtmtypes("mur_shm_hdr_t")="struct" + Set gtmtypes("mur_shm_hdr_t",0)=15 + Set gtmtypes("mur_shm_hdr_t","len")=808 + Set gtmtypes("mur_shm_hdr_t",1,"name")="mur_shm_hdr_t.shm_rctl_start" + Set gtmtypes("mur_shm_hdr_t",1,"off")=0 + Set gtmtypes("mur_shm_hdr_t",1,"len")=4 + Set gtmtypes("mur_shm_hdr_t",1,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","shm_rctl_start")=1 + Set gtmtypes("mur_shm_hdr_t",2,"name")="mur_shm_hdr_t.hash_bucket_start" + Set gtmtypes("mur_shm_hdr_t",2,"off")=4 + Set gtmtypes("mur_shm_hdr_t",2,"len")=4 + Set gtmtypes("mur_shm_hdr_t",2,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","hash_bucket_start")=2 + Set gtmtypes("mur_shm_hdr_t",3,"name")="mur_shm_hdr_t.shm_forw_multi_start" + Set gtmtypes("mur_shm_hdr_t",3,"off")=8 + Set gtmtypes("mur_shm_hdr_t",3,"len")=4 + Set gtmtypes("mur_shm_hdr_t",3,"type")="addr" + Set gtmtypfldindx("mur_shm_hdr_t","shm_forw_multi_start")=3 + Set gtmtypes("mur_shm_hdr_t",4,"name")="mur_shm_hdr_t.forw_multi_free" + Set gtmtypes("mur_shm_hdr_t",4,"off")=12 + Set gtmtypes("mur_shm_hdr_t",4,"len")=8 + Set gtmtypes("mur_shm_hdr_t",4,"type")="que_ent" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free")=4 + Set gtmtypes("mur_shm_hdr_t",5,"name")="mur_shm_hdr_t.forw_multi_free.fl" + Set gtmtypes("mur_shm_hdr_t",5,"off")=12 + Set gtmtypes("mur_shm_hdr_t",5,"len")=4 + Set gtmtypes("mur_shm_hdr_t",5,"type")="intptr_t" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free.fl")=5 + Set gtmtypes("mur_shm_hdr_t",6,"name")="mur_shm_hdr_t.forw_multi_free.bl" + Set gtmtypes("mur_shm_hdr_t",6,"off")=16 + Set gtmtypes("mur_shm_hdr_t",6,"len")=4 + Set gtmtypes("mur_shm_hdr_t",6,"type")="intptr_t" + Set gtmtypfldindx("mur_shm_hdr_t","forw_multi_free.bl")=6 + Set gtmtypes("mur_shm_hdr_t",7,"name")="mur_shm_hdr_t.mur_latch" + Set gtmtypes("mur_shm_hdr_t",7,"off")=20 + Set gtmtypes("mur_shm_hdr_t",7,"len")=8 + Set gtmtypes("mur_shm_hdr_t",7,"type")="global_latch_t" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch")=7 + Set gtmtypes("mur_shm_hdr_t",8,"name")="mur_shm_hdr_t.mur_latch.u" + Set gtmtypes("mur_shm_hdr_t",8,"off")=20 + Set gtmtypes("mur_shm_hdr_t",8,"len")=8 + Set gtmtypes("mur_shm_hdr_t",8,"type")="union" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u")=8 + Set gtmtypes("mur_shm_hdr_t",9,"name")="mur_shm_hdr_t.mur_latch.u.pid_imgcnt" + Set gtmtypes("mur_shm_hdr_t",9,"off")=20 + Set gtmtypes("mur_shm_hdr_t",9,"len")=8 + Set gtmtypes("mur_shm_hdr_t",9,"type")="uint64_t" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.pid_imgcnt")=9 + Set gtmtypes("mur_shm_hdr_t",10,"name")="mur_shm_hdr_t.mur_latch.u.parts" + Set gtmtypes("mur_shm_hdr_t",10,"off")=20 + Set gtmtypes("mur_shm_hdr_t",10,"len")=8 + Set gtmtypes("mur_shm_hdr_t",10,"type")="struct" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts")=10 + Set gtmtypes("mur_shm_hdr_t",11,"name")="mur_shm_hdr_t.mur_latch.u.parts.latch_pid" + Set gtmtypes("mur_shm_hdr_t",11,"off")=20 + Set gtmtypes("mur_shm_hdr_t",11,"len")=4 + Set gtmtypes("mur_shm_hdr_t",11,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts.latch_pid")=11 + Set gtmtypes("mur_shm_hdr_t",12,"name")="mur_shm_hdr_t.mur_latch.u.parts.latch_word" + Set gtmtypes("mur_shm_hdr_t",12,"off")=24 + Set gtmtypes("mur_shm_hdr_t",12,"len")=4 + Set gtmtypes("mur_shm_hdr_t",12,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","mur_latch.u.parts.latch_word")=12 + Set gtmtypes("mur_shm_hdr_t",13,"name")="mur_shm_hdr_t.extr_fn_len" + Set gtmtypes("mur_shm_hdr_t",13,"off")=28 + Set gtmtypes("mur_shm_hdr_t",13,"len")=12 + Set gtmtypes("mur_shm_hdr_t",13,"type")="int" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn_len")=13 + Set gtmtypes("mur_shm_hdr_t",13,"dim")=3 + Set gtmtypes("mur_shm_hdr_t",14,"name")="mur_shm_hdr_t.extr_fn" + Set gtmtypes("mur_shm_hdr_t",14,"off")=40 + Set gtmtypes("mur_shm_hdr_t",14,"len")=768 + Set gtmtypes("mur_shm_hdr_t",14,"type")="extr_fn_t" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn")=14 + Set gtmtypes("mur_shm_hdr_t",14,"dim")=3 + Set gtmtypes("mur_shm_hdr_t",15,"name")="mur_shm_hdr_t.extr_fn[0].fn" + Set gtmtypes("mur_shm_hdr_t",15,"off")=40 + Set gtmtypes("mur_shm_hdr_t",15,"len")=256 + Set gtmtypes("mur_shm_hdr_t",15,"type")="char" + Set gtmtypfldindx("mur_shm_hdr_t","extr_fn[0].fn")=15 + ; + Set gtmtypes("mutex_que_entry")="struct" + Set gtmtypes("mutex_que_entry",0)=8 + Set gtmtypes("mutex_que_entry","len")=40 + Set gtmtypes("mutex_que_entry",1,"name")="mutex_que_entry.que" + Set gtmtypes("mutex_que_entry",1,"off")=0 + Set gtmtypes("mutex_que_entry",1,"len")=8 + Set gtmtypes("mutex_que_entry",1,"type")="struct" + Set gtmtypfldindx("mutex_que_entry","que")=1 + Set gtmtypes("mutex_que_entry",2,"name")="mutex_que_entry.que.fl" + Set gtmtypes("mutex_que_entry",2,"off")=0 + Set gtmtypes("mutex_que_entry",2,"len")=4 + Set gtmtypes("mutex_que_entry",2,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_entry","que.fl")=2 + Set gtmtypes("mutex_que_entry",3,"name")="mutex_que_entry.que.bl" + Set gtmtypes("mutex_que_entry",3,"off")=4 + Set gtmtypes("mutex_que_entry",3,"len")=4 + Set gtmtypes("mutex_que_entry",3,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_entry","que.bl")=3 + Set gtmtypes("mutex_que_entry",4,"name")="mutex_que_entry.pid" + Set gtmtypes("mutex_que_entry",4,"off")=8 + Set gtmtypes("mutex_que_entry",4,"len")=4 + Set gtmtypes("mutex_que_entry",4,"type")="int" + Set gtmtypfldindx("mutex_que_entry","pid")=4 + Set gtmtypes("mutex_que_entry",5,"name")="mutex_que_entry.super_crit" + Set gtmtypes("mutex_que_entry",5,"off")=12 + Set gtmtypes("mutex_que_entry",5,"len")=4 + Set gtmtypes("mutex_que_entry",5,"type")="addr" + Set gtmtypfldindx("mutex_que_entry","super_crit")=5 + Set gtmtypes("mutex_que_entry",6,"name")="mutex_que_entry.mutex_wake_instance" + Set gtmtypes("mutex_que_entry",6,"off")=16 + Set gtmtypes("mutex_que_entry",6,"len")=4 + Set gtmtypes("mutex_que_entry",6,"type")="int" + Set gtmtypfldindx("mutex_que_entry","mutex_wake_instance")=6 + Set gtmtypes("mutex_que_entry",7,"name")="mutex_que_entry.filler1" + Set gtmtypes("mutex_que_entry",7,"off")=20 + Set gtmtypes("mutex_que_entry",7,"len")=4 + Set gtmtypes("mutex_que_entry",7,"type")="int" + Set gtmtypfldindx("mutex_que_entry","filler1")=7 + Set gtmtypes("mutex_que_entry",8,"name")="mutex_que_entry.mutex_wake_msem" + Set gtmtypes("mutex_que_entry",8,"off")=24 + Set gtmtypes("mutex_que_entry",8,"len")=16 + Set gtmtypes("mutex_que_entry",8,"type")="sem_t" + Set gtmtypfldindx("mutex_que_entry","mutex_wake_msem")=8 + ; + Set gtmtypes("mutex_que_head")="struct" + Set gtmtypes("mutex_que_head",0)=9 + Set gtmtypes("mutex_que_head","len")=16 + Set gtmtypes("mutex_que_head",1,"name")="mutex_que_head.que" + Set gtmtypes("mutex_que_head",1,"off")=0 + Set gtmtypes("mutex_que_head",1,"len")=8 + Set gtmtypes("mutex_que_head",1,"type")="struct" + Set gtmtypfldindx("mutex_que_head","que")=1 + Set gtmtypes("mutex_que_head",2,"name")="mutex_que_head.que.fl" + Set gtmtypes("mutex_que_head",2,"off")=0 + Set gtmtypes("mutex_que_head",2,"len")=4 + Set gtmtypes("mutex_que_head",2,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_head","que.fl")=2 + Set gtmtypes("mutex_que_head",3,"name")="mutex_que_head.que.bl" + Set gtmtypes("mutex_que_head",3,"off")=4 + Set gtmtypes("mutex_que_head",3,"len")=4 + Set gtmtypes("mutex_que_head",3,"type")="intptr_t" + Set gtmtypfldindx("mutex_que_head","que.bl")=3 + Set gtmtypes("mutex_que_head",4,"name")="mutex_que_head.latch" + Set gtmtypes("mutex_que_head",4,"off")=8 + Set gtmtypes("mutex_que_head",4,"len")=8 + Set gtmtypes("mutex_que_head",4,"type")="global_latch_t" + Set gtmtypfldindx("mutex_que_head","latch")=4 + Set gtmtypes("mutex_que_head",5,"name")="mutex_que_head.latch.u" + Set gtmtypes("mutex_que_head",5,"off")=8 + Set gtmtypes("mutex_que_head",5,"len")=8 + Set gtmtypes("mutex_que_head",5,"type")="union" + Set gtmtypfldindx("mutex_que_head","latch.u")=5 + Set gtmtypes("mutex_que_head",6,"name")="mutex_que_head.latch.u.pid_imgcnt" + Set gtmtypes("mutex_que_head",6,"off")=8 + Set gtmtypes("mutex_que_head",6,"len")=8 + Set gtmtypes("mutex_que_head",6,"type")="uint64_t" + Set gtmtypfldindx("mutex_que_head","latch.u.pid_imgcnt")=6 + Set gtmtypes("mutex_que_head",7,"name")="mutex_que_head.latch.u.parts" + Set gtmtypes("mutex_que_head",7,"off")=8 + Set gtmtypes("mutex_que_head",7,"len")=8 + Set gtmtypes("mutex_que_head",7,"type")="struct" + Set gtmtypfldindx("mutex_que_head","latch.u.parts")=7 + Set gtmtypes("mutex_que_head",8,"name")="mutex_que_head.latch.u.parts.latch_pid" + Set gtmtypes("mutex_que_head",8,"off")=8 + Set gtmtypes("mutex_que_head",8,"len")=4 + Set gtmtypes("mutex_que_head",8,"type")="int" + Set gtmtypfldindx("mutex_que_head","latch.u.parts.latch_pid")=8 + Set gtmtypes("mutex_que_head",9,"name")="mutex_que_head.latch.u.parts.latch_word" + Set gtmtypes("mutex_que_head",9,"off")=12 + Set gtmtypes("mutex_que_head",9,"len")=4 + Set gtmtypes("mutex_que_head",9,"type")="int" + Set gtmtypfldindx("mutex_que_head","latch.u.parts.latch_word")=9 + ; + Set gtmtypes("mutex_spin_parms_struct")="struct" + Set gtmtypes("mutex_spin_parms_struct",0)=4 + Set gtmtypes("mutex_spin_parms_struct","len")=16 + Set gtmtypes("mutex_spin_parms_struct",1,"name")="mutex_spin_parms_struct.mutex_hard_spin_count" + Set gtmtypes("mutex_spin_parms_struct",1,"off")=0 + Set gtmtypes("mutex_spin_parms_struct",1,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",1,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_hard_spin_count")=1 + Set gtmtypes("mutex_spin_parms_struct",2,"name")="mutex_spin_parms_struct.mutex_sleep_spin_count" + Set gtmtypes("mutex_spin_parms_struct",2,"off")=4 + Set gtmtypes("mutex_spin_parms_struct",2,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",2,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_sleep_spin_count")=2 + Set gtmtypes("mutex_spin_parms_struct",3,"name")="mutex_spin_parms_struct.mutex_spin_sleep_mask" + Set gtmtypes("mutex_spin_parms_struct",3,"off")=8 + Set gtmtypes("mutex_spin_parms_struct",3,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",3,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_spin_sleep_mask")=3 + Set gtmtypes("mutex_spin_parms_struct",4,"name")="mutex_spin_parms_struct.mutex_que_entry_space_size" + Set gtmtypes("mutex_spin_parms_struct",4,"off")=12 + Set gtmtypes("mutex_spin_parms_struct",4,"len")=4 + Set gtmtypes("mutex_spin_parms_struct",4,"type")="int" + Set gtmtypfldindx("mutex_spin_parms_struct","mutex_que_entry_space_size")=4 + ; + Set gtmtypes("mutex_struct")="struct" + Set gtmtypes("mutex_struct",0)=52 + Set gtmtypes("mutex_struct","len")=192 + Set gtmtypes("mutex_struct",1,"name")="mutex_struct.crit_cycle" + Set gtmtypes("mutex_struct",1,"off")=0 + Set gtmtypes("mutex_struct",1,"len")=4 + Set gtmtypes("mutex_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("mutex_struct","crit_cycle")=1 + Set gtmtypes("mutex_struct",2,"name")="mutex_struct.fill1" + Set gtmtypes("mutex_struct",2,"off")=4 + Set gtmtypes("mutex_struct",2,"len")=4 + Set gtmtypes("mutex_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("mutex_struct","fill1")=2 + Set gtmtypes("mutex_struct",3,"name")="mutex_struct.semaphore" + Set gtmtypes("mutex_struct",3,"off")=8 + Set gtmtypes("mutex_struct",3,"len")=8 + Set gtmtypes("mutex_struct",3,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","semaphore")=3 + Set gtmtypes("mutex_struct",4,"name")="mutex_struct.semaphore.u" + Set gtmtypes("mutex_struct",4,"off")=8 + Set gtmtypes("mutex_struct",4,"len")=8 + Set gtmtypes("mutex_struct",4,"type")="union" + Set gtmtypfldindx("mutex_struct","semaphore.u")=4 + Set gtmtypes("mutex_struct",5,"name")="mutex_struct.semaphore.u.pid_imgcnt" + Set gtmtypes("mutex_struct",5,"off")=8 + Set gtmtypes("mutex_struct",5,"len")=8 + Set gtmtypes("mutex_struct",5,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","semaphore.u.pid_imgcnt")=5 + Set gtmtypes("mutex_struct",6,"name")="mutex_struct.semaphore.u.parts" + Set gtmtypes("mutex_struct",6,"off")=8 + Set gtmtypes("mutex_struct",6,"len")=8 + Set gtmtypes("mutex_struct",6,"type")="struct" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts")=6 + Set gtmtypes("mutex_struct",7,"name")="mutex_struct.semaphore.u.parts.latch_pid" + Set gtmtypes("mutex_struct",7,"off")=8 + Set gtmtypes("mutex_struct",7,"len")=4 + Set gtmtypes("mutex_struct",7,"type")="int" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts.latch_pid")=7 + Set gtmtypes("mutex_struct",8,"name")="mutex_struct.semaphore.u.parts.latch_word" + Set gtmtypes("mutex_struct",8,"off")=12 + Set gtmtypes("mutex_struct",8,"len")=4 + Set gtmtypes("mutex_struct",8,"type")="int" + Set gtmtypfldindx("mutex_struct","semaphore.u.parts.latch_word")=8 + Set gtmtypes("mutex_struct",9,"name")="mutex_struct.fill_cacheline2" + Set gtmtypes("mutex_struct",9,"off")=16 + Set gtmtypes("mutex_struct",9,"len")=16 + Set gtmtypes("mutex_struct",9,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline2")=9 + Set gtmtypes("mutex_struct",10,"name")="mutex_struct.crashcnt" + Set gtmtypes("mutex_struct",10,"off")=32 + Set gtmtypes("mutex_struct",10,"len")=4 + Set gtmtypes("mutex_struct",10,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt")=10 + Set gtmtypes("mutex_struct",11,"name")="mutex_struct.fill3" + Set gtmtypes("mutex_struct",11,"off")=36 + Set gtmtypes("mutex_struct",11,"len")=4 + Set gtmtypes("mutex_struct",11,"type")="int" + Set gtmtypfldindx("mutex_struct","fill3")=11 + Set gtmtypes("mutex_struct",12,"name")="mutex_struct.crashcnt_latch" + Set gtmtypes("mutex_struct",12,"off")=40 + Set gtmtypes("mutex_struct",12,"len")=8 + Set gtmtypes("mutex_struct",12,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","crashcnt_latch")=12 + Set gtmtypes("mutex_struct",13,"name")="mutex_struct.crashcnt_latch.u" + Set gtmtypes("mutex_struct",13,"off")=40 + Set gtmtypes("mutex_struct",13,"len")=8 + Set gtmtypes("mutex_struct",13,"type")="union" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u")=13 + Set gtmtypes("mutex_struct",14,"name")="mutex_struct.crashcnt_latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",14,"off")=40 + Set gtmtypes("mutex_struct",14,"len")=8 + Set gtmtypes("mutex_struct",14,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.pid_imgcnt")=14 + Set gtmtypes("mutex_struct",15,"name")="mutex_struct.crashcnt_latch.u.parts" + Set gtmtypes("mutex_struct",15,"off")=40 + Set gtmtypes("mutex_struct",15,"len")=8 + Set gtmtypes("mutex_struct",15,"type")="struct" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts")=15 + Set gtmtypes("mutex_struct",16,"name")="mutex_struct.crashcnt_latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",16,"off")=40 + Set gtmtypes("mutex_struct",16,"len")=4 + Set gtmtypes("mutex_struct",16,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts.latch_pid")=16 + Set gtmtypes("mutex_struct",17,"name")="mutex_struct.crashcnt_latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",17,"off")=44 + Set gtmtypes("mutex_struct",17,"len")=4 + Set gtmtypes("mutex_struct",17,"type")="int" + Set gtmtypfldindx("mutex_struct","crashcnt_latch.u.parts.latch_word")=17 + Set gtmtypes("mutex_struct",18,"name")="mutex_struct.fill_cacheline4" + Set gtmtypes("mutex_struct",18,"off")=48 + Set gtmtypes("mutex_struct",18,"len")=16 + Set gtmtypes("mutex_struct",18,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline4")=18 + Set gtmtypes("mutex_struct",19,"name")="mutex_struct.stuckexec" + Set gtmtypes("mutex_struct",19,"off")=64 + Set gtmtypes("mutex_struct",19,"len")=24 + Set gtmtypes("mutex_struct",19,"type")="compswap_time_field" + Set gtmtypfldindx("mutex_struct","stuckexec")=19 + Set gtmtypes("mutex_struct",20,"name")="mutex_struct.stuckexec.time_latch" + Set gtmtypes("mutex_struct",20,"off")=64 + Set gtmtypes("mutex_struct",20,"len")=8 + Set gtmtypes("mutex_struct",20,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch")=20 + Set gtmtypes("mutex_struct",21,"name")="mutex_struct.stuckexec.time_latch.u" + Set gtmtypes("mutex_struct",21,"off")=64 + Set gtmtypes("mutex_struct",21,"len")=8 + Set gtmtypes("mutex_struct",21,"type")="union" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u")=21 + Set gtmtypes("mutex_struct",22,"name")="mutex_struct.stuckexec.time_latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",22,"off")=64 + Set gtmtypes("mutex_struct",22,"len")=8 + Set gtmtypes("mutex_struct",22,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.pid_imgcnt")=22 + Set gtmtypes("mutex_struct",23,"name")="mutex_struct.stuckexec.time_latch.u.parts" + Set gtmtypes("mutex_struct",23,"off")=64 + Set gtmtypes("mutex_struct",23,"len")=8 + Set gtmtypes("mutex_struct",23,"type")="struct" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts")=23 + Set gtmtypes("mutex_struct",24,"name")="mutex_struct.stuckexec.time_latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",24,"off")=64 + Set gtmtypes("mutex_struct",24,"len")=4 + Set gtmtypes("mutex_struct",24,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts.latch_pid")=24 + Set gtmtypes("mutex_struct",25,"name")="mutex_struct.stuckexec.time_latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",25,"off")=68 + Set gtmtypes("mutex_struct",25,"len")=4 + Set gtmtypes("mutex_struct",25,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.time_latch.u.parts.latch_word")=25 + Set gtmtypes("mutex_struct",26,"name")="mutex_struct.stuckexec.hp_latch_space" + Set gtmtypes("mutex_struct",26,"off")=72 + Set gtmtypes("mutex_struct",26,"len")=16 + Set gtmtypes("mutex_struct",26,"type")="int" + Set gtmtypfldindx("mutex_struct","stuckexec.hp_latch_space")=26 + Set gtmtypes("mutex_struct",26,"dim")=4 + Set gtmtypes("mutex_struct",27,"name")="mutex_struct.fill_cacheline5" + Set gtmtypes("mutex_struct",27,"off")=88 + Set gtmtypes("mutex_struct",27,"len")=8 + Set gtmtypes("mutex_struct",27,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline5")=27 + Set gtmtypes("mutex_struct",28,"name")="mutex_struct.queslots" + Set gtmtypes("mutex_struct",28,"off")=96 + Set gtmtypes("mutex_struct",28,"len")=4 + Set gtmtypes("mutex_struct",28,"type")="int" + Set gtmtypfldindx("mutex_struct","queslots")=28 + Set gtmtypes("mutex_struct",29,"name")="mutex_struct.fill6" + Set gtmtypes("mutex_struct",29,"off")=100 + Set gtmtypes("mutex_struct",29,"len")=4 + Set gtmtypes("mutex_struct",29,"type")="int" + Set gtmtypfldindx("mutex_struct","fill6")=29 + Set gtmtypes("mutex_struct",30,"name")="mutex_struct.fill_cacheline7" + Set gtmtypes("mutex_struct",30,"off")=104 + Set gtmtypes("mutex_struct",30,"len")=24 + Set gtmtypes("mutex_struct",30,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline7")=30 + Set gtmtypes("mutex_struct",31,"name")="mutex_struct.prochead" + Set gtmtypes("mutex_struct",31,"off")=128 + Set gtmtypes("mutex_struct",31,"len")=16 + Set gtmtypes("mutex_struct",31,"type")="mutex_que_head" + Set gtmtypfldindx("mutex_struct","prochead")=31 + Set gtmtypes("mutex_struct",32,"name")="mutex_struct.prochead.que" + Set gtmtypes("mutex_struct",32,"off")=128 + Set gtmtypes("mutex_struct",32,"len")=8 + Set gtmtypes("mutex_struct",32,"type")="struct" + Set gtmtypfldindx("mutex_struct","prochead.que")=32 + Set gtmtypes("mutex_struct",33,"name")="mutex_struct.prochead.que.fl" + Set gtmtypes("mutex_struct",33,"off")=128 + Set gtmtypes("mutex_struct",33,"len")=4 + Set gtmtypes("mutex_struct",33,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","prochead.que.fl")=33 + Set gtmtypes("mutex_struct",34,"name")="mutex_struct.prochead.que.bl" + Set gtmtypes("mutex_struct",34,"off")=132 + Set gtmtypes("mutex_struct",34,"len")=4 + Set gtmtypes("mutex_struct",34,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","prochead.que.bl")=34 + Set gtmtypes("mutex_struct",35,"name")="mutex_struct.prochead.latch" + Set gtmtypes("mutex_struct",35,"off")=136 + Set gtmtypes("mutex_struct",35,"len")=8 + Set gtmtypes("mutex_struct",35,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","prochead.latch")=35 + Set gtmtypes("mutex_struct",36,"name")="mutex_struct.prochead.latch.u" + Set gtmtypes("mutex_struct",36,"off")=136 + Set gtmtypes("mutex_struct",36,"len")=8 + Set gtmtypes("mutex_struct",36,"type")="union" + Set gtmtypfldindx("mutex_struct","prochead.latch.u")=36 + Set gtmtypes("mutex_struct",37,"name")="mutex_struct.prochead.latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",37,"off")=136 + Set gtmtypes("mutex_struct",37,"len")=8 + Set gtmtypes("mutex_struct",37,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.pid_imgcnt")=37 + Set gtmtypes("mutex_struct",38,"name")="mutex_struct.prochead.latch.u.parts" + Set gtmtypes("mutex_struct",38,"off")=136 + Set gtmtypes("mutex_struct",38,"len")=8 + Set gtmtypes("mutex_struct",38,"type")="struct" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts")=38 + Set gtmtypes("mutex_struct",39,"name")="mutex_struct.prochead.latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",39,"off")=136 + Set gtmtypes("mutex_struct",39,"len")=4 + Set gtmtypes("mutex_struct",39,"type")="int" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts.latch_pid")=39 + Set gtmtypes("mutex_struct",40,"name")="mutex_struct.prochead.latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",40,"off")=140 + Set gtmtypes("mutex_struct",40,"len")=4 + Set gtmtypes("mutex_struct",40,"type")="int" + Set gtmtypfldindx("mutex_struct","prochead.latch.u.parts.latch_word")=40 + Set gtmtypes("mutex_struct",41,"name")="mutex_struct.fill_cacheline8" + Set gtmtypes("mutex_struct",41,"off")=144 + Set gtmtypes("mutex_struct",41,"len")=16 + Set gtmtypes("mutex_struct",41,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline8")=41 + Set gtmtypes("mutex_struct",42,"name")="mutex_struct.freehead" + Set gtmtypes("mutex_struct",42,"off")=160 + Set gtmtypes("mutex_struct",42,"len")=16 + Set gtmtypes("mutex_struct",42,"type")="mutex_que_head" + Set gtmtypfldindx("mutex_struct","freehead")=42 + Set gtmtypes("mutex_struct",43,"name")="mutex_struct.freehead.que" + Set gtmtypes("mutex_struct",43,"off")=160 + Set gtmtypes("mutex_struct",43,"len")=8 + Set gtmtypes("mutex_struct",43,"type")="struct" + Set gtmtypfldindx("mutex_struct","freehead.que")=43 + Set gtmtypes("mutex_struct",44,"name")="mutex_struct.freehead.que.fl" + Set gtmtypes("mutex_struct",44,"off")=160 + Set gtmtypes("mutex_struct",44,"len")=4 + Set gtmtypes("mutex_struct",44,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","freehead.que.fl")=44 + Set gtmtypes("mutex_struct",45,"name")="mutex_struct.freehead.que.bl" + Set gtmtypes("mutex_struct",45,"off")=164 + Set gtmtypes("mutex_struct",45,"len")=4 + Set gtmtypes("mutex_struct",45,"type")="intptr_t" + Set gtmtypfldindx("mutex_struct","freehead.que.bl")=45 + Set gtmtypes("mutex_struct",46,"name")="mutex_struct.freehead.latch" + Set gtmtypes("mutex_struct",46,"off")=168 + Set gtmtypes("mutex_struct",46,"len")=8 + Set gtmtypes("mutex_struct",46,"type")="global_latch_t" + Set gtmtypfldindx("mutex_struct","freehead.latch")=46 + Set gtmtypes("mutex_struct",47,"name")="mutex_struct.freehead.latch.u" + Set gtmtypes("mutex_struct",47,"off")=168 + Set gtmtypes("mutex_struct",47,"len")=8 + Set gtmtypes("mutex_struct",47,"type")="union" + Set gtmtypfldindx("mutex_struct","freehead.latch.u")=47 + Set gtmtypes("mutex_struct",48,"name")="mutex_struct.freehead.latch.u.pid_imgcnt" + Set gtmtypes("mutex_struct",48,"off")=168 + Set gtmtypes("mutex_struct",48,"len")=8 + Set gtmtypes("mutex_struct",48,"type")="uint64_t" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.pid_imgcnt")=48 + Set gtmtypes("mutex_struct",49,"name")="mutex_struct.freehead.latch.u.parts" + Set gtmtypes("mutex_struct",49,"off")=168 + Set gtmtypes("mutex_struct",49,"len")=8 + Set gtmtypes("mutex_struct",49,"type")="struct" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts")=49 + Set gtmtypes("mutex_struct",50,"name")="mutex_struct.freehead.latch.u.parts.latch_pid" + Set gtmtypes("mutex_struct",50,"off")=168 + Set gtmtypes("mutex_struct",50,"len")=4 + Set gtmtypes("mutex_struct",50,"type")="int" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts.latch_pid")=50 + Set gtmtypes("mutex_struct",51,"name")="mutex_struct.freehead.latch.u.parts.latch_word" + Set gtmtypes("mutex_struct",51,"off")=172 + Set gtmtypes("mutex_struct",51,"len")=4 + Set gtmtypes("mutex_struct",51,"type")="int" + Set gtmtypfldindx("mutex_struct","freehead.latch.u.parts.latch_word")=51 + Set gtmtypes("mutex_struct",52,"name")="mutex_struct.fill_cacheline9" + Set gtmtypes("mutex_struct",52,"off")=176 + Set gtmtypes("mutex_struct",52,"len")=16 + Set gtmtypes("mutex_struct",52,"type")="char" + Set gtmtypfldindx("mutex_struct","fill_cacheline9")=52 + ; + Set gtmtypes("mutex_wake_msg_t")="struct" + Set gtmtypes("mutex_wake_msg_t",0)=2 + Set gtmtypes("mutex_wake_msg_t","len")=8 + Set gtmtypes("mutex_wake_msg_t",1,"name")="mutex_wake_msg_t.pid" + Set gtmtypes("mutex_wake_msg_t",1,"off")=0 + Set gtmtypes("mutex_wake_msg_t",1,"len")=4 + Set gtmtypes("mutex_wake_msg_t",1,"type")="unsigned-int" + Set gtmtypfldindx("mutex_wake_msg_t","pid")=1 + Set gtmtypes("mutex_wake_msg_t",2,"name")="mutex_wake_msg_t.mutex_wake_instance" + Set gtmtypes("mutex_wake_msg_t",2,"off")=4 + Set gtmtypes("mutex_wake_msg_t",2,"len")=4 + Set gtmtypes("mutex_wake_msg_t",2,"type")="int" + Set gtmtypfldindx("mutex_wake_msg_t","mutex_wake_instance")=2 + ; + Set gtmtypes("mv_stent")="struct" + Set gtmtypes("mv_stent",0)=90 + Set gtmtypes("mv_stent","len")=168 + Set gtmtypes("mv_stent",1,"name")="mv_stent.mv_st_cont" + Set gtmtypes("mv_stent",1,"off")=4 + Set gtmtypes("mv_stent",1,"len")=164 + Set gtmtypes("mv_stent",1,"type")="union" + Set gtmtypfldindx("mv_stent","mv_st_cont")=1 + Set gtmtypes("mv_stent",2,"name")="mv_stent.mv_st_cont.mvs_mval" + Set gtmtypes("mv_stent",2,"off")=4 + Set gtmtypes("mv_stent",2,"len")=32 + Set gtmtypes("mv_stent",2,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval")=2 + Set gtmtypes("mv_stent",3,"name")="mv_stent.mv_st_cont.mvs_mval.mvtype" + Set gtmtypes("mv_stent",3,"off")=4 + Set gtmtypes("mv_stent",3,"len")=2 + Set gtmtypes("mv_stent",3,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.mvtype")=3 + Set gtmtypes("mv_stent",4,"name")="mv_stent.mv_st_cont.mvs_mval.fnpc_indx" + Set gtmtypes("mv_stent",4,"off")=7 + Set gtmtypes("mv_stent",4,"len")=1 + Set gtmtypes("mv_stent",4,"type")="unsigned-char" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.fnpc_indx")=4 + Set gtmtypes("mv_stent",5,"name")="mv_stent.mv_st_cont.mvs_mval.utfcgr_indx" + Set gtmtypes("mv_stent",5,"off")=8 + Set gtmtypes("mv_stent",5,"len")=4 + Set gtmtypes("mv_stent",5,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.utfcgr_indx")=5 + Set gtmtypes("mv_stent",6,"name")="mv_stent.mv_st_cont.mvs_mval.filler2" + Set gtmtypes("mv_stent",6,"off")=12 + Set gtmtypes("mv_stent",6,"len")=4 + Set gtmtypes("mv_stent",6,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.filler2")=6 + Set gtmtypes("mv_stent",7,"name")="mv_stent.mv_st_cont.mvs_mval.m" + Set gtmtypes("mv_stent",7,"off")=16 + Set gtmtypes("mv_stent",7,"len")=8 + Set gtmtypes("mv_stent",7,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.m")=7 + Set gtmtypes("mv_stent",7,"dim")=2 + Set gtmtypes("mv_stent",8,"name")="mv_stent.mv_st_cont.mvs_mval.str" + Set gtmtypes("mv_stent",8,"off")=24 + Set gtmtypes("mv_stent",8,"len")=12 + Set gtmtypes("mv_stent",8,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mval.str")=8 + Set gtmtypes("mv_stent",9,"name")="mv_stent.mv_st_cont.mvs_lvval" + Set gtmtypes("mv_stent",9,"off")=4 + Set gtmtypes("mv_stent",9,"len")=4 + Set gtmtypes("mv_stent",9,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_lvval")=9 + Set gtmtypes("mv_stent",10,"name")="mv_stent.mv_st_cont.mvs_msav" + Set gtmtypes("mv_stent",10,"off")=4 + Set gtmtypes("mv_stent",10,"len")=36 + Set gtmtypes("mv_stent",10,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav")=10 + Set gtmtypes("mv_stent",11,"name")="mv_stent.mv_st_cont.mvs_msav.v" + Set gtmtypes("mv_stent",11,"off")=4 + Set gtmtypes("mv_stent",11,"len")=32 + Set gtmtypes("mv_stent",11,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v")=11 + Set gtmtypes("mv_stent",12,"name")="mv_stent.mv_st_cont.mvs_msav.v.mvtype" + Set gtmtypes("mv_stent",12,"off")=4 + Set gtmtypes("mv_stent",12,"len")=2 + Set gtmtypes("mv_stent",12,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.mvtype")=12 + Set gtmtypes("mv_stent",13,"name")="mv_stent.mv_st_cont.mvs_msav.v.fnpc_indx" + Set gtmtypes("mv_stent",13,"off")=7 + Set gtmtypes("mv_stent",13,"len")=1 + Set gtmtypes("mv_stent",13,"type")="unsigned-char" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.fnpc_indx")=13 + Set gtmtypes("mv_stent",14,"name")="mv_stent.mv_st_cont.mvs_msav.v.utfcgr_indx" + Set gtmtypes("mv_stent",14,"off")=8 + Set gtmtypes("mv_stent",14,"len")=4 + Set gtmtypes("mv_stent",14,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.utfcgr_indx")=14 + Set gtmtypes("mv_stent",15,"name")="mv_stent.mv_st_cont.mvs_msav.v.filler2" + Set gtmtypes("mv_stent",15,"off")=12 + Set gtmtypes("mv_stent",15,"len")=4 + Set gtmtypes("mv_stent",15,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.filler2")=15 + Set gtmtypes("mv_stent",16,"name")="mv_stent.mv_st_cont.mvs_msav.v.m" + Set gtmtypes("mv_stent",16,"off")=16 + Set gtmtypes("mv_stent",16,"len")=8 + Set gtmtypes("mv_stent",16,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.m")=16 + Set gtmtypes("mv_stent",16,"dim")=2 + Set gtmtypes("mv_stent",17,"name")="mv_stent.mv_st_cont.mvs_msav.v.str" + Set gtmtypes("mv_stent",17,"off")=24 + Set gtmtypes("mv_stent",17,"len")=12 + Set gtmtypes("mv_stent",17,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.v.str")=17 + Set gtmtypes("mv_stent",18,"name")="mv_stent.mv_st_cont.mvs_msav.addr" + Set gtmtypes("mv_stent",18,"off")=36 + Set gtmtypes("mv_stent",18,"len")=4 + Set gtmtypes("mv_stent",18,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_msav.addr")=18 + Set gtmtypes("mv_stent",19,"name")="mv_stent.mv_st_cont.mvs_stab" + Set gtmtypes("mv_stent",19,"off")=4 + Set gtmtypes("mv_stent",19,"len")=4 + Set gtmtypes("mv_stent",19,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stab")=19 + Set gtmtypes("mv_stent",20,"name")="mv_stent.mv_st_cont.mvs_iarr" + Set gtmtypes("mv_stent",20,"off")=4 + Set gtmtypes("mv_stent",20,"len")=8 + Set gtmtypes("mv_stent",20,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr")=20 + Set gtmtypes("mv_stent",21,"name")="mv_stent.mv_st_cont.mvs_iarr.iarr_mvals" + Set gtmtypes("mv_stent",21,"off")=4 + Set gtmtypes("mv_stent",21,"len")=2 + Set gtmtypes("mv_stent",21,"type")="unsigned-short" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr.iarr_mvals")=21 + Set gtmtypes("mv_stent",22,"name")="mv_stent.mv_st_cont.mvs_iarr.iarr_base" + Set gtmtypes("mv_stent",22,"off")=8 + Set gtmtypes("mv_stent",22,"len")=4 + Set gtmtypes("mv_stent",22,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_iarr.iarr_base")=22 + Set gtmtypes("mv_stent",23,"name")="mv_stent.mv_st_cont.mvs_stck" + Set gtmtypes("mv_stent",23,"off")=4 + Set gtmtypes("mv_stent",23,"len")=12 + Set gtmtypes("mv_stent",23,"type")="struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck")=23 + Set gtmtypes("mv_stent",24,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_addr" + Set gtmtypes("mv_stent",24,"off")=4 + Set gtmtypes("mv_stent",24,"len")=4 + Set gtmtypes("mv_stent",24,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_addr")=24 + Set gtmtypes("mv_stent",25,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_val" + Set gtmtypes("mv_stent",25,"off")=8 + Set gtmtypes("mv_stent",25,"len")=4 + Set gtmtypes("mv_stent",25,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_val")=25 + Set gtmtypes("mv_stent",26,"name")="mv_stent.mv_st_cont.mvs_stck.mvs_stck_size" + Set gtmtypes("mv_stent",26,"off")=12 + Set gtmtypes("mv_stent",26,"len")=4 + Set gtmtypes("mv_stent",26,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_stck.mvs_stck_size")=26 + Set gtmtypes("mv_stent",27,"name")="mv_stent.mv_st_cont.mvs_ntab" + Set gtmtypes("mv_stent",27,"off")=4 + Set gtmtypes("mv_stent",27,"len")=8 + Set gtmtypes("mv_stent",27,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab")=27 + Set gtmtypes("mv_stent",28,"name")="mv_stent.mv_st_cont.mvs_ntab.hte_addr" + Set gtmtypes("mv_stent",28,"off")=4 + Set gtmtypes("mv_stent",28,"len")=4 + Set gtmtypes("mv_stent",28,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab.hte_addr")=28 + Set gtmtypes("mv_stent",29,"name")="mv_stent.mv_st_cont.mvs_ntab.save_value" + Set gtmtypes("mv_stent",29,"off")=8 + Set gtmtypes("mv_stent",29,"len")=4 + Set gtmtypes("mv_stent",29,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_ntab.save_value")=29 + Set gtmtypes("mv_stent",30,"name")="mv_stent.mv_st_cont.mvs_zintdev" + Set gtmtypes("mv_stent",30,"off")=4 + Set gtmtypes("mv_stent",30,"len")=24 + Set gtmtypes("mv_stent",30,"type")="mvs_zintdev_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev")=30 + Set gtmtypes("mv_stent",31,"name")="mv_stent.mv_st_cont.mvs_zintdev.io_ptr" + Set gtmtypes("mv_stent",31,"off")=4 + Set gtmtypes("mv_stent",31,"len")=4 + Set gtmtypes("mv_stent",31,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.io_ptr")=31 + Set gtmtypes("mv_stent",32,"name")="mv_stent.mv_st_cont.mvs_zintdev.buffer_valid" + Set gtmtypes("mv_stent",32,"off")=8 + Set gtmtypes("mv_stent",32,"len")=4 + Set gtmtypes("mv_stent",32,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.buffer_valid")=32 + Set gtmtypes("mv_stent",33,"name")="mv_stent.mv_st_cont.mvs_zintdev.curr_sp_buffer" + Set gtmtypes("mv_stent",33,"off")=12 + Set gtmtypes("mv_stent",33,"len")=12 + Set gtmtypes("mv_stent",33,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.curr_sp_buffer")=33 + Set gtmtypes("mv_stent",34,"name")="mv_stent.mv_st_cont.mvs_zintdev.socketptr" + Set gtmtypes("mv_stent",34,"off")=24 + Set gtmtypes("mv_stent",34,"len")=4 + Set gtmtypes("mv_stent",34,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintdev.socketptr")=34 + Set gtmtypes("mv_stent",35,"name")="mv_stent.mv_st_cont.mvs_pval" + Set gtmtypes("mv_stent",35,"off")=4 + Set gtmtypes("mv_stent",35,"len")=12 + Set gtmtypes("mv_stent",35,"type")="mvs_pval_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval")=35 + Set gtmtypes("mv_stent",36,"name")="mv_stent.mv_st_cont.mvs_pval.mvs_val" + Set gtmtypes("mv_stent",36,"off")=4 + Set gtmtypes("mv_stent",36,"len")=4 + Set gtmtypes("mv_stent",36,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval.mvs_val")=36 + Set gtmtypes("mv_stent",37,"name")="mv_stent.mv_st_cont.mvs_pval.mvs_ptab" + Set gtmtypes("mv_stent",37,"off")=8 + Set gtmtypes("mv_stent",37,"len")=8 + Set gtmtypes("mv_stent",37,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_pval.mvs_ptab")=37 + Set gtmtypes("mv_stent",38,"name")="mv_stent.mv_st_cont.mvs_nval" + Set gtmtypes("mv_stent",38,"off")=4 + Set gtmtypes("mv_stent",38,"len")=12 + Set gtmtypes("mv_stent",38,"type")="mvs_nval_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval")=38 + Set gtmtypes("mv_stent",39,"name")="mv_stent.mv_st_cont.mvs_nval.mvs_val" + Set gtmtypes("mv_stent",39,"off")=4 + Set gtmtypes("mv_stent",39,"len")=4 + Set gtmtypes("mv_stent",39,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval.mvs_val")=39 + Set gtmtypes("mv_stent",40,"name")="mv_stent.mv_st_cont.mvs_nval.mvs_ptab" + Set gtmtypes("mv_stent",40,"off")=8 + Set gtmtypes("mv_stent",40,"len")=8 + Set gtmtypes("mv_stent",40,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_nval.mvs_ptab")=40 + Set gtmtypes("mv_stent",41,"name")="mv_stent.mv_st_cont.mvs_zintr" + Set gtmtypes("mv_stent",41,"off")=4 + Set gtmtypes("mv_stent",41,"len")=120 + Set gtmtypes("mv_stent",41,"type")="mvs_zintr_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr")=41 + Set gtmtypes("mv_stent",42,"name")="mv_stent.mv_st_cont.mvs_zintr.saved_dollar_truth" + Set gtmtypes("mv_stent",42,"off")=4 + Set gtmtypes("mv_stent",42,"len")=4 + Set gtmtypes("mv_stent",42,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.saved_dollar_truth")=42 + Set gtmtypes("mv_stent",43,"name")="mv_stent.mv_st_cont.mvs_zintr.savtarg" + Set gtmtypes("mv_stent",43,"off")=8 + Set gtmtypes("mv_stent",43,"len")=32 + Set gtmtypes("mv_stent",43,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.savtarg")=43 + Set gtmtypes("mv_stent",44,"name")="mv_stent.mv_st_cont.mvs_zintr.savextref" + Set gtmtypes("mv_stent",44,"off")=40 + Set gtmtypes("mv_stent",44,"len")=12 + Set gtmtypes("mv_stent",44,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.savextref")=44 + Set gtmtypes("mv_stent",45,"name")="mv_stent.mv_st_cont.mvs_zintr.error_frame_save" + Set gtmtypes("mv_stent",45,"off")=52 + Set gtmtypes("mv_stent",45,"len")=4 + Set gtmtypes("mv_stent",45,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.error_frame_save")=45 + Set gtmtypes("mv_stent",46,"name")="mv_stent.mv_st_cont.mvs_zintr.dollar_ecode_save" + Set gtmtypes("mv_stent",46,"off")=56 + Set gtmtypes("mv_stent",46,"len")=44 + Set gtmtypes("mv_stent",46,"type")="dollar_ecode_type" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.dollar_ecode_save")=46 + Set gtmtypes("mv_stent",47,"name")="mv_stent.mv_st_cont.mvs_zintr.dollar_stack_save" + Set gtmtypes("mv_stent",47,"off")=100 + Set gtmtypes("mv_stent",47,"len")=24 + Set gtmtypes("mv_stent",47,"type")="dollar_stack_type" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintr.dollar_stack_save")=47 + Set gtmtypes("mv_stent",48,"name")="mv_stent.mv_st_cont.mvs_trigr" + Set gtmtypes("mv_stent",48,"off")=4 + Set gtmtypes("mv_stent",48,"len")=164 + Set gtmtypes("mv_stent",48,"type")="mvs_trigr_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr")=48 + Set gtmtypes("mv_stent",49,"name")="mv_stent.mv_st_cont.mvs_trigr.saved_dollar_truth" + Set gtmtypes("mv_stent",49,"off")=4 + Set gtmtypes("mv_stent",49,"len")=4 + Set gtmtypes("mv_stent",49,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.saved_dollar_truth")=49 + Set gtmtypes("mv_stent",50,"name")="mv_stent.mv_st_cont.mvs_trigr.savtarg" + Set gtmtypes("mv_stent",50,"off")=8 + Set gtmtypes("mv_stent",50,"len")=32 + Set gtmtypes("mv_stent",50,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.savtarg")=50 + Set gtmtypes("mv_stent",51,"name")="mv_stent.mv_st_cont.mvs_trigr.savextref" + Set gtmtypes("mv_stent",51,"off")=40 + Set gtmtypes("mv_stent",51,"len")=12 + Set gtmtypes("mv_stent",51,"type")="mstr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.savextref")=51 + Set gtmtypes("mv_stent",52,"name")="mv_stent.mv_st_cont.mvs_trigr.ztvalue_changed_ptr" + Set gtmtypes("mv_stent",52,"off")=52 + Set gtmtypes("mv_stent",52,"len")=4 + Set gtmtypes("mv_stent",52,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztvalue_changed_ptr")=52 + Set gtmtypes("mv_stent",53,"name")="mv_stent.mv_st_cont.mvs_trigr.ztvalue_save" + Set gtmtypes("mv_stent",53,"off")=56 + Set gtmtypes("mv_stent",53,"len")=4 + Set gtmtypes("mv_stent",53,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztvalue_save")=53 + Set gtmtypes("mv_stent",54,"name")="mv_stent.mv_st_cont.mvs_trigr.ztname_save" + Set gtmtypes("mv_stent",54,"off")=60 + Set gtmtypes("mv_stent",54,"len")=4 + Set gtmtypes("mv_stent",54,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztname_save")=54 + Set gtmtypes("mv_stent",55,"name")="mv_stent.mv_st_cont.mvs_trigr.ztdata_save" + Set gtmtypes("mv_stent",55,"off")=64 + Set gtmtypes("mv_stent",55,"len")=4 + Set gtmtypes("mv_stent",55,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztdata_save")=55 + Set gtmtypes("mv_stent",56,"name")="mv_stent.mv_st_cont.mvs_trigr.ztdelim_save" + Set gtmtypes("mv_stent",56,"off")=68 + Set gtmtypes("mv_stent",56,"len")=4 + Set gtmtypes("mv_stent",56,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztdelim_save")=56 + Set gtmtypes("mv_stent",57,"name")="mv_stent.mv_st_cont.mvs_trigr.ztoldval_save" + Set gtmtypes("mv_stent",57,"off")=72 + Set gtmtypes("mv_stent",57,"len")=4 + Set gtmtypes("mv_stent",57,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztoldval_save")=57 + Set gtmtypes("mv_stent",58,"name")="mv_stent.mv_st_cont.mvs_trigr.ztriggerop_save" + Set gtmtypes("mv_stent",58,"off")=76 + Set gtmtypes("mv_stent",58,"len")=4 + Set gtmtypes("mv_stent",58,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztriggerop_save")=58 + Set gtmtypes("mv_stent",59,"name")="mv_stent.mv_st_cont.mvs_trigr.ztupdate_save" + Set gtmtypes("mv_stent",59,"off")=80 + Set gtmtypes("mv_stent",59,"len")=4 + Set gtmtypes("mv_stent",59,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztupdate_save")=59 + Set gtmtypes("mv_stent",60,"name")="mv_stent.mv_st_cont.mvs_trigr.ctxt_save" + Set gtmtypes("mv_stent",60,"off")=84 + Set gtmtypes("mv_stent",60,"len")=4 + Set gtmtypes("mv_stent",60,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ctxt_save")=60 + Set gtmtypes("mv_stent",61,"name")="mv_stent.mv_st_cont.mvs_trigr.gtm_trigger_depth_save" + Set gtmtypes("mv_stent",61,"off")=88 + Set gtmtypes("mv_stent",61,"len")=4 + Set gtmtypes("mv_stent",61,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.gtm_trigger_depth_save")=61 + Set gtmtypes("mv_stent",62,"name")="mv_stent.mv_st_cont.mvs_trigr.dollar_etrap_save" + Set gtmtypes("mv_stent",62,"off")=92 + Set gtmtypes("mv_stent",62,"len")=32 + Set gtmtypes("mv_stent",62,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.dollar_etrap_save")=62 + Set gtmtypes("mv_stent",63,"name")="mv_stent.mv_st_cont.mvs_trigr.dollar_ztrap_save" + Set gtmtypes("mv_stent",63,"off")=124 + Set gtmtypes("mv_stent",63,"len")=32 + Set gtmtypes("mv_stent",63,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.dollar_ztrap_save")=63 + Set gtmtypes("mv_stent",64,"name")="mv_stent.mv_st_cont.mvs_trigr.ztrap_explicit_null_save" + Set gtmtypes("mv_stent",64,"off")=156 + Set gtmtypes("mv_stent",64,"len")=4 + Set gtmtypes("mv_stent",64,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.ztrap_explicit_null_save")=64 + Set gtmtypes("mv_stent",65,"name")="mv_stent.mv_st_cont.mvs_trigr.mumps_status_save" + Set gtmtypes("mv_stent",65,"off")=160 + Set gtmtypes("mv_stent",65,"len")=4 + Set gtmtypes("mv_stent",65,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.mumps_status_save")=65 + Set gtmtypes("mv_stent",66,"name")="mv_stent.mv_st_cont.mvs_trigr.run_time_save" + Set gtmtypes("mv_stent",66,"off")=164 + Set gtmtypes("mv_stent",66,"len")=4 + Set gtmtypes("mv_stent",66,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_trigr.run_time_save")=66 + Set gtmtypes("mv_stent",67,"name")="mv_stent.mv_st_cont.mvs_tp_holder" + Set gtmtypes("mv_stent",67,"off")=4 + Set gtmtypes("mv_stent",67,"len")=36 + Set gtmtypes("mv_stent",67,"type")="mvs_tphold_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder")=67 + Set gtmtypes("mv_stent",68,"name")="mv_stent.mv_st_cont.mvs_tp_holder.tphold_tlevel" + Set gtmtypes("mv_stent",68,"off")=4 + Set gtmtypes("mv_stent",68,"len")=4 + Set gtmtypes("mv_stent",68,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder.tphold_tlevel")=68 + Set gtmtypes("mv_stent",69,"name")="mv_stent.mv_st_cont.mvs_tp_holder.ztwormhole_save" + Set gtmtypes("mv_stent",69,"off")=8 + Set gtmtypes("mv_stent",69,"len")=32 + Set gtmtypes("mv_stent",69,"type")="mval" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tp_holder.ztwormhole_save")=69 + Set gtmtypes("mv_stent",70,"name")="mv_stent.mv_st_cont.mvs_rstrtpc" + Set gtmtypes("mv_stent",70,"off")=4 + Set gtmtypes("mv_stent",70,"len")=8 + Set gtmtypes("mv_stent",70,"type")="mvs_rstrtpc_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc")=70 + Set gtmtypes("mv_stent",71,"name")="mv_stent.mv_st_cont.mvs_rstrtpc.restart_pc_save" + Set gtmtypes("mv_stent",71,"off")=4 + Set gtmtypes("mv_stent",71,"len")=4 + Set gtmtypes("mv_stent",71,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc.restart_pc_save")=71 + Set gtmtypes("mv_stent",72,"name")="mv_stent.mv_st_cont.mvs_rstrtpc.restart_ctxt_save" + Set gtmtypes("mv_stent",72,"off")=8 + Set gtmtypes("mv_stent",72,"len")=4 + Set gtmtypes("mv_stent",72,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_rstrtpc.restart_ctxt_save")=72 + Set gtmtypes("mv_stent",73,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv" + Set gtmtypes("mv_stent",73,"off")=4 + Set gtmtypes("mv_stent",73,"len")=32 + Set gtmtypes("mv_stent",73,"type")="mvs_mrgzwrsv_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv")=73 + Set gtmtypes("mv_stent",74,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_merge_args" + Set gtmtypes("mv_stent",74,"off")=4 + Set gtmtypes("mv_stent",74,"len")=4 + Set gtmtypes("mv_stent",74,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_merge_args")=74 + Set gtmtypes("mv_stent",75,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwrtacindx" + Set gtmtypes("mv_stent",75,"off")=8 + Set gtmtypes("mv_stent",75,"len")=4 + Set gtmtypes("mv_stent",75,"type")="unsigned-int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwrtacindx")=75 + Set gtmtypes("mv_stent",76,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_in_zwrite" + Set gtmtypes("mv_stent",76,"off")=12 + Set gtmtypes("mv_stent",76,"len")=4 + Set gtmtypes("mv_stent",76,"type")="boolean_t" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_in_zwrite")=76 + Set gtmtypes("mv_stent",77,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_mglvnp" + Set gtmtypes("mv_stent",77,"off")=16 + Set gtmtypes("mv_stent",77,"len")=4 + Set gtmtypes("mv_stent",77,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_mglvnp")=77 + Set gtmtypes("mv_stent",78,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_gvzwrite_block" + Set gtmtypes("mv_stent",78,"off")=20 + Set gtmtypes("mv_stent",78,"len")=4 + Set gtmtypes("mv_stent",78,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_gvzwrite_block")=78 + Set gtmtypes("mv_stent",79,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_lvzwrite_block" + Set gtmtypes("mv_stent",79,"off")=24 + Set gtmtypes("mv_stent",79,"len")=4 + Set gtmtypes("mv_stent",79,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_lvzwrite_block")=79 + Set gtmtypes("mv_stent",80,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwr_output" + Set gtmtypes("mv_stent",80,"off")=28 + Set gtmtypes("mv_stent",80,"len")=4 + Set gtmtypes("mv_stent",80,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwr_output")=80 + Set gtmtypes("mv_stent",81,"name")="mv_stent.mv_st_cont.mvs_mrgzwrsv.save_zwrhtab" + Set gtmtypes("mv_stent",81,"off")=32 + Set gtmtypes("mv_stent",81,"len")=4 + Set gtmtypes("mv_stent",81,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_mrgzwrsv.save_zwrhtab")=81 + Set gtmtypes("mv_stent",82,"name")="mv_stent.mv_st_cont.mvs_zintcmd" + Set gtmtypes("mv_stent",82,"off")=4 + Set gtmtypes("mv_stent",82,"len")=28 + Set gtmtypes("mv_stent",82,"type")="mvs_zintcmd_struct" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd")=82 + Set gtmtypes("mv_stent",83,"name")="mv_stent.mv_st_cont.mvs_zintcmd.command" + Set gtmtypes("mv_stent",83,"off")=4 + Set gtmtypes("mv_stent",83,"len")=4 + Set gtmtypes("mv_stent",83,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.command")=83 + Set gtmtypes("mv_stent",84,"name")="mv_stent.mv_st_cont.mvs_zintcmd.end_or_remain" + Set gtmtypes("mv_stent",84,"off")=8 + Set gtmtypes("mv_stent",84,"len")=8 + Set gtmtypes("mv_stent",84,"type")="ABS_TIME" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.end_or_remain")=84 + Set gtmtypes("mv_stent",85,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_pc_check" + Set gtmtypes("mv_stent",85,"off")=16 + Set gtmtypes("mv_stent",85,"len")=4 + Set gtmtypes("mv_stent",85,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_pc_check")=85 + Set gtmtypes("mv_stent",86,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_ctxt_check" + Set gtmtypes("mv_stent",86,"off")=20 + Set gtmtypes("mv_stent",86,"len")=4 + Set gtmtypes("mv_stent",86,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_ctxt_check")=86 + Set gtmtypes("mv_stent",87,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_pc_prior" + Set gtmtypes("mv_stent",87,"off")=24 + Set gtmtypes("mv_stent",87,"len")=4 + Set gtmtypes("mv_stent",87,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_pc_prior")=87 + Set gtmtypes("mv_stent",88,"name")="mv_stent.mv_st_cont.mvs_zintcmd.restart_ctxt_prior" + Set gtmtypes("mv_stent",88,"off")=28 + Set gtmtypes("mv_stent",88,"len")=4 + Set gtmtypes("mv_stent",88,"type")="addr" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_zintcmd.restart_ctxt_prior")=88 + Set gtmtypes("mv_stent",89,"name")="mv_stent.mv_st_cont.mvs_tval" + Set gtmtypes("mv_stent",89,"off")=4 + Set gtmtypes("mv_stent",89,"len")=4 + Set gtmtypes("mv_stent",89,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_tval")=89 + Set gtmtypes("mv_stent",90,"name")="mv_stent.mv_st_cont.mvs_storig" + Set gtmtypes("mv_stent",90,"off")=4 + Set gtmtypes("mv_stent",90,"len")=4 + Set gtmtypes("mv_stent",90,"type")="int" + Set gtmtypfldindx("mv_stent","mv_st_cont.mvs_storig")=90 + ; + Set gtmtypes("mval")="struct" + Set gtmtypes("mval",0)=9 + Set gtmtypes("mval","len")=32 + Set gtmtypes("mval",1,"name")="mval.mvtype" + Set gtmtypes("mval",1,"off")=0 + Set gtmtypes("mval",1,"len")=2 + Set gtmtypes("mval",1,"type")="unsigned-short" + Set gtmtypfldindx("mval","mvtype")=1 + Set gtmtypes("mval",2,"name")="mval.fnpc_indx" + Set gtmtypes("mval",2,"off")=3 + Set gtmtypes("mval",2,"len")=1 + Set gtmtypes("mval",2,"type")="unsigned-char" + Set gtmtypfldindx("mval","fnpc_indx")=2 + Set gtmtypes("mval",3,"name")="mval.utfcgr_indx" + Set gtmtypes("mval",3,"off")=4 + Set gtmtypes("mval",3,"len")=4 + Set gtmtypes("mval",3,"type")="unsigned-int" + Set gtmtypfldindx("mval","utfcgr_indx")=3 + Set gtmtypes("mval",4,"name")="mval.filler2" + Set gtmtypes("mval",4,"off")=8 + Set gtmtypes("mval",4,"len")=4 + Set gtmtypes("mval",4,"type")="unsigned-int" + Set gtmtypfldindx("mval","filler2")=4 + Set gtmtypes("mval",5,"name")="mval.m" + Set gtmtypes("mval",5,"off")=12 + Set gtmtypes("mval",5,"len")=8 + Set gtmtypes("mval",5,"type")="int" + Set gtmtypfldindx("mval","m")=5 + Set gtmtypes("mval",5,"dim")=2 + Set gtmtypes("mval",6,"name")="mval.str" + Set gtmtypes("mval",6,"off")=20 + Set gtmtypes("mval",6,"len")=12 + Set gtmtypes("mval",6,"type")="mstr" + Set gtmtypfldindx("mval","str")=6 + Set gtmtypes("mval",7,"name")="mval.str.char_len" + Set gtmtypes("mval",7,"off")=20 + Set gtmtypes("mval",7,"len")=4 + Set gtmtypes("mval",7,"type")="unsigned-int" + Set gtmtypfldindx("mval","str.char_len")=7 + Set gtmtypes("mval",8,"name")="mval.str.len" + Set gtmtypes("mval",8,"off")=24 + Set gtmtypes("mval",8,"len")=4 + Set gtmtypes("mval",8,"type")="int" + Set gtmtypfldindx("mval","str.len")=8 + Set gtmtypes("mval",9,"name")="mval.str.addr" + Set gtmtypes("mval",9,"off")=28 + Set gtmtypes("mval",9,"len")=4 + Set gtmtypes("mval",9,"type")="addr" + Set gtmtypfldindx("mval","str.addr")=9 + ; + Set gtmtypes("mval_b")="struct" + Set gtmtypes("mval_b",0)=10 + Set gtmtypes("mval_b","len")=32 + Set gtmtypes("mval_b",1,"name")="mval_b.mvtype" + Set gtmtypes("mval_b",1,"off")=0 + Set gtmtypes("mval_b",1,"len")=2 + Set gtmtypes("mval_b",1,"type")="unsigned-short" + Set gtmtypfldindx("mval_b","mvtype")=1 + Set gtmtypes("mval_b",2,"name")="mval_b.sgne" + Set gtmtypes("mval_b",2,"off")=2 + Set gtmtypes("mval_b",2,"len")=1 + Set gtmtypes("mval_b",2,"type")="unsigned-char" + Set gtmtypfldindx("mval_b","sgne")=2 + Set gtmtypes("mval_b",3,"name")="mval_b.fnpc_indx" + Set gtmtypes("mval_b",3,"off")=3 + Set gtmtypes("mval_b",3,"len")=1 + Set gtmtypes("mval_b",3,"type")="unsigned-char" + Set gtmtypfldindx("mval_b","fnpc_indx")=3 + Set gtmtypes("mval_b",4,"name")="mval_b.utfcgr_indx" + Set gtmtypes("mval_b",4,"off")=4 + Set gtmtypes("mval_b",4,"len")=4 + Set gtmtypes("mval_b",4,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","utfcgr_indx")=4 + Set gtmtypes("mval_b",5,"name")="mval_b.filler2" + Set gtmtypes("mval_b",5,"off")=8 + Set gtmtypes("mval_b",5,"len")=4 + Set gtmtypes("mval_b",5,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","filler2")=5 + Set gtmtypes("mval_b",6,"name")="mval_b.m" + Set gtmtypes("mval_b",6,"off")=12 + Set gtmtypes("mval_b",6,"len")=8 + Set gtmtypes("mval_b",6,"type")="int" + Set gtmtypfldindx("mval_b","m")=6 + Set gtmtypes("mval_b",6,"dim")=2 + Set gtmtypes("mval_b",7,"name")="mval_b.str" + Set gtmtypes("mval_b",7,"off")=20 + Set gtmtypes("mval_b",7,"len")=12 + Set gtmtypes("mval_b",7,"type")="mstr" + Set gtmtypfldindx("mval_b","str")=7 + Set gtmtypes("mval_b",8,"name")="mval_b.str.char_len" + Set gtmtypes("mval_b",8,"off")=20 + Set gtmtypes("mval_b",8,"len")=4 + Set gtmtypes("mval_b",8,"type")="unsigned-int" + Set gtmtypfldindx("mval_b","str.char_len")=8 + Set gtmtypes("mval_b",9,"name")="mval_b.str.len" + Set gtmtypes("mval_b",9,"off")=24 + Set gtmtypes("mval_b",9,"len")=4 + Set gtmtypes("mval_b",9,"type")="int" + Set gtmtypfldindx("mval_b","str.len")=9 + Set gtmtypes("mval_b",10,"name")="mval_b.str.addr" + Set gtmtypes("mval_b",10,"off")=28 + Set gtmtypes("mval_b",10,"len")=4 + Set gtmtypes("mval_b",10,"type")="addr" + Set gtmtypfldindx("mval_b","str.addr")=10 + ; + Set gtmtypes("mvar")="struct" + Set gtmtypes("mvar",0)=8 + Set gtmtypes("mvar","len")=28 + Set gtmtypes("mvar",1,"name")="mvar.lson" + Set gtmtypes("mvar",1,"off")=0 + Set gtmtypes("mvar",1,"len")=4 + Set gtmtypes("mvar",1,"type")="addr" + Set gtmtypfldindx("mvar","lson")=1 + Set gtmtypes("mvar",2,"name")="mvar.rson" + Set gtmtypes("mvar",2,"off")=4 + Set gtmtypes("mvar",2,"len")=4 + Set gtmtypes("mvar",2,"type")="addr" + Set gtmtypfldindx("mvar","rson")=2 + Set gtmtypes("mvar",3,"name")="mvar.mvidx" + Set gtmtypes("mvar",3,"off")=8 + Set gtmtypes("mvar",3,"len")=4 + Set gtmtypes("mvar",3,"type")="int" + Set gtmtypfldindx("mvar","mvidx")=3 + Set gtmtypes("mvar",4,"name")="mvar.mvname" + Set gtmtypes("mvar",4,"off")=12 + Set gtmtypes("mvar",4,"len")=12 + Set gtmtypes("mvar",4,"type")="mstr" + Set gtmtypfldindx("mvar","mvname")=4 + Set gtmtypes("mvar",5,"name")="mvar.mvname.char_len" + Set gtmtypes("mvar",5,"off")=12 + Set gtmtypes("mvar",5,"len")=4 + Set gtmtypes("mvar",5,"type")="unsigned-int" + Set gtmtypfldindx("mvar","mvname.char_len")=5 + Set gtmtypes("mvar",6,"name")="mvar.mvname.len" + Set gtmtypes("mvar",6,"off")=16 + Set gtmtypes("mvar",6,"len")=4 + Set gtmtypes("mvar",6,"type")="int" + Set gtmtypfldindx("mvar","mvname.len")=6 + Set gtmtypes("mvar",7,"name")="mvar.mvname.addr" + Set gtmtypes("mvar",7,"off")=20 + Set gtmtypes("mvar",7,"len")=4 + Set gtmtypes("mvar",7,"type")="addr" + Set gtmtypfldindx("mvar","mvname.addr")=7 + Set gtmtypes("mvar",8,"name")="mvar.last_fetch" + Set gtmtypes("mvar",8,"off")=24 + Set gtmtypes("mvar",8,"len")=4 + Set gtmtypes("mvar",8,"type")="addr" + Set gtmtypfldindx("mvar","last_fetch")=8 + ; + Set gtmtypes("mvax")="struct" + Set gtmtypes("mvax",0)=4 + Set gtmtypes("mvax","len")=16 + Set gtmtypes("mvax",1,"name")="mvax.last" + Set gtmtypes("mvax",1,"off")=0 + Set gtmtypes("mvax",1,"len")=4 + Set gtmtypes("mvax",1,"type")="addr" + Set gtmtypfldindx("mvax","last")=1 + Set gtmtypes("mvax",2,"name")="mvax.next" + Set gtmtypes("mvax",2,"off")=4 + Set gtmtypes("mvax",2,"len")=4 + Set gtmtypes("mvax",2,"type")="addr" + Set gtmtypfldindx("mvax","next")=2 + Set gtmtypes("mvax",3,"name")="mvax.var" + Set gtmtypes("mvax",3,"off")=8 + Set gtmtypes("mvax",3,"len")=4 + Set gtmtypes("mvax",3,"type")="addr" + Set gtmtypfldindx("mvax","var")=3 + Set gtmtypes("mvax",4,"name")="mvax.mvidx" + Set gtmtypes("mvax",4,"off")=12 + Set gtmtypes("mvax",4,"len")=4 + Set gtmtypes("mvax",4,"type")="int" + Set gtmtypfldindx("mvax","mvidx")=4 + ; + Set gtmtypes("mvs_mrgzwrsv_struct")="struct" + Set gtmtypes("mvs_mrgzwrsv_struct",0)=8 + Set gtmtypes("mvs_mrgzwrsv_struct","len")=32 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"name")="mvs_mrgzwrsv_struct.save_merge_args" + Set gtmtypes("mvs_mrgzwrsv_struct",1,"off")=0 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",1,"type")="int" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_merge_args")=1 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"name")="mvs_mrgzwrsv_struct.save_zwrtacindx" + Set gtmtypes("mvs_mrgzwrsv_struct",2,"off")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwrtacindx")=2 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"name")="mvs_mrgzwrsv_struct.save_in_zwrite" + Set gtmtypes("mvs_mrgzwrsv_struct",3,"off")=8 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",3,"type")="boolean_t" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_in_zwrite")=3 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"name")="mvs_mrgzwrsv_struct.save_mglvnp" + Set gtmtypes("mvs_mrgzwrsv_struct",4,"off")=12 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_mglvnp")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"name")="mvs_mrgzwrsv_struct.save_gvzwrite_block" + Set gtmtypes("mvs_mrgzwrsv_struct",5,"off")=16 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_gvzwrite_block")=5 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"name")="mvs_mrgzwrsv_struct.save_lvzwrite_block" + Set gtmtypes("mvs_mrgzwrsv_struct",6,"off")=20 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_lvzwrite_block")=6 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"name")="mvs_mrgzwrsv_struct.save_zwr_output" + Set gtmtypes("mvs_mrgzwrsv_struct",7,"off")=24 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwr_output")=7 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"name")="mvs_mrgzwrsv_struct.save_zwrhtab" + Set gtmtypes("mvs_mrgzwrsv_struct",8,"off")=28 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"len")=4 + Set gtmtypes("mvs_mrgzwrsv_struct",8,"type")="addr" + Set gtmtypfldindx("mvs_mrgzwrsv_struct","save_zwrhtab")=8 + ; + Set gtmtypes("mvs_ntab_struct")="struct" + Set gtmtypes("mvs_ntab_struct",0)=2 + Set gtmtypes("mvs_ntab_struct","len")=8 + Set gtmtypes("mvs_ntab_struct",1,"name")="mvs_ntab_struct.hte_addr" + Set gtmtypes("mvs_ntab_struct",1,"off")=0 + Set gtmtypes("mvs_ntab_struct",1,"len")=4 + Set gtmtypes("mvs_ntab_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_ntab_struct","hte_addr")=1 + Set gtmtypes("mvs_ntab_struct",2,"name")="mvs_ntab_struct.save_value" + Set gtmtypes("mvs_ntab_struct",2,"off")=4 + Set gtmtypes("mvs_ntab_struct",2,"len")=4 + Set gtmtypes("mvs_ntab_struct",2,"type")="addr" + Set gtmtypfldindx("mvs_ntab_struct","save_value")=2 + ; + Set gtmtypes("mvs_nval_struct")="struct" + Set gtmtypes("mvs_nval_struct",0)=4 + Set gtmtypes("mvs_nval_struct","len")=12 + Set gtmtypes("mvs_nval_struct",1,"name")="mvs_nval_struct.mvs_val" + Set gtmtypes("mvs_nval_struct",1,"off")=0 + Set gtmtypes("mvs_nval_struct",1,"len")=4 + Set gtmtypes("mvs_nval_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_val")=1 + Set gtmtypes("mvs_nval_struct",2,"name")="mvs_nval_struct.mvs_ptab" + Set gtmtypes("mvs_nval_struct",2,"off")=4 + Set gtmtypes("mvs_nval_struct",2,"len")=8 + Set gtmtypes("mvs_nval_struct",2,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab")=2 + Set gtmtypes("mvs_nval_struct",3,"name")="mvs_nval_struct.mvs_ptab.hte_addr" + Set gtmtypes("mvs_nval_struct",3,"off")=4 + Set gtmtypes("mvs_nval_struct",3,"len")=4 + Set gtmtypes("mvs_nval_struct",3,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab.hte_addr")=3 + Set gtmtypes("mvs_nval_struct",4,"name")="mvs_nval_struct.mvs_ptab.save_value" + Set gtmtypes("mvs_nval_struct",4,"off")=8 + Set gtmtypes("mvs_nval_struct",4,"len")=4 + Set gtmtypes("mvs_nval_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_nval_struct","mvs_ptab.save_value")=4 + ; + Set gtmtypes("mvs_pval_struct")="struct" + Set gtmtypes("mvs_pval_struct",0)=4 + Set gtmtypes("mvs_pval_struct","len")=12 + Set gtmtypes("mvs_pval_struct",1,"name")="mvs_pval_struct.mvs_val" + Set gtmtypes("mvs_pval_struct",1,"off")=0 + Set gtmtypes("mvs_pval_struct",1,"len")=4 + Set gtmtypes("mvs_pval_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_val")=1 + Set gtmtypes("mvs_pval_struct",2,"name")="mvs_pval_struct.mvs_ptab" + Set gtmtypes("mvs_pval_struct",2,"off")=4 + Set gtmtypes("mvs_pval_struct",2,"len")=8 + Set gtmtypes("mvs_pval_struct",2,"type")="mvs_ntab_struct" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab")=2 + Set gtmtypes("mvs_pval_struct",3,"name")="mvs_pval_struct.mvs_ptab.hte_addr" + Set gtmtypes("mvs_pval_struct",3,"off")=4 + Set gtmtypes("mvs_pval_struct",3,"len")=4 + Set gtmtypes("mvs_pval_struct",3,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab.hte_addr")=3 + Set gtmtypes("mvs_pval_struct",4,"name")="mvs_pval_struct.mvs_ptab.save_value" + Set gtmtypes("mvs_pval_struct",4,"off")=8 + Set gtmtypes("mvs_pval_struct",4,"len")=4 + Set gtmtypes("mvs_pval_struct",4,"type")="addr" + Set gtmtypfldindx("mvs_pval_struct","mvs_ptab.save_value")=4 + ; + Set gtmtypes("mvs_rstrtpc_struct")="struct" + Set gtmtypes("mvs_rstrtpc_struct",0)=2 + Set gtmtypes("mvs_rstrtpc_struct","len")=8 + Set gtmtypes("mvs_rstrtpc_struct",1,"name")="mvs_rstrtpc_struct.restart_pc_save" + Set gtmtypes("mvs_rstrtpc_struct",1,"off")=0 + Set gtmtypes("mvs_rstrtpc_struct",1,"len")=4 + Set gtmtypes("mvs_rstrtpc_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_rstrtpc_struct","restart_pc_save")=1 + Set gtmtypes("mvs_rstrtpc_struct",2,"name")="mvs_rstrtpc_struct.restart_ctxt_save" + Set gtmtypes("mvs_rstrtpc_struct",2,"off")=4 + Set gtmtypes("mvs_rstrtpc_struct",2,"len")=4 + Set gtmtypes("mvs_rstrtpc_struct",2,"type")="addr" + Set gtmtypfldindx("mvs_rstrtpc_struct","restart_ctxt_save")=2 + ; + Set gtmtypes("mvs_tphold_struct")="struct" + Set gtmtypes("mvs_tphold_struct",0)=11 + Set gtmtypes("mvs_tphold_struct","len")=36 + Set gtmtypes("mvs_tphold_struct",1,"name")="mvs_tphold_struct.tphold_tlevel" + Set gtmtypes("mvs_tphold_struct",1,"off")=0 + Set gtmtypes("mvs_tphold_struct",1,"len")=4 + Set gtmtypes("mvs_tphold_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","tphold_tlevel")=1 + Set gtmtypes("mvs_tphold_struct",2,"name")="mvs_tphold_struct.ztwormhole_save" + Set gtmtypes("mvs_tphold_struct",2,"off")=4 + Set gtmtypes("mvs_tphold_struct",2,"len")=32 + Set gtmtypes("mvs_tphold_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save")=2 + Set gtmtypes("mvs_tphold_struct",3,"name")="mvs_tphold_struct.ztwormhole_save.mvtype" + Set gtmtypes("mvs_tphold_struct",3,"off")=4 + Set gtmtypes("mvs_tphold_struct",3,"len")=2 + Set gtmtypes("mvs_tphold_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.mvtype")=3 + Set gtmtypes("mvs_tphold_struct",4,"name")="mvs_tphold_struct.ztwormhole_save.fnpc_indx" + Set gtmtypes("mvs_tphold_struct",4,"off")=7 + Set gtmtypes("mvs_tphold_struct",4,"len")=1 + Set gtmtypes("mvs_tphold_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.fnpc_indx")=4 + Set gtmtypes("mvs_tphold_struct",5,"name")="mvs_tphold_struct.ztwormhole_save.utfcgr_indx" + Set gtmtypes("mvs_tphold_struct",5,"off")=8 + Set gtmtypes("mvs_tphold_struct",5,"len")=4 + Set gtmtypes("mvs_tphold_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.utfcgr_indx")=5 + Set gtmtypes("mvs_tphold_struct",6,"name")="mvs_tphold_struct.ztwormhole_save.filler2" + Set gtmtypes("mvs_tphold_struct",6,"off")=12 + Set gtmtypes("mvs_tphold_struct",6,"len")=4 + Set gtmtypes("mvs_tphold_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.filler2")=6 + Set gtmtypes("mvs_tphold_struct",7,"name")="mvs_tphold_struct.ztwormhole_save.m" + Set gtmtypes("mvs_tphold_struct",7,"off")=16 + Set gtmtypes("mvs_tphold_struct",7,"len")=8 + Set gtmtypes("mvs_tphold_struct",7,"type")="int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.m")=7 + Set gtmtypes("mvs_tphold_struct",7,"dim")=2 + Set gtmtypes("mvs_tphold_struct",8,"name")="mvs_tphold_struct.ztwormhole_save.str" + Set gtmtypes("mvs_tphold_struct",8,"off")=24 + Set gtmtypes("mvs_tphold_struct",8,"len")=12 + Set gtmtypes("mvs_tphold_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str")=8 + Set gtmtypes("mvs_tphold_struct",9,"name")="mvs_tphold_struct.ztwormhole_save.str.char_len" + Set gtmtypes("mvs_tphold_struct",9,"off")=24 + Set gtmtypes("mvs_tphold_struct",9,"len")=4 + Set gtmtypes("mvs_tphold_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.char_len")=9 + Set gtmtypes("mvs_tphold_struct",10,"name")="mvs_tphold_struct.ztwormhole_save.str.len" + Set gtmtypes("mvs_tphold_struct",10,"off")=28 + Set gtmtypes("mvs_tphold_struct",10,"len")=4 + Set gtmtypes("mvs_tphold_struct",10,"type")="int" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.len")=10 + Set gtmtypes("mvs_tphold_struct",11,"name")="mvs_tphold_struct.ztwormhole_save.str.addr" + Set gtmtypes("mvs_tphold_struct",11,"off")=32 + Set gtmtypes("mvs_tphold_struct",11,"len")=4 + Set gtmtypes("mvs_tphold_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_tphold_struct","ztwormhole_save.str.addr")=11 + ; + Set gtmtypes("mvs_trigr_struct")="struct" + Set gtmtypes("mvs_trigr_struct",0)=48 + Set gtmtypes("mvs_trigr_struct","len")=164 + Set gtmtypes("mvs_trigr_struct",1,"name")="mvs_trigr_struct.saved_dollar_truth" + Set gtmtypes("mvs_trigr_struct",1,"off")=0 + Set gtmtypes("mvs_trigr_struct",1,"len")=4 + Set gtmtypes("mvs_trigr_struct",1,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","saved_dollar_truth")=1 + Set gtmtypes("mvs_trigr_struct",2,"name")="mvs_trigr_struct.savtarg" + Set gtmtypes("mvs_trigr_struct",2,"off")=4 + Set gtmtypes("mvs_trigr_struct",2,"len")=32 + Set gtmtypes("mvs_trigr_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","savtarg")=2 + Set gtmtypes("mvs_trigr_struct",3,"name")="mvs_trigr_struct.savtarg.mvtype" + Set gtmtypes("mvs_trigr_struct",3,"off")=4 + Set gtmtypes("mvs_trigr_struct",3,"len")=2 + Set gtmtypes("mvs_trigr_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.mvtype")=3 + Set gtmtypes("mvs_trigr_struct",4,"name")="mvs_trigr_struct.savtarg.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",4,"off")=7 + Set gtmtypes("mvs_trigr_struct",4,"len")=1 + Set gtmtypes("mvs_trigr_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.fnpc_indx")=4 + Set gtmtypes("mvs_trigr_struct",5,"name")="mvs_trigr_struct.savtarg.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",5,"off")=8 + Set gtmtypes("mvs_trigr_struct",5,"len")=4 + Set gtmtypes("mvs_trigr_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.utfcgr_indx")=5 + Set gtmtypes("mvs_trigr_struct",6,"name")="mvs_trigr_struct.savtarg.filler2" + Set gtmtypes("mvs_trigr_struct",6,"off")=12 + Set gtmtypes("mvs_trigr_struct",6,"len")=4 + Set gtmtypes("mvs_trigr_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.filler2")=6 + Set gtmtypes("mvs_trigr_struct",7,"name")="mvs_trigr_struct.savtarg.m" + Set gtmtypes("mvs_trigr_struct",7,"off")=16 + Set gtmtypes("mvs_trigr_struct",7,"len")=8 + Set gtmtypes("mvs_trigr_struct",7,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.m")=7 + Set gtmtypes("mvs_trigr_struct",7,"dim")=2 + Set gtmtypes("mvs_trigr_struct",8,"name")="mvs_trigr_struct.savtarg.str" + Set gtmtypes("mvs_trigr_struct",8,"off")=24 + Set gtmtypes("mvs_trigr_struct",8,"len")=12 + Set gtmtypes("mvs_trigr_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str")=8 + Set gtmtypes("mvs_trigr_struct",9,"name")="mvs_trigr_struct.savtarg.str.char_len" + Set gtmtypes("mvs_trigr_struct",9,"off")=24 + Set gtmtypes("mvs_trigr_struct",9,"len")=4 + Set gtmtypes("mvs_trigr_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.char_len")=9 + Set gtmtypes("mvs_trigr_struct",10,"name")="mvs_trigr_struct.savtarg.str.len" + Set gtmtypes("mvs_trigr_struct",10,"off")=28 + Set gtmtypes("mvs_trigr_struct",10,"len")=4 + Set gtmtypes("mvs_trigr_struct",10,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.len")=10 + Set gtmtypes("mvs_trigr_struct",11,"name")="mvs_trigr_struct.savtarg.str.addr" + Set gtmtypes("mvs_trigr_struct",11,"off")=32 + Set gtmtypes("mvs_trigr_struct",11,"len")=4 + Set gtmtypes("mvs_trigr_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","savtarg.str.addr")=11 + Set gtmtypes("mvs_trigr_struct",12,"name")="mvs_trigr_struct.savextref" + Set gtmtypes("mvs_trigr_struct",12,"off")=36 + Set gtmtypes("mvs_trigr_struct",12,"len")=12 + Set gtmtypes("mvs_trigr_struct",12,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","savextref")=12 + Set gtmtypes("mvs_trigr_struct",13,"name")="mvs_trigr_struct.savextref.char_len" + Set gtmtypes("mvs_trigr_struct",13,"off")=36 + Set gtmtypes("mvs_trigr_struct",13,"len")=4 + Set gtmtypes("mvs_trigr_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","savextref.char_len")=13 + Set gtmtypes("mvs_trigr_struct",14,"name")="mvs_trigr_struct.savextref.len" + Set gtmtypes("mvs_trigr_struct",14,"off")=40 + Set gtmtypes("mvs_trigr_struct",14,"len")=4 + Set gtmtypes("mvs_trigr_struct",14,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","savextref.len")=14 + Set gtmtypes("mvs_trigr_struct",15,"name")="mvs_trigr_struct.savextref.addr" + Set gtmtypes("mvs_trigr_struct",15,"off")=44 + Set gtmtypes("mvs_trigr_struct",15,"len")=4 + Set gtmtypes("mvs_trigr_struct",15,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","savextref.addr")=15 + Set gtmtypes("mvs_trigr_struct",16,"name")="mvs_trigr_struct.ztvalue_changed_ptr" + Set gtmtypes("mvs_trigr_struct",16,"off")=48 + Set gtmtypes("mvs_trigr_struct",16,"len")=4 + Set gtmtypes("mvs_trigr_struct",16,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztvalue_changed_ptr")=16 + Set gtmtypes("mvs_trigr_struct",17,"name")="mvs_trigr_struct.ztvalue_save" + Set gtmtypes("mvs_trigr_struct",17,"off")=52 + Set gtmtypes("mvs_trigr_struct",17,"len")=4 + Set gtmtypes("mvs_trigr_struct",17,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztvalue_save")=17 + Set gtmtypes("mvs_trigr_struct",18,"name")="mvs_trigr_struct.ztname_save" + Set gtmtypes("mvs_trigr_struct",18,"off")=56 + Set gtmtypes("mvs_trigr_struct",18,"len")=4 + Set gtmtypes("mvs_trigr_struct",18,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztname_save")=18 + Set gtmtypes("mvs_trigr_struct",19,"name")="mvs_trigr_struct.ztdata_save" + Set gtmtypes("mvs_trigr_struct",19,"off")=60 + Set gtmtypes("mvs_trigr_struct",19,"len")=4 + Set gtmtypes("mvs_trigr_struct",19,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztdata_save")=19 + Set gtmtypes("mvs_trigr_struct",20,"name")="mvs_trigr_struct.ztdelim_save" + Set gtmtypes("mvs_trigr_struct",20,"off")=64 + Set gtmtypes("mvs_trigr_struct",20,"len")=4 + Set gtmtypes("mvs_trigr_struct",20,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztdelim_save")=20 + Set gtmtypes("mvs_trigr_struct",21,"name")="mvs_trigr_struct.ztoldval_save" + Set gtmtypes("mvs_trigr_struct",21,"off")=68 + Set gtmtypes("mvs_trigr_struct",21,"len")=4 + Set gtmtypes("mvs_trigr_struct",21,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztoldval_save")=21 + Set gtmtypes("mvs_trigr_struct",22,"name")="mvs_trigr_struct.ztriggerop_save" + Set gtmtypes("mvs_trigr_struct",22,"off")=72 + Set gtmtypes("mvs_trigr_struct",22,"len")=4 + Set gtmtypes("mvs_trigr_struct",22,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztriggerop_save")=22 + Set gtmtypes("mvs_trigr_struct",23,"name")="mvs_trigr_struct.ztupdate_save" + Set gtmtypes("mvs_trigr_struct",23,"off")=76 + Set gtmtypes("mvs_trigr_struct",23,"len")=4 + Set gtmtypes("mvs_trigr_struct",23,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ztupdate_save")=23 + Set gtmtypes("mvs_trigr_struct",24,"name")="mvs_trigr_struct.ctxt_save" + Set gtmtypes("mvs_trigr_struct",24,"off")=80 + Set gtmtypes("mvs_trigr_struct",24,"len")=4 + Set gtmtypes("mvs_trigr_struct",24,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","ctxt_save")=24 + Set gtmtypes("mvs_trigr_struct",25,"name")="mvs_trigr_struct.gtm_trigger_depth_save" + Set gtmtypes("mvs_trigr_struct",25,"off")=84 + Set gtmtypes("mvs_trigr_struct",25,"len")=4 + Set gtmtypes("mvs_trigr_struct",25,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","gtm_trigger_depth_save")=25 + Set gtmtypes("mvs_trigr_struct",26,"name")="mvs_trigr_struct.dollar_etrap_save" + Set gtmtypes("mvs_trigr_struct",26,"off")=88 + Set gtmtypes("mvs_trigr_struct",26,"len")=32 + Set gtmtypes("mvs_trigr_struct",26,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save")=26 + Set gtmtypes("mvs_trigr_struct",27,"name")="mvs_trigr_struct.dollar_etrap_save.mvtype" + Set gtmtypes("mvs_trigr_struct",27,"off")=88 + Set gtmtypes("mvs_trigr_struct",27,"len")=2 + Set gtmtypes("mvs_trigr_struct",27,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.mvtype")=27 + Set gtmtypes("mvs_trigr_struct",28,"name")="mvs_trigr_struct.dollar_etrap_save.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",28,"off")=91 + Set gtmtypes("mvs_trigr_struct",28,"len")=1 + Set gtmtypes("mvs_trigr_struct",28,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.fnpc_indx")=28 + Set gtmtypes("mvs_trigr_struct",29,"name")="mvs_trigr_struct.dollar_etrap_save.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",29,"off")=92 + Set gtmtypes("mvs_trigr_struct",29,"len")=4 + Set gtmtypes("mvs_trigr_struct",29,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.utfcgr_indx")=29 + Set gtmtypes("mvs_trigr_struct",30,"name")="mvs_trigr_struct.dollar_etrap_save.filler2" + Set gtmtypes("mvs_trigr_struct",30,"off")=96 + Set gtmtypes("mvs_trigr_struct",30,"len")=4 + Set gtmtypes("mvs_trigr_struct",30,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.filler2")=30 + Set gtmtypes("mvs_trigr_struct",31,"name")="mvs_trigr_struct.dollar_etrap_save.m" + Set gtmtypes("mvs_trigr_struct",31,"off")=100 + Set gtmtypes("mvs_trigr_struct",31,"len")=8 + Set gtmtypes("mvs_trigr_struct",31,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.m")=31 + Set gtmtypes("mvs_trigr_struct",31,"dim")=2 + Set gtmtypes("mvs_trigr_struct",32,"name")="mvs_trigr_struct.dollar_etrap_save.str" + Set gtmtypes("mvs_trigr_struct",32,"off")=108 + Set gtmtypes("mvs_trigr_struct",32,"len")=12 + Set gtmtypes("mvs_trigr_struct",32,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str")=32 + Set gtmtypes("mvs_trigr_struct",33,"name")="mvs_trigr_struct.dollar_etrap_save.str.char_len" + Set gtmtypes("mvs_trigr_struct",33,"off")=108 + Set gtmtypes("mvs_trigr_struct",33,"len")=4 + Set gtmtypes("mvs_trigr_struct",33,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.char_len")=33 + Set gtmtypes("mvs_trigr_struct",34,"name")="mvs_trigr_struct.dollar_etrap_save.str.len" + Set gtmtypes("mvs_trigr_struct",34,"off")=112 + Set gtmtypes("mvs_trigr_struct",34,"len")=4 + Set gtmtypes("mvs_trigr_struct",34,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.len")=34 + Set gtmtypes("mvs_trigr_struct",35,"name")="mvs_trigr_struct.dollar_etrap_save.str.addr" + Set gtmtypes("mvs_trigr_struct",35,"off")=116 + Set gtmtypes("mvs_trigr_struct",35,"len")=4 + Set gtmtypes("mvs_trigr_struct",35,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_etrap_save.str.addr")=35 + Set gtmtypes("mvs_trigr_struct",36,"name")="mvs_trigr_struct.dollar_ztrap_save" + Set gtmtypes("mvs_trigr_struct",36,"off")=120 + Set gtmtypes("mvs_trigr_struct",36,"len")=32 + Set gtmtypes("mvs_trigr_struct",36,"type")="mval" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save")=36 + Set gtmtypes("mvs_trigr_struct",37,"name")="mvs_trigr_struct.dollar_ztrap_save.mvtype" + Set gtmtypes("mvs_trigr_struct",37,"off")=120 + Set gtmtypes("mvs_trigr_struct",37,"len")=2 + Set gtmtypes("mvs_trigr_struct",37,"type")="unsigned-short" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.mvtype")=37 + Set gtmtypes("mvs_trigr_struct",38,"name")="mvs_trigr_struct.dollar_ztrap_save.fnpc_indx" + Set gtmtypes("mvs_trigr_struct",38,"off")=123 + Set gtmtypes("mvs_trigr_struct",38,"len")=1 + Set gtmtypes("mvs_trigr_struct",38,"type")="unsigned-char" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.fnpc_indx")=38 + Set gtmtypes("mvs_trigr_struct",39,"name")="mvs_trigr_struct.dollar_ztrap_save.utfcgr_indx" + Set gtmtypes("mvs_trigr_struct",39,"off")=124 + Set gtmtypes("mvs_trigr_struct",39,"len")=4 + Set gtmtypes("mvs_trigr_struct",39,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.utfcgr_indx")=39 + Set gtmtypes("mvs_trigr_struct",40,"name")="mvs_trigr_struct.dollar_ztrap_save.filler2" + Set gtmtypes("mvs_trigr_struct",40,"off")=128 + Set gtmtypes("mvs_trigr_struct",40,"len")=4 + Set gtmtypes("mvs_trigr_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.filler2")=40 + Set gtmtypes("mvs_trigr_struct",41,"name")="mvs_trigr_struct.dollar_ztrap_save.m" + Set gtmtypes("mvs_trigr_struct",41,"off")=132 + Set gtmtypes("mvs_trigr_struct",41,"len")=8 + Set gtmtypes("mvs_trigr_struct",41,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.m")=41 + Set gtmtypes("mvs_trigr_struct",41,"dim")=2 + Set gtmtypes("mvs_trigr_struct",42,"name")="mvs_trigr_struct.dollar_ztrap_save.str" + Set gtmtypes("mvs_trigr_struct",42,"off")=140 + Set gtmtypes("mvs_trigr_struct",42,"len")=12 + Set gtmtypes("mvs_trigr_struct",42,"type")="mstr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str")=42 + Set gtmtypes("mvs_trigr_struct",43,"name")="mvs_trigr_struct.dollar_ztrap_save.str.char_len" + Set gtmtypes("mvs_trigr_struct",43,"off")=140 + Set gtmtypes("mvs_trigr_struct",43,"len")=4 + Set gtmtypes("mvs_trigr_struct",43,"type")="unsigned-int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.char_len")=43 + Set gtmtypes("mvs_trigr_struct",44,"name")="mvs_trigr_struct.dollar_ztrap_save.str.len" + Set gtmtypes("mvs_trigr_struct",44,"off")=144 + Set gtmtypes("mvs_trigr_struct",44,"len")=4 + Set gtmtypes("mvs_trigr_struct",44,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.len")=44 + Set gtmtypes("mvs_trigr_struct",45,"name")="mvs_trigr_struct.dollar_ztrap_save.str.addr" + Set gtmtypes("mvs_trigr_struct",45,"off")=148 + Set gtmtypes("mvs_trigr_struct",45,"len")=4 + Set gtmtypes("mvs_trigr_struct",45,"type")="addr" + Set gtmtypfldindx("mvs_trigr_struct","dollar_ztrap_save.str.addr")=45 + Set gtmtypes("mvs_trigr_struct",46,"name")="mvs_trigr_struct.ztrap_explicit_null_save" + Set gtmtypes("mvs_trigr_struct",46,"off")=152 + Set gtmtypes("mvs_trigr_struct",46,"len")=4 + Set gtmtypes("mvs_trigr_struct",46,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","ztrap_explicit_null_save")=46 + Set gtmtypes("mvs_trigr_struct",47,"name")="mvs_trigr_struct.mumps_status_save" + Set gtmtypes("mvs_trigr_struct",47,"off")=156 + Set gtmtypes("mvs_trigr_struct",47,"len")=4 + Set gtmtypes("mvs_trigr_struct",47,"type")="int" + Set gtmtypfldindx("mvs_trigr_struct","mumps_status_save")=47 + Set gtmtypes("mvs_trigr_struct",48,"name")="mvs_trigr_struct.run_time_save" + Set gtmtypes("mvs_trigr_struct",48,"off")=160 + Set gtmtypes("mvs_trigr_struct",48,"len")=4 + Set gtmtypes("mvs_trigr_struct",48,"type")="boolean_t" + Set gtmtypfldindx("mvs_trigr_struct","run_time_save")=48 + ; + Set gtmtypes("mvs_zintcmd_struct")="struct" + Set gtmtypes("mvs_zintcmd_struct",0)=8 + Set gtmtypes("mvs_zintcmd_struct","len")=28 + Set gtmtypes("mvs_zintcmd_struct",1,"name")="mvs_zintcmd_struct.command" + Set gtmtypes("mvs_zintcmd_struct",1,"off")=0 + Set gtmtypes("mvs_zintcmd_struct",1,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",1,"type")="int" + Set gtmtypfldindx("mvs_zintcmd_struct","command")=1 + Set gtmtypes("mvs_zintcmd_struct",2,"name")="mvs_zintcmd_struct.end_or_remain" + Set gtmtypes("mvs_zintcmd_struct",2,"off")=4 + Set gtmtypes("mvs_zintcmd_struct",2,"len")=8 + Set gtmtypes("mvs_zintcmd_struct",2,"type")="ABS_TIME" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain")=2 + Set gtmtypes("mvs_zintcmd_struct",3,"name")="mvs_zintcmd_struct.end_or_remain.at_sec" + Set gtmtypes("mvs_zintcmd_struct",3,"off")=4 + Set gtmtypes("mvs_zintcmd_struct",3,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",3,"type")="long" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain.at_sec")=3 + Set gtmtypes("mvs_zintcmd_struct",4,"name")="mvs_zintcmd_struct.end_or_remain.at_usec" + Set gtmtypes("mvs_zintcmd_struct",4,"off")=8 + Set gtmtypes("mvs_zintcmd_struct",4,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",4,"type")="long" + Set gtmtypfldindx("mvs_zintcmd_struct","end_or_remain.at_usec")=4 + Set gtmtypes("mvs_zintcmd_struct",5,"name")="mvs_zintcmd_struct.restart_pc_check" + Set gtmtypes("mvs_zintcmd_struct",5,"off")=12 + Set gtmtypes("mvs_zintcmd_struct",5,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",5,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_pc_check")=5 + Set gtmtypes("mvs_zintcmd_struct",6,"name")="mvs_zintcmd_struct.restart_ctxt_check" + Set gtmtypes("mvs_zintcmd_struct",6,"off")=16 + Set gtmtypes("mvs_zintcmd_struct",6,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_ctxt_check")=6 + Set gtmtypes("mvs_zintcmd_struct",7,"name")="mvs_zintcmd_struct.restart_pc_prior" + Set gtmtypes("mvs_zintcmd_struct",7,"off")=20 + Set gtmtypes("mvs_zintcmd_struct",7,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_pc_prior")=7 + Set gtmtypes("mvs_zintcmd_struct",8,"name")="mvs_zintcmd_struct.restart_ctxt_prior" + Set gtmtypes("mvs_zintcmd_struct",8,"off")=24 + Set gtmtypes("mvs_zintcmd_struct",8,"len")=4 + Set gtmtypes("mvs_zintcmd_struct",8,"type")="addr" + Set gtmtypfldindx("mvs_zintcmd_struct","restart_ctxt_prior")=8 + ; + Set gtmtypes("mvs_zintdev_struct")="struct" + Set gtmtypes("mvs_zintdev_struct",0)=7 + Set gtmtypes("mvs_zintdev_struct","len")=24 + Set gtmtypes("mvs_zintdev_struct",1,"name")="mvs_zintdev_struct.io_ptr" + Set gtmtypes("mvs_zintdev_struct",1,"off")=0 + Set gtmtypes("mvs_zintdev_struct",1,"len")=4 + Set gtmtypes("mvs_zintdev_struct",1,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","io_ptr")=1 + Set gtmtypes("mvs_zintdev_struct",2,"name")="mvs_zintdev_struct.buffer_valid" + Set gtmtypes("mvs_zintdev_struct",2,"off")=4 + Set gtmtypes("mvs_zintdev_struct",2,"len")=4 + Set gtmtypes("mvs_zintdev_struct",2,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintdev_struct","buffer_valid")=2 + Set gtmtypes("mvs_zintdev_struct",3,"name")="mvs_zintdev_struct.curr_sp_buffer" + Set gtmtypes("mvs_zintdev_struct",3,"off")=8 + Set gtmtypes("mvs_zintdev_struct",3,"len")=12 + Set gtmtypes("mvs_zintdev_struct",3,"type")="mstr" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer")=3 + Set gtmtypes("mvs_zintdev_struct",4,"name")="mvs_zintdev_struct.curr_sp_buffer.char_len" + Set gtmtypes("mvs_zintdev_struct",4,"off")=8 + Set gtmtypes("mvs_zintdev_struct",4,"len")=4 + Set gtmtypes("mvs_zintdev_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.char_len")=4 + Set gtmtypes("mvs_zintdev_struct",5,"name")="mvs_zintdev_struct.curr_sp_buffer.len" + Set gtmtypes("mvs_zintdev_struct",5,"off")=12 + Set gtmtypes("mvs_zintdev_struct",5,"len")=4 + Set gtmtypes("mvs_zintdev_struct",5,"type")="int" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.len")=5 + Set gtmtypes("mvs_zintdev_struct",6,"name")="mvs_zintdev_struct.curr_sp_buffer.addr" + Set gtmtypes("mvs_zintdev_struct",6,"off")=16 + Set gtmtypes("mvs_zintdev_struct",6,"len")=4 + Set gtmtypes("mvs_zintdev_struct",6,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","curr_sp_buffer.addr")=6 + Set gtmtypes("mvs_zintdev_struct",7,"name")="mvs_zintdev_struct.socketptr" + Set gtmtypes("mvs_zintdev_struct",7,"off")=20 + Set gtmtypes("mvs_zintdev_struct",7,"len")=4 + Set gtmtypes("mvs_zintdev_struct",7,"type")="addr" + Set gtmtypfldindx("mvs_zintdev_struct","socketptr")=7 + ; + Set gtmtypes("mvs_zintr_struct")="struct" + Set gtmtypes("mvs_zintr_struct",0)=35 + Set gtmtypes("mvs_zintr_struct","len")=120 + Set gtmtypes("mvs_zintr_struct",1,"name")="mvs_zintr_struct.saved_dollar_truth" + Set gtmtypes("mvs_zintr_struct",1,"off")=0 + Set gtmtypes("mvs_zintr_struct",1,"len")=4 + Set gtmtypes("mvs_zintr_struct",1,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintr_struct","saved_dollar_truth")=1 + Set gtmtypes("mvs_zintr_struct",2,"name")="mvs_zintr_struct.savtarg" + Set gtmtypes("mvs_zintr_struct",2,"off")=4 + Set gtmtypes("mvs_zintr_struct",2,"len")=32 + Set gtmtypes("mvs_zintr_struct",2,"type")="mval" + Set gtmtypfldindx("mvs_zintr_struct","savtarg")=2 + Set gtmtypes("mvs_zintr_struct",3,"name")="mvs_zintr_struct.savtarg.mvtype" + Set gtmtypes("mvs_zintr_struct",3,"off")=4 + Set gtmtypes("mvs_zintr_struct",3,"len")=2 + Set gtmtypes("mvs_zintr_struct",3,"type")="unsigned-short" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.mvtype")=3 + Set gtmtypes("mvs_zintr_struct",4,"name")="mvs_zintr_struct.savtarg.fnpc_indx" + Set gtmtypes("mvs_zintr_struct",4,"off")=7 + Set gtmtypes("mvs_zintr_struct",4,"len")=1 + Set gtmtypes("mvs_zintr_struct",4,"type")="unsigned-char" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.fnpc_indx")=4 + Set gtmtypes("mvs_zintr_struct",5,"name")="mvs_zintr_struct.savtarg.utfcgr_indx" + Set gtmtypes("mvs_zintr_struct",5,"off")=8 + Set gtmtypes("mvs_zintr_struct",5,"len")=4 + Set gtmtypes("mvs_zintr_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.utfcgr_indx")=5 + Set gtmtypes("mvs_zintr_struct",6,"name")="mvs_zintr_struct.savtarg.filler2" + Set gtmtypes("mvs_zintr_struct",6,"off")=12 + Set gtmtypes("mvs_zintr_struct",6,"len")=4 + Set gtmtypes("mvs_zintr_struct",6,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.filler2")=6 + Set gtmtypes("mvs_zintr_struct",7,"name")="mvs_zintr_struct.savtarg.m" + Set gtmtypes("mvs_zintr_struct",7,"off")=16 + Set gtmtypes("mvs_zintr_struct",7,"len")=8 + Set gtmtypes("mvs_zintr_struct",7,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.m")=7 + Set gtmtypes("mvs_zintr_struct",7,"dim")=2 + Set gtmtypes("mvs_zintr_struct",8,"name")="mvs_zintr_struct.savtarg.str" + Set gtmtypes("mvs_zintr_struct",8,"off")=24 + Set gtmtypes("mvs_zintr_struct",8,"len")=12 + Set gtmtypes("mvs_zintr_struct",8,"type")="mstr" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str")=8 + Set gtmtypes("mvs_zintr_struct",9,"name")="mvs_zintr_struct.savtarg.str.char_len" + Set gtmtypes("mvs_zintr_struct",9,"off")=24 + Set gtmtypes("mvs_zintr_struct",9,"len")=4 + Set gtmtypes("mvs_zintr_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.char_len")=9 + Set gtmtypes("mvs_zintr_struct",10,"name")="mvs_zintr_struct.savtarg.str.len" + Set gtmtypes("mvs_zintr_struct",10,"off")=28 + Set gtmtypes("mvs_zintr_struct",10,"len")=4 + Set gtmtypes("mvs_zintr_struct",10,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.len")=10 + Set gtmtypes("mvs_zintr_struct",11,"name")="mvs_zintr_struct.savtarg.str.addr" + Set gtmtypes("mvs_zintr_struct",11,"off")=32 + Set gtmtypes("mvs_zintr_struct",11,"len")=4 + Set gtmtypes("mvs_zintr_struct",11,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","savtarg.str.addr")=11 + Set gtmtypes("mvs_zintr_struct",12,"name")="mvs_zintr_struct.savextref" + Set gtmtypes("mvs_zintr_struct",12,"off")=36 + Set gtmtypes("mvs_zintr_struct",12,"len")=12 + Set gtmtypes("mvs_zintr_struct",12,"type")="mstr" + Set gtmtypfldindx("mvs_zintr_struct","savextref")=12 + Set gtmtypes("mvs_zintr_struct",13,"name")="mvs_zintr_struct.savextref.char_len" + Set gtmtypes("mvs_zintr_struct",13,"off")=36 + Set gtmtypes("mvs_zintr_struct",13,"len")=4 + Set gtmtypes("mvs_zintr_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","savextref.char_len")=13 + Set gtmtypes("mvs_zintr_struct",14,"name")="mvs_zintr_struct.savextref.len" + Set gtmtypes("mvs_zintr_struct",14,"off")=40 + Set gtmtypes("mvs_zintr_struct",14,"len")=4 + Set gtmtypes("mvs_zintr_struct",14,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","savextref.len")=14 + Set gtmtypes("mvs_zintr_struct",15,"name")="mvs_zintr_struct.savextref.addr" + Set gtmtypes("mvs_zintr_struct",15,"off")=44 + Set gtmtypes("mvs_zintr_struct",15,"len")=4 + Set gtmtypes("mvs_zintr_struct",15,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","savextref.addr")=15 + Set gtmtypes("mvs_zintr_struct",16,"name")="mvs_zintr_struct.error_frame_save" + Set gtmtypes("mvs_zintr_struct",16,"off")=48 + Set gtmtypes("mvs_zintr_struct",16,"len")=4 + Set gtmtypes("mvs_zintr_struct",16,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","error_frame_save")=16 + Set gtmtypes("mvs_zintr_struct",17,"name")="mvs_zintr_struct.dollar_ecode_save" + Set gtmtypes("mvs_zintr_struct",17,"off")=52 + Set gtmtypes("mvs_zintr_struct",17,"len")=44 + Set gtmtypes("mvs_zintr_struct",17,"type")="dollar_ecode_type" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save")=17 + Set gtmtypes("mvs_zintr_struct",18,"name")="mvs_zintr_struct.dollar_ecode_save.begin" + Set gtmtypes("mvs_zintr_struct",18,"off")=52 + Set gtmtypes("mvs_zintr_struct",18,"len")=4 + Set gtmtypes("mvs_zintr_struct",18,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.begin")=18 + Set gtmtypes("mvs_zintr_struct",19,"name")="mvs_zintr_struct.dollar_ecode_save.end" + Set gtmtypes("mvs_zintr_struct",19,"off")=56 + Set gtmtypes("mvs_zintr_struct",19,"len")=4 + Set gtmtypes("mvs_zintr_struct",19,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.end")=19 + Set gtmtypes("mvs_zintr_struct",20,"name")="mvs_zintr_struct.dollar_ecode_save.top" + Set gtmtypes("mvs_zintr_struct",20,"off")=60 + Set gtmtypes("mvs_zintr_struct",20,"len")=4 + Set gtmtypes("mvs_zintr_struct",20,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.top")=20 + Set gtmtypes("mvs_zintr_struct",21,"name")="mvs_zintr_struct.dollar_ecode_save.array" + Set gtmtypes("mvs_zintr_struct",21,"off")=64 + Set gtmtypes("mvs_zintr_struct",21,"len")=4 + Set gtmtypes("mvs_zintr_struct",21,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.array")=21 + Set gtmtypes("mvs_zintr_struct",22,"name")="mvs_zintr_struct.dollar_ecode_save.index" + Set gtmtypes("mvs_zintr_struct",22,"off")=68 + Set gtmtypes("mvs_zintr_struct",22,"len")=4 + Set gtmtypes("mvs_zintr_struct",22,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.index")=22 + Set gtmtypes("mvs_zintr_struct",23,"name")="mvs_zintr_struct.dollar_ecode_save.error_last_ecode" + Set gtmtypes("mvs_zintr_struct",23,"off")=72 + Set gtmtypes("mvs_zintr_struct",23,"len")=4 + Set gtmtypes("mvs_zintr_struct",23,"type")="int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_last_ecode")=23 + Set gtmtypes("mvs_zintr_struct",24,"name")="mvs_zintr_struct.dollar_ecode_save.error_last_b_line" + Set gtmtypes("mvs_zintr_struct",24,"off")=76 + Set gtmtypes("mvs_zintr_struct",24,"len")=4 + Set gtmtypes("mvs_zintr_struct",24,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_last_b_line")=24 + Set gtmtypes("mvs_zintr_struct",25,"name")="mvs_zintr_struct.dollar_ecode_save.first_ecode_error_frame" + Set gtmtypes("mvs_zintr_struct",25,"off")=80 + Set gtmtypes("mvs_zintr_struct",25,"len")=4 + Set gtmtypes("mvs_zintr_struct",25,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.first_ecode_error_frame")=25 + Set gtmtypes("mvs_zintr_struct",26,"name")="mvs_zintr_struct.dollar_ecode_save.error_rtn_addr" + Set gtmtypes("mvs_zintr_struct",26,"off")=84 + Set gtmtypes("mvs_zintr_struct",26,"len")=4 + Set gtmtypes("mvs_zintr_struct",26,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_rtn_addr")=26 + Set gtmtypes("mvs_zintr_struct",27,"name")="mvs_zintr_struct.dollar_ecode_save.error_rtn_ctxt" + Set gtmtypes("mvs_zintr_struct",27,"off")=88 + Set gtmtypes("mvs_zintr_struct",27,"len")=4 + Set gtmtypes("mvs_zintr_struct",27,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_rtn_ctxt")=27 + Set gtmtypes("mvs_zintr_struct",28,"name")="mvs_zintr_struct.dollar_ecode_save.error_return_addr" + Set gtmtypes("mvs_zintr_struct",28,"off")=92 + Set gtmtypes("mvs_zintr_struct",28,"len")=4 + Set gtmtypes("mvs_zintr_struct",28,"type")="void" + Set gtmtypfldindx("mvs_zintr_struct","dollar_ecode_save.error_return_addr")=28 + Set gtmtypes("mvs_zintr_struct",29,"name")="mvs_zintr_struct.dollar_stack_save" + Set gtmtypes("mvs_zintr_struct",29,"off")=96 + Set gtmtypes("mvs_zintr_struct",29,"len")=24 + Set gtmtypes("mvs_zintr_struct",29,"type")="dollar_stack_type" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save")=29 + Set gtmtypes("mvs_zintr_struct",30,"name")="mvs_zintr_struct.dollar_stack_save.begin" + Set gtmtypes("mvs_zintr_struct",30,"off")=96 + Set gtmtypes("mvs_zintr_struct",30,"len")=4 + Set gtmtypes("mvs_zintr_struct",30,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.begin")=30 + Set gtmtypes("mvs_zintr_struct",31,"name")="mvs_zintr_struct.dollar_stack_save.end" + Set gtmtypes("mvs_zintr_struct",31,"off")=100 + Set gtmtypes("mvs_zintr_struct",31,"len")=4 + Set gtmtypes("mvs_zintr_struct",31,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.end")=31 + Set gtmtypes("mvs_zintr_struct",32,"name")="mvs_zintr_struct.dollar_stack_save.top" + Set gtmtypes("mvs_zintr_struct",32,"off")=104 + Set gtmtypes("mvs_zintr_struct",32,"len")=4 + Set gtmtypes("mvs_zintr_struct",32,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.top")=32 + Set gtmtypes("mvs_zintr_struct",33,"name")="mvs_zintr_struct.dollar_stack_save.array" + Set gtmtypes("mvs_zintr_struct",33,"off")=108 + Set gtmtypes("mvs_zintr_struct",33,"len")=4 + Set gtmtypes("mvs_zintr_struct",33,"type")="addr" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.array")=33 + Set gtmtypes("mvs_zintr_struct",34,"name")="mvs_zintr_struct.dollar_stack_save.index" + Set gtmtypes("mvs_zintr_struct",34,"off")=112 + Set gtmtypes("mvs_zintr_struct",34,"len")=4 + Set gtmtypes("mvs_zintr_struct",34,"type")="unsigned-int" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.index")=34 + Set gtmtypes("mvs_zintr_struct",35,"name")="mvs_zintr_struct.dollar_stack_save.incomplete" + Set gtmtypes("mvs_zintr_struct",35,"off")=116 + Set gtmtypes("mvs_zintr_struct",35,"len")=4 + Set gtmtypes("mvs_zintr_struct",35,"type")="boolean_t" + Set gtmtypfldindx("mvs_zintr_struct","dollar_stack_save.incomplete")=35 + ; + Set gtmtypes("nametabent")="struct" + Set gtmtypes("nametabent",0)=2 + Set gtmtypes("nametabent","len")=32 + Set gtmtypes("nametabent",1,"name")="nametabent.len" + Set gtmtypes("nametabent",1,"off")=0 + Set gtmtypes("nametabent",1,"len")=1 + Set gtmtypes("nametabent",1,"type")="char" + Set gtmtypfldindx("nametabent","len")=1 + Set gtmtypes("nametabent",2,"name")="nametabent.name" + Set gtmtypes("nametabent",2,"off")=1 + Set gtmtypes("nametabent",2,"len")=31 + Set gtmtypes("nametabent",2,"type")="char" + Set gtmtypfldindx("nametabent","name")=2 + ; + Set gtmtypes("node_local")="struct" + Set gtmtypes("node_local",0)=208 + Set gtmtypes("node_local","len")=51144 + Set gtmtypes("node_local",1,"name")="node_local.label" + Set gtmtypes("node_local",1,"off")=0 + Set gtmtypes("node_local",1,"len")=12 + Set gtmtypes("node_local",1,"type")="unsigned-char" + Set gtmtypfldindx("node_local","label")=1 + Set gtmtypes("node_local",2,"name")="node_local.fname" + Set gtmtypes("node_local",2,"off")=12 + Set gtmtypes("node_local",2,"len")=256 + Set gtmtypes("node_local",2,"type")="unsigned-char" + Set gtmtypfldindx("node_local","fname")=2 + Set gtmtypes("node_local",3,"name")="node_local.now_running" + Set gtmtypes("node_local",3,"off")=268 + Set gtmtypes("node_local",3,"len")=36 + Set gtmtypes("node_local",3,"type")="char" + Set gtmtypfldindx("node_local","now_running")=3 + Set gtmtypes("node_local",4,"name")="node_local.machine_name" + Set gtmtypes("node_local",4,"off")=304 + Set gtmtypes("node_local",4,"len")=256 + Set gtmtypes("node_local",4,"type")="char" + Set gtmtypfldindx("node_local","machine_name")=4 + Set gtmtypes("node_local",5,"name")="node_local.bt_header_off" + Set gtmtypes("node_local",5,"off")=560 + Set gtmtypes("node_local",5,"len")=4 + Set gtmtypes("node_local",5,"type")="intptr_t" + Set gtmtypfldindx("node_local","bt_header_off")=5 + Set gtmtypes("node_local",6,"name")="node_local.bt_base_off" + Set gtmtypes("node_local",6,"off")=564 + Set gtmtypes("node_local",6,"len")=4 + Set gtmtypes("node_local",6,"type")="intptr_t" + Set gtmtypfldindx("node_local","bt_base_off")=6 + Set gtmtypes("node_local",7,"name")="node_local.th_base_off" + Set gtmtypes("node_local",7,"off")=568 + Set gtmtypes("node_local",7,"len")=4 + Set gtmtypes("node_local",7,"type")="intptr_t" + Set gtmtypfldindx("node_local","th_base_off")=7 + Set gtmtypes("node_local",8,"name")="node_local.cache_off" + Set gtmtypes("node_local",8,"off")=572 + Set gtmtypes("node_local",8,"len")=4 + Set gtmtypes("node_local",8,"type")="intptr_t" + Set gtmtypfldindx("node_local","cache_off")=8 + Set gtmtypes("node_local",9,"name")="node_local.cur_lru_cache_rec_off" + Set gtmtypes("node_local",9,"off")=576 + Set gtmtypes("node_local",9,"len")=4 + Set gtmtypes("node_local",9,"type")="intptr_t" + Set gtmtypfldindx("node_local","cur_lru_cache_rec_off")=9 + Set gtmtypes("node_local",10,"name")="node_local.critical" + Set gtmtypes("node_local",10,"off")=580 + Set gtmtypes("node_local",10,"len")=4 + Set gtmtypes("node_local",10,"type")="intptr_t" + Set gtmtypfldindx("node_local","critical")=10 + Set gtmtypes("node_local",11,"name")="node_local.jnl_buff" + Set gtmtypes("node_local",11,"off")=584 + Set gtmtypes("node_local",11,"len")=4 + Set gtmtypes("node_local",11,"type")="intptr_t" + Set gtmtypfldindx("node_local","jnl_buff")=11 + Set gtmtypes("node_local",12,"name")="node_local.shmpool_buffer" + Set gtmtypes("node_local",12,"off")=588 + Set gtmtypes("node_local",12,"len")=4 + Set gtmtypes("node_local",12,"type")="intptr_t" + Set gtmtypfldindx("node_local","shmpool_buffer")=12 + Set gtmtypes("node_local",13,"name")="node_local.lock_addrs" + Set gtmtypes("node_local",13,"off")=592 + Set gtmtypes("node_local",13,"len")=4 + Set gtmtypes("node_local",13,"type")="intptr_t" + Set gtmtypfldindx("node_local","lock_addrs")=13 + Set gtmtypes("node_local",14,"name")="node_local.hdr" + Set gtmtypes("node_local",14,"off")=596 + Set gtmtypes("node_local",14,"len")=4 + Set gtmtypes("node_local",14,"type")="intptr_t" + Set gtmtypfldindx("node_local","hdr")=14 + Set gtmtypes("node_local",15,"name")="node_local.in_crit" + Set gtmtypes("node_local",15,"off")=600 + Set gtmtypes("node_local",15,"len")=4 + Set gtmtypes("node_local",15,"type")="int" + Set gtmtypfldindx("node_local","in_crit")=15 + Set gtmtypes("node_local",16,"name")="node_local.in_reinit" + Set gtmtypes("node_local",16,"off")=604 + Set gtmtypes("node_local",16,"len")=4 + Set gtmtypes("node_local",16,"type")="int" + Set gtmtypfldindx("node_local","in_reinit")=16 + Set gtmtypes("node_local",17,"name")="node_local.ccp_cycle" + Set gtmtypes("node_local",17,"off")=608 + Set gtmtypes("node_local",17,"len")=2 + Set gtmtypes("node_local",17,"type")="unsigned-short" + Set gtmtypfldindx("node_local","ccp_cycle")=17 + Set gtmtypes("node_local",18,"name")="node_local.filler" + Set gtmtypes("node_local",18,"off")=610 + Set gtmtypes("node_local",18,"len")=2 + Set gtmtypes("node_local",18,"type")="unsigned-short" + Set gtmtypfldindx("node_local","filler")=18 + Set gtmtypes("node_local",19,"name")="node_local.ccp_crit_blocked" + Set gtmtypes("node_local",19,"off")=612 + Set gtmtypes("node_local",19,"len")=4 + Set gtmtypes("node_local",19,"type")="boolean_t" + Set gtmtypfldindx("node_local","ccp_crit_blocked")=19 + Set gtmtypes("node_local",20,"name")="node_local.ccp_state" + Set gtmtypes("node_local",20,"off")=616 + Set gtmtypes("node_local",20,"len")=4 + Set gtmtypes("node_local",20,"type")="int" + Set gtmtypfldindx("node_local","ccp_state")=20 + Set gtmtypes("node_local",21,"name")="node_local.ccp_jnl_closed" + Set gtmtypes("node_local",21,"off")=620 + Set gtmtypes("node_local",21,"len")=4 + Set gtmtypes("node_local",21,"type")="boolean_t" + Set gtmtypfldindx("node_local","ccp_jnl_closed")=21 + Set gtmtypes("node_local",22,"name")="node_local.glob_sec_init" + Set gtmtypes("node_local",22,"off")=624 + Set gtmtypes("node_local",22,"len")=4 + Set gtmtypes("node_local",22,"type")="boolean_t" + Set gtmtypfldindx("node_local","glob_sec_init")=22 + Set gtmtypes("node_local",23,"name")="node_local.wtstart_pid" + Set gtmtypes("node_local",23,"off")=628 + Set gtmtypes("node_local",23,"len")=32 + Set gtmtypes("node_local",23,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wtstart_pid")=23 + Set gtmtypes("node_local",23,"dim")=8 + Set gtmtypes("node_local",24,"name")="node_local.wc_blocked" + Set gtmtypes("node_local",24,"off")=660 + Set gtmtypes("node_local",24,"len")=4 + Set gtmtypes("node_local",24,"type")="boolean_t" + Set gtmtypfldindx("node_local","wc_blocked")=24 + Set gtmtypes("node_local",25,"name")="node_local.wc_var_lock" + Set gtmtypes("node_local",25,"off")=664 + Set gtmtypes("node_local",25,"len")=8 + Set gtmtypes("node_local",25,"type")="global_latch_t" + Set gtmtypfldindx("node_local","wc_var_lock")=25 + Set gtmtypes("node_local",26,"name")="node_local.wc_var_lock.u" + Set gtmtypes("node_local",26,"off")=664 + Set gtmtypes("node_local",26,"len")=8 + Set gtmtypes("node_local",26,"type")="union" + Set gtmtypfldindx("node_local","wc_var_lock.u")=26 + Set gtmtypes("node_local",27,"name")="node_local.wc_var_lock.u.pid_imgcnt" + Set gtmtypes("node_local",27,"off")=664 + Set gtmtypes("node_local",27,"len")=8 + Set gtmtypes("node_local",27,"type")="uint64_t" + Set gtmtypfldindx("node_local","wc_var_lock.u.pid_imgcnt")=27 + Set gtmtypes("node_local",28,"name")="node_local.wc_var_lock.u.parts" + Set gtmtypes("node_local",28,"off")=664 + Set gtmtypes("node_local",28,"len")=8 + Set gtmtypes("node_local",28,"type")="struct" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts")=28 + Set gtmtypes("node_local",29,"name")="node_local.wc_var_lock.u.parts.latch_pid" + Set gtmtypes("node_local",29,"off")=664 + Set gtmtypes("node_local",29,"len")=4 + Set gtmtypes("node_local",29,"type")="int" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts.latch_pid")=29 + Set gtmtypes("node_local",30,"name")="node_local.wc_var_lock.u.parts.latch_word" + Set gtmtypes("node_local",30,"off")=668 + Set gtmtypes("node_local",30,"len")=4 + Set gtmtypes("node_local",30,"type")="int" + Set gtmtypfldindx("node_local","wc_var_lock.u.parts.latch_word")=30 + Set gtmtypes("node_local",31,"name")="node_local.fill_cacheline1" + Set gtmtypes("node_local",31,"off")=672 + Set gtmtypes("node_local",31,"len")=24 + Set gtmtypes("node_local",31,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline1")=31 + Set gtmtypes("node_local",32,"name")="node_local.db_latch" + Set gtmtypes("node_local",32,"off")=696 + Set gtmtypes("node_local",32,"len")=8 + Set gtmtypes("node_local",32,"type")="global_latch_t" + Set gtmtypfldindx("node_local","db_latch")=32 + Set gtmtypes("node_local",33,"name")="node_local.db_latch.u" + Set gtmtypes("node_local",33,"off")=696 + Set gtmtypes("node_local",33,"len")=8 + Set gtmtypes("node_local",33,"type")="union" + Set gtmtypfldindx("node_local","db_latch.u")=33 + Set gtmtypes("node_local",34,"name")="node_local.db_latch.u.pid_imgcnt" + Set gtmtypes("node_local",34,"off")=696 + Set gtmtypes("node_local",34,"len")=8 + Set gtmtypes("node_local",34,"type")="uint64_t" + Set gtmtypfldindx("node_local","db_latch.u.pid_imgcnt")=34 + Set gtmtypes("node_local",35,"name")="node_local.db_latch.u.parts" + Set gtmtypes("node_local",35,"off")=696 + Set gtmtypes("node_local",35,"len")=8 + Set gtmtypes("node_local",35,"type")="struct" + Set gtmtypfldindx("node_local","db_latch.u.parts")=35 + Set gtmtypes("node_local",36,"name")="node_local.db_latch.u.parts.latch_pid" + Set gtmtypes("node_local",36,"off")=696 + Set gtmtypes("node_local",36,"len")=4 + Set gtmtypes("node_local",36,"type")="int" + Set gtmtypfldindx("node_local","db_latch.u.parts.latch_pid")=36 + Set gtmtypes("node_local",37,"name")="node_local.db_latch.u.parts.latch_word" + Set gtmtypes("node_local",37,"off")=700 + Set gtmtypes("node_local",37,"len")=4 + Set gtmtypes("node_local",37,"type")="int" + Set gtmtypfldindx("node_local","db_latch.u.parts.latch_word")=37 + Set gtmtypes("node_local",38,"name")="node_local.fill_cacheline2" + Set gtmtypes("node_local",38,"off")=704 + Set gtmtypes("node_local",38,"len")=24 + Set gtmtypes("node_local",38,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline2")=38 + Set gtmtypes("node_local",39,"name")="node_local.cache_hits" + Set gtmtypes("node_local",39,"off")=728 + Set gtmtypes("node_local",39,"len")=4 + Set gtmtypes("node_local",39,"type")="int" + Set gtmtypfldindx("node_local","cache_hits")=39 + Set gtmtypes("node_local",40,"name")="node_local.wc_in_free" + Set gtmtypes("node_local",40,"off")=732 + Set gtmtypes("node_local",40,"len")=4 + Set gtmtypes("node_local",40,"type")="int" + Set gtmtypfldindx("node_local","wc_in_free")=40 + Set gtmtypes("node_local",41,"name")="node_local.wcs_timers" + Set gtmtypes("node_local",41,"off")=736 + Set gtmtypes("node_local",41,"len")=4 + Set gtmtypes("node_local",41,"type")="int" + Set gtmtypfldindx("node_local","wcs_timers")=41 + Set gtmtypes("node_local",42,"name")="node_local.fill_cacheline3" + Set gtmtypes("node_local",42,"off")=740 + Set gtmtypes("node_local",42,"len")=28 + Set gtmtypes("node_local",42,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline3")=42 + Set gtmtypes("node_local",43,"name")="node_local.wcs_active_lvl" + Set gtmtypes("node_local",43,"off")=768 + Set gtmtypes("node_local",43,"len")=4 + Set gtmtypes("node_local",43,"type")="int" + Set gtmtypfldindx("node_local","wcs_active_lvl")=43 + Set gtmtypes("node_local",44,"name")="node_local.fill_cacheline4" + Set gtmtypes("node_local",44,"off")=772 + Set gtmtypes("node_local",44,"len")=28 + Set gtmtypes("node_local",44,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline4")=44 + Set gtmtypes("node_local",45,"name")="node_local.wcs_staleness" + Set gtmtypes("node_local",45,"off")=800 + Set gtmtypes("node_local",45,"len")=4 + Set gtmtypes("node_local",45,"type")="int" + Set gtmtypfldindx("node_local","wcs_staleness")=45 + Set gtmtypes("node_local",46,"name")="node_local.fill_cacheline5" + Set gtmtypes("node_local",46,"off")=804 + Set gtmtypes("node_local",46,"len")=28 + Set gtmtypes("node_local",46,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline5")=46 + Set gtmtypes("node_local",47,"name")="node_local.ref_cnt" + Set gtmtypes("node_local",47,"off")=832 + Set gtmtypes("node_local",47,"len")=4 + Set gtmtypes("node_local",47,"type")="int" + Set gtmtypfldindx("node_local","ref_cnt")=47 + Set gtmtypes("node_local",48,"name")="node_local.fill_cacheline6" + Set gtmtypes("node_local",48,"off")=836 + Set gtmtypes("node_local",48,"len")=28 + Set gtmtypes("node_local",48,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline6")=48 + Set gtmtypes("node_local",49,"name")="node_local.intent_wtstart" + Set gtmtypes("node_local",49,"off")=864 + Set gtmtypes("node_local",49,"len")=4 + Set gtmtypes("node_local",49,"type")="int" + Set gtmtypfldindx("node_local","intent_wtstart")=49 + Set gtmtypes("node_local",50,"name")="node_local.fill_cacheline7" + Set gtmtypes("node_local",50,"off")=868 + Set gtmtypes("node_local",50,"len")=28 + Set gtmtypes("node_local",50,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline7")=50 + Set gtmtypes("node_local",51,"name")="node_local.in_wtstart" + Set gtmtypes("node_local",51,"off")=896 + Set gtmtypes("node_local",51,"len")=4 + Set gtmtypes("node_local",51,"type")="int" + Set gtmtypfldindx("node_local","in_wtstart")=51 + Set gtmtypes("node_local",52,"name")="node_local.fill_cacheline8" + Set gtmtypes("node_local",52,"off")=900 + Set gtmtypes("node_local",52,"len")=28 + Set gtmtypes("node_local",52,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline8")=52 + Set gtmtypes("node_local",53,"name")="node_local.wcs_phase2_commit_pidcnt" + Set gtmtypes("node_local",53,"off")=928 + Set gtmtypes("node_local",53,"len")=4 + Set gtmtypes("node_local",53,"type")="int" + Set gtmtypfldindx("node_local","wcs_phase2_commit_pidcnt")=53 + Set gtmtypes("node_local",54,"name")="node_local.fill_cacheline9" + Set gtmtypes("node_local",54,"off")=932 + Set gtmtypes("node_local",54,"len")=28 + Set gtmtypes("node_local",54,"type")="char" + Set gtmtypfldindx("node_local","fill_cacheline9")=54 + Set gtmtypes("node_local",55,"name")="node_local.mm_extender_pid" + Set gtmtypes("node_local",55,"off")=960 + Set gtmtypes("node_local",55,"len")=4 + Set gtmtypes("node_local",55,"type")="int" + Set gtmtypfldindx("node_local","mm_extender_pid")=55 + Set gtmtypes("node_local",56,"name")="node_local.highest_lbm_blk_changed" + Set gtmtypes("node_local",56,"off")=964 + Set gtmtypes("node_local",56,"len")=4 + Set gtmtypes("node_local",56,"type")="int" + Set gtmtypfldindx("node_local","highest_lbm_blk_changed")=56 + Set gtmtypes("node_local",57,"name")="node_local.nbb" + Set gtmtypes("node_local",57,"off")=968 + Set gtmtypes("node_local",57,"len")=4 + Set gtmtypes("node_local",57,"type")="int" + Set gtmtypfldindx("node_local","nbb")=57 + Set gtmtypes("node_local",58,"name")="node_local.lockhist_idx" + Set gtmtypes("node_local",58,"off")=972 + Set gtmtypes("node_local",58,"len")=4 + Set gtmtypes("node_local",58,"type")="int" + Set gtmtypfldindx("node_local","lockhist_idx")=58 + Set gtmtypes("node_local",59,"name")="node_local.crit_ops_index" + Set gtmtypes("node_local",59,"off")=976 + Set gtmtypes("node_local",59,"len")=4 + Set gtmtypes("node_local",59,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_index")=59 + Set gtmtypes("node_local",60,"name")="node_local.dskread_ops_index" + Set gtmtypes("node_local",60,"off")=980 + Set gtmtypes("node_local",60,"len")=4 + Set gtmtypes("node_local",60,"type")="int" + Set gtmtypfldindx("node_local","dskread_ops_index")=60 + Set gtmtypes("node_local",61,"name")="node_local.ftok_ops_index" + Set gtmtypes("node_local",61,"off")=984 + Set gtmtypes("node_local",61,"len")=4 + Set gtmtypes("node_local",61,"type")="int" + Set gtmtypfldindx("node_local","ftok_ops_index")=61 + Set gtmtypes("node_local",62,"name")="node_local.lockhists" + Set gtmtypes("node_local",62,"off")=988 + Set gtmtypes("node_local",62,"len")=10240 + Set gtmtypes("node_local",62,"type")="lockhist" + Set gtmtypfldindx("node_local","lockhists")=62 + Set gtmtypes("node_local",62,"dim")=512 + Set gtmtypes("node_local",63,"name")="node_local.lockhists[0].lock_addr" + Set gtmtypes("node_local",63,"off")=988 + Set gtmtypes("node_local",63,"len")=4 + Set gtmtypes("node_local",63,"type")="addr" + Set gtmtypfldindx("node_local","lockhists[0].lock_addr")=63 + Set gtmtypes("node_local",64,"name")="node_local.lockhists[0].lock_callr" + Set gtmtypes("node_local",64,"off")=992 + Set gtmtypes("node_local",64,"len")=4 + Set gtmtypes("node_local",64,"type")="caddr_t" + Set gtmtypfldindx("node_local","lockhists[0].lock_callr")=64 + Set gtmtypes("node_local",65,"name")="node_local.lockhists[0].lock_pid" + Set gtmtypes("node_local",65,"off")=996 + Set gtmtypes("node_local",65,"len")=4 + Set gtmtypes("node_local",65,"type")="int" + Set gtmtypfldindx("node_local","lockhists[0].lock_pid")=65 + Set gtmtypes("node_local",66,"name")="node_local.lockhists[0].loop_cnt" + Set gtmtypes("node_local",66,"off")=1000 + Set gtmtypes("node_local",66,"len")=4 + Set gtmtypes("node_local",66,"type")="int" + Set gtmtypfldindx("node_local","lockhists[0].loop_cnt")=66 + Set gtmtypes("node_local",67,"name")="node_local.lockhists[0].lock_op" + Set gtmtypes("node_local",67,"off")=1004 + Set gtmtypes("node_local",67,"len")=4 + Set gtmtypes("node_local",67,"type")="char" + Set gtmtypfldindx("node_local","lockhists[0].lock_op")=67 + Set gtmtypes("node_local",68,"name")="node_local.crit_ops_array" + Set gtmtypes("node_local",68,"off")=11228 + Set gtmtypes("node_local",68,"len")=10240 + Set gtmtypes("node_local",68,"type")="crit_trace" + Set gtmtypfldindx("node_local","crit_ops_array")=68 + Set gtmtypes("node_local",68,"dim")=512 + Set gtmtypes("node_local",69,"name")="node_local.crit_ops_array[0].call_from" + Set gtmtypes("node_local",69,"off")=11228 + Set gtmtypes("node_local",69,"len")=4 + Set gtmtypes("node_local",69,"type")="caddr_t" + Set gtmtypfldindx("node_local","crit_ops_array[0].call_from")=69 + Set gtmtypes("node_local",70,"name")="node_local.crit_ops_array[0].crit_act" + Set gtmtypes("node_local",70,"off")=11232 + Set gtmtypes("node_local",70,"len")=4 + Set gtmtypes("node_local",70,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_array[0].crit_act")=70 + Set gtmtypes("node_local",71,"name")="node_local.crit_ops_array[0].epid" + Set gtmtypes("node_local",71,"off")=11236 + Set gtmtypes("node_local",71,"len")=4 + Set gtmtypes("node_local",71,"type")="int" + Set gtmtypfldindx("node_local","crit_ops_array[0].epid")=71 + Set gtmtypes("node_local",72,"name")="node_local.crit_ops_array[0].curr_tn" + Set gtmtypes("node_local",72,"off")=11240 + Set gtmtypes("node_local",72,"len")=8 + Set gtmtypes("node_local",72,"type")="uint64_t" + Set gtmtypfldindx("node_local","crit_ops_array[0].curr_tn")=72 + Set gtmtypes("node_local",73,"name")="node_local.dskread_ops_array" + Set gtmtypes("node_local",73,"off")=21468 + Set gtmtypes("node_local",73,"len")=12288 + Set gtmtypes("node_local",73,"type")="dskread_trace" + Set gtmtypfldindx("node_local","dskread_ops_array")=73 + Set gtmtypes("node_local",73,"dim")=512 + Set gtmtypes("node_local",74,"name")="node_local.dskread_ops_array[0].cr_off" + Set gtmtypes("node_local",74,"off")=21468 + Set gtmtypes("node_local",74,"len")=4 + Set gtmtypes("node_local",74,"type")="intptr_t" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cr_off")=74 + Set gtmtypes("node_local",75,"name")="node_local.dskread_ops_array[0].cr_tn" + Set gtmtypes("node_local",75,"off")=21472 + Set gtmtypes("node_local",75,"len")=8 + Set gtmtypes("node_local",75,"type")="uint64_t" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cr_tn")=75 + Set gtmtypes("node_local",76,"name")="node_local.dskread_ops_array[0].process_id" + Set gtmtypes("node_local",76,"off")=21480 + Set gtmtypes("node_local",76,"len")=4 + Set gtmtypes("node_local",76,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].process_id")=76 + Set gtmtypes("node_local",77,"name")="node_local.dskread_ops_array[0].blk" + Set gtmtypes("node_local",77,"off")=21484 + Set gtmtypes("node_local",77,"len")=4 + Set gtmtypes("node_local",77,"type")="int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].blk")=77 + Set gtmtypes("node_local",78,"name")="node_local.dskread_ops_array[0].cycle" + Set gtmtypes("node_local",78,"off")=21488 + Set gtmtypes("node_local",78,"len")=4 + Set gtmtypes("node_local",78,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dskread_ops_array[0].cycle")=78 + Set gtmtypes("node_local",79,"name")="node_local.unique_id" + Set gtmtypes("node_local",79,"off")=33756 + Set gtmtypes("node_local",79,"len")=20 + Set gtmtypes("node_local",79,"type")="unique_file_id" + Set gtmtypfldindx("node_local","unique_id")=79 + Set gtmtypes("node_local",80,"name")="node_local.unique_id.uid" + Set gtmtypes("node_local",80,"off")=33756 + Set gtmtypes("node_local",80,"len")=20 + Set gtmtypes("node_local",80,"type")="unix_file_id" + Set gtmtypfldindx("node_local","unique_id.uid")=80 + Set gtmtypes("node_local",81,"name")="node_local.unique_id.file_id" + Set gtmtypes("node_local",81,"off")=33756 + Set gtmtypes("node_local",81,"len")=20 + Set gtmtypes("node_local",81,"type")="char" + Set gtmtypfldindx("node_local","unique_id.file_id")=81 + Set gtmtypes("node_local",82,"name")="node_local.owner_node" + Set gtmtypes("node_local",82,"off")=33776 + Set gtmtypes("node_local",82,"len")=4 + Set gtmtypes("node_local",82,"type")="unsigned-int" + Set gtmtypfldindx("node_local","owner_node")=82 + Set gtmtypes("node_local",83,"name")="node_local.wcsflu_pid" + Set gtmtypes("node_local",83,"off")=33780 + Set gtmtypes("node_local",83,"len")=4 + Set gtmtypes("node_local",83,"type")="int" + Set gtmtypfldindx("node_local","wcsflu_pid")=83 + Set gtmtypes("node_local",84,"name")="node_local.creation_date_time4" + Set gtmtypes("node_local",84,"off")=33784 + Set gtmtypes("node_local",84,"len")=4 + Set gtmtypes("node_local",84,"type")="int" + Set gtmtypfldindx("node_local","creation_date_time4")=84 + Set gtmtypes("node_local",85,"name")="node_local.inhibit_kills" + Set gtmtypes("node_local",85,"off")=33788 + Set gtmtypes("node_local",85,"len")=4 + Set gtmtypes("node_local",85,"type")="int" + Set gtmtypfldindx("node_local","inhibit_kills")=85 + Set gtmtypes("node_local",86,"name")="node_local.remove_shm" + Set gtmtypes("node_local",86,"off")=33792 + Set gtmtypes("node_local",86,"len")=4 + Set gtmtypes("node_local",86,"type")="boolean_t" + Set gtmtypfldindx("node_local","remove_shm")=86 + Set gtmtypes("node_local",87,"name")="node_local.jnl_file" + Set gtmtypes("node_local",87,"off")=33796 + Set gtmtypes("node_local",87,"len")=28 + Set gtmtypes("node_local",87,"type")="union" + Set gtmtypfldindx("node_local","jnl_file")=87 + Set gtmtypes("node_local",88,"name")="node_local.jnl_file.jnl_file_id" + Set gtmtypes("node_local",88,"off")=33796 + Set gtmtypes("node_local",88,"len")=28 + Set gtmtypes("node_local",88,"type")="gds_file_id" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id")=88 + Set gtmtypes("node_local",89,"name")="node_local.jnl_file.jnl_file_id.dvi" + Set gtmtypes("node_local",89,"off")=33796 + Set gtmtypes("node_local",89,"len")=16 + Set gtmtypes("node_local",89,"type")="char" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.dvi")=89 + Set gtmtypes("node_local",90,"name")="node_local.jnl_file.jnl_file_id.did" + Set gtmtypes("node_local",90,"off")=33812 + Set gtmtypes("node_local",90,"len")=6 + Set gtmtypes("node_local",90,"type")="unsigned-short" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.did")=90 + Set gtmtypes("node_local",90,"dim")=3 + Set gtmtypes("node_local",91,"name")="node_local.jnl_file.jnl_file_id.fid" + Set gtmtypes("node_local",91,"off")=33818 + Set gtmtypes("node_local",91,"len")=6 + Set gtmtypes("node_local",91,"type")="unsigned-short" + Set gtmtypfldindx("node_local","jnl_file.jnl_file_id.fid")=91 + Set gtmtypes("node_local",91,"dim")=3 + Set gtmtypes("node_local",92,"name")="node_local.jnl_file.u" + Set gtmtypes("node_local",92,"off")=33796 + Set gtmtypes("node_local",92,"len")=20 + Set gtmtypes("node_local",92,"type")="unix_file_id" + Set gtmtypfldindx("node_local","jnl_file.u")=92 + Set gtmtypes("node_local",93,"name")="node_local.jnl_file.u.inode" + Set gtmtypes("node_local",93,"off")=33796 + Set gtmtypes("node_local",93,"len")=8 + Set gtmtypes("node_local",93,"type")="ino_t" + Set gtmtypfldindx("node_local","jnl_file.u.inode")=93 + Set gtmtypes("node_local",94,"name")="node_local.jnl_file.u.device" + Set gtmtypes("node_local",94,"off")=33804 + Set gtmtypes("node_local",94,"len")=8 + Set gtmtypes("node_local",94,"type")="dev_t" + Set gtmtypfldindx("node_local","jnl_file.u.device")=94 + Set gtmtypes("node_local",95,"name")="node_local.jnl_file.u.st_gen" + Set gtmtypes("node_local",95,"off")=33812 + Set gtmtypes("node_local",95,"len")=4 + Set gtmtypes("node_local",95,"type")="unsigned-int" + Set gtmtypfldindx("node_local","jnl_file.u.st_gen")=95 + Set gtmtypes("node_local",96,"name")="node_local.donotflush_dbjnl" + Set gtmtypes("node_local",96,"off")=33824 + Set gtmtypes("node_local",96,"len")=4 + Set gtmtypes("node_local",96,"type")="boolean_t" + Set gtmtypfldindx("node_local","donotflush_dbjnl")=96 + Set gtmtypes("node_local",97,"name")="node_local.n_pre_read" + Set gtmtypes("node_local",97,"off")=33828 + Set gtmtypes("node_local",97,"len")=4 + Set gtmtypes("node_local",97,"type")="int" + Set gtmtypfldindx("node_local","n_pre_read")=97 + Set gtmtypes("node_local",98,"name")="node_local.replinstfilename" + Set gtmtypes("node_local",98,"off")=33832 + Set gtmtypes("node_local",98,"len")=256 + Set gtmtypes("node_local",98,"type")="char" + Set gtmtypfldindx("node_local","replinstfilename")=98 + Set gtmtypes("node_local",99,"name")="node_local.secshr_ops_index" + Set gtmtypes("node_local",99,"off")=34088 + Set gtmtypes("node_local",99,"len")=4 + Set gtmtypes("node_local",99,"type")="int" + Set gtmtypfldindx("node_local","secshr_ops_index")=99 + Set gtmtypes("node_local",100,"name")="node_local.secshr_ops_array" + Set gtmtypes("node_local",100,"off")=34092 + Set gtmtypes("node_local",100,"len")=8184 + Set gtmtypes("node_local",100,"type")="uint64_t" + Set gtmtypfldindx("node_local","secshr_ops_array")=100 + Set gtmtypes("node_local",100,"dim")=1023 + Set gtmtypes("node_local",101,"name")="node_local.gvstats_rec" + Set gtmtypes("node_local",101,"off")=42276 + Set gtmtypes("node_local",101,"len")=464 + Set gtmtypes("node_local",101,"type")="gvstats_rec_t" + Set gtmtypfldindx("node_local","gvstats_rec")=101 + Set gtmtypes("node_local",102,"name")="node_local.gvstats_rec.n_set" + Set gtmtypes("node_local",102,"off")=42276 + Set gtmtypes("node_local",102,"len")=8 + Set gtmtypes("node_local",102,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_set")=102 + Set gtmtypes("node_local",103,"name")="node_local.gvstats_rec.n_kill" + Set gtmtypes("node_local",103,"off")=42284 + Set gtmtypes("node_local",103,"len")=8 + Set gtmtypes("node_local",103,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_kill")=103 + Set gtmtypes("node_local",104,"name")="node_local.gvstats_rec.n_get" + Set gtmtypes("node_local",104,"off")=42292 + Set gtmtypes("node_local",104,"len")=8 + Set gtmtypes("node_local",104,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_get")=104 + Set gtmtypes("node_local",105,"name")="node_local.gvstats_rec.n_data" + Set gtmtypes("node_local",105,"off")=42300 + Set gtmtypes("node_local",105,"len")=8 + Set gtmtypes("node_local",105,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_data")=105 + Set gtmtypes("node_local",106,"name")="node_local.gvstats_rec.n_order" + Set gtmtypes("node_local",106,"off")=42308 + Set gtmtypes("node_local",106,"len")=8 + Set gtmtypes("node_local",106,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_order")=106 + Set gtmtypes("node_local",107,"name")="node_local.gvstats_rec.n_zprev" + Set gtmtypes("node_local",107,"off")=42316 + Set gtmtypes("node_local",107,"len")=8 + Set gtmtypes("node_local",107,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_zprev")=107 + Set gtmtypes("node_local",108,"name")="node_local.gvstats_rec.n_query" + Set gtmtypes("node_local",108,"off")=42324 + Set gtmtypes("node_local",108,"len")=8 + Set gtmtypes("node_local",108,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_query")=108 + Set gtmtypes("node_local",109,"name")="node_local.gvstats_rec.n_lock_success" + Set gtmtypes("node_local",109,"off")=42332 + Set gtmtypes("node_local",109,"len")=8 + Set gtmtypes("node_local",109,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_lock_success")=109 + Set gtmtypes("node_local",110,"name")="node_local.gvstats_rec.n_lock_fail" + Set gtmtypes("node_local",110,"off")=42340 + Set gtmtypes("node_local",110,"len")=8 + Set gtmtypes("node_local",110,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_lock_fail")=110 + Set gtmtypes("node_local",111,"name")="node_local.gvstats_rec.db_curr_tn" + Set gtmtypes("node_local",111,"off")=42348 + Set gtmtypes("node_local",111,"len")=8 + Set gtmtypes("node_local",111,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.db_curr_tn")=111 + Set gtmtypes("node_local",112,"name")="node_local.gvstats_rec.n_dsk_read" + Set gtmtypes("node_local",112,"off")=42356 + Set gtmtypes("node_local",112,"len")=8 + Set gtmtypes("node_local",112,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_dsk_read")=112 + Set gtmtypes("node_local",113,"name")="node_local.gvstats_rec.n_dsk_write" + Set gtmtypes("node_local",113,"off")=42364 + Set gtmtypes("node_local",113,"len")=8 + Set gtmtypes("node_local",113,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_dsk_write")=113 + Set gtmtypes("node_local",114,"name")="node_local.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("node_local",114,"off")=42372 + Set gtmtypes("node_local",114,"len")=8 + Set gtmtypes("node_local",114,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_readwrite")=114 + Set gtmtypes("node_local",115,"name")="node_local.gvstats_rec.n_nontp_readonly" + Set gtmtypes("node_local",115,"off")=42380 + Set gtmtypes("node_local",115,"len")=8 + Set gtmtypes("node_local",115,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_readonly")=115 + Set gtmtypes("node_local",116,"name")="node_local.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("node_local",116,"off")=42388 + Set gtmtypes("node_local",116,"len")=8 + Set gtmtypes("node_local",116,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_blkwrite")=116 + Set gtmtypes("node_local",117,"name")="node_local.gvstats_rec.n_nontp_blkread" + Set gtmtypes("node_local",117,"off")=42396 + Set gtmtypes("node_local",117,"len")=8 + Set gtmtypes("node_local",117,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_blkread")=117 + Set gtmtypes("node_local",118,"name")="node_local.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("node_local",118,"off")=42404 + Set gtmtypes("node_local",118,"len")=8 + Set gtmtypes("node_local",118,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_0")=118 + Set gtmtypes("node_local",119,"name")="node_local.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("node_local",119,"off")=42412 + Set gtmtypes("node_local",119,"len")=8 + Set gtmtypes("node_local",119,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_1")=119 + Set gtmtypes("node_local",120,"name")="node_local.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("node_local",120,"off")=42420 + Set gtmtypes("node_local",120,"len")=8 + Set gtmtypes("node_local",120,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_2")=120 + Set gtmtypes("node_local",121,"name")="node_local.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("node_local",121,"off")=42428 + Set gtmtypes("node_local",121,"len")=8 + Set gtmtypes("node_local",121,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_nontp_retries_3")=121 + Set gtmtypes("node_local",122,"name")="node_local.gvstats_rec.n_tp_readwrite" + Set gtmtypes("node_local",122,"off")=42436 + Set gtmtypes("node_local",122,"len")=8 + Set gtmtypes("node_local",122,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_readwrite")=122 + Set gtmtypes("node_local",123,"name")="node_local.gvstats_rec.n_tp_readonly" + Set gtmtypes("node_local",123,"off")=42444 + Set gtmtypes("node_local",123,"len")=8 + Set gtmtypes("node_local",123,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_readonly")=123 + Set gtmtypes("node_local",124,"name")="node_local.gvstats_rec.n_tp_rolledback" + Set gtmtypes("node_local",124,"off")=42452 + Set gtmtypes("node_local",124,"len")=8 + Set gtmtypes("node_local",124,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_rolledback")=124 + Set gtmtypes("node_local",125,"name")="node_local.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("node_local",125,"off")=42460 + Set gtmtypes("node_local",125,"len")=8 + Set gtmtypes("node_local",125,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_blkwrite")=125 + Set gtmtypes("node_local",126,"name")="node_local.gvstats_rec.n_tp_blkread" + Set gtmtypes("node_local",126,"off")=42468 + Set gtmtypes("node_local",126,"len")=8 + Set gtmtypes("node_local",126,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_blkread")=126 + Set gtmtypes("node_local",127,"name")="node_local.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("node_local",127,"off")=42476 + Set gtmtypes("node_local",127,"len")=8 + Set gtmtypes("node_local",127,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_0")=127 + Set gtmtypes("node_local",128,"name")="node_local.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("node_local",128,"off")=42484 + Set gtmtypes("node_local",128,"len")=8 + Set gtmtypes("node_local",128,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_1")=128 + Set gtmtypes("node_local",129,"name")="node_local.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("node_local",129,"off")=42492 + Set gtmtypes("node_local",129,"len")=8 + Set gtmtypes("node_local",129,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_2")=129 + Set gtmtypes("node_local",130,"name")="node_local.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("node_local",130,"off")=42500 + Set gtmtypes("node_local",130,"len")=8 + Set gtmtypes("node_local",130,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_3")=130 + Set gtmtypes("node_local",131,"name")="node_local.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("node_local",131,"off")=42508 + Set gtmtypes("node_local",131,"len")=8 + Set gtmtypes("node_local",131,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_tot_retries_4")=131 + Set gtmtypes("node_local",132,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("node_local",132,"off")=42516 + Set gtmtypes("node_local",132,"len")=8 + Set gtmtypes("node_local",132,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_0")=132 + Set gtmtypes("node_local",133,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("node_local",133,"off")=42524 + Set gtmtypes("node_local",133,"len")=8 + Set gtmtypes("node_local",133,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_1")=133 + Set gtmtypes("node_local",134,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("node_local",134,"off")=42532 + Set gtmtypes("node_local",134,"len")=8 + Set gtmtypes("node_local",134,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_2")=134 + Set gtmtypes("node_local",135,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("node_local",135,"off")=42540 + Set gtmtypes("node_local",135,"len")=8 + Set gtmtypes("node_local",135,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_3")=135 + Set gtmtypes("node_local",136,"name")="node_local.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("node_local",136,"off")=42548 + Set gtmtypes("node_local",136,"len")=8 + Set gtmtypes("node_local",136,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_tp_cnflct_retries_4")=136 + Set gtmtypes("node_local",137,"name")="node_local.gvstats_rec.n_ztrigger" + Set gtmtypes("node_local",137,"off")=42556 + Set gtmtypes("node_local",137,"len")=8 + Set gtmtypes("node_local",137,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_ztrigger")=137 + Set gtmtypes("node_local",138,"name")="node_local.gvstats_rec.n_db_flush" + Set gtmtypes("node_local",138,"off")=42564 + Set gtmtypes("node_local",138,"len")=8 + Set gtmtypes("node_local",138,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_flush")=138 + Set gtmtypes("node_local",139,"name")="node_local.gvstats_rec.n_db_fsync" + Set gtmtypes("node_local",139,"off")=42572 + Set gtmtypes("node_local",139,"len")=8 + Set gtmtypes("node_local",139,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_fsync")=139 + Set gtmtypes("node_local",140,"name")="node_local.gvstats_rec.n_jnl_flush" + Set gtmtypes("node_local",140,"off")=42580 + Set gtmtypes("node_local",140,"len")=8 + Set gtmtypes("node_local",140,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_flush")=140 + Set gtmtypes("node_local",141,"name")="node_local.gvstats_rec.n_jnl_fsync" + Set gtmtypes("node_local",141,"off")=42588 + Set gtmtypes("node_local",141,"len")=8 + Set gtmtypes("node_local",141,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_fsync")=141 + Set gtmtypes("node_local",142,"name")="node_local.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("node_local",142,"off")=42596 + Set gtmtypes("node_local",142,"len")=8 + Set gtmtypes("node_local",142,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jbuff_bytes")=142 + Set gtmtypes("node_local",143,"name")="node_local.gvstats_rec.n_jfile_bytes" + Set gtmtypes("node_local",143,"off")=42604 + Set gtmtypes("node_local",143,"len")=8 + Set gtmtypes("node_local",143,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jfile_bytes")=143 + Set gtmtypes("node_local",144,"name")="node_local.gvstats_rec.n_jfile_writes" + Set gtmtypes("node_local",144,"off")=42612 + Set gtmtypes("node_local",144,"len")=8 + Set gtmtypes("node_local",144,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jfile_writes")=144 + Set gtmtypes("node_local",145,"name")="node_local.gvstats_rec.n_jrec_logical" + Set gtmtypes("node_local",145,"off")=42620 + Set gtmtypes("node_local",145,"len")=8 + Set gtmtypes("node_local",145,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_logical")=145 + Set gtmtypes("node_local",146,"name")="node_local.gvstats_rec.n_jrec_pblk" + Set gtmtypes("node_local",146,"off")=42628 + Set gtmtypes("node_local",146,"len")=8 + Set gtmtypes("node_local",146,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_pblk")=146 + Set gtmtypes("node_local",147,"name")="node_local.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("node_local",147,"off")=42636 + Set gtmtypes("node_local",147,"len")=8 + Set gtmtypes("node_local",147,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_epoch_regular")=147 + Set gtmtypes("node_local",148,"name")="node_local.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("node_local",148,"off")=42644 + Set gtmtypes("node_local",148,"len")=8 + Set gtmtypes("node_local",148,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_epoch_idle")=148 + Set gtmtypes("node_local",149,"name")="node_local.gvstats_rec.n_jrec_other" + Set gtmtypes("node_local",149,"off")=42652 + Set gtmtypes("node_local",149,"len")=8 + Set gtmtypes("node_local",149,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jrec_other")=149 + Set gtmtypes("node_local",150,"name")="node_local.gvstats_rec.n_jnl_extends" + Set gtmtypes("node_local",150,"off")=42660 + Set gtmtypes("node_local",150,"len")=8 + Set gtmtypes("node_local",150,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_jnl_extends")=150 + Set gtmtypes("node_local",151,"name")="node_local.gvstats_rec.n_db_extends" + Set gtmtypes("node_local",151,"off")=42668 + Set gtmtypes("node_local",151,"len")=8 + Set gtmtypes("node_local",151,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_db_extends")=151 + Set gtmtypes("node_local",152,"name")="node_local.gvstats_rec.n_crit_success" + Set gtmtypes("node_local",152,"off")=42676 + Set gtmtypes("node_local",152,"len")=8 + Set gtmtypes("node_local",152,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_success")=152 + Set gtmtypes("node_local",153,"name")="node_local.gvstats_rec.n_crits_in_epch" + Set gtmtypes("node_local",153,"off")=42684 + Set gtmtypes("node_local",153,"len")=8 + Set gtmtypes("node_local",153,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crits_in_epch")=153 + Set gtmtypes("node_local",154,"name")="node_local.gvstats_rec.sq_crit_failed" + Set gtmtypes("node_local",154,"off")=42692 + Set gtmtypes("node_local",154,"len")=8 + Set gtmtypes("node_local",154,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_failed")=154 + Set gtmtypes("node_local",155,"name")="node_local.gvstats_rec.n_crit_failed" + Set gtmtypes("node_local",155,"off")=42700 + Set gtmtypes("node_local",155,"len")=8 + Set gtmtypes("node_local",155,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_failed")=155 + Set gtmtypes("node_local",156,"name")="node_local.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("node_local",156,"off")=42708 + Set gtmtypes("node_local",156,"len")=8 + Set gtmtypes("node_local",156,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_que_slps")=156 + Set gtmtypes("node_local",157,"name")="node_local.gvstats_rec.n_crit_que_slps" + Set gtmtypes("node_local",157,"off")=42716 + Set gtmtypes("node_local",157,"len")=8 + Set gtmtypes("node_local",157,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_que_slps")=157 + Set gtmtypes("node_local",158,"name")="node_local.gvstats_rec.sq_crit_yields" + Set gtmtypes("node_local",158,"off")=42724 + Set gtmtypes("node_local",158,"len")=8 + Set gtmtypes("node_local",158,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.sq_crit_yields")=158 + Set gtmtypes("node_local",159,"name")="node_local.gvstats_rec.n_crit_yields" + Set gtmtypes("node_local",159,"off")=42732 + Set gtmtypes("node_local",159,"len")=8 + Set gtmtypes("node_local",159,"type")="uint64_t" + Set gtmtypfldindx("node_local","gvstats_rec.n_crit_yields")=159 + Set gtmtypes("node_local",160,"name")="node_local.last_wcsflu_tn" + Set gtmtypes("node_local",160,"off")=42740 + Set gtmtypes("node_local",160,"len")=8 + Set gtmtypes("node_local",160,"type")="uint64_t" + Set gtmtypfldindx("node_local","last_wcsflu_tn")=160 + Set gtmtypes("node_local",161,"name")="node_local.encrypt_glo_buff_off" + Set gtmtypes("node_local",161,"off")=42748 + Set gtmtypes("node_local",161,"len")=4 + Set gtmtypes("node_local",161,"type")="intptr_t" + Set gtmtypfldindx("node_local","encrypt_glo_buff_off")=161 + Set gtmtypes("node_local",162,"name")="node_local.snapshot_crit_latch" + Set gtmtypes("node_local",162,"off")=42752 + Set gtmtypes("node_local",162,"len")=8 + Set gtmtypes("node_local",162,"type")="global_latch_t" + Set gtmtypfldindx("node_local","snapshot_crit_latch")=162 + Set gtmtypes("node_local",163,"name")="node_local.snapshot_crit_latch.u" + Set gtmtypes("node_local",163,"off")=42752 + Set gtmtypes("node_local",163,"len")=8 + Set gtmtypes("node_local",163,"type")="union" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u")=163 + Set gtmtypes("node_local",164,"name")="node_local.snapshot_crit_latch.u.pid_imgcnt" + Set gtmtypes("node_local",164,"off")=42752 + Set gtmtypes("node_local",164,"len")=8 + Set gtmtypes("node_local",164,"type")="uint64_t" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.pid_imgcnt")=164 + Set gtmtypes("node_local",165,"name")="node_local.snapshot_crit_latch.u.parts" + Set gtmtypes("node_local",165,"off")=42752 + Set gtmtypes("node_local",165,"len")=8 + Set gtmtypes("node_local",165,"type")="struct" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts")=165 + Set gtmtypes("node_local",166,"name")="node_local.snapshot_crit_latch.u.parts.latch_pid" + Set gtmtypes("node_local",166,"off")=42752 + Set gtmtypes("node_local",166,"len")=4 + Set gtmtypes("node_local",166,"type")="int" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts.latch_pid")=166 + Set gtmtypes("node_local",167,"name")="node_local.snapshot_crit_latch.u.parts.latch_word" + Set gtmtypes("node_local",167,"off")=42756 + Set gtmtypes("node_local",167,"len")=4 + Set gtmtypes("node_local",167,"type")="int" + Set gtmtypfldindx("node_local","snapshot_crit_latch.u.parts.latch_word")=167 + Set gtmtypes("node_local",168,"name")="node_local.ss_shmid" + Set gtmtypes("node_local",168,"off")=42760 + Set gtmtypes("node_local",168,"len")=4 + Set gtmtypes("node_local",168,"type")="long" + Set gtmtypfldindx("node_local","ss_shmid")=168 + Set gtmtypes("node_local",169,"name")="node_local.ss_shmcycle" + Set gtmtypes("node_local",169,"off")=42764 + Set gtmtypes("node_local",169,"len")=4 + Set gtmtypes("node_local",169,"type")="unsigned-int" + Set gtmtypfldindx("node_local","ss_shmcycle")=169 + Set gtmtypes("node_local",170,"name")="node_local.snapshot_in_prog" + Set gtmtypes("node_local",170,"off")=42768 + Set gtmtypes("node_local",170,"len")=4 + Set gtmtypes("node_local",170,"type")="boolean_t" + Set gtmtypfldindx("node_local","snapshot_in_prog")=170 + Set gtmtypes("node_local",171,"name")="node_local.num_snapshots_in_effect" + Set gtmtypes("node_local",171,"off")=42772 + Set gtmtypes("node_local",171,"len")=4 + Set gtmtypes("node_local",171,"type")="unsigned-int" + Set gtmtypfldindx("node_local","num_snapshots_in_effect")=171 + Set gtmtypes("node_local",172,"name")="node_local.wbox_test_seq_num" + Set gtmtypes("node_local",172,"off")=42776 + Set gtmtypes("node_local",172,"len")=4 + Set gtmtypes("node_local",172,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wbox_test_seq_num")=172 + Set gtmtypes("node_local",173,"name")="node_local.filler_8byte_align" + Set gtmtypes("node_local",173,"off")=42780 + Set gtmtypes("node_local",173,"len")=4 + Set gtmtypes("node_local",173,"type")="int" + Set gtmtypfldindx("node_local","filler_8byte_align")=173 + Set gtmtypes("node_local",174,"name")="node_local.kip_pid_array" + Set gtmtypes("node_local",174,"off")=42784 + Set gtmtypes("node_local",174,"len")=32 + Set gtmtypes("node_local",174,"type")="unsigned-int" + Set gtmtypfldindx("node_local","kip_pid_array")=174 + Set gtmtypes("node_local",174,"dim")=8 + Set gtmtypes("node_local",175,"name")="node_local.sec_size" + Set gtmtypes("node_local",175,"off")=42816 + Set gtmtypes("node_local",175,"len")=8 + Set gtmtypes("node_local",175,"type")="uint64_t" + Set gtmtypfldindx("node_local","sec_size")=175 + Set gtmtypes("node_local",176,"name")="node_local.jnlpool_shmid" + Set gtmtypes("node_local",176,"off")=42824 + Set gtmtypes("node_local",176,"len")=4 + Set gtmtypes("node_local",176,"type")="int" + Set gtmtypfldindx("node_local","jnlpool_shmid")=176 + Set gtmtypes("node_local",177,"name")="node_local.lockspacefull_logged" + Set gtmtypes("node_local",177,"off")=42828 + Set gtmtypes("node_local",177,"len")=4 + Set gtmtypes("node_local",177,"type")="boolean_t" + Set gtmtypfldindx("node_local","lockspacefull_logged")=177 + Set gtmtypes("node_local",178,"name")="node_local.trunc_pid" + Set gtmtypes("node_local",178,"off")=42832 + Set gtmtypes("node_local",178,"len")=4 + Set gtmtypes("node_local",178,"type")="unsigned-int" + Set gtmtypfldindx("node_local","trunc_pid")=178 + Set gtmtypes("node_local",179,"name")="node_local.highest_lbm_with_busy_blk" + Set gtmtypes("node_local",179,"off")=42836 + Set gtmtypes("node_local",179,"len")=4 + Set gtmtypes("node_local",179,"type")="int" + Set gtmtypfldindx("node_local","highest_lbm_with_busy_blk")=179 + Set gtmtypes("node_local",180,"name")="node_local.ftok_ops_array" + Set gtmtypes("node_local",180,"off")=42840 + Set gtmtypes("node_local",180,"len")=8192 + Set gtmtypes("node_local",180,"type")="ftokhist" + Set gtmtypfldindx("node_local","ftok_ops_array")=180 + Set gtmtypes("node_local",180,"dim")=512 + Set gtmtypes("node_local",181,"name")="node_local.ftok_ops_array[0].ftok_oper" + Set gtmtypes("node_local",181,"off")=42840 + Set gtmtypes("node_local",181,"len")=4 + Set gtmtypes("node_local",181,"type")="int" + Set gtmtypfldindx("node_local","ftok_ops_array[0].ftok_oper")=181 + Set gtmtypes("node_local",182,"name")="node_local.ftok_ops_array[0].process_id" + Set gtmtypes("node_local",182,"off")=42844 + Set gtmtypes("node_local",182,"len")=4 + Set gtmtypes("node_local",182,"type")="unsigned-int" + Set gtmtypfldindx("node_local","ftok_ops_array[0].process_id")=182 + Set gtmtypes("node_local",183,"name")="node_local.ftok_ops_array[0].cr_tn" + Set gtmtypes("node_local",183,"off")=42848 + Set gtmtypes("node_local",183,"len")=8 + Set gtmtypes("node_local",183,"type")="uint64_t" + Set gtmtypfldindx("node_local","ftok_ops_array[0].cr_tn")=183 + Set gtmtypes("node_local",184,"name")="node_local.root_search_cycle" + Set gtmtypes("node_local",184,"off")=51032 + Set gtmtypes("node_local",184,"len")=4 + Set gtmtypes("node_local",184,"type")="unsigned-int" + Set gtmtypfldindx("node_local","root_search_cycle")=184 + Set gtmtypes("node_local",185,"name")="node_local.onln_rlbk_cycle" + Set gtmtypes("node_local",185,"off")=51036 + Set gtmtypes("node_local",185,"len")=4 + Set gtmtypes("node_local",185,"type")="unsigned-int" + Set gtmtypfldindx("node_local","onln_rlbk_cycle")=185 + Set gtmtypes("node_local",186,"name")="node_local.db_onln_rlbkd_cycle" + Set gtmtypes("node_local",186,"off")=51040 + Set gtmtypes("node_local",186,"len")=4 + Set gtmtypes("node_local",186,"type")="unsigned-int" + Set gtmtypfldindx("node_local","db_onln_rlbkd_cycle")=186 + Set gtmtypes("node_local",187,"name")="node_local.onln_rlbk_pid" + Set gtmtypes("node_local",187,"off")=51044 + Set gtmtypes("node_local",187,"len")=4 + Set gtmtypes("node_local",187,"type")="unsigned-int" + Set gtmtypfldindx("node_local","onln_rlbk_pid")=187 + Set gtmtypes("node_local",188,"name")="node_local.dbrndwn_ftok_skip" + Set gtmtypes("node_local",188,"off")=51048 + Set gtmtypes("node_local",188,"len")=4 + Set gtmtypes("node_local",188,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dbrndwn_ftok_skip")=188 + Set gtmtypes("node_local",189,"name")="node_local.dbrndwn_access_skip" + Set gtmtypes("node_local",189,"off")=51052 + Set gtmtypes("node_local",189,"len")=4 + Set gtmtypes("node_local",189,"type")="unsigned-int" + Set gtmtypfldindx("node_local","dbrndwn_access_skip")=189 + Set gtmtypes("node_local",190,"name")="node_local.fastinteg_in_prog" + Set gtmtypes("node_local",190,"off")=51056 + Set gtmtypes("node_local",190,"len")=4 + Set gtmtypes("node_local",190,"type")="boolean_t" + Set gtmtypfldindx("node_local","fastinteg_in_prog")=190 + Set gtmtypes("node_local",191,"name")="node_local.wtstart_errcnt" + Set gtmtypes("node_local",191,"off")=51060 + Set gtmtypes("node_local",191,"len")=4 + Set gtmtypes("node_local",191,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wtstart_errcnt")=191 + Set gtmtypes("node_local",192,"name")="node_local.fake_db_enospc" + Set gtmtypes("node_local",192,"off")=51064 + Set gtmtypes("node_local",192,"len")=4 + Set gtmtypes("node_local",192,"type")="boolean_t" + Set gtmtypfldindx("node_local","fake_db_enospc")=192 + Set gtmtypes("node_local",193,"name")="node_local.fake_jnl_enospc" + Set gtmtypes("node_local",193,"off")=51068 + Set gtmtypes("node_local",193,"len")=4 + Set gtmtypes("node_local",193,"type")="boolean_t" + Set gtmtypfldindx("node_local","fake_jnl_enospc")=193 + Set gtmtypes("node_local",194,"name")="node_local.doing_epoch" + Set gtmtypes("node_local",194,"off")=51072 + Set gtmtypes("node_local",194,"len")=4 + Set gtmtypes("node_local",194,"type")="boolean_t" + Set gtmtypfldindx("node_local","doing_epoch")=194 + Set gtmtypes("node_local",195,"name")="node_local.epoch_taper_start_dbuffs" + Set gtmtypes("node_local",195,"off")=51076 + Set gtmtypes("node_local",195,"len")=4 + Set gtmtypes("node_local",195,"type")="unsigned-int" + Set gtmtypfldindx("node_local","epoch_taper_start_dbuffs")=195 + Set gtmtypes("node_local",196,"name")="node_local.epoch_taper_need_fsync" + Set gtmtypes("node_local",196,"off")=51080 + Set gtmtypes("node_local",196,"len")=4 + Set gtmtypes("node_local",196,"type")="boolean_t" + Set gtmtypfldindx("node_local","epoch_taper_need_fsync")=196 + Set gtmtypes("node_local",197,"name")="node_local.wt_pid_array" + Set gtmtypes("node_local",197,"off")=51084 + Set gtmtypes("node_local",197,"len")=16 + Set gtmtypes("node_local",197,"type")="unsigned-int" + Set gtmtypfldindx("node_local","wt_pid_array")=197 + Set gtmtypes("node_local",197,"dim")=4 + Set gtmtypes("node_local",198,"name")="node_local.reorg_encrypt_pid" + Set gtmtypes("node_local",198,"off")=51100 + Set gtmtypes("node_local",198,"len")=4 + Set gtmtypes("node_local",198,"type")="unsigned-int" + Set gtmtypfldindx("node_local","reorg_encrypt_pid")=198 + Set gtmtypes("node_local",199,"name")="node_local.reorg_encrypt_cycle" + Set gtmtypes("node_local",199,"off")=51104 + Set gtmtypes("node_local",199,"len")=4 + Set gtmtypes("node_local",199,"type")="unsigned-int" + Set gtmtypfldindx("node_local","reorg_encrypt_cycle")=199 + Set gtmtypes("node_local",200,"name")="node_local.mupip_extract_count" + Set gtmtypes("node_local",200,"off")=51108 + Set gtmtypes("node_local",200,"len")=4 + Set gtmtypes("node_local",200,"type")="unsigned-int" + Set gtmtypfldindx("node_local","mupip_extract_count")=200 + Set gtmtypes("node_local",201,"name")="node_local.saved_acc_meth" + Set gtmtypes("node_local",201,"off")=51112 + Set gtmtypes("node_local",201,"len")=4 + Set gtmtypes("node_local",201,"type")="int" + Set gtmtypfldindx("node_local","saved_acc_meth")=201 + Set gtmtypes("node_local",202,"name")="node_local.saved_blk_size" + Set gtmtypes("node_local",202,"off")=51116 + Set gtmtypes("node_local",202,"len")=4 + Set gtmtypes("node_local",202,"type")="int" + Set gtmtypfldindx("node_local","saved_blk_size")=202 + Set gtmtypes("node_local",203,"name")="node_local.saved_lock_space_size" + Set gtmtypes("node_local",203,"off")=51120 + Set gtmtypes("node_local",203,"len")=4 + Set gtmtypes("node_local",203,"type")="unsigned-int" + Set gtmtypfldindx("node_local","saved_lock_space_size")=203 + Set gtmtypes("node_local",204,"name")="node_local.saved_jnl_buffer_size" + Set gtmtypes("node_local",204,"off")=51124 + Set gtmtypes("node_local",204,"len")=4 + Set gtmtypes("node_local",204,"type")="int" + Set gtmtypfldindx("node_local","saved_jnl_buffer_size")=204 + Set gtmtypes("node_local",205,"name")="node_local.lastwriterbypas_msg_issued" + Set gtmtypes("node_local",205,"off")=51128 + Set gtmtypes("node_local",205,"len")=4 + Set gtmtypes("node_local",205,"type")="boolean_t" + Set gtmtypfldindx("node_local","lastwriterbypas_msg_issued")=205 + Set gtmtypes("node_local",206,"name")="node_local.first_writer_seen" + Set gtmtypes("node_local",206,"off")=51132 + Set gtmtypes("node_local",206,"len")=4 + Set gtmtypes("node_local",206,"type")="boolean_t" + Set gtmtypfldindx("node_local","first_writer_seen")=206 + Set gtmtypes("node_local",207,"name")="node_local.first_nonbypas_writer_seen" + Set gtmtypes("node_local",207,"off")=51136 + Set gtmtypes("node_local",207,"len")=4 + Set gtmtypes("node_local",207,"type")="boolean_t" + Set gtmtypfldindx("node_local","first_nonbypas_writer_seen")=207 + Set gtmtypes("node_local",208,"name")="node_local.filler_8byte_align1" + Set gtmtypes("node_local",208,"off")=51140 + Set gtmtypes("node_local",208,"len")=4 + Set gtmtypes("node_local",208,"type")="unsigned-int" + Set gtmtypfldindx("node_local","filler_8byte_align1")=208 + ; + Set gtmtypes("noisolation_element")="struct" + Set gtmtypes("noisolation_element",0)=2 + Set gtmtypes("noisolation_element","len")=8 + Set gtmtypes("noisolation_element",1,"name")="noisolation_element.gvnh" + Set gtmtypes("noisolation_element",1,"off")=0 + Set gtmtypes("noisolation_element",1,"len")=4 + Set gtmtypes("noisolation_element",1,"type")="addr" + Set gtmtypfldindx("noisolation_element","gvnh")=1 + Set gtmtypes("noisolation_element",2,"name")="noisolation_element.next" + Set gtmtypes("noisolation_element",2,"off")=4 + Set gtmtypes("noisolation_element",2,"len")=4 + Set gtmtypes("noisolation_element",2,"type")="addr" + Set gtmtypfldindx("noisolation_element","next")=2 + ; + Set gtmtypes("noisolation_list")="struct" + Set gtmtypes("noisolation_list",0)=2 + Set gtmtypes("noisolation_list","len")=8 + Set gtmtypes("noisolation_list",1,"name")="noisolation_list.type" + Set gtmtypes("noisolation_list",1,"off")=0 + Set gtmtypes("noisolation_list",1,"len")=4 + Set gtmtypes("noisolation_list",1,"type")="int" + Set gtmtypfldindx("noisolation_list","type")=1 + Set gtmtypes("noisolation_list",2,"name")="noisolation_list.gvnh_list" + Set gtmtypes("noisolation_list",2,"off")=4 + Set gtmtypes("noisolation_list",2,"len")=4 + Set gtmtypes("noisolation_list",2,"type")="addr" + Set gtmtypfldindx("noisolation_list","gvnh_list")=2 + ; + Set gtmtypes("non_native_uint8")="struct" + Set gtmtypes("non_native_uint8",0)=1 + Set gtmtypes("non_native_uint8","len")=8 + Set gtmtypes("non_native_uint8",1,"name")="non_native_uint8.value" + Set gtmtypes("non_native_uint8",1,"off")=0 + Set gtmtypes("non_native_uint8",1,"len")=8 + Set gtmtypes("non_native_uint8",1,"type")="unsigned-int" + Set gtmtypfldindx("non_native_uint8","value")=1 + Set gtmtypes("non_native_uint8",1,"dim")=2 + ; + Set gtmtypes("octabstruct")="struct" + Set gtmtypes("octabstruct",0)=1 + Set gtmtypes("octabstruct","len")=2 + Set gtmtypes("octabstruct",1,"name")="octabstruct.octype" + Set gtmtypes("octabstruct",1,"off")=0 + Set gtmtypes("octabstruct",1,"len")=2 + Set gtmtypes("octabstruct",1,"type")="unsigned-short" + Set gtmtypfldindx("octabstruct","octype")=1 + ; + Set gtmtypes("omi_cl_stat")="struct" + Set gtmtypes("omi_cl_stat",0)=3 + Set gtmtypes("omi_cl_stat","len")=12 + Set gtmtypes("omi_cl_stat",1,"name")="omi_cl_stat.conn" + Set gtmtypes("omi_cl_stat",1,"off")=0 + Set gtmtypes("omi_cl_stat",1,"len")=4 + Set gtmtypes("omi_cl_stat",1,"type")="int" + Set gtmtypfldindx("omi_cl_stat","conn")=1 + Set gtmtypes("omi_cl_stat",2,"name")="omi_cl_stat.disc" + Set gtmtypes("omi_cl_stat",2,"off")=4 + Set gtmtypes("omi_cl_stat",2,"len")=4 + Set gtmtypes("omi_cl_stat",2,"type")="int" + Set gtmtypfldindx("omi_cl_stat","disc")=2 + Set gtmtypes("omi_cl_stat",3,"name")="omi_cl_stat.clos" + Set gtmtypes("omi_cl_stat",3,"off")=8 + Set gtmtypes("omi_cl_stat",3,"len")=4 + Set gtmtypes("omi_cl_stat",3,"type")="int" + Set gtmtypfldindx("omi_cl_stat","clos")=3 + ; + Set gtmtypes("omi_cn_stat")="struct" + Set gtmtypes("omi_cn_stat",0)=8 + Set gtmtypes("omi_cn_stat","len")=412 + Set gtmtypes("omi_cn_stat",1,"name")="omi_cn_stat.id" + Set gtmtypes("omi_cn_stat",1,"off")=0 + Set gtmtypes("omi_cn_stat",1,"len")=4 + Set gtmtypes("omi_cn_stat",1,"type")="int" + Set gtmtypfldindx("omi_cn_stat","id")=1 + Set gtmtypes("omi_cn_stat",2,"name")="omi_cn_stat.start" + Set gtmtypes("omi_cn_stat",2,"off")=4 + Set gtmtypes("omi_cn_stat",2,"len")=4 + Set gtmtypes("omi_cn_stat",2,"type")="time_t" + Set gtmtypfldindx("omi_cn_stat","start")=2 + Set gtmtypes("omi_cn_stat",3,"name")="omi_cn_stat.ai" + Set gtmtypes("omi_cn_stat",3,"off")=8 + Set gtmtypes("omi_cn_stat",3,"len")=32 + Set gtmtypes("omi_cn_stat",3,"type")="struct" + Set gtmtypfldindx("omi_cn_stat","ai")=3 + Set gtmtypes("omi_cn_stat",4,"name")="omi_cn_stat.sas" + Set gtmtypes("omi_cn_stat",4,"off")=40 + Set gtmtypes("omi_cn_stat",4,"len")=128 + Set gtmtypes("omi_cn_stat",4,"type")="struct" + Set gtmtypfldindx("omi_cn_stat","sas")=4 + Set gtmtypes("omi_cn_stat",5,"name")="omi_cn_stat.bytes_recv" + Set gtmtypes("omi_cn_stat",5,"off")=168 + Set gtmtypes("omi_cn_stat",5,"len")=4 + Set gtmtypes("omi_cn_stat",5,"type")="int" + Set gtmtypfldindx("omi_cn_stat","bytes_recv")=5 + Set gtmtypes("omi_cn_stat",6,"name")="omi_cn_stat.bytes_send" + Set gtmtypes("omi_cn_stat",6,"off")=172 + Set gtmtypes("omi_cn_stat",6,"len")=4 + Set gtmtypes("omi_cn_stat",6,"type")="int" + Set gtmtypfldindx("omi_cn_stat","bytes_send")=6 + Set gtmtypes("omi_cn_stat",7,"name")="omi_cn_stat.xact" + Set gtmtypes("omi_cn_stat",7,"off")=176 + Set gtmtypes("omi_cn_stat",7,"len")=136 + Set gtmtypes("omi_cn_stat",7,"type")="int" + Set gtmtypfldindx("omi_cn_stat","xact")=7 + Set gtmtypes("omi_cn_stat",7,"dim")=34 + Set gtmtypes("omi_cn_stat",8,"name")="omi_cn_stat.errs" + Set gtmtypes("omi_cn_stat",8,"off")=312 + Set gtmtypes("omi_cn_stat",8,"len")=100 + Set gtmtypes("omi_cn_stat",8,"type")="int" + Set gtmtypfldindx("omi_cn_stat","errs")=8 + Set gtmtypes("omi_cn_stat",8,"dim")=25 + ; + Set gtmtypes("omi_conn_ll")="struct" + Set gtmtypes("omi_conn_ll",0)=16 + Set gtmtypes("omi_conn_ll","len")=436 + Set gtmtypes("omi_conn_ll",1,"name")="omi_conn_ll.nve" + Set gtmtypes("omi_conn_ll",1,"off")=0 + Set gtmtypes("omi_conn_ll",1,"len")=4 + Set gtmtypes("omi_conn_ll",1,"type")="int" + Set gtmtypfldindx("omi_conn_ll","nve")=1 + Set gtmtypes("omi_conn_ll",2,"name")="omi_conn_ll.head" + Set gtmtypes("omi_conn_ll",2,"off")=4 + Set gtmtypes("omi_conn_ll",2,"len")=4 + Set gtmtypes("omi_conn_ll",2,"type")="addr" + Set gtmtypfldindx("omi_conn_ll","head")=2 + Set gtmtypes("omi_conn_ll",3,"name")="omi_conn_ll.tail" + Set gtmtypes("omi_conn_ll",3,"off")=8 + Set gtmtypes("omi_conn_ll",3,"len")=4 + Set gtmtypes("omi_conn_ll",3,"type")="addr" + Set gtmtypfldindx("omi_conn_ll","tail")=3 + Set gtmtypes("omi_conn_ll",4,"name")="omi_conn_ll.stats" + Set gtmtypes("omi_conn_ll",4,"off")=12 + Set gtmtypes("omi_conn_ll",4,"len")=12 + Set gtmtypes("omi_conn_ll",4,"type")="omi_cl_stat" + Set gtmtypfldindx("omi_conn_ll","stats")=4 + Set gtmtypes("omi_conn_ll",5,"name")="omi_conn_ll.stats.conn" + Set gtmtypes("omi_conn_ll",5,"off")=12 + Set gtmtypes("omi_conn_ll",5,"len")=4 + Set gtmtypes("omi_conn_ll",5,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.conn")=5 + Set gtmtypes("omi_conn_ll",6,"name")="omi_conn_ll.stats.disc" + Set gtmtypes("omi_conn_ll",6,"off")=16 + Set gtmtypes("omi_conn_ll",6,"len")=4 + Set gtmtypes("omi_conn_ll",6,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.disc")=6 + Set gtmtypes("omi_conn_ll",7,"name")="omi_conn_ll.stats.clos" + Set gtmtypes("omi_conn_ll",7,"off")=20 + Set gtmtypes("omi_conn_ll",7,"len")=4 + Set gtmtypes("omi_conn_ll",7,"type")="int" + Set gtmtypfldindx("omi_conn_ll","stats.clos")=7 + Set gtmtypes("omi_conn_ll",8,"name")="omi_conn_ll.st_cn" + Set gtmtypes("omi_conn_ll",8,"off")=24 + Set gtmtypes("omi_conn_ll",8,"len")=412 + Set gtmtypes("omi_conn_ll",8,"type")="omi_cn_stat" + Set gtmtypfldindx("omi_conn_ll","st_cn")=8 + Set gtmtypes("omi_conn_ll",9,"name")="omi_conn_ll.st_cn.id" + Set gtmtypes("omi_conn_ll",9,"off")=24 + Set gtmtypes("omi_conn_ll",9,"len")=4 + Set gtmtypes("omi_conn_ll",9,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.id")=9 + Set gtmtypes("omi_conn_ll",10,"name")="omi_conn_ll.st_cn.start" + Set gtmtypes("omi_conn_ll",10,"off")=28 + Set gtmtypes("omi_conn_ll",10,"len")=4 + Set gtmtypes("omi_conn_ll",10,"type")="time_t" + Set gtmtypfldindx("omi_conn_ll","st_cn.start")=10 + Set gtmtypes("omi_conn_ll",11,"name")="omi_conn_ll.st_cn.ai" + Set gtmtypes("omi_conn_ll",11,"off")=32 + Set gtmtypes("omi_conn_ll",11,"len")=32 + Set gtmtypes("omi_conn_ll",11,"type")="struct" + Set gtmtypfldindx("omi_conn_ll","st_cn.ai")=11 + Set gtmtypes("omi_conn_ll",12,"name")="omi_conn_ll.st_cn.sas" + Set gtmtypes("omi_conn_ll",12,"off")=64 + Set gtmtypes("omi_conn_ll",12,"len")=128 + Set gtmtypes("omi_conn_ll",12,"type")="struct" + Set gtmtypfldindx("omi_conn_ll","st_cn.sas")=12 + Set gtmtypes("omi_conn_ll",13,"name")="omi_conn_ll.st_cn.bytes_recv" + Set gtmtypes("omi_conn_ll",13,"off")=192 + Set gtmtypes("omi_conn_ll",13,"len")=4 + Set gtmtypes("omi_conn_ll",13,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.bytes_recv")=13 + Set gtmtypes("omi_conn_ll",14,"name")="omi_conn_ll.st_cn.bytes_send" + Set gtmtypes("omi_conn_ll",14,"off")=196 + Set gtmtypes("omi_conn_ll",14,"len")=4 + Set gtmtypes("omi_conn_ll",14,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.bytes_send")=14 + Set gtmtypes("omi_conn_ll",15,"name")="omi_conn_ll.st_cn.xact" + Set gtmtypes("omi_conn_ll",15,"off")=200 + Set gtmtypes("omi_conn_ll",15,"len")=136 + Set gtmtypes("omi_conn_ll",15,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.xact")=15 + Set gtmtypes("omi_conn_ll",15,"dim")=34 + Set gtmtypes("omi_conn_ll",16,"name")="omi_conn_ll.st_cn.errs" + Set gtmtypes("omi_conn_ll",16,"off")=336 + Set gtmtypes("omi_conn_ll",16,"len")=100 + Set gtmtypes("omi_conn_ll",16,"type")="int" + Set gtmtypfldindx("omi_conn_ll","st_cn.errs")=16 + Set gtmtypes("omi_conn_ll",16,"dim")=25 + ; + Set gtmtypes("omi_err_hdr")="struct" + Set gtmtypes("omi_err_hdr",0)=3 + Set gtmtypes("omi_err_hdr","len")=6 + Set gtmtypes("omi_err_hdr",1,"name")="omi_err_hdr.class" + Set gtmtypes("omi_err_hdr",1,"off")=0 + Set gtmtypes("omi_err_hdr",1,"len")=2 + Set gtmtypes("omi_err_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("omi_err_hdr","class")=1 + Set gtmtypes("omi_err_hdr",2,"name")="omi_err_hdr.type" + Set gtmtypes("omi_err_hdr",2,"off")=2 + Set gtmtypes("omi_err_hdr",2,"len")=1 + Set gtmtypes("omi_err_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("omi_err_hdr","type")=2 + Set gtmtypes("omi_err_hdr",3,"name")="omi_err_hdr.modifier" + Set gtmtypes("omi_err_hdr",3,"off")=4 + Set gtmtypes("omi_err_hdr",3,"len")=2 + Set gtmtypes("omi_err_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("omi_err_hdr","modifier")=3 + ; + Set gtmtypes("omi_hist_rec")="struct" + Set gtmtypes("omi_hist_rec",0)=7 + Set gtmtypes("omi_hist_rec","len")=16404 + Set gtmtypes("omi_hist_rec",1,"name")="omi_hist_rec.conn" + Set gtmtypes("omi_hist_rec",1,"off")=0 + Set gtmtypes("omi_hist_rec",1,"len")=4 + Set gtmtypes("omi_hist_rec",1,"type")="int" + Set gtmtypfldindx("omi_hist_rec","conn")=1 + Set gtmtypes("omi_hist_rec",2,"name")="omi_hist_rec.timestamp" + Set gtmtypes("omi_hist_rec",2,"off")=4 + Set gtmtypes("omi_hist_rec",2,"len")=4 + Set gtmtypes("omi_hist_rec",2,"type")="time_t" + Set gtmtypfldindx("omi_hist_rec","timestamp")=2 + Set gtmtypes("omi_hist_rec",3,"name")="omi_hist_rec.toobigflag" + Set gtmtypes("omi_hist_rec",3,"off")=8 + Set gtmtypes("omi_hist_rec",3,"len")=4 + Set gtmtypes("omi_hist_rec",3,"type")="int" + Set gtmtypfldindx("omi_hist_rec","toobigflag")=3 + Set gtmtypes("omi_hist_rec",4,"name")="omi_hist_rec.req" + Set gtmtypes("omi_hist_rec",4,"off")=12 + Set gtmtypes("omi_hist_rec",4,"len")=8192 + Set gtmtypes("omi_hist_rec",4,"type")="char" + Set gtmtypfldindx("omi_hist_rec","req")=4 + Set gtmtypes("omi_hist_rec",5,"name")="omi_hist_rec.rsp" + Set gtmtypes("omi_hist_rec",5,"off")=8204 + Set gtmtypes("omi_hist_rec",5,"len")=8192 + Set gtmtypes("omi_hist_rec",5,"type")="char" + Set gtmtypfldindx("omi_hist_rec","rsp")=5 + Set gtmtypes("omi_hist_rec",6,"name")="omi_hist_rec.req_len" + Set gtmtypes("omi_hist_rec",6,"off")=16396 + Set gtmtypes("omi_hist_rec",6,"len")=4 + Set gtmtypes("omi_hist_rec",6,"type")="int" + Set gtmtypfldindx("omi_hist_rec","req_len")=6 + Set gtmtypes("omi_hist_rec",7,"name")="omi_hist_rec.rsp_len" + Set gtmtypes("omi_hist_rec",7,"off")=16400 + Set gtmtypes("omi_hist_rec",7,"len")=4 + Set gtmtypes("omi_hist_rec",7,"type")="int" + Set gtmtypfldindx("omi_hist_rec","rsp_len")=7 + ; + Set gtmtypes("omi_li")="union" + Set gtmtypes("omi_li",0)=2 + Set gtmtypes("omi_li","len")=2 + Set gtmtypes("omi_li",1,"name")="omi_li.octet" + Set gtmtypes("omi_li",1,"off")=0 + Set gtmtypes("omi_li",1,"len")=2 + Set gtmtypes("omi_li",1,"type")="char" + Set gtmtypfldindx("omi_li","octet")=1 + Set gtmtypes("omi_li",2,"name")="omi_li.value" + Set gtmtypes("omi_li",2,"off")=0 + Set gtmtypes("omi_li",2,"len")=2 + Set gtmtypes("omi_li",2,"type")="unsigned-short" + Set gtmtypfldindx("omi_li","value")=2 + ; + Set gtmtypes("omi_req_hdr")="struct" + Set gtmtypes("omi_req_hdr",0)=18 + Set gtmtypes("omi_req_hdr","len")=12 + Set gtmtypes("omi_req_hdr",1,"name")="omi_req_hdr.op_class" + Set gtmtypes("omi_req_hdr",1,"off")=0 + Set gtmtypes("omi_req_hdr",1,"len")=2 + Set gtmtypes("omi_req_hdr",1,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","op_class")=1 + Set gtmtypes("omi_req_hdr",2,"name")="omi_req_hdr.op_class.octet" + Set gtmtypes("omi_req_hdr",2,"off")=0 + Set gtmtypes("omi_req_hdr",2,"len")=2 + Set gtmtypes("omi_req_hdr",2,"type")="char" + Set gtmtypfldindx("omi_req_hdr","op_class.octet")=2 + Set gtmtypes("omi_req_hdr",3,"name")="omi_req_hdr.op_class.value" + Set gtmtypes("omi_req_hdr",3,"off")=0 + Set gtmtypes("omi_req_hdr",3,"len")=2 + Set gtmtypes("omi_req_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","op_class.value")=3 + Set gtmtypes("omi_req_hdr",4,"name")="omi_req_hdr.op_type" + Set gtmtypes("omi_req_hdr",4,"off")=2 + Set gtmtypes("omi_req_hdr",4,"len")=1 + Set gtmtypes("omi_req_hdr",4,"type")="omi_si" + Set gtmtypfldindx("omi_req_hdr","op_type")=4 + Set gtmtypes("omi_req_hdr",5,"name")="omi_req_hdr.op_type.octet" + Set gtmtypes("omi_req_hdr",5,"off")=2 + Set gtmtypes("omi_req_hdr",5,"len")=1 + Set gtmtypes("omi_req_hdr",5,"type")="char" + Set gtmtypfldindx("omi_req_hdr","op_type.octet")=5 + Set gtmtypes("omi_req_hdr",6,"name")="omi_req_hdr.op_type.value" + Set gtmtypes("omi_req_hdr",6,"off")=2 + Set gtmtypes("omi_req_hdr",6,"len")=1 + Set gtmtypes("omi_req_hdr",6,"type")="unsigned-char" + Set gtmtypfldindx("omi_req_hdr","op_type.value")=6 + Set gtmtypes("omi_req_hdr",7,"name")="omi_req_hdr.user" + Set gtmtypes("omi_req_hdr",7,"off")=4 + Set gtmtypes("omi_req_hdr",7,"len")=2 + Set gtmtypes("omi_req_hdr",7,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","user")=7 + Set gtmtypes("omi_req_hdr",8,"name")="omi_req_hdr.user.octet" + Set gtmtypes("omi_req_hdr",8,"off")=4 + Set gtmtypes("omi_req_hdr",8,"len")=2 + Set gtmtypes("omi_req_hdr",8,"type")="char" + Set gtmtypfldindx("omi_req_hdr","user.octet")=8 + Set gtmtypes("omi_req_hdr",9,"name")="omi_req_hdr.user.value" + Set gtmtypes("omi_req_hdr",9,"off")=4 + Set gtmtypes("omi_req_hdr",9,"len")=2 + Set gtmtypes("omi_req_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","user.value")=9 + Set gtmtypes("omi_req_hdr",10,"name")="omi_req_hdr.group" + Set gtmtypes("omi_req_hdr",10,"off")=6 + Set gtmtypes("omi_req_hdr",10,"len")=2 + Set gtmtypes("omi_req_hdr",10,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","group")=10 + Set gtmtypes("omi_req_hdr",11,"name")="omi_req_hdr.group.octet" + Set gtmtypes("omi_req_hdr",11,"off")=6 + Set gtmtypes("omi_req_hdr",11,"len")=2 + Set gtmtypes("omi_req_hdr",11,"type")="char" + Set gtmtypfldindx("omi_req_hdr","group.octet")=11 + Set gtmtypes("omi_req_hdr",12,"name")="omi_req_hdr.group.value" + Set gtmtypes("omi_req_hdr",12,"off")=6 + Set gtmtypes("omi_req_hdr",12,"len")=2 + Set gtmtypes("omi_req_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","group.value")=12 + Set gtmtypes("omi_req_hdr",13,"name")="omi_req_hdr.seq" + Set gtmtypes("omi_req_hdr",13,"off")=8 + Set gtmtypes("omi_req_hdr",13,"len")=2 + Set gtmtypes("omi_req_hdr",13,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","seq")=13 + Set gtmtypes("omi_req_hdr",14,"name")="omi_req_hdr.seq.octet" + Set gtmtypes("omi_req_hdr",14,"off")=8 + Set gtmtypes("omi_req_hdr",14,"len")=2 + Set gtmtypes("omi_req_hdr",14,"type")="char" + Set gtmtypfldindx("omi_req_hdr","seq.octet")=14 + Set gtmtypes("omi_req_hdr",15,"name")="omi_req_hdr.seq.value" + Set gtmtypes("omi_req_hdr",15,"off")=8 + Set gtmtypes("omi_req_hdr",15,"len")=2 + Set gtmtypes("omi_req_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","seq.value")=15 + Set gtmtypes("omi_req_hdr",16,"name")="omi_req_hdr.ref" + Set gtmtypes("omi_req_hdr",16,"off")=10 + Set gtmtypes("omi_req_hdr",16,"len")=2 + Set gtmtypes("omi_req_hdr",16,"type")="omi_li" + Set gtmtypfldindx("omi_req_hdr","ref")=16 + Set gtmtypes("omi_req_hdr",17,"name")="omi_req_hdr.ref.octet" + Set gtmtypes("omi_req_hdr",17,"off")=10 + Set gtmtypes("omi_req_hdr",17,"len")=2 + Set gtmtypes("omi_req_hdr",17,"type")="char" + Set gtmtypfldindx("omi_req_hdr","ref.octet")=17 + Set gtmtypes("omi_req_hdr",18,"name")="omi_req_hdr.ref.value" + Set gtmtypes("omi_req_hdr",18,"off")=10 + Set gtmtypes("omi_req_hdr",18,"len")=2 + Set gtmtypes("omi_req_hdr",18,"type")="unsigned-short" + Set gtmtypfldindx("omi_req_hdr","ref.value")=18 + ; + Set gtmtypes("omi_si")="union" + Set gtmtypes("omi_si",0)=2 + Set gtmtypes("omi_si","len")=1 + Set gtmtypes("omi_si",1,"name")="omi_si.octet" + Set gtmtypes("omi_si",1,"off")=0 + Set gtmtypes("omi_si",1,"len")=1 + Set gtmtypes("omi_si",1,"type")="char" + Set gtmtypfldindx("omi_si","octet")=1 + Set gtmtypes("omi_si",2,"name")="omi_si.value" + Set gtmtypes("omi_si",2,"off")=0 + Set gtmtypes("omi_si",2,"len")=1 + Set gtmtypes("omi_si",2,"type")="unsigned-char" + Set gtmtypfldindx("omi_si","value")=2 + ; + Set gtmtypes("omi_vi")="union" + Set gtmtypes("omi_vi",0)=2 + Set gtmtypes("omi_vi","len")=4 + Set gtmtypes("omi_vi",1,"name")="omi_vi.octet" + Set gtmtypes("omi_vi",1,"off")=0 + Set gtmtypes("omi_vi",1,"len")=4 + Set gtmtypes("omi_vi",1,"type")="char" + Set gtmtypfldindx("omi_vi","octet")=1 + Set gtmtypes("omi_vi",2,"name")="omi_vi.value" + Set gtmtypes("omi_vi",2,"off")=0 + Set gtmtypes("omi_vi",2,"len")=4 + Set gtmtypes("omi_vi",2,"type")="unsigned-int" + Set gtmtypfldindx("omi_vi","value")=2 + ; + Set gtmtypes("onln_rlbk_reg_list")="struct" + Set gtmtypes("onln_rlbk_reg_list",0)=7 + Set gtmtypes("onln_rlbk_reg_list","len")=32 + Set gtmtypes("onln_rlbk_reg_list",1,"name")="onln_rlbk_reg_list.fPtr" + Set gtmtypes("onln_rlbk_reg_list",1,"off")=0 + Set gtmtypes("onln_rlbk_reg_list",1,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",1,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","fPtr")=1 + Set gtmtypes("onln_rlbk_reg_list",2,"name")="onln_rlbk_reg_list.reg" + Set gtmtypes("onln_rlbk_reg_list",2,"off")=4 + Set gtmtypes("onln_rlbk_reg_list",2,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",2,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","reg")=2 + Set gtmtypes("onln_rlbk_reg_list",3,"name")="onln_rlbk_reg_list.unique_file_id" + Set gtmtypes("onln_rlbk_reg_list",3,"off")=8 + Set gtmtypes("onln_rlbk_reg_list",3,"len")=20 + Set gtmtypes("onln_rlbk_reg_list",3,"type")="unix_file_id" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id")=3 + Set gtmtypes("onln_rlbk_reg_list",4,"name")="onln_rlbk_reg_list.unique_file_id.inode" + Set gtmtypes("onln_rlbk_reg_list",4,"off")=8 + Set gtmtypes("onln_rlbk_reg_list",4,"len")=8 + Set gtmtypes("onln_rlbk_reg_list",4,"type")="ino_t" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.inode")=4 + Set gtmtypes("onln_rlbk_reg_list",5,"name")="onln_rlbk_reg_list.unique_file_id.device" + Set gtmtypes("onln_rlbk_reg_list",5,"off")=16 + Set gtmtypes("onln_rlbk_reg_list",5,"len")=8 + Set gtmtypes("onln_rlbk_reg_list",5,"type")="dev_t" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.device")=5 + Set gtmtypes("onln_rlbk_reg_list",6,"name")="onln_rlbk_reg_list.unique_file_id.st_gen" + Set gtmtypes("onln_rlbk_reg_list",6,"off")=24 + Set gtmtypes("onln_rlbk_reg_list",6,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",6,"type")="unsigned-int" + Set gtmtypfldindx("onln_rlbk_reg_list","unique_file_id.st_gen")=6 + Set gtmtypes("onln_rlbk_reg_list",7,"name")="onln_rlbk_reg_list.rctl" + Set gtmtypes("onln_rlbk_reg_list",7,"off")=28 + Set gtmtypes("onln_rlbk_reg_list",7,"len")=4 + Set gtmtypes("onln_rlbk_reg_list",7,"type")="addr" + Set gtmtypfldindx("onln_rlbk_reg_list","rctl")=7 + ; + Set gtmtypes("open_relinkctl_sgm")="struct" + Set gtmtypes("open_relinkctl_sgm",0)=16 + Set gtmtypes("open_relinkctl_sgm","len")=356 + Set gtmtypes("open_relinkctl_sgm",1,"name")="open_relinkctl_sgm.next" + Set gtmtypes("open_relinkctl_sgm",1,"off")=0 + Set gtmtypes("open_relinkctl_sgm",1,"len")=4 + Set gtmtypes("open_relinkctl_sgm",1,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","next")=1 + Set gtmtypes("open_relinkctl_sgm",2,"name")="open_relinkctl_sgm.zro_entry_name" + Set gtmtypes("open_relinkctl_sgm",2,"off")=4 + Set gtmtypes("open_relinkctl_sgm",2,"len")=12 + Set gtmtypes("open_relinkctl_sgm",2,"type")="mstr" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name")=2 + Set gtmtypes("open_relinkctl_sgm",3,"name")="open_relinkctl_sgm.zro_entry_name.char_len" + Set gtmtypes("open_relinkctl_sgm",3,"off")=4 + Set gtmtypes("open_relinkctl_sgm",3,"len")=4 + Set gtmtypes("open_relinkctl_sgm",3,"type")="unsigned-int" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.char_len")=3 + Set gtmtypes("open_relinkctl_sgm",4,"name")="open_relinkctl_sgm.zro_entry_name.len" + Set gtmtypes("open_relinkctl_sgm",4,"off")=8 + Set gtmtypes("open_relinkctl_sgm",4,"len")=4 + Set gtmtypes("open_relinkctl_sgm",4,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.len")=4 + Set gtmtypes("open_relinkctl_sgm",5,"name")="open_relinkctl_sgm.zro_entry_name.addr" + Set gtmtypes("open_relinkctl_sgm",5,"off")=12 + Set gtmtypes("open_relinkctl_sgm",5,"len")=4 + Set gtmtypes("open_relinkctl_sgm",5,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","zro_entry_name.addr")=5 + Set gtmtypes("open_relinkctl_sgm",6,"name")="open_relinkctl_sgm.relinkctl_path" + Set gtmtypes("open_relinkctl_sgm",6,"off")=16 + Set gtmtypes("open_relinkctl_sgm",6,"len")=4 + Set gtmtypes("open_relinkctl_sgm",6,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","relinkctl_path")=6 + Set gtmtypes("open_relinkctl_sgm",7,"name")="open_relinkctl_sgm.n_records" + Set gtmtypes("open_relinkctl_sgm",7,"off")=20 + Set gtmtypes("open_relinkctl_sgm",7,"len")=4 + Set gtmtypes("open_relinkctl_sgm",7,"type")="unsigned-int" + Set gtmtypfldindx("open_relinkctl_sgm","n_records")=7 + Set gtmtypes("open_relinkctl_sgm",8,"name")="open_relinkctl_sgm.locked" + Set gtmtypes("open_relinkctl_sgm",8,"off")=24 + Set gtmtypes("open_relinkctl_sgm",8,"len")=4 + Set gtmtypes("open_relinkctl_sgm",8,"type")="boolean_t" + Set gtmtypfldindx("open_relinkctl_sgm","locked")=8 + Set gtmtypes("open_relinkctl_sgm",9,"name")="open_relinkctl_sgm.hdr" + Set gtmtypes("open_relinkctl_sgm",9,"off")=28 + Set gtmtypes("open_relinkctl_sgm",9,"len")=4 + Set gtmtypes("open_relinkctl_sgm",9,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","hdr")=9 + Set gtmtypes("open_relinkctl_sgm",10,"name")="open_relinkctl_sgm.rec_base" + Set gtmtypes("open_relinkctl_sgm",10,"off")=32 + Set gtmtypes("open_relinkctl_sgm",10,"len")=4 + Set gtmtypes("open_relinkctl_sgm",10,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","rec_base")=10 + Set gtmtypes("open_relinkctl_sgm",11,"name")="open_relinkctl_sgm.shm_hashbase" + Set gtmtypes("open_relinkctl_sgm",11,"off")=36 + Set gtmtypes("open_relinkctl_sgm",11,"len")=4 + Set gtmtypes("open_relinkctl_sgm",11,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","shm_hashbase")=11 + Set gtmtypes("open_relinkctl_sgm",12,"name")="open_relinkctl_sgm.rtnobj_shm_base" + Set gtmtypes("open_relinkctl_sgm",12,"off")=40 + Set gtmtypes("open_relinkctl_sgm",12,"len")=152 + Set gtmtypes("open_relinkctl_sgm",12,"type")="addr" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_shm_base")=12 + Set gtmtypes("open_relinkctl_sgm",12,"dim")=38 + Set gtmtypes("open_relinkctl_sgm",13,"name")="open_relinkctl_sgm.rtnobj_shmid" + Set gtmtypes("open_relinkctl_sgm",13,"off")=192 + Set gtmtypes("open_relinkctl_sgm",13,"len")=152 + Set gtmtypes("open_relinkctl_sgm",13,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_shmid")=13 + Set gtmtypes("open_relinkctl_sgm",13,"dim")=38 + Set gtmtypes("open_relinkctl_sgm",14,"name")="open_relinkctl_sgm.fd" + Set gtmtypes("open_relinkctl_sgm",14,"off")=344 + Set gtmtypes("open_relinkctl_sgm",14,"len")=4 + Set gtmtypes("open_relinkctl_sgm",14,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","fd")=14 + Set gtmtypes("open_relinkctl_sgm",15,"name")="open_relinkctl_sgm.rtnobj_min_shm_index" + Set gtmtypes("open_relinkctl_sgm",15,"off")=348 + Set gtmtypes("open_relinkctl_sgm",15,"len")=4 + Set gtmtypes("open_relinkctl_sgm",15,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_min_shm_index")=15 + Set gtmtypes("open_relinkctl_sgm",16,"name")="open_relinkctl_sgm.rtnobj_max_shm_index" + Set gtmtypes("open_relinkctl_sgm",16,"off")=352 + Set gtmtypes("open_relinkctl_sgm",16,"len")=4 + Set gtmtypes("open_relinkctl_sgm",16,"type")="int" + Set gtmtypfldindx("open_relinkctl_sgm","rtnobj_max_shm_index")=16 + ; + Set gtmtypes("open_shlib")="struct" + Set gtmtypes("open_shlib",0)=3 + Set gtmtypes("open_shlib","len")=264 + Set gtmtypes("open_shlib",1,"name")="open_shlib.next" + Set gtmtypes("open_shlib",1,"off")=0 + Set gtmtypes("open_shlib",1,"len")=4 + Set gtmtypes("open_shlib",1,"type")="addr" + Set gtmtypfldindx("open_shlib","next")=1 + Set gtmtypes("open_shlib",2,"name")="open_shlib.shlib_handle" + Set gtmtypes("open_shlib",2,"off")=4 + Set gtmtypes("open_shlib",2,"len")=4 + Set gtmtypes("open_shlib",2,"type")="addr" + Set gtmtypfldindx("open_shlib","shlib_handle")=2 + Set gtmtypes("open_shlib",3,"name")="open_shlib.shlib_name" + Set gtmtypes("open_shlib",3,"off")=8 + Set gtmtypes("open_shlib",3,"len")=256 + Set gtmtypes("open_shlib",3,"type")="char" + Set gtmtypfldindx("open_shlib","shlib_name")=3 + ; + Set gtmtypes("oprtype")="struct" + Set gtmtypes("oprtype",0)=15 + Set gtmtypes("oprtype","len")=8 + Set gtmtypes("oprtype",1,"name")="oprtype.oprclass" + Set gtmtypes("oprtype",1,"off")=0 + Set gtmtypes("oprtype",1,"len")=4 + Set gtmtypes("oprtype",1,"type")="int" + Set gtmtypfldindx("oprtype","oprclass")=1 + Set gtmtypes("oprtype",2,"name")="oprtype.oprval" + Set gtmtypes("oprtype",2,"off")=4 + Set gtmtypes("oprtype",2,"len")=4 + Set gtmtypes("oprtype",2,"type")="union" + Set gtmtypfldindx("oprtype","oprval")=2 + Set gtmtypes("oprtype",3,"name")="oprtype.oprval.indr" + Set gtmtypes("oprtype",3,"off")=4 + Set gtmtypes("oprtype",3,"len")=4 + Set gtmtypes("oprtype",3,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.indr")=3 + Set gtmtypes("oprtype",4,"name")="oprtype.oprval.tref" + Set gtmtypes("oprtype",4,"off")=4 + Set gtmtypes("oprtype",4,"len")=4 + Set gtmtypes("oprtype",4,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.tref")=4 + Set gtmtypes("oprtype",5,"name")="oprtype.oprval.tsize" + Set gtmtypes("oprtype",5,"off")=4 + Set gtmtypes("oprtype",5,"len")=4 + Set gtmtypes("oprtype",5,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.tsize")=5 + Set gtmtypes("oprtype",6,"name")="oprtype.oprval.lab" + Set gtmtypes("oprtype",6,"off")=4 + Set gtmtypes("oprtype",6,"len")=4 + Set gtmtypes("oprtype",6,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.lab")=6 + Set gtmtypes("oprtype",7,"name")="oprtype.oprval.mlin" + Set gtmtypes("oprtype",7,"off")=4 + Set gtmtypes("oprtype",7,"len")=4 + Set gtmtypes("oprtype",7,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.mlin")=7 + Set gtmtypes("oprtype",8,"name")="oprtype.oprval.mlit" + Set gtmtypes("oprtype",8,"off")=4 + Set gtmtypes("oprtype",8,"len")=4 + Set gtmtypes("oprtype",8,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.mlit")=8 + Set gtmtypes("oprtype",9,"name")="oprtype.oprval.cdlt" + Set gtmtypes("oprtype",9,"off")=4 + Set gtmtypes("oprtype",9,"len")=4 + Set gtmtypes("oprtype",9,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.cdlt")=9 + Set gtmtypes("oprtype",10,"name")="oprtype.oprval.cdidx" + Set gtmtypes("oprtype",10,"off")=4 + Set gtmtypes("oprtype",10,"len")=4 + Set gtmtypes("oprtype",10,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.cdidx")=10 + Set gtmtypes("oprtype",11,"name")="oprtype.oprval.vref" + Set gtmtypes("oprtype",11,"off")=4 + Set gtmtypes("oprtype",11,"len")=4 + Set gtmtypes("oprtype",11,"type")="addr" + Set gtmtypfldindx("oprtype","oprval.vref")=11 + Set gtmtypes("oprtype",12,"name")="oprtype.oprval.temp" + Set gtmtypes("oprtype",12,"off")=4 + Set gtmtypes("oprtype",12,"len")=4 + Set gtmtypes("oprtype",12,"type")="int" + Set gtmtypfldindx("oprtype","oprval.temp")=12 + Set gtmtypes("oprtype",13,"name")="oprtype.oprval.ilit" + Set gtmtypes("oprtype",13,"off")=4 + Set gtmtypes("oprtype",13,"len")=4 + Set gtmtypes("oprtype",13,"type")="int" + Set gtmtypfldindx("oprtype","oprval.ilit")=13 + Set gtmtypes("oprtype",14,"name")="oprtype.oprval.offset" + Set gtmtypes("oprtype",14,"off")=4 + Set gtmtypes("oprtype",14,"len")=4 + Set gtmtypes("oprtype",14,"type")="int" + Set gtmtypfldindx("oprtype","oprval.offset")=14 + Set gtmtypes("oprtype",15,"name")="oprtype.oprval.vreg" + Set gtmtypes("oprtype",15,"off")=4 + Set gtmtypes("oprtype",15,"len")=1 + Set gtmtypes("oprtype",15,"type")="unsigned-char" + Set gtmtypfldindx("oprtype","oprval.vreg")=15 + ; + Set gtmtypes("p1hdr")="struct" + Set gtmtypes("p1hdr",0)=16 + Set gtmtypes("p1hdr","len")=512 + Set gtmtypes("p1hdr",1,"name")="p1hdr.p1hdr_tag" + Set gtmtypes("p1hdr",1,"off")=0 + Set gtmtypes("p1hdr",1,"len")=8 + Set gtmtypes("p1hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","p1hdr_tag")=1 + Set gtmtypes("p1hdr",2,"name")="p1hdr.tn" + Set gtmtypes("p1hdr",2,"off")=8 + Set gtmtypes("p1hdr",2,"len")=4 + Set gtmtypes("p1hdr",2,"type")="v15_trans_num" + Set gtmtypfldindx("p1hdr","tn")=2 + Set gtmtypes("p1hdr",3,"name")="p1hdr.blk_count" + Set gtmtypes("p1hdr",3,"off")=12 + Set gtmtypes("p1hdr",3,"len")=4 + Set gtmtypes("p1hdr",3,"type")="int" + Set gtmtypfldindx("p1hdr","blk_count")=3 + Set gtmtypes("p1hdr",4,"name")="p1hdr.tot_blocks" + Set gtmtypes("p1hdr",4,"off")=16 + Set gtmtypes("p1hdr",4,"len")=4 + Set gtmtypes("p1hdr",4,"type")="int" + Set gtmtypfldindx("p1hdr","tot_blocks")=4 + Set gtmtypes("p1hdr",5,"name")="p1hdr.dt_leaf_cnt" + Set gtmtypes("p1hdr",5,"off")=20 + Set gtmtypes("p1hdr",5,"len")=4 + Set gtmtypes("p1hdr",5,"type")="int" + Set gtmtypfldindx("p1hdr","dt_leaf_cnt")=5 + Set gtmtypes("p1hdr",6,"name")="p1hdr.dt_index_cnt" + Set gtmtypes("p1hdr",6,"off")=24 + Set gtmtypes("p1hdr",6,"len")=4 + Set gtmtypes("p1hdr",6,"type")="int" + Set gtmtypfldindx("p1hdr","dt_index_cnt")=6 + Set gtmtypes("p1hdr",7,"name")="p1hdr.gvt_leaf_cnt" + Set gtmtypes("p1hdr",7,"off")=28 + Set gtmtypes("p1hdr",7,"len")=4 + Set gtmtypes("p1hdr",7,"type")="int" + Set gtmtypfldindx("p1hdr","gvt_leaf_cnt")=7 + Set gtmtypes("p1hdr",8,"name")="p1hdr.gvt_index_cnt" + Set gtmtypes("p1hdr",8,"off")=32 + Set gtmtypes("p1hdr",8,"len")=4 + Set gtmtypes("p1hdr",8,"type")="int" + Set gtmtypfldindx("p1hdr","gvt_index_cnt")=8 + Set gtmtypes("p1hdr",9,"name")="p1hdr.regname" + Set gtmtypes("p1hdr",9,"off")=36 + Set gtmtypes("p1hdr",9,"len")=32 + Set gtmtypes("p1hdr",9,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","regname")=9 + Set gtmtypes("p1hdr",10,"name")="p1hdr.dbfn" + Set gtmtypes("p1hdr",10,"off")=68 + Set gtmtypes("p1hdr",10,"len")=256 + Set gtmtypes("p1hdr",10,"type")="unsigned-char" + Set gtmtypfldindx("p1hdr","dbfn")=10 + Set gtmtypes("p1hdr",11,"name")="p1hdr.uid_len" + Set gtmtypes("p1hdr",11,"off")=324 + Set gtmtypes("p1hdr",11,"len")=4 + Set gtmtypes("p1hdr",11,"type")="int" + Set gtmtypfldindx("p1hdr","uid_len")=11 + Set gtmtypes("p1hdr",12,"name")="p1hdr.unique_id" + Set gtmtypes("p1hdr",12,"off")=328 + Set gtmtypes("p1hdr",12,"len")=20 + Set gtmtypes("p1hdr",12,"type")="unique_file_id" + Set gtmtypfldindx("p1hdr","unique_id")=12 + Set gtmtypes("p1hdr",13,"name")="p1hdr.unique_id.uid" + Set gtmtypes("p1hdr",13,"off")=328 + Set gtmtypes("p1hdr",13,"len")=20 + Set gtmtypes("p1hdr",13,"type")="unix_file_id" + Set gtmtypfldindx("p1hdr","unique_id.uid")=13 + Set gtmtypes("p1hdr",14,"name")="p1hdr.unique_id.file_id" + Set gtmtypes("p1hdr",14,"off")=328 + Set gtmtypes("p1hdr",14,"len")=20 + Set gtmtypes("p1hdr",14,"type")="char" + Set gtmtypfldindx("p1hdr","unique_id.file_id")=14 + Set gtmtypes("p1hdr",15,"name")="p1hdr.fillx" + Set gtmtypes("p1hdr",15,"off")=348 + Set gtmtypes("p1hdr",15,"len")=12 + Set gtmtypes("p1hdr",15,"type")="char" + Set gtmtypfldindx("p1hdr","fillx")=15 + Set gtmtypes("p1hdr",16,"name")="p1hdr.fill512" + Set gtmtypes("p1hdr",16,"off")=360 + Set gtmtypes("p1hdr",16,"len")=152 + Set gtmtypes("p1hdr",16,"type")="char" + Set gtmtypfldindx("p1hdr","fill512")=16 + ; + Set gtmtypes("p1rec")="struct" + Set gtmtypes("p1rec",0)=5 + Set gtmtypes("p1rec","len")=20 + Set gtmtypes("p1rec",1,"name")="p1rec.tn" + Set gtmtypes("p1rec",1,"off")=0 + Set gtmtypes("p1rec",1,"len")=4 + Set gtmtypes("p1rec",1,"type")="v15_trans_num" + Set gtmtypfldindx("p1rec","tn")=1 + Set gtmtypes("p1rec",2,"name")="p1rec.blk_num" + Set gtmtypes("p1rec",2,"off")=4 + Set gtmtypes("p1rec",2,"len")=4 + Set gtmtypes("p1rec",2,"type")="int" + Set gtmtypfldindx("p1rec","blk_num")=2 + Set gtmtypes("p1rec",3,"name")="p1rec.blk_type" + Set gtmtypes("p1rec",3,"off")=8 + Set gtmtypes("p1rec",3,"len")=4 + Set gtmtypes("p1rec",3,"type")="int" + Set gtmtypfldindx("p1rec","blk_type")=3 + Set gtmtypes("p1rec",4,"name")="p1rec.blk_levl" + Set gtmtypes("p1rec",4,"off")=12 + Set gtmtypes("p1rec",4,"len")=4 + Set gtmtypes("p1rec",4,"type")="int" + Set gtmtypfldindx("p1rec","blk_levl")=4 + Set gtmtypes("p1rec",5,"name")="p1rec.akey_len" + Set gtmtypes("p1rec",5,"off")=16 + Set gtmtypes("p1rec",5,"len")=4 + Set gtmtypes("p1rec",5,"type")="int" + Set gtmtypfldindx("p1rec","akey_len")=5 + ; + Set gtmtypes("parm_pool")="struct" + Set gtmtypes("parm_pool",0)=8 + Set gtmtypes("parm_pool","len")=16 + Set gtmtypes("parm_pool",1,"name")="parm_pool.capacity" + Set gtmtypes("parm_pool",1,"off")=0 + Set gtmtypes("parm_pool",1,"len")=4 + Set gtmtypes("parm_pool",1,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","capacity")=1 + Set gtmtypes("parm_pool",2,"name")="parm_pool.start_idx" + Set gtmtypes("parm_pool",2,"off")=4 + Set gtmtypes("parm_pool",2,"len")=4 + Set gtmtypes("parm_pool",2,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","start_idx")=2 + Set gtmtypes("parm_pool",3,"name")="parm_pool.parms" + Set gtmtypes("parm_pool",3,"off")=8 + Set gtmtypes("parm_pool",3,"len")=8 + Set gtmtypes("parm_pool",3,"type")="parm_slot" + Set gtmtypfldindx("parm_pool","parms")=3 + Set gtmtypes("parm_pool",4,"name")="parm_pool.parms[0].mask_and_cnt" + Set gtmtypes("parm_pool",4,"off")=8 + Set gtmtypes("parm_pool",4,"len")=8 + Set gtmtypes("parm_pool",4,"type")="struct" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt")=4 + Set gtmtypes("parm_pool",5,"name")="parm_pool.parms[0].mask_and_cnt.mask" + Set gtmtypes("parm_pool",5,"off")=8 + Set gtmtypes("parm_pool",5,"len")=4 + Set gtmtypes("parm_pool",5,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt.mask")=5 + Set gtmtypes("parm_pool",6,"name")="parm_pool.parms[0].mask_and_cnt.actualcnt" + Set gtmtypes("parm_pool",6,"off")=12 + Set gtmtypes("parm_pool",6,"len")=4 + Set gtmtypes("parm_pool",6,"type")="unsigned-int" + Set gtmtypfldindx("parm_pool","parms[0].mask_and_cnt.actualcnt")=6 + Set gtmtypes("parm_pool",7,"name")="parm_pool.parms[0].frame" + Set gtmtypes("parm_pool",7,"off")=8 + Set gtmtypes("parm_pool",7,"len")=4 + Set gtmtypes("parm_pool",7,"type")="addr" + Set gtmtypfldindx("parm_pool","parms[0].frame")=7 + Set gtmtypes("parm_pool",8,"name")="parm_pool.parms[0].actuallist" + Set gtmtypes("parm_pool",8,"off")=8 + Set gtmtypes("parm_pool",8,"len")=4 + Set gtmtypes("parm_pool",8,"type")="addr" + Set gtmtypfldindx("parm_pool","parms[0].actuallist")=8 + ; + Set gtmtypes("parm_slot")="union" + Set gtmtypes("parm_slot",0)=5 + Set gtmtypes("parm_slot","len")=8 + Set gtmtypes("parm_slot",1,"name")="parm_slot.mask_and_cnt" + Set gtmtypes("parm_slot",1,"off")=0 + Set gtmtypes("parm_slot",1,"len")=8 + Set gtmtypes("parm_slot",1,"type")="struct" + Set gtmtypfldindx("parm_slot","mask_and_cnt")=1 + Set gtmtypes("parm_slot",2,"name")="parm_slot.mask_and_cnt.mask" + Set gtmtypes("parm_slot",2,"off")=0 + Set gtmtypes("parm_slot",2,"len")=4 + Set gtmtypes("parm_slot",2,"type")="unsigned-int" + Set gtmtypfldindx("parm_slot","mask_and_cnt.mask")=2 + Set gtmtypes("parm_slot",3,"name")="parm_slot.mask_and_cnt.actualcnt" + Set gtmtypes("parm_slot",3,"off")=4 + Set gtmtypes("parm_slot",3,"len")=4 + Set gtmtypes("parm_slot",3,"type")="unsigned-int" + Set gtmtypfldindx("parm_slot","mask_and_cnt.actualcnt")=3 + Set gtmtypes("parm_slot",4,"name")="parm_slot.frame" + Set gtmtypes("parm_slot",4,"off")=0 + Set gtmtypes("parm_slot",4,"len")=4 + Set gtmtypes("parm_slot",4,"type")="addr" + Set gtmtypfldindx("parm_slot","frame")=4 + Set gtmtypes("parm_slot",5,"name")="parm_slot.actuallist" + Set gtmtypes("parm_slot",5,"off")=0 + Set gtmtypes("parm_slot",5,"len")=4 + Set gtmtypes("parm_slot",5,"type")="addr" + Set gtmtypfldindx("parm_slot","actuallist")=5 + ; + Set gtmtypes("parmblk_struct")="struct" + Set gtmtypes("parmblk_struct",0)=7 + Set gtmtypes("parmblk_struct","len")=152 + Set gtmtypes("parmblk_struct",1,"name")="parmblk_struct.ci_rtn" + Set gtmtypes("parmblk_struct",1,"off")=0 + Set gtmtypes("parmblk_struct",1,"len")=4 + Set gtmtypes("parmblk_struct",1,"type")="addr" + Set gtmtypfldindx("parmblk_struct","ci_rtn")=1 + Set gtmtypes("parmblk_struct",2,"name")="parmblk_struct.argcnt" + Set gtmtypes("parmblk_struct",2,"off")=4 + Set gtmtypes("parmblk_struct",2,"len")=4 + Set gtmtypes("parmblk_struct",2,"type")="int" + Set gtmtypfldindx("parmblk_struct","argcnt")=2 + Set gtmtypes("parmblk_struct",3,"name")="parmblk_struct.rtnaddr" + Set gtmtypes("parmblk_struct",3,"off")=8 + Set gtmtypes("parmblk_struct",3,"len")=4 + Set gtmtypes("parmblk_struct",3,"type")="addr" + Set gtmtypfldindx("parmblk_struct","rtnaddr")=3 + Set gtmtypes("parmblk_struct",4,"name")="parmblk_struct.labaddr" + Set gtmtypes("parmblk_struct",4,"off")=12 + Set gtmtypes("parmblk_struct",4,"len")=4 + Set gtmtypes("parmblk_struct",4,"type")="addr" + Set gtmtypfldindx("parmblk_struct","labaddr")=4 + Set gtmtypes("parmblk_struct",5,"name")="parmblk_struct.retaddr" + Set gtmtypes("parmblk_struct",5,"off")=16 + Set gtmtypes("parmblk_struct",5,"len")=4 + Set gtmtypes("parmblk_struct",5,"type")="addr" + Set gtmtypfldindx("parmblk_struct","retaddr")=5 + Set gtmtypes("parmblk_struct",6,"name")="parmblk_struct.mask" + Set gtmtypes("parmblk_struct",6,"off")=20 + Set gtmtypes("parmblk_struct",6,"len")=4 + Set gtmtypes("parmblk_struct",6,"type")="int" + Set gtmtypfldindx("parmblk_struct","mask")=6 + Set gtmtypes("parmblk_struct",7,"name")="parmblk_struct.args" + Set gtmtypes("parmblk_struct",7,"off")=24 + Set gtmtypes("parmblk_struct",7,"len")=128 + Set gtmtypes("parmblk_struct",7,"type")="addr" + Set gtmtypfldindx("parmblk_struct","args")=7 + Set gtmtypes("parmblk_struct",7,"dim")=32 + ; + Set gtmtypes("parse_blk")="struct" + Set gtmtypes("parse_blk",0)=17 + Set gtmtypes("parse_blk","len")=52 + Set gtmtypes("parse_blk",1,"name")="parse_blk.b_esl" + Set gtmtypes("parse_blk",1,"off")=0 + Set gtmtypes("parse_blk",1,"len")=1 + Set gtmtypes("parse_blk",1,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_esl")=1 + Set gtmtypes("parse_blk",2,"name")="parse_blk.b_node" + Set gtmtypes("parse_blk",2,"off")=1 + Set gtmtypes("parse_blk",2,"len")=1 + Set gtmtypes("parse_blk",2,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_node")=2 + Set gtmtypes("parse_blk",3,"name")="parse_blk.b_dir" + Set gtmtypes("parse_blk",3,"off")=2 + Set gtmtypes("parse_blk",3,"len")=1 + Set gtmtypes("parse_blk",3,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_dir")=3 + Set gtmtypes("parse_blk",4,"name")="parse_blk.b_name" + Set gtmtypes("parse_blk",4,"off")=3 + Set gtmtypes("parse_blk",4,"len")=1 + Set gtmtypes("parse_blk",4,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_name")=4 + Set gtmtypes("parse_blk",5,"name")="parse_blk.b_ext" + Set gtmtypes("parse_blk",5,"off")=4 + Set gtmtypes("parse_blk",5,"len")=1 + Set gtmtypes("parse_blk",5,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","b_ext")=5 + Set gtmtypes("parse_blk",6,"name")="parse_blk.def1_size" + Set gtmtypes("parse_blk",6,"off")=5 + Set gtmtypes("parse_blk",6,"len")=1 + Set gtmtypes("parse_blk",6,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","def1_size")=6 + Set gtmtypes("parse_blk",7,"name")="parse_blk.def1_buf" + Set gtmtypes("parse_blk",7,"off")=8 + Set gtmtypes("parse_blk",7,"len")=4 + Set gtmtypes("parse_blk",7,"type")="addr" + Set gtmtypfldindx("parse_blk","def1_buf")=7 + Set gtmtypes("parse_blk",8,"name")="parse_blk.def2_size" + Set gtmtypes("parse_blk",8,"off")=12 + Set gtmtypes("parse_blk",8,"len")=1 + Set gtmtypes("parse_blk",8,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","def2_size")=8 + Set gtmtypes("parse_blk",9,"name")="parse_blk.def2_buf" + Set gtmtypes("parse_blk",9,"off")=16 + Set gtmtypes("parse_blk",9,"len")=4 + Set gtmtypes("parse_blk",9,"type")="addr" + Set gtmtypfldindx("parse_blk","def2_buf")=9 + Set gtmtypes("parse_blk",10,"name")="parse_blk.buff_size" + Set gtmtypes("parse_blk",10,"off")=20 + Set gtmtypes("parse_blk",10,"len")=1 + Set gtmtypes("parse_blk",10,"type")="unsigned-char" + Set gtmtypfldindx("parse_blk","buff_size")=10 + Set gtmtypes("parse_blk",11,"name")="parse_blk.buffer" + Set gtmtypes("parse_blk",11,"off")=24 + Set gtmtypes("parse_blk",11,"len")=4 + Set gtmtypes("parse_blk",11,"type")="addr" + Set gtmtypfldindx("parse_blk","buffer")=11 + Set gtmtypes("parse_blk",12,"name")="parse_blk.fnb" + Set gtmtypes("parse_blk",12,"off")=28 + Set gtmtypes("parse_blk",12,"len")=4 + Set gtmtypes("parse_blk",12,"type")="int" + Set gtmtypfldindx("parse_blk","fnb")=12 + Set gtmtypes("parse_blk",13,"name")="parse_blk.fop" + Set gtmtypes("parse_blk",13,"off")=32 + Set gtmtypes("parse_blk",13,"len")=4 + Set gtmtypes("parse_blk",13,"type")="int" + Set gtmtypfldindx("parse_blk","fop")=13 + Set gtmtypes("parse_blk",14,"name")="parse_blk.l_node" + Set gtmtypes("parse_blk",14,"off")=36 + Set gtmtypes("parse_blk",14,"len")=4 + Set gtmtypes("parse_blk",14,"type")="addr" + Set gtmtypfldindx("parse_blk","l_node")=14 + Set gtmtypes("parse_blk",15,"name")="parse_blk.l_dir" + Set gtmtypes("parse_blk",15,"off")=40 + Set gtmtypes("parse_blk",15,"len")=4 + Set gtmtypes("parse_blk",15,"type")="addr" + Set gtmtypfldindx("parse_blk","l_dir")=15 + Set gtmtypes("parse_blk",16,"name")="parse_blk.l_name" + Set gtmtypes("parse_blk",16,"off")=44 + Set gtmtypes("parse_blk",16,"len")=4 + Set gtmtypes("parse_blk",16,"type")="addr" + Set gtmtypfldindx("parse_blk","l_name")=16 + Set gtmtypes("parse_blk",17,"name")="parse_blk.l_ext" + Set gtmtypes("parse_blk",17,"off")=48 + Set gtmtypes("parse_blk",17,"len")=4 + Set gtmtypes("parse_blk",17,"type")="addr" + Set gtmtypfldindx("parse_blk","l_ext")=17 + ; + Set gtmtypes("pat_strlit")="struct" + Set gtmtypes("pat_strlit",0)=4 + Set gtmtypes("pat_strlit","len")=3956 + Set gtmtypes("pat_strlit",1,"name")="pat_strlit.bytelen" + Set gtmtypes("pat_strlit",1,"off")=0 + Set gtmtypes("pat_strlit",1,"len")=4 + Set gtmtypes("pat_strlit",1,"type")="int" + Set gtmtypfldindx("pat_strlit","bytelen")=1 + Set gtmtypes("pat_strlit",2,"name")="pat_strlit.charlen" + Set gtmtypes("pat_strlit",2,"off")=4 + Set gtmtypes("pat_strlit",2,"len")=4 + Set gtmtypes("pat_strlit",2,"type")="int" + Set gtmtypfldindx("pat_strlit","charlen")=2 + Set gtmtypes("pat_strlit",3,"name")="pat_strlit.flags" + Set gtmtypes("pat_strlit",3,"off")=8 + Set gtmtypes("pat_strlit",3,"len")=4 + Set gtmtypes("pat_strlit",3,"type")="unsigned-int" + Set gtmtypfldindx("pat_strlit","flags")=3 + Set gtmtypes("pat_strlit",4,"name")="pat_strlit.buff" + Set gtmtypes("pat_strlit",4,"off")=12 + Set gtmtypes("pat_strlit",4,"len")=3941 + Set gtmtypes("pat_strlit",4,"type")="unsigned-char" + Set gtmtypfldindx("pat_strlit","buff")=4 + ; + Set gtmtypes("pattern")="struct" + Set gtmtypes("pattern",0)=7 + Set gtmtypes("pattern","len")=28 + Set gtmtypes("pattern",1,"name")="pattern.flink" + Set gtmtypes("pattern",1,"off")=0 + Set gtmtypes("pattern",1,"len")=4 + Set gtmtypes("pattern",1,"type")="addr" + Set gtmtypfldindx("pattern","flink")=1 + Set gtmtypes("pattern",2,"name")="pattern.typemask" + Set gtmtypes("pattern",2,"off")=4 + Set gtmtypes("pattern",2,"len")=4 + Set gtmtypes("pattern",2,"type")="addr" + Set gtmtypfldindx("pattern","typemask")=2 + Set gtmtypes("pattern",3,"name")="pattern.patYZnam" + Set gtmtypes("pattern",3,"off")=8 + Set gtmtypes("pattern",3,"len")=4 + Set gtmtypes("pattern",3,"type")="addr" + Set gtmtypfldindx("pattern","patYZnam")=3 + Set gtmtypes("pattern",4,"name")="pattern.patYZlen" + Set gtmtypes("pattern",4,"off")=12 + Set gtmtypes("pattern",4,"len")=4 + Set gtmtypes("pattern",4,"type")="addr" + Set gtmtypfldindx("pattern","patYZlen")=4 + Set gtmtypes("pattern",5,"name")="pattern.patYZnum" + Set gtmtypes("pattern",5,"off")=16 + Set gtmtypes("pattern",5,"len")=4 + Set gtmtypes("pattern",5,"type")="int" + Set gtmtypfldindx("pattern","patYZnum")=5 + Set gtmtypes("pattern",6,"name")="pattern.namlen" + Set gtmtypes("pattern",6,"off")=20 + Set gtmtypes("pattern",6,"len")=4 + Set gtmtypes("pattern",6,"type")="int" + Set gtmtypfldindx("pattern","namlen")=6 + Set gtmtypes("pattern",7,"name")="pattern.name" + Set gtmtypes("pattern",7,"off")=24 + Set gtmtypes("pattern",7,"len")=2 + Set gtmtypes("pattern",7,"type")="char" + Set gtmtypfldindx("pattern","name")=7 + ; + Set gtmtypes("phase2_wait_trace_t")="struct" + Set gtmtypes("phase2_wait_trace_t",0)=2 + Set gtmtypes("phase2_wait_trace_t","len")=8 + Set gtmtypes("phase2_wait_trace_t",1,"name")="phase2_wait_trace_t.blocking_pid" + Set gtmtypes("phase2_wait_trace_t",1,"off")=0 + Set gtmtypes("phase2_wait_trace_t",1,"len")=4 + Set gtmtypes("phase2_wait_trace_t",1,"type")="unsigned-int" + Set gtmtypfldindx("phase2_wait_trace_t","blocking_pid")=1 + Set gtmtypes("phase2_wait_trace_t",2,"name")="phase2_wait_trace_t.cr" + Set gtmtypes("phase2_wait_trace_t",2,"off")=4 + Set gtmtypes("phase2_wait_trace_t",2,"len")=4 + Set gtmtypes("phase2_wait_trace_t",2,"type")="addr" + Set gtmtypfldindx("phase2_wait_trace_t","cr")=2 + ; + Set gtmtypes("phase_static_area")="struct" + Set gtmtypes("phase_static_area",0)=86 + Set gtmtypes("phase_static_area","len")=11436 + Set gtmtypes("phase_static_area",1,"name")="phase_static_area.hint_lcl" + Set gtmtypes("phase_static_area",1,"off")=0 + Set gtmtypes("phase_static_area",1,"len")=4 + Set gtmtypes("phase_static_area",1,"type")="int" + Set gtmtypfldindx("phase_static_area","hint_lcl")=1 + Set gtmtypes("phase_static_area",2,"name")="phase_static_area.outfd" + Set gtmtypes("phase_static_area",2,"off")=4 + Set gtmtypes("phase_static_area",2,"len")=4 + Set gtmtypes("phase_static_area",2,"type")="int" + Set gtmtypfldindx("phase_static_area","outfd")=2 + Set gtmtypes("phase_static_area",3,"name")="phase_static_area.blks_processed" + Set gtmtypes("phase_static_area",3,"off")=8 + Set gtmtypes("phase_static_area",3,"len")=4 + Set gtmtypes("phase_static_area",3,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_processed")=3 + Set gtmtypes("phase_static_area",4,"name")="phase_static_area.blks_bypassed" + Set gtmtypes("phase_static_area",4,"off")=12 + Set gtmtypes("phase_static_area",4,"len")=4 + Set gtmtypes("phase_static_area",4,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_bypassed")=4 + Set gtmtypes("phase_static_area",5,"name")="phase_static_area.blks_too_big" + Set gtmtypes("phase_static_area",5,"off")=16 + Set gtmtypes("phase_static_area",5,"len")=4 + Set gtmtypes("phase_static_area",5,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_too_big")=5 + Set gtmtypes("phase_static_area",6,"name")="phase_static_area.blks_read" + Set gtmtypes("phase_static_area",6,"off")=20 + Set gtmtypes("phase_static_area",6,"len")=4 + Set gtmtypes("phase_static_area",6,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_read")=6 + Set gtmtypes("phase_static_area",7,"name")="phase_static_area.blks_cached" + Set gtmtypes("phase_static_area",7,"off")=24 + Set gtmtypes("phase_static_area",7,"len")=4 + Set gtmtypes("phase_static_area",7,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_cached")=7 + Set gtmtypes("phase_static_area",8,"name")="phase_static_area.blks_updated" + Set gtmtypes("phase_static_area",8,"off")=28 + Set gtmtypes("phase_static_area",8,"len")=4 + Set gtmtypes("phase_static_area",8,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_updated")=8 + Set gtmtypes("phase_static_area",9,"name")="phase_static_area.blks_created" + Set gtmtypes("phase_static_area",9,"off")=32 + Set gtmtypes("phase_static_area",9,"len")=4 + Set gtmtypes("phase_static_area",9,"type")="int" + Set gtmtypfldindx("phase_static_area","blks_created")=9 + Set gtmtypes("phase_static_area",10,"name")="phase_static_area.dtlvl0" + Set gtmtypes("phase_static_area",10,"off")=36 + Set gtmtypes("phase_static_area",10,"len")=4 + Set gtmtypes("phase_static_area",10,"type")="int" + Set gtmtypfldindx("phase_static_area","dtlvl0")=10 + Set gtmtypes("phase_static_area",11,"name")="phase_static_area.dtlvln0" + Set gtmtypes("phase_static_area",11,"off")=40 + Set gtmtypes("phase_static_area",11,"len")=4 + Set gtmtypes("phase_static_area",11,"type")="int" + Set gtmtypfldindx("phase_static_area","dtlvln0")=11 + Set gtmtypes("phase_static_area",12,"name")="phase_static_area.gvtlvl0" + Set gtmtypes("phase_static_area",12,"off")=44 + Set gtmtypes("phase_static_area",12,"len")=4 + Set gtmtypes("phase_static_area",12,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtlvl0")=12 + Set gtmtypes("phase_static_area",13,"name")="phase_static_area.gvtlvln0" + Set gtmtypes("phase_static_area",13,"off")=48 + Set gtmtypes("phase_static_area",13,"len")=4 + Set gtmtypes("phase_static_area",13,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtlvln0")=13 + Set gtmtypes("phase_static_area",14,"name")="phase_static_area.gvtrchildren" + Set gtmtypes("phase_static_area",14,"off")=52 + Set gtmtypes("phase_static_area",14,"len")=4 + Set gtmtypes("phase_static_area",14,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtrchildren")=14 + Set gtmtypes("phase_static_area",15,"name")="phase_static_area.blk_process_errors" + Set gtmtypes("phase_static_area",15,"off")=56 + Set gtmtypes("phase_static_area",15,"len")=4 + Set gtmtypes("phase_static_area",15,"type")="int" + Set gtmtypfldindx("phase_static_area","blk_process_errors")=15 + Set gtmtypes("phase_static_area",16,"name")="phase_static_area.gvtroot_rchildren_cnt" + Set gtmtypes("phase_static_area",16,"off")=60 + Set gtmtypes("phase_static_area",16,"len")=4 + Set gtmtypes("phase_static_area",16,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren_cnt")=16 + Set gtmtypes("phase_static_area",17,"name")="phase_static_area.local_bit_map_cnt" + Set gtmtypes("phase_static_area",17,"off")=64 + Set gtmtypes("phase_static_area",17,"len")=4 + Set gtmtypes("phase_static_area",17,"type")="int" + Set gtmtypfldindx("phase_static_area","local_bit_map_cnt")=17 + Set gtmtypes("phase_static_area",18,"name")="phase_static_area.blocks_to_process" + Set gtmtypes("phase_static_area",18,"off")=68 + Set gtmtypes("phase_static_area",18,"len")=4 + Set gtmtypes("phase_static_area",18,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","blocks_to_process")=18 + Set gtmtypes("phase_static_area",19,"name")="phase_static_area.tmpcmdfile_len" + Set gtmtypes("phase_static_area",19,"off")=72 + Set gtmtypes("phase_static_area",19,"len")=4 + Set gtmtypes("phase_static_area",19,"type")="int" + Set gtmtypfldindx("phase_static_area","tmpcmdfile_len")=19 + Set gtmtypes("phase_static_area",20,"name")="phase_static_area.tmprsltfile_len" + Set gtmtypes("phase_static_area",20,"off")=76 + Set gtmtypes("phase_static_area",20,"len")=4 + Set gtmtypes("phase_static_area",20,"type")="int" + Set gtmtypfldindx("phase_static_area","tmprsltfile_len")=20 + Set gtmtypes("phase_static_area",21,"name")="phase_static_area.max_blk_len" + Set gtmtypes("phase_static_area",21,"off")=80 + Set gtmtypes("phase_static_area",21,"len")=4 + Set gtmtypes("phase_static_area",21,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","max_blk_len")=21 + Set gtmtypes("phase_static_area",22,"name")="phase_static_area.max_rec_len" + Set gtmtypes("phase_static_area",22,"off")=84 + Set gtmtypes("phase_static_area",22,"len")=4 + Set gtmtypes("phase_static_area",22,"type")="unsigned-int" + Set gtmtypfldindx("phase_static_area","max_rec_len")=22 + Set gtmtypes("phase_static_area",23,"name")="phase_static_area.report_only" + Set gtmtypes("phase_static_area",23,"off")=88 + Set gtmtypes("phase_static_area",23,"len")=4 + Set gtmtypes("phase_static_area",23,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","report_only")=23 + Set gtmtypes("phase_static_area",24,"name")="phase_static_area.detail" + Set gtmtypes("phase_static_area",24,"off")=92 + Set gtmtypes("phase_static_area",24,"len")=4 + Set gtmtypes("phase_static_area",24,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","detail")=24 + Set gtmtypes("phase_static_area",25,"name")="phase_static_area.bsu_keys" + Set gtmtypes("phase_static_area",25,"off")=96 + Set gtmtypes("phase_static_area",25,"len")=4 + Set gtmtypes("phase_static_area",25,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","bsu_keys")=25 + Set gtmtypes("phase_static_area",26,"name")="phase_static_area.final" + Set gtmtypes("phase_static_area",26,"off")=100 + Set gtmtypes("phase_static_area",26,"len")=4 + Set gtmtypes("phase_static_area",26,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","final")=26 + Set gtmtypes("phase_static_area",27,"name")="phase_static_area.phase_one" + Set gtmtypes("phase_static_area",27,"off")=104 + Set gtmtypes("phase_static_area",27,"len")=4 + Set gtmtypes("phase_static_area",27,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","phase_one")=27 + Set gtmtypes("phase_static_area",28,"name")="phase_static_area.dbc_debug" + Set gtmtypes("phase_static_area",28,"off")=108 + Set gtmtypes("phase_static_area",28,"len")=4 + Set gtmtypes("phase_static_area",28,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_debug")=28 + Set gtmtypes("phase_static_area",29,"name")="phase_static_area.tmp_file_names_gend" + Set gtmtypes("phase_static_area",29,"off")=112 + Set gtmtypes("phase_static_area",29,"len")=4 + Set gtmtypes("phase_static_area",29,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","tmp_file_names_gend")=29 + Set gtmtypes("phase_static_area",30,"name")="phase_static_area.keep_temp_files" + Set gtmtypes("phase_static_area",30,"off")=116 + Set gtmtypes("phase_static_area",30,"len")=4 + Set gtmtypes("phase_static_area",30,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","keep_temp_files")=30 + Set gtmtypes("phase_static_area",31,"name")="phase_static_area.sem_inf" + Set gtmtypes("phase_static_area",31,"off")=120 + Set gtmtypes("phase_static_area",31,"len")=24 + Set gtmtypes("phase_static_area",31,"type")="sem_info" + Set gtmtypfldindx("phase_static_area","sem_inf")=31 + Set gtmtypes("phase_static_area",31,"dim")=3 + Set gtmtypes("phase_static_area",32,"name")="phase_static_area.sem_inf[0].ftok_key" + Set gtmtypes("phase_static_area",32,"off")=120 + Set gtmtypes("phase_static_area",32,"len")=4 + Set gtmtypes("phase_static_area",32,"type")="int" + Set gtmtypfldindx("phase_static_area","sem_inf[0].ftok_key")=32 + Set gtmtypes("phase_static_area",33,"name")="phase_static_area.sem_inf[0].sem_id" + Set gtmtypes("phase_static_area",33,"off")=124 + Set gtmtypes("phase_static_area",33,"len")=4 + Set gtmtypes("phase_static_area",33,"type")="int" + Set gtmtypfldindx("phase_static_area","sem_inf[0].sem_id")=33 + Set gtmtypes("phase_static_area",34,"name")="phase_static_area.dbc_critical" + Set gtmtypes("phase_static_area",34,"off")=144 + Set gtmtypes("phase_static_area",34,"len")=4 + Set gtmtypes("phase_static_area",34,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_critical")=34 + Set gtmtypes("phase_static_area",35,"name")="phase_static_area.dbc_fhdr_dirty" + Set gtmtypes("phase_static_area",35,"off")=148 + Set gtmtypes("phase_static_area",35,"len")=4 + Set gtmtypes("phase_static_area",35,"type")="boolean_t" + Set gtmtypfldindx("phase_static_area","dbc_fhdr_dirty")=35 + Set gtmtypes("phase_static_area",36,"name")="phase_static_area.curr_lbmap_buff" + Set gtmtypes("phase_static_area",36,"off")=152 + Set gtmtypes("phase_static_area",36,"len")=4 + Set gtmtypes("phase_static_area",36,"type")="addr" + Set gtmtypfldindx("phase_static_area","curr_lbmap_buff")=36 + Set gtmtypes("phase_static_area",37,"name")="phase_static_area.block_buff" + Set gtmtypes("phase_static_area",37,"off")=156 + Set gtmtypes("phase_static_area",37,"len")=4 + Set gtmtypes("phase_static_area",37,"type")="addr" + Set gtmtypfldindx("phase_static_area","block_buff")=37 + Set gtmtypes("phase_static_area",38,"name")="phase_static_area.util_cmd_buff" + Set gtmtypes("phase_static_area",38,"off")=160 + Set gtmtypes("phase_static_area",38,"len")=256 + Set gtmtypes("phase_static_area",38,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","util_cmd_buff")=38 + Set gtmtypes("phase_static_area",39,"name")="phase_static_area.blk_set" + Set gtmtypes("phase_static_area",39,"off")=416 + Set gtmtypes("phase_static_area",39,"len")=4 + Set gtmtypes("phase_static_area",39,"type")="addr" + Set gtmtypfldindx("phase_static_area","blk_set")=39 + Set gtmtypes("phase_static_area",40,"name")="phase_static_area.block_depth" + Set gtmtypes("phase_static_area",40,"off")=420 + Set gtmtypes("phase_static_area",40,"len")=4 + Set gtmtypes("phase_static_area",40,"type")="int" + Set gtmtypfldindx("phase_static_area","block_depth")=40 + Set gtmtypes("phase_static_area",41,"name")="phase_static_area.block_depth_hwm" + Set gtmtypes("phase_static_area",41,"off")=424 + Set gtmtypes("phase_static_area",41,"len")=4 + Set gtmtypes("phase_static_area",41,"type")="int" + Set gtmtypfldindx("phase_static_area","block_depth_hwm")=41 + Set gtmtypes("phase_static_area",42,"name")="phase_static_area.tcfp" + Set gtmtypes("phase_static_area",42,"off")=428 + Set gtmtypes("phase_static_area",42,"len")=4 + Set gtmtypes("phase_static_area",42,"type")="addr" + Set gtmtypfldindx("phase_static_area","tcfp")=42 + Set gtmtypes("phase_static_area",43,"name")="phase_static_area.trfp" + Set gtmtypes("phase_static_area",43,"off")=432 + Set gtmtypes("phase_static_area",43,"len")=4 + Set gtmtypes("phase_static_area",43,"type")="addr" + Set gtmtypfldindx("phase_static_area","trfp")=43 + Set gtmtypes("phase_static_area",44,"name")="phase_static_area.hint_blk" + Set gtmtypes("phase_static_area",44,"off")=436 + Set gtmtypes("phase_static_area",44,"len")=4 + Set gtmtypes("phase_static_area",44,"type")="int" + Set gtmtypfldindx("phase_static_area","hint_blk")=44 + Set gtmtypes("phase_static_area",45,"name")="phase_static_area.ofhdr" + Set gtmtypes("phase_static_area",45,"off")=440 + Set gtmtypes("phase_static_area",45,"len")=512 + Set gtmtypes("phase_static_area",45,"type")="p1hdr" + Set gtmtypfldindx("phase_static_area","ofhdr")=45 + Set gtmtypes("phase_static_area",46,"name")="phase_static_area.ofhdr.p1hdr_tag" + Set gtmtypes("phase_static_area",46,"off")=440 + Set gtmtypes("phase_static_area",46,"len")=8 + Set gtmtypes("phase_static_area",46,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.p1hdr_tag")=46 + Set gtmtypes("phase_static_area",47,"name")="phase_static_area.ofhdr.tn" + Set gtmtypes("phase_static_area",47,"off")=448 + Set gtmtypes("phase_static_area",47,"len")=4 + Set gtmtypes("phase_static_area",47,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","ofhdr.tn")=47 + Set gtmtypes("phase_static_area",48,"name")="phase_static_area.ofhdr.blk_count" + Set gtmtypes("phase_static_area",48,"off")=452 + Set gtmtypes("phase_static_area",48,"len")=4 + Set gtmtypes("phase_static_area",48,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.blk_count")=48 + Set gtmtypes("phase_static_area",49,"name")="phase_static_area.ofhdr.tot_blocks" + Set gtmtypes("phase_static_area",49,"off")=456 + Set gtmtypes("phase_static_area",49,"len")=4 + Set gtmtypes("phase_static_area",49,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.tot_blocks")=49 + Set gtmtypes("phase_static_area",50,"name")="phase_static_area.ofhdr.dt_leaf_cnt" + Set gtmtypes("phase_static_area",50,"off")=460 + Set gtmtypes("phase_static_area",50,"len")=4 + Set gtmtypes("phase_static_area",50,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.dt_leaf_cnt")=50 + Set gtmtypes("phase_static_area",51,"name")="phase_static_area.ofhdr.dt_index_cnt" + Set gtmtypes("phase_static_area",51,"off")=464 + Set gtmtypes("phase_static_area",51,"len")=4 + Set gtmtypes("phase_static_area",51,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.dt_index_cnt")=51 + Set gtmtypes("phase_static_area",52,"name")="phase_static_area.ofhdr.gvt_leaf_cnt" + Set gtmtypes("phase_static_area",52,"off")=468 + Set gtmtypes("phase_static_area",52,"len")=4 + Set gtmtypes("phase_static_area",52,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.gvt_leaf_cnt")=52 + Set gtmtypes("phase_static_area",53,"name")="phase_static_area.ofhdr.gvt_index_cnt" + Set gtmtypes("phase_static_area",53,"off")=472 + Set gtmtypes("phase_static_area",53,"len")=4 + Set gtmtypes("phase_static_area",53,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.gvt_index_cnt")=53 + Set gtmtypes("phase_static_area",54,"name")="phase_static_area.ofhdr.regname" + Set gtmtypes("phase_static_area",54,"off")=476 + Set gtmtypes("phase_static_area",54,"len")=32 + Set gtmtypes("phase_static_area",54,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.regname")=54 + Set gtmtypes("phase_static_area",55,"name")="phase_static_area.ofhdr.dbfn" + Set gtmtypes("phase_static_area",55,"off")=508 + Set gtmtypes("phase_static_area",55,"len")=256 + Set gtmtypes("phase_static_area",55,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","ofhdr.dbfn")=55 + Set gtmtypes("phase_static_area",56,"name")="phase_static_area.ofhdr.uid_len" + Set gtmtypes("phase_static_area",56,"off")=764 + Set gtmtypes("phase_static_area",56,"len")=4 + Set gtmtypes("phase_static_area",56,"type")="int" + Set gtmtypfldindx("phase_static_area","ofhdr.uid_len")=56 + Set gtmtypes("phase_static_area",57,"name")="phase_static_area.ofhdr.unique_id" + Set gtmtypes("phase_static_area",57,"off")=768 + Set gtmtypes("phase_static_area",57,"len")=20 + Set gtmtypes("phase_static_area",57,"type")="unique_file_id" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id")=57 + Set gtmtypes("phase_static_area",58,"name")="phase_static_area.ofhdr.unique_id.uid" + Set gtmtypes("phase_static_area",58,"off")=768 + Set gtmtypes("phase_static_area",58,"len")=20 + Set gtmtypes("phase_static_area",58,"type")="unix_file_id" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id.uid")=58 + Set gtmtypes("phase_static_area",59,"name")="phase_static_area.ofhdr.unique_id.file_id" + Set gtmtypes("phase_static_area",59,"off")=768 + Set gtmtypes("phase_static_area",59,"len")=20 + Set gtmtypes("phase_static_area",59,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.unique_id.file_id")=59 + Set gtmtypes("phase_static_area",60,"name")="phase_static_area.ofhdr.fillx" + Set gtmtypes("phase_static_area",60,"off")=788 + Set gtmtypes("phase_static_area",60,"len")=12 + Set gtmtypes("phase_static_area",60,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.fillx")=60 + Set gtmtypes("phase_static_area",61,"name")="phase_static_area.ofhdr.fill512" + Set gtmtypes("phase_static_area",61,"off")=800 + Set gtmtypes("phase_static_area",61,"len")=152 + Set gtmtypes("phase_static_area",61,"type")="char" + Set gtmtypfldindx("phase_static_area","ofhdr.fill512")=61 + Set gtmtypes("phase_static_area",62,"name")="phase_static_area.rhdr" + Set gtmtypes("phase_static_area",62,"off")=952 + Set gtmtypes("phase_static_area",62,"len")=20 + Set gtmtypes("phase_static_area",62,"type")="p1rec" + Set gtmtypfldindx("phase_static_area","rhdr")=62 + Set gtmtypes("phase_static_area",63,"name")="phase_static_area.rhdr.tn" + Set gtmtypes("phase_static_area",63,"off")=952 + Set gtmtypes("phase_static_area",63,"len")=4 + Set gtmtypes("phase_static_area",63,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","rhdr.tn")=63 + Set gtmtypes("phase_static_area",64,"name")="phase_static_area.rhdr.blk_num" + Set gtmtypes("phase_static_area",64,"off")=956 + Set gtmtypes("phase_static_area",64,"len")=4 + Set gtmtypes("phase_static_area",64,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_num")=64 + Set gtmtypes("phase_static_area",65,"name")="phase_static_area.rhdr.blk_type" + Set gtmtypes("phase_static_area",65,"off")=960 + Set gtmtypes("phase_static_area",65,"len")=4 + Set gtmtypes("phase_static_area",65,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_type")=65 + Set gtmtypes("phase_static_area",66,"name")="phase_static_area.rhdr.blk_levl" + Set gtmtypes("phase_static_area",66,"off")=964 + Set gtmtypes("phase_static_area",66,"len")=4 + Set gtmtypes("phase_static_area",66,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.blk_levl")=66 + Set gtmtypes("phase_static_area",67,"name")="phase_static_area.rhdr.akey_len" + Set gtmtypes("phase_static_area",67,"off")=968 + Set gtmtypes("phase_static_area",67,"len")=4 + Set gtmtypes("phase_static_area",67,"type")="int" + Set gtmtypfldindx("phase_static_area","rhdr.akey_len")=67 + Set gtmtypes("phase_static_area",68,"name")="phase_static_area.gvtroot_rchildren" + Set gtmtypes("phase_static_area",68,"off")=972 + Set gtmtypes("phase_static_area",68,"len")=160 + Set gtmtypes("phase_static_area",68,"type")="p1rec" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren")=68 + Set gtmtypes("phase_static_area",68,"dim")=8 + Set gtmtypes("phase_static_area",69,"name")="phase_static_area.gvtroot_rchildren[0].tn" + Set gtmtypes("phase_static_area",69,"off")=972 + Set gtmtypes("phase_static_area",69,"len")=4 + Set gtmtypes("phase_static_area",69,"type")="v15_trans_num" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].tn")=69 + Set gtmtypes("phase_static_area",70,"name")="phase_static_area.gvtroot_rchildren[0].blk_num" + Set gtmtypes("phase_static_area",70,"off")=976 + Set gtmtypes("phase_static_area",70,"len")=4 + Set gtmtypes("phase_static_area",70,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_num")=70 + Set gtmtypes("phase_static_area",71,"name")="phase_static_area.gvtroot_rchildren[0].blk_type" + Set gtmtypes("phase_static_area",71,"off")=980 + Set gtmtypes("phase_static_area",71,"len")=4 + Set gtmtypes("phase_static_area",71,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_type")=71 + Set gtmtypes("phase_static_area",72,"name")="phase_static_area.gvtroot_rchildren[0].blk_levl" + Set gtmtypes("phase_static_area",72,"off")=984 + Set gtmtypes("phase_static_area",72,"len")=4 + Set gtmtypes("phase_static_area",72,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].blk_levl")=72 + Set gtmtypes("phase_static_area",73,"name")="phase_static_area.gvtroot_rchildren[0].akey_len" + Set gtmtypes("phase_static_area",73,"off")=988 + Set gtmtypes("phase_static_area",73,"len")=4 + Set gtmtypes("phase_static_area",73,"type")="int" + Set gtmtypfldindx("phase_static_area","gvtroot_rchildren[0].akey_len")=73 + Set gtmtypes("phase_static_area",74,"name")="phase_static_area.dbc_gv_cur_region" + Set gtmtypes("phase_static_area",74,"off")=1132 + Set gtmtypes("phase_static_area",74,"len")=4 + Set gtmtypes("phase_static_area",74,"type")="addr" + Set gtmtypfldindx("phase_static_area","dbc_gv_cur_region")=74 + Set gtmtypes("phase_static_area",75,"name")="phase_static_area.dbc_cs_data" + Set gtmtypes("phase_static_area",75,"off")=1136 + Set gtmtypes("phase_static_area",75,"len")=4 + Set gtmtypes("phase_static_area",75,"type")="v15_sgmnt_data_ptr_t" + Set gtmtypfldindx("phase_static_area","dbc_cs_data")=75 + Set gtmtypes("phase_static_area",76,"name")="phase_static_area.first_rec_key" + Set gtmtypes("phase_static_area",76,"off")=1140 + Set gtmtypes("phase_static_area",76,"len")=4 + Set gtmtypes("phase_static_area",76,"type")="addr" + Set gtmtypfldindx("phase_static_area","first_rec_key")=76 + Set gtmtypes("phase_static_area",77,"name")="phase_static_area.fc" + Set gtmtypes("phase_static_area",77,"off")=1144 + Set gtmtypes("phase_static_area",77,"len")=4 + Set gtmtypes("phase_static_area",77,"type")="addr" + Set gtmtypfldindx("phase_static_area","fc")=77 + Set gtmtypes("phase_static_area",78,"name")="phase_static_area.iebl" + Set gtmtypes("phase_static_area",78,"off")=1148 + Set gtmtypes("phase_static_area",78,"len")=4 + Set gtmtypes("phase_static_area",78,"type")="addr" + Set gtmtypfldindx("phase_static_area","iebl")=78 + Set gtmtypes("phase_static_area",79,"name")="phase_static_area.gvn_key" + Set gtmtypes("phase_static_area",79,"off")=1152 + Set gtmtypes("phase_static_area",79,"len")=4 + Set gtmtypes("phase_static_area",79,"type")="addr" + Set gtmtypfldindx("phase_static_area","gvn_key")=79 + Set gtmtypes("phase_static_area",80,"name")="phase_static_area.max_key" + Set gtmtypes("phase_static_area",80,"off")=1156 + Set gtmtypes("phase_static_area",80,"len")=4 + Set gtmtypes("phase_static_area",80,"type")="addr" + Set gtmtypfldindx("phase_static_area","max_key")=80 + Set gtmtypes("phase_static_area",81,"name")="phase_static_area.outfn" + Set gtmtypes("phase_static_area",81,"off")=1160 + Set gtmtypes("phase_static_area",81,"len")=256 + Set gtmtypes("phase_static_area",81,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","outfn")=81 + Set gtmtypes("phase_static_area",82,"name")="phase_static_area.regname" + Set gtmtypes("phase_static_area",82,"off")=1416 + Set gtmtypes("phase_static_area",82,"len")=32 + Set gtmtypes("phase_static_area",82,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","regname")=82 + Set gtmtypes("phase_static_area",83,"name")="phase_static_area.rslt_buff" + Set gtmtypes("phase_static_area",83,"off")=1448 + Set gtmtypes("phase_static_area",83,"len")=9219 + Set gtmtypes("phase_static_area",83,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","rslt_buff")=83 + Set gtmtypes("phase_static_area",84,"name")="phase_static_area.tmpcmdfile" + Set gtmtypes("phase_static_area",84,"off")=10667 + Set gtmtypes("phase_static_area",84,"len")=256 + Set gtmtypes("phase_static_area",84,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmpcmdfile")=84 + Set gtmtypes("phase_static_area",85,"name")="phase_static_area.tmprsltfile" + Set gtmtypes("phase_static_area",85,"off")=10923 + Set gtmtypes("phase_static_area",85,"len")=256 + Set gtmtypes("phase_static_area",85,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmprsltfile")=85 + Set gtmtypes("phase_static_area",86,"name")="phase_static_area.tmpfiledir" + Set gtmtypes("phase_static_area",86,"off")=11179 + Set gtmtypes("phase_static_area",86,"len")=256 + Set gtmtypes("phase_static_area",86,"type")="unsigned-char" + Set gtmtypfldindx("phase_static_area","tmpfiledir")=86 + ; + Set gtmtypes("pini_list_struct")="struct" + Set gtmtypes("pini_list_struct",0)=26 + Set gtmtypes("pini_list_struct","len")=196 + Set gtmtypes("pini_list_struct",1,"name")="pini_list_struct.pini_addr" + Set gtmtypes("pini_list_struct",1,"off")=0 + Set gtmtypes("pini_list_struct",1,"len")=4 + Set gtmtypes("pini_list_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","pini_addr")=1 + Set gtmtypes("pini_list_struct",2,"name")="pini_list_struct.new_pini_addr" + Set gtmtypes("pini_list_struct",2,"off")=4 + Set gtmtypes("pini_list_struct",2,"len")=4 + Set gtmtypes("pini_list_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","new_pini_addr")=2 + Set gtmtypes("pini_list_struct",3,"name")="pini_list_struct.jpv" + Set gtmtypes("pini_list_struct",3,"off")=8 + Set gtmtypes("pini_list_struct",3,"len")=88 + Set gtmtypes("pini_list_struct",3,"type")="jnl_process_vector" + Set gtmtypfldindx("pini_list_struct","jpv")=3 + Set gtmtypes("pini_list_struct",4,"name")="pini_list_struct.jpv.jpv_pid" + Set gtmtypes("pini_list_struct",4,"off")=8 + Set gtmtypes("pini_list_struct",4,"len")=4 + Set gtmtypes("pini_list_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_pid")=4 + Set gtmtypes("pini_list_struct",5,"name")="pini_list_struct.jpv.jpv_image_count" + Set gtmtypes("pini_list_struct",5,"off")=12 + Set gtmtypes("pini_list_struct",5,"len")=4 + Set gtmtypes("pini_list_struct",5,"type")="int" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_image_count")=5 + Set gtmtypes("pini_list_struct",6,"name")="pini_list_struct.jpv.jpv_time" + Set gtmtypes("pini_list_struct",6,"off")=16 + Set gtmtypes("pini_list_struct",6,"len")=8 + Set gtmtypes("pini_list_struct",6,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_time")=6 + Set gtmtypes("pini_list_struct",7,"name")="pini_list_struct.jpv.jpv_login_time" + Set gtmtypes("pini_list_struct",7,"off")=24 + Set gtmtypes("pini_list_struct",7,"len")=8 + Set gtmtypes("pini_list_struct",7,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_login_time")=7 + Set gtmtypes("pini_list_struct",8,"name")="pini_list_struct.jpv.jpv_node" + Set gtmtypes("pini_list_struct",8,"off")=32 + Set gtmtypes("pini_list_struct",8,"len")=16 + Set gtmtypes("pini_list_struct",8,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_node")=8 + Set gtmtypes("pini_list_struct",9,"name")="pini_list_struct.jpv.jpv_user" + Set gtmtypes("pini_list_struct",9,"off")=48 + Set gtmtypes("pini_list_struct",9,"len")=12 + Set gtmtypes("pini_list_struct",9,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_user")=9 + Set gtmtypes("pini_list_struct",10,"name")="pini_list_struct.jpv.jpv_prcnam" + Set gtmtypes("pini_list_struct",10,"off")=60 + Set gtmtypes("pini_list_struct",10,"len")=16 + Set gtmtypes("pini_list_struct",10,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_prcnam")=10 + Set gtmtypes("pini_list_struct",11,"name")="pini_list_struct.jpv.jpv_terminal" + Set gtmtypes("pini_list_struct",11,"off")=76 + Set gtmtypes("pini_list_struct",11,"len")=15 + Set gtmtypes("pini_list_struct",11,"type")="char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_terminal")=11 + Set gtmtypes("pini_list_struct",12,"name")="pini_list_struct.jpv.jpv_mode" + Set gtmtypes("pini_list_struct",12,"off")=91 + Set gtmtypes("pini_list_struct",12,"len")=1 + Set gtmtypes("pini_list_struct",12,"type")="unsigned-char" + Set gtmtypfldindx("pini_list_struct","jpv.jpv_mode")=12 + Set gtmtypes("pini_list_struct",13,"name")="pini_list_struct.jpv.filler" + Set gtmtypes("pini_list_struct",13,"off")=92 + Set gtmtypes("pini_list_struct",13,"len")=4 + Set gtmtypes("pini_list_struct",13,"type")="int" + Set gtmtypfldindx("pini_list_struct","jpv.filler")=13 + Set gtmtypes("pini_list_struct",14,"name")="pini_list_struct.origjpv" + Set gtmtypes("pini_list_struct",14,"off")=96 + Set gtmtypes("pini_list_struct",14,"len")=88 + Set gtmtypes("pini_list_struct",14,"type")="jnl_process_vector" + Set gtmtypfldindx("pini_list_struct","origjpv")=14 + Set gtmtypes("pini_list_struct",15,"name")="pini_list_struct.origjpv.jpv_pid" + Set gtmtypes("pini_list_struct",15,"off")=96 + Set gtmtypes("pini_list_struct",15,"len")=4 + Set gtmtypes("pini_list_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_pid")=15 + Set gtmtypes("pini_list_struct",16,"name")="pini_list_struct.origjpv.jpv_image_count" + Set gtmtypes("pini_list_struct",16,"off")=100 + Set gtmtypes("pini_list_struct",16,"len")=4 + Set gtmtypes("pini_list_struct",16,"type")="int" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_image_count")=16 + Set gtmtypes("pini_list_struct",17,"name")="pini_list_struct.origjpv.jpv_time" + Set gtmtypes("pini_list_struct",17,"off")=104 + Set gtmtypes("pini_list_struct",17,"len")=8 + Set gtmtypes("pini_list_struct",17,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_time")=17 + Set gtmtypes("pini_list_struct",18,"name")="pini_list_struct.origjpv.jpv_login_time" + Set gtmtypes("pini_list_struct",18,"off")=112 + Set gtmtypes("pini_list_struct",18,"len")=8 + Set gtmtypes("pini_list_struct",18,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_login_time")=18 + Set gtmtypes("pini_list_struct",19,"name")="pini_list_struct.origjpv.jpv_node" + Set gtmtypes("pini_list_struct",19,"off")=120 + Set gtmtypes("pini_list_struct",19,"len")=16 + Set gtmtypes("pini_list_struct",19,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_node")=19 + Set gtmtypes("pini_list_struct",20,"name")="pini_list_struct.origjpv.jpv_user" + Set gtmtypes("pini_list_struct",20,"off")=136 + Set gtmtypes("pini_list_struct",20,"len")=12 + Set gtmtypes("pini_list_struct",20,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_user")=20 + Set gtmtypes("pini_list_struct",21,"name")="pini_list_struct.origjpv.jpv_prcnam" + Set gtmtypes("pini_list_struct",21,"off")=148 + Set gtmtypes("pini_list_struct",21,"len")=16 + Set gtmtypes("pini_list_struct",21,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_prcnam")=21 + Set gtmtypes("pini_list_struct",22,"name")="pini_list_struct.origjpv.jpv_terminal" + Set gtmtypes("pini_list_struct",22,"off")=164 + Set gtmtypes("pini_list_struct",22,"len")=15 + Set gtmtypes("pini_list_struct",22,"type")="char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_terminal")=22 + Set gtmtypes("pini_list_struct",23,"name")="pini_list_struct.origjpv.jpv_mode" + Set gtmtypes("pini_list_struct",23,"off")=179 + Set gtmtypes("pini_list_struct",23,"len")=1 + Set gtmtypes("pini_list_struct",23,"type")="unsigned-char" + Set gtmtypfldindx("pini_list_struct","origjpv.jpv_mode")=23 + Set gtmtypes("pini_list_struct",24,"name")="pini_list_struct.origjpv.filler" + Set gtmtypes("pini_list_struct",24,"off")=180 + Set gtmtypes("pini_list_struct",24,"len")=4 + Set gtmtypes("pini_list_struct",24,"type")="int" + Set gtmtypfldindx("pini_list_struct","origjpv.filler")=24 + Set gtmtypes("pini_list_struct",25,"name")="pini_list_struct.pini_jpv_time" + Set gtmtypes("pini_list_struct",25,"off")=184 + Set gtmtypes("pini_list_struct",25,"len")=8 + Set gtmtypes("pini_list_struct",25,"type")="int64_t" + Set gtmtypfldindx("pini_list_struct","pini_jpv_time")=25 + Set gtmtypes("pini_list_struct",26,"name")="pini_list_struct.state" + Set gtmtypes("pini_list_struct",26,"off")=192 + Set gtmtypes("pini_list_struct",26,"len")=4 + Set gtmtypes("pini_list_struct",26,"type")="int" + Set gtmtypfldindx("pini_list_struct","state")=26 + ; + Set gtmtypes("pipe_interrupt")="struct" + Set gtmtypes("pipe_interrupt",0)=12 + Set gtmtypes("pipe_interrupt","len")=44 + Set gtmtypes("pipe_interrupt",1,"name")="pipe_interrupt.end_time" + Set gtmtypes("pipe_interrupt",1,"off")=0 + Set gtmtypes("pipe_interrupt",1,"len")=8 + Set gtmtypes("pipe_interrupt",1,"type")="ABS_TIME" + Set gtmtypfldindx("pipe_interrupt","end_time")=1 + Set gtmtypes("pipe_interrupt",2,"name")="pipe_interrupt.end_time.at_sec" + Set gtmtypes("pipe_interrupt",2,"off")=0 + Set gtmtypes("pipe_interrupt",2,"len")=4 + Set gtmtypes("pipe_interrupt",2,"type")="long" + Set gtmtypfldindx("pipe_interrupt","end_time.at_sec")=2 + Set gtmtypes("pipe_interrupt",3,"name")="pipe_interrupt.end_time.at_usec" + Set gtmtypes("pipe_interrupt",3,"off")=4 + Set gtmtypes("pipe_interrupt",3,"len")=4 + Set gtmtypes("pipe_interrupt",3,"type")="long" + Set gtmtypfldindx("pipe_interrupt","end_time.at_usec")=3 + Set gtmtypes("pipe_interrupt",4,"name")="pipe_interrupt.who_saved" + Set gtmtypes("pipe_interrupt",4,"off")=8 + Set gtmtypes("pipe_interrupt",4,"len")=4 + Set gtmtypes("pipe_interrupt",4,"type")="int" + Set gtmtypfldindx("pipe_interrupt","who_saved")=4 + Set gtmtypes("pipe_interrupt",5,"name")="pipe_interrupt.max_bufflen" + Set gtmtypes("pipe_interrupt",5,"off")=12 + Set gtmtypes("pipe_interrupt",5,"len")=4 + Set gtmtypes("pipe_interrupt",5,"type")="int" + Set gtmtypfldindx("pipe_interrupt","max_bufflen")=5 + Set gtmtypes("pipe_interrupt",6,"name")="pipe_interrupt.bytes_read" + Set gtmtypes("pipe_interrupt",6,"off")=16 + Set gtmtypes("pipe_interrupt",6,"len")=4 + Set gtmtypes("pipe_interrupt",6,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes_read")=6 + Set gtmtypes("pipe_interrupt",7,"name")="pipe_interrupt.bytes2read" + Set gtmtypes("pipe_interrupt",7,"off")=20 + Set gtmtypes("pipe_interrupt",7,"len")=4 + Set gtmtypes("pipe_interrupt",7,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes2read")=7 + Set gtmtypes("pipe_interrupt",8,"name")="pipe_interrupt.char_count" + Set gtmtypes("pipe_interrupt",8,"off")=24 + Set gtmtypes("pipe_interrupt",8,"len")=4 + Set gtmtypes("pipe_interrupt",8,"type")="int" + Set gtmtypfldindx("pipe_interrupt","char_count")=8 + Set gtmtypes("pipe_interrupt",9,"name")="pipe_interrupt.bytes_count" + Set gtmtypes("pipe_interrupt",9,"off")=28 + Set gtmtypes("pipe_interrupt",9,"len")=4 + Set gtmtypes("pipe_interrupt",9,"type")="int" + Set gtmtypfldindx("pipe_interrupt","bytes_count")=9 + Set gtmtypes("pipe_interrupt",10,"name")="pipe_interrupt.add_bytes" + Set gtmtypes("pipe_interrupt",10,"off")=32 + Set gtmtypes("pipe_interrupt",10,"len")=4 + Set gtmtypes("pipe_interrupt",10,"type")="int" + Set gtmtypfldindx("pipe_interrupt","add_bytes")=10 + Set gtmtypes("pipe_interrupt",11,"name")="pipe_interrupt.end_time_valid" + Set gtmtypes("pipe_interrupt",11,"off")=36 + Set gtmtypes("pipe_interrupt",11,"len")=4 + Set gtmtypes("pipe_interrupt",11,"type")="boolean_t" + Set gtmtypfldindx("pipe_interrupt","end_time_valid")=11 + Set gtmtypes("pipe_interrupt",12,"name")="pipe_interrupt.newpipe" + Set gtmtypes("pipe_interrupt",12,"off")=40 + Set gtmtypes("pipe_interrupt",12,"len")=4 + Set gtmtypes("pipe_interrupt",12,"type")="addr" + Set gtmtypfldindx("pipe_interrupt","newpipe")=12 + ; + Set gtmtypes("plength")="struct" + Set gtmtypes("plength",0)=7 + Set gtmtypes("plength","len")=4 + Set gtmtypes("plength",1,"name")="plength.p" + Set gtmtypes("plength",1,"off")=0 + Set gtmtypes("plength",1,"len")=4 + Set gtmtypes("plength",1,"type")="union" + Set gtmtypfldindx("plength","p")=1 + Set gtmtypes("plength",2,"name")="plength.p.pint" + Set gtmtypes("plength",2,"off")=0 + Set gtmtypes("plength",2,"len")=4 + Set gtmtypes("plength",2,"type")="int" + Set gtmtypfldindx("plength","p.pint")=2 + Set gtmtypes("plength",3,"name")="plength.p.pblk" + Set gtmtypes("plength",3,"off")=0 + Set gtmtypes("plength",3,"len")=4 + Set gtmtypes("plength",3,"type")="struct" + Set gtmtypfldindx("plength","p.pblk")=3 + Set gtmtypes("plength",4,"name")="plength.p.pblk.b_esl" + Set gtmtypes("plength",4,"off")=0 + Set gtmtypes("plength",4,"len")=1 + Set gtmtypes("plength",4,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_esl")=4 + Set gtmtypes("plength",5,"name")="plength.p.pblk.b_dir" + Set gtmtypes("plength",5,"off")=1 + Set gtmtypes("plength",5,"len")=1 + Set gtmtypes("plength",5,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_dir")=5 + Set gtmtypes("plength",6,"name")="plength.p.pblk.b_name" + Set gtmtypes("plength",6,"off")=2 + Set gtmtypes("plength",6,"len")=1 + Set gtmtypes("plength",6,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_name")=6 + Set gtmtypes("plength",7,"name")="plength.p.pblk.b_ext" + Set gtmtypes("plength",7,"off")=3 + Set gtmtypes("plength",7,"len")=1 + Set gtmtypes("plength",7,"type")="unsigned-char" + Set gtmtypfldindx("plength","p.pblk.b_ext")=7 + ; + Set gtmtypes("pre_v5_mident")="struct" + Set gtmtypes("pre_v5_mident",0)=1 + Set gtmtypes("pre_v5_mident","len")=8 + Set gtmtypes("pre_v5_mident",1,"name")="pre_v5_mident.c" + Set gtmtypes("pre_v5_mident",1,"off")=0 + Set gtmtypes("pre_v5_mident",1,"len")=8 + Set gtmtypes("pre_v5_mident",1,"type")="char" + Set gtmtypfldindx("pre_v5_mident","c")=1 + ; + Set gtmtypes("probecrit_rec_t")="struct" + Set gtmtypes("probecrit_rec_t",0)=7 + Set gtmtypes("probecrit_rec_t","len")=56 + Set gtmtypes("probecrit_rec_t",1,"name")="probecrit_rec_t.t_get_crit" + Set gtmtypes("probecrit_rec_t",1,"off")=0 + Set gtmtypes("probecrit_rec_t",1,"len")=8 + Set gtmtypes("probecrit_rec_t",1,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","t_get_crit")=1 + Set gtmtypes("probecrit_rec_t",2,"name")="probecrit_rec_t.p_crit_failed" + Set gtmtypes("probecrit_rec_t",2,"off")=8 + Set gtmtypes("probecrit_rec_t",2,"len")=8 + Set gtmtypes("probecrit_rec_t",2,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_failed")=2 + Set gtmtypes("probecrit_rec_t",3,"name")="probecrit_rec_t.p_crit_que_slps" + Set gtmtypes("probecrit_rec_t",3,"off")=16 + Set gtmtypes("probecrit_rec_t",3,"len")=8 + Set gtmtypes("probecrit_rec_t",3,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_slps")=3 + Set gtmtypes("probecrit_rec_t",4,"name")="probecrit_rec_t.p_crit_yields" + Set gtmtypes("probecrit_rec_t",4,"off")=24 + Set gtmtypes("probecrit_rec_t",4,"len")=8 + Set gtmtypes("probecrit_rec_t",4,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_yields")=4 + Set gtmtypes("probecrit_rec_t",5,"name")="probecrit_rec_t.p_crit_que_full" + Set gtmtypes("probecrit_rec_t",5,"off")=32 + Set gtmtypes("probecrit_rec_t",5,"len")=8 + Set gtmtypes("probecrit_rec_t",5,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_full")=5 + Set gtmtypes("probecrit_rec_t",6,"name")="probecrit_rec_t.p_crit_que_slots" + Set gtmtypes("probecrit_rec_t",6,"off")=40 + Set gtmtypes("probecrit_rec_t",6,"len")=8 + Set gtmtypes("probecrit_rec_t",6,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_que_slots")=6 + Set gtmtypes("probecrit_rec_t",7,"name")="probecrit_rec_t.p_crit_success" + Set gtmtypes("probecrit_rec_t",7,"off")=48 + Set gtmtypes("probecrit_rec_t",7,"len")=8 + Set gtmtypes("probecrit_rec_t",7,"type")="uint64_t" + Set gtmtypfldindx("probecrit_rec_t","p_crit_success")=7 + ; + Set gtmtypes("protocol_msg")="struct" + Set gtmtypes("protocol_msg",0)=1 + Set gtmtypes("protocol_msg","len")=33 + Set gtmtypes("protocol_msg",1,"name")="protocol_msg.msg" + Set gtmtypes("protocol_msg",1,"off")=0 + Set gtmtypes("protocol_msg",1,"len")=33 + Set gtmtypes("protocol_msg",1,"type")="char" + Set gtmtypfldindx("protocol_msg","msg")=1 + ; + Set gtmtypes("pte_csh")="struct" + Set gtmtypes("pte_csh",0)=6 + Set gtmtypes("pte_csh","len")=24 + Set gtmtypes("pte_csh",1,"name")="pte_csh.patptr" + Set gtmtypes("pte_csh",1,"off")=0 + Set gtmtypes("pte_csh",1,"len")=4 + Set gtmtypes("pte_csh",1,"type")="addr" + Set gtmtypfldindx("pte_csh","patptr")=1 + Set gtmtypes("pte_csh",2,"name")="pte_csh.strptr" + Set gtmtypes("pte_csh",2,"off")=4 + Set gtmtypes("pte_csh",2,"len")=4 + Set gtmtypes("pte_csh",2,"type")="addr" + Set gtmtypfldindx("pte_csh","strptr")=2 + Set gtmtypes("pte_csh",3,"name")="pte_csh.charlen" + Set gtmtypes("pte_csh",3,"off")=8 + Set gtmtypes("pte_csh",3,"len")=4 + Set gtmtypes("pte_csh",3,"type")="int" + Set gtmtypfldindx("pte_csh","charlen")=3 + Set gtmtypes("pte_csh",4,"name")="pte_csh.repcnt" + Set gtmtypes("pte_csh",4,"off")=12 + Set gtmtypes("pte_csh",4,"len")=4 + Set gtmtypes("pte_csh",4,"type")="int" + Set gtmtypfldindx("pte_csh","repcnt")=4 + Set gtmtypes("pte_csh",5,"name")="pte_csh.count" + Set gtmtypes("pte_csh",5,"off")=16 + Set gtmtypes("pte_csh",5,"len")=4 + Set gtmtypes("pte_csh",5,"type")="unsigned-int" + Set gtmtypfldindx("pte_csh","count")=5 + Set gtmtypes("pte_csh",6,"name")="pte_csh.match" + Set gtmtypes("pte_csh",6,"off")=20 + Set gtmtypes("pte_csh",6,"len")=4 + Set gtmtypes("pte_csh",6,"type")="boolean_t" + Set gtmtypfldindx("pte_csh","match")=6 + ; + Set gtmtypes("ptstr")="struct" + Set gtmtypes("ptstr",0)=2 + Set gtmtypes("ptstr","len")=16388 + Set gtmtypes("ptstr",1,"name")="ptstr.len" + Set gtmtypes("ptstr",1,"off")=0 + Set gtmtypes("ptstr",1,"len")=4 + Set gtmtypes("ptstr",1,"type")="int" + Set gtmtypfldindx("ptstr","len")=1 + Set gtmtypes("ptstr",2,"name")="ptstr.buff" + Set gtmtypes("ptstr",2,"off")=4 + Set gtmtypes("ptstr",2,"len")=16384 + Set gtmtypes("ptstr",2,"type")="unsigned-int" + Set gtmtypfldindx("ptstr","buff")=2 + Set gtmtypes("ptstr",2,"dim")=4096 + ; + Set gtmtypes("qio_iosb")="struct" + Set gtmtypes("qio_iosb",0)=5 + Set gtmtypes("qio_iosb","len")=12 + Set gtmtypes("qio_iosb",1,"name")="qio_iosb.xfer_count" + Set gtmtypes("qio_iosb",1,"off")=0 + Set gtmtypes("qio_iosb",1,"len")=2 + Set gtmtypes("qio_iosb",1,"type")="unsigned-short" + Set gtmtypfldindx("qio_iosb","xfer_count")=1 + Set gtmtypes("qio_iosb",2,"name")="qio_iosb.len_len" + Set gtmtypes("qio_iosb",2,"off")=4 + Set gtmtypes("qio_iosb",2,"len")=4 + Set gtmtypes("qio_iosb",2,"type")="int" + Set gtmtypfldindx("qio_iosb","len_len")=2 + Set gtmtypes("qio_iosb",3,"name")="qio_iosb.u" + Set gtmtypes("qio_iosb",3,"off")=8 + Set gtmtypes("qio_iosb",3,"len")=2 + Set gtmtypes("qio_iosb",3,"type")="union" + Set gtmtypfldindx("qio_iosb","u")=3 + Set gtmtypes("qio_iosb",4,"name")="qio_iosb.u.len" + Set gtmtypes("qio_iosb",4,"off")=8 + Set gtmtypes("qio_iosb",4,"len")=2 + Set gtmtypes("qio_iosb",4,"type")="unsigned-short" + Set gtmtypfldindx("qio_iosb","u.len")=4 + Set gtmtypes("qio_iosb",5,"name")="qio_iosb.u.lenbuf" + Set gtmtypes("qio_iosb",5,"off")=8 + Set gtmtypes("qio_iosb",5,"len")=2 + Set gtmtypes("qio_iosb",5,"type")="char" + Set gtmtypfldindx("qio_iosb","u.lenbuf")=5 + ; + Set gtmtypes("que_ent")="struct" + Set gtmtypes("que_ent",0)=2 + Set gtmtypes("que_ent","len")=8 + Set gtmtypes("que_ent",1,"name")="que_ent.fl" + Set gtmtypes("que_ent",1,"off")=0 + Set gtmtypes("que_ent",1,"len")=4 + Set gtmtypes("que_ent",1,"type")="intptr_t" + Set gtmtypfldindx("que_ent","fl")=1 + Set gtmtypes("que_ent",2,"name")="que_ent.bl" + Set gtmtypes("que_ent",2,"off")=4 + Set gtmtypes("que_ent",2,"len")=4 + Set gtmtypes("que_ent",2,"type")="intptr_t" + Set gtmtypfldindx("que_ent","bl")=2 + ; + Set gtmtypes("que_head")="struct" + Set gtmtypes("que_head",0)=8 + Set gtmtypes("que_head","len")=16 + Set gtmtypes("que_head",1,"name")="que_head.fl" + Set gtmtypes("que_head",1,"off")=0 + Set gtmtypes("que_head",1,"len")=4 + Set gtmtypes("que_head",1,"type")="intptr_t" + Set gtmtypfldindx("que_head","fl")=1 + Set gtmtypes("que_head",2,"name")="que_head.bl" + Set gtmtypes("que_head",2,"off")=4 + Set gtmtypes("que_head",2,"len")=4 + Set gtmtypes("que_head",2,"type")="intptr_t" + Set gtmtypfldindx("que_head","bl")=2 + Set gtmtypes("que_head",3,"name")="que_head.latch" + Set gtmtypes("que_head",3,"off")=8 + Set gtmtypes("que_head",3,"len")=8 + Set gtmtypes("que_head",3,"type")="global_latch_t" + Set gtmtypfldindx("que_head","latch")=3 + Set gtmtypes("que_head",4,"name")="que_head.latch.u" + Set gtmtypes("que_head",4,"off")=8 + Set gtmtypes("que_head",4,"len")=8 + Set gtmtypes("que_head",4,"type")="union" + Set gtmtypfldindx("que_head","latch.u")=4 + Set gtmtypes("que_head",5,"name")="que_head.latch.u.pid_imgcnt" + Set gtmtypes("que_head",5,"off")=8 + Set gtmtypes("que_head",5,"len")=8 + Set gtmtypes("que_head",5,"type")="uint64_t" + Set gtmtypfldindx("que_head","latch.u.pid_imgcnt")=5 + Set gtmtypes("que_head",6,"name")="que_head.latch.u.parts" + Set gtmtypes("que_head",6,"off")=8 + Set gtmtypes("que_head",6,"len")=8 + Set gtmtypes("que_head",6,"type")="struct" + Set gtmtypfldindx("que_head","latch.u.parts")=6 + Set gtmtypes("que_head",7,"name")="que_head.latch.u.parts.latch_pid" + Set gtmtypes("que_head",7,"off")=8 + Set gtmtypes("que_head",7,"len")=4 + Set gtmtypes("que_head",7,"type")="int" + Set gtmtypfldindx("que_head","latch.u.parts.latch_pid")=7 + Set gtmtypes("que_head",8,"name")="que_head.latch.u.parts.latch_word" + Set gtmtypes("que_head",8,"off")=12 + Set gtmtypes("que_head",8,"len")=4 + Set gtmtypes("que_head",8,"type")="int" + Set gtmtypfldindx("que_head","latch.u.parts.latch_word")=8 + ; + Set gtmtypes("rc_aq_hdr")="struct" + Set gtmtypes("rc_aq_hdr",0)=18 + Set gtmtypes("rc_aq_hdr","len")=14 + Set gtmtypes("rc_aq_hdr",1,"name")="rc_aq_hdr.len" + Set gtmtypes("rc_aq_hdr",1,"off")=0 + Set gtmtypes("rc_aq_hdr",1,"len")=2 + Set gtmtypes("rc_aq_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","len")=1 + Set gtmtypes("rc_aq_hdr",2,"name")="rc_aq_hdr.len.octet" + Set gtmtypes("rc_aq_hdr",2,"off")=0 + Set gtmtypes("rc_aq_hdr",2,"len")=2 + Set gtmtypes("rc_aq_hdr",2,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","len.octet")=2 + Set gtmtypes("rc_aq_hdr",3,"name")="rc_aq_hdr.len.value" + Set gtmtypes("rc_aq_hdr",3,"off")=0 + Set gtmtypes("rc_aq_hdr",3,"len")=2 + Set gtmtypes("rc_aq_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","len.value")=3 + Set gtmtypes("rc_aq_hdr",4,"name")="rc_aq_hdr.typ" + Set gtmtypes("rc_aq_hdr",4,"off")=2 + Set gtmtypes("rc_aq_hdr",4,"len")=2 + Set gtmtypes("rc_aq_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","typ")=4 + Set gtmtypes("rc_aq_hdr",5,"name")="rc_aq_hdr.typ.octet" + Set gtmtypes("rc_aq_hdr",5,"off")=2 + Set gtmtypes("rc_aq_hdr",5,"len")=2 + Set gtmtypes("rc_aq_hdr",5,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","typ.octet")=5 + Set gtmtypes("rc_aq_hdr",6,"name")="rc_aq_hdr.typ.value" + Set gtmtypes("rc_aq_hdr",6,"off")=2 + Set gtmtypes("rc_aq_hdr",6,"len")=2 + Set gtmtypes("rc_aq_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","typ.value")=6 + Set gtmtypes("rc_aq_hdr",7,"name")="rc_aq_hdr.erc" + Set gtmtypes("rc_aq_hdr",7,"off")=4 + Set gtmtypes("rc_aq_hdr",7,"len")=2 + Set gtmtypes("rc_aq_hdr",7,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","erc")=7 + Set gtmtypes("rc_aq_hdr",8,"name")="rc_aq_hdr.erc.octet" + Set gtmtypes("rc_aq_hdr",8,"off")=4 + Set gtmtypes("rc_aq_hdr",8,"len")=2 + Set gtmtypes("rc_aq_hdr",8,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","erc.octet")=8 + Set gtmtypes("rc_aq_hdr",9,"name")="rc_aq_hdr.erc.value" + Set gtmtypes("rc_aq_hdr",9,"off")=4 + Set gtmtypes("rc_aq_hdr",9,"len")=2 + Set gtmtypes("rc_aq_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","erc.value")=9 + Set gtmtypes("rc_aq_hdr",10,"name")="rc_aq_hdr.pid1" + Set gtmtypes("rc_aq_hdr",10,"off")=6 + Set gtmtypes("rc_aq_hdr",10,"len")=2 + Set gtmtypes("rc_aq_hdr",10,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","pid1")=10 + Set gtmtypes("rc_aq_hdr",11,"name")="rc_aq_hdr.pid1.octet" + Set gtmtypes("rc_aq_hdr",11,"off")=6 + Set gtmtypes("rc_aq_hdr",11,"len")=2 + Set gtmtypes("rc_aq_hdr",11,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","pid1.octet")=11 + Set gtmtypes("rc_aq_hdr",12,"name")="rc_aq_hdr.pid1.value" + Set gtmtypes("rc_aq_hdr",12,"off")=6 + Set gtmtypes("rc_aq_hdr",12,"len")=2 + Set gtmtypes("rc_aq_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","pid1.value")=12 + Set gtmtypes("rc_aq_hdr",13,"name")="rc_aq_hdr.pid2" + Set gtmtypes("rc_aq_hdr",13,"off")=8 + Set gtmtypes("rc_aq_hdr",13,"len")=2 + Set gtmtypes("rc_aq_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","pid2")=13 + Set gtmtypes("rc_aq_hdr",14,"name")="rc_aq_hdr.pid2.octet" + Set gtmtypes("rc_aq_hdr",14,"off")=8 + Set gtmtypes("rc_aq_hdr",14,"len")=2 + Set gtmtypes("rc_aq_hdr",14,"type")="char" + Set gtmtypfldindx("rc_aq_hdr","pid2.octet")=14 + Set gtmtypes("rc_aq_hdr",15,"name")="rc_aq_hdr.pid2.value" + Set gtmtypes("rc_aq_hdr",15,"off")=8 + Set gtmtypes("rc_aq_hdr",15,"len")=2 + Set gtmtypes("rc_aq_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_aq_hdr","pid2.value")=15 + Set gtmtypes("rc_aq_hdr",16,"name")="rc_aq_hdr.xdsid" + Set gtmtypes("rc_aq_hdr",16,"off")=10 + Set gtmtypes("rc_aq_hdr",16,"len")=4 + Set gtmtypes("rc_aq_hdr",16,"type")="rc_xdsid" + Set gtmtypfldindx("rc_aq_hdr","xdsid")=16 + Set gtmtypes("rc_aq_hdr",17,"name")="rc_aq_hdr.xdsid.dsid" + Set gtmtypes("rc_aq_hdr",17,"off")=10 + Set gtmtypes("rc_aq_hdr",17,"len")=2 + Set gtmtypes("rc_aq_hdr",17,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","xdsid.dsid")=17 + Set gtmtypes("rc_aq_hdr",18,"name")="rc_aq_hdr.xdsid.node" + Set gtmtypes("rc_aq_hdr",18,"off")=12 + Set gtmtypes("rc_aq_hdr",18,"len")=2 + Set gtmtypes("rc_aq_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_aq_hdr","xdsid.node")=18 + ; + Set gtmtypes("rc_byte")="union" + Set gtmtypes("rc_byte",0)=2 + Set gtmtypes("rc_byte","len")=1 + Set gtmtypes("rc_byte",1,"name")="rc_byte.octet" + Set gtmtypes("rc_byte",1,"off")=0 + Set gtmtypes("rc_byte",1,"len")=1 + Set gtmtypes("rc_byte",1,"type")="char" + Set gtmtypfldindx("rc_byte","octet")=1 + Set gtmtypes("rc_byte",2,"name")="rc_byte.value" + Set gtmtypes("rc_byte",2,"off")=0 + Set gtmtypes("rc_byte",2,"len")=1 + Set gtmtypes("rc_byte",2,"type")="unsigned-char" + Set gtmtypfldindx("rc_byte","value")=2 + ; + Set gtmtypes("rc_cp_table")="struct" + Set gtmtypes("rc_cp_table",0)=5 + Set gtmtypes("rc_cp_table","len")=2056 + Set gtmtypes("rc_cp_table",1,"name")="rc_cp_table.ring_buff" + Set gtmtypes("rc_cp_table",1,"off")=0 + Set gtmtypes("rc_cp_table",1,"len")=2048 + Set gtmtypes("rc_cp_table",1,"type")="int" + Set gtmtypfldindx("rc_cp_table","ring_buff")=1 + Set gtmtypes("rc_cp_table",1,"dim")=512 + Set gtmtypes("rc_cp_table",2,"name")="rc_cp_table.cpsync" + Set gtmtypes("rc_cp_table",2,"off")=2048 + Set gtmtypes("rc_cp_table",2,"len")=2 + Set gtmtypes("rc_cp_table",2,"type")="unsigned-short" + Set gtmtypfldindx("rc_cp_table","cpsync")=2 + Set gtmtypes("rc_cp_table",3,"name")="rc_cp_table.cpvfy" + Set gtmtypes("rc_cp_table",3,"off")=2050 + Set gtmtypes("rc_cp_table",3,"len")=2 + Set gtmtypes("rc_cp_table",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_cp_table","cpvfy")=3 + Set gtmtypes("rc_cp_table",4,"name")="rc_cp_table.index" + Set gtmtypes("rc_cp_table",4,"off")=2052 + Set gtmtypes("rc_cp_table",4,"len")=2 + Set gtmtypes("rc_cp_table",4,"type")="short" + Set gtmtypfldindx("rc_cp_table","index")=4 + Set gtmtypes("rc_cp_table",5,"name")="rc_cp_table.server_count" + Set gtmtypes("rc_cp_table",5,"off")=2054 + Set gtmtypes("rc_cp_table",5,"len")=2 + Set gtmtypes("rc_cp_table",5,"type")="short" + Set gtmtypfldindx("rc_cp_table","server_count")=5 + ; + Set gtmtypes("rc_dsid_list")="struct" + Set gtmtypes("rc_dsid_list",0)=4 + Set gtmtypes("rc_dsid_list","len")=16 + Set gtmtypes("rc_dsid_list",1,"name")="rc_dsid_list.dsid" + Set gtmtypes("rc_dsid_list",1,"off")=0 + Set gtmtypes("rc_dsid_list",1,"len")=2 + Set gtmtypes("rc_dsid_list",1,"type")="short" + Set gtmtypfldindx("rc_dsid_list","dsid")=1 + Set gtmtypes("rc_dsid_list",2,"name")="rc_dsid_list.fname" + Set gtmtypes("rc_dsid_list",2,"off")=4 + Set gtmtypes("rc_dsid_list",2,"len")=4 + Set gtmtypes("rc_dsid_list",2,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","fname")=2 + Set gtmtypes("rc_dsid_list",3,"name")="rc_dsid_list.gda" + Set gtmtypes("rc_dsid_list",3,"off")=8 + Set gtmtypes("rc_dsid_list",3,"len")=4 + Set gtmtypes("rc_dsid_list",3,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","gda")=3 + Set gtmtypes("rc_dsid_list",4,"name")="rc_dsid_list.next" + Set gtmtypes("rc_dsid_list",4,"off")=12 + Set gtmtypes("rc_dsid_list",4,"len")=4 + Set gtmtypes("rc_dsid_list",4,"type")="addr" + Set gtmtypfldindx("rc_dsid_list","next")=4 + ; + Set gtmtypes("rc_hist_rec")="struct" + Set gtmtypes("rc_hist_rec",0)=7 + Set gtmtypes("rc_hist_rec","len")=8212 + Set gtmtypes("rc_hist_rec",1,"name")="rc_hist_rec.conn" + Set gtmtypes("rc_hist_rec",1,"off")=0 + Set gtmtypes("rc_hist_rec",1,"len")=4 + Set gtmtypes("rc_hist_rec",1,"type")="int" + Set gtmtypfldindx("rc_hist_rec","conn")=1 + Set gtmtypes("rc_hist_rec",2,"name")="rc_hist_rec.timestamp" + Set gtmtypes("rc_hist_rec",2,"off")=4 + Set gtmtypes("rc_hist_rec",2,"len")=4 + Set gtmtypes("rc_hist_rec",2,"type")="time_t" + Set gtmtypfldindx("rc_hist_rec","timestamp")=2 + Set gtmtypes("rc_hist_rec",3,"name")="rc_hist_rec.toobigflag" + Set gtmtypes("rc_hist_rec",3,"off")=8 + Set gtmtypes("rc_hist_rec",3,"len")=4 + Set gtmtypes("rc_hist_rec",3,"type")="int" + Set gtmtypfldindx("rc_hist_rec","toobigflag")=3 + Set gtmtypes("rc_hist_rec",4,"name")="rc_hist_rec.req" + Set gtmtypes("rc_hist_rec",4,"off")=12 + Set gtmtypes("rc_hist_rec",4,"len")=4096 + Set gtmtypes("rc_hist_rec",4,"type")="char" + Set gtmtypfldindx("rc_hist_rec","req")=4 + Set gtmtypes("rc_hist_rec",5,"name")="rc_hist_rec.rsp" + Set gtmtypes("rc_hist_rec",5,"off")=4108 + Set gtmtypes("rc_hist_rec",5,"len")=4096 + Set gtmtypes("rc_hist_rec",5,"type")="char" + Set gtmtypfldindx("rc_hist_rec","rsp")=5 + Set gtmtypes("rc_hist_rec",6,"name")="rc_hist_rec.req_len" + Set gtmtypes("rc_hist_rec",6,"off")=8204 + Set gtmtypes("rc_hist_rec",6,"len")=4 + Set gtmtypes("rc_hist_rec",6,"type")="int" + Set gtmtypfldindx("rc_hist_rec","req_len")=6 + Set gtmtypes("rc_hist_rec",7,"name")="rc_hist_rec.rsp_len" + Set gtmtypes("rc_hist_rec",7,"off")=8208 + Set gtmtypes("rc_hist_rec",7,"len")=4 + Set gtmtypes("rc_hist_rec",7,"type")="int" + Set gtmtypfldindx("rc_hist_rec","rsp_len")=7 + ; + Set gtmtypes("rc_kill")="struct" + Set gtmtypes("rc_kill",0)=8 + Set gtmtypes("rc_kill","len")=20 + Set gtmtypes("rc_kill",1,"name")="rc_kill.hdr" + Set gtmtypes("rc_kill",1,"off")=0 + Set gtmtypes("rc_kill",1,"len")=14 + Set gtmtypes("rc_kill",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_kill","hdr")=1 + Set gtmtypes("rc_kill",2,"name")="rc_kill.hdr.r" + Set gtmtypes("rc_kill",2,"off")=0 + Set gtmtypes("rc_kill",2,"len")=14 + Set gtmtypes("rc_kill",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_kill","hdr.r")=2 + Set gtmtypes("rc_kill",3,"name")="rc_kill.hdr.a" + Set gtmtypes("rc_kill",3,"off")=0 + Set gtmtypes("rc_kill",3,"len")=14 + Set gtmtypes("rc_kill",3,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_kill","hdr.a")=3 + Set gtmtypes("rc_kill",4,"name")="rc_kill.xnsid" + Set gtmtypes("rc_kill",4,"off")=14 + Set gtmtypes("rc_kill",4,"len")=4 + Set gtmtypes("rc_kill",4,"type")="rc_xnsid" + Set gtmtypfldindx("rc_kill","xnsid")=4 + Set gtmtypes("rc_kill",5,"name")="rc_kill.xnsid.value" + Set gtmtypes("rc_kill",5,"off")=14 + Set gtmtypes("rc_kill",5,"len")=4 + Set gtmtypes("rc_kill",5,"type")="char" + Set gtmtypfldindx("rc_kill","xnsid.value")=5 + Set gtmtypes("rc_kill",6,"name")="rc_kill.key" + Set gtmtypes("rc_kill",6,"off")=18 + Set gtmtypes("rc_kill",6,"len")=2 + Set gtmtypes("rc_kill",6,"type")="rc_sbkey" + Set gtmtypfldindx("rc_kill","key")=6 + Set gtmtypes("rc_kill",7,"name")="rc_kill.key.len" + Set gtmtypes("rc_kill",7,"off")=18 + Set gtmtypes("rc_kill",7,"len")=1 + Set gtmtypes("rc_kill",7,"type")="rc_byte" + Set gtmtypfldindx("rc_kill","key.len")=7 + Set gtmtypes("rc_kill",8,"name")="rc_kill.key.key" + Set gtmtypes("rc_kill",8,"off")=19 + Set gtmtypes("rc_kill",8,"len")=1 + Set gtmtypes("rc_kill",8,"type")="char" + Set gtmtypfldindx("rc_kill","key.key")=8 + ; + Set gtmtypes("rc_lknam")="struct" + Set gtmtypes("rc_lknam",0)=9 + Set gtmtypes("rc_lknam","len")=8 + Set gtmtypes("rc_lknam",1,"name")="rc_lknam.xdsid" + Set gtmtypes("rc_lknam",1,"off")=0 + Set gtmtypes("rc_lknam",1,"len")=4 + Set gtmtypes("rc_lknam",1,"type")="rc_xdsid" + Set gtmtypfldindx("rc_lknam","xdsid")=1 + Set gtmtypes("rc_lknam",2,"name")="rc_lknam.xdsid.dsid" + Set gtmtypes("rc_lknam",2,"off")=0 + Set gtmtypes("rc_lknam",2,"len")=2 + Set gtmtypes("rc_lknam",2,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","xdsid.dsid")=2 + Set gtmtypes("rc_lknam",3,"name")="rc_lknam.xdsid.node" + Set gtmtypes("rc_lknam",3,"off")=2 + Set gtmtypes("rc_lknam",3,"len")=2 + Set gtmtypes("rc_lknam",3,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","xdsid.node")=3 + Set gtmtypes("rc_lknam",4,"name")="rc_lknam.node_handle" + Set gtmtypes("rc_lknam",4,"off")=4 + Set gtmtypes("rc_lknam",4,"len")=2 + Set gtmtypes("rc_lknam",4,"type")="rc_word" + Set gtmtypfldindx("rc_lknam","node_handle")=4 + Set gtmtypes("rc_lknam",5,"name")="rc_lknam.node_handle.octet" + Set gtmtypes("rc_lknam",5,"off")=4 + Set gtmtypes("rc_lknam",5,"len")=2 + Set gtmtypes("rc_lknam",5,"type")="char" + Set gtmtypfldindx("rc_lknam","node_handle.octet")=5 + Set gtmtypes("rc_lknam",6,"name")="rc_lknam.node_handle.value" + Set gtmtypes("rc_lknam",6,"off")=4 + Set gtmtypes("rc_lknam",6,"len")=2 + Set gtmtypes("rc_lknam",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_lknam","node_handle.value")=6 + Set gtmtypes("rc_lknam",7,"name")="rc_lknam.sb_key" + Set gtmtypes("rc_lknam",7,"off")=6 + Set gtmtypes("rc_lknam",7,"len")=2 + Set gtmtypes("rc_lknam",7,"type")="rc_sbkey" + Set gtmtypfldindx("rc_lknam","sb_key")=7 + Set gtmtypes("rc_lknam",8,"name")="rc_lknam.sb_key.len" + Set gtmtypes("rc_lknam",8,"off")=6 + Set gtmtypes("rc_lknam",8,"len")=1 + Set gtmtypes("rc_lknam",8,"type")="rc_byte" + Set gtmtypfldindx("rc_lknam","sb_key.len")=8 + Set gtmtypes("rc_lknam",9,"name")="rc_lknam.sb_key.key" + Set gtmtypes("rc_lknam",9,"off")=7 + Set gtmtypes("rc_lknam",9,"len")=1 + Set gtmtypes("rc_lknam",9,"type")="char" + Set gtmtypfldindx("rc_lknam","sb_key.key")=9 + ; + Set gtmtypes("rc_lword")="union" + Set gtmtypes("rc_lword",0)=2 + Set gtmtypes("rc_lword","len")=4 + Set gtmtypes("rc_lword",1,"name")="rc_lword.octet" + Set gtmtypes("rc_lword",1,"off")=0 + Set gtmtypes("rc_lword",1,"len")=4 + Set gtmtypes("rc_lword",1,"type")="char" + Set gtmtypfldindx("rc_lword","octet")=1 + Set gtmtypes("rc_lword",2,"name")="rc_lword.value" + Set gtmtypes("rc_lword",2,"off")=0 + Set gtmtypes("rc_lword",2,"len")=4 + Set gtmtypes("rc_lword",2,"type")="unsigned-int" + Set gtmtypfldindx("rc_lword","value")=2 + ; + Set gtmtypes("rc_q_hdr")="union" + Set gtmtypes("rc_q_hdr",0)=26 + Set gtmtypes("rc_q_hdr","len")=14 + Set gtmtypes("rc_q_hdr",1,"name")="rc_q_hdr.r" + Set gtmtypes("rc_q_hdr",1,"off")=0 + Set gtmtypes("rc_q_hdr",1,"len")=14 + Set gtmtypes("rc_q_hdr",1,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_q_hdr","r")=1 + Set gtmtypes("rc_q_hdr",2,"name")="rc_q_hdr.r.len" + Set gtmtypes("rc_q_hdr",2,"off")=0 + Set gtmtypes("rc_q_hdr",2,"len")=2 + Set gtmtypes("rc_q_hdr",2,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.len")=2 + Set gtmtypes("rc_q_hdr",3,"name")="rc_q_hdr.r.typ" + Set gtmtypes("rc_q_hdr",3,"off")=2 + Set gtmtypes("rc_q_hdr",3,"len")=2 + Set gtmtypes("rc_q_hdr",3,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.typ")=3 + Set gtmtypes("rc_q_hdr",4,"name")="rc_q_hdr.r.fmd" + Set gtmtypes("rc_q_hdr",4,"off")=4 + Set gtmtypes("rc_q_hdr",4,"len")=2 + Set gtmtypes("rc_q_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.fmd")=4 + Set gtmtypes("rc_q_hdr",5,"name")="rc_q_hdr.r.pid1" + Set gtmtypes("rc_q_hdr",5,"off")=6 + Set gtmtypes("rc_q_hdr",5,"len")=2 + Set gtmtypes("rc_q_hdr",5,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.pid1")=5 + Set gtmtypes("rc_q_hdr",6,"name")="rc_q_hdr.r.pid2" + Set gtmtypes("rc_q_hdr",6,"off")=8 + Set gtmtypes("rc_q_hdr",6,"len")=2 + Set gtmtypes("rc_q_hdr",6,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","r.pid2")=6 + Set gtmtypes("rc_q_hdr",7,"name")="rc_q_hdr.r.xdsid" + Set gtmtypes("rc_q_hdr",7,"off")=10 + Set gtmtypes("rc_q_hdr",7,"len")=4 + Set gtmtypes("rc_q_hdr",7,"type")="rc_xdsid" + Set gtmtypfldindx("rc_q_hdr","r.xdsid")=7 + Set gtmtypes("rc_q_hdr",8,"name")="rc_q_hdr.a" + Set gtmtypes("rc_q_hdr",8,"off")=0 + Set gtmtypes("rc_q_hdr",8,"len")=14 + Set gtmtypes("rc_q_hdr",8,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_q_hdr","a")=8 + Set gtmtypes("rc_q_hdr",9,"name")="rc_q_hdr.a.len" + Set gtmtypes("rc_q_hdr",9,"off")=0 + Set gtmtypes("rc_q_hdr",9,"len")=2 + Set gtmtypes("rc_q_hdr",9,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.len")=9 + Set gtmtypes("rc_q_hdr",10,"name")="rc_q_hdr.a.len.octet" + Set gtmtypes("rc_q_hdr",10,"off")=0 + Set gtmtypes("rc_q_hdr",10,"len")=2 + Set gtmtypes("rc_q_hdr",10,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.len.octet")=10 + Set gtmtypes("rc_q_hdr",11,"name")="rc_q_hdr.a.len.value" + Set gtmtypes("rc_q_hdr",11,"off")=0 + Set gtmtypes("rc_q_hdr",11,"len")=2 + Set gtmtypes("rc_q_hdr",11,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.len.value")=11 + Set gtmtypes("rc_q_hdr",12,"name")="rc_q_hdr.a.typ" + Set gtmtypes("rc_q_hdr",12,"off")=2 + Set gtmtypes("rc_q_hdr",12,"len")=2 + Set gtmtypes("rc_q_hdr",12,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.typ")=12 + Set gtmtypes("rc_q_hdr",13,"name")="rc_q_hdr.a.typ.octet" + Set gtmtypes("rc_q_hdr",13,"off")=2 + Set gtmtypes("rc_q_hdr",13,"len")=2 + Set gtmtypes("rc_q_hdr",13,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.typ.octet")=13 + Set gtmtypes("rc_q_hdr",14,"name")="rc_q_hdr.a.typ.value" + Set gtmtypes("rc_q_hdr",14,"off")=2 + Set gtmtypes("rc_q_hdr",14,"len")=2 + Set gtmtypes("rc_q_hdr",14,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.typ.value")=14 + Set gtmtypes("rc_q_hdr",15,"name")="rc_q_hdr.a.erc" + Set gtmtypes("rc_q_hdr",15,"off")=4 + Set gtmtypes("rc_q_hdr",15,"len")=2 + Set gtmtypes("rc_q_hdr",15,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.erc")=15 + Set gtmtypes("rc_q_hdr",16,"name")="rc_q_hdr.a.erc.octet" + Set gtmtypes("rc_q_hdr",16,"off")=4 + Set gtmtypes("rc_q_hdr",16,"len")=2 + Set gtmtypes("rc_q_hdr",16,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.erc.octet")=16 + Set gtmtypes("rc_q_hdr",17,"name")="rc_q_hdr.a.erc.value" + Set gtmtypes("rc_q_hdr",17,"off")=4 + Set gtmtypes("rc_q_hdr",17,"len")=2 + Set gtmtypes("rc_q_hdr",17,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.erc.value")=17 + Set gtmtypes("rc_q_hdr",18,"name")="rc_q_hdr.a.pid1" + Set gtmtypes("rc_q_hdr",18,"off")=6 + Set gtmtypes("rc_q_hdr",18,"len")=2 + Set gtmtypes("rc_q_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.pid1")=18 + Set gtmtypes("rc_q_hdr",19,"name")="rc_q_hdr.a.pid1.octet" + Set gtmtypes("rc_q_hdr",19,"off")=6 + Set gtmtypes("rc_q_hdr",19,"len")=2 + Set gtmtypes("rc_q_hdr",19,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.pid1.octet")=19 + Set gtmtypes("rc_q_hdr",20,"name")="rc_q_hdr.a.pid1.value" + Set gtmtypes("rc_q_hdr",20,"off")=6 + Set gtmtypes("rc_q_hdr",20,"len")=2 + Set gtmtypes("rc_q_hdr",20,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.pid1.value")=20 + Set gtmtypes("rc_q_hdr",21,"name")="rc_q_hdr.a.pid2" + Set gtmtypes("rc_q_hdr",21,"off")=8 + Set gtmtypes("rc_q_hdr",21,"len")=2 + Set gtmtypes("rc_q_hdr",21,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.pid2")=21 + Set gtmtypes("rc_q_hdr",22,"name")="rc_q_hdr.a.pid2.octet" + Set gtmtypes("rc_q_hdr",22,"off")=8 + Set gtmtypes("rc_q_hdr",22,"len")=2 + Set gtmtypes("rc_q_hdr",22,"type")="char" + Set gtmtypfldindx("rc_q_hdr","a.pid2.octet")=22 + Set gtmtypes("rc_q_hdr",23,"name")="rc_q_hdr.a.pid2.value" + Set gtmtypes("rc_q_hdr",23,"off")=8 + Set gtmtypes("rc_q_hdr",23,"len")=2 + Set gtmtypes("rc_q_hdr",23,"type")="unsigned-short" + Set gtmtypfldindx("rc_q_hdr","a.pid2.value")=23 + Set gtmtypes("rc_q_hdr",24,"name")="rc_q_hdr.a.xdsid" + Set gtmtypes("rc_q_hdr",24,"off")=10 + Set gtmtypes("rc_q_hdr",24,"len")=4 + Set gtmtypes("rc_q_hdr",24,"type")="rc_xdsid" + Set gtmtypfldindx("rc_q_hdr","a.xdsid")=24 + Set gtmtypes("rc_q_hdr",25,"name")="rc_q_hdr.a.xdsid.dsid" + Set gtmtypes("rc_q_hdr",25,"off")=10 + Set gtmtypes("rc_q_hdr",25,"len")=2 + Set gtmtypes("rc_q_hdr",25,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.xdsid.dsid")=25 + Set gtmtypes("rc_q_hdr",26,"name")="rc_q_hdr.a.xdsid.node" + Set gtmtypes("rc_q_hdr",26,"off")=12 + Set gtmtypes("rc_q_hdr",26,"len")=2 + Set gtmtypes("rc_q_hdr",26,"type")="rc_word" + Set gtmtypfldindx("rc_q_hdr","a.xdsid.node")=26 + ; + Set gtmtypes("rc_req_getp")="struct" + Set gtmtypes("rc_req_getp",0)=31 + Set gtmtypes("rc_req_getp","len")=20 + Set gtmtypes("rc_req_getp",1,"name")="rc_req_getp.hdr" + Set gtmtypes("rc_req_getp",1,"off")=0 + Set gtmtypes("rc_req_getp",1,"len")=14 + Set gtmtypes("rc_req_getp",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_getp","hdr")=1 + Set gtmtypes("rc_req_getp",2,"name")="rc_req_getp.hdr.r" + Set gtmtypes("rc_req_getp",2,"off")=0 + Set gtmtypes("rc_req_getp",2,"len")=14 + Set gtmtypes("rc_req_getp",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_getp","hdr.r")=2 + Set gtmtypes("rc_req_getp",3,"name")="rc_req_getp.hdr.r.len" + Set gtmtypes("rc_req_getp",3,"off")=0 + Set gtmtypes("rc_req_getp",3,"len")=2 + Set gtmtypes("rc_req_getp",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.len")=3 + Set gtmtypes("rc_req_getp",4,"name")="rc_req_getp.hdr.r.typ" + Set gtmtypes("rc_req_getp",4,"off")=2 + Set gtmtypes("rc_req_getp",4,"len")=2 + Set gtmtypes("rc_req_getp",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.typ")=4 + Set gtmtypes("rc_req_getp",5,"name")="rc_req_getp.hdr.r.fmd" + Set gtmtypes("rc_req_getp",5,"off")=4 + Set gtmtypes("rc_req_getp",5,"len")=2 + Set gtmtypes("rc_req_getp",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.fmd")=5 + Set gtmtypes("rc_req_getp",6,"name")="rc_req_getp.hdr.r.pid1" + Set gtmtypes("rc_req_getp",6,"off")=6 + Set gtmtypes("rc_req_getp",6,"len")=2 + Set gtmtypes("rc_req_getp",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.pid1")=6 + Set gtmtypes("rc_req_getp",7,"name")="rc_req_getp.hdr.r.pid2" + Set gtmtypes("rc_req_getp",7,"off")=8 + Set gtmtypes("rc_req_getp",7,"len")=2 + Set gtmtypes("rc_req_getp",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.r.pid2")=7 + Set gtmtypes("rc_req_getp",8,"name")="rc_req_getp.hdr.r.xdsid" + Set gtmtypes("rc_req_getp",8,"off")=10 + Set gtmtypes("rc_req_getp",8,"len")=4 + Set gtmtypes("rc_req_getp",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getp","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_getp",9,"name")="rc_req_getp.hdr.a" + Set gtmtypes("rc_req_getp",9,"off")=0 + Set gtmtypes("rc_req_getp",9,"len")=14 + Set gtmtypes("rc_req_getp",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_getp","hdr.a")=9 + Set gtmtypes("rc_req_getp",10,"name")="rc_req_getp.hdr.a.len" + Set gtmtypes("rc_req_getp",10,"off")=0 + Set gtmtypes("rc_req_getp",10,"len")=2 + Set gtmtypes("rc_req_getp",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.len")=10 + Set gtmtypes("rc_req_getp",11,"name")="rc_req_getp.hdr.a.len.octet" + Set gtmtypes("rc_req_getp",11,"off")=0 + Set gtmtypes("rc_req_getp",11,"len")=2 + Set gtmtypes("rc_req_getp",11,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_getp",12,"name")="rc_req_getp.hdr.a.len.value" + Set gtmtypes("rc_req_getp",12,"off")=0 + Set gtmtypes("rc_req_getp",12,"len")=2 + Set gtmtypes("rc_req_getp",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.len.value")=12 + Set gtmtypes("rc_req_getp",13,"name")="rc_req_getp.hdr.a.typ" + Set gtmtypes("rc_req_getp",13,"off")=2 + Set gtmtypes("rc_req_getp",13,"len")=2 + Set gtmtypes("rc_req_getp",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ")=13 + Set gtmtypes("rc_req_getp",14,"name")="rc_req_getp.hdr.a.typ.octet" + Set gtmtypes("rc_req_getp",14,"off")=2 + Set gtmtypes("rc_req_getp",14,"len")=2 + Set gtmtypes("rc_req_getp",14,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_getp",15,"name")="rc_req_getp.hdr.a.typ.value" + Set gtmtypes("rc_req_getp",15,"off")=2 + Set gtmtypes("rc_req_getp",15,"len")=2 + Set gtmtypes("rc_req_getp",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_getp",16,"name")="rc_req_getp.hdr.a.erc" + Set gtmtypes("rc_req_getp",16,"off")=4 + Set gtmtypes("rc_req_getp",16,"len")=2 + Set gtmtypes("rc_req_getp",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc")=16 + Set gtmtypes("rc_req_getp",17,"name")="rc_req_getp.hdr.a.erc.octet" + Set gtmtypes("rc_req_getp",17,"off")=4 + Set gtmtypes("rc_req_getp",17,"len")=2 + Set gtmtypes("rc_req_getp",17,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_getp",18,"name")="rc_req_getp.hdr.a.erc.value" + Set gtmtypes("rc_req_getp",18,"off")=4 + Set gtmtypes("rc_req_getp",18,"len")=2 + Set gtmtypes("rc_req_getp",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_getp",19,"name")="rc_req_getp.hdr.a.pid1" + Set gtmtypes("rc_req_getp",19,"off")=6 + Set gtmtypes("rc_req_getp",19,"len")=2 + Set gtmtypes("rc_req_getp",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1")=19 + Set gtmtypes("rc_req_getp",20,"name")="rc_req_getp.hdr.a.pid1.octet" + Set gtmtypes("rc_req_getp",20,"off")=6 + Set gtmtypes("rc_req_getp",20,"len")=2 + Set gtmtypes("rc_req_getp",20,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_getp",21,"name")="rc_req_getp.hdr.a.pid1.value" + Set gtmtypes("rc_req_getp",21,"off")=6 + Set gtmtypes("rc_req_getp",21,"len")=2 + Set gtmtypes("rc_req_getp",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_getp",22,"name")="rc_req_getp.hdr.a.pid2" + Set gtmtypes("rc_req_getp",22,"off")=8 + Set gtmtypes("rc_req_getp",22,"len")=2 + Set gtmtypes("rc_req_getp",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2")=22 + Set gtmtypes("rc_req_getp",23,"name")="rc_req_getp.hdr.a.pid2.octet" + Set gtmtypes("rc_req_getp",23,"off")=8 + Set gtmtypes("rc_req_getp",23,"len")=2 + Set gtmtypes("rc_req_getp",23,"type")="char" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_getp",24,"name")="rc_req_getp.hdr.a.pid2.value" + Set gtmtypes("rc_req_getp",24,"off")=8 + Set gtmtypes("rc_req_getp",24,"len")=2 + Set gtmtypes("rc_req_getp",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_getp",25,"name")="rc_req_getp.hdr.a.xdsid" + Set gtmtypes("rc_req_getp",25,"off")=10 + Set gtmtypes("rc_req_getp",25,"len")=4 + Set gtmtypes("rc_req_getp",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_getp",26,"name")="rc_req_getp.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_getp",26,"off")=10 + Set gtmtypes("rc_req_getp",26,"len")=2 + Set gtmtypes("rc_req_getp",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_getp",27,"name")="rc_req_getp.hdr.a.xdsid.node" + Set gtmtypes("rc_req_getp",27,"off")=12 + Set gtmtypes("rc_req_getp",27,"len")=2 + Set gtmtypes("rc_req_getp",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_getp",28,"name")="rc_req_getp.pageaddr" + Set gtmtypes("rc_req_getp",28,"off")=14 + Set gtmtypes("rc_req_getp",28,"len")=4 + Set gtmtypes("rc_req_getp",28,"type")="char" + Set gtmtypfldindx("rc_req_getp","pageaddr")=28 + Set gtmtypes("rc_req_getp",29,"name")="rc_req_getp.offset" + Set gtmtypes("rc_req_getp",29,"off")=18 + Set gtmtypes("rc_req_getp",29,"len")=2 + Set gtmtypes("rc_req_getp",29,"type")="rc_word" + Set gtmtypfldindx("rc_req_getp","offset")=29 + Set gtmtypes("rc_req_getp",30,"name")="rc_req_getp.offset.octet" + Set gtmtypes("rc_req_getp",30,"off")=18 + Set gtmtypes("rc_req_getp",30,"len")=2 + Set gtmtypes("rc_req_getp",30,"type")="char" + Set gtmtypfldindx("rc_req_getp","offset.octet")=30 + Set gtmtypes("rc_req_getp",31,"name")="rc_req_getp.offset.value" + Set gtmtypes("rc_req_getp",31,"off")=18 + Set gtmtypes("rc_req_getp",31,"len")=2 + Set gtmtypes("rc_req_getp",31,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getp","offset.value")=31 + ; + Set gtmtypes("rc_req_getr")="struct" + Set gtmtypes("rc_req_getr",0)=30 + Set gtmtypes("rc_req_getr","len")=16 + Set gtmtypes("rc_req_getr",1,"name")="rc_req_getr.hdr" + Set gtmtypes("rc_req_getr",1,"off")=0 + Set gtmtypes("rc_req_getr",1,"len")=14 + Set gtmtypes("rc_req_getr",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_getr","hdr")=1 + Set gtmtypes("rc_req_getr",2,"name")="rc_req_getr.hdr.r" + Set gtmtypes("rc_req_getr",2,"off")=0 + Set gtmtypes("rc_req_getr",2,"len")=14 + Set gtmtypes("rc_req_getr",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_getr","hdr.r")=2 + Set gtmtypes("rc_req_getr",3,"name")="rc_req_getr.hdr.r.len" + Set gtmtypes("rc_req_getr",3,"off")=0 + Set gtmtypes("rc_req_getr",3,"len")=2 + Set gtmtypes("rc_req_getr",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.len")=3 + Set gtmtypes("rc_req_getr",4,"name")="rc_req_getr.hdr.r.typ" + Set gtmtypes("rc_req_getr",4,"off")=2 + Set gtmtypes("rc_req_getr",4,"len")=2 + Set gtmtypes("rc_req_getr",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.typ")=4 + Set gtmtypes("rc_req_getr",5,"name")="rc_req_getr.hdr.r.fmd" + Set gtmtypes("rc_req_getr",5,"off")=4 + Set gtmtypes("rc_req_getr",5,"len")=2 + Set gtmtypes("rc_req_getr",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.fmd")=5 + Set gtmtypes("rc_req_getr",6,"name")="rc_req_getr.hdr.r.pid1" + Set gtmtypes("rc_req_getr",6,"off")=6 + Set gtmtypes("rc_req_getr",6,"len")=2 + Set gtmtypes("rc_req_getr",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.pid1")=6 + Set gtmtypes("rc_req_getr",7,"name")="rc_req_getr.hdr.r.pid2" + Set gtmtypes("rc_req_getr",7,"off")=8 + Set gtmtypes("rc_req_getr",7,"len")=2 + Set gtmtypes("rc_req_getr",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.r.pid2")=7 + Set gtmtypes("rc_req_getr",8,"name")="rc_req_getr.hdr.r.xdsid" + Set gtmtypes("rc_req_getr",8,"off")=10 + Set gtmtypes("rc_req_getr",8,"len")=4 + Set gtmtypes("rc_req_getr",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getr","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_getr",9,"name")="rc_req_getr.hdr.a" + Set gtmtypes("rc_req_getr",9,"off")=0 + Set gtmtypes("rc_req_getr",9,"len")=14 + Set gtmtypes("rc_req_getr",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_getr","hdr.a")=9 + Set gtmtypes("rc_req_getr",10,"name")="rc_req_getr.hdr.a.len" + Set gtmtypes("rc_req_getr",10,"off")=0 + Set gtmtypes("rc_req_getr",10,"len")=2 + Set gtmtypes("rc_req_getr",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.len")=10 + Set gtmtypes("rc_req_getr",11,"name")="rc_req_getr.hdr.a.len.octet" + Set gtmtypes("rc_req_getr",11,"off")=0 + Set gtmtypes("rc_req_getr",11,"len")=2 + Set gtmtypes("rc_req_getr",11,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_getr",12,"name")="rc_req_getr.hdr.a.len.value" + Set gtmtypes("rc_req_getr",12,"off")=0 + Set gtmtypes("rc_req_getr",12,"len")=2 + Set gtmtypes("rc_req_getr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.len.value")=12 + Set gtmtypes("rc_req_getr",13,"name")="rc_req_getr.hdr.a.typ" + Set gtmtypes("rc_req_getr",13,"off")=2 + Set gtmtypes("rc_req_getr",13,"len")=2 + Set gtmtypes("rc_req_getr",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ")=13 + Set gtmtypes("rc_req_getr",14,"name")="rc_req_getr.hdr.a.typ.octet" + Set gtmtypes("rc_req_getr",14,"off")=2 + Set gtmtypes("rc_req_getr",14,"len")=2 + Set gtmtypes("rc_req_getr",14,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_getr",15,"name")="rc_req_getr.hdr.a.typ.value" + Set gtmtypes("rc_req_getr",15,"off")=2 + Set gtmtypes("rc_req_getr",15,"len")=2 + Set gtmtypes("rc_req_getr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_getr",16,"name")="rc_req_getr.hdr.a.erc" + Set gtmtypes("rc_req_getr",16,"off")=4 + Set gtmtypes("rc_req_getr",16,"len")=2 + Set gtmtypes("rc_req_getr",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc")=16 + Set gtmtypes("rc_req_getr",17,"name")="rc_req_getr.hdr.a.erc.octet" + Set gtmtypes("rc_req_getr",17,"off")=4 + Set gtmtypes("rc_req_getr",17,"len")=2 + Set gtmtypes("rc_req_getr",17,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_getr",18,"name")="rc_req_getr.hdr.a.erc.value" + Set gtmtypes("rc_req_getr",18,"off")=4 + Set gtmtypes("rc_req_getr",18,"len")=2 + Set gtmtypes("rc_req_getr",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_getr",19,"name")="rc_req_getr.hdr.a.pid1" + Set gtmtypes("rc_req_getr",19,"off")=6 + Set gtmtypes("rc_req_getr",19,"len")=2 + Set gtmtypes("rc_req_getr",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1")=19 + Set gtmtypes("rc_req_getr",20,"name")="rc_req_getr.hdr.a.pid1.octet" + Set gtmtypes("rc_req_getr",20,"off")=6 + Set gtmtypes("rc_req_getr",20,"len")=2 + Set gtmtypes("rc_req_getr",20,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_getr",21,"name")="rc_req_getr.hdr.a.pid1.value" + Set gtmtypes("rc_req_getr",21,"off")=6 + Set gtmtypes("rc_req_getr",21,"len")=2 + Set gtmtypes("rc_req_getr",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_getr",22,"name")="rc_req_getr.hdr.a.pid2" + Set gtmtypes("rc_req_getr",22,"off")=8 + Set gtmtypes("rc_req_getr",22,"len")=2 + Set gtmtypes("rc_req_getr",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2")=22 + Set gtmtypes("rc_req_getr",23,"name")="rc_req_getr.hdr.a.pid2.octet" + Set gtmtypes("rc_req_getr",23,"off")=8 + Set gtmtypes("rc_req_getr",23,"len")=2 + Set gtmtypes("rc_req_getr",23,"type")="char" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_getr",24,"name")="rc_req_getr.hdr.a.pid2.value" + Set gtmtypes("rc_req_getr",24,"off")=8 + Set gtmtypes("rc_req_getr",24,"len")=2 + Set gtmtypes("rc_req_getr",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_getr","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_getr",25,"name")="rc_req_getr.hdr.a.xdsid" + Set gtmtypes("rc_req_getr",25,"off")=10 + Set gtmtypes("rc_req_getr",25,"len")=4 + Set gtmtypes("rc_req_getr",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_getr",26,"name")="rc_req_getr.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_getr",26,"off")=10 + Set gtmtypes("rc_req_getr",26,"len")=2 + Set gtmtypes("rc_req_getr",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_getr",27,"name")="rc_req_getr.hdr.a.xdsid.node" + Set gtmtypes("rc_req_getr",27,"off")=12 + Set gtmtypes("rc_req_getr",27,"len")=2 + Set gtmtypes("rc_req_getr",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_getr","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_getr",28,"name")="rc_req_getr.key" + Set gtmtypes("rc_req_getr",28,"off")=14 + Set gtmtypes("rc_req_getr",28,"len")=2 + Set gtmtypes("rc_req_getr",28,"type")="rc_sbkey" + Set gtmtypfldindx("rc_req_getr","key")=28 + Set gtmtypes("rc_req_getr",29,"name")="rc_req_getr.key.len" + Set gtmtypes("rc_req_getr",29,"off")=14 + Set gtmtypes("rc_req_getr",29,"len")=1 + Set gtmtypes("rc_req_getr",29,"type")="rc_byte" + Set gtmtypfldindx("rc_req_getr","key.len")=29 + Set gtmtypes("rc_req_getr",30,"name")="rc_req_getr.key.key" + Set gtmtypes("rc_req_getr",30,"off")=15 + Set gtmtypes("rc_req_getr",30,"len")=1 + Set gtmtypes("rc_req_getr",30,"type")="char" + Set gtmtypfldindx("rc_req_getr","key.key")=30 + ; + Set gtmtypes("rc_req_lock")="struct" + Set gtmtypes("rc_req_lock",0)=40 + Set gtmtypes("rc_req_lock","len")=24 + Set gtmtypes("rc_req_lock",1,"name")="rc_req_lock.hdr" + Set gtmtypes("rc_req_lock",1,"off")=0 + Set gtmtypes("rc_req_lock",1,"len")=14 + Set gtmtypes("rc_req_lock",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_lock","hdr")=1 + Set gtmtypes("rc_req_lock",2,"name")="rc_req_lock.hdr.r" + Set gtmtypes("rc_req_lock",2,"off")=0 + Set gtmtypes("rc_req_lock",2,"len")=14 + Set gtmtypes("rc_req_lock",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_lock","hdr.r")=2 + Set gtmtypes("rc_req_lock",3,"name")="rc_req_lock.hdr.r.len" + Set gtmtypes("rc_req_lock",3,"off")=0 + Set gtmtypes("rc_req_lock",3,"len")=2 + Set gtmtypes("rc_req_lock",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.len")=3 + Set gtmtypes("rc_req_lock",4,"name")="rc_req_lock.hdr.r.typ" + Set gtmtypes("rc_req_lock",4,"off")=2 + Set gtmtypes("rc_req_lock",4,"len")=2 + Set gtmtypes("rc_req_lock",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.typ")=4 + Set gtmtypes("rc_req_lock",5,"name")="rc_req_lock.hdr.r.fmd" + Set gtmtypes("rc_req_lock",5,"off")=4 + Set gtmtypes("rc_req_lock",5,"len")=2 + Set gtmtypes("rc_req_lock",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.fmd")=5 + Set gtmtypes("rc_req_lock",6,"name")="rc_req_lock.hdr.r.pid1" + Set gtmtypes("rc_req_lock",6,"off")=6 + Set gtmtypes("rc_req_lock",6,"len")=2 + Set gtmtypes("rc_req_lock",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.pid1")=6 + Set gtmtypes("rc_req_lock",7,"name")="rc_req_lock.hdr.r.pid2" + Set gtmtypes("rc_req_lock",7,"off")=8 + Set gtmtypes("rc_req_lock",7,"len")=2 + Set gtmtypes("rc_req_lock",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.r.pid2")=7 + Set gtmtypes("rc_req_lock",8,"name")="rc_req_lock.hdr.r.xdsid" + Set gtmtypes("rc_req_lock",8,"off")=10 + Set gtmtypes("rc_req_lock",8,"len")=4 + Set gtmtypes("rc_req_lock",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_lock",9,"name")="rc_req_lock.hdr.a" + Set gtmtypes("rc_req_lock",9,"off")=0 + Set gtmtypes("rc_req_lock",9,"len")=14 + Set gtmtypes("rc_req_lock",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_lock","hdr.a")=9 + Set gtmtypes("rc_req_lock",10,"name")="rc_req_lock.hdr.a.len" + Set gtmtypes("rc_req_lock",10,"off")=0 + Set gtmtypes("rc_req_lock",10,"len")=2 + Set gtmtypes("rc_req_lock",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.len")=10 + Set gtmtypes("rc_req_lock",11,"name")="rc_req_lock.hdr.a.len.octet" + Set gtmtypes("rc_req_lock",11,"off")=0 + Set gtmtypes("rc_req_lock",11,"len")=2 + Set gtmtypes("rc_req_lock",11,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_lock",12,"name")="rc_req_lock.hdr.a.len.value" + Set gtmtypes("rc_req_lock",12,"off")=0 + Set gtmtypes("rc_req_lock",12,"len")=2 + Set gtmtypes("rc_req_lock",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.len.value")=12 + Set gtmtypes("rc_req_lock",13,"name")="rc_req_lock.hdr.a.typ" + Set gtmtypes("rc_req_lock",13,"off")=2 + Set gtmtypes("rc_req_lock",13,"len")=2 + Set gtmtypes("rc_req_lock",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ")=13 + Set gtmtypes("rc_req_lock",14,"name")="rc_req_lock.hdr.a.typ.octet" + Set gtmtypes("rc_req_lock",14,"off")=2 + Set gtmtypes("rc_req_lock",14,"len")=2 + Set gtmtypes("rc_req_lock",14,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_lock",15,"name")="rc_req_lock.hdr.a.typ.value" + Set gtmtypes("rc_req_lock",15,"off")=2 + Set gtmtypes("rc_req_lock",15,"len")=2 + Set gtmtypes("rc_req_lock",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_lock",16,"name")="rc_req_lock.hdr.a.erc" + Set gtmtypes("rc_req_lock",16,"off")=4 + Set gtmtypes("rc_req_lock",16,"len")=2 + Set gtmtypes("rc_req_lock",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc")=16 + Set gtmtypes("rc_req_lock",17,"name")="rc_req_lock.hdr.a.erc.octet" + Set gtmtypes("rc_req_lock",17,"off")=4 + Set gtmtypes("rc_req_lock",17,"len")=2 + Set gtmtypes("rc_req_lock",17,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_lock",18,"name")="rc_req_lock.hdr.a.erc.value" + Set gtmtypes("rc_req_lock",18,"off")=4 + Set gtmtypes("rc_req_lock",18,"len")=2 + Set gtmtypes("rc_req_lock",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_lock",19,"name")="rc_req_lock.hdr.a.pid1" + Set gtmtypes("rc_req_lock",19,"off")=6 + Set gtmtypes("rc_req_lock",19,"len")=2 + Set gtmtypes("rc_req_lock",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1")=19 + Set gtmtypes("rc_req_lock",20,"name")="rc_req_lock.hdr.a.pid1.octet" + Set gtmtypes("rc_req_lock",20,"off")=6 + Set gtmtypes("rc_req_lock",20,"len")=2 + Set gtmtypes("rc_req_lock",20,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_lock",21,"name")="rc_req_lock.hdr.a.pid1.value" + Set gtmtypes("rc_req_lock",21,"off")=6 + Set gtmtypes("rc_req_lock",21,"len")=2 + Set gtmtypes("rc_req_lock",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_lock",22,"name")="rc_req_lock.hdr.a.pid2" + Set gtmtypes("rc_req_lock",22,"off")=8 + Set gtmtypes("rc_req_lock",22,"len")=2 + Set gtmtypes("rc_req_lock",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2")=22 + Set gtmtypes("rc_req_lock",23,"name")="rc_req_lock.hdr.a.pid2.octet" + Set gtmtypes("rc_req_lock",23,"off")=8 + Set gtmtypes("rc_req_lock",23,"len")=2 + Set gtmtypes("rc_req_lock",23,"type")="char" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_lock",24,"name")="rc_req_lock.hdr.a.pid2.value" + Set gtmtypes("rc_req_lock",24,"off")=8 + Set gtmtypes("rc_req_lock",24,"len")=2 + Set gtmtypes("rc_req_lock",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_lock",25,"name")="rc_req_lock.hdr.a.xdsid" + Set gtmtypes("rc_req_lock",25,"off")=10 + Set gtmtypes("rc_req_lock",25,"len")=4 + Set gtmtypes("rc_req_lock",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_lock",26,"name")="rc_req_lock.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_lock",26,"off")=10 + Set gtmtypes("rc_req_lock",26,"len")=2 + Set gtmtypes("rc_req_lock",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_lock",27,"name")="rc_req_lock.hdr.a.xdsid.node" + Set gtmtypes("rc_req_lock",27,"off")=12 + Set gtmtypes("rc_req_lock",27,"len")=2 + Set gtmtypes("rc_req_lock",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_lock",28,"name")="rc_req_lock.nlocks" + Set gtmtypes("rc_req_lock",28,"off")=14 + Set gtmtypes("rc_req_lock",28,"len")=2 + Set gtmtypes("rc_req_lock",28,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","nlocks")=28 + Set gtmtypes("rc_req_lock",29,"name")="rc_req_lock.nlocks.octet" + Set gtmtypes("rc_req_lock",29,"off")=14 + Set gtmtypes("rc_req_lock",29,"len")=2 + Set gtmtypes("rc_req_lock",29,"type")="char" + Set gtmtypfldindx("rc_req_lock","nlocks.octet")=29 + Set gtmtypes("rc_req_lock",30,"name")="rc_req_lock.nlocks.value" + Set gtmtypes("rc_req_lock",30,"off")=14 + Set gtmtypes("rc_req_lock",30,"len")=2 + Set gtmtypes("rc_req_lock",30,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","nlocks.value")=30 + Set gtmtypes("rc_req_lock",31,"name")="rc_req_lock.dlocks" + Set gtmtypes("rc_req_lock",31,"off")=16 + Set gtmtypes("rc_req_lock",31,"len")=8 + Set gtmtypes("rc_req_lock",31,"type")="rc_lknam" + Set gtmtypfldindx("rc_req_lock","dlocks")=31 + Set gtmtypes("rc_req_lock",32,"name")="rc_req_lock.dlocks[0].xdsid" + Set gtmtypes("rc_req_lock",32,"off")=16 + Set gtmtypes("rc_req_lock",32,"len")=4 + Set gtmtypes("rc_req_lock",32,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid")=32 + Set gtmtypes("rc_req_lock",33,"name")="rc_req_lock.dlocks[0].xdsid.dsid" + Set gtmtypes("rc_req_lock",33,"off")=16 + Set gtmtypes("rc_req_lock",33,"len")=2 + Set gtmtypes("rc_req_lock",33,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid.dsid")=33 + Set gtmtypes("rc_req_lock",34,"name")="rc_req_lock.dlocks[0].xdsid.node" + Set gtmtypes("rc_req_lock",34,"off")=18 + Set gtmtypes("rc_req_lock",34,"len")=2 + Set gtmtypes("rc_req_lock",34,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].xdsid.node")=34 + Set gtmtypes("rc_req_lock",35,"name")="rc_req_lock.dlocks[0].node_handle" + Set gtmtypes("rc_req_lock",35,"off")=20 + Set gtmtypes("rc_req_lock",35,"len")=2 + Set gtmtypes("rc_req_lock",35,"type")="rc_word" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle")=35 + Set gtmtypes("rc_req_lock",36,"name")="rc_req_lock.dlocks[0].node_handle.octet" + Set gtmtypes("rc_req_lock",36,"off")=20 + Set gtmtypes("rc_req_lock",36,"len")=2 + Set gtmtypes("rc_req_lock",36,"type")="char" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle.octet")=36 + Set gtmtypes("rc_req_lock",37,"name")="rc_req_lock.dlocks[0].node_handle.value" + Set gtmtypes("rc_req_lock",37,"off")=20 + Set gtmtypes("rc_req_lock",37,"len")=2 + Set gtmtypes("rc_req_lock",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_lock","dlocks[0].node_handle.value")=37 + Set gtmtypes("rc_req_lock",38,"name")="rc_req_lock.dlocks[0].sb_key" + Set gtmtypes("rc_req_lock",38,"off")=22 + Set gtmtypes("rc_req_lock",38,"len")=2 + Set gtmtypes("rc_req_lock",38,"type")="rc_sbkey" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key")=38 + Set gtmtypes("rc_req_lock",39,"name")="rc_req_lock.dlocks[0].sb_key.len" + Set gtmtypes("rc_req_lock",39,"off")=22 + Set gtmtypes("rc_req_lock",39,"len")=1 + Set gtmtypes("rc_req_lock",39,"type")="rc_byte" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key.len")=39 + Set gtmtypes("rc_req_lock",40,"name")="rc_req_lock.dlocks[0].sb_key.key" + Set gtmtypes("rc_req_lock",40,"off")=23 + Set gtmtypes("rc_req_lock",40,"len")=1 + Set gtmtypes("rc_req_lock",40,"type")="char" + Set gtmtypfldindx("rc_req_lock","dlocks[0].sb_key.key")=40 + ; + Set gtmtypes("rc_req_logn")="struct" + Set gtmtypes("rc_req_logn",0)=29 + Set gtmtypes("rc_req_logn","len")=250 + Set gtmtypes("rc_req_logn",1,"name")="rc_req_logn.hdr" + Set gtmtypes("rc_req_logn",1,"off")=0 + Set gtmtypes("rc_req_logn",1,"len")=14 + Set gtmtypes("rc_req_logn",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_req_logn","hdr")=1 + Set gtmtypes("rc_req_logn",2,"name")="rc_req_logn.hdr.r" + Set gtmtypes("rc_req_logn",2,"off")=0 + Set gtmtypes("rc_req_logn",2,"len")=14 + Set gtmtypes("rc_req_logn",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_req_logn","hdr.r")=2 + Set gtmtypes("rc_req_logn",3,"name")="rc_req_logn.hdr.r.len" + Set gtmtypes("rc_req_logn",3,"off")=0 + Set gtmtypes("rc_req_logn",3,"len")=2 + Set gtmtypes("rc_req_logn",3,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.len")=3 + Set gtmtypes("rc_req_logn",4,"name")="rc_req_logn.hdr.r.typ" + Set gtmtypes("rc_req_logn",4,"off")=2 + Set gtmtypes("rc_req_logn",4,"len")=2 + Set gtmtypes("rc_req_logn",4,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.typ")=4 + Set gtmtypes("rc_req_logn",5,"name")="rc_req_logn.hdr.r.fmd" + Set gtmtypes("rc_req_logn",5,"off")=4 + Set gtmtypes("rc_req_logn",5,"len")=2 + Set gtmtypes("rc_req_logn",5,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.fmd")=5 + Set gtmtypes("rc_req_logn",6,"name")="rc_req_logn.hdr.r.pid1" + Set gtmtypes("rc_req_logn",6,"off")=6 + Set gtmtypes("rc_req_logn",6,"len")=2 + Set gtmtypes("rc_req_logn",6,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.pid1")=6 + Set gtmtypes("rc_req_logn",7,"name")="rc_req_logn.hdr.r.pid2" + Set gtmtypes("rc_req_logn",7,"off")=8 + Set gtmtypes("rc_req_logn",7,"len")=2 + Set gtmtypes("rc_req_logn",7,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.r.pid2")=7 + Set gtmtypes("rc_req_logn",8,"name")="rc_req_logn.hdr.r.xdsid" + Set gtmtypes("rc_req_logn",8,"off")=10 + Set gtmtypes("rc_req_logn",8,"len")=4 + Set gtmtypes("rc_req_logn",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_logn","hdr.r.xdsid")=8 + Set gtmtypes("rc_req_logn",9,"name")="rc_req_logn.hdr.a" + Set gtmtypes("rc_req_logn",9,"off")=0 + Set gtmtypes("rc_req_logn",9,"len")=14 + Set gtmtypes("rc_req_logn",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_req_logn","hdr.a")=9 + Set gtmtypes("rc_req_logn",10,"name")="rc_req_logn.hdr.a.len" + Set gtmtypes("rc_req_logn",10,"off")=0 + Set gtmtypes("rc_req_logn",10,"len")=2 + Set gtmtypes("rc_req_logn",10,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.len")=10 + Set gtmtypes("rc_req_logn",11,"name")="rc_req_logn.hdr.a.len.octet" + Set gtmtypes("rc_req_logn",11,"off")=0 + Set gtmtypes("rc_req_logn",11,"len")=2 + Set gtmtypes("rc_req_logn",11,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.len.octet")=11 + Set gtmtypes("rc_req_logn",12,"name")="rc_req_logn.hdr.a.len.value" + Set gtmtypes("rc_req_logn",12,"off")=0 + Set gtmtypes("rc_req_logn",12,"len")=2 + Set gtmtypes("rc_req_logn",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.len.value")=12 + Set gtmtypes("rc_req_logn",13,"name")="rc_req_logn.hdr.a.typ" + Set gtmtypes("rc_req_logn",13,"off")=2 + Set gtmtypes("rc_req_logn",13,"len")=2 + Set gtmtypes("rc_req_logn",13,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ")=13 + Set gtmtypes("rc_req_logn",14,"name")="rc_req_logn.hdr.a.typ.octet" + Set gtmtypes("rc_req_logn",14,"off")=2 + Set gtmtypes("rc_req_logn",14,"len")=2 + Set gtmtypes("rc_req_logn",14,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ.octet")=14 + Set gtmtypes("rc_req_logn",15,"name")="rc_req_logn.hdr.a.typ.value" + Set gtmtypes("rc_req_logn",15,"off")=2 + Set gtmtypes("rc_req_logn",15,"len")=2 + Set gtmtypes("rc_req_logn",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.typ.value")=15 + Set gtmtypes("rc_req_logn",16,"name")="rc_req_logn.hdr.a.erc" + Set gtmtypes("rc_req_logn",16,"off")=4 + Set gtmtypes("rc_req_logn",16,"len")=2 + Set gtmtypes("rc_req_logn",16,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc")=16 + Set gtmtypes("rc_req_logn",17,"name")="rc_req_logn.hdr.a.erc.octet" + Set gtmtypes("rc_req_logn",17,"off")=4 + Set gtmtypes("rc_req_logn",17,"len")=2 + Set gtmtypes("rc_req_logn",17,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc.octet")=17 + Set gtmtypes("rc_req_logn",18,"name")="rc_req_logn.hdr.a.erc.value" + Set gtmtypes("rc_req_logn",18,"off")=4 + Set gtmtypes("rc_req_logn",18,"len")=2 + Set gtmtypes("rc_req_logn",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.erc.value")=18 + Set gtmtypes("rc_req_logn",19,"name")="rc_req_logn.hdr.a.pid1" + Set gtmtypes("rc_req_logn",19,"off")=6 + Set gtmtypes("rc_req_logn",19,"len")=2 + Set gtmtypes("rc_req_logn",19,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1")=19 + Set gtmtypes("rc_req_logn",20,"name")="rc_req_logn.hdr.a.pid1.octet" + Set gtmtypes("rc_req_logn",20,"off")=6 + Set gtmtypes("rc_req_logn",20,"len")=2 + Set gtmtypes("rc_req_logn",20,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_req_logn",21,"name")="rc_req_logn.hdr.a.pid1.value" + Set gtmtypes("rc_req_logn",21,"off")=6 + Set gtmtypes("rc_req_logn",21,"len")=2 + Set gtmtypes("rc_req_logn",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid1.value")=21 + Set gtmtypes("rc_req_logn",22,"name")="rc_req_logn.hdr.a.pid2" + Set gtmtypes("rc_req_logn",22,"off")=8 + Set gtmtypes("rc_req_logn",22,"len")=2 + Set gtmtypes("rc_req_logn",22,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2")=22 + Set gtmtypes("rc_req_logn",23,"name")="rc_req_logn.hdr.a.pid2.octet" + Set gtmtypes("rc_req_logn",23,"off")=8 + Set gtmtypes("rc_req_logn",23,"len")=2 + Set gtmtypes("rc_req_logn",23,"type")="char" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_req_logn",24,"name")="rc_req_logn.hdr.a.pid2.value" + Set gtmtypes("rc_req_logn",24,"off")=8 + Set gtmtypes("rc_req_logn",24,"len")=2 + Set gtmtypes("rc_req_logn",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_req_logn","hdr.a.pid2.value")=24 + Set gtmtypes("rc_req_logn",25,"name")="rc_req_logn.hdr.a.xdsid" + Set gtmtypes("rc_req_logn",25,"off")=10 + Set gtmtypes("rc_req_logn",25,"len")=4 + Set gtmtypes("rc_req_logn",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid")=25 + Set gtmtypes("rc_req_logn",26,"name")="rc_req_logn.hdr.a.xdsid.dsid" + Set gtmtypes("rc_req_logn",26,"off")=10 + Set gtmtypes("rc_req_logn",26,"len")=2 + Set gtmtypes("rc_req_logn",26,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_req_logn",27,"name")="rc_req_logn.hdr.a.xdsid.node" + Set gtmtypes("rc_req_logn",27,"off")=12 + Set gtmtypes("rc_req_logn",27,"len")=2 + Set gtmtypes("rc_req_logn",27,"type")="rc_word" + Set gtmtypfldindx("rc_req_logn","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_req_logn",28,"name")="rc_req_logn.license_num" + Set gtmtypes("rc_req_logn",28,"off")=14 + Set gtmtypes("rc_req_logn",28,"len")=12 + Set gtmtypes("rc_req_logn",28,"type")="char" + Set gtmtypfldindx("rc_req_logn","license_num")=28 + Set gtmtypes("rc_req_logn",29,"name")="rc_req_logn.license_blk" + Set gtmtypes("rc_req_logn",29,"off")=26 + Set gtmtypes("rc_req_logn",29,"len")=224 + Set gtmtypes("rc_req_logn",29,"type")="char" + Set gtmtypfldindx("rc_req_logn","license_blk")=29 + ; + Set gtmtypes("rc_rq_hdr")="struct" + Set gtmtypes("rc_rq_hdr",0)=18 + Set gtmtypes("rc_rq_hdr","len")=14 + Set gtmtypes("rc_rq_hdr",1,"name")="rc_rq_hdr.len" + Set gtmtypes("rc_rq_hdr",1,"off")=0 + Set gtmtypes("rc_rq_hdr",1,"len")=2 + Set gtmtypes("rc_rq_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","len")=1 + Set gtmtypes("rc_rq_hdr",2,"name")="rc_rq_hdr.len.octet" + Set gtmtypes("rc_rq_hdr",2,"off")=0 + Set gtmtypes("rc_rq_hdr",2,"len")=2 + Set gtmtypes("rc_rq_hdr",2,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","len.octet")=2 + Set gtmtypes("rc_rq_hdr",3,"name")="rc_rq_hdr.len.value" + Set gtmtypes("rc_rq_hdr",3,"off")=0 + Set gtmtypes("rc_rq_hdr",3,"len")=2 + Set gtmtypes("rc_rq_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","len.value")=3 + Set gtmtypes("rc_rq_hdr",4,"name")="rc_rq_hdr.typ" + Set gtmtypes("rc_rq_hdr",4,"off")=2 + Set gtmtypes("rc_rq_hdr",4,"len")=2 + Set gtmtypes("rc_rq_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","typ")=4 + Set gtmtypes("rc_rq_hdr",5,"name")="rc_rq_hdr.typ.octet" + Set gtmtypes("rc_rq_hdr",5,"off")=2 + Set gtmtypes("rc_rq_hdr",5,"len")=2 + Set gtmtypes("rc_rq_hdr",5,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","typ.octet")=5 + Set gtmtypes("rc_rq_hdr",6,"name")="rc_rq_hdr.typ.value" + Set gtmtypes("rc_rq_hdr",6,"off")=2 + Set gtmtypes("rc_rq_hdr",6,"len")=2 + Set gtmtypes("rc_rq_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","typ.value")=6 + Set gtmtypes("rc_rq_hdr",7,"name")="rc_rq_hdr.fmd" + Set gtmtypes("rc_rq_hdr",7,"off")=4 + Set gtmtypes("rc_rq_hdr",7,"len")=2 + Set gtmtypes("rc_rq_hdr",7,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","fmd")=7 + Set gtmtypes("rc_rq_hdr",8,"name")="rc_rq_hdr.fmd.octet" + Set gtmtypes("rc_rq_hdr",8,"off")=4 + Set gtmtypes("rc_rq_hdr",8,"len")=2 + Set gtmtypes("rc_rq_hdr",8,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","fmd.octet")=8 + Set gtmtypes("rc_rq_hdr",9,"name")="rc_rq_hdr.fmd.value" + Set gtmtypes("rc_rq_hdr",9,"off")=4 + Set gtmtypes("rc_rq_hdr",9,"len")=2 + Set gtmtypes("rc_rq_hdr",9,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","fmd.value")=9 + Set gtmtypes("rc_rq_hdr",10,"name")="rc_rq_hdr.pid1" + Set gtmtypes("rc_rq_hdr",10,"off")=6 + Set gtmtypes("rc_rq_hdr",10,"len")=2 + Set gtmtypes("rc_rq_hdr",10,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","pid1")=10 + Set gtmtypes("rc_rq_hdr",11,"name")="rc_rq_hdr.pid1.octet" + Set gtmtypes("rc_rq_hdr",11,"off")=6 + Set gtmtypes("rc_rq_hdr",11,"len")=2 + Set gtmtypes("rc_rq_hdr",11,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","pid1.octet")=11 + Set gtmtypes("rc_rq_hdr",12,"name")="rc_rq_hdr.pid1.value" + Set gtmtypes("rc_rq_hdr",12,"off")=6 + Set gtmtypes("rc_rq_hdr",12,"len")=2 + Set gtmtypes("rc_rq_hdr",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","pid1.value")=12 + Set gtmtypes("rc_rq_hdr",13,"name")="rc_rq_hdr.pid2" + Set gtmtypes("rc_rq_hdr",13,"off")=8 + Set gtmtypes("rc_rq_hdr",13,"len")=2 + Set gtmtypes("rc_rq_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","pid2")=13 + Set gtmtypes("rc_rq_hdr",14,"name")="rc_rq_hdr.pid2.octet" + Set gtmtypes("rc_rq_hdr",14,"off")=8 + Set gtmtypes("rc_rq_hdr",14,"len")=2 + Set gtmtypes("rc_rq_hdr",14,"type")="char" + Set gtmtypfldindx("rc_rq_hdr","pid2.octet")=14 + Set gtmtypes("rc_rq_hdr",15,"name")="rc_rq_hdr.pid2.value" + Set gtmtypes("rc_rq_hdr",15,"off")=8 + Set gtmtypes("rc_rq_hdr",15,"len")=2 + Set gtmtypes("rc_rq_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rq_hdr","pid2.value")=15 + Set gtmtypes("rc_rq_hdr",16,"name")="rc_rq_hdr.xdsid" + Set gtmtypes("rc_rq_hdr",16,"off")=10 + Set gtmtypes("rc_rq_hdr",16,"len")=4 + Set gtmtypes("rc_rq_hdr",16,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rq_hdr","xdsid")=16 + Set gtmtypes("rc_rq_hdr",17,"name")="rc_rq_hdr.xdsid.dsid" + Set gtmtypes("rc_rq_hdr",17,"off")=10 + Set gtmtypes("rc_rq_hdr",17,"len")=2 + Set gtmtypes("rc_rq_hdr",17,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","xdsid.dsid")=17 + Set gtmtypes("rc_rq_hdr",18,"name")="rc_rq_hdr.xdsid.node" + Set gtmtypes("rc_rq_hdr",18,"off")=12 + Set gtmtypes("rc_rq_hdr",18,"len")=2 + Set gtmtypes("rc_rq_hdr",18,"type")="rc_word" + Set gtmtypfldindx("rc_rq_hdr","xdsid.node")=18 + ; + Set gtmtypes("rc_rsp_logn")="struct" + Set gtmtypes("rc_rsp_logn",0)=41 + Set gtmtypes("rc_rsp_logn","len")=250 + Set gtmtypes("rc_rsp_logn",1,"name")="rc_rsp_logn.hdr" + Set gtmtypes("rc_rsp_logn",1,"off")=0 + Set gtmtypes("rc_rsp_logn",1,"len")=14 + Set gtmtypes("rc_rsp_logn",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr")=1 + Set gtmtypes("rc_rsp_logn",2,"name")="rc_rsp_logn.hdr.r" + Set gtmtypes("rc_rsp_logn",2,"off")=0 + Set gtmtypes("rc_rsp_logn",2,"len")=14 + Set gtmtypes("rc_rsp_logn",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr.r")=2 + Set gtmtypes("rc_rsp_logn",3,"name")="rc_rsp_logn.hdr.r.len" + Set gtmtypes("rc_rsp_logn",3,"off")=0 + Set gtmtypes("rc_rsp_logn",3,"len")=2 + Set gtmtypes("rc_rsp_logn",3,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.len")=3 + Set gtmtypes("rc_rsp_logn",4,"name")="rc_rsp_logn.hdr.r.typ" + Set gtmtypes("rc_rsp_logn",4,"off")=2 + Set gtmtypes("rc_rsp_logn",4,"len")=2 + Set gtmtypes("rc_rsp_logn",4,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.typ")=4 + Set gtmtypes("rc_rsp_logn",5,"name")="rc_rsp_logn.hdr.r.fmd" + Set gtmtypes("rc_rsp_logn",5,"off")=4 + Set gtmtypes("rc_rsp_logn",5,"len")=2 + Set gtmtypes("rc_rsp_logn",5,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.fmd")=5 + Set gtmtypes("rc_rsp_logn",6,"name")="rc_rsp_logn.hdr.r.pid1" + Set gtmtypes("rc_rsp_logn",6,"off")=6 + Set gtmtypes("rc_rsp_logn",6,"len")=2 + Set gtmtypes("rc_rsp_logn",6,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.pid1")=6 + Set gtmtypes("rc_rsp_logn",7,"name")="rc_rsp_logn.hdr.r.pid2" + Set gtmtypes("rc_rsp_logn",7,"off")=8 + Set gtmtypes("rc_rsp_logn",7,"len")=2 + Set gtmtypes("rc_rsp_logn",7,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.pid2")=7 + Set gtmtypes("rc_rsp_logn",8,"name")="rc_rsp_logn.hdr.r.xdsid" + Set gtmtypes("rc_rsp_logn",8,"off")=10 + Set gtmtypes("rc_rsp_logn",8,"len")=4 + Set gtmtypes("rc_rsp_logn",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_logn","hdr.r.xdsid")=8 + Set gtmtypes("rc_rsp_logn",9,"name")="rc_rsp_logn.hdr.a" + Set gtmtypes("rc_rsp_logn",9,"off")=0 + Set gtmtypes("rc_rsp_logn",9,"len")=14 + Set gtmtypes("rc_rsp_logn",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_rsp_logn","hdr.a")=9 + Set gtmtypes("rc_rsp_logn",10,"name")="rc_rsp_logn.hdr.a.len" + Set gtmtypes("rc_rsp_logn",10,"off")=0 + Set gtmtypes("rc_rsp_logn",10,"len")=2 + Set gtmtypes("rc_rsp_logn",10,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len")=10 + Set gtmtypes("rc_rsp_logn",11,"name")="rc_rsp_logn.hdr.a.len.octet" + Set gtmtypes("rc_rsp_logn",11,"off")=0 + Set gtmtypes("rc_rsp_logn",11,"len")=2 + Set gtmtypes("rc_rsp_logn",11,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len.octet")=11 + Set gtmtypes("rc_rsp_logn",12,"name")="rc_rsp_logn.hdr.a.len.value" + Set gtmtypes("rc_rsp_logn",12,"off")=0 + Set gtmtypes("rc_rsp_logn",12,"len")=2 + Set gtmtypes("rc_rsp_logn",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.len.value")=12 + Set gtmtypes("rc_rsp_logn",13,"name")="rc_rsp_logn.hdr.a.typ" + Set gtmtypes("rc_rsp_logn",13,"off")=2 + Set gtmtypes("rc_rsp_logn",13,"len")=2 + Set gtmtypes("rc_rsp_logn",13,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ")=13 + Set gtmtypes("rc_rsp_logn",14,"name")="rc_rsp_logn.hdr.a.typ.octet" + Set gtmtypes("rc_rsp_logn",14,"off")=2 + Set gtmtypes("rc_rsp_logn",14,"len")=2 + Set gtmtypes("rc_rsp_logn",14,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ.octet")=14 + Set gtmtypes("rc_rsp_logn",15,"name")="rc_rsp_logn.hdr.a.typ.value" + Set gtmtypes("rc_rsp_logn",15,"off")=2 + Set gtmtypes("rc_rsp_logn",15,"len")=2 + Set gtmtypes("rc_rsp_logn",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.typ.value")=15 + Set gtmtypes("rc_rsp_logn",16,"name")="rc_rsp_logn.hdr.a.erc" + Set gtmtypes("rc_rsp_logn",16,"off")=4 + Set gtmtypes("rc_rsp_logn",16,"len")=2 + Set gtmtypes("rc_rsp_logn",16,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc")=16 + Set gtmtypes("rc_rsp_logn",17,"name")="rc_rsp_logn.hdr.a.erc.octet" + Set gtmtypes("rc_rsp_logn",17,"off")=4 + Set gtmtypes("rc_rsp_logn",17,"len")=2 + Set gtmtypes("rc_rsp_logn",17,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc.octet")=17 + Set gtmtypes("rc_rsp_logn",18,"name")="rc_rsp_logn.hdr.a.erc.value" + Set gtmtypes("rc_rsp_logn",18,"off")=4 + Set gtmtypes("rc_rsp_logn",18,"len")=2 + Set gtmtypes("rc_rsp_logn",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.erc.value")=18 + Set gtmtypes("rc_rsp_logn",19,"name")="rc_rsp_logn.hdr.a.pid1" + Set gtmtypes("rc_rsp_logn",19,"off")=6 + Set gtmtypes("rc_rsp_logn",19,"len")=2 + Set gtmtypes("rc_rsp_logn",19,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1")=19 + Set gtmtypes("rc_rsp_logn",20,"name")="rc_rsp_logn.hdr.a.pid1.octet" + Set gtmtypes("rc_rsp_logn",20,"off")=6 + Set gtmtypes("rc_rsp_logn",20,"len")=2 + Set gtmtypes("rc_rsp_logn",20,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_rsp_logn",21,"name")="rc_rsp_logn.hdr.a.pid1.value" + Set gtmtypes("rc_rsp_logn",21,"off")=6 + Set gtmtypes("rc_rsp_logn",21,"len")=2 + Set gtmtypes("rc_rsp_logn",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid1.value")=21 + Set gtmtypes("rc_rsp_logn",22,"name")="rc_rsp_logn.hdr.a.pid2" + Set gtmtypes("rc_rsp_logn",22,"off")=8 + Set gtmtypes("rc_rsp_logn",22,"len")=2 + Set gtmtypes("rc_rsp_logn",22,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2")=22 + Set gtmtypes("rc_rsp_logn",23,"name")="rc_rsp_logn.hdr.a.pid2.octet" + Set gtmtypes("rc_rsp_logn",23,"off")=8 + Set gtmtypes("rc_rsp_logn",23,"len")=2 + Set gtmtypes("rc_rsp_logn",23,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_rsp_logn",24,"name")="rc_rsp_logn.hdr.a.pid2.value" + Set gtmtypes("rc_rsp_logn",24,"off")=8 + Set gtmtypes("rc_rsp_logn",24,"len")=2 + Set gtmtypes("rc_rsp_logn",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.pid2.value")=24 + Set gtmtypes("rc_rsp_logn",25,"name")="rc_rsp_logn.hdr.a.xdsid" + Set gtmtypes("rc_rsp_logn",25,"off")=10 + Set gtmtypes("rc_rsp_logn",25,"len")=4 + Set gtmtypes("rc_rsp_logn",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid")=25 + Set gtmtypes("rc_rsp_logn",26,"name")="rc_rsp_logn.hdr.a.xdsid.dsid" + Set gtmtypes("rc_rsp_logn",26,"off")=10 + Set gtmtypes("rc_rsp_logn",26,"len")=2 + Set gtmtypes("rc_rsp_logn",26,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_rsp_logn",27,"name")="rc_rsp_logn.hdr.a.xdsid.node" + Set gtmtypes("rc_rsp_logn",27,"off")=12 + Set gtmtypes("rc_rsp_logn",27,"len")=2 + Set gtmtypes("rc_rsp_logn",27,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_rsp_logn",28,"name")="rc_rsp_logn.version" + Set gtmtypes("rc_rsp_logn",28,"off")=14 + Set gtmtypes("rc_rsp_logn",28,"len")=2 + Set gtmtypes("rc_rsp_logn",28,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","version")=28 + Set gtmtypes("rc_rsp_logn",29,"name")="rc_rsp_logn.version.octet" + Set gtmtypes("rc_rsp_logn",29,"off")=14 + Set gtmtypes("rc_rsp_logn",29,"len")=2 + Set gtmtypes("rc_rsp_logn",29,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","version.octet")=29 + Set gtmtypes("rc_rsp_logn",30,"name")="rc_rsp_logn.version.value" + Set gtmtypes("rc_rsp_logn",30,"off")=14 + Set gtmtypes("rc_rsp_logn",30,"len")=2 + Set gtmtypes("rc_rsp_logn",30,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","version.value")=30 + Set gtmtypes("rc_rsp_logn",31,"name")="rc_rsp_logn.method" + Set gtmtypes("rc_rsp_logn",31,"off")=16 + Set gtmtypes("rc_rsp_logn",31,"len")=2 + Set gtmtypes("rc_rsp_logn",31,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","method")=31 + Set gtmtypes("rc_rsp_logn",32,"name")="rc_rsp_logn.method.octet" + Set gtmtypes("rc_rsp_logn",32,"off")=16 + Set gtmtypes("rc_rsp_logn",32,"len")=2 + Set gtmtypes("rc_rsp_logn",32,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","method.octet")=32 + Set gtmtypes("rc_rsp_logn",33,"name")="rc_rsp_logn.method.value" + Set gtmtypes("rc_rsp_logn",33,"off")=16 + Set gtmtypes("rc_rsp_logn",33,"len")=2 + Set gtmtypes("rc_rsp_logn",33,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","method.value")=33 + Set gtmtypes("rc_rsp_logn",34,"name")="rc_rsp_logn.session" + Set gtmtypes("rc_rsp_logn",34,"off")=18 + Set gtmtypes("rc_rsp_logn",34,"len")=2 + Set gtmtypes("rc_rsp_logn",34,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","session")=34 + Set gtmtypes("rc_rsp_logn",35,"name")="rc_rsp_logn.session.octet" + Set gtmtypes("rc_rsp_logn",35,"off")=18 + Set gtmtypes("rc_rsp_logn",35,"len")=2 + Set gtmtypes("rc_rsp_logn",35,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","session.octet")=35 + Set gtmtypes("rc_rsp_logn",36,"name")="rc_rsp_logn.session.value" + Set gtmtypes("rc_rsp_logn",36,"off")=18 + Set gtmtypes("rc_rsp_logn",36,"len")=2 + Set gtmtypes("rc_rsp_logn",36,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","session.value")=36 + Set gtmtypes("rc_rsp_logn",37,"name")="rc_rsp_logn.date" + Set gtmtypes("rc_rsp_logn",37,"off")=20 + Set gtmtypes("rc_rsp_logn",37,"len")=2 + Set gtmtypes("rc_rsp_logn",37,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_logn","date")=37 + Set gtmtypes("rc_rsp_logn",38,"name")="rc_rsp_logn.date.octet" + Set gtmtypes("rc_rsp_logn",38,"off")=20 + Set gtmtypes("rc_rsp_logn",38,"len")=2 + Set gtmtypes("rc_rsp_logn",38,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","date.octet")=38 + Set gtmtypes("rc_rsp_logn",39,"name")="rc_rsp_logn.date.value" + Set gtmtypes("rc_rsp_logn",39,"off")=20 + Set gtmtypes("rc_rsp_logn",39,"len")=2 + Set gtmtypes("rc_rsp_logn",39,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_logn","date.value")=39 + Set gtmtypes("rc_rsp_logn",40,"name")="rc_rsp_logn.time" + Set gtmtypes("rc_rsp_logn",40,"off")=22 + Set gtmtypes("rc_rsp_logn",40,"len")=4 + Set gtmtypes("rc_rsp_logn",40,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","time")=40 + Set gtmtypes("rc_rsp_logn",41,"name")="rc_rsp_logn.license_blk" + Set gtmtypes("rc_rsp_logn",41,"off")=26 + Set gtmtypes("rc_rsp_logn",41,"len")=224 + Set gtmtypes("rc_rsp_logn",41,"type")="char" + Set gtmtypfldindx("rc_rsp_logn","license_blk")=41 + ; + Set gtmtypes("rc_rsp_page")="struct" + Set gtmtypes("rc_rsp_page",0)=53 + Set gtmtypes("rc_rsp_page","len")=34 + Set gtmtypes("rc_rsp_page",1,"name")="rc_rsp_page.hdr" + Set gtmtypes("rc_rsp_page",1,"off")=0 + Set gtmtypes("rc_rsp_page",1,"len")=14 + Set gtmtypes("rc_rsp_page",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr")=1 + Set gtmtypes("rc_rsp_page",2,"name")="rc_rsp_page.hdr.r" + Set gtmtypes("rc_rsp_page",2,"off")=0 + Set gtmtypes("rc_rsp_page",2,"len")=14 + Set gtmtypes("rc_rsp_page",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr.r")=2 + Set gtmtypes("rc_rsp_page",3,"name")="rc_rsp_page.hdr.r.len" + Set gtmtypes("rc_rsp_page",3,"off")=0 + Set gtmtypes("rc_rsp_page",3,"len")=2 + Set gtmtypes("rc_rsp_page",3,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.len")=3 + Set gtmtypes("rc_rsp_page",4,"name")="rc_rsp_page.hdr.r.typ" + Set gtmtypes("rc_rsp_page",4,"off")=2 + Set gtmtypes("rc_rsp_page",4,"len")=2 + Set gtmtypes("rc_rsp_page",4,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.typ")=4 + Set gtmtypes("rc_rsp_page",5,"name")="rc_rsp_page.hdr.r.fmd" + Set gtmtypes("rc_rsp_page",5,"off")=4 + Set gtmtypes("rc_rsp_page",5,"len")=2 + Set gtmtypes("rc_rsp_page",5,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.fmd")=5 + Set gtmtypes("rc_rsp_page",6,"name")="rc_rsp_page.hdr.r.pid1" + Set gtmtypes("rc_rsp_page",6,"off")=6 + Set gtmtypes("rc_rsp_page",6,"len")=2 + Set gtmtypes("rc_rsp_page",6,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.pid1")=6 + Set gtmtypes("rc_rsp_page",7,"name")="rc_rsp_page.hdr.r.pid2" + Set gtmtypes("rc_rsp_page",7,"off")=8 + Set gtmtypes("rc_rsp_page",7,"len")=2 + Set gtmtypes("rc_rsp_page",7,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.r.pid2")=7 + Set gtmtypes("rc_rsp_page",8,"name")="rc_rsp_page.hdr.r.xdsid" + Set gtmtypes("rc_rsp_page",8,"off")=10 + Set gtmtypes("rc_rsp_page",8,"len")=4 + Set gtmtypes("rc_rsp_page",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_page","hdr.r.xdsid")=8 + Set gtmtypes("rc_rsp_page",9,"name")="rc_rsp_page.hdr.a" + Set gtmtypes("rc_rsp_page",9,"off")=0 + Set gtmtypes("rc_rsp_page",9,"len")=14 + Set gtmtypes("rc_rsp_page",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_rsp_page","hdr.a")=9 + Set gtmtypes("rc_rsp_page",10,"name")="rc_rsp_page.hdr.a.len" + Set gtmtypes("rc_rsp_page",10,"off")=0 + Set gtmtypes("rc_rsp_page",10,"len")=2 + Set gtmtypes("rc_rsp_page",10,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len")=10 + Set gtmtypes("rc_rsp_page",11,"name")="rc_rsp_page.hdr.a.len.octet" + Set gtmtypes("rc_rsp_page",11,"off")=0 + Set gtmtypes("rc_rsp_page",11,"len")=2 + Set gtmtypes("rc_rsp_page",11,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len.octet")=11 + Set gtmtypes("rc_rsp_page",12,"name")="rc_rsp_page.hdr.a.len.value" + Set gtmtypes("rc_rsp_page",12,"off")=0 + Set gtmtypes("rc_rsp_page",12,"len")=2 + Set gtmtypes("rc_rsp_page",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.len.value")=12 + Set gtmtypes("rc_rsp_page",13,"name")="rc_rsp_page.hdr.a.typ" + Set gtmtypes("rc_rsp_page",13,"off")=2 + Set gtmtypes("rc_rsp_page",13,"len")=2 + Set gtmtypes("rc_rsp_page",13,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ")=13 + Set gtmtypes("rc_rsp_page",14,"name")="rc_rsp_page.hdr.a.typ.octet" + Set gtmtypes("rc_rsp_page",14,"off")=2 + Set gtmtypes("rc_rsp_page",14,"len")=2 + Set gtmtypes("rc_rsp_page",14,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ.octet")=14 + Set gtmtypes("rc_rsp_page",15,"name")="rc_rsp_page.hdr.a.typ.value" + Set gtmtypes("rc_rsp_page",15,"off")=2 + Set gtmtypes("rc_rsp_page",15,"len")=2 + Set gtmtypes("rc_rsp_page",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.typ.value")=15 + Set gtmtypes("rc_rsp_page",16,"name")="rc_rsp_page.hdr.a.erc" + Set gtmtypes("rc_rsp_page",16,"off")=4 + Set gtmtypes("rc_rsp_page",16,"len")=2 + Set gtmtypes("rc_rsp_page",16,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc")=16 + Set gtmtypes("rc_rsp_page",17,"name")="rc_rsp_page.hdr.a.erc.octet" + Set gtmtypes("rc_rsp_page",17,"off")=4 + Set gtmtypes("rc_rsp_page",17,"len")=2 + Set gtmtypes("rc_rsp_page",17,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc.octet")=17 + Set gtmtypes("rc_rsp_page",18,"name")="rc_rsp_page.hdr.a.erc.value" + Set gtmtypes("rc_rsp_page",18,"off")=4 + Set gtmtypes("rc_rsp_page",18,"len")=2 + Set gtmtypes("rc_rsp_page",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.erc.value")=18 + Set gtmtypes("rc_rsp_page",19,"name")="rc_rsp_page.hdr.a.pid1" + Set gtmtypes("rc_rsp_page",19,"off")=6 + Set gtmtypes("rc_rsp_page",19,"len")=2 + Set gtmtypes("rc_rsp_page",19,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1")=19 + Set gtmtypes("rc_rsp_page",20,"name")="rc_rsp_page.hdr.a.pid1.octet" + Set gtmtypes("rc_rsp_page",20,"off")=6 + Set gtmtypes("rc_rsp_page",20,"len")=2 + Set gtmtypes("rc_rsp_page",20,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_rsp_page",21,"name")="rc_rsp_page.hdr.a.pid1.value" + Set gtmtypes("rc_rsp_page",21,"off")=6 + Set gtmtypes("rc_rsp_page",21,"len")=2 + Set gtmtypes("rc_rsp_page",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid1.value")=21 + Set gtmtypes("rc_rsp_page",22,"name")="rc_rsp_page.hdr.a.pid2" + Set gtmtypes("rc_rsp_page",22,"off")=8 + Set gtmtypes("rc_rsp_page",22,"len")=2 + Set gtmtypes("rc_rsp_page",22,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2")=22 + Set gtmtypes("rc_rsp_page",23,"name")="rc_rsp_page.hdr.a.pid2.octet" + Set gtmtypes("rc_rsp_page",23,"off")=8 + Set gtmtypes("rc_rsp_page",23,"len")=2 + Set gtmtypes("rc_rsp_page",23,"type")="char" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_rsp_page",24,"name")="rc_rsp_page.hdr.a.pid2.value" + Set gtmtypes("rc_rsp_page",24,"off")=8 + Set gtmtypes("rc_rsp_page",24,"len")=2 + Set gtmtypes("rc_rsp_page",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","hdr.a.pid2.value")=24 + Set gtmtypes("rc_rsp_page",25,"name")="rc_rsp_page.hdr.a.xdsid" + Set gtmtypes("rc_rsp_page",25,"off")=10 + Set gtmtypes("rc_rsp_page",25,"len")=4 + Set gtmtypes("rc_rsp_page",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid")=25 + Set gtmtypes("rc_rsp_page",26,"name")="rc_rsp_page.hdr.a.xdsid.dsid" + Set gtmtypes("rc_rsp_page",26,"off")=10 + Set gtmtypes("rc_rsp_page",26,"len")=2 + Set gtmtypes("rc_rsp_page",26,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_rsp_page",27,"name")="rc_rsp_page.hdr.a.xdsid.node" + Set gtmtypes("rc_rsp_page",27,"off")=12 + Set gtmtypes("rc_rsp_page",27,"len")=2 + Set gtmtypes("rc_rsp_page",27,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_rsp_page",28,"name")="rc_rsp_page.pageaddr" + Set gtmtypes("rc_rsp_page",28,"off")=14 + Set gtmtypes("rc_rsp_page",28,"len")=4 + Set gtmtypes("rc_rsp_page",28,"type")="char" + Set gtmtypfldindx("rc_rsp_page","pageaddr")=28 + Set gtmtypes("rc_rsp_page",29,"name")="rc_rsp_page.frag_offset" + Set gtmtypes("rc_rsp_page",29,"off")=18 + Set gtmtypes("rc_rsp_page",29,"len")=2 + Set gtmtypes("rc_rsp_page",29,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","frag_offset")=29 + Set gtmtypes("rc_rsp_page",30,"name")="rc_rsp_page.frag_offset.octet" + Set gtmtypes("rc_rsp_page",30,"off")=18 + Set gtmtypes("rc_rsp_page",30,"len")=2 + Set gtmtypes("rc_rsp_page",30,"type")="char" + Set gtmtypfldindx("rc_rsp_page","frag_offset.octet")=30 + Set gtmtypes("rc_rsp_page",31,"name")="rc_rsp_page.frag_offset.value" + Set gtmtypes("rc_rsp_page",31,"off")=18 + Set gtmtypes("rc_rsp_page",31,"len")=2 + Set gtmtypes("rc_rsp_page",31,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","frag_offset.value")=31 + Set gtmtypes("rc_rsp_page",32,"name")="rc_rsp_page.size_return" + Set gtmtypes("rc_rsp_page",32,"off")=20 + Set gtmtypes("rc_rsp_page",32,"len")=2 + Set gtmtypes("rc_rsp_page",32,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","size_return")=32 + Set gtmtypes("rc_rsp_page",33,"name")="rc_rsp_page.size_return.octet" + Set gtmtypes("rc_rsp_page",33,"off")=20 + Set gtmtypes("rc_rsp_page",33,"len")=2 + Set gtmtypes("rc_rsp_page",33,"type")="char" + Set gtmtypfldindx("rc_rsp_page","size_return.octet")=33 + Set gtmtypes("rc_rsp_page",34,"name")="rc_rsp_page.size_return.value" + Set gtmtypes("rc_rsp_page",34,"off")=20 + Set gtmtypes("rc_rsp_page",34,"len")=2 + Set gtmtypes("rc_rsp_page",34,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","size_return.value")=34 + Set gtmtypes("rc_rsp_page",35,"name")="rc_rsp_page.size_remain" + Set gtmtypes("rc_rsp_page",35,"off")=22 + Set gtmtypes("rc_rsp_page",35,"len")=2 + Set gtmtypes("rc_rsp_page",35,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","size_remain")=35 + Set gtmtypes("rc_rsp_page",36,"name")="rc_rsp_page.size_remain.octet" + Set gtmtypes("rc_rsp_page",36,"off")=22 + Set gtmtypes("rc_rsp_page",36,"len")=2 + Set gtmtypes("rc_rsp_page",36,"type")="char" + Set gtmtypfldindx("rc_rsp_page","size_remain.octet")=36 + Set gtmtypes("rc_rsp_page",37,"name")="rc_rsp_page.size_remain.value" + Set gtmtypes("rc_rsp_page",37,"off")=22 + Set gtmtypes("rc_rsp_page",37,"len")=2 + Set gtmtypes("rc_rsp_page",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","size_remain.value")=37 + Set gtmtypes("rc_rsp_page",38,"name")="rc_rsp_page.before" + Set gtmtypes("rc_rsp_page",38,"off")=24 + Set gtmtypes("rc_rsp_page",38,"len")=2 + Set gtmtypes("rc_rsp_page",38,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","before")=38 + Set gtmtypes("rc_rsp_page",39,"name")="rc_rsp_page.before.octet" + Set gtmtypes("rc_rsp_page",39,"off")=24 + Set gtmtypes("rc_rsp_page",39,"len")=2 + Set gtmtypes("rc_rsp_page",39,"type")="char" + Set gtmtypfldindx("rc_rsp_page","before.octet")=39 + Set gtmtypes("rc_rsp_page",40,"name")="rc_rsp_page.before.value" + Set gtmtypes("rc_rsp_page",40,"off")=24 + Set gtmtypes("rc_rsp_page",40,"len")=2 + Set gtmtypes("rc_rsp_page",40,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","before.value")=40 + Set gtmtypes("rc_rsp_page",41,"name")="rc_rsp_page.after" + Set gtmtypes("rc_rsp_page",41,"off")=26 + Set gtmtypes("rc_rsp_page",41,"len")=2 + Set gtmtypes("rc_rsp_page",41,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","after")=41 + Set gtmtypes("rc_rsp_page",42,"name")="rc_rsp_page.after.octet" + Set gtmtypes("rc_rsp_page",42,"off")=26 + Set gtmtypes("rc_rsp_page",42,"len")=2 + Set gtmtypes("rc_rsp_page",42,"type")="char" + Set gtmtypfldindx("rc_rsp_page","after.octet")=42 + Set gtmtypes("rc_rsp_page",43,"name")="rc_rsp_page.after.value" + Set gtmtypes("rc_rsp_page",43,"off")=26 + Set gtmtypes("rc_rsp_page",43,"len")=2 + Set gtmtypes("rc_rsp_page",43,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","after.value")=43 + Set gtmtypes("rc_rsp_page",44,"name")="rc_rsp_page.xcc" + Set gtmtypes("rc_rsp_page",44,"off")=28 + Set gtmtypes("rc_rsp_page",44,"len")=2 + Set gtmtypes("rc_rsp_page",44,"type")="rc_word" + Set gtmtypfldindx("rc_rsp_page","xcc")=44 + Set gtmtypes("rc_rsp_page",45,"name")="rc_rsp_page.xcc.octet" + Set gtmtypes("rc_rsp_page",45,"off")=28 + Set gtmtypes("rc_rsp_page",45,"len")=2 + Set gtmtypes("rc_rsp_page",45,"type")="char" + Set gtmtypfldindx("rc_rsp_page","xcc.octet")=45 + Set gtmtypes("rc_rsp_page",46,"name")="rc_rsp_page.xcc.value" + Set gtmtypes("rc_rsp_page",46,"off")=28 + Set gtmtypes("rc_rsp_page",46,"len")=2 + Set gtmtypes("rc_rsp_page",46,"type")="unsigned-short" + Set gtmtypfldindx("rc_rsp_page","xcc.value")=46 + Set gtmtypes("rc_rsp_page",47,"name")="rc_rsp_page.rstatus" + Set gtmtypes("rc_rsp_page",47,"off")=30 + Set gtmtypes("rc_rsp_page",47,"len")=1 + Set gtmtypes("rc_rsp_page",47,"type")="rc_byte" + Set gtmtypfldindx("rc_rsp_page","rstatus")=47 + Set gtmtypes("rc_rsp_page",48,"name")="rc_rsp_page.rstatus.octet" + Set gtmtypes("rc_rsp_page",48,"off")=30 + Set gtmtypes("rc_rsp_page",48,"len")=1 + Set gtmtypes("rc_rsp_page",48,"type")="char" + Set gtmtypfldindx("rc_rsp_page","rstatus.octet")=48 + Set gtmtypes("rc_rsp_page",49,"name")="rc_rsp_page.rstatus.value" + Set gtmtypes("rc_rsp_page",49,"off")=30 + Set gtmtypes("rc_rsp_page",49,"len")=1 + Set gtmtypes("rc_rsp_page",49,"type")="unsigned-char" + Set gtmtypfldindx("rc_rsp_page","rstatus.value")=49 + Set gtmtypes("rc_rsp_page",50,"name")="rc_rsp_page.zcode" + Set gtmtypes("rc_rsp_page",50,"off")=31 + Set gtmtypes("rc_rsp_page",50,"len")=1 + Set gtmtypes("rc_rsp_page",50,"type")="rc_byte" + Set gtmtypfldindx("rc_rsp_page","zcode")=50 + Set gtmtypes("rc_rsp_page",51,"name")="rc_rsp_page.zcode.octet" + Set gtmtypes("rc_rsp_page",51,"off")=31 + Set gtmtypes("rc_rsp_page",51,"len")=1 + Set gtmtypes("rc_rsp_page",51,"type")="char" + Set gtmtypfldindx("rc_rsp_page","zcode.octet")=51 + Set gtmtypes("rc_rsp_page",52,"name")="rc_rsp_page.zcode.value" + Set gtmtypes("rc_rsp_page",52,"off")=31 + Set gtmtypes("rc_rsp_page",52,"len")=1 + Set gtmtypes("rc_rsp_page",52,"type")="unsigned-char" + Set gtmtypfldindx("rc_rsp_page","zcode.value")=52 + Set gtmtypes("rc_rsp_page",53,"name")="rc_rsp_page.page" + Set gtmtypes("rc_rsp_page",53,"off")=32 + Set gtmtypes("rc_rsp_page",53,"len")=1 + Set gtmtypes("rc_rsp_page",53,"type")="char" + Set gtmtypfldindx("rc_rsp_page","page")=53 + ; + Set gtmtypes("rc_sbkey")="struct" + Set gtmtypes("rc_sbkey",0)=4 + Set gtmtypes("rc_sbkey","len")=2 + Set gtmtypes("rc_sbkey",1,"name")="rc_sbkey.len" + Set gtmtypes("rc_sbkey",1,"off")=0 + Set gtmtypes("rc_sbkey",1,"len")=1 + Set gtmtypes("rc_sbkey",1,"type")="rc_byte" + Set gtmtypfldindx("rc_sbkey","len")=1 + Set gtmtypes("rc_sbkey",2,"name")="rc_sbkey.len.octet" + Set gtmtypes("rc_sbkey",2,"off")=0 + Set gtmtypes("rc_sbkey",2,"len")=1 + Set gtmtypes("rc_sbkey",2,"type")="char" + Set gtmtypfldindx("rc_sbkey","len.octet")=2 + Set gtmtypes("rc_sbkey",3,"name")="rc_sbkey.len.value" + Set gtmtypes("rc_sbkey",3,"off")=0 + Set gtmtypes("rc_sbkey",3,"len")=1 + Set gtmtypes("rc_sbkey",3,"type")="unsigned-char" + Set gtmtypfldindx("rc_sbkey","len.value")=3 + Set gtmtypes("rc_sbkey",4,"name")="rc_sbkey.key" + Set gtmtypes("rc_sbkey",4,"off")=1 + Set gtmtypes("rc_sbkey",4,"len")=1 + Set gtmtypes("rc_sbkey",4,"type")="char" + Set gtmtypfldindx("rc_sbkey","key")=4 + ; + Set gtmtypes("rc_set")="struct" + Set gtmtypes("rc_set",0)=34 + Set gtmtypes("rc_set","len")=20 + Set gtmtypes("rc_set",1,"name")="rc_set.hdr" + Set gtmtypes("rc_set",1,"off")=0 + Set gtmtypes("rc_set",1,"len")=14 + Set gtmtypes("rc_set",1,"type")="rc_q_hdr" + Set gtmtypfldindx("rc_set","hdr")=1 + Set gtmtypes("rc_set",2,"name")="rc_set.hdr.r" + Set gtmtypes("rc_set",2,"off")=0 + Set gtmtypes("rc_set",2,"len")=14 + Set gtmtypes("rc_set",2,"type")="rc_rq_hdr" + Set gtmtypfldindx("rc_set","hdr.r")=2 + Set gtmtypes("rc_set",3,"name")="rc_set.hdr.r.len" + Set gtmtypes("rc_set",3,"off")=0 + Set gtmtypes("rc_set",3,"len")=2 + Set gtmtypes("rc_set",3,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.len")=3 + Set gtmtypes("rc_set",4,"name")="rc_set.hdr.r.typ" + Set gtmtypes("rc_set",4,"off")=2 + Set gtmtypes("rc_set",4,"len")=2 + Set gtmtypes("rc_set",4,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.typ")=4 + Set gtmtypes("rc_set",5,"name")="rc_set.hdr.r.fmd" + Set gtmtypes("rc_set",5,"off")=4 + Set gtmtypes("rc_set",5,"len")=2 + Set gtmtypes("rc_set",5,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.fmd")=5 + Set gtmtypes("rc_set",6,"name")="rc_set.hdr.r.pid1" + Set gtmtypes("rc_set",6,"off")=6 + Set gtmtypes("rc_set",6,"len")=2 + Set gtmtypes("rc_set",6,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.pid1")=6 + Set gtmtypes("rc_set",7,"name")="rc_set.hdr.r.pid2" + Set gtmtypes("rc_set",7,"off")=8 + Set gtmtypes("rc_set",7,"len")=2 + Set gtmtypes("rc_set",7,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.r.pid2")=7 + Set gtmtypes("rc_set",8,"name")="rc_set.hdr.r.xdsid" + Set gtmtypes("rc_set",8,"off")=10 + Set gtmtypes("rc_set",8,"len")=4 + Set gtmtypes("rc_set",8,"type")="rc_xdsid" + Set gtmtypfldindx("rc_set","hdr.r.xdsid")=8 + Set gtmtypes("rc_set",9,"name")="rc_set.hdr.a" + Set gtmtypes("rc_set",9,"off")=0 + Set gtmtypes("rc_set",9,"len")=14 + Set gtmtypes("rc_set",9,"type")="rc_aq_hdr" + Set gtmtypfldindx("rc_set","hdr.a")=9 + Set gtmtypes("rc_set",10,"name")="rc_set.hdr.a.len" + Set gtmtypes("rc_set",10,"off")=0 + Set gtmtypes("rc_set",10,"len")=2 + Set gtmtypes("rc_set",10,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.len")=10 + Set gtmtypes("rc_set",11,"name")="rc_set.hdr.a.len.octet" + Set gtmtypes("rc_set",11,"off")=0 + Set gtmtypes("rc_set",11,"len")=2 + Set gtmtypes("rc_set",11,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.len.octet")=11 + Set gtmtypes("rc_set",12,"name")="rc_set.hdr.a.len.value" + Set gtmtypes("rc_set",12,"off")=0 + Set gtmtypes("rc_set",12,"len")=2 + Set gtmtypes("rc_set",12,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.len.value")=12 + Set gtmtypes("rc_set",13,"name")="rc_set.hdr.a.typ" + Set gtmtypes("rc_set",13,"off")=2 + Set gtmtypes("rc_set",13,"len")=2 + Set gtmtypes("rc_set",13,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.typ")=13 + Set gtmtypes("rc_set",14,"name")="rc_set.hdr.a.typ.octet" + Set gtmtypes("rc_set",14,"off")=2 + Set gtmtypes("rc_set",14,"len")=2 + Set gtmtypes("rc_set",14,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.typ.octet")=14 + Set gtmtypes("rc_set",15,"name")="rc_set.hdr.a.typ.value" + Set gtmtypes("rc_set",15,"off")=2 + Set gtmtypes("rc_set",15,"len")=2 + Set gtmtypes("rc_set",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.typ.value")=15 + Set gtmtypes("rc_set",16,"name")="rc_set.hdr.a.erc" + Set gtmtypes("rc_set",16,"off")=4 + Set gtmtypes("rc_set",16,"len")=2 + Set gtmtypes("rc_set",16,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.erc")=16 + Set gtmtypes("rc_set",17,"name")="rc_set.hdr.a.erc.octet" + Set gtmtypes("rc_set",17,"off")=4 + Set gtmtypes("rc_set",17,"len")=2 + Set gtmtypes("rc_set",17,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.erc.octet")=17 + Set gtmtypes("rc_set",18,"name")="rc_set.hdr.a.erc.value" + Set gtmtypes("rc_set",18,"off")=4 + Set gtmtypes("rc_set",18,"len")=2 + Set gtmtypes("rc_set",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.erc.value")=18 + Set gtmtypes("rc_set",19,"name")="rc_set.hdr.a.pid1" + Set gtmtypes("rc_set",19,"off")=6 + Set gtmtypes("rc_set",19,"len")=2 + Set gtmtypes("rc_set",19,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.pid1")=19 + Set gtmtypes("rc_set",20,"name")="rc_set.hdr.a.pid1.octet" + Set gtmtypes("rc_set",20,"off")=6 + Set gtmtypes("rc_set",20,"len")=2 + Set gtmtypes("rc_set",20,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.pid1.octet")=20 + Set gtmtypes("rc_set",21,"name")="rc_set.hdr.a.pid1.value" + Set gtmtypes("rc_set",21,"off")=6 + Set gtmtypes("rc_set",21,"len")=2 + Set gtmtypes("rc_set",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.pid1.value")=21 + Set gtmtypes("rc_set",22,"name")="rc_set.hdr.a.pid2" + Set gtmtypes("rc_set",22,"off")=8 + Set gtmtypes("rc_set",22,"len")=2 + Set gtmtypes("rc_set",22,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.pid2")=22 + Set gtmtypes("rc_set",23,"name")="rc_set.hdr.a.pid2.octet" + Set gtmtypes("rc_set",23,"off")=8 + Set gtmtypes("rc_set",23,"len")=2 + Set gtmtypes("rc_set",23,"type")="char" + Set gtmtypfldindx("rc_set","hdr.a.pid2.octet")=23 + Set gtmtypes("rc_set",24,"name")="rc_set.hdr.a.pid2.value" + Set gtmtypes("rc_set",24,"off")=8 + Set gtmtypes("rc_set",24,"len")=2 + Set gtmtypes("rc_set",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_set","hdr.a.pid2.value")=24 + Set gtmtypes("rc_set",25,"name")="rc_set.hdr.a.xdsid" + Set gtmtypes("rc_set",25,"off")=10 + Set gtmtypes("rc_set",25,"len")=4 + Set gtmtypes("rc_set",25,"type")="rc_xdsid" + Set gtmtypfldindx("rc_set","hdr.a.xdsid")=25 + Set gtmtypes("rc_set",26,"name")="rc_set.hdr.a.xdsid.dsid" + Set gtmtypes("rc_set",26,"off")=10 + Set gtmtypes("rc_set",26,"len")=2 + Set gtmtypes("rc_set",26,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.xdsid.dsid")=26 + Set gtmtypes("rc_set",27,"name")="rc_set.hdr.a.xdsid.node" + Set gtmtypes("rc_set",27,"off")=12 + Set gtmtypes("rc_set",27,"len")=2 + Set gtmtypes("rc_set",27,"type")="rc_word" + Set gtmtypfldindx("rc_set","hdr.a.xdsid.node")=27 + Set gtmtypes("rc_set",28,"name")="rc_set.xnsid" + Set gtmtypes("rc_set",28,"off")=14 + Set gtmtypes("rc_set",28,"len")=4 + Set gtmtypes("rc_set",28,"type")="rc_xnsid" + Set gtmtypfldindx("rc_set","xnsid")=28 + Set gtmtypes("rc_set",29,"name")="rc_set.xnsid.value" + Set gtmtypes("rc_set",29,"off")=14 + Set gtmtypes("rc_set",29,"len")=4 + Set gtmtypes("rc_set",29,"type")="char" + Set gtmtypfldindx("rc_set","xnsid.value")=29 + Set gtmtypes("rc_set",30,"name")="rc_set.key" + Set gtmtypes("rc_set",30,"off")=18 + Set gtmtypes("rc_set",30,"len")=2 + Set gtmtypes("rc_set",30,"type")="rc_sbkey" + Set gtmtypfldindx("rc_set","key")=30 + Set gtmtypes("rc_set",31,"name")="rc_set.key.len" + Set gtmtypes("rc_set",31,"off")=18 + Set gtmtypes("rc_set",31,"len")=1 + Set gtmtypes("rc_set",31,"type")="rc_byte" + Set gtmtypfldindx("rc_set","key.len")=31 + Set gtmtypes("rc_set",32,"name")="rc_set.key.len.octet" + Set gtmtypes("rc_set",32,"off")=18 + Set gtmtypes("rc_set",32,"len")=1 + Set gtmtypes("rc_set",32,"type")="char" + Set gtmtypfldindx("rc_set","key.len.octet")=32 + Set gtmtypes("rc_set",33,"name")="rc_set.key.len.value" + Set gtmtypes("rc_set",33,"off")=18 + Set gtmtypes("rc_set",33,"len")=1 + Set gtmtypes("rc_set",33,"type")="unsigned-char" + Set gtmtypfldindx("rc_set","key.len.value")=33 + Set gtmtypes("rc_set",34,"name")="rc_set.key.key" + Set gtmtypes("rc_set",34,"off")=19 + Set gtmtypes("rc_set",34,"len")=1 + Set gtmtypes("rc_set",34,"type")="char" + Set gtmtypfldindx("rc_set","key.key")=34 + ; + Set gtmtypes("rc_swstr")="struct" + Set gtmtypes("rc_swstr",0)=4 + Set gtmtypes("rc_swstr","len")=4 + Set gtmtypes("rc_swstr",1,"name")="rc_swstr.len" + Set gtmtypes("rc_swstr",1,"off")=0 + Set gtmtypes("rc_swstr",1,"len")=2 + Set gtmtypes("rc_swstr",1,"type")="rc_word" + Set gtmtypfldindx("rc_swstr","len")=1 + Set gtmtypes("rc_swstr",2,"name")="rc_swstr.len.octet" + Set gtmtypes("rc_swstr",2,"off")=0 + Set gtmtypes("rc_swstr",2,"len")=2 + Set gtmtypes("rc_swstr",2,"type")="char" + Set gtmtypfldindx("rc_swstr","len.octet")=2 + Set gtmtypes("rc_swstr",3,"name")="rc_swstr.len.value" + Set gtmtypes("rc_swstr",3,"off")=0 + Set gtmtypes("rc_swstr",3,"len")=2 + Set gtmtypes("rc_swstr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_swstr","len.value")=3 + Set gtmtypes("rc_swstr",4,"name")="rc_swstr.str" + Set gtmtypes("rc_swstr",4,"off")=2 + Set gtmtypes("rc_swstr",4,"len")=1 + Set gtmtypes("rc_swstr",4,"type")="char" + Set gtmtypfldindx("rc_swstr","str")=4 + ; + Set gtmtypes("rc_word")="union" + Set gtmtypes("rc_word",0)=2 + Set gtmtypes("rc_word","len")=2 + Set gtmtypes("rc_word",1,"name")="rc_word.octet" + Set gtmtypes("rc_word",1,"off")=0 + Set gtmtypes("rc_word",1,"len")=2 + Set gtmtypes("rc_word",1,"type")="char" + Set gtmtypfldindx("rc_word","octet")=1 + Set gtmtypes("rc_word",2,"name")="rc_word.value" + Set gtmtypes("rc_word",2,"off")=0 + Set gtmtypes("rc_word",2,"len")=2 + Set gtmtypes("rc_word",2,"type")="unsigned-short" + Set gtmtypfldindx("rc_word","value")=2 + ; + Set gtmtypes("rc_xblk_hdr")="struct" + Set gtmtypes("rc_xblk_hdr",0)=45 + Set gtmtypes("rc_xblk_hdr","len")=64 + Set gtmtypes("rc_xblk_hdr",1,"name")="rc_xblk_hdr.end" + Set gtmtypes("rc_xblk_hdr",1,"off")=0 + Set gtmtypes("rc_xblk_hdr",1,"len")=2 + Set gtmtypes("rc_xblk_hdr",1,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","end")=1 + Set gtmtypes("rc_xblk_hdr",2,"name")="rc_xblk_hdr.end.octet" + Set gtmtypes("rc_xblk_hdr",2,"off")=0 + Set gtmtypes("rc_xblk_hdr",2,"len")=2 + Set gtmtypes("rc_xblk_hdr",2,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","end.octet")=2 + Set gtmtypes("rc_xblk_hdr",3,"name")="rc_xblk_hdr.end.value" + Set gtmtypes("rc_xblk_hdr",3,"off")=0 + Set gtmtypes("rc_xblk_hdr",3,"len")=2 + Set gtmtypes("rc_xblk_hdr",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","end.value")=3 + Set gtmtypes("rc_xblk_hdr",4,"name")="rc_xblk_hdr.gtm_free" + Set gtmtypes("rc_xblk_hdr",4,"off")=2 + Set gtmtypes("rc_xblk_hdr",4,"len")=2 + Set gtmtypes("rc_xblk_hdr",4,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free")=4 + Set gtmtypes("rc_xblk_hdr",5,"name")="rc_xblk_hdr.gtm_free.octet" + Set gtmtypes("rc_xblk_hdr",5,"off")=2 + Set gtmtypes("rc_xblk_hdr",5,"len")=2 + Set gtmtypes("rc_xblk_hdr",5,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free.octet")=5 + Set gtmtypes("rc_xblk_hdr",6,"name")="rc_xblk_hdr.gtm_free.value" + Set gtmtypes("rc_xblk_hdr",6,"off")=2 + Set gtmtypes("rc_xblk_hdr",6,"len")=2 + Set gtmtypes("rc_xblk_hdr",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","gtm_free.value")=6 + Set gtmtypes("rc_xblk_hdr",7,"name")="rc_xblk_hdr.method" + Set gtmtypes("rc_xblk_hdr",7,"off")=4 + Set gtmtypes("rc_xblk_hdr",7,"len")=1 + Set gtmtypes("rc_xblk_hdr",7,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","method")=7 + Set gtmtypes("rc_xblk_hdr",8,"name")="rc_xblk_hdr.method.octet" + Set gtmtypes("rc_xblk_hdr",8,"off")=4 + Set gtmtypes("rc_xblk_hdr",8,"len")=1 + Set gtmtypes("rc_xblk_hdr",8,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","method.octet")=8 + Set gtmtypes("rc_xblk_hdr",9,"name")="rc_xblk_hdr.method.value" + Set gtmtypes("rc_xblk_hdr",9,"off")=4 + Set gtmtypes("rc_xblk_hdr",9,"len")=1 + Set gtmtypes("rc_xblk_hdr",9,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","method.value")=9 + Set gtmtypes("rc_xblk_hdr",10,"name")="rc_xblk_hdr.alert" + Set gtmtypes("rc_xblk_hdr",10,"off")=5 + Set gtmtypes("rc_xblk_hdr",10,"len")=1 + Set gtmtypes("rc_xblk_hdr",10,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","alert")=10 + Set gtmtypes("rc_xblk_hdr",11,"name")="rc_xblk_hdr.alert.octet" + Set gtmtypes("rc_xblk_hdr",11,"off")=5 + Set gtmtypes("rc_xblk_hdr",11,"len")=1 + Set gtmtypes("rc_xblk_hdr",11,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","alert.octet")=11 + Set gtmtypes("rc_xblk_hdr",12,"name")="rc_xblk_hdr.alert.value" + Set gtmtypes("rc_xblk_hdr",12,"off")=5 + Set gtmtypes("rc_xblk_hdr",12,"len")=1 + Set gtmtypes("rc_xblk_hdr",12,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","alert.value")=12 + Set gtmtypes("rc_xblk_hdr",13,"name")="rc_xblk_hdr.sync" + Set gtmtypes("rc_xblk_hdr",13,"off")=6 + Set gtmtypes("rc_xblk_hdr",13,"len")=2 + Set gtmtypes("rc_xblk_hdr",13,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","sync")=13 + Set gtmtypes("rc_xblk_hdr",14,"name")="rc_xblk_hdr.sync.octet" + Set gtmtypes("rc_xblk_hdr",14,"off")=6 + Set gtmtypes("rc_xblk_hdr",14,"len")=2 + Set gtmtypes("rc_xblk_hdr",14,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","sync.octet")=14 + Set gtmtypes("rc_xblk_hdr",15,"name")="rc_xblk_hdr.sync.value" + Set gtmtypes("rc_xblk_hdr",15,"off")=6 + Set gtmtypes("rc_xblk_hdr",15,"len")=2 + Set gtmtypes("rc_xblk_hdr",15,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","sync.value")=15 + Set gtmtypes("rc_xblk_hdr",16,"name")="rc_xblk_hdr.cpt_tab" + Set gtmtypes("rc_xblk_hdr",16,"off")=8 + Set gtmtypes("rc_xblk_hdr",16,"len")=2 + Set gtmtypes("rc_xblk_hdr",16,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab")=16 + Set gtmtypes("rc_xblk_hdr",17,"name")="rc_xblk_hdr.cpt_tab.octet" + Set gtmtypes("rc_xblk_hdr",17,"off")=8 + Set gtmtypes("rc_xblk_hdr",17,"len")=2 + Set gtmtypes("rc_xblk_hdr",17,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab.octet")=17 + Set gtmtypes("rc_xblk_hdr",18,"name")="rc_xblk_hdr.cpt_tab.value" + Set gtmtypes("rc_xblk_hdr",18,"off")=8 + Set gtmtypes("rc_xblk_hdr",18,"len")=2 + Set gtmtypes("rc_xblk_hdr",18,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","cpt_tab.value")=18 + Set gtmtypes("rc_xblk_hdr",19,"name")="rc_xblk_hdr.cpt_siz" + Set gtmtypes("rc_xblk_hdr",19,"off")=10 + Set gtmtypes("rc_xblk_hdr",19,"len")=2 + Set gtmtypes("rc_xblk_hdr",19,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz")=19 + Set gtmtypes("rc_xblk_hdr",20,"name")="rc_xblk_hdr.cpt_siz.octet" + Set gtmtypes("rc_xblk_hdr",20,"off")=10 + Set gtmtypes("rc_xblk_hdr",20,"len")=2 + Set gtmtypes("rc_xblk_hdr",20,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz.octet")=20 + Set gtmtypes("rc_xblk_hdr",21,"name")="rc_xblk_hdr.cpt_siz.value" + Set gtmtypes("rc_xblk_hdr",21,"off")=10 + Set gtmtypes("rc_xblk_hdr",21,"len")=2 + Set gtmtypes("rc_xblk_hdr",21,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","cpt_siz.value")=21 + Set gtmtypes("rc_xblk_hdr",22,"name")="rc_xblk_hdr.aq_res" + Set gtmtypes("rc_xblk_hdr",22,"off")=12 + Set gtmtypes("rc_xblk_hdr",22,"len")=2 + Set gtmtypes("rc_xblk_hdr",22,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","aq_res")=22 + Set gtmtypes("rc_xblk_hdr",23,"name")="rc_xblk_hdr.aq_res.octet" + Set gtmtypes("rc_xblk_hdr",23,"off")=12 + Set gtmtypes("rc_xblk_hdr",23,"len")=2 + Set gtmtypes("rc_xblk_hdr",23,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","aq_res.octet")=23 + Set gtmtypes("rc_xblk_hdr",24,"name")="rc_xblk_hdr.aq_res.value" + Set gtmtypes("rc_xblk_hdr",24,"off")=12 + Set gtmtypes("rc_xblk_hdr",24,"len")=2 + Set gtmtypes("rc_xblk_hdr",24,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","aq_res.value")=24 + Set gtmtypes("rc_xblk_hdr",25,"name")="rc_xblk_hdr.resp_max" + Set gtmtypes("rc_xblk_hdr",25,"off")=14 + Set gtmtypes("rc_xblk_hdr",25,"len")=2 + Set gtmtypes("rc_xblk_hdr",25,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","resp_max")=25 + Set gtmtypes("rc_xblk_hdr",26,"name")="rc_xblk_hdr.resp_max.octet" + Set gtmtypes("rc_xblk_hdr",26,"off")=14 + Set gtmtypes("rc_xblk_hdr",26,"len")=2 + Set gtmtypes("rc_xblk_hdr",26,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","resp_max.octet")=26 + Set gtmtypes("rc_xblk_hdr",27,"name")="rc_xblk_hdr.resp_max.value" + Set gtmtypes("rc_xblk_hdr",27,"off")=14 + Set gtmtypes("rc_xblk_hdr",27,"len")=2 + Set gtmtypes("rc_xblk_hdr",27,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","resp_max.value")=27 + Set gtmtypes("rc_xblk_hdr",28,"name")="rc_xblk_hdr.client" + Set gtmtypes("rc_xblk_hdr",28,"off")=16 + Set gtmtypes("rc_xblk_hdr",28,"len")=4 + Set gtmtypes("rc_xblk_hdr",28,"type")="rc_lword" + Set gtmtypfldindx("rc_xblk_hdr","client")=28 + Set gtmtypes("rc_xblk_hdr",29,"name")="rc_xblk_hdr.client.octet" + Set gtmtypes("rc_xblk_hdr",29,"off")=16 + Set gtmtypes("rc_xblk_hdr",29,"len")=4 + Set gtmtypes("rc_xblk_hdr",29,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","client.octet")=29 + Set gtmtypes("rc_xblk_hdr",30,"name")="rc_xblk_hdr.client.value" + Set gtmtypes("rc_xblk_hdr",30,"off")=16 + Set gtmtypes("rc_xblk_hdr",30,"len")=4 + Set gtmtypes("rc_xblk_hdr",30,"type")="unsigned-int" + Set gtmtypfldindx("rc_xblk_hdr","client.value")=30 + Set gtmtypes("rc_xblk_hdr",31,"name")="rc_xblk_hdr.alive" + Set gtmtypes("rc_xblk_hdr",31,"off")=20 + Set gtmtypes("rc_xblk_hdr",31,"len")=1 + Set gtmtypes("rc_xblk_hdr",31,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","alive")=31 + Set gtmtypes("rc_xblk_hdr",32,"name")="rc_xblk_hdr.alive.octet" + Set gtmtypes("rc_xblk_hdr",32,"off")=20 + Set gtmtypes("rc_xblk_hdr",32,"len")=1 + Set gtmtypes("rc_xblk_hdr",32,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","alive.octet")=32 + Set gtmtypes("rc_xblk_hdr",33,"name")="rc_xblk_hdr.alive.value" + Set gtmtypes("rc_xblk_hdr",33,"off")=20 + Set gtmtypes("rc_xblk_hdr",33,"len")=1 + Set gtmtypes("rc_xblk_hdr",33,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","alive.value")=33 + Set gtmtypes("rc_xblk_hdr",34,"name")="rc_xblk_hdr.filler0" + Set gtmtypes("rc_xblk_hdr",34,"off")=21 + Set gtmtypes("rc_xblk_hdr",34,"len")=1 + Set gtmtypes("rc_xblk_hdr",34,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","filler0")=34 + Set gtmtypes("rc_xblk_hdr",35,"name")="rc_xblk_hdr.err_aq" + Set gtmtypes("rc_xblk_hdr",35,"off")=22 + Set gtmtypes("rc_xblk_hdr",35,"len")=2 + Set gtmtypes("rc_xblk_hdr",35,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","err_aq")=35 + Set gtmtypes("rc_xblk_hdr",36,"name")="rc_xblk_hdr.err_aq.octet" + Set gtmtypes("rc_xblk_hdr",36,"off")=22 + Set gtmtypes("rc_xblk_hdr",36,"len")=2 + Set gtmtypes("rc_xblk_hdr",36,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","err_aq.octet")=36 + Set gtmtypes("rc_xblk_hdr",37,"name")="rc_xblk_hdr.err_aq.value" + Set gtmtypes("rc_xblk_hdr",37,"off")=22 + Set gtmtypes("rc_xblk_hdr",37,"len")=2 + Set gtmtypes("rc_xblk_hdr",37,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","err_aq.value")=37 + Set gtmtypes("rc_xblk_hdr",38,"name")="rc_xblk_hdr.last_aq" + Set gtmtypes("rc_xblk_hdr",38,"off")=24 + Set gtmtypes("rc_xblk_hdr",38,"len")=2 + Set gtmtypes("rc_xblk_hdr",38,"type")="rc_word" + Set gtmtypfldindx("rc_xblk_hdr","last_aq")=38 + Set gtmtypes("rc_xblk_hdr",39,"name")="rc_xblk_hdr.last_aq.octet" + Set gtmtypes("rc_xblk_hdr",39,"off")=24 + Set gtmtypes("rc_xblk_hdr",39,"len")=2 + Set gtmtypes("rc_xblk_hdr",39,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","last_aq.octet")=39 + Set gtmtypes("rc_xblk_hdr",40,"name")="rc_xblk_hdr.last_aq.value" + Set gtmtypes("rc_xblk_hdr",40,"off")=24 + Set gtmtypes("rc_xblk_hdr",40,"len")=2 + Set gtmtypes("rc_xblk_hdr",40,"type")="unsigned-short" + Set gtmtypfldindx("rc_xblk_hdr","last_aq.value")=40 + Set gtmtypes("rc_xblk_hdr",41,"name")="rc_xblk_hdr.big_endian" + Set gtmtypes("rc_xblk_hdr",41,"off")=26 + Set gtmtypes("rc_xblk_hdr",41,"len")=1 + Set gtmtypes("rc_xblk_hdr",41,"type")="rc_byte" + Set gtmtypfldindx("rc_xblk_hdr","big_endian")=41 + Set gtmtypes("rc_xblk_hdr",42,"name")="rc_xblk_hdr.big_endian.octet" + Set gtmtypes("rc_xblk_hdr",42,"off")=26 + Set gtmtypes("rc_xblk_hdr",42,"len")=1 + Set gtmtypes("rc_xblk_hdr",42,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","big_endian.octet")=42 + Set gtmtypes("rc_xblk_hdr",43,"name")="rc_xblk_hdr.big_endian.value" + Set gtmtypes("rc_xblk_hdr",43,"off")=26 + Set gtmtypes("rc_xblk_hdr",43,"len")=1 + Set gtmtypes("rc_xblk_hdr",43,"type")="unsigned-char" + Set gtmtypfldindx("rc_xblk_hdr","big_endian.value")=43 + Set gtmtypes("rc_xblk_hdr",44,"name")="rc_xblk_hdr.filler1" + Set gtmtypes("rc_xblk_hdr",44,"off")=27 + Set gtmtypes("rc_xblk_hdr",44,"len")=5 + Set gtmtypes("rc_xblk_hdr",44,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","filler1")=44 + Set gtmtypes("rc_xblk_hdr",45,"name")="rc_xblk_hdr.asm1" + Set gtmtypes("rc_xblk_hdr",45,"off")=32 + Set gtmtypes("rc_xblk_hdr",45,"len")=32 + Set gtmtypes("rc_xblk_hdr",45,"type")="char" + Set gtmtypfldindx("rc_xblk_hdr","asm1")=45 + ; + Set gtmtypes("rc_xdsid")="struct" + Set gtmtypes("rc_xdsid",0)=6 + Set gtmtypes("rc_xdsid","len")=4 + Set gtmtypes("rc_xdsid",1,"name")="rc_xdsid.dsid" + Set gtmtypes("rc_xdsid",1,"off")=0 + Set gtmtypes("rc_xdsid",1,"len")=2 + Set gtmtypes("rc_xdsid",1,"type")="rc_word" + Set gtmtypfldindx("rc_xdsid","dsid")=1 + Set gtmtypes("rc_xdsid",2,"name")="rc_xdsid.dsid.octet" + Set gtmtypes("rc_xdsid",2,"off")=0 + Set gtmtypes("rc_xdsid",2,"len")=2 + Set gtmtypes("rc_xdsid",2,"type")="char" + Set gtmtypfldindx("rc_xdsid","dsid.octet")=2 + Set gtmtypes("rc_xdsid",3,"name")="rc_xdsid.dsid.value" + Set gtmtypes("rc_xdsid",3,"off")=0 + Set gtmtypes("rc_xdsid",3,"len")=2 + Set gtmtypes("rc_xdsid",3,"type")="unsigned-short" + Set gtmtypfldindx("rc_xdsid","dsid.value")=3 + Set gtmtypes("rc_xdsid",4,"name")="rc_xdsid.node" + Set gtmtypes("rc_xdsid",4,"off")=2 + Set gtmtypes("rc_xdsid",4,"len")=2 + Set gtmtypes("rc_xdsid",4,"type")="rc_word" + Set gtmtypfldindx("rc_xdsid","node")=4 + Set gtmtypes("rc_xdsid",5,"name")="rc_xdsid.node.octet" + Set gtmtypes("rc_xdsid",5,"off")=2 + Set gtmtypes("rc_xdsid",5,"len")=2 + Set gtmtypes("rc_xdsid",5,"type")="char" + Set gtmtypfldindx("rc_xdsid","node.octet")=5 + Set gtmtypes("rc_xdsid",6,"name")="rc_xdsid.node.value" + Set gtmtypes("rc_xdsid",6,"off")=2 + Set gtmtypes("rc_xdsid",6,"len")=2 + Set gtmtypes("rc_xdsid",6,"type")="unsigned-short" + Set gtmtypfldindx("rc_xdsid","node.value")=6 + ; + Set gtmtypes("rc_xnsid")="struct" + Set gtmtypes("rc_xnsid",0)=1 + Set gtmtypes("rc_xnsid","len")=4 + Set gtmtypes("rc_xnsid",1,"name")="rc_xnsid.value" + Set gtmtypes("rc_xnsid",1,"off")=0 + Set gtmtypes("rc_xnsid",1,"len")=4 + Set gtmtypes("rc_xnsid",1,"type")="char" + Set gtmtypfldindx("rc_xnsid","value")=1 + ; + Set gtmtypes("rec_hdr")="struct" + Set gtmtypes("rec_hdr",0)=3 + Set gtmtypes("rec_hdr","len")=4 + Set gtmtypes("rec_hdr",1,"name")="rec_hdr.rsiz" + Set gtmtypes("rec_hdr",1,"off")=0 + Set gtmtypes("rec_hdr",1,"len")=2 + Set gtmtypes("rec_hdr",1,"type")="unsigned-short" + Set gtmtypfldindx("rec_hdr","rsiz")=1 + Set gtmtypes("rec_hdr",2,"name")="rec_hdr.cmpc" + Set gtmtypes("rec_hdr",2,"off")=2 + Set gtmtypes("rec_hdr",2,"len")=1 + Set gtmtypes("rec_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("rec_hdr","cmpc")=2 + Set gtmtypes("rec_hdr",3,"name")="rec_hdr.cmpc2" + Set gtmtypes("rec_hdr",3,"off")=3 + Set gtmtypes("rec_hdr",3,"len")=1 + Set gtmtypes("rec_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("rec_hdr","cmpc2")=3 + ; + Set gtmtypes("recvpool_addrs")="struct" + Set gtmtypes("recvpool_addrs",0)=6 + Set gtmtypes("recvpool_addrs","len")=24 + Set gtmtypes("recvpool_addrs",1,"name")="recvpool_addrs.recvpool_ctl" + Set gtmtypes("recvpool_addrs",1,"off")=0 + Set gtmtypes("recvpool_addrs",1,"len")=4 + Set gtmtypes("recvpool_addrs",1,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvpool_ctl")=1 + Set gtmtypes("recvpool_addrs",2,"name")="recvpool_addrs.upd_proc_local" + Set gtmtypes("recvpool_addrs",2,"off")=4 + Set gtmtypes("recvpool_addrs",2,"len")=4 + Set gtmtypes("recvpool_addrs",2,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","upd_proc_local")=2 + Set gtmtypes("recvpool_addrs",3,"name")="recvpool_addrs.gtmrecv_local" + Set gtmtypes("recvpool_addrs",3,"off")=8 + Set gtmtypes("recvpool_addrs",3,"len")=4 + Set gtmtypes("recvpool_addrs",3,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","gtmrecv_local")=3 + Set gtmtypes("recvpool_addrs",4,"name")="recvpool_addrs.upd_helper_ctl" + Set gtmtypes("recvpool_addrs",4,"off")=12 + Set gtmtypes("recvpool_addrs",4,"len")=4 + Set gtmtypes("recvpool_addrs",4,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","upd_helper_ctl")=4 + Set gtmtypes("recvpool_addrs",5,"name")="recvpool_addrs.recvdata_base" + Set gtmtypes("recvpool_addrs",5,"off")=16 + Set gtmtypes("recvpool_addrs",5,"len")=4 + Set gtmtypes("recvpool_addrs",5,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvdata_base")=5 + Set gtmtypes("recvpool_addrs",6,"name")="recvpool_addrs.recvpool_dummy_reg" + Set gtmtypes("recvpool_addrs",6,"off")=20 + Set gtmtypes("recvpool_addrs",6,"len")=4 + Set gtmtypes("recvpool_addrs",6,"type")="addr" + Set gtmtypfldindx("recvpool_addrs","recvpool_dummy_reg")=6 + ; + Set gtmtypes("recvpool_ctl_struct")="struct" + Set gtmtypes("recvpool_ctl_struct",0)=87 + Set gtmtypes("recvpool_ctl_struct","len")=5988 + Set gtmtypes("recvpool_ctl_struct",1,"name")="recvpool_ctl_struct.recvpool_id" + Set gtmtypes("recvpool_ctl_struct",1,"off")=0 + Set gtmtypes("recvpool_ctl_struct",1,"len")=312 + Set gtmtypes("recvpool_ctl_struct",1,"type")="replpool_identifier" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id")=1 + Set gtmtypes("recvpool_ctl_struct",2,"name")="recvpool_ctl_struct.recvpool_id.label" + Set gtmtypes("recvpool_ctl_struct",2,"off")=0 + Set gtmtypes("recvpool_ctl_struct",2,"len")=12 + Set gtmtypes("recvpool_ctl_struct",2,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.label")=2 + Set gtmtypes("recvpool_ctl_struct",3,"name")="recvpool_ctl_struct.recvpool_id.pool_type" + Set gtmtypes("recvpool_ctl_struct",3,"off")=12 + Set gtmtypes("recvpool_ctl_struct",3,"len")=1 + Set gtmtypes("recvpool_ctl_struct",3,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.pool_type")=3 + Set gtmtypes("recvpool_ctl_struct",4,"name")="recvpool_ctl_struct.recvpool_id.now_running" + Set gtmtypes("recvpool_ctl_struct",4,"off")=13 + Set gtmtypes("recvpool_ctl_struct",4,"len")=36 + Set gtmtypes("recvpool_ctl_struct",4,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.now_running")=4 + Set gtmtypes("recvpool_ctl_struct",5,"name")="recvpool_ctl_struct.recvpool_id.repl_pool_key_filler" + Set gtmtypes("recvpool_ctl_struct",5,"off")=52 + Set gtmtypes("recvpool_ctl_struct",5,"len")=4 + Set gtmtypes("recvpool_ctl_struct",5,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.repl_pool_key_filler")=5 + Set gtmtypes("recvpool_ctl_struct",6,"name")="recvpool_ctl_struct.recvpool_id.instfilename" + Set gtmtypes("recvpool_ctl_struct",6,"off")=56 + Set gtmtypes("recvpool_ctl_struct",6,"len")=256 + Set gtmtypes("recvpool_ctl_struct",6,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_id.instfilename")=6 + Set gtmtypes("recvpool_ctl_struct",7,"name")="recvpool_ctl_struct.jnl_seqno" + Set gtmtypes("recvpool_ctl_struct",7,"off")=312 + Set gtmtypes("recvpool_ctl_struct",7,"len")=8 + Set gtmtypes("recvpool_ctl_struct",7,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","jnl_seqno")=7 + Set gtmtypes("recvpool_ctl_struct",8,"name")="recvpool_ctl_struct.old_jnl_seqno" + Set gtmtypes("recvpool_ctl_struct",8,"off")=320 + Set gtmtypes("recvpool_ctl_struct",8,"len")=8 + Set gtmtypes("recvpool_ctl_struct",8,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","old_jnl_seqno")=8 + Set gtmtypes("recvpool_ctl_struct",9,"name")="recvpool_ctl_struct.this_side" + Set gtmtypes("recvpool_ctl_struct",9,"off")=328 + Set gtmtypes("recvpool_ctl_struct",9,"len")=48 + Set gtmtypes("recvpool_ctl_struct",9,"type")="repl_conn_info_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side")=9 + Set gtmtypes("recvpool_ctl_struct",10,"name")="recvpool_ctl_struct.this_side.proto_ver" + Set gtmtypes("recvpool_ctl_struct",10,"off")=328 + Set gtmtypes("recvpool_ctl_struct",10,"len")=4 + Set gtmtypes("recvpool_ctl_struct",10,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.proto_ver")=10 + Set gtmtypes("recvpool_ctl_struct",11,"name")="recvpool_ctl_struct.this_side.jnl_ver" + Set gtmtypes("recvpool_ctl_struct",11,"off")=332 + Set gtmtypes("recvpool_ctl_struct",11,"len")=4 + Set gtmtypes("recvpool_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.jnl_ver")=11 + Set gtmtypes("recvpool_ctl_struct",12,"name")="recvpool_ctl_struct.this_side.is_std_null_coll" + Set gtmtypes("recvpool_ctl_struct",12,"off")=336 + Set gtmtypes("recvpool_ctl_struct",12,"len")=4 + Set gtmtypes("recvpool_ctl_struct",12,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.is_std_null_coll")=12 + Set gtmtypes("recvpool_ctl_struct",13,"name")="recvpool_ctl_struct.this_side.trigger_supported" + Set gtmtypes("recvpool_ctl_struct",13,"off")=340 + Set gtmtypes("recvpool_ctl_struct",13,"len")=4 + Set gtmtypes("recvpool_ctl_struct",13,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.trigger_supported")=13 + Set gtmtypes("recvpool_ctl_struct",14,"name")="recvpool_ctl_struct.this_side.cross_endian" + Set gtmtypes("recvpool_ctl_struct",14,"off")=344 + Set gtmtypes("recvpool_ctl_struct",14,"len")=4 + Set gtmtypes("recvpool_ctl_struct",14,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.cross_endian")=14 + Set gtmtypes("recvpool_ctl_struct",15,"name")="recvpool_ctl_struct.this_side.endianness_known" + Set gtmtypes("recvpool_ctl_struct",15,"off")=348 + Set gtmtypes("recvpool_ctl_struct",15,"len")=4 + Set gtmtypes("recvpool_ctl_struct",15,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.endianness_known")=15 + Set gtmtypes("recvpool_ctl_struct",16,"name")="recvpool_ctl_struct.this_side.null_subs_xform" + Set gtmtypes("recvpool_ctl_struct",16,"off")=352 + Set gtmtypes("recvpool_ctl_struct",16,"len")=4 + Set gtmtypes("recvpool_ctl_struct",16,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.null_subs_xform")=16 + Set gtmtypes("recvpool_ctl_struct",17,"name")="recvpool_ctl_struct.this_side.is_supplementary" + Set gtmtypes("recvpool_ctl_struct",17,"off")=356 + Set gtmtypes("recvpool_ctl_struct",17,"len")=4 + Set gtmtypes("recvpool_ctl_struct",17,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.is_supplementary")=17 + Set gtmtypes("recvpool_ctl_struct",18,"name")="recvpool_ctl_struct.this_side.tls_requested" + Set gtmtypes("recvpool_ctl_struct",18,"off")=360 + Set gtmtypes("recvpool_ctl_struct",18,"len")=4 + Set gtmtypes("recvpool_ctl_struct",18,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.tls_requested")=18 + Set gtmtypes("recvpool_ctl_struct",19,"name")="recvpool_ctl_struct.this_side.filler_16" + Set gtmtypes("recvpool_ctl_struct",19,"off")=364 + Set gtmtypes("recvpool_ctl_struct",19,"len")=12 + Set gtmtypes("recvpool_ctl_struct",19,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","this_side.filler_16")=19 + Set gtmtypes("recvpool_ctl_struct",20,"name")="recvpool_ctl_struct.recvdata_base_off" + Set gtmtypes("recvpool_ctl_struct",20,"off")=376 + Set gtmtypes("recvpool_ctl_struct",20,"len")=4 + Set gtmtypes("recvpool_ctl_struct",20,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","recvdata_base_off")=20 + Set gtmtypes("recvpool_ctl_struct",21,"name")="recvpool_ctl_struct.recvpool_size" + Set gtmtypes("recvpool_ctl_struct",21,"off")=380 + Set gtmtypes("recvpool_ctl_struct",21,"len")=4 + Set gtmtypes("recvpool_ctl_struct",21,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","recvpool_size")=21 + Set gtmtypes("recvpool_ctl_struct",22,"name")="recvpool_ctl_struct.write" + Set gtmtypes("recvpool_ctl_struct",22,"off")=384 + Set gtmtypes("recvpool_ctl_struct",22,"len")=4 + Set gtmtypes("recvpool_ctl_struct",22,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","write")=22 + Set gtmtypes("recvpool_ctl_struct",23,"name")="recvpool_ctl_struct.write_wrap" + Set gtmtypes("recvpool_ctl_struct",23,"off")=388 + Set gtmtypes("recvpool_ctl_struct",23,"len")=4 + Set gtmtypes("recvpool_ctl_struct",23,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","write_wrap")=23 + Set gtmtypes("recvpool_ctl_struct",24,"name")="recvpool_ctl_struct.wrapped" + Set gtmtypes("recvpool_ctl_struct",24,"off")=392 + Set gtmtypes("recvpool_ctl_struct",24,"len")=4 + Set gtmtypes("recvpool_ctl_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","wrapped")=24 + Set gtmtypes("recvpool_ctl_struct",25,"name")="recvpool_ctl_struct.initialized" + Set gtmtypes("recvpool_ctl_struct",25,"off")=396 + Set gtmtypes("recvpool_ctl_struct",25,"len")=4 + Set gtmtypes("recvpool_ctl_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","initialized")=25 + Set gtmtypes("recvpool_ctl_struct",26,"name")="recvpool_ctl_struct.fresh_start" + Set gtmtypes("recvpool_ctl_struct",26,"off")=400 + Set gtmtypes("recvpool_ctl_struct",26,"len")=4 + Set gtmtypes("recvpool_ctl_struct",26,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","fresh_start")=26 + Set gtmtypes("recvpool_ctl_struct",27,"name")="recvpool_ctl_struct.last_rcvd_histinfo" + Set gtmtypes("recvpool_ctl_struct",27,"off")=404 + Set gtmtypes("recvpool_ctl_struct",27,"len")=160 + Set gtmtypes("recvpool_ctl_struct",27,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo")=27 + Set gtmtypes("recvpool_ctl_struct",28,"name")="recvpool_ctl_struct.last_rcvd_histinfo.root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",28,"off")=404 + Set gtmtypes("recvpool_ctl_struct",28,"len")=16 + Set gtmtypes("recvpool_ctl_struct",28,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.root_primary_instname")=28 + Set gtmtypes("recvpool_ctl_struct",29,"name")="recvpool_ctl_struct.last_rcvd_histinfo.start_seqno" + Set gtmtypes("recvpool_ctl_struct",29,"off")=420 + Set gtmtypes("recvpool_ctl_struct",29,"len")=8 + Set gtmtypes("recvpool_ctl_struct",29,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.start_seqno")=29 + Set gtmtypes("recvpool_ctl_struct",30,"name")="recvpool_ctl_struct.last_rcvd_histinfo.strm_seqno" + Set gtmtypes("recvpool_ctl_struct",30,"off")=428 + Set gtmtypes("recvpool_ctl_struct",30,"len")=8 + Set gtmtypes("recvpool_ctl_struct",30,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.strm_seqno")=30 + Set gtmtypes("recvpool_ctl_struct",31,"name")="recvpool_ctl_struct.last_rcvd_histinfo.root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",31,"off")=436 + Set gtmtypes("recvpool_ctl_struct",31,"len")=4 + Set gtmtypes("recvpool_ctl_struct",31,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.root_primary_cycle")=31 + Set gtmtypes("recvpool_ctl_struct",32,"name")="recvpool_ctl_struct.last_rcvd_histinfo.creator_pid" + Set gtmtypes("recvpool_ctl_struct",32,"off")=440 + Set gtmtypes("recvpool_ctl_struct",32,"len")=4 + Set gtmtypes("recvpool_ctl_struct",32,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.creator_pid")=32 + Set gtmtypes("recvpool_ctl_struct",33,"name")="recvpool_ctl_struct.last_rcvd_histinfo.created_time" + Set gtmtypes("recvpool_ctl_struct",33,"off")=444 + Set gtmtypes("recvpool_ctl_struct",33,"len")=4 + Set gtmtypes("recvpool_ctl_struct",33,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.created_time")=33 + Set gtmtypes("recvpool_ctl_struct",34,"name")="recvpool_ctl_struct.last_rcvd_histinfo.histinfo_num" + Set gtmtypes("recvpool_ctl_struct",34,"off")=448 + Set gtmtypes("recvpool_ctl_struct",34,"len")=4 + Set gtmtypes("recvpool_ctl_struct",34,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.histinfo_num")=34 + Set gtmtypes("recvpool_ctl_struct",35,"name")="recvpool_ctl_struct.last_rcvd_histinfo.prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",35,"off")=452 + Set gtmtypes("recvpool_ctl_struct",35,"len")=4 + Set gtmtypes("recvpool_ctl_struct",35,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.prev_histinfo_num")=35 + Set gtmtypes("recvpool_ctl_struct",36,"name")="recvpool_ctl_struct.last_rcvd_histinfo.strm_index" + Set gtmtypes("recvpool_ctl_struct",36,"off")=456 + Set gtmtypes("recvpool_ctl_struct",36,"len")=1 + Set gtmtypes("recvpool_ctl_struct",36,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.strm_index")=36 + Set gtmtypes("recvpool_ctl_struct",37,"name")="recvpool_ctl_struct.last_rcvd_histinfo.history_type" + Set gtmtypes("recvpool_ctl_struct",37,"off")=457 + Set gtmtypes("recvpool_ctl_struct",37,"len")=1 + Set gtmtypes("recvpool_ctl_struct",37,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.history_type")=37 + Set gtmtypes("recvpool_ctl_struct",38,"name")="recvpool_ctl_struct.last_rcvd_histinfo.filler_8" + Set gtmtypes("recvpool_ctl_struct",38,"off")=458 + Set gtmtypes("recvpool_ctl_struct",38,"len")=2 + Set gtmtypes("recvpool_ctl_struct",38,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.filler_8")=38 + Set gtmtypes("recvpool_ctl_struct",39,"name")="recvpool_ctl_struct.last_rcvd_histinfo.lms_group" + Set gtmtypes("recvpool_ctl_struct",39,"off")=460 + Set gtmtypes("recvpool_ctl_struct",39,"len")=40 + Set gtmtypes("recvpool_ctl_struct",39,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.lms_group")=39 + Set gtmtypes("recvpool_ctl_struct",40,"name")="recvpool_ctl_struct.last_rcvd_histinfo.last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",40,"off")=500 + Set gtmtypes("recvpool_ctl_struct",40,"len")=64 + Set gtmtypes("recvpool_ctl_struct",40,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_histinfo.last_histinfo_num")=40 + Set gtmtypes("recvpool_ctl_struct",40,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",41,"name")="recvpool_ctl_struct.last_valid_histinfo" + Set gtmtypes("recvpool_ctl_struct",41,"off")=564 + Set gtmtypes("recvpool_ctl_struct",41,"len")=160 + Set gtmtypes("recvpool_ctl_struct",41,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo")=41 + Set gtmtypes("recvpool_ctl_struct",42,"name")="recvpool_ctl_struct.last_valid_histinfo.root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",42,"off")=564 + Set gtmtypes("recvpool_ctl_struct",42,"len")=16 + Set gtmtypes("recvpool_ctl_struct",42,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.root_primary_instname")=42 + Set gtmtypes("recvpool_ctl_struct",43,"name")="recvpool_ctl_struct.last_valid_histinfo.start_seqno" + Set gtmtypes("recvpool_ctl_struct",43,"off")=580 + Set gtmtypes("recvpool_ctl_struct",43,"len")=8 + Set gtmtypes("recvpool_ctl_struct",43,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.start_seqno")=43 + Set gtmtypes("recvpool_ctl_struct",44,"name")="recvpool_ctl_struct.last_valid_histinfo.strm_seqno" + Set gtmtypes("recvpool_ctl_struct",44,"off")=588 + Set gtmtypes("recvpool_ctl_struct",44,"len")=8 + Set gtmtypes("recvpool_ctl_struct",44,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.strm_seqno")=44 + Set gtmtypes("recvpool_ctl_struct",45,"name")="recvpool_ctl_struct.last_valid_histinfo.root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",45,"off")=596 + Set gtmtypes("recvpool_ctl_struct",45,"len")=4 + Set gtmtypes("recvpool_ctl_struct",45,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.root_primary_cycle")=45 + Set gtmtypes("recvpool_ctl_struct",46,"name")="recvpool_ctl_struct.last_valid_histinfo.creator_pid" + Set gtmtypes("recvpool_ctl_struct",46,"off")=600 + Set gtmtypes("recvpool_ctl_struct",46,"len")=4 + Set gtmtypes("recvpool_ctl_struct",46,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.creator_pid")=46 + Set gtmtypes("recvpool_ctl_struct",47,"name")="recvpool_ctl_struct.last_valid_histinfo.created_time" + Set gtmtypes("recvpool_ctl_struct",47,"off")=604 + Set gtmtypes("recvpool_ctl_struct",47,"len")=4 + Set gtmtypes("recvpool_ctl_struct",47,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.created_time")=47 + Set gtmtypes("recvpool_ctl_struct",48,"name")="recvpool_ctl_struct.last_valid_histinfo.histinfo_num" + Set gtmtypes("recvpool_ctl_struct",48,"off")=608 + Set gtmtypes("recvpool_ctl_struct",48,"len")=4 + Set gtmtypes("recvpool_ctl_struct",48,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.histinfo_num")=48 + Set gtmtypes("recvpool_ctl_struct",49,"name")="recvpool_ctl_struct.last_valid_histinfo.prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",49,"off")=612 + Set gtmtypes("recvpool_ctl_struct",49,"len")=4 + Set gtmtypes("recvpool_ctl_struct",49,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.prev_histinfo_num")=49 + Set gtmtypes("recvpool_ctl_struct",50,"name")="recvpool_ctl_struct.last_valid_histinfo.strm_index" + Set gtmtypes("recvpool_ctl_struct",50,"off")=616 + Set gtmtypes("recvpool_ctl_struct",50,"len")=1 + Set gtmtypes("recvpool_ctl_struct",50,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.strm_index")=50 + Set gtmtypes("recvpool_ctl_struct",51,"name")="recvpool_ctl_struct.last_valid_histinfo.history_type" + Set gtmtypes("recvpool_ctl_struct",51,"off")=617 + Set gtmtypes("recvpool_ctl_struct",51,"len")=1 + Set gtmtypes("recvpool_ctl_struct",51,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.history_type")=51 + Set gtmtypes("recvpool_ctl_struct",52,"name")="recvpool_ctl_struct.last_valid_histinfo.filler_8" + Set gtmtypes("recvpool_ctl_struct",52,"off")=618 + Set gtmtypes("recvpool_ctl_struct",52,"len")=2 + Set gtmtypes("recvpool_ctl_struct",52,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.filler_8")=52 + Set gtmtypes("recvpool_ctl_struct",53,"name")="recvpool_ctl_struct.last_valid_histinfo.lms_group" + Set gtmtypes("recvpool_ctl_struct",53,"off")=620 + Set gtmtypes("recvpool_ctl_struct",53,"len")=40 + Set gtmtypes("recvpool_ctl_struct",53,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.lms_group")=53 + Set gtmtypes("recvpool_ctl_struct",54,"name")="recvpool_ctl_struct.last_valid_histinfo.last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",54,"off")=660 + Set gtmtypes("recvpool_ctl_struct",54,"len")=64 + Set gtmtypes("recvpool_ctl_struct",54,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_histinfo.last_histinfo_num")=54 + Set gtmtypes("recvpool_ctl_struct",54,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",55,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",55,"off")=724 + Set gtmtypes("recvpool_ctl_struct",55,"len")=2560 + Set gtmtypes("recvpool_ctl_struct",55,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo")=55 + Set gtmtypes("recvpool_ctl_struct",55,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",56,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",56,"off")=724 + Set gtmtypes("recvpool_ctl_struct",56,"len")=16 + Set gtmtypes("recvpool_ctl_struct",56,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].root_primary_instname")=56 + Set gtmtypes("recvpool_ctl_struct",57,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].start_seqno" + Set gtmtypes("recvpool_ctl_struct",57,"off")=740 + Set gtmtypes("recvpool_ctl_struct",57,"len")=8 + Set gtmtypes("recvpool_ctl_struct",57,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].start_seqno")=57 + Set gtmtypes("recvpool_ctl_struct",58,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].strm_seqno" + Set gtmtypes("recvpool_ctl_struct",58,"off")=748 + Set gtmtypes("recvpool_ctl_struct",58,"len")=8 + Set gtmtypes("recvpool_ctl_struct",58,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].strm_seqno")=58 + Set gtmtypes("recvpool_ctl_struct",59,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",59,"off")=756 + Set gtmtypes("recvpool_ctl_struct",59,"len")=4 + Set gtmtypes("recvpool_ctl_struct",59,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].root_primary_cycle")=59 + Set gtmtypes("recvpool_ctl_struct",60,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].creator_pid" + Set gtmtypes("recvpool_ctl_struct",60,"off")=760 + Set gtmtypes("recvpool_ctl_struct",60,"len")=4 + Set gtmtypes("recvpool_ctl_struct",60,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].creator_pid")=60 + Set gtmtypes("recvpool_ctl_struct",61,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].created_time" + Set gtmtypes("recvpool_ctl_struct",61,"off")=764 + Set gtmtypes("recvpool_ctl_struct",61,"len")=4 + Set gtmtypes("recvpool_ctl_struct",61,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].created_time")=61 + Set gtmtypes("recvpool_ctl_struct",62,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].histinfo_num" + Set gtmtypes("recvpool_ctl_struct",62,"off")=768 + Set gtmtypes("recvpool_ctl_struct",62,"len")=4 + Set gtmtypes("recvpool_ctl_struct",62,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].histinfo_num")=62 + Set gtmtypes("recvpool_ctl_struct",63,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",63,"off")=772 + Set gtmtypes("recvpool_ctl_struct",63,"len")=4 + Set gtmtypes("recvpool_ctl_struct",63,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].prev_histinfo_num")=63 + Set gtmtypes("recvpool_ctl_struct",64,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].strm_index" + Set gtmtypes("recvpool_ctl_struct",64,"off")=776 + Set gtmtypes("recvpool_ctl_struct",64,"len")=1 + Set gtmtypes("recvpool_ctl_struct",64,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].strm_index")=64 + Set gtmtypes("recvpool_ctl_struct",65,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].history_type" + Set gtmtypes("recvpool_ctl_struct",65,"off")=777 + Set gtmtypes("recvpool_ctl_struct",65,"len")=1 + Set gtmtypes("recvpool_ctl_struct",65,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].history_type")=65 + Set gtmtypes("recvpool_ctl_struct",66,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].filler_8" + Set gtmtypes("recvpool_ctl_struct",66,"off")=778 + Set gtmtypes("recvpool_ctl_struct",66,"len")=2 + Set gtmtypes("recvpool_ctl_struct",66,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].filler_8")=66 + Set gtmtypes("recvpool_ctl_struct",67,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].lms_group" + Set gtmtypes("recvpool_ctl_struct",67,"off")=780 + Set gtmtypes("recvpool_ctl_struct",67,"len")=40 + Set gtmtypes("recvpool_ctl_struct",67,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].lms_group")=67 + Set gtmtypes("recvpool_ctl_struct",68,"name")="recvpool_ctl_struct.last_rcvd_strm_histinfo[0].last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",68,"off")=820 + Set gtmtypes("recvpool_ctl_struct",68,"len")=64 + Set gtmtypes("recvpool_ctl_struct",68,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_rcvd_strm_histinfo[0].last_histinfo_num")=68 + Set gtmtypes("recvpool_ctl_struct",68,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",69,"name")="recvpool_ctl_struct.last_valid_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",69,"off")=3284 + Set gtmtypes("recvpool_ctl_struct",69,"len")=2560 + Set gtmtypes("recvpool_ctl_struct",69,"type")="repl_histinfo" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo")=69 + Set gtmtypes("recvpool_ctl_struct",69,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",70,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].root_primary_instname" + Set gtmtypes("recvpool_ctl_struct",70,"off")=3284 + Set gtmtypes("recvpool_ctl_struct",70,"len")=16 + Set gtmtypes("recvpool_ctl_struct",70,"type")="unsigned-char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].root_primary_instname")=70 + Set gtmtypes("recvpool_ctl_struct",71,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].start_seqno" + Set gtmtypes("recvpool_ctl_struct",71,"off")=3300 + Set gtmtypes("recvpool_ctl_struct",71,"len")=8 + Set gtmtypes("recvpool_ctl_struct",71,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].start_seqno")=71 + Set gtmtypes("recvpool_ctl_struct",72,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].strm_seqno" + Set gtmtypes("recvpool_ctl_struct",72,"off")=3308 + Set gtmtypes("recvpool_ctl_struct",72,"len")=8 + Set gtmtypes("recvpool_ctl_struct",72,"type")="uint64_t" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].strm_seqno")=72 + Set gtmtypes("recvpool_ctl_struct",73,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].root_primary_cycle" + Set gtmtypes("recvpool_ctl_struct",73,"off")=3316 + Set gtmtypes("recvpool_ctl_struct",73,"len")=4 + Set gtmtypes("recvpool_ctl_struct",73,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].root_primary_cycle")=73 + Set gtmtypes("recvpool_ctl_struct",74,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].creator_pid" + Set gtmtypes("recvpool_ctl_struct",74,"off")=3320 + Set gtmtypes("recvpool_ctl_struct",74,"len")=4 + Set gtmtypes("recvpool_ctl_struct",74,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].creator_pid")=74 + Set gtmtypes("recvpool_ctl_struct",75,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].created_time" + Set gtmtypes("recvpool_ctl_struct",75,"off")=3324 + Set gtmtypes("recvpool_ctl_struct",75,"len")=4 + Set gtmtypes("recvpool_ctl_struct",75,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].created_time")=75 + Set gtmtypes("recvpool_ctl_struct",76,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].histinfo_num" + Set gtmtypes("recvpool_ctl_struct",76,"off")=3328 + Set gtmtypes("recvpool_ctl_struct",76,"len")=4 + Set gtmtypes("recvpool_ctl_struct",76,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].histinfo_num")=76 + Set gtmtypes("recvpool_ctl_struct",77,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].prev_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",77,"off")=3332 + Set gtmtypes("recvpool_ctl_struct",77,"len")=4 + Set gtmtypes("recvpool_ctl_struct",77,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].prev_histinfo_num")=77 + Set gtmtypes("recvpool_ctl_struct",78,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].strm_index" + Set gtmtypes("recvpool_ctl_struct",78,"off")=3336 + Set gtmtypes("recvpool_ctl_struct",78,"len")=1 + Set gtmtypes("recvpool_ctl_struct",78,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].strm_index")=78 + Set gtmtypes("recvpool_ctl_struct",79,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].history_type" + Set gtmtypes("recvpool_ctl_struct",79,"off")=3337 + Set gtmtypes("recvpool_ctl_struct",79,"len")=1 + Set gtmtypes("recvpool_ctl_struct",79,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].history_type")=79 + Set gtmtypes("recvpool_ctl_struct",80,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].filler_8" + Set gtmtypes("recvpool_ctl_struct",80,"off")=3338 + Set gtmtypes("recvpool_ctl_struct",80,"len")=2 + Set gtmtypes("recvpool_ctl_struct",80,"type")="char" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].filler_8")=80 + Set gtmtypes("recvpool_ctl_struct",81,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].lms_group" + Set gtmtypes("recvpool_ctl_struct",81,"off")=3340 + Set gtmtypes("recvpool_ctl_struct",81,"len")=40 + Set gtmtypes("recvpool_ctl_struct",81,"type")="repl_inst_uuid" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].lms_group")=81 + Set gtmtypes("recvpool_ctl_struct",82,"name")="recvpool_ctl_struct.last_valid_strm_histinfo[0].last_histinfo_num" + Set gtmtypes("recvpool_ctl_struct",82,"off")=3380 + Set gtmtypes("recvpool_ctl_struct",82,"len")=64 + Set gtmtypes("recvpool_ctl_struct",82,"type")="int" + Set gtmtypfldindx("recvpool_ctl_struct","last_valid_strm_histinfo[0].last_histinfo_num")=82 + Set gtmtypes("recvpool_ctl_struct",82,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",83,"name")="recvpool_ctl_struct.is_valid_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",83,"off")=5844 + Set gtmtypes("recvpool_ctl_struct",83,"len")=64 + Set gtmtypes("recvpool_ctl_struct",83,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","is_valid_strm_histinfo")=83 + Set gtmtypes("recvpool_ctl_struct",83,"dim")=16 + Set gtmtypes("recvpool_ctl_struct",84,"name")="recvpool_ctl_struct.max_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",84,"off")=5908 + Set gtmtypes("recvpool_ctl_struct",84,"len")=4 + Set gtmtypes("recvpool_ctl_struct",84,"type")="unsigned-int" + Set gtmtypfldindx("recvpool_ctl_struct","max_strm_histinfo")=84 + Set gtmtypes("recvpool_ctl_struct",85,"name")="recvpool_ctl_struct.insert_strm_histinfo" + Set gtmtypes("recvpool_ctl_struct",85,"off")=5912 + Set gtmtypes("recvpool_ctl_struct",85,"len")=4 + Set gtmtypes("recvpool_ctl_struct",85,"type")="boolean_t" + Set gtmtypfldindx("recvpool_ctl_struct","insert_strm_histinfo")=85 + Set gtmtypes("recvpool_ctl_struct",86,"name")="recvpool_ctl_struct.write_updated_ctl" + Set gtmtypes("recvpool_ctl_struct",86,"off")=5916 + Set gtmtypes("recvpool_ctl_struct",86,"len")=24 + Set gtmtypes("recvpool_ctl_struct",86,"type")="pthread_mutex_t" + Set gtmtypfldindx("recvpool_ctl_struct","write_updated_ctl")=86 + Set gtmtypes("recvpool_ctl_struct",87,"name")="recvpool_ctl_struct.write_updated" + Set gtmtypes("recvpool_ctl_struct",87,"off")=5940 + Set gtmtypes("recvpool_ctl_struct",87,"len")=48 + Set gtmtypes("recvpool_ctl_struct",87,"type")="pthread_cond_t" + Set gtmtypfldindx("recvpool_ctl_struct","write_updated")=87 + ; + Set gtmtypes("redirect_list")="struct" + Set gtmtypes("redirect_list",0)=5 + Set gtmtypes("redirect_list","len")=20 + Set gtmtypes("redirect_list",1,"name")="redirect_list.next" + Set gtmtypes("redirect_list",1,"off")=0 + Set gtmtypes("redirect_list",1,"len")=4 + Set gtmtypes("redirect_list",1,"type")="addr" + Set gtmtypfldindx("redirect_list","next")=1 + Set gtmtypes("redirect_list",2,"name")="redirect_list.org_name_len" + Set gtmtypes("redirect_list",2,"off")=4 + Set gtmtypes("redirect_list",2,"len")=4 + Set gtmtypes("redirect_list",2,"type")="unsigned-int" + Set gtmtypfldindx("redirect_list","org_name_len")=2 + Set gtmtypes("redirect_list",3,"name")="redirect_list.new_name_len" + Set gtmtypes("redirect_list",3,"off")=8 + Set gtmtypes("redirect_list",3,"len")=4 + Set gtmtypes("redirect_list",3,"type")="unsigned-int" + Set gtmtypfldindx("redirect_list","new_name_len")=3 + Set gtmtypes("redirect_list",4,"name")="redirect_list.org_name" + Set gtmtypes("redirect_list",4,"off")=12 + Set gtmtypes("redirect_list",4,"len")=4 + Set gtmtypes("redirect_list",4,"type")="addr" + Set gtmtypfldindx("redirect_list","org_name")=4 + Set gtmtypes("redirect_list",5,"name")="redirect_list.new_name" + Set gtmtypes("redirect_list",5,"off")=16 + Set gtmtypes("redirect_list",5,"len")=4 + Set gtmtypes("redirect_list",5,"type")="addr" + Set gtmtypfldindx("redirect_list","new_name")=5 + ; + Set gtmtypes("redo_root_search_context")="struct" + Set gtmtypes("redo_root_search_context",0)=14 + Set gtmtypes("redo_root_search_context","len")=1108 + Set gtmtypes("redo_root_search_context",1,"name")="redo_root_search_context.t_fail_hist" + Set gtmtypes("redo_root_search_context",1,"off")=0 + Set gtmtypes("redo_root_search_context",1,"len")=5 + Set gtmtypes("redo_root_search_context",1,"type")="unsigned-char" + Set gtmtypfldindx("redo_root_search_context","t_fail_hist")=1 + Set gtmtypes("redo_root_search_context",2,"name")="redo_root_search_context.t_tries" + Set gtmtypes("redo_root_search_context",2,"off")=8 + Set gtmtypes("redo_root_search_context",2,"len")=4 + Set gtmtypes("redo_root_search_context",2,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","t_tries")=2 + Set gtmtypes("redo_root_search_context",3,"name")="redo_root_search_context.prev_t_tries" + Set gtmtypes("redo_root_search_context",3,"off")=12 + Set gtmtypes("redo_root_search_context",3,"len")=4 + Set gtmtypes("redo_root_search_context",3,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","prev_t_tries")=3 + Set gtmtypes("redo_root_search_context",4,"name")="redo_root_search_context.inctn_opcode" + Set gtmtypes("redo_root_search_context",4,"off")=16 + Set gtmtypes("redo_root_search_context",4,"len")=4 + Set gtmtypes("redo_root_search_context",4,"type")="int" + Set gtmtypfldindx("redo_root_search_context","inctn_opcode")=4 + Set gtmtypes("redo_root_search_context",5,"name")="redo_root_search_context.start_tn" + Set gtmtypes("redo_root_search_context",5,"off")=20 + Set gtmtypes("redo_root_search_context",5,"len")=8 + Set gtmtypes("redo_root_search_context",5,"type")="uint64_t" + Set gtmtypfldindx("redo_root_search_context","start_tn")=5 + Set gtmtypes("redo_root_search_context",6,"name")="redo_root_search_context.update_trans" + Set gtmtypes("redo_root_search_context",6,"off")=28 + Set gtmtypes("redo_root_search_context",6,"len")=4 + Set gtmtypes("redo_root_search_context",6,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","update_trans")=6 + Set gtmtypes("redo_root_search_context",7,"name")="redo_root_search_context.t_err" + Set gtmtypes("redo_root_search_context",7,"off")=32 + Set gtmtypes("redo_root_search_context",7,"len")=4 + Set gtmtypes("redo_root_search_context",7,"type")="unsigned-int" + Set gtmtypfldindx("redo_root_search_context","t_err")=7 + Set gtmtypes("redo_root_search_context",8,"name")="redo_root_search_context.hold_onto_crit" + Set gtmtypes("redo_root_search_context",8,"off")=36 + Set gtmtypes("redo_root_search_context",8,"len")=4 + Set gtmtypes("redo_root_search_context",8,"type")="boolean_t" + Set gtmtypfldindx("redo_root_search_context","hold_onto_crit")=8 + Set gtmtypes("redo_root_search_context",9,"name")="redo_root_search_context.currkey" + Set gtmtypes("redo_root_search_context",9,"off")=40 + Set gtmtypes("redo_root_search_context",9,"len")=1064 + Set gtmtypes("redo_root_search_context",9,"type")="gv_key" + Set gtmtypfldindx("redo_root_search_context","currkey")=9 + Set gtmtypes("redo_root_search_context",9,"dim")=133 + Set gtmtypes("redo_root_search_context",10,"name")="redo_root_search_context.currkey[0].top" + Set gtmtypes("redo_root_search_context",10,"off")=40 + Set gtmtypes("redo_root_search_context",10,"len")=2 + Set gtmtypes("redo_root_search_context",10,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].top")=10 + Set gtmtypes("redo_root_search_context",11,"name")="redo_root_search_context.currkey[0].end" + Set gtmtypes("redo_root_search_context",11,"off")=42 + Set gtmtypes("redo_root_search_context",11,"len")=2 + Set gtmtypes("redo_root_search_context",11,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].end")=11 + Set gtmtypes("redo_root_search_context",12,"name")="redo_root_search_context.currkey[0].prev" + Set gtmtypes("redo_root_search_context",12,"off")=44 + Set gtmtypes("redo_root_search_context",12,"len")=2 + Set gtmtypes("redo_root_search_context",12,"type")="unsigned-short" + Set gtmtypfldindx("redo_root_search_context","currkey[0].prev")=12 + Set gtmtypes("redo_root_search_context",13,"name")="redo_root_search_context.currkey[0].base" + Set gtmtypes("redo_root_search_context",13,"off")=46 + Set gtmtypes("redo_root_search_context",13,"len")=1 + Set gtmtypes("redo_root_search_context",13,"type")="unsigned-char" + Set gtmtypfldindx("redo_root_search_context","currkey[0].base")=13 + Set gtmtypes("redo_root_search_context",14,"name")="redo_root_search_context.gv_currkey" + Set gtmtypes("redo_root_search_context",14,"off")=1104 + Set gtmtypes("redo_root_search_context",14,"len")=4 + Set gtmtypes("redo_root_search_context",14,"type")="addr" + Set gtmtypfldindx("redo_root_search_context","gv_currkey")=14 + ; + Set gtmtypes("reg_ctl_list")="struct" + Set gtmtypes("reg_ctl_list",0)=59 + Set gtmtypes("reg_ctl_list","len")=304 + Set gtmtypes("reg_ctl_list",1,"name")="reg_ctl_list.db_tn" + Set gtmtypes("reg_ctl_list",1,"off")=0 + Set gtmtypes("reg_ctl_list",1,"len")=8 + Set gtmtypes("reg_ctl_list",1,"type")="uint64_t" + Set gtmtypfldindx("reg_ctl_list","db_tn")=1 + Set gtmtypes("reg_ctl_list",2,"name")="reg_ctl_list.csd" + Set gtmtypes("reg_ctl_list",2,"off")=8 + Set gtmtypes("reg_ctl_list",2,"len")=4 + Set gtmtypes("reg_ctl_list",2,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","csd")=2 + Set gtmtypes("reg_ctl_list",3,"name")="reg_ctl_list.fill0" + Set gtmtypes("reg_ctl_list",3,"off")=12 + Set gtmtypes("reg_ctl_list",3,"len")=4 + Set gtmtypes("reg_ctl_list",3,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","fill0")=3 + Set gtmtypes("reg_ctl_list",4,"name")="reg_ctl_list.gd" + Set gtmtypes("reg_ctl_list",4,"off")=16 + Set gtmtypes("reg_ctl_list",4,"len")=4 + Set gtmtypes("reg_ctl_list",4,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gd")=4 + Set gtmtypes("reg_ctl_list",5,"name")="reg_ctl_list.csa" + Set gtmtypes("reg_ctl_list",5,"off")=20 + Set gtmtypes("reg_ctl_list",5,"len")=4 + Set gtmtypes("reg_ctl_list",5,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","csa")=5 + Set gtmtypes("reg_ctl_list",6,"name")="reg_ctl_list.sgm_info_ptr" + Set gtmtypes("reg_ctl_list",6,"off")=24 + Set gtmtypes("reg_ctl_list",6,"len")=4 + Set gtmtypes("reg_ctl_list",6,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","sgm_info_ptr")=6 + Set gtmtypes("reg_ctl_list",7,"name")="reg_ctl_list.db_ctl" + Set gtmtypes("reg_ctl_list",7,"off")=28 + Set gtmtypes("reg_ctl_list",7,"len")=4 + Set gtmtypes("reg_ctl_list",7,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","db_ctl")=7 + Set gtmtypes("reg_ctl_list",8,"name")="reg_ctl_list.jctl" + Set gtmtypes("reg_ctl_list",8,"off")=32 + Set gtmtypes("reg_ctl_list",8,"len")=4 + Set gtmtypes("reg_ctl_list",8,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl")=8 + Set gtmtypes("reg_ctl_list",9,"name")="reg_ctl_list.jctl_head" + Set gtmtypes("reg_ctl_list",9,"off")=36 + Set gtmtypes("reg_ctl_list",9,"len")=4 + Set gtmtypes("reg_ctl_list",9,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_head")=9 + Set gtmtypes("reg_ctl_list",10,"name")="reg_ctl_list.jctl_apply_pblk" + Set gtmtypes("reg_ctl_list",10,"off")=40 + Set gtmtypes("reg_ctl_list",10,"len")=4 + Set gtmtypes("reg_ctl_list",10,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_apply_pblk")=10 + Set gtmtypes("reg_ctl_list",11,"name")="reg_ctl_list.jctl_turn_around" + Set gtmtypes("reg_ctl_list",11,"off")=44 + Set gtmtypes("reg_ctl_list",11,"len")=4 + Set gtmtypes("reg_ctl_list",11,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_turn_around")=11 + Set gtmtypes("reg_ctl_list",12,"name")="reg_ctl_list.jctl_alt_head" + Set gtmtypes("reg_ctl_list",12,"off")=48 + Set gtmtypes("reg_ctl_list",12,"len")=4 + Set gtmtypes("reg_ctl_list",12,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_alt_head")=12 + Set gtmtypes("reg_ctl_list",13,"name")="reg_ctl_list.jctl_error" + Set gtmtypes("reg_ctl_list",13,"off")=52 + Set gtmtypes("reg_ctl_list",13,"len")=4 + Set gtmtypes("reg_ctl_list",13,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jctl_error")=13 + Set gtmtypes("reg_ctl_list",14,"name")="reg_ctl_list.gvntab" + Set gtmtypes("reg_ctl_list",14,"off")=56 + Set gtmtypes("reg_ctl_list",14,"len")=56 + Set gtmtypes("reg_ctl_list",14,"type")="hash_table_mname" + Set gtmtypfldindx("reg_ctl_list","gvntab")=14 + Set gtmtypes("reg_ctl_list",15,"name")="reg_ctl_list.gvntab.base" + Set gtmtypes("reg_ctl_list",15,"off")=56 + Set gtmtypes("reg_ctl_list",15,"len")=4 + Set gtmtypes("reg_ctl_list",15,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.base")=15 + Set gtmtypes("reg_ctl_list",16,"name")="reg_ctl_list.gvntab.top" + Set gtmtypes("reg_ctl_list",16,"off")=60 + Set gtmtypes("reg_ctl_list",16,"len")=4 + Set gtmtypes("reg_ctl_list",16,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.top")=16 + Set gtmtypes("reg_ctl_list",17,"name")="reg_ctl_list.gvntab.size" + Set gtmtypes("reg_ctl_list",17,"off")=64 + Set gtmtypes("reg_ctl_list",17,"len")=4 + Set gtmtypes("reg_ctl_list",17,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.size")=17 + Set gtmtypes("reg_ctl_list",18,"name")="reg_ctl_list.gvntab.initial_size" + Set gtmtypes("reg_ctl_list",18,"off")=68 + Set gtmtypes("reg_ctl_list",18,"len")=4 + Set gtmtypes("reg_ctl_list",18,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.initial_size")=18 + Set gtmtypes("reg_ctl_list",19,"name")="reg_ctl_list.gvntab.spare_base" + Set gtmtypes("reg_ctl_list",19,"off")=72 + Set gtmtypes("reg_ctl_list",19,"len")=4 + Set gtmtypes("reg_ctl_list",19,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.spare_base")=19 + Set gtmtypes("reg_ctl_list",20,"name")="reg_ctl_list.gvntab.spare_base_size" + Set gtmtypes("reg_ctl_list",20,"off")=76 + Set gtmtypes("reg_ctl_list",20,"len")=4 + Set gtmtypes("reg_ctl_list",20,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.spare_base_size")=20 + Set gtmtypes("reg_ctl_list",21,"name")="reg_ctl_list.gvntab.dont_compact" + Set gtmtypes("reg_ctl_list",21,"off")=80 + Set gtmtypes("reg_ctl_list",21,"len")=4 + Set gtmtypes("reg_ctl_list",21,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.dont_compact")=21 + Set gtmtypes("reg_ctl_list",22,"name")="reg_ctl_list.gvntab.dont_keep_spare_table" + Set gtmtypes("reg_ctl_list",22,"off")=84 + Set gtmtypes("reg_ctl_list",22,"len")=4 + Set gtmtypes("reg_ctl_list",22,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.dont_keep_spare_table")=22 + Set gtmtypes("reg_ctl_list",23,"name")="reg_ctl_list.gvntab.defer_base_release" + Set gtmtypes("reg_ctl_list",23,"off")=88 + Set gtmtypes("reg_ctl_list",23,"len")=4 + Set gtmtypes("reg_ctl_list",23,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","gvntab.defer_base_release")=23 + Set gtmtypes("reg_ctl_list",24,"name")="reg_ctl_list.gvntab.count" + Set gtmtypes("reg_ctl_list",24,"off")=92 + Set gtmtypes("reg_ctl_list",24,"len")=4 + Set gtmtypes("reg_ctl_list",24,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.count")=24 + Set gtmtypes("reg_ctl_list",25,"name")="reg_ctl_list.gvntab.del_count" + Set gtmtypes("reg_ctl_list",25,"off")=96 + Set gtmtypes("reg_ctl_list",25,"len")=4 + Set gtmtypes("reg_ctl_list",25,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.del_count")=25 + Set gtmtypes("reg_ctl_list",26,"name")="reg_ctl_list.gvntab.exp_trigger_size" + Set gtmtypes("reg_ctl_list",26,"off")=100 + Set gtmtypes("reg_ctl_list",26,"len")=4 + Set gtmtypes("reg_ctl_list",26,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.exp_trigger_size")=26 + Set gtmtypes("reg_ctl_list",27,"name")="reg_ctl_list.gvntab.cmp_trigger_size" + Set gtmtypes("reg_ctl_list",27,"off")=104 + Set gtmtypes("reg_ctl_list",27,"len")=4 + Set gtmtypes("reg_ctl_list",27,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","gvntab.cmp_trigger_size")=27 + Set gtmtypes("reg_ctl_list",28,"name")="reg_ctl_list.gvntab.entry_passed_thru" + Set gtmtypes("reg_ctl_list",28,"off")=108 + Set gtmtypes("reg_ctl_list",28,"len")=4 + Set gtmtypes("reg_ctl_list",28,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","gvntab.entry_passed_thru")=28 + Set gtmtypes("reg_ctl_list",29,"name")="reg_ctl_list.lvrec_time" + Set gtmtypes("reg_ctl_list",29,"off")=112 + Set gtmtypes("reg_ctl_list",29,"len")=4 + Set gtmtypes("reg_ctl_list",29,"type")="unsigned-int" + Set gtmtypfldindx("reg_ctl_list","lvrec_time")=29 + Set gtmtypes("reg_ctl_list",30,"name")="reg_ctl_list.jnl_state" + Set gtmtypes("reg_ctl_list",30,"off")=116 + Set gtmtypes("reg_ctl_list",30,"len")=4 + Set gtmtypes("reg_ctl_list",30,"type")="int" + Set gtmtypfldindx("reg_ctl_list","jnl_state")=30 + Set gtmtypes("reg_ctl_list",31,"name")="reg_ctl_list.repl_state" + Set gtmtypes("reg_ctl_list",31,"off")=120 + Set gtmtypes("reg_ctl_list",31,"len")=4 + Set gtmtypes("reg_ctl_list",31,"type")="int" + Set gtmtypfldindx("reg_ctl_list","repl_state")=31 + Set gtmtypes("reg_ctl_list",32,"name")="reg_ctl_list.lookback_count" + Set gtmtypes("reg_ctl_list",32,"off")=124 + Set gtmtypes("reg_ctl_list",32,"len")=4 + Set gtmtypes("reg_ctl_list",32,"type")="int" + Set gtmtypfldindx("reg_ctl_list","lookback_count")=32 + Set gtmtypes("reg_ctl_list",33,"name")="reg_ctl_list.before_image" + Set gtmtypes("reg_ctl_list",33,"off")=128 + Set gtmtypes("reg_ctl_list",33,"len")=4 + Set gtmtypes("reg_ctl_list",33,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","before_image")=33 + Set gtmtypes("reg_ctl_list",34,"name")="reg_ctl_list.standalone" + Set gtmtypes("reg_ctl_list",34,"off")=132 + Set gtmtypes("reg_ctl_list",34,"len")=4 + Set gtmtypes("reg_ctl_list",34,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","standalone")=34 + Set gtmtypes("reg_ctl_list",35,"name")="reg_ctl_list.recov_interrupted" + Set gtmtypes("reg_ctl_list",35,"off")=136 + Set gtmtypes("reg_ctl_list",35,"len")=4 + Set gtmtypes("reg_ctl_list",35,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","recov_interrupted")=35 + Set gtmtypes("reg_ctl_list",36,"name")="reg_ctl_list.jfh_recov_interrupted" + Set gtmtypes("reg_ctl_list",36,"off")=140 + Set gtmtypes("reg_ctl_list",36,"len")=4 + Set gtmtypes("reg_ctl_list",36,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","jfh_recov_interrupted")=36 + Set gtmtypes("reg_ctl_list",37,"name")="reg_ctl_list.blks_to_upgrd_adjust" + Set gtmtypes("reg_ctl_list",37,"off")=144 + Set gtmtypes("reg_ctl_list",37,"len")=4 + Set gtmtypes("reg_ctl_list",37,"type")="int" + Set gtmtypfldindx("reg_ctl_list","blks_to_upgrd_adjust")=37 + Set gtmtypes("reg_ctl_list",38,"name")="reg_ctl_list.mur_plst" + Set gtmtypes("reg_ctl_list",38,"off")=148 + Set gtmtypes("reg_ctl_list",38,"len")=4 + Set gtmtypes("reg_ctl_list",38,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","mur_plst")=38 + Set gtmtypes("reg_ctl_list",39,"name")="reg_ctl_list.mur_desc" + Set gtmtypes("reg_ctl_list",39,"off")=152 + Set gtmtypes("reg_ctl_list",39,"len")=4 + Set gtmtypes("reg_ctl_list",39,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","mur_desc")=39 + Set gtmtypes("reg_ctl_list",40,"name")="reg_ctl_list.db_updated" + Set gtmtypes("reg_ctl_list",40,"off")=156 + Set gtmtypes("reg_ctl_list",40,"len")=4 + Set gtmtypes("reg_ctl_list",40,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","db_updated")=40 + Set gtmtypes("reg_ctl_list",41,"name")="reg_ctl_list.forw_eof_seen" + Set gtmtypes("reg_ctl_list",41,"off")=160 + Set gtmtypes("reg_ctl_list",41,"len")=4 + Set gtmtypes("reg_ctl_list",41,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","forw_eof_seen")=41 + Set gtmtypes("reg_ctl_list",42,"name")="reg_ctl_list.process_losttn" + Set gtmtypes("reg_ctl_list",42,"off")=164 + Set gtmtypes("reg_ctl_list",42,"len")=4 + Set gtmtypes("reg_ctl_list",42,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","process_losttn")=42 + Set gtmtypes("reg_ctl_list",43,"name")="reg_ctl_list.last_tn" + Set gtmtypes("reg_ctl_list",43,"off")=168 + Set gtmtypes("reg_ctl_list",43,"len")=8 + Set gtmtypes("reg_ctl_list",43,"type")="uint64_t" + Set gtmtypfldindx("reg_ctl_list","last_tn")=43 + Set gtmtypes("reg_ctl_list",44,"name")="reg_ctl_list.next_rctl" + Set gtmtypes("reg_ctl_list",44,"off")=176 + Set gtmtypes("reg_ctl_list",44,"len")=4 + Set gtmtypes("reg_ctl_list",44,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","next_rctl")=44 + Set gtmtypes("reg_ctl_list",45,"name")="reg_ctl_list.prev_rctl" + Set gtmtypes("reg_ctl_list",45,"off")=180 + Set gtmtypes("reg_ctl_list",45,"len")=4 + Set gtmtypes("reg_ctl_list",45,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","prev_rctl")=45 + Set gtmtypes("reg_ctl_list",46,"name")="reg_ctl_list.next_tp_rctl" + Set gtmtypes("reg_ctl_list",46,"off")=184 + Set gtmtypes("reg_ctl_list",46,"len")=4 + Set gtmtypes("reg_ctl_list",46,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","next_tp_rctl")=46 + Set gtmtypes("reg_ctl_list",47,"name")="reg_ctl_list.prev_tp_rctl" + Set gtmtypes("reg_ctl_list",47,"off")=188 + Set gtmtypes("reg_ctl_list",47,"len")=4 + Set gtmtypes("reg_ctl_list",47,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","prev_tp_rctl")=47 + Set gtmtypes("reg_ctl_list",48,"name")="reg_ctl_list.forw_multi" + Set gtmtypes("reg_ctl_list",48,"off")=192 + Set gtmtypes("reg_ctl_list",48,"len")=4 + Set gtmtypes("reg_ctl_list",48,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","forw_multi")=48 + Set gtmtypes("reg_ctl_list",49,"name")="reg_ctl_list.initialized" + Set gtmtypes("reg_ctl_list",49,"off")=196 + Set gtmtypes("reg_ctl_list",49,"len")=4 + Set gtmtypes("reg_ctl_list",49,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","initialized")=49 + Set gtmtypes("reg_ctl_list",50,"name")="reg_ctl_list.db_present" + Set gtmtypes("reg_ctl_list",50,"off")=200 + Set gtmtypes("reg_ctl_list",50,"len")=4 + Set gtmtypes("reg_ctl_list",50,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","db_present")=50 + Set gtmtypes("reg_ctl_list",51,"name")="reg_ctl_list.this_pid_is_owner" + Set gtmtypes("reg_ctl_list",51,"off")=204 + Set gtmtypes("reg_ctl_list",51,"len")=4 + Set gtmtypes("reg_ctl_list",51,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","this_pid_is_owner")=51 + Set gtmtypes("reg_ctl_list",52,"name")="reg_ctl_list.file_info" + Set gtmtypes("reg_ctl_list",52,"off")=208 + Set gtmtypes("reg_ctl_list",52,"len")=12 + Set gtmtypes("reg_ctl_list",52,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","file_info")=52 + Set gtmtypes("reg_ctl_list",52,"dim")=3 + Set gtmtypes("reg_ctl_list",53,"name")="reg_ctl_list.extr_file_created" + Set gtmtypes("reg_ctl_list",53,"off")=220 + Set gtmtypes("reg_ctl_list",53,"len")=12 + Set gtmtypes("reg_ctl_list",53,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","extr_file_created")=53 + Set gtmtypes("reg_ctl_list",53,"dim")=3 + Set gtmtypes("reg_ctl_list",54,"name")="reg_ctl_list.jnlext_multi_list_size" + Set gtmtypes("reg_ctl_list",54,"off")=232 + Set gtmtypes("reg_ctl_list",54,"len")=12 + Set gtmtypes("reg_ctl_list",54,"type")="int" + Set gtmtypfldindx("reg_ctl_list","jnlext_multi_list_size")=54 + Set gtmtypes("reg_ctl_list",54,"dim")=3 + Set gtmtypes("reg_ctl_list",55,"name")="reg_ctl_list.jnlext_multi_list" + Set gtmtypes("reg_ctl_list",55,"off")=244 + Set gtmtypes("reg_ctl_list",55,"len")=12 + Set gtmtypes("reg_ctl_list",55,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jnlext_multi_list")=55 + Set gtmtypes("reg_ctl_list",55,"dim")=3 + Set gtmtypes("reg_ctl_list",56,"name")="reg_ctl_list.last_jext_rec" + Set gtmtypes("reg_ctl_list",56,"off")=256 + Set gtmtypes("reg_ctl_list",56,"len")=12 + Set gtmtypes("reg_ctl_list",56,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","last_jext_rec")=56 + Set gtmtypes("reg_ctl_list",56,"dim")=3 + Set gtmtypes("reg_ctl_list",57,"name")="reg_ctl_list.jnlext_shm_list" + Set gtmtypes("reg_ctl_list",57,"off")=268 + Set gtmtypes("reg_ctl_list",57,"len")=12 + Set gtmtypes("reg_ctl_list",57,"type")="addr" + Set gtmtypfldindx("reg_ctl_list","jnlext_shm_list")=57 + Set gtmtypes("reg_ctl_list",57,"dim")=3 + Set gtmtypes("reg_ctl_list",58,"name")="reg_ctl_list.extr_fn_len_orig" + Set gtmtypes("reg_ctl_list",58,"off")=280 + Set gtmtypes("reg_ctl_list",58,"len")=12 + Set gtmtypes("reg_ctl_list",58,"type")="int" + Set gtmtypfldindx("reg_ctl_list","extr_fn_len_orig")=58 + Set gtmtypes("reg_ctl_list",58,"dim")=3 + Set gtmtypes("reg_ctl_list",59,"name")="reg_ctl_list.last_jext_logical_rec" + Set gtmtypes("reg_ctl_list",59,"off")=292 + Set gtmtypes("reg_ctl_list",59,"len")=12 + Set gtmtypes("reg_ctl_list",59,"type")="boolean_t" + Set gtmtypfldindx("reg_ctl_list","last_jext_logical_rec")=59 + Set gtmtypes("reg_ctl_list",59,"dim")=3 + ; + Set gtmtypes("reg_jrec_info_t")="struct" + Set gtmtypes("reg_jrec_info_t",0)=2 + Set gtmtypes("reg_jrec_info_t","len")=8 + Set gtmtypes("reg_jrec_info_t",1,"name")="reg_jrec_info_t.working_offset" + Set gtmtypes("reg_jrec_info_t",1,"off")=0 + Set gtmtypes("reg_jrec_info_t",1,"len")=4 + Set gtmtypes("reg_jrec_info_t",1,"type")="long" + Set gtmtypfldindx("reg_jrec_info_t","working_offset")=1 + Set gtmtypes("reg_jrec_info_t",2,"name")="reg_jrec_info_t.end" + Set gtmtypes("reg_jrec_info_t",2,"off")=4 + Set gtmtypes("reg_jrec_info_t",2,"len")=4 + Set gtmtypes("reg_jrec_info_t",2,"type")="long" + Set gtmtypfldindx("reg_jrec_info_t","end")=2 + ; + Set gtmtypes("relinkctl_data")="struct" + Set gtmtypes("relinkctl_data",0)=10 + Set gtmtypes("relinkctl_data","len")=292 + Set gtmtypes("relinkctl_data",1,"name")="relinkctl_data.n_records" + Set gtmtypes("relinkctl_data",1,"off")=0 + Set gtmtypes("relinkctl_data",1,"len")=4 + Set gtmtypes("relinkctl_data",1,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","n_records")=1 + Set gtmtypes("relinkctl_data",2,"name")="relinkctl_data.nattached" + Set gtmtypes("relinkctl_data",2,"off")=4 + Set gtmtypes("relinkctl_data",2,"len")=4 + Set gtmtypes("relinkctl_data",2,"type")="int" + Set gtmtypfldindx("relinkctl_data","nattached")=2 + Set gtmtypes("relinkctl_data",3,"name")="relinkctl_data.relinkctl_shmid" + Set gtmtypes("relinkctl_data",3,"off")=8 + Set gtmtypes("relinkctl_data",3,"len")=4 + Set gtmtypes("relinkctl_data",3,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_shmid")=3 + Set gtmtypes("relinkctl_data",4,"name")="relinkctl_data.relinkctl_shmlen" + Set gtmtypes("relinkctl_data",4,"off")=12 + Set gtmtypes("relinkctl_data",4,"len")=4 + Set gtmtypes("relinkctl_data",4,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","relinkctl_shmlen")=4 + Set gtmtypes("relinkctl_data",5,"name")="relinkctl_data.file_deleted" + Set gtmtypes("relinkctl_data",5,"off")=16 + Set gtmtypes("relinkctl_data",5,"len")=4 + Set gtmtypes("relinkctl_data",5,"type")="int" + Set gtmtypfldindx("relinkctl_data","file_deleted")=5 + Set gtmtypes("relinkctl_data",6,"name")="relinkctl_data.initialized" + Set gtmtypes("relinkctl_data",6,"off")=20 + Set gtmtypes("relinkctl_data",6,"len")=4 + Set gtmtypes("relinkctl_data",6,"type")="unsigned-int" + Set gtmtypfldindx("relinkctl_data","initialized")=6 + Set gtmtypes("relinkctl_data",7,"name")="relinkctl_data.zro_entry_name" + Set gtmtypes("relinkctl_data",7,"off")=24 + Set gtmtypes("relinkctl_data",7,"len")=256 + Set gtmtypes("relinkctl_data",7,"type")="char" + Set gtmtypfldindx("relinkctl_data","zro_entry_name")=7 + Set gtmtypes("relinkctl_data",8,"name")="relinkctl_data.zro_entry_name_len" + Set gtmtypes("relinkctl_data",8,"off")=280 + Set gtmtypes("relinkctl_data",8,"len")=4 + Set gtmtypes("relinkctl_data",8,"type")="int" + Set gtmtypfldindx("relinkctl_data","zro_entry_name_len")=8 + Set gtmtypes("relinkctl_data",9,"name")="relinkctl_data.relinkctl_max_rtn_entries" + Set gtmtypes("relinkctl_data",9,"off")=284 + Set gtmtypes("relinkctl_data",9,"len")=4 + Set gtmtypes("relinkctl_data",9,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_max_rtn_entries")=9 + Set gtmtypes("relinkctl_data",10,"name")="relinkctl_data.relinkctl_hash_buckets" + Set gtmtypes("relinkctl_data",10,"off")=288 + Set gtmtypes("relinkctl_data",10,"len")=4 + Set gtmtypes("relinkctl_data",10,"type")="int" + Set gtmtypfldindx("relinkctl_data","relinkctl_hash_buckets")=10 + ; + Set gtmtypes("relinkrec_t")="struct" + Set gtmtypes("relinkrec_t",0)=16 + Set gtmtypes("relinkrec_t","len")=88 + Set gtmtypes("relinkrec_t",1,"name")="relinkrec_t.rtnname_fixed" + Set gtmtypes("relinkrec_t",1,"off")=0 + Set gtmtypes("relinkrec_t",1,"len")=32 + Set gtmtypes("relinkrec_t",1,"type")="mident_fixed" + Set gtmtypfldindx("relinkrec_t","rtnname_fixed")=1 + Set gtmtypes("relinkrec_t",2,"name")="relinkrec_t.rtnname_fixed.c" + Set gtmtypes("relinkrec_t",2,"off")=0 + Set gtmtypes("relinkrec_t",2,"len")=32 + Set gtmtypes("relinkrec_t",2,"type")="char" + Set gtmtypfldindx("relinkrec_t","rtnname_fixed.c")=2 + Set gtmtypes("relinkrec_t",3,"name")="relinkrec_t.cycle" + Set gtmtypes("relinkrec_t",3,"off")=32 + Set gtmtypes("relinkrec_t",3,"len")=4 + Set gtmtypes("relinkrec_t",3,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","cycle")=3 + Set gtmtypes("relinkrec_t",4,"name")="relinkrec_t.hashindex_fl" + Set gtmtypes("relinkrec_t",4,"off")=36 + Set gtmtypes("relinkrec_t",4,"len")=4 + Set gtmtypes("relinkrec_t",4,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","hashindex_fl")=4 + Set gtmtypes("relinkrec_t",5,"name")="relinkrec_t.numvers" + Set gtmtypes("relinkrec_t",5,"off")=40 + Set gtmtypes("relinkrec_t",5,"len")=4 + Set gtmtypes("relinkrec_t",5,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","numvers")=5 + Set gtmtypes("relinkrec_t",6,"name")="relinkrec_t.filler_8byte_align" + Set gtmtypes("relinkrec_t",6,"off")=44 + Set gtmtypes("relinkrec_t",6,"len")=4 + Set gtmtypes("relinkrec_t",6,"type")="unsigned-int" + Set gtmtypfldindx("relinkrec_t","filler_8byte_align")=6 + Set gtmtypes("relinkrec_t",7,"name")="relinkrec_t.objLen" + Set gtmtypes("relinkrec_t",7,"off")=48 + Set gtmtypes("relinkrec_t",7,"len")=8 + Set gtmtypes("relinkrec_t",7,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","objLen")=7 + Set gtmtypes("relinkrec_t",8,"name")="relinkrec_t.usedLen" + Set gtmtypes("relinkrec_t",8,"off")=56 + Set gtmtypes("relinkrec_t",8,"len")=8 + Set gtmtypes("relinkrec_t",8,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","usedLen")=8 + Set gtmtypes("relinkrec_t",9,"name")="relinkrec_t.rtnobj_shm_offset" + Set gtmtypes("relinkrec_t",9,"off")=64 + Set gtmtypes("relinkrec_t",9,"len")=8 + Set gtmtypes("relinkrec_t",9,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_shm_offset")=9 + Set gtmtypes("relinkrec_t",10,"name")="relinkrec_t.rtnobj_latch" + Set gtmtypes("relinkrec_t",10,"off")=72 + Set gtmtypes("relinkrec_t",10,"len")=8 + Set gtmtypes("relinkrec_t",10,"type")="global_latch_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch")=10 + Set gtmtypes("relinkrec_t",11,"name")="relinkrec_t.rtnobj_latch.u" + Set gtmtypes("relinkrec_t",11,"off")=72 + Set gtmtypes("relinkrec_t",11,"len")=8 + Set gtmtypes("relinkrec_t",11,"type")="union" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u")=11 + Set gtmtypes("relinkrec_t",12,"name")="relinkrec_t.rtnobj_latch.u.pid_imgcnt" + Set gtmtypes("relinkrec_t",12,"off")=72 + Set gtmtypes("relinkrec_t",12,"len")=8 + Set gtmtypes("relinkrec_t",12,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.pid_imgcnt")=12 + Set gtmtypes("relinkrec_t",13,"name")="relinkrec_t.rtnobj_latch.u.parts" + Set gtmtypes("relinkrec_t",13,"off")=72 + Set gtmtypes("relinkrec_t",13,"len")=8 + Set gtmtypes("relinkrec_t",13,"type")="struct" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts")=13 + Set gtmtypes("relinkrec_t",14,"name")="relinkrec_t.rtnobj_latch.u.parts.latch_pid" + Set gtmtypes("relinkrec_t",14,"off")=72 + Set gtmtypes("relinkrec_t",14,"len")=4 + Set gtmtypes("relinkrec_t",14,"type")="int" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts.latch_pid")=14 + Set gtmtypes("relinkrec_t",15,"name")="relinkrec_t.rtnobj_latch.u.parts.latch_word" + Set gtmtypes("relinkrec_t",15,"off")=76 + Set gtmtypes("relinkrec_t",15,"len")=4 + Set gtmtypes("relinkrec_t",15,"type")="int" + Set gtmtypfldindx("relinkrec_t","rtnobj_latch.u.parts.latch_word")=15 + Set gtmtypes("relinkrec_t",16,"name")="relinkrec_t.objhash" + Set gtmtypes("relinkrec_t",16,"off")=80 + Set gtmtypes("relinkrec_t",16,"len")=8 + Set gtmtypes("relinkrec_t",16,"type")="uint64_t" + Set gtmtypfldindx("relinkrec_t","objhash")=16 + ; + Set gtmtypes("relinkshm_hdr_t")="struct" + Set gtmtypes("relinkshm_hdr_t",0)=21 + Set gtmtypes("relinkshm_hdr_t","len")=21024 + Set gtmtypes("relinkshm_hdr_t",1,"name")="relinkshm_hdr_t.relinkctl_fname" + Set gtmtypes("relinkshm_hdr_t",1,"off")=0 + Set gtmtypes("relinkshm_hdr_t",1,"len")=4097 + Set gtmtypes("relinkshm_hdr_t",1,"type")="char" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_fname")=1 + Set gtmtypes("relinkshm_hdr_t",2,"name")="relinkshm_hdr_t.min_shm_index" + Set gtmtypes("relinkshm_hdr_t",2,"off")=4100 + Set gtmtypes("relinkshm_hdr_t",2,"len")=4 + Set gtmtypes("relinkshm_hdr_t",2,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","min_shm_index")=2 + Set gtmtypes("relinkshm_hdr_t",3,"name")="relinkshm_hdr_t.rtnobj_min_shm_index" + Set gtmtypes("relinkshm_hdr_t",3,"off")=4104 + Set gtmtypes("relinkshm_hdr_t",3,"len")=4 + Set gtmtypes("relinkshm_hdr_t",3,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_min_shm_index")=3 + Set gtmtypes("relinkshm_hdr_t",4,"name")="relinkshm_hdr_t.rtnobj_max_shm_index" + Set gtmtypes("relinkshm_hdr_t",4,"off")=4108 + Set gtmtypes("relinkshm_hdr_t",4,"len")=4 + Set gtmtypes("relinkshm_hdr_t",4,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_max_shm_index")=4 + Set gtmtypes("relinkshm_hdr_t",5,"name")="relinkshm_hdr_t.rndwn_adjusted_nattch" + Set gtmtypes("relinkshm_hdr_t",5,"off")=4112 + Set gtmtypes("relinkshm_hdr_t",5,"len")=4 + Set gtmtypes("relinkshm_hdr_t",5,"type")="boolean_t" + Set gtmtypfldindx("relinkshm_hdr_t","rndwn_adjusted_nattch")=5 + Set gtmtypes("relinkshm_hdr_t",6,"name")="relinkshm_hdr_t.skip_rundown_check" + Set gtmtypes("relinkshm_hdr_t",6,"off")=4116 + Set gtmtypes("relinkshm_hdr_t",6,"len")=4 + Set gtmtypes("relinkshm_hdr_t",6,"type")="boolean_t" + Set gtmtypfldindx("relinkshm_hdr_t","skip_rundown_check")=6 + Set gtmtypes("relinkshm_hdr_t",7,"name")="relinkshm_hdr_t.rtnobj_shmhdr" + Set gtmtypes("relinkshm_hdr_t",7,"off")=4120 + Set gtmtypes("relinkshm_hdr_t",7,"len")=16872 + Set gtmtypes("relinkshm_hdr_t",7,"type")="rtnobjshm_hdr_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr")=7 + Set gtmtypes("relinkshm_hdr_t",7,"dim")=38 + Set gtmtypes("relinkshm_hdr_t",8,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].freeList" + Set gtmtypes("relinkshm_hdr_t",8,"off")=4120 + Set gtmtypes("relinkshm_hdr_t",8,"len")=408 + Set gtmtypes("relinkshm_hdr_t",8,"type")="que_ent" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].freeList")=8 + Set gtmtypes("relinkshm_hdr_t",8,"dim")=51 + Set gtmtypes("relinkshm_hdr_t",9,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_min_free_index" + Set gtmtypes("relinkshm_hdr_t",9,"off")=4528 + Set gtmtypes("relinkshm_hdr_t",9,"len")=4 + Set gtmtypes("relinkshm_hdr_t",9,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_min_free_index")=9 + Set gtmtypes("relinkshm_hdr_t",10,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_max_free_index" + Set gtmtypes("relinkshm_hdr_t",10,"off")=4532 + Set gtmtypes("relinkshm_hdr_t",10,"len")=4 + Set gtmtypes("relinkshm_hdr_t",10,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_max_free_index")=10 + Set gtmtypes("relinkshm_hdr_t",11,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].rtnobj_shmid" + Set gtmtypes("relinkshm_hdr_t",11,"off")=4536 + Set gtmtypes("relinkshm_hdr_t",11,"len")=4 + Set gtmtypes("relinkshm_hdr_t",11,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].rtnobj_shmid")=11 + Set gtmtypes("relinkshm_hdr_t",12,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].real_len" + Set gtmtypes("relinkshm_hdr_t",12,"off")=4540 + Set gtmtypes("relinkshm_hdr_t",12,"len")=8 + Set gtmtypes("relinkshm_hdr_t",12,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].real_len")=12 + Set gtmtypes("relinkshm_hdr_t",13,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].used_len" + Set gtmtypes("relinkshm_hdr_t",13,"off")=4548 + Set gtmtypes("relinkshm_hdr_t",13,"len")=8 + Set gtmtypes("relinkshm_hdr_t",13,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].used_len")=13 + Set gtmtypes("relinkshm_hdr_t",14,"name")="relinkshm_hdr_t.rtnobj_shmhdr[0].shm_len" + Set gtmtypes("relinkshm_hdr_t",14,"off")=4556 + Set gtmtypes("relinkshm_hdr_t",14,"len")=8 + Set gtmtypes("relinkshm_hdr_t",14,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","rtnobj_shmhdr[0].shm_len")=14 + Set gtmtypes("relinkshm_hdr_t",15,"name")="relinkshm_hdr_t.relinkctl_latch" + Set gtmtypes("relinkshm_hdr_t",15,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",15,"len")=8 + Set gtmtypes("relinkshm_hdr_t",15,"type")="global_latch_t" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch")=15 + Set gtmtypes("relinkshm_hdr_t",16,"name")="relinkshm_hdr_t.relinkctl_latch.u" + Set gtmtypes("relinkshm_hdr_t",16,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",16,"len")=8 + Set gtmtypes("relinkshm_hdr_t",16,"type")="union" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u")=16 + Set gtmtypes("relinkshm_hdr_t",17,"name")="relinkshm_hdr_t.relinkctl_latch.u.pid_imgcnt" + Set gtmtypes("relinkshm_hdr_t",17,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",17,"len")=8 + Set gtmtypes("relinkshm_hdr_t",17,"type")="uint64_t" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.pid_imgcnt")=17 + Set gtmtypes("relinkshm_hdr_t",18,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts" + Set gtmtypes("relinkshm_hdr_t",18,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",18,"len")=8 + Set gtmtypes("relinkshm_hdr_t",18,"type")="struct" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts")=18 + Set gtmtypes("relinkshm_hdr_t",19,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts.latch_pid" + Set gtmtypes("relinkshm_hdr_t",19,"off")=20992 + Set gtmtypes("relinkshm_hdr_t",19,"len")=4 + Set gtmtypes("relinkshm_hdr_t",19,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts.latch_pid")=19 + Set gtmtypes("relinkshm_hdr_t",20,"name")="relinkshm_hdr_t.relinkctl_latch.u.parts.latch_word" + Set gtmtypes("relinkshm_hdr_t",20,"off")=20996 + Set gtmtypes("relinkshm_hdr_t",20,"len")=4 + Set gtmtypes("relinkshm_hdr_t",20,"type")="int" + Set gtmtypfldindx("relinkshm_hdr_t","relinkctl_latch.u.parts.latch_word")=20 + Set gtmtypes("relinkshm_hdr_t",21,"name")="relinkshm_hdr_t.fill_cacheline1" + Set gtmtypes("relinkshm_hdr_t",21,"off")=21000 + Set gtmtypes("relinkshm_hdr_t",21,"len")=24 + Set gtmtypes("relinkshm_hdr_t",21,"type")="char" + Set gtmtypfldindx("relinkshm_hdr_t","fill_cacheline1")=21 + ; + Set gtmtypes("repl_badtrans_msg_t")="struct" + Set gtmtypes("repl_badtrans_msg_t",0)=4 + Set gtmtypes("repl_badtrans_msg_t","len")=32 + Set gtmtypes("repl_badtrans_msg_t",1,"name")="repl_badtrans_msg_t.type" + Set gtmtypes("repl_badtrans_msg_t",1,"off")=0 + Set gtmtypes("repl_badtrans_msg_t",1,"len")=4 + Set gtmtypes("repl_badtrans_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_badtrans_msg_t","type")=1 + Set gtmtypes("repl_badtrans_msg_t",2,"name")="repl_badtrans_msg_t.len" + Set gtmtypes("repl_badtrans_msg_t",2,"off")=4 + Set gtmtypes("repl_badtrans_msg_t",2,"len")=4 + Set gtmtypes("repl_badtrans_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_badtrans_msg_t","len")=2 + Set gtmtypes("repl_badtrans_msg_t",3,"name")="repl_badtrans_msg_t.start_seqno" + Set gtmtypes("repl_badtrans_msg_t",3,"off")=8 + Set gtmtypes("repl_badtrans_msg_t",3,"len")=8 + Set gtmtypes("repl_badtrans_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_badtrans_msg_t","start_seqno")=3 + Set gtmtypes("repl_badtrans_msg_t",4,"name")="repl_badtrans_msg_t.filler_32" + Set gtmtypes("repl_badtrans_msg_t",4,"off")=16 + Set gtmtypes("repl_badtrans_msg_t",4,"len")=16 + Set gtmtypes("repl_badtrans_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_badtrans_msg_t","filler_32")=4 + ; + Set gtmtypes("repl_buff_desc")="struct" + Set gtmtypes("repl_buff_desc",0)=7 + Set gtmtypes("repl_buff_desc","len")=28 + Set gtmtypes("repl_buff_desc",1,"name")="repl_buff_desc.recbuff" + Set gtmtypes("repl_buff_desc",1,"off")=0 + Set gtmtypes("repl_buff_desc",1,"len")=4 + Set gtmtypes("repl_buff_desc",1,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","recbuff")=1 + Set gtmtypes("repl_buff_desc",2,"name")="repl_buff_desc.reclen" + Set gtmtypes("repl_buff_desc",2,"off")=4 + Set gtmtypes("repl_buff_desc",2,"len")=4 + Set gtmtypes("repl_buff_desc",2,"type")="int" + Set gtmtypfldindx("repl_buff_desc","reclen")=2 + Set gtmtypes("repl_buff_desc",3,"name")="repl_buff_desc.recaddr" + Set gtmtypes("repl_buff_desc",3,"off")=8 + Set gtmtypes("repl_buff_desc",3,"len")=4 + Set gtmtypes("repl_buff_desc",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","recaddr")=3 + Set gtmtypes("repl_buff_desc",4,"name")="repl_buff_desc.readaddr" + Set gtmtypes("repl_buff_desc",4,"off")=12 + Set gtmtypes("repl_buff_desc",4,"len")=4 + Set gtmtypes("repl_buff_desc",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","readaddr")=4 + Set gtmtypes("repl_buff_desc",5,"name")="repl_buff_desc.buffremaining" + Set gtmtypes("repl_buff_desc",5,"off")=16 + Set gtmtypes("repl_buff_desc",5,"len")=4 + Set gtmtypes("repl_buff_desc",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_desc","buffremaining")=5 + Set gtmtypes("repl_buff_desc",6,"name")="repl_buff_desc.base_buff" + Set gtmtypes("repl_buff_desc",6,"off")=20 + Set gtmtypes("repl_buff_desc",6,"len")=4 + Set gtmtypes("repl_buff_desc",6,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","base_buff")=6 + Set gtmtypes("repl_buff_desc",7,"name")="repl_buff_desc.base" + Set gtmtypes("repl_buff_desc",7,"off")=24 + Set gtmtypes("repl_buff_desc",7,"len")=4 + Set gtmtypes("repl_buff_desc",7,"type")="addr" + Set gtmtypfldindx("repl_buff_desc","base")=7 + ; + Set gtmtypes("repl_buff_t")="struct" + Set gtmtypes("repl_buff_t",0)=11 + Set gtmtypes("repl_buff_t","len")=68 + Set gtmtypes("repl_buff_t",1,"name")="repl_buff_t.buffindex" + Set gtmtypes("repl_buff_t",1,"off")=0 + Set gtmtypes("repl_buff_t",1,"len")=4 + Set gtmtypes("repl_buff_t",1,"type")="int" + Set gtmtypfldindx("repl_buff_t","buffindex")=1 + Set gtmtypes("repl_buff_t",2,"name")="repl_buff_t.buff" + Set gtmtypes("repl_buff_t",2,"off")=4 + Set gtmtypes("repl_buff_t",2,"len")=56 + Set gtmtypes("repl_buff_t",2,"type")="repl_buff_desc" + Set gtmtypfldindx("repl_buff_t","buff")=2 + Set gtmtypes("repl_buff_t",2,"dim")=2 + Set gtmtypes("repl_buff_t",3,"name")="repl_buff_t.buff[0].recbuff" + Set gtmtypes("repl_buff_t",3,"off")=4 + Set gtmtypes("repl_buff_t",3,"len")=4 + Set gtmtypes("repl_buff_t",3,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].recbuff")=3 + Set gtmtypes("repl_buff_t",4,"name")="repl_buff_t.buff[0].reclen" + Set gtmtypes("repl_buff_t",4,"off")=8 + Set gtmtypes("repl_buff_t",4,"len")=4 + Set gtmtypes("repl_buff_t",4,"type")="int" + Set gtmtypfldindx("repl_buff_t","buff[0].reclen")=4 + Set gtmtypes("repl_buff_t",5,"name")="repl_buff_t.buff[0].recaddr" + Set gtmtypes("repl_buff_t",5,"off")=12 + Set gtmtypes("repl_buff_t",5,"len")=4 + Set gtmtypes("repl_buff_t",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].recaddr")=5 + Set gtmtypes("repl_buff_t",6,"name")="repl_buff_t.buff[0].readaddr" + Set gtmtypes("repl_buff_t",6,"off")=16 + Set gtmtypes("repl_buff_t",6,"len")=4 + Set gtmtypes("repl_buff_t",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].readaddr")=6 + Set gtmtypes("repl_buff_t",7,"name")="repl_buff_t.buff[0].buffremaining" + Set gtmtypes("repl_buff_t",7,"off")=20 + Set gtmtypes("repl_buff_t",7,"len")=4 + Set gtmtypes("repl_buff_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_buff_t","buff[0].buffremaining")=7 + Set gtmtypes("repl_buff_t",8,"name")="repl_buff_t.buff[0].base_buff" + Set gtmtypes("repl_buff_t",8,"off")=24 + Set gtmtypes("repl_buff_t",8,"len")=4 + Set gtmtypes("repl_buff_t",8,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].base_buff")=8 + Set gtmtypes("repl_buff_t",9,"name")="repl_buff_t.buff[0].base" + Set gtmtypes("repl_buff_t",9,"off")=28 + Set gtmtypes("repl_buff_t",9,"len")=4 + Set gtmtypes("repl_buff_t",9,"type")="addr" + Set gtmtypfldindx("repl_buff_t","buff[0].base")=9 + Set gtmtypes("repl_buff_t",10,"name")="repl_buff_t.fc" + Set gtmtypes("repl_buff_t",10,"off")=60 + Set gtmtypes("repl_buff_t",10,"len")=4 + Set gtmtypes("repl_buff_t",10,"type")="addr" + Set gtmtypfldindx("repl_buff_t","fc")=10 + Set gtmtypes("repl_buff_t",11,"name")="repl_buff_t.backctl" + Set gtmtypes("repl_buff_t",11,"off")=64 + Set gtmtypes("repl_buff_t",11,"len")=4 + Set gtmtypes("repl_buff_t",11,"type")="addr" + Set gtmtypfldindx("repl_buff_t","backctl")=11 + ; + Set gtmtypes("repl_cmpinfo_msg_t")="struct" + Set gtmtypes("repl_cmpinfo_msg_t",0)=7 + Set gtmtypes("repl_cmpinfo_msg_t","len")=528 + Set gtmtypes("repl_cmpinfo_msg_t",1,"name")="repl_cmpinfo_msg_t.type" + Set gtmtypes("repl_cmpinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_cmpinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","type")=1 + Set gtmtypes("repl_cmpinfo_msg_t",2,"name")="repl_cmpinfo_msg_t.len" + Set gtmtypes("repl_cmpinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_cmpinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","len")=2 + Set gtmtypes("repl_cmpinfo_msg_t",3,"name")="repl_cmpinfo_msg_t.datalen" + Set gtmtypes("repl_cmpinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_cmpinfo_msg_t",3,"len")=4 + Set gtmtypes("repl_cmpinfo_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_cmpinfo_msg_t","datalen")=3 + Set gtmtypes("repl_cmpinfo_msg_t",4,"name")="repl_cmpinfo_msg_t.proto_ver" + Set gtmtypes("repl_cmpinfo_msg_t",4,"off")=12 + Set gtmtypes("repl_cmpinfo_msg_t",4,"len")=1 + Set gtmtypes("repl_cmpinfo_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","proto_ver")=4 + Set gtmtypes("repl_cmpinfo_msg_t",5,"name")="repl_cmpinfo_msg_t.filler_16" + Set gtmtypes("repl_cmpinfo_msg_t",5,"off")=13 + Set gtmtypes("repl_cmpinfo_msg_t",5,"len")=3 + Set gtmtypes("repl_cmpinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","filler_16")=5 + Set gtmtypes("repl_cmpinfo_msg_t",6,"name")="repl_cmpinfo_msg_t.data" + Set gtmtypes("repl_cmpinfo_msg_t",6,"off")=16 + Set gtmtypes("repl_cmpinfo_msg_t",6,"len")=256 + Set gtmtypes("repl_cmpinfo_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","data")=6 + Set gtmtypes("repl_cmpinfo_msg_t",7,"name")="repl_cmpinfo_msg_t.overflowdata" + Set gtmtypes("repl_cmpinfo_msg_t",7,"off")=272 + Set gtmtypes("repl_cmpinfo_msg_t",7,"len")=256 + Set gtmtypes("repl_cmpinfo_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_cmpinfo_msg_t","overflowdata")=7 + ; + Set gtmtypes("repl_cmpmsg_t")="struct" + Set gtmtypes("repl_cmpmsg_t",0)=5 + Set gtmtypes("repl_cmpmsg_t","len")=32 + Set gtmtypes("repl_cmpmsg_t",1,"name")="repl_cmpmsg_t.type" + Set gtmtypes("repl_cmpmsg_t",1,"off")=0 + Set gtmtypes("repl_cmpmsg_t",1,"len")=4 + Set gtmtypes("repl_cmpmsg_t",1,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","type")=1 + Set gtmtypes("repl_cmpmsg_t",2,"name")="repl_cmpmsg_t.len" + Set gtmtypes("repl_cmpmsg_t",2,"off")=4 + Set gtmtypes("repl_cmpmsg_t",2,"len")=4 + Set gtmtypes("repl_cmpmsg_t",2,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","len")=2 + Set gtmtypes("repl_cmpmsg_t",3,"name")="repl_cmpmsg_t.uncmplen" + Set gtmtypes("repl_cmpmsg_t",3,"off")=8 + Set gtmtypes("repl_cmpmsg_t",3,"len")=4 + Set gtmtypes("repl_cmpmsg_t",3,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","uncmplen")=3 + Set gtmtypes("repl_cmpmsg_t",4,"name")="repl_cmpmsg_t.cmplen" + Set gtmtypes("repl_cmpmsg_t",4,"off")=12 + Set gtmtypes("repl_cmpmsg_t",4,"len")=4 + Set gtmtypes("repl_cmpmsg_t",4,"type")="int" + Set gtmtypfldindx("repl_cmpmsg_t","cmplen")=4 + Set gtmtypes("repl_cmpmsg_t",5,"name")="repl_cmpmsg_t.msg" + Set gtmtypes("repl_cmpmsg_t",5,"off")=16 + Set gtmtypes("repl_cmpmsg_t",5,"len")=16 + Set gtmtypes("repl_cmpmsg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_cmpmsg_t","msg")=5 + ; + Set gtmtypes("repl_conn_info_t")="struct" + Set gtmtypes("repl_conn_info_t",0)=10 + Set gtmtypes("repl_conn_info_t","len")=48 + Set gtmtypes("repl_conn_info_t",1,"name")="repl_conn_info_t.proto_ver" + Set gtmtypes("repl_conn_info_t",1,"off")=0 + Set gtmtypes("repl_conn_info_t",1,"len")=4 + Set gtmtypes("repl_conn_info_t",1,"type")="int" + Set gtmtypfldindx("repl_conn_info_t","proto_ver")=1 + Set gtmtypes("repl_conn_info_t",2,"name")="repl_conn_info_t.jnl_ver" + Set gtmtypes("repl_conn_info_t",2,"off")=4 + Set gtmtypes("repl_conn_info_t",2,"len")=4 + Set gtmtypes("repl_conn_info_t",2,"type")="unsigned-int" + Set gtmtypfldindx("repl_conn_info_t","jnl_ver")=2 + Set gtmtypes("repl_conn_info_t",3,"name")="repl_conn_info_t.is_std_null_coll" + Set gtmtypes("repl_conn_info_t",3,"off")=8 + Set gtmtypes("repl_conn_info_t",3,"len")=4 + Set gtmtypes("repl_conn_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","is_std_null_coll")=3 + Set gtmtypes("repl_conn_info_t",4,"name")="repl_conn_info_t.trigger_supported" + Set gtmtypes("repl_conn_info_t",4,"off")=12 + Set gtmtypes("repl_conn_info_t",4,"len")=4 + Set gtmtypes("repl_conn_info_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","trigger_supported")=4 + Set gtmtypes("repl_conn_info_t",5,"name")="repl_conn_info_t.cross_endian" + Set gtmtypes("repl_conn_info_t",5,"off")=16 + Set gtmtypes("repl_conn_info_t",5,"len")=4 + Set gtmtypes("repl_conn_info_t",5,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","cross_endian")=5 + Set gtmtypes("repl_conn_info_t",6,"name")="repl_conn_info_t.endianness_known" + Set gtmtypes("repl_conn_info_t",6,"off")=20 + Set gtmtypes("repl_conn_info_t",6,"len")=4 + Set gtmtypes("repl_conn_info_t",6,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","endianness_known")=6 + Set gtmtypes("repl_conn_info_t",7,"name")="repl_conn_info_t.null_subs_xform" + Set gtmtypes("repl_conn_info_t",7,"off")=24 + Set gtmtypes("repl_conn_info_t",7,"len")=4 + Set gtmtypes("repl_conn_info_t",7,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","null_subs_xform")=7 + Set gtmtypes("repl_conn_info_t",8,"name")="repl_conn_info_t.is_supplementary" + Set gtmtypes("repl_conn_info_t",8,"off")=28 + Set gtmtypes("repl_conn_info_t",8,"len")=4 + Set gtmtypes("repl_conn_info_t",8,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","is_supplementary")=8 + Set gtmtypes("repl_conn_info_t",9,"name")="repl_conn_info_t.tls_requested" + Set gtmtypes("repl_conn_info_t",9,"off")=32 + Set gtmtypes("repl_conn_info_t",9,"len")=4 + Set gtmtypes("repl_conn_info_t",9,"type")="boolean_t" + Set gtmtypfldindx("repl_conn_info_t","tls_requested")=9 + Set gtmtypes("repl_conn_info_t",10,"name")="repl_conn_info_t.filler_16" + Set gtmtypes("repl_conn_info_t",10,"off")=36 + Set gtmtypes("repl_conn_info_t",10,"len")=12 + Set gtmtypes("repl_conn_info_t",10,"type")="char" + Set gtmtypfldindx("repl_conn_info_t","filler_16")=10 + ; + Set gtmtypes("repl_ctl_element")="struct" + Set gtmtypes("repl_ctl_element",0)=22 + Set gtmtypes("repl_ctl_element","len")=356 + Set gtmtypes("repl_ctl_element",1,"name")="repl_ctl_element.reg" + Set gtmtypes("repl_ctl_element",1,"off")=0 + Set gtmtypes("repl_ctl_element",1,"len")=4 + Set gtmtypes("repl_ctl_element",1,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","reg")=1 + Set gtmtypes("repl_ctl_element",2,"name")="repl_ctl_element.repl_buff" + Set gtmtypes("repl_ctl_element",2,"off")=4 + Set gtmtypes("repl_ctl_element",2,"len")=4 + Set gtmtypes("repl_ctl_element",2,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","repl_buff")=2 + Set gtmtypes("repl_ctl_element",3,"name")="repl_ctl_element.min_seqno" + Set gtmtypes("repl_ctl_element",3,"off")=8 + Set gtmtypes("repl_ctl_element",3,"len")=8 + Set gtmtypes("repl_ctl_element",3,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","min_seqno")=3 + Set gtmtypes("repl_ctl_element",4,"name")="repl_ctl_element.max_seqno" + Set gtmtypes("repl_ctl_element",4,"off")=16 + Set gtmtypes("repl_ctl_element",4,"len")=8 + Set gtmtypes("repl_ctl_element",4,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","max_seqno")=4 + Set gtmtypes("repl_ctl_element",5,"name")="repl_ctl_element.min_seqno_dskaddr" + Set gtmtypes("repl_ctl_element",5,"off")=24 + Set gtmtypes("repl_ctl_element",5,"len")=4 + Set gtmtypes("repl_ctl_element",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","min_seqno_dskaddr")=5 + Set gtmtypes("repl_ctl_element",6,"name")="repl_ctl_element.max_seqno_dskaddr" + Set gtmtypes("repl_ctl_element",6,"off")=28 + Set gtmtypes("repl_ctl_element",6,"len")=4 + Set gtmtypes("repl_ctl_element",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","max_seqno_dskaddr")=6 + Set gtmtypes("repl_ctl_element",7,"name")="repl_ctl_element.max_seqno_eof_addr" + Set gtmtypes("repl_ctl_element",7,"off")=32 + Set gtmtypes("repl_ctl_element",7,"len")=4 + Set gtmtypes("repl_ctl_element",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","max_seqno_eof_addr")=7 + Set gtmtypes("repl_ctl_element",8,"name")="repl_ctl_element.filler_4byte" + Set gtmtypes("repl_ctl_element",8,"off")=36 + Set gtmtypes("repl_ctl_element",8,"len")=4 + Set gtmtypes("repl_ctl_element",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_ctl_element","filler_4byte")=8 + Set gtmtypes("repl_ctl_element",9,"name")="repl_ctl_element.seqno" + Set gtmtypes("repl_ctl_element",9,"off")=40 + Set gtmtypes("repl_ctl_element",9,"len")=8 + Set gtmtypes("repl_ctl_element",9,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","seqno")=9 + Set gtmtypes("repl_ctl_element",10,"name")="repl_ctl_element.tn" + Set gtmtypes("repl_ctl_element",10,"off")=48 + Set gtmtypes("repl_ctl_element",10,"len")=8 + Set gtmtypes("repl_ctl_element",10,"type")="uint64_t" + Set gtmtypfldindx("repl_ctl_element","tn")=10 + Set gtmtypes("repl_ctl_element",11,"name")="repl_ctl_element.file_state" + Set gtmtypes("repl_ctl_element",11,"off")=56 + Set gtmtypes("repl_ctl_element",11,"len")=4 + Set gtmtypes("repl_ctl_element",11,"type")="int" + Set gtmtypfldindx("repl_ctl_element","file_state")=11 + Set gtmtypes("repl_ctl_element",12,"name")="repl_ctl_element.lookback" + Set gtmtypes("repl_ctl_element",12,"off")=60 + Set gtmtypes("repl_ctl_element",12,"len")=4 + Set gtmtypes("repl_ctl_element",12,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","lookback")=12 + Set gtmtypes("repl_ctl_element",13,"name")="repl_ctl_element.first_read_done" + Set gtmtypes("repl_ctl_element",13,"off")=64 + Set gtmtypes("repl_ctl_element",13,"len")=4 + Set gtmtypes("repl_ctl_element",13,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","first_read_done")=13 + Set gtmtypes("repl_ctl_element",14,"name")="repl_ctl_element.eof_addr_final" + Set gtmtypes("repl_ctl_element",14,"off")=68 + Set gtmtypes("repl_ctl_element",14,"len")=4 + Set gtmtypes("repl_ctl_element",14,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","eof_addr_final")=14 + Set gtmtypes("repl_ctl_element",15,"name")="repl_ctl_element.max_seqno_final" + Set gtmtypes("repl_ctl_element",15,"off")=72 + Set gtmtypes("repl_ctl_element",15,"len")=4 + Set gtmtypes("repl_ctl_element",15,"type")="boolean_t" + Set gtmtypfldindx("repl_ctl_element","max_seqno_final")=15 + Set gtmtypes("repl_ctl_element",16,"name")="repl_ctl_element.jnl_fn_len" + Set gtmtypes("repl_ctl_element",16,"off")=76 + Set gtmtypes("repl_ctl_element",16,"len")=4 + Set gtmtypes("repl_ctl_element",16,"type")="int" + Set gtmtypfldindx("repl_ctl_element","jnl_fn_len")=16 + Set gtmtypes("repl_ctl_element",17,"name")="repl_ctl_element.jnl_fn" + Set gtmtypes("repl_ctl_element",17,"off")=80 + Set gtmtypes("repl_ctl_element",17,"len")=256 + Set gtmtypes("repl_ctl_element",17,"type")="char" + Set gtmtypfldindx("repl_ctl_element","jnl_fn")=17 + Set gtmtypes("repl_ctl_element",18,"name")="repl_ctl_element.repl_rctl" + Set gtmtypes("repl_ctl_element",18,"off")=336 + Set gtmtypes("repl_ctl_element",18,"len")=4 + Set gtmtypes("repl_ctl_element",18,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","repl_rctl")=18 + Set gtmtypes("repl_ctl_element",19,"name")="repl_ctl_element.prev" + Set gtmtypes("repl_ctl_element",19,"off")=340 + Set gtmtypes("repl_ctl_element",19,"len")=4 + Set gtmtypes("repl_ctl_element",19,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","prev")=19 + Set gtmtypes("repl_ctl_element",20,"name")="repl_ctl_element.next" + Set gtmtypes("repl_ctl_element",20,"off")=344 + Set gtmtypes("repl_ctl_element",20,"len")=4 + Set gtmtypes("repl_ctl_element",20,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","next")=20 + Set gtmtypes("repl_ctl_element",21,"name")="repl_ctl_element.encr_key_handle" + Set gtmtypes("repl_ctl_element",21,"off")=348 + Set gtmtypes("repl_ctl_element",21,"len")=4 + Set gtmtypes("repl_ctl_element",21,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","encr_key_handle")=21 + Set gtmtypes("repl_ctl_element",22,"name")="repl_ctl_element.encr_key_handle2" + Set gtmtypes("repl_ctl_element",22,"off")=352 + Set gtmtypes("repl_ctl_element",22,"len")=4 + Set gtmtypes("repl_ctl_element",22,"type")="addr" + Set gtmtypfldindx("repl_ctl_element","encr_key_handle2")=22 + ; + Set gtmtypes("repl_file_control_t")="struct" + Set gtmtypes("repl_file_control_t",0)=9 + Set gtmtypes("repl_file_control_t","len")=40 + Set gtmtypes("repl_file_control_t",1,"name")="repl_file_control_t.eof_addr" + Set gtmtypes("repl_file_control_t",1,"off")=0 + Set gtmtypes("repl_file_control_t",1,"len")=4 + Set gtmtypes("repl_file_control_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","eof_addr")=1 + Set gtmtypes("repl_file_control_t",2,"name")="repl_file_control_t.fs_block_size" + Set gtmtypes("repl_file_control_t",2,"off")=4 + Set gtmtypes("repl_file_control_t",2,"len")=4 + Set gtmtypes("repl_file_control_t",2,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","fs_block_size")=2 + Set gtmtypes("repl_file_control_t",3,"name")="repl_file_control_t.jfh_base" + Set gtmtypes("repl_file_control_t",3,"off")=8 + Set gtmtypes("repl_file_control_t",3,"len")=4 + Set gtmtypes("repl_file_control_t",3,"type")="addr" + Set gtmtypfldindx("repl_file_control_t","jfh_base")=3 + Set gtmtypes("repl_file_control_t",4,"name")="repl_file_control_t.jfh" + Set gtmtypes("repl_file_control_t",4,"off")=12 + Set gtmtypes("repl_file_control_t",4,"len")=4 + Set gtmtypes("repl_file_control_t",4,"type")="addr" + Set gtmtypfldindx("repl_file_control_t","jfh")=4 + Set gtmtypes("repl_file_control_t",5,"name")="repl_file_control_t.fd" + Set gtmtypes("repl_file_control_t",5,"off")=16 + Set gtmtypes("repl_file_control_t",5,"len")=4 + Set gtmtypes("repl_file_control_t",5,"type")="int" + Set gtmtypfldindx("repl_file_control_t","fd")=5 + Set gtmtypes("repl_file_control_t",6,"name")="repl_file_control_t.id" + Set gtmtypes("repl_file_control_t",6,"off")=20 + Set gtmtypes("repl_file_control_t",6,"len")=20 + Set gtmtypes("repl_file_control_t",6,"type")="unix_file_id" + Set gtmtypfldindx("repl_file_control_t","id")=6 + Set gtmtypes("repl_file_control_t",7,"name")="repl_file_control_t.id.inode" + Set gtmtypes("repl_file_control_t",7,"off")=20 + Set gtmtypes("repl_file_control_t",7,"len")=8 + Set gtmtypes("repl_file_control_t",7,"type")="ino_t" + Set gtmtypfldindx("repl_file_control_t","id.inode")=7 + Set gtmtypes("repl_file_control_t",8,"name")="repl_file_control_t.id.device" + Set gtmtypes("repl_file_control_t",8,"off")=28 + Set gtmtypes("repl_file_control_t",8,"len")=8 + Set gtmtypes("repl_file_control_t",8,"type")="dev_t" + Set gtmtypfldindx("repl_file_control_t","id.device")=8 + Set gtmtypes("repl_file_control_t",9,"name")="repl_file_control_t.id.st_gen" + Set gtmtypes("repl_file_control_t",9,"off")=36 + Set gtmtypes("repl_file_control_t",9,"len")=4 + Set gtmtypes("repl_file_control_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_file_control_t","id.st_gen")=9 + ; + Set gtmtypes("repl_heartbeat_msg_t")="struct" + Set gtmtypes("repl_heartbeat_msg_t",0)=5 + Set gtmtypes("repl_heartbeat_msg_t","len")=32 + Set gtmtypes("repl_heartbeat_msg_t",1,"name")="repl_heartbeat_msg_t.type" + Set gtmtypes("repl_heartbeat_msg_t",1,"off")=0 + Set gtmtypes("repl_heartbeat_msg_t",1,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_heartbeat_msg_t","type")=1 + Set gtmtypes("repl_heartbeat_msg_t",2,"name")="repl_heartbeat_msg_t.len" + Set gtmtypes("repl_heartbeat_msg_t",2,"off")=4 + Set gtmtypes("repl_heartbeat_msg_t",2,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_heartbeat_msg_t","len")=2 + Set gtmtypes("repl_heartbeat_msg_t",3,"name")="repl_heartbeat_msg_t.ack_seqno" + Set gtmtypes("repl_heartbeat_msg_t",3,"off")=8 + Set gtmtypes("repl_heartbeat_msg_t",3,"len")=8 + Set gtmtypes("repl_heartbeat_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","ack_seqno")=3 + Set gtmtypes("repl_heartbeat_msg_t",4,"name")="repl_heartbeat_msg_t.ack_time" + Set gtmtypes("repl_heartbeat_msg_t",4,"off")=16 + Set gtmtypes("repl_heartbeat_msg_t",4,"len")=4 + Set gtmtypes("repl_heartbeat_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","ack_time")=4 + Set gtmtypes("repl_heartbeat_msg_t",5,"name")="repl_heartbeat_msg_t.filler_32" + Set gtmtypes("repl_heartbeat_msg_t",5,"off")=20 + Set gtmtypes("repl_heartbeat_msg_t",5,"len")=12 + Set gtmtypes("repl_heartbeat_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_msg_t","filler_32")=5 + ; + Set gtmtypes("repl_heartbeat_que_entry_t")="struct" + Set gtmtypes("repl_heartbeat_que_entry_t",0)=9 + Set gtmtypes("repl_heartbeat_que_entry_t","len")=40 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"name")="repl_heartbeat_que_entry_t.que" + Set gtmtypes("repl_heartbeat_que_entry_t",1,"off")=0 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"len")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",1,"type")="struct" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que")=1 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"name")="repl_heartbeat_que_entry_t.que.fl" + Set gtmtypes("repl_heartbeat_que_entry_t",2,"off")=0 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",2,"type")="intptr_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que.fl")=2 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"name")="repl_heartbeat_que_entry_t.que.bl" + Set gtmtypes("repl_heartbeat_que_entry_t",3,"off")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",3,"type")="intptr_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","que.bl")=3 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"name")="repl_heartbeat_que_entry_t.heartbeat" + Set gtmtypes("repl_heartbeat_que_entry_t",4,"off")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"len")=32 + Set gtmtypes("repl_heartbeat_que_entry_t",4,"type")="repl_heartbeat_msg_t" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"name")="repl_heartbeat_que_entry_t.heartbeat.type" + Set gtmtypes("repl_heartbeat_que_entry_t",5,"off")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",5,"type")="int" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.type")=5 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"name")="repl_heartbeat_que_entry_t.heartbeat.len" + Set gtmtypes("repl_heartbeat_que_entry_t",6,"off")=12 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",6,"type")="int" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.len")=6 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"name")="repl_heartbeat_que_entry_t.heartbeat.ack_seqno" + Set gtmtypes("repl_heartbeat_que_entry_t",7,"off")=16 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"len")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.ack_seqno")=7 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"name")="repl_heartbeat_que_entry_t.heartbeat.ack_time" + Set gtmtypes("repl_heartbeat_que_entry_t",8,"off")=24 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"len")=4 + Set gtmtypes("repl_heartbeat_que_entry_t",8,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.ack_time")=8 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"name")="repl_heartbeat_que_entry_t.heartbeat.filler_32" + Set gtmtypes("repl_heartbeat_que_entry_t",9,"off")=28 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"len")=12 + Set gtmtypes("repl_heartbeat_que_entry_t",9,"type")="unsigned-char" + Set gtmtypfldindx("repl_heartbeat_que_entry_t","heartbeat.filler_32")=9 + ; + Set gtmtypes("repl_histinfo")="struct" + Set gtmtypes("repl_histinfo",0)=17 + Set gtmtypes("repl_histinfo","len")=160 + Set gtmtypes("repl_histinfo",1,"name")="repl_histinfo.root_primary_instname" + Set gtmtypes("repl_histinfo",1,"off")=0 + Set gtmtypes("repl_histinfo",1,"len")=16 + Set gtmtypes("repl_histinfo",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","root_primary_instname")=1 + Set gtmtypes("repl_histinfo",2,"name")="repl_histinfo.start_seqno" + Set gtmtypes("repl_histinfo",2,"off")=16 + Set gtmtypes("repl_histinfo",2,"len")=8 + Set gtmtypes("repl_histinfo",2,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo","start_seqno")=2 + Set gtmtypes("repl_histinfo",3,"name")="repl_histinfo.strm_seqno" + Set gtmtypes("repl_histinfo",3,"off")=24 + Set gtmtypes("repl_histinfo",3,"len")=8 + Set gtmtypes("repl_histinfo",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo","strm_seqno")=3 + Set gtmtypes("repl_histinfo",4,"name")="repl_histinfo.root_primary_cycle" + Set gtmtypes("repl_histinfo",4,"off")=32 + Set gtmtypes("repl_histinfo",4,"len")=4 + Set gtmtypes("repl_histinfo",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","root_primary_cycle")=4 + Set gtmtypes("repl_histinfo",5,"name")="repl_histinfo.creator_pid" + Set gtmtypes("repl_histinfo",5,"off")=36 + Set gtmtypes("repl_histinfo",5,"len")=4 + Set gtmtypes("repl_histinfo",5,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","creator_pid")=5 + Set gtmtypes("repl_histinfo",6,"name")="repl_histinfo.created_time" + Set gtmtypes("repl_histinfo",6,"off")=40 + Set gtmtypes("repl_histinfo",6,"len")=4 + Set gtmtypes("repl_histinfo",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","created_time")=6 + Set gtmtypes("repl_histinfo",7,"name")="repl_histinfo.histinfo_num" + Set gtmtypes("repl_histinfo",7,"off")=44 + Set gtmtypes("repl_histinfo",7,"len")=4 + Set gtmtypes("repl_histinfo",7,"type")="int" + Set gtmtypfldindx("repl_histinfo","histinfo_num")=7 + Set gtmtypes("repl_histinfo",8,"name")="repl_histinfo.prev_histinfo_num" + Set gtmtypes("repl_histinfo",8,"off")=48 + Set gtmtypes("repl_histinfo",8,"len")=4 + Set gtmtypes("repl_histinfo",8,"type")="int" + Set gtmtypfldindx("repl_histinfo","prev_histinfo_num")=8 + Set gtmtypes("repl_histinfo",9,"name")="repl_histinfo.strm_index" + Set gtmtypes("repl_histinfo",9,"off")=52 + Set gtmtypes("repl_histinfo",9,"len")=1 + Set gtmtypes("repl_histinfo",9,"type")="char" + Set gtmtypfldindx("repl_histinfo","strm_index")=9 + Set gtmtypes("repl_histinfo",10,"name")="repl_histinfo.history_type" + Set gtmtypes("repl_histinfo",10,"off")=53 + Set gtmtypes("repl_histinfo",10,"len")=1 + Set gtmtypes("repl_histinfo",10,"type")="char" + Set gtmtypfldindx("repl_histinfo","history_type")=10 + Set gtmtypes("repl_histinfo",11,"name")="repl_histinfo.filler_8" + Set gtmtypes("repl_histinfo",11,"off")=54 + Set gtmtypes("repl_histinfo",11,"len")=2 + Set gtmtypes("repl_histinfo",11,"type")="char" + Set gtmtypfldindx("repl_histinfo","filler_8")=11 + Set gtmtypes("repl_histinfo",12,"name")="repl_histinfo.lms_group" + Set gtmtypes("repl_histinfo",12,"off")=56 + Set gtmtypes("repl_histinfo",12,"len")=40 + Set gtmtypes("repl_histinfo",12,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histinfo","lms_group")=12 + Set gtmtypes("repl_histinfo",13,"name")="repl_histinfo.lms_group.created_nodename" + Set gtmtypes("repl_histinfo",13,"off")=56 + Set gtmtypes("repl_histinfo",13,"len")=16 + Set gtmtypes("repl_histinfo",13,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","lms_group.created_nodename")=13 + Set gtmtypes("repl_histinfo",14,"name")="repl_histinfo.lms_group.this_instname" + Set gtmtypes("repl_histinfo",14,"off")=72 + Set gtmtypes("repl_histinfo",14,"len")=16 + Set gtmtypes("repl_histinfo",14,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo","lms_group.this_instname")=14 + Set gtmtypes("repl_histinfo",15,"name")="repl_histinfo.lms_group.created_time" + Set gtmtypes("repl_histinfo",15,"off")=88 + Set gtmtypes("repl_histinfo",15,"len")=4 + Set gtmtypes("repl_histinfo",15,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","lms_group.created_time")=15 + Set gtmtypes("repl_histinfo",16,"name")="repl_histinfo.lms_group.creator_pid" + Set gtmtypes("repl_histinfo",16,"off")=92 + Set gtmtypes("repl_histinfo",16,"len")=4 + Set gtmtypes("repl_histinfo",16,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo","lms_group.creator_pid")=16 + Set gtmtypes("repl_histinfo",17,"name")="repl_histinfo.last_histinfo_num" + Set gtmtypes("repl_histinfo",17,"off")=96 + Set gtmtypes("repl_histinfo",17,"len")=64 + Set gtmtypes("repl_histinfo",17,"type")="int" + Set gtmtypfldindx("repl_histinfo","last_histinfo_num")=17 + Set gtmtypes("repl_histinfo",17,"dim")=16 + ; + Set gtmtypes("repl_histinfo1_msg_t")="struct" + Set gtmtypes("repl_histinfo1_msg_t",0)=4 + Set gtmtypes("repl_histinfo1_msg_t","len")=32 + Set gtmtypes("repl_histinfo1_msg_t",1,"name")="repl_histinfo1_msg_t.type" + Set gtmtypes("repl_histinfo1_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo1_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo1_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo1_msg_t","type")=1 + Set gtmtypes("repl_histinfo1_msg_t",2,"name")="repl_histinfo1_msg_t.len" + Set gtmtypes("repl_histinfo1_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo1_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo1_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo1_msg_t","len")=2 + Set gtmtypes("repl_histinfo1_msg_t",3,"name")="repl_histinfo1_msg_t.start_seqno" + Set gtmtypes("repl_histinfo1_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo1_msg_t",3,"len")=8 + Set gtmtypes("repl_histinfo1_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo1_msg_t","start_seqno")=3 + Set gtmtypes("repl_histinfo1_msg_t",4,"name")="repl_histinfo1_msg_t.instname" + Set gtmtypes("repl_histinfo1_msg_t",4,"off")=16 + Set gtmtypes("repl_histinfo1_msg_t",4,"len")=16 + Set gtmtypes("repl_histinfo1_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo1_msg_t","instname")=4 + ; + Set gtmtypes("repl_histinfo2_msg_t")="struct" + Set gtmtypes("repl_histinfo2_msg_t",0)=6 + Set gtmtypes("repl_histinfo2_msg_t","len")=32 + Set gtmtypes("repl_histinfo2_msg_t",1,"name")="repl_histinfo2_msg_t.type" + Set gtmtypes("repl_histinfo2_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo2_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","type")=1 + Set gtmtypes("repl_histinfo2_msg_t",2,"name")="repl_histinfo2_msg_t.len" + Set gtmtypes("repl_histinfo2_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo2_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","len")=2 + Set gtmtypes("repl_histinfo2_msg_t",3,"name")="repl_histinfo2_msg_t.start_seqno" + Set gtmtypes("repl_histinfo2_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo2_msg_t",3,"len")=8 + Set gtmtypes("repl_histinfo2_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo2_msg_t","start_seqno")=3 + Set gtmtypes("repl_histinfo2_msg_t",4,"name")="repl_histinfo2_msg_t.cycle" + Set gtmtypes("repl_histinfo2_msg_t",4,"off")=16 + Set gtmtypes("repl_histinfo2_msg_t",4,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo2_msg_t","cycle")=4 + Set gtmtypes("repl_histinfo2_msg_t",5,"name")="repl_histinfo2_msg_t.histinfo_num" + Set gtmtypes("repl_histinfo2_msg_t",5,"off")=20 + Set gtmtypes("repl_histinfo2_msg_t",5,"len")=4 + Set gtmtypes("repl_histinfo2_msg_t",5,"type")="int" + Set gtmtypfldindx("repl_histinfo2_msg_t","histinfo_num")=5 + Set gtmtypes("repl_histinfo2_msg_t",6,"name")="repl_histinfo2_msg_t.filler_32" + Set gtmtypes("repl_histinfo2_msg_t",6,"off")=24 + Set gtmtypes("repl_histinfo2_msg_t",6,"len")=8 + Set gtmtypes("repl_histinfo2_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_histinfo2_msg_t","filler_32")=6 + ; + Set gtmtypes("repl_histinfo_msg_t")="struct" + Set gtmtypes("repl_histinfo_msg_t",0)=20 + Set gtmtypes("repl_histinfo_msg_t","len")=168 + Set gtmtypes("repl_histinfo_msg_t",1,"name")="repl_histinfo_msg_t.type" + Set gtmtypes("repl_histinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_histinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","type")=1 + Set gtmtypes("repl_histinfo_msg_t",2,"name")="repl_histinfo_msg_t.len" + Set gtmtypes("repl_histinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_histinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","len")=2 + Set gtmtypes("repl_histinfo_msg_t",3,"name")="repl_histinfo_msg_t.history" + Set gtmtypes("repl_histinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_histinfo_msg_t",3,"len")=160 + Set gtmtypes("repl_histinfo_msg_t",3,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histinfo_msg_t","history")=3 + Set gtmtypes("repl_histinfo_msg_t",4,"name")="repl_histinfo_msg_t.history.root_primary_instname" + Set gtmtypes("repl_histinfo_msg_t",4,"off")=8 + Set gtmtypes("repl_histinfo_msg_t",4,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.root_primary_instname")=4 + Set gtmtypes("repl_histinfo_msg_t",5,"name")="repl_histinfo_msg_t.history.start_seqno" + Set gtmtypes("repl_histinfo_msg_t",5,"off")=24 + Set gtmtypes("repl_histinfo_msg_t",5,"len")=8 + Set gtmtypes("repl_histinfo_msg_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo_msg_t","history.start_seqno")=5 + Set gtmtypes("repl_histinfo_msg_t",6,"name")="repl_histinfo_msg_t.history.strm_seqno" + Set gtmtypes("repl_histinfo_msg_t",6,"off")=32 + Set gtmtypes("repl_histinfo_msg_t",6,"len")=8 + Set gtmtypes("repl_histinfo_msg_t",6,"type")="uint64_t" + Set gtmtypfldindx("repl_histinfo_msg_t","history.strm_seqno")=6 + Set gtmtypes("repl_histinfo_msg_t",7,"name")="repl_histinfo_msg_t.history.root_primary_cycle" + Set gtmtypes("repl_histinfo_msg_t",7,"off")=40 + Set gtmtypes("repl_histinfo_msg_t",7,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.root_primary_cycle")=7 + Set gtmtypes("repl_histinfo_msg_t",8,"name")="repl_histinfo_msg_t.history.creator_pid" + Set gtmtypes("repl_histinfo_msg_t",8,"off")=44 + Set gtmtypes("repl_histinfo_msg_t",8,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.creator_pid")=8 + Set gtmtypes("repl_histinfo_msg_t",9,"name")="repl_histinfo_msg_t.history.created_time" + Set gtmtypes("repl_histinfo_msg_t",9,"off")=48 + Set gtmtypes("repl_histinfo_msg_t",9,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.created_time")=9 + Set gtmtypes("repl_histinfo_msg_t",10,"name")="repl_histinfo_msg_t.history.histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",10,"off")=52 + Set gtmtypes("repl_histinfo_msg_t",10,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",10,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.histinfo_num")=10 + Set gtmtypes("repl_histinfo_msg_t",11,"name")="repl_histinfo_msg_t.history.prev_histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",11,"off")=56 + Set gtmtypes("repl_histinfo_msg_t",11,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",11,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.prev_histinfo_num")=11 + Set gtmtypes("repl_histinfo_msg_t",12,"name")="repl_histinfo_msg_t.history.strm_index" + Set gtmtypes("repl_histinfo_msg_t",12,"off")=60 + Set gtmtypes("repl_histinfo_msg_t",12,"len")=1 + Set gtmtypes("repl_histinfo_msg_t",12,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.strm_index")=12 + Set gtmtypes("repl_histinfo_msg_t",13,"name")="repl_histinfo_msg_t.history.history_type" + Set gtmtypes("repl_histinfo_msg_t",13,"off")=61 + Set gtmtypes("repl_histinfo_msg_t",13,"len")=1 + Set gtmtypes("repl_histinfo_msg_t",13,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.history_type")=13 + Set gtmtypes("repl_histinfo_msg_t",14,"name")="repl_histinfo_msg_t.history.filler_8" + Set gtmtypes("repl_histinfo_msg_t",14,"off")=62 + Set gtmtypes("repl_histinfo_msg_t",14,"len")=2 + Set gtmtypes("repl_histinfo_msg_t",14,"type")="char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.filler_8")=14 + Set gtmtypes("repl_histinfo_msg_t",15,"name")="repl_histinfo_msg_t.history.lms_group" + Set gtmtypes("repl_histinfo_msg_t",15,"off")=64 + Set gtmtypes("repl_histinfo_msg_t",15,"len")=40 + Set gtmtypes("repl_histinfo_msg_t",15,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group")=15 + Set gtmtypes("repl_histinfo_msg_t",16,"name")="repl_histinfo_msg_t.history.lms_group.created_nodename" + Set gtmtypes("repl_histinfo_msg_t",16,"off")=64 + Set gtmtypes("repl_histinfo_msg_t",16,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",16,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.created_nodename")=16 + Set gtmtypes("repl_histinfo_msg_t",17,"name")="repl_histinfo_msg_t.history.lms_group.this_instname" + Set gtmtypes("repl_histinfo_msg_t",17,"off")=80 + Set gtmtypes("repl_histinfo_msg_t",17,"len")=16 + Set gtmtypes("repl_histinfo_msg_t",17,"type")="unsigned-char" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.this_instname")=17 + Set gtmtypes("repl_histinfo_msg_t",18,"name")="repl_histinfo_msg_t.history.lms_group.created_time" + Set gtmtypes("repl_histinfo_msg_t",18,"off")=96 + Set gtmtypes("repl_histinfo_msg_t",18,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",18,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.created_time")=18 + Set gtmtypes("repl_histinfo_msg_t",19,"name")="repl_histinfo_msg_t.history.lms_group.creator_pid" + Set gtmtypes("repl_histinfo_msg_t",19,"off")=100 + Set gtmtypes("repl_histinfo_msg_t",19,"len")=4 + Set gtmtypes("repl_histinfo_msg_t",19,"type")="unsigned-int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.lms_group.creator_pid")=19 + Set gtmtypes("repl_histinfo_msg_t",20,"name")="repl_histinfo_msg_t.history.last_histinfo_num" + Set gtmtypes("repl_histinfo_msg_t",20,"off")=104 + Set gtmtypes("repl_histinfo_msg_t",20,"len")=64 + Set gtmtypes("repl_histinfo_msg_t",20,"type")="int" + Set gtmtypfldindx("repl_histinfo_msg_t","history.last_histinfo_num")=20 + Set gtmtypes("repl_histinfo_msg_t",20,"dim")=16 + ; + Set gtmtypes("repl_histrec_jnl_t")="struct" + Set gtmtypes("repl_histrec_jnl_t",0)=19 + Set gtmtypes("repl_histrec_jnl_t","len")=168 + Set gtmtypes("repl_histrec_jnl_t",1,"name")="repl_histrec_jnl_t.filler_8byte_align" + Set gtmtypes("repl_histrec_jnl_t",1,"off")=4 + Set gtmtypes("repl_histrec_jnl_t",1,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","filler_8byte_align")=1 + Set gtmtypes("repl_histrec_jnl_t",2,"name")="repl_histrec_jnl_t.histcontent" + Set gtmtypes("repl_histrec_jnl_t",2,"off")=8 + Set gtmtypes("repl_histrec_jnl_t",2,"len")=160 + Set gtmtypes("repl_histrec_jnl_t",2,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent")=2 + Set gtmtypes("repl_histrec_jnl_t",3,"name")="repl_histrec_jnl_t.histcontent.root_primary_instname" + Set gtmtypes("repl_histrec_jnl_t",3,"off")=8 + Set gtmtypes("repl_histrec_jnl_t",3,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.root_primary_instname")=3 + Set gtmtypes("repl_histrec_jnl_t",4,"name")="repl_histrec_jnl_t.histcontent.start_seqno" + Set gtmtypes("repl_histrec_jnl_t",4,"off")=24 + Set gtmtypes("repl_histrec_jnl_t",4,"len")=8 + Set gtmtypes("repl_histrec_jnl_t",4,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.start_seqno")=4 + Set gtmtypes("repl_histrec_jnl_t",5,"name")="repl_histrec_jnl_t.histcontent.strm_seqno" + Set gtmtypes("repl_histrec_jnl_t",5,"off")=32 + Set gtmtypes("repl_histrec_jnl_t",5,"len")=8 + Set gtmtypes("repl_histrec_jnl_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.strm_seqno")=5 + Set gtmtypes("repl_histrec_jnl_t",6,"name")="repl_histrec_jnl_t.histcontent.root_primary_cycle" + Set gtmtypes("repl_histrec_jnl_t",6,"off")=40 + Set gtmtypes("repl_histrec_jnl_t",6,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",6,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.root_primary_cycle")=6 + Set gtmtypes("repl_histrec_jnl_t",7,"name")="repl_histrec_jnl_t.histcontent.creator_pid" + Set gtmtypes("repl_histrec_jnl_t",7,"off")=44 + Set gtmtypes("repl_histrec_jnl_t",7,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.creator_pid")=7 + Set gtmtypes("repl_histrec_jnl_t",8,"name")="repl_histrec_jnl_t.histcontent.created_time" + Set gtmtypes("repl_histrec_jnl_t",8,"off")=48 + Set gtmtypes("repl_histrec_jnl_t",8,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.created_time")=8 + Set gtmtypes("repl_histrec_jnl_t",9,"name")="repl_histrec_jnl_t.histcontent.histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",9,"off")=52 + Set gtmtypes("repl_histrec_jnl_t",9,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",9,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.histinfo_num")=9 + Set gtmtypes("repl_histrec_jnl_t",10,"name")="repl_histrec_jnl_t.histcontent.prev_histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",10,"off")=56 + Set gtmtypes("repl_histrec_jnl_t",10,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",10,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.prev_histinfo_num")=10 + Set gtmtypes("repl_histrec_jnl_t",11,"name")="repl_histrec_jnl_t.histcontent.strm_index" + Set gtmtypes("repl_histrec_jnl_t",11,"off")=60 + Set gtmtypes("repl_histrec_jnl_t",11,"len")=1 + Set gtmtypes("repl_histrec_jnl_t",11,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.strm_index")=11 + Set gtmtypes("repl_histrec_jnl_t",12,"name")="repl_histrec_jnl_t.histcontent.history_type" + Set gtmtypes("repl_histrec_jnl_t",12,"off")=61 + Set gtmtypes("repl_histrec_jnl_t",12,"len")=1 + Set gtmtypes("repl_histrec_jnl_t",12,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.history_type")=12 + Set gtmtypes("repl_histrec_jnl_t",13,"name")="repl_histrec_jnl_t.histcontent.filler_8" + Set gtmtypes("repl_histrec_jnl_t",13,"off")=62 + Set gtmtypes("repl_histrec_jnl_t",13,"len")=2 + Set gtmtypes("repl_histrec_jnl_t",13,"type")="char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.filler_8")=13 + Set gtmtypes("repl_histrec_jnl_t",14,"name")="repl_histrec_jnl_t.histcontent.lms_group" + Set gtmtypes("repl_histrec_jnl_t",14,"off")=64 + Set gtmtypes("repl_histrec_jnl_t",14,"len")=40 + Set gtmtypes("repl_histrec_jnl_t",14,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group")=14 + Set gtmtypes("repl_histrec_jnl_t",15,"name")="repl_histrec_jnl_t.histcontent.lms_group.created_nodename" + Set gtmtypes("repl_histrec_jnl_t",15,"off")=64 + Set gtmtypes("repl_histrec_jnl_t",15,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",15,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.created_nodename")=15 + Set gtmtypes("repl_histrec_jnl_t",16,"name")="repl_histrec_jnl_t.histcontent.lms_group.this_instname" + Set gtmtypes("repl_histrec_jnl_t",16,"off")=80 + Set gtmtypes("repl_histrec_jnl_t",16,"len")=16 + Set gtmtypes("repl_histrec_jnl_t",16,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.this_instname")=16 + Set gtmtypes("repl_histrec_jnl_t",17,"name")="repl_histrec_jnl_t.histcontent.lms_group.created_time" + Set gtmtypes("repl_histrec_jnl_t",17,"off")=96 + Set gtmtypes("repl_histrec_jnl_t",17,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",17,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.created_time")=17 + Set gtmtypes("repl_histrec_jnl_t",18,"name")="repl_histrec_jnl_t.histcontent.lms_group.creator_pid" + Set gtmtypes("repl_histrec_jnl_t",18,"off")=100 + Set gtmtypes("repl_histrec_jnl_t",18,"len")=4 + Set gtmtypes("repl_histrec_jnl_t",18,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.lms_group.creator_pid")=18 + Set gtmtypes("repl_histrec_jnl_t",19,"name")="repl_histrec_jnl_t.histcontent.last_histinfo_num" + Set gtmtypes("repl_histrec_jnl_t",19,"off")=104 + Set gtmtypes("repl_histrec_jnl_t",19,"len")=64 + Set gtmtypes("repl_histrec_jnl_t",19,"type")="int" + Set gtmtypfldindx("repl_histrec_jnl_t","histcontent.last_histinfo_num")=19 + Set gtmtypes("repl_histrec_jnl_t",19,"dim")=16 + ; + Set gtmtypes("repl_histrec_msg_t")="struct" + Set gtmtypes("repl_histrec_msg_t",0)=22 + Set gtmtypes("repl_histrec_msg_t","len")=176 + Set gtmtypes("repl_histrec_msg_t",1,"name")="repl_histrec_msg_t.type" + Set gtmtypes("repl_histrec_msg_t",1,"off")=0 + Set gtmtypes("repl_histrec_msg_t",1,"len")=4 + Set gtmtypes("repl_histrec_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","type")=1 + Set gtmtypes("repl_histrec_msg_t",2,"name")="repl_histrec_msg_t.len" + Set gtmtypes("repl_histrec_msg_t",2,"off")=4 + Set gtmtypes("repl_histrec_msg_t",2,"len")=4 + Set gtmtypes("repl_histrec_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","len")=2 + Set gtmtypes("repl_histrec_msg_t",3,"name")="repl_histrec_msg_t.histjrec" + Set gtmtypes("repl_histrec_msg_t",3,"off")=8 + Set gtmtypes("repl_histrec_msg_t",3,"len")=168 + Set gtmtypes("repl_histrec_msg_t",3,"type")="repl_histrec_jnl_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec")=3 + Set gtmtypes("repl_histrec_msg_t",4,"name")="repl_histrec_msg_t.histjrec.filler_8byte_align" + Set gtmtypes("repl_histrec_msg_t",4,"off")=12 + Set gtmtypes("repl_histrec_msg_t",4,"len")=4 + Set gtmtypes("repl_histrec_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.filler_8byte_align")=4 + Set gtmtypes("repl_histrec_msg_t",5,"name")="repl_histrec_msg_t.histjrec.histcontent" + Set gtmtypes("repl_histrec_msg_t",5,"off")=16 + Set gtmtypes("repl_histrec_msg_t",5,"len")=160 + Set gtmtypes("repl_histrec_msg_t",5,"type")="repl_histinfo" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent")=5 + Set gtmtypes("repl_histrec_msg_t",6,"name")="repl_histrec_msg_t.histjrec.histcontent.root_primary_instname" + Set gtmtypes("repl_histrec_msg_t",6,"off")=16 + Set gtmtypes("repl_histrec_msg_t",6,"len")=16 + Set gtmtypes("repl_histrec_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.root_primary_instname")=6 + Set gtmtypes("repl_histrec_msg_t",7,"name")="repl_histrec_msg_t.histjrec.histcontent.start_seqno" + Set gtmtypes("repl_histrec_msg_t",7,"off")=32 + Set gtmtypes("repl_histrec_msg_t",7,"len")=8 + Set gtmtypes("repl_histrec_msg_t",7,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.start_seqno")=7 + Set gtmtypes("repl_histrec_msg_t",8,"name")="repl_histrec_msg_t.histjrec.histcontent.strm_seqno" + Set gtmtypes("repl_histrec_msg_t",8,"off")=40 + Set gtmtypes("repl_histrec_msg_t",8,"len")=8 + Set gtmtypes("repl_histrec_msg_t",8,"type")="uint64_t" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.strm_seqno")=8 + Set gtmtypes("repl_histrec_msg_t",9,"name")="repl_histrec_msg_t.histjrec.histcontent.root_primary_cycle" + Set gtmtypes("repl_histrec_msg_t",9,"off")=48 + Set gtmtypes("repl_histrec_msg_t",9,"len")=4 + Set gtmtypes("repl_histrec_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.root_primary_cycle")=9 + Set gtmtypes("repl_histrec_msg_t",10,"name")="repl_histrec_msg_t.histjrec.histcontent.creator_pid" + Set gtmtypes("repl_histrec_msg_t",10,"off")=52 + Set gtmtypes("repl_histrec_msg_t",10,"len")=4 + Set gtmtypes("repl_histrec_msg_t",10,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.creator_pid")=10 + Set gtmtypes("repl_histrec_msg_t",11,"name")="repl_histrec_msg_t.histjrec.histcontent.created_time" + Set gtmtypes("repl_histrec_msg_t",11,"off")=56 + Set gtmtypes("repl_histrec_msg_t",11,"len")=4 + Set gtmtypes("repl_histrec_msg_t",11,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.created_time")=11 + Set gtmtypes("repl_histrec_msg_t",12,"name")="repl_histrec_msg_t.histjrec.histcontent.histinfo_num" + Set gtmtypes("repl_histrec_msg_t",12,"off")=60 + Set gtmtypes("repl_histrec_msg_t",12,"len")=4 + Set gtmtypes("repl_histrec_msg_t",12,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.histinfo_num")=12 + Set gtmtypes("repl_histrec_msg_t",13,"name")="repl_histrec_msg_t.histjrec.histcontent.prev_histinfo_num" + Set gtmtypes("repl_histrec_msg_t",13,"off")=64 + Set gtmtypes("repl_histrec_msg_t",13,"len")=4 + Set gtmtypes("repl_histrec_msg_t",13,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.prev_histinfo_num")=13 + Set gtmtypes("repl_histrec_msg_t",14,"name")="repl_histrec_msg_t.histjrec.histcontent.strm_index" + Set gtmtypes("repl_histrec_msg_t",14,"off")=68 + Set gtmtypes("repl_histrec_msg_t",14,"len")=1 + Set gtmtypes("repl_histrec_msg_t",14,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.strm_index")=14 + Set gtmtypes("repl_histrec_msg_t",15,"name")="repl_histrec_msg_t.histjrec.histcontent.history_type" + Set gtmtypes("repl_histrec_msg_t",15,"off")=69 + Set gtmtypes("repl_histrec_msg_t",15,"len")=1 + Set gtmtypes("repl_histrec_msg_t",15,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.history_type")=15 + Set gtmtypes("repl_histrec_msg_t",16,"name")="repl_histrec_msg_t.histjrec.histcontent.filler_8" + Set gtmtypes("repl_histrec_msg_t",16,"off")=70 + Set gtmtypes("repl_histrec_msg_t",16,"len")=2 + Set gtmtypes("repl_histrec_msg_t",16,"type")="char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.filler_8")=16 + Set gtmtypes("repl_histrec_msg_t",17,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group" + Set gtmtypes("repl_histrec_msg_t",17,"off")=72 + Set gtmtypes("repl_histrec_msg_t",17,"len")=40 + Set gtmtypes("repl_histrec_msg_t",17,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group")=17 + Set gtmtypes("repl_histrec_msg_t",18,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.created_nodename" + Set gtmtypes("repl_histrec_msg_t",18,"off")=72 + Set gtmtypes("repl_histrec_msg_t",18,"len")=16 + Set gtmtypes("repl_histrec_msg_t",18,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.created_nodename")=18 + Set gtmtypes("repl_histrec_msg_t",19,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.this_instname" + Set gtmtypes("repl_histrec_msg_t",19,"off")=88 + Set gtmtypes("repl_histrec_msg_t",19,"len")=16 + Set gtmtypes("repl_histrec_msg_t",19,"type")="unsigned-char" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.this_instname")=19 + Set gtmtypes("repl_histrec_msg_t",20,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.created_time" + Set gtmtypes("repl_histrec_msg_t",20,"off")=104 + Set gtmtypes("repl_histrec_msg_t",20,"len")=4 + Set gtmtypes("repl_histrec_msg_t",20,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.created_time")=20 + Set gtmtypes("repl_histrec_msg_t",21,"name")="repl_histrec_msg_t.histjrec.histcontent.lms_group.creator_pid" + Set gtmtypes("repl_histrec_msg_t",21,"off")=108 + Set gtmtypes("repl_histrec_msg_t",21,"len")=4 + Set gtmtypes("repl_histrec_msg_t",21,"type")="unsigned-int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.lms_group.creator_pid")=21 + Set gtmtypes("repl_histrec_msg_t",22,"name")="repl_histrec_msg_t.histjrec.histcontent.last_histinfo_num" + Set gtmtypes("repl_histrec_msg_t",22,"off")=112 + Set gtmtypes("repl_histrec_msg_t",22,"len")=64 + Set gtmtypes("repl_histrec_msg_t",22,"type")="int" + Set gtmtypfldindx("repl_histrec_msg_t","histjrec.histcontent.last_histinfo_num")=22 + Set gtmtypes("repl_histrec_msg_t",22,"dim")=16 + ; + Set gtmtypes("repl_inst_hdr")="struct" + Set gtmtypes("repl_inst_hdr",0)=45 + Set gtmtypes("repl_inst_hdr","len")=1024 + Set gtmtypes("repl_inst_hdr",1,"name")="repl_inst_hdr.label" + Set gtmtypes("repl_inst_hdr",1,"off")=0 + Set gtmtypes("repl_inst_hdr",1,"len")=12 + Set gtmtypes("repl_inst_hdr",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","label")=1 + Set gtmtypes("repl_inst_hdr",2,"name")="repl_inst_hdr.replinst_minorver" + Set gtmtypes("repl_inst_hdr",2,"off")=12 + Set gtmtypes("repl_inst_hdr",2,"len")=1 + Set gtmtypes("repl_inst_hdr",2,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","replinst_minorver")=2 + Set gtmtypes("repl_inst_hdr",3,"name")="repl_inst_hdr.is_little_endian" + Set gtmtypes("repl_inst_hdr",3,"off")=13 + Set gtmtypes("repl_inst_hdr",3,"len")=1 + Set gtmtypes("repl_inst_hdr",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","is_little_endian")=3 + Set gtmtypes("repl_inst_hdr",4,"name")="repl_inst_hdr.is_64bit" + Set gtmtypes("repl_inst_hdr",4,"off")=14 + Set gtmtypes("repl_inst_hdr",4,"len")=1 + Set gtmtypes("repl_inst_hdr",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","is_64bit")=4 + Set gtmtypes("repl_inst_hdr",5,"name")="repl_inst_hdr.filler_16" + Set gtmtypes("repl_inst_hdr",5,"off")=15 + Set gtmtypes("repl_inst_hdr",5,"len")=1 + Set gtmtypes("repl_inst_hdr",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","filler_16")=5 + Set gtmtypes("repl_inst_hdr",6,"name")="repl_inst_hdr.jnlpool_semid" + Set gtmtypes("repl_inst_hdr",6,"off")=16 + Set gtmtypes("repl_inst_hdr",6,"len")=4 + Set gtmtypes("repl_inst_hdr",6,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_semid")=6 + Set gtmtypes("repl_inst_hdr",7,"name")="repl_inst_hdr.jnlpool_shmid" + Set gtmtypes("repl_inst_hdr",7,"off")=20 + Set gtmtypes("repl_inst_hdr",7,"len")=4 + Set gtmtypes("repl_inst_hdr",7,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_shmid")=7 + Set gtmtypes("repl_inst_hdr",8,"name")="repl_inst_hdr.recvpool_semid" + Set gtmtypes("repl_inst_hdr",8,"off")=24 + Set gtmtypes("repl_inst_hdr",8,"len")=4 + Set gtmtypes("repl_inst_hdr",8,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","recvpool_semid")=8 + Set gtmtypes("repl_inst_hdr",9,"name")="repl_inst_hdr.recvpool_shmid" + Set gtmtypes("repl_inst_hdr",9,"off")=28 + Set gtmtypes("repl_inst_hdr",9,"len")=4 + Set gtmtypes("repl_inst_hdr",9,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","recvpool_shmid")=9 + Set gtmtypes("repl_inst_hdr",10,"name")="repl_inst_hdr.jnlpool_semid_ctime" + Set gtmtypes("repl_inst_hdr",10,"off")=32 + Set gtmtypes("repl_inst_hdr",10,"len")=4 + Set gtmtypes("repl_inst_hdr",10,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_semid_ctime")=10 + Set gtmtypes("repl_inst_hdr",11,"name")="repl_inst_hdr.filler8bytealign_1" + Set gtmtypes("repl_inst_hdr",11,"off")=36 + Set gtmtypes("repl_inst_hdr",11,"len")=4 + Set gtmtypes("repl_inst_hdr",11,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_1")=11 + Set gtmtypes("repl_inst_hdr",12,"name")="repl_inst_hdr.jnlpool_shmid_ctime" + Set gtmtypes("repl_inst_hdr",12,"off")=40 + Set gtmtypes("repl_inst_hdr",12,"len")=4 + Set gtmtypes("repl_inst_hdr",12,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","jnlpool_shmid_ctime")=12 + Set gtmtypes("repl_inst_hdr",13,"name")="repl_inst_hdr.filler8bytealign_2" + Set gtmtypes("repl_inst_hdr",13,"off")=44 + Set gtmtypes("repl_inst_hdr",13,"len")=4 + Set gtmtypes("repl_inst_hdr",13,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_2")=13 + Set gtmtypes("repl_inst_hdr",14,"name")="repl_inst_hdr.recvpool_semid_ctime" + Set gtmtypes("repl_inst_hdr",14,"off")=48 + Set gtmtypes("repl_inst_hdr",14,"len")=4 + Set gtmtypes("repl_inst_hdr",14,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","recvpool_semid_ctime")=14 + Set gtmtypes("repl_inst_hdr",15,"name")="repl_inst_hdr.filler8bytealign_3" + Set gtmtypes("repl_inst_hdr",15,"off")=52 + Set gtmtypes("repl_inst_hdr",15,"len")=4 + Set gtmtypes("repl_inst_hdr",15,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_3")=15 + Set gtmtypes("repl_inst_hdr",16,"name")="repl_inst_hdr.recvpool_shmid_ctime" + Set gtmtypes("repl_inst_hdr",16,"off")=56 + Set gtmtypes("repl_inst_hdr",16,"len")=4 + Set gtmtypes("repl_inst_hdr",16,"type")="time_t" + Set gtmtypfldindx("repl_inst_hdr","recvpool_shmid_ctime")=16 + Set gtmtypes("repl_inst_hdr",17,"name")="repl_inst_hdr.filler8bytealign_4" + Set gtmtypes("repl_inst_hdr",17,"off")=60 + Set gtmtypes("repl_inst_hdr",17,"len")=4 + Set gtmtypes("repl_inst_hdr",17,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","filler8bytealign_4")=17 + Set gtmtypes("repl_inst_hdr",18,"name")="repl_inst_hdr.inst_info" + Set gtmtypes("repl_inst_hdr",18,"off")=64 + Set gtmtypes("repl_inst_hdr",18,"len")=40 + Set gtmtypes("repl_inst_hdr",18,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","inst_info")=18 + Set gtmtypes("repl_inst_hdr",19,"name")="repl_inst_hdr.inst_info.created_nodename" + Set gtmtypes("repl_inst_hdr",19,"off")=64 + Set gtmtypes("repl_inst_hdr",19,"len")=16 + Set gtmtypes("repl_inst_hdr",19,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","inst_info.created_nodename")=19 + Set gtmtypes("repl_inst_hdr",20,"name")="repl_inst_hdr.inst_info.this_instname" + Set gtmtypes("repl_inst_hdr",20,"off")=80 + Set gtmtypes("repl_inst_hdr",20,"len")=16 + Set gtmtypes("repl_inst_hdr",20,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","inst_info.this_instname")=20 + Set gtmtypes("repl_inst_hdr",21,"name")="repl_inst_hdr.inst_info.created_time" + Set gtmtypes("repl_inst_hdr",21,"off")=96 + Set gtmtypes("repl_inst_hdr",21,"len")=4 + Set gtmtypes("repl_inst_hdr",21,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","inst_info.created_time")=21 + Set gtmtypes("repl_inst_hdr",22,"name")="repl_inst_hdr.inst_info.creator_pid" + Set gtmtypes("repl_inst_hdr",22,"off")=100 + Set gtmtypes("repl_inst_hdr",22,"len")=4 + Set gtmtypes("repl_inst_hdr",22,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","inst_info.creator_pid")=22 + Set gtmtypes("repl_inst_hdr",23,"name")="repl_inst_hdr.lms_group_info" + Set gtmtypes("repl_inst_hdr",23,"off")=104 + Set gtmtypes("repl_inst_hdr",23,"len")=40 + Set gtmtypes("repl_inst_hdr",23,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info")=23 + Set gtmtypes("repl_inst_hdr",24,"name")="repl_inst_hdr.lms_group_info.created_nodename" + Set gtmtypes("repl_inst_hdr",24,"off")=104 + Set gtmtypes("repl_inst_hdr",24,"len")=16 + Set gtmtypes("repl_inst_hdr",24,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.created_nodename")=24 + Set gtmtypes("repl_inst_hdr",25,"name")="repl_inst_hdr.lms_group_info.this_instname" + Set gtmtypes("repl_inst_hdr",25,"off")=120 + Set gtmtypes("repl_inst_hdr",25,"len")=16 + Set gtmtypes("repl_inst_hdr",25,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.this_instname")=25 + Set gtmtypes("repl_inst_hdr",26,"name")="repl_inst_hdr.lms_group_info.created_time" + Set gtmtypes("repl_inst_hdr",26,"off")=136 + Set gtmtypes("repl_inst_hdr",26,"len")=4 + Set gtmtypes("repl_inst_hdr",26,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.created_time")=26 + Set gtmtypes("repl_inst_hdr",27,"name")="repl_inst_hdr.lms_group_info.creator_pid" + Set gtmtypes("repl_inst_hdr",27,"off")=140 + Set gtmtypes("repl_inst_hdr",27,"len")=4 + Set gtmtypes("repl_inst_hdr",27,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","lms_group_info.creator_pid")=27 + Set gtmtypes("repl_inst_hdr",28,"name")="repl_inst_hdr.jnl_seqno" + Set gtmtypes("repl_inst_hdr",28,"off")=144 + Set gtmtypes("repl_inst_hdr",28,"len")=8 + Set gtmtypes("repl_inst_hdr",28,"type")="uint64_t" + Set gtmtypfldindx("repl_inst_hdr","jnl_seqno")=28 + Set gtmtypes("repl_inst_hdr",29,"name")="repl_inst_hdr.root_primary_cycle" + Set gtmtypes("repl_inst_hdr",29,"off")=152 + Set gtmtypes("repl_inst_hdr",29,"len")=4 + Set gtmtypes("repl_inst_hdr",29,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","root_primary_cycle")=29 + Set gtmtypes("repl_inst_hdr",30,"name")="repl_inst_hdr.num_histinfo" + Set gtmtypes("repl_inst_hdr",30,"off")=156 + Set gtmtypes("repl_inst_hdr",30,"len")=4 + Set gtmtypes("repl_inst_hdr",30,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","num_histinfo")=30 + Set gtmtypes("repl_inst_hdr",31,"name")="repl_inst_hdr.num_alloc_histinfo" + Set gtmtypes("repl_inst_hdr",31,"off")=160 + Set gtmtypes("repl_inst_hdr",31,"len")=4 + Set gtmtypes("repl_inst_hdr",31,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","num_alloc_histinfo")=31 + Set gtmtypes("repl_inst_hdr",32,"name")="repl_inst_hdr.crash" + Set gtmtypes("repl_inst_hdr",32,"off")=164 + Set gtmtypes("repl_inst_hdr",32,"len")=4 + Set gtmtypes("repl_inst_hdr",32,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","crash")=32 + Set gtmtypes("repl_inst_hdr",33,"name")="repl_inst_hdr.was_rootprimary" + Set gtmtypes("repl_inst_hdr",33,"off")=168 + Set gtmtypes("repl_inst_hdr",33,"len")=4 + Set gtmtypes("repl_inst_hdr",33,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","was_rootprimary")=33 + Set gtmtypes("repl_inst_hdr",34,"name")="repl_inst_hdr.is_supplementary" + Set gtmtypes("repl_inst_hdr",34,"off")=172 + Set gtmtypes("repl_inst_hdr",34,"len")=4 + Set gtmtypes("repl_inst_hdr",34,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","is_supplementary")=34 + Set gtmtypes("repl_inst_hdr",35,"name")="repl_inst_hdr.last_histinfo_num" + Set gtmtypes("repl_inst_hdr",35,"off")=176 + Set gtmtypes("repl_inst_hdr",35,"len")=64 + Set gtmtypes("repl_inst_hdr",35,"type")="int" + Set gtmtypfldindx("repl_inst_hdr","last_histinfo_num")=35 + Set gtmtypes("repl_inst_hdr",35,"dim")=16 + Set gtmtypes("repl_inst_hdr",36,"name")="repl_inst_hdr.strm_seqno" + Set gtmtypes("repl_inst_hdr",36,"off")=240 + Set gtmtypes("repl_inst_hdr",36,"len")=128 + Set gtmtypes("repl_inst_hdr",36,"type")="uint64_t" + Set gtmtypfldindx("repl_inst_hdr","strm_seqno")=36 + Set gtmtypes("repl_inst_hdr",36,"dim")=16 + Set gtmtypes("repl_inst_hdr",37,"name")="repl_inst_hdr.strm_group_info" + Set gtmtypes("repl_inst_hdr",37,"off")=368 + Set gtmtypes("repl_inst_hdr",37,"len")=600 + Set gtmtypes("repl_inst_hdr",37,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info")=37 + Set gtmtypes("repl_inst_hdr",37,"dim")=15 + Set gtmtypes("repl_inst_hdr",38,"name")="repl_inst_hdr.strm_group_info[0].created_nodename" + Set gtmtypes("repl_inst_hdr",38,"off")=368 + Set gtmtypes("repl_inst_hdr",38,"len")=16 + Set gtmtypes("repl_inst_hdr",38,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].created_nodename")=38 + Set gtmtypes("repl_inst_hdr",39,"name")="repl_inst_hdr.strm_group_info[0].this_instname" + Set gtmtypes("repl_inst_hdr",39,"off")=384 + Set gtmtypes("repl_inst_hdr",39,"len")=16 + Set gtmtypes("repl_inst_hdr",39,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].this_instname")=39 + Set gtmtypes("repl_inst_hdr",40,"name")="repl_inst_hdr.strm_group_info[0].created_time" + Set gtmtypes("repl_inst_hdr",40,"off")=400 + Set gtmtypes("repl_inst_hdr",40,"len")=4 + Set gtmtypes("repl_inst_hdr",40,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].created_time")=40 + Set gtmtypes("repl_inst_hdr",41,"name")="repl_inst_hdr.strm_group_info[0].creator_pid" + Set gtmtypes("repl_inst_hdr",41,"off")=404 + Set gtmtypes("repl_inst_hdr",41,"len")=4 + Set gtmtypes("repl_inst_hdr",41,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_hdr","strm_group_info[0].creator_pid")=41 + Set gtmtypes("repl_inst_hdr",42,"name")="repl_inst_hdr.file_corrupt" + Set gtmtypes("repl_inst_hdr",42,"off")=968 + Set gtmtypes("repl_inst_hdr",42,"len")=4 + Set gtmtypes("repl_inst_hdr",42,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","file_corrupt")=42 + Set gtmtypes("repl_inst_hdr",43,"name")="repl_inst_hdr.ftok_counter_halted" + Set gtmtypes("repl_inst_hdr",43,"off")=972 + Set gtmtypes("repl_inst_hdr",43,"len")=4 + Set gtmtypes("repl_inst_hdr",43,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","ftok_counter_halted")=43 + Set gtmtypes("repl_inst_hdr",44,"name")="repl_inst_hdr.qdbrundown" + Set gtmtypes("repl_inst_hdr",44,"off")=976 + Set gtmtypes("repl_inst_hdr",44,"len")=4 + Set gtmtypes("repl_inst_hdr",44,"type")="boolean_t" + Set gtmtypfldindx("repl_inst_hdr","qdbrundown")=44 + Set gtmtypes("repl_inst_hdr",45,"name")="repl_inst_hdr.filler_1024" + Set gtmtypes("repl_inst_hdr",45,"off")=980 + Set gtmtypes("repl_inst_hdr",45,"len")=44 + Set gtmtypes("repl_inst_hdr",45,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_hdr","filler_1024")=45 + ; + Set gtmtypes("repl_inst_uuid")="struct" + Set gtmtypes("repl_inst_uuid",0)=4 + Set gtmtypes("repl_inst_uuid","len")=40 + Set gtmtypes("repl_inst_uuid",1,"name")="repl_inst_uuid.created_nodename" + Set gtmtypes("repl_inst_uuid",1,"off")=0 + Set gtmtypes("repl_inst_uuid",1,"len")=16 + Set gtmtypes("repl_inst_uuid",1,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_uuid","created_nodename")=1 + Set gtmtypes("repl_inst_uuid",2,"name")="repl_inst_uuid.this_instname" + Set gtmtypes("repl_inst_uuid",2,"off")=16 + Set gtmtypes("repl_inst_uuid",2,"len")=16 + Set gtmtypes("repl_inst_uuid",2,"type")="unsigned-char" + Set gtmtypfldindx("repl_inst_uuid","this_instname")=2 + Set gtmtypes("repl_inst_uuid",3,"name")="repl_inst_uuid.created_time" + Set gtmtypes("repl_inst_uuid",3,"off")=32 + Set gtmtypes("repl_inst_uuid",3,"len")=4 + Set gtmtypes("repl_inst_uuid",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_uuid","created_time")=3 + Set gtmtypes("repl_inst_uuid",4,"name")="repl_inst_uuid.creator_pid" + Set gtmtypes("repl_inst_uuid",4,"off")=36 + Set gtmtypes("repl_inst_uuid",4,"len")=4 + Set gtmtypes("repl_inst_uuid",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_inst_uuid","creator_pid")=4 + ; + Set gtmtypes("repl_instinfo_msg_t")="struct" + Set gtmtypes("repl_instinfo_msg_t",0)=11 + Set gtmtypes("repl_instinfo_msg_t","len")=80 + Set gtmtypes("repl_instinfo_msg_t",1,"name")="repl_instinfo_msg_t.type" + Set gtmtypes("repl_instinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_instinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_instinfo_msg_t","type")=1 + Set gtmtypes("repl_instinfo_msg_t",2,"name")="repl_instinfo_msg_t.len" + Set gtmtypes("repl_instinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_instinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_instinfo_msg_t","len")=2 + Set gtmtypes("repl_instinfo_msg_t",3,"name")="repl_instinfo_msg_t.instname" + Set gtmtypes("repl_instinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_instinfo_msg_t",3,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","instname")=3 + Set gtmtypes("repl_instinfo_msg_t",4,"name")="repl_instinfo_msg_t.strm_jnl_seqno" + Set gtmtypes("repl_instinfo_msg_t",4,"off")=24 + Set gtmtypes("repl_instinfo_msg_t",4,"len")=8 + Set gtmtypes("repl_instinfo_msg_t",4,"type")="uint64_t" + Set gtmtypfldindx("repl_instinfo_msg_t","strm_jnl_seqno")=4 + Set gtmtypes("repl_instinfo_msg_t",5,"name")="repl_instinfo_msg_t.lms_group_info" + Set gtmtypes("repl_instinfo_msg_t",5,"off")=32 + Set gtmtypes("repl_instinfo_msg_t",5,"len")=40 + Set gtmtypes("repl_instinfo_msg_t",5,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info")=5 + Set gtmtypes("repl_instinfo_msg_t",6,"name")="repl_instinfo_msg_t.lms_group_info.created_nodename" + Set gtmtypes("repl_instinfo_msg_t",6,"off")=32 + Set gtmtypes("repl_instinfo_msg_t",6,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.created_nodename")=6 + Set gtmtypes("repl_instinfo_msg_t",7,"name")="repl_instinfo_msg_t.lms_group_info.this_instname" + Set gtmtypes("repl_instinfo_msg_t",7,"off")=48 + Set gtmtypes("repl_instinfo_msg_t",7,"len")=16 + Set gtmtypes("repl_instinfo_msg_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.this_instname")=7 + Set gtmtypes("repl_instinfo_msg_t",8,"name")="repl_instinfo_msg_t.lms_group_info.created_time" + Set gtmtypes("repl_instinfo_msg_t",8,"off")=64 + Set gtmtypes("repl_instinfo_msg_t",8,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.created_time")=8 + Set gtmtypes("repl_instinfo_msg_t",9,"name")="repl_instinfo_msg_t.lms_group_info.creator_pid" + Set gtmtypes("repl_instinfo_msg_t",9,"off")=68 + Set gtmtypes("repl_instinfo_msg_t",9,"len")=4 + Set gtmtypes("repl_instinfo_msg_t",9,"type")="unsigned-int" + Set gtmtypfldindx("repl_instinfo_msg_t","lms_group_info.creator_pid")=9 + Set gtmtypes("repl_instinfo_msg_t",10,"name")="repl_instinfo_msg_t.was_rootprimary" + Set gtmtypes("repl_instinfo_msg_t",10,"off")=72 + Set gtmtypes("repl_instinfo_msg_t",10,"len")=1 + Set gtmtypes("repl_instinfo_msg_t",10,"type")="unsigned-char" + Set gtmtypfldindx("repl_instinfo_msg_t","was_rootprimary")=10 + Set gtmtypes("repl_instinfo_msg_t",11,"name")="repl_instinfo_msg_t.filler_32" + Set gtmtypes("repl_instinfo_msg_t",11,"off")=73 + Set gtmtypes("repl_instinfo_msg_t",11,"len")=7 + Set gtmtypes("repl_instinfo_msg_t",11,"type")="char" + Set gtmtypfldindx("repl_instinfo_msg_t","filler_32")=11 + ; + Set gtmtypes("repl_logfile_info_msg_t")="struct" + Set gtmtypes("repl_logfile_info_msg_t",0)=7 + Set gtmtypes("repl_logfile_info_msg_t","len")=1056 + Set gtmtypes("repl_logfile_info_msg_t",1,"name")="repl_logfile_info_msg_t.type" + Set gtmtypes("repl_logfile_info_msg_t",1,"off")=0 + Set gtmtypes("repl_logfile_info_msg_t",1,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","type")=1 + Set gtmtypes("repl_logfile_info_msg_t",2,"name")="repl_logfile_info_msg_t.len" + Set gtmtypes("repl_logfile_info_msg_t",2,"off")=4 + Set gtmtypes("repl_logfile_info_msg_t",2,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","len")=2 + Set gtmtypes("repl_logfile_info_msg_t",3,"name")="repl_logfile_info_msg_t.fullpath_len" + Set gtmtypes("repl_logfile_info_msg_t",3,"off")=8 + Set gtmtypes("repl_logfile_info_msg_t",3,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_logfile_info_msg_t","fullpath_len")=3 + Set gtmtypes("repl_logfile_info_msg_t",4,"name")="repl_logfile_info_msg_t.pid" + Set gtmtypes("repl_logfile_info_msg_t",4,"off")=12 + Set gtmtypes("repl_logfile_info_msg_t",4,"len")=4 + Set gtmtypes("repl_logfile_info_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_logfile_info_msg_t","pid")=4 + Set gtmtypes("repl_logfile_info_msg_t",5,"name")="repl_logfile_info_msg_t.proto_ver" + Set gtmtypes("repl_logfile_info_msg_t",5,"off")=16 + Set gtmtypes("repl_logfile_info_msg_t",5,"len")=1 + Set gtmtypes("repl_logfile_info_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","proto_ver")=5 + Set gtmtypes("repl_logfile_info_msg_t",6,"name")="repl_logfile_info_msg_t.filler_32" + Set gtmtypes("repl_logfile_info_msg_t",6,"off")=17 + Set gtmtypes("repl_logfile_info_msg_t",6,"len")=15 + Set gtmtypes("repl_logfile_info_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","filler_32")=6 + Set gtmtypes("repl_logfile_info_msg_t",7,"name")="repl_logfile_info_msg_t.fullpath" + Set gtmtypes("repl_logfile_info_msg_t",7,"off")=32 + Set gtmtypes("repl_logfile_info_msg_t",7,"len")=1024 + Set gtmtypes("repl_logfile_info_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_logfile_info_msg_t","fullpath")=7 + ; + Set gtmtypes("repl_msg_t")="struct" + Set gtmtypes("repl_msg_t",0)=3 + Set gtmtypes("repl_msg_t","len")=32 + Set gtmtypes("repl_msg_t",1,"name")="repl_msg_t.type" + Set gtmtypes("repl_msg_t",1,"off")=0 + Set gtmtypes("repl_msg_t",1,"len")=4 + Set gtmtypes("repl_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_msg_t","type")=1 + Set gtmtypes("repl_msg_t",2,"name")="repl_msg_t.len" + Set gtmtypes("repl_msg_t",2,"off")=4 + Set gtmtypes("repl_msg_t",2,"len")=4 + Set gtmtypes("repl_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_msg_t","len")=2 + Set gtmtypes("repl_msg_t",3,"name")="repl_msg_t.msg" + Set gtmtypes("repl_msg_t",3,"off")=8 + Set gtmtypes("repl_msg_t",3,"len")=24 + Set gtmtypes("repl_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_msg_t","msg")=3 + ; + Set gtmtypes("repl_needhistinfo_msg_t")="struct" + Set gtmtypes("repl_needhistinfo_msg_t",0)=6 + Set gtmtypes("repl_needhistinfo_msg_t","len")=32 + Set gtmtypes("repl_needhistinfo_msg_t",1,"name")="repl_needhistinfo_msg_t.type" + Set gtmtypes("repl_needhistinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_needhistinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","type")=1 + Set gtmtypes("repl_needhistinfo_msg_t",2,"name")="repl_needhistinfo_msg_t.len" + Set gtmtypes("repl_needhistinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_needhistinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","len")=2 + Set gtmtypes("repl_needhistinfo_msg_t",3,"name")="repl_needhistinfo_msg_t.seqno" + Set gtmtypes("repl_needhistinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_needhistinfo_msg_t",3,"len")=8 + Set gtmtypes("repl_needhistinfo_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_needhistinfo_msg_t","seqno")=3 + Set gtmtypes("repl_needhistinfo_msg_t",4,"name")="repl_needhistinfo_msg_t.strm_num" + Set gtmtypes("repl_needhistinfo_msg_t",4,"off")=16 + Set gtmtypes("repl_needhistinfo_msg_t",4,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",4,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","strm_num")=4 + Set gtmtypes("repl_needhistinfo_msg_t",5,"name")="repl_needhistinfo_msg_t.histinfo_num" + Set gtmtypes("repl_needhistinfo_msg_t",5,"off")=20 + Set gtmtypes("repl_needhistinfo_msg_t",5,"len")=4 + Set gtmtypes("repl_needhistinfo_msg_t",5,"type")="int" + Set gtmtypfldindx("repl_needhistinfo_msg_t","histinfo_num")=5 + Set gtmtypes("repl_needhistinfo_msg_t",6,"name")="repl_needhistinfo_msg_t.filler_32" + Set gtmtypes("repl_needhistinfo_msg_t",6,"off")=24 + Set gtmtypes("repl_needhistinfo_msg_t",6,"len")=8 + Set gtmtypes("repl_needhistinfo_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_needhistinfo_msg_t","filler_32")=6 + ; + Set gtmtypes("repl_needinst_msg_t")="struct" + Set gtmtypes("repl_needinst_msg_t",0)=13 + Set gtmtypes("repl_needinst_msg_t","len")=72 + Set gtmtypes("repl_needinst_msg_t",1,"name")="repl_needinst_msg_t.type" + Set gtmtypes("repl_needinst_msg_t",1,"off")=0 + Set gtmtypes("repl_needinst_msg_t",1,"len")=4 + Set gtmtypes("repl_needinst_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needinst_msg_t","type")=1 + Set gtmtypes("repl_needinst_msg_t",2,"name")="repl_needinst_msg_t.len" + Set gtmtypes("repl_needinst_msg_t",2,"off")=4 + Set gtmtypes("repl_needinst_msg_t",2,"len")=4 + Set gtmtypes("repl_needinst_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needinst_msg_t","len")=2 + Set gtmtypes("repl_needinst_msg_t",3,"name")="repl_needinst_msg_t.instname" + Set gtmtypes("repl_needinst_msg_t",3,"off")=8 + Set gtmtypes("repl_needinst_msg_t",3,"len")=16 + Set gtmtypes("repl_needinst_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","instname")=3 + Set gtmtypes("repl_needinst_msg_t",4,"name")="repl_needinst_msg_t.lms_group_info" + Set gtmtypes("repl_needinst_msg_t",4,"off")=24 + Set gtmtypes("repl_needinst_msg_t",4,"len")=40 + Set gtmtypes("repl_needinst_msg_t",4,"type")="repl_inst_uuid" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info")=4 + Set gtmtypes("repl_needinst_msg_t",5,"name")="repl_needinst_msg_t.lms_group_info.created_nodename" + Set gtmtypes("repl_needinst_msg_t",5,"off")=24 + Set gtmtypes("repl_needinst_msg_t",5,"len")=16 + Set gtmtypes("repl_needinst_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.created_nodename")=5 + Set gtmtypes("repl_needinst_msg_t",6,"name")="repl_needinst_msg_t.lms_group_info.this_instname" + Set gtmtypes("repl_needinst_msg_t",6,"off")=40 + Set gtmtypes("repl_needinst_msg_t",6,"len")=16 + Set gtmtypes("repl_needinst_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.this_instname")=6 + Set gtmtypes("repl_needinst_msg_t",7,"name")="repl_needinst_msg_t.lms_group_info.created_time" + Set gtmtypes("repl_needinst_msg_t",7,"off")=56 + Set gtmtypes("repl_needinst_msg_t",7,"len")=4 + Set gtmtypes("repl_needinst_msg_t",7,"type")="unsigned-int" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.created_time")=7 + Set gtmtypes("repl_needinst_msg_t",8,"name")="repl_needinst_msg_t.lms_group_info.creator_pid" + Set gtmtypes("repl_needinst_msg_t",8,"off")=60 + Set gtmtypes("repl_needinst_msg_t",8,"len")=4 + Set gtmtypes("repl_needinst_msg_t",8,"type")="unsigned-int" + Set gtmtypfldindx("repl_needinst_msg_t","lms_group_info.creator_pid")=8 + Set gtmtypes("repl_needinst_msg_t",9,"name")="repl_needinst_msg_t.proto_ver" + Set gtmtypes("repl_needinst_msg_t",9,"off")=64 + Set gtmtypes("repl_needinst_msg_t",9,"len")=1 + Set gtmtypes("repl_needinst_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","proto_ver")=9 + Set gtmtypes("repl_needinst_msg_t",10,"name")="repl_needinst_msg_t.is_rootprimary" + Set gtmtypes("repl_needinst_msg_t",10,"off")=65 + Set gtmtypes("repl_needinst_msg_t",10,"len")=1 + Set gtmtypes("repl_needinst_msg_t",10,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","is_rootprimary")=10 + Set gtmtypes("repl_needinst_msg_t",11,"name")="repl_needinst_msg_t.is_supplementary" + Set gtmtypes("repl_needinst_msg_t",11,"off")=66 + Set gtmtypes("repl_needinst_msg_t",11,"len")=1 + Set gtmtypes("repl_needinst_msg_t",11,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","is_supplementary")=11 + Set gtmtypes("repl_needinst_msg_t",12,"name")="repl_needinst_msg_t.jnl_ver" + Set gtmtypes("repl_needinst_msg_t",12,"off")=67 + Set gtmtypes("repl_needinst_msg_t",12,"len")=1 + Set gtmtypes("repl_needinst_msg_t",12,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","jnl_ver")=12 + Set gtmtypes("repl_needinst_msg_t",13,"name")="repl_needinst_msg_t.filler_32" + Set gtmtypes("repl_needinst_msg_t",13,"off")=68 + Set gtmtypes("repl_needinst_msg_t",13,"len")=4 + Set gtmtypes("repl_needinst_msg_t",13,"type")="char" + Set gtmtypfldindx("repl_needinst_msg_t","filler_32")=13 + ; + Set gtmtypes("repl_needstrminfo_msg_t")="struct" + Set gtmtypes("repl_needstrminfo_msg_t",0)=4 + Set gtmtypes("repl_needstrminfo_msg_t","len")=32 + Set gtmtypes("repl_needstrminfo_msg_t",1,"name")="repl_needstrminfo_msg_t.type" + Set gtmtypes("repl_needstrminfo_msg_t",1,"off")=0 + Set gtmtypes("repl_needstrminfo_msg_t",1,"len")=4 + Set gtmtypes("repl_needstrminfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_needstrminfo_msg_t","type")=1 + Set gtmtypes("repl_needstrminfo_msg_t",2,"name")="repl_needstrminfo_msg_t.len" + Set gtmtypes("repl_needstrminfo_msg_t",2,"off")=4 + Set gtmtypes("repl_needstrminfo_msg_t",2,"len")=4 + Set gtmtypes("repl_needstrminfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_needstrminfo_msg_t","len")=2 + Set gtmtypes("repl_needstrminfo_msg_t",3,"name")="repl_needstrminfo_msg_t.seqno" + Set gtmtypes("repl_needstrminfo_msg_t",3,"off")=8 + Set gtmtypes("repl_needstrminfo_msg_t",3,"len")=8 + Set gtmtypes("repl_needstrminfo_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_needstrminfo_msg_t","seqno")=3 + Set gtmtypes("repl_needstrminfo_msg_t",4,"name")="repl_needstrminfo_msg_t.filler_32" + Set gtmtypes("repl_needstrminfo_msg_t",4,"off")=16 + Set gtmtypes("repl_needstrminfo_msg_t",4,"len")=16 + Set gtmtypes("repl_needstrminfo_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_needstrminfo_msg_t","filler_32")=4 + ; + Set gtmtypes("repl_old_instinfo_msg_t")="struct" + Set gtmtypes("repl_old_instinfo_msg_t",0)=5 + Set gtmtypes("repl_old_instinfo_msg_t","len")=32 + Set gtmtypes("repl_old_instinfo_msg_t",1,"name")="repl_old_instinfo_msg_t.type" + Set gtmtypes("repl_old_instinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_old_instinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_old_instinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_instinfo_msg_t","type")=1 + Set gtmtypes("repl_old_instinfo_msg_t",2,"name")="repl_old_instinfo_msg_t.len" + Set gtmtypes("repl_old_instinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_old_instinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_old_instinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_instinfo_msg_t","len")=2 + Set gtmtypes("repl_old_instinfo_msg_t",3,"name")="repl_old_instinfo_msg_t.instname" + Set gtmtypes("repl_old_instinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_old_instinfo_msg_t",3,"len")=16 + Set gtmtypes("repl_old_instinfo_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","instname")=3 + Set gtmtypes("repl_old_instinfo_msg_t",4,"name")="repl_old_instinfo_msg_t.was_rootprimary" + Set gtmtypes("repl_old_instinfo_msg_t",4,"off")=24 + Set gtmtypes("repl_old_instinfo_msg_t",4,"len")=1 + Set gtmtypes("repl_old_instinfo_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","was_rootprimary")=4 + Set gtmtypes("repl_old_instinfo_msg_t",5,"name")="repl_old_instinfo_msg_t.filler_32" + Set gtmtypes("repl_old_instinfo_msg_t",5,"off")=25 + Set gtmtypes("repl_old_instinfo_msg_t",5,"len")=7 + Set gtmtypes("repl_old_instinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_old_instinfo_msg_t","filler_32")=5 + ; + Set gtmtypes("repl_old_needinst_msg_t")="struct" + Set gtmtypes("repl_old_needinst_msg_t",0)=7 + Set gtmtypes("repl_old_needinst_msg_t","len")=32 + Set gtmtypes("repl_old_needinst_msg_t",1,"name")="repl_old_needinst_msg_t.type" + Set gtmtypes("repl_old_needinst_msg_t",1,"off")=0 + Set gtmtypes("repl_old_needinst_msg_t",1,"len")=4 + Set gtmtypes("repl_old_needinst_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_needinst_msg_t","type")=1 + Set gtmtypes("repl_old_needinst_msg_t",2,"name")="repl_old_needinst_msg_t.len" + Set gtmtypes("repl_old_needinst_msg_t",2,"off")=4 + Set gtmtypes("repl_old_needinst_msg_t",2,"len")=4 + Set gtmtypes("repl_old_needinst_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_needinst_msg_t","len")=2 + Set gtmtypes("repl_old_needinst_msg_t",3,"name")="repl_old_needinst_msg_t.instname" + Set gtmtypes("repl_old_needinst_msg_t",3,"off")=8 + Set gtmtypes("repl_old_needinst_msg_t",3,"len")=16 + Set gtmtypes("repl_old_needinst_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_needinst_msg_t","instname")=3 + Set gtmtypes("repl_old_needinst_msg_t",4,"name")="repl_old_needinst_msg_t.proto_ver" + Set gtmtypes("repl_old_needinst_msg_t",4,"off")=24 + Set gtmtypes("repl_old_needinst_msg_t",4,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","proto_ver")=4 + Set gtmtypes("repl_old_needinst_msg_t",5,"name")="repl_old_needinst_msg_t.node_endianness" + Set gtmtypes("repl_old_needinst_msg_t",5,"off")=25 + Set gtmtypes("repl_old_needinst_msg_t",5,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","node_endianness")=5 + Set gtmtypes("repl_old_needinst_msg_t",6,"name")="repl_old_needinst_msg_t.is_rootprimary" + Set gtmtypes("repl_old_needinst_msg_t",6,"off")=26 + Set gtmtypes("repl_old_needinst_msg_t",6,"len")=1 + Set gtmtypes("repl_old_needinst_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","is_rootprimary")=6 + Set gtmtypes("repl_old_needinst_msg_t",7,"name")="repl_old_needinst_msg_t.filler_32" + Set gtmtypes("repl_old_needinst_msg_t",7,"off")=27 + Set gtmtypes("repl_old_needinst_msg_t",7,"len")=5 + Set gtmtypes("repl_old_needinst_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_old_needinst_msg_t","filler_32")=7 + ; + Set gtmtypes("repl_old_triple_jnl_t")="struct" + Set gtmtypes("repl_old_triple_jnl_t",0)=4 + Set gtmtypes("repl_old_triple_jnl_t","len")=48 + Set gtmtypes("repl_old_triple_jnl_t",1,"name")="repl_old_triple_jnl_t.cycle" + Set gtmtypes("repl_old_triple_jnl_t",1,"off")=4 + Set gtmtypes("repl_old_triple_jnl_t",1,"len")=4 + Set gtmtypes("repl_old_triple_jnl_t",1,"type")="unsigned-int" + Set gtmtypfldindx("repl_old_triple_jnl_t","cycle")=1 + Set gtmtypes("repl_old_triple_jnl_t",2,"name")="repl_old_triple_jnl_t.start_seqno" + Set gtmtypes("repl_old_triple_jnl_t",2,"off")=8 + Set gtmtypes("repl_old_triple_jnl_t",2,"len")=8 + Set gtmtypes("repl_old_triple_jnl_t",2,"type")="uint64_t" + Set gtmtypfldindx("repl_old_triple_jnl_t","start_seqno")=2 + Set gtmtypes("repl_old_triple_jnl_t",3,"name")="repl_old_triple_jnl_t.instname" + Set gtmtypes("repl_old_triple_jnl_t",3,"off")=16 + Set gtmtypes("repl_old_triple_jnl_t",3,"len")=16 + Set gtmtypes("repl_old_triple_jnl_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_jnl_t","instname")=3 + Set gtmtypes("repl_old_triple_jnl_t",4,"name")="repl_old_triple_jnl_t.rcvd_from_instname" + Set gtmtypes("repl_old_triple_jnl_t",4,"off")=32 + Set gtmtypes("repl_old_triple_jnl_t",4,"len")=16 + Set gtmtypes("repl_old_triple_jnl_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_jnl_t","rcvd_from_instname")=4 + ; + Set gtmtypes("repl_old_triple_msg_t")="struct" + Set gtmtypes("repl_old_triple_msg_t",0)=7 + Set gtmtypes("repl_old_triple_msg_t","len")=56 + Set gtmtypes("repl_old_triple_msg_t",1,"name")="repl_old_triple_msg_t.type" + Set gtmtypes("repl_old_triple_msg_t",1,"off")=0 + Set gtmtypes("repl_old_triple_msg_t",1,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_old_triple_msg_t","type")=1 + Set gtmtypes("repl_old_triple_msg_t",2,"name")="repl_old_triple_msg_t.len" + Set gtmtypes("repl_old_triple_msg_t",2,"off")=4 + Set gtmtypes("repl_old_triple_msg_t",2,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_old_triple_msg_t","len")=2 + Set gtmtypes("repl_old_triple_msg_t",3,"name")="repl_old_triple_msg_t.triplecontent" + Set gtmtypes("repl_old_triple_msg_t",3,"off")=8 + Set gtmtypes("repl_old_triple_msg_t",3,"len")=48 + Set gtmtypes("repl_old_triple_msg_t",3,"type")="repl_old_triple_jnl_t" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent")=3 + Set gtmtypes("repl_old_triple_msg_t",4,"name")="repl_old_triple_msg_t.triplecontent.cycle" + Set gtmtypes("repl_old_triple_msg_t",4,"off")=12 + Set gtmtypes("repl_old_triple_msg_t",4,"len")=4 + Set gtmtypes("repl_old_triple_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.cycle")=4 + Set gtmtypes("repl_old_triple_msg_t",5,"name")="repl_old_triple_msg_t.triplecontent.start_seqno" + Set gtmtypes("repl_old_triple_msg_t",5,"off")=16 + Set gtmtypes("repl_old_triple_msg_t",5,"len")=8 + Set gtmtypes("repl_old_triple_msg_t",5,"type")="uint64_t" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.start_seqno")=5 + Set gtmtypes("repl_old_triple_msg_t",6,"name")="repl_old_triple_msg_t.triplecontent.instname" + Set gtmtypes("repl_old_triple_msg_t",6,"off")=24 + Set gtmtypes("repl_old_triple_msg_t",6,"len")=16 + Set gtmtypes("repl_old_triple_msg_t",6,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.instname")=6 + Set gtmtypes("repl_old_triple_msg_t",7,"name")="repl_old_triple_msg_t.triplecontent.rcvd_from_instname" + Set gtmtypes("repl_old_triple_msg_t",7,"off")=40 + Set gtmtypes("repl_old_triple_msg_t",7,"len")=16 + Set gtmtypes("repl_old_triple_msg_t",7,"type")="unsigned-char" + Set gtmtypfldindx("repl_old_triple_msg_t","triplecontent.rcvd_from_instname")=7 + ; + Set gtmtypes("repl_rctl_elem_t")="struct" + Set gtmtypes("repl_rctl_elem_t",0)=4 + Set gtmtypes("repl_rctl_elem_t","len")=16 + Set gtmtypes("repl_rctl_elem_t",1,"name")="repl_rctl_elem_t.prev" + Set gtmtypes("repl_rctl_elem_t",1,"off")=0 + Set gtmtypes("repl_rctl_elem_t",1,"len")=4 + Set gtmtypes("repl_rctl_elem_t",1,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","prev")=1 + Set gtmtypes("repl_rctl_elem_t",2,"name")="repl_rctl_elem_t.next" + Set gtmtypes("repl_rctl_elem_t",2,"off")=4 + Set gtmtypes("repl_rctl_elem_t",2,"len")=4 + Set gtmtypes("repl_rctl_elem_t",2,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","next")=2 + Set gtmtypes("repl_rctl_elem_t",3,"name")="repl_rctl_elem_t.ctl_start" + Set gtmtypes("repl_rctl_elem_t",3,"off")=8 + Set gtmtypes("repl_rctl_elem_t",3,"len")=4 + Set gtmtypes("repl_rctl_elem_t",3,"type")="addr" + Set gtmtypfldindx("repl_rctl_elem_t","ctl_start")=3 + Set gtmtypes("repl_rctl_elem_t",4,"name")="repl_rctl_elem_t.read_complete" + Set gtmtypes("repl_rctl_elem_t",4,"off")=12 + Set gtmtypes("repl_rctl_elem_t",4,"len")=4 + Set gtmtypes("repl_rctl_elem_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_rctl_elem_t","read_complete")=4 + ; + Set gtmtypes("repl_resync_msg_t")="struct" + Set gtmtypes("repl_resync_msg_t",0)=7 + Set gtmtypes("repl_resync_msg_t","len")=32 + Set gtmtypes("repl_resync_msg_t",1,"name")="repl_resync_msg_t.type" + Set gtmtypes("repl_resync_msg_t",1,"off")=0 + Set gtmtypes("repl_resync_msg_t",1,"len")=4 + Set gtmtypes("repl_resync_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_resync_msg_t","type")=1 + Set gtmtypes("repl_resync_msg_t",2,"name")="repl_resync_msg_t.len" + Set gtmtypes("repl_resync_msg_t",2,"off")=4 + Set gtmtypes("repl_resync_msg_t",2,"len")=4 + Set gtmtypes("repl_resync_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_resync_msg_t","len")=2 + Set gtmtypes("repl_resync_msg_t",3,"name")="repl_resync_msg_t.resync_seqno" + Set gtmtypes("repl_resync_msg_t",3,"off")=8 + Set gtmtypes("repl_resync_msg_t",3,"len")=8 + Set gtmtypes("repl_resync_msg_t",3,"type")="uint64_t" + Set gtmtypfldindx("repl_resync_msg_t","resync_seqno")=3 + Set gtmtypes("repl_resync_msg_t",4,"name")="repl_resync_msg_t.proto_ver" + Set gtmtypes("repl_resync_msg_t",4,"off")=16 + Set gtmtypes("repl_resync_msg_t",4,"len")=1 + Set gtmtypes("repl_resync_msg_t",4,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","proto_ver")=4 + Set gtmtypes("repl_resync_msg_t",5,"name")="repl_resync_msg_t.node_endianness" + Set gtmtypes("repl_resync_msg_t",5,"off")=17 + Set gtmtypes("repl_resync_msg_t",5,"len")=1 + Set gtmtypes("repl_resync_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","node_endianness")=5 + Set gtmtypes("repl_resync_msg_t",6,"name")="repl_resync_msg_t.is_supplementary" + Set gtmtypes("repl_resync_msg_t",6,"off")=18 + Set gtmtypes("repl_resync_msg_t",6,"len")=1 + Set gtmtypes("repl_resync_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","is_supplementary")=6 + Set gtmtypes("repl_resync_msg_t",7,"name")="repl_resync_msg_t.filler_32" + Set gtmtypes("repl_resync_msg_t",7,"off")=19 + Set gtmtypes("repl_resync_msg_t",7,"len")=13 + Set gtmtypes("repl_resync_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_resync_msg_t","filler_32")=7 + ; + Set gtmtypes("repl_start_msg_t")="struct" + Set gtmtypes("repl_start_msg_t",0)=9 + Set gtmtypes("repl_start_msg_t","len")=32 + Set gtmtypes("repl_start_msg_t",1,"name")="repl_start_msg_t.type" + Set gtmtypes("repl_start_msg_t",1,"off")=0 + Set gtmtypes("repl_start_msg_t",1,"len")=4 + Set gtmtypes("repl_start_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_start_msg_t","type")=1 + Set gtmtypes("repl_start_msg_t",2,"name")="repl_start_msg_t.len" + Set gtmtypes("repl_start_msg_t",2,"off")=4 + Set gtmtypes("repl_start_msg_t",2,"len")=4 + Set gtmtypes("repl_start_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_start_msg_t","len")=2 + Set gtmtypes("repl_start_msg_t",3,"name")="repl_start_msg_t.start_seqno" + Set gtmtypes("repl_start_msg_t",3,"off")=8 + Set gtmtypes("repl_start_msg_t",3,"len")=8 + Set gtmtypes("repl_start_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_msg_t","start_seqno")=3 + Set gtmtypes("repl_start_msg_t",4,"name")="repl_start_msg_t.start_flags" + Set gtmtypes("repl_start_msg_t",4,"off")=16 + Set gtmtypes("repl_start_msg_t",4,"len")=4 + Set gtmtypes("repl_start_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_start_msg_t","start_flags")=4 + Set gtmtypes("repl_start_msg_t",5,"name")="repl_start_msg_t.jnl_ver" + Set gtmtypes("repl_start_msg_t",5,"off")=20 + Set gtmtypes("repl_start_msg_t",5,"len")=1 + Set gtmtypes("repl_start_msg_t",5,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_msg_t","jnl_ver")=5 + Set gtmtypes("repl_start_msg_t",6,"name")="repl_start_msg_t.proto_ver" + Set gtmtypes("repl_start_msg_t",6,"off")=21 + Set gtmtypes("repl_start_msg_t",6,"len")=1 + Set gtmtypes("repl_start_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","proto_ver")=6 + Set gtmtypes("repl_start_msg_t",7,"name")="repl_start_msg_t.node_endianness" + Set gtmtypes("repl_start_msg_t",7,"off")=22 + Set gtmtypes("repl_start_msg_t",7,"len")=1 + Set gtmtypes("repl_start_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","node_endianness")=7 + Set gtmtypes("repl_start_msg_t",8,"name")="repl_start_msg_t.is_supplementary" + Set gtmtypes("repl_start_msg_t",8,"off")=23 + Set gtmtypes("repl_start_msg_t",8,"len")=1 + Set gtmtypes("repl_start_msg_t",8,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","is_supplementary")=8 + Set gtmtypes("repl_start_msg_t",9,"name")="repl_start_msg_t.filler_32" + Set gtmtypes("repl_start_msg_t",9,"off")=24 + Set gtmtypes("repl_start_msg_t",9,"len")=8 + Set gtmtypes("repl_start_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_start_msg_t","filler_32")=9 + ; + Set gtmtypes("repl_start_reply_msg_t")="struct" + Set gtmtypes("repl_start_reply_msg_t",0)=9 + Set gtmtypes("repl_start_reply_msg_t","len")=32 + Set gtmtypes("repl_start_reply_msg_t",1,"name")="repl_start_reply_msg_t.type" + Set gtmtypes("repl_start_reply_msg_t",1,"off")=0 + Set gtmtypes("repl_start_reply_msg_t",1,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_start_reply_msg_t","type")=1 + Set gtmtypes("repl_start_reply_msg_t",2,"name")="repl_start_reply_msg_t.len" + Set gtmtypes("repl_start_reply_msg_t",2,"off")=4 + Set gtmtypes("repl_start_reply_msg_t",2,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_start_reply_msg_t","len")=2 + Set gtmtypes("repl_start_reply_msg_t",3,"name")="repl_start_reply_msg_t.start_seqno" + Set gtmtypes("repl_start_reply_msg_t",3,"off")=8 + Set gtmtypes("repl_start_reply_msg_t",3,"len")=8 + Set gtmtypes("repl_start_reply_msg_t",3,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_reply_msg_t","start_seqno")=3 + Set gtmtypes("repl_start_reply_msg_t",4,"name")="repl_start_reply_msg_t.jnl_ver" + Set gtmtypes("repl_start_reply_msg_t",4,"off")=16 + Set gtmtypes("repl_start_reply_msg_t",4,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",4,"type")="unsigned-char" + Set gtmtypfldindx("repl_start_reply_msg_t","jnl_ver")=4 + Set gtmtypes("repl_start_reply_msg_t",5,"name")="repl_start_reply_msg_t.start_flags" + Set gtmtypes("repl_start_reply_msg_t",5,"off")=17 + Set gtmtypes("repl_start_reply_msg_t",5,"len")=4 + Set gtmtypes("repl_start_reply_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","start_flags")=5 + Set gtmtypes("repl_start_reply_msg_t",6,"name")="repl_start_reply_msg_t.proto_ver" + Set gtmtypes("repl_start_reply_msg_t",6,"off")=21 + Set gtmtypes("repl_start_reply_msg_t",6,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",6,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","proto_ver")=6 + Set gtmtypes("repl_start_reply_msg_t",7,"name")="repl_start_reply_msg_t.node_endianness" + Set gtmtypes("repl_start_reply_msg_t",7,"off")=22 + Set gtmtypes("repl_start_reply_msg_t",7,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",7,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","node_endianness")=7 + Set gtmtypes("repl_start_reply_msg_t",8,"name")="repl_start_reply_msg_t.is_supplementary" + Set gtmtypes("repl_start_reply_msg_t",8,"off")=23 + Set gtmtypes("repl_start_reply_msg_t",8,"len")=1 + Set gtmtypes("repl_start_reply_msg_t",8,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","is_supplementary")=8 + Set gtmtypes("repl_start_reply_msg_t",9,"name")="repl_start_reply_msg_t.filler_32" + Set gtmtypes("repl_start_reply_msg_t",9,"off")=24 + Set gtmtypes("repl_start_reply_msg_t",9,"len")=8 + Set gtmtypes("repl_start_reply_msg_t",9,"type")="char" + Set gtmtypfldindx("repl_start_reply_msg_t","filler_32")=9 + ; + Set gtmtypes("repl_strminfo_msg_t")="struct" + Set gtmtypes("repl_strminfo_msg_t",0)=3 + Set gtmtypes("repl_strminfo_msg_t","len")=72 + Set gtmtypes("repl_strminfo_msg_t",1,"name")="repl_strminfo_msg_t.type" + Set gtmtypes("repl_strminfo_msg_t",1,"off")=0 + Set gtmtypes("repl_strminfo_msg_t",1,"len")=4 + Set gtmtypes("repl_strminfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","type")=1 + Set gtmtypes("repl_strminfo_msg_t",2,"name")="repl_strminfo_msg_t.len" + Set gtmtypes("repl_strminfo_msg_t",2,"off")=4 + Set gtmtypes("repl_strminfo_msg_t",2,"len")=4 + Set gtmtypes("repl_strminfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","len")=2 + Set gtmtypes("repl_strminfo_msg_t",3,"name")="repl_strminfo_msg_t.last_histinfo_num" + Set gtmtypes("repl_strminfo_msg_t",3,"off")=8 + Set gtmtypes("repl_strminfo_msg_t",3,"len")=64 + Set gtmtypes("repl_strminfo_msg_t",3,"type")="int" + Set gtmtypfldindx("repl_strminfo_msg_t","last_histinfo_num")=3 + Set gtmtypes("repl_strminfo_msg_t",3,"dim")=16 + ; + Set gtmtypes("repl_tls_info_t")="struct" + Set gtmtypes("repl_tls_info_t",0)=6 + Set gtmtypes("repl_tls_info_t","len")=52 + Set gtmtypes("repl_tls_info_t",1,"name")="repl_tls_info_t.id" + Set gtmtypes("repl_tls_info_t",1,"off")=0 + Set gtmtypes("repl_tls_info_t",1,"len")=32 + Set gtmtypes("repl_tls_info_t",1,"type")="char" + Set gtmtypfldindx("repl_tls_info_t","id")=1 + Set gtmtypes("repl_tls_info_t",2,"name")="repl_tls_info_t.plaintext_fallback" + Set gtmtypes("repl_tls_info_t",2,"off")=32 + Set gtmtypes("repl_tls_info_t",2,"len")=4 + Set gtmtypes("repl_tls_info_t",2,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","plaintext_fallback")=2 + Set gtmtypes("repl_tls_info_t",3,"name")="repl_tls_info_t.enabled" + Set gtmtypes("repl_tls_info_t",3,"off")=36 + Set gtmtypes("repl_tls_info_t",3,"len")=4 + Set gtmtypes("repl_tls_info_t",3,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","enabled")=3 + Set gtmtypes("repl_tls_info_t",4,"name")="repl_tls_info_t.notls_retry" + Set gtmtypes("repl_tls_info_t",4,"off")=40 + Set gtmtypes("repl_tls_info_t",4,"len")=4 + Set gtmtypes("repl_tls_info_t",4,"type")="boolean_t" + Set gtmtypfldindx("repl_tls_info_t","notls_retry")=4 + Set gtmtypes("repl_tls_info_t",5,"name")="repl_tls_info_t.renegotiate_state" + Set gtmtypes("repl_tls_info_t",5,"off")=44 + Set gtmtypes("repl_tls_info_t",5,"len")=4 + Set gtmtypes("repl_tls_info_t",5,"type")="int" + Set gtmtypfldindx("repl_tls_info_t","renegotiate_state")=5 + Set gtmtypes("repl_tls_info_t",6,"name")="repl_tls_info_t.sock" + Set gtmtypes("repl_tls_info_t",6,"off")=48 + Set gtmtypes("repl_tls_info_t",6,"len")=4 + Set gtmtypes("repl_tls_info_t",6,"type")="addr" + Set gtmtypfldindx("repl_tls_info_t","sock")=6 + ; + Set gtmtypes("repl_tlsinfo_msg_t")="struct" + Set gtmtypes("repl_tlsinfo_msg_t",0)=5 + Set gtmtypes("repl_tlsinfo_msg_t","len")=32 + Set gtmtypes("repl_tlsinfo_msg_t",1,"name")="repl_tlsinfo_msg_t.type" + Set gtmtypes("repl_tlsinfo_msg_t",1,"off")=0 + Set gtmtypes("repl_tlsinfo_msg_t",1,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",1,"type")="int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","type")=1 + Set gtmtypes("repl_tlsinfo_msg_t",2,"name")="repl_tlsinfo_msg_t.len" + Set gtmtypes("repl_tlsinfo_msg_t",2,"off")=4 + Set gtmtypes("repl_tlsinfo_msg_t",2,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",2,"type")="int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","len")=2 + Set gtmtypes("repl_tlsinfo_msg_t",3,"name")="repl_tlsinfo_msg_t.API_version" + Set gtmtypes("repl_tlsinfo_msg_t",3,"off")=8 + Set gtmtypes("repl_tlsinfo_msg_t",3,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",3,"type")="unsigned-int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","API_version")=3 + Set gtmtypes("repl_tlsinfo_msg_t",4,"name")="repl_tlsinfo_msg_t.library_version" + Set gtmtypes("repl_tlsinfo_msg_t",4,"off")=12 + Set gtmtypes("repl_tlsinfo_msg_t",4,"len")=4 + Set gtmtypes("repl_tlsinfo_msg_t",4,"type")="unsigned-int" + Set gtmtypfldindx("repl_tlsinfo_msg_t","library_version")=4 + Set gtmtypes("repl_tlsinfo_msg_t",5,"name")="repl_tlsinfo_msg_t.filler_32" + Set gtmtypes("repl_tlsinfo_msg_t",5,"off")=16 + Set gtmtypes("repl_tlsinfo_msg_t",5,"len")=16 + Set gtmtypes("repl_tlsinfo_msg_t",5,"type")="char" + Set gtmtypfldindx("repl_tlsinfo_msg_t","filler_32")=5 + ; + Set gtmtypes("replgbl_t")="struct" + Set gtmtypes("replgbl_t",0)=3 + Set gtmtypes("replgbl_t","len")=16 + Set gtmtypes("replgbl_t",1,"name")="replgbl_t.trig_replic_warning_issued" + Set gtmtypes("replgbl_t",1,"off")=0 + Set gtmtypes("replgbl_t",1,"len")=4 + Set gtmtypes("replgbl_t",1,"type")="boolean_t" + Set gtmtypfldindx("replgbl_t","trig_replic_warning_issued")=1 + Set gtmtypes("replgbl_t",2,"name")="replgbl_t.trig_replic_suspect_seqno" + Set gtmtypes("replgbl_t",2,"off")=4 + Set gtmtypes("replgbl_t",2,"len")=8 + Set gtmtypes("replgbl_t",2,"type")="uint64_t" + Set gtmtypfldindx("replgbl_t","trig_replic_suspect_seqno")=2 + Set gtmtypes("replgbl_t",3,"name")="replgbl_t.jnl_release_timeout" + Set gtmtypes("replgbl_t",3,"off")=12 + Set gtmtypes("replgbl_t",3,"len")=4 + Set gtmtypes("replgbl_t",3,"type")="int" + Set gtmtypfldindx("replgbl_t","jnl_release_timeout")=3 + ; + Set gtmtypes("replpool_identifier")="struct" + Set gtmtypes("replpool_identifier",0)=5 + Set gtmtypes("replpool_identifier","len")=312 + Set gtmtypes("replpool_identifier",1,"name")="replpool_identifier.label" + Set gtmtypes("replpool_identifier",1,"off")=0 + Set gtmtypes("replpool_identifier",1,"len")=12 + Set gtmtypes("replpool_identifier",1,"type")="unsigned-char" + Set gtmtypfldindx("replpool_identifier","label")=1 + Set gtmtypes("replpool_identifier",2,"name")="replpool_identifier.pool_type" + Set gtmtypes("replpool_identifier",2,"off")=12 + Set gtmtypes("replpool_identifier",2,"len")=1 + Set gtmtypes("replpool_identifier",2,"type")="char" + Set gtmtypfldindx("replpool_identifier","pool_type")=2 + Set gtmtypes("replpool_identifier",3,"name")="replpool_identifier.now_running" + Set gtmtypes("replpool_identifier",3,"off")=13 + Set gtmtypes("replpool_identifier",3,"len")=36 + Set gtmtypes("replpool_identifier",3,"type")="char" + Set gtmtypfldindx("replpool_identifier","now_running")=3 + Set gtmtypes("replpool_identifier",4,"name")="replpool_identifier.repl_pool_key_filler" + Set gtmtypes("replpool_identifier",4,"off")=52 + Set gtmtypes("replpool_identifier",4,"len")=4 + Set gtmtypes("replpool_identifier",4,"type")="int" + Set gtmtypfldindx("replpool_identifier","repl_pool_key_filler")=4 + Set gtmtypes("replpool_identifier",5,"name")="replpool_identifier.instfilename" + Set gtmtypes("replpool_identifier",5,"off")=56 + Set gtmtypes("replpool_identifier",5,"len")=256 + Set gtmtypes("replpool_identifier",5,"type")="char" + Set gtmtypfldindx("replpool_identifier","instfilename")=5 + ; + Set gtmtypes("rhdtyp")="struct" + Set gtmtypes("rhdtyp",0)=27 + Set gtmtypes("rhdtyp","len")=116 + Set gtmtypes("rhdtyp",1,"name")="rhdtyp.jsb" + Set gtmtypes("rhdtyp",1,"off")=0 + Set gtmtypes("rhdtyp",1,"len")=8 + Set gtmtypes("rhdtyp",1,"type")="char" + Set gtmtypfldindx("rhdtyp","jsb")=1 + Set gtmtypes("rhdtyp",2,"name")="rhdtyp.src_full_name" + Set gtmtypes("rhdtyp",2,"off")=8 + Set gtmtypes("rhdtyp",2,"len")=12 + Set gtmtypes("rhdtyp",2,"type")="mstr" + Set gtmtypfldindx("rhdtyp","src_full_name")=2 + Set gtmtypes("rhdtyp",3,"name")="rhdtyp.src_full_name.char_len" + Set gtmtypes("rhdtyp",3,"off")=8 + Set gtmtypes("rhdtyp",3,"len")=4 + Set gtmtypes("rhdtyp",3,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","src_full_name.char_len")=3 + Set gtmtypes("rhdtyp",4,"name")="rhdtyp.src_full_name.len" + Set gtmtypes("rhdtyp",4,"off")=12 + Set gtmtypes("rhdtyp",4,"len")=4 + Set gtmtypes("rhdtyp",4,"type")="int" + Set gtmtypfldindx("rhdtyp","src_full_name.len")=4 + Set gtmtypes("rhdtyp",5,"name")="rhdtyp.src_full_name.addr" + Set gtmtypes("rhdtyp",5,"off")=16 + Set gtmtypes("rhdtyp",5,"len")=4 + Set gtmtypes("rhdtyp",5,"type")="addr" + Set gtmtypfldindx("rhdtyp","src_full_name.addr")=5 + Set gtmtypes("rhdtyp",6,"name")="rhdtyp.routine_name" + Set gtmtypes("rhdtyp",6,"off")=20 + Set gtmtypes("rhdtyp",6,"len")=12 + Set gtmtypes("rhdtyp",6,"type")="mstr" + Set gtmtypfldindx("rhdtyp","routine_name")=6 + Set gtmtypes("rhdtyp",7,"name")="rhdtyp.routine_name.char_len" + Set gtmtypes("rhdtyp",7,"off")=20 + Set gtmtypes("rhdtyp",7,"len")=4 + Set gtmtypes("rhdtyp",7,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_name.char_len")=7 + Set gtmtypes("rhdtyp",8,"name")="rhdtyp.routine_name.len" + Set gtmtypes("rhdtyp",8,"off")=24 + Set gtmtypes("rhdtyp",8,"len")=4 + Set gtmtypes("rhdtyp",8,"type")="int" + Set gtmtypfldindx("rhdtyp","routine_name.len")=8 + Set gtmtypes("rhdtyp",9,"name")="rhdtyp.routine_name.addr" + Set gtmtypes("rhdtyp",9,"off")=28 + Set gtmtypes("rhdtyp",9,"len")=4 + Set gtmtypes("rhdtyp",9,"type")="addr" + Set gtmtypfldindx("rhdtyp","routine_name.addr")=9 + Set gtmtypes("rhdtyp",10,"name")="rhdtyp.vartab_off" + Set gtmtypes("rhdtyp",10,"off")=32 + Set gtmtypes("rhdtyp",10,"len")=4 + Set gtmtypes("rhdtyp",10,"type")="int" + Set gtmtypfldindx("rhdtyp","vartab_off")=10 + Set gtmtypes("rhdtyp",11,"name")="rhdtyp.vartab_len" + Set gtmtypes("rhdtyp",11,"off")=36 + Set gtmtypes("rhdtyp",11,"len")=4 + Set gtmtypes("rhdtyp",11,"type")="int" + Set gtmtypfldindx("rhdtyp","vartab_len")=11 + Set gtmtypes("rhdtyp",12,"name")="rhdtyp.labtab_off" + Set gtmtypes("rhdtyp",12,"off")=40 + Set gtmtypes("rhdtyp",12,"len")=4 + Set gtmtypes("rhdtyp",12,"type")="int" + Set gtmtypfldindx("rhdtyp","labtab_off")=12 + Set gtmtypes("rhdtyp",13,"name")="rhdtyp.labtab_len" + Set gtmtypes("rhdtyp",13,"off")=44 + Set gtmtypes("rhdtyp",13,"len")=4 + Set gtmtypes("rhdtyp",13,"type")="int" + Set gtmtypfldindx("rhdtyp","labtab_len")=13 + Set gtmtypes("rhdtyp",14,"name")="rhdtyp.lnrtab_off" + Set gtmtypes("rhdtyp",14,"off")=48 + Set gtmtypes("rhdtyp",14,"len")=4 + Set gtmtypes("rhdtyp",14,"type")="int" + Set gtmtypfldindx("rhdtyp","lnrtab_off")=14 + Set gtmtypes("rhdtyp",15,"name")="rhdtyp.lnrtab_len" + Set gtmtypes("rhdtyp",15,"off")=52 + Set gtmtypes("rhdtyp",15,"len")=4 + Set gtmtypes("rhdtyp",15,"type")="int" + Set gtmtypfldindx("rhdtyp","lnrtab_len")=15 + Set gtmtypes("rhdtyp",16,"name")="rhdtyp.ptext_off" + Set gtmtypes("rhdtyp",16,"off")=56 + Set gtmtypes("rhdtyp",16,"len")=4 + Set gtmtypes("rhdtyp",16,"type")="int" + Set gtmtypfldindx("rhdtyp","ptext_off")=16 + Set gtmtypes("rhdtyp",17,"name")="rhdtyp.checksum" + Set gtmtypes("rhdtyp",17,"off")=60 + Set gtmtypes("rhdtyp",17,"len")=4 + Set gtmtypes("rhdtyp",17,"type")="int" + Set gtmtypfldindx("rhdtyp","checksum")=17 + Set gtmtypes("rhdtyp",18,"name")="rhdtyp.compiler_qlf" + Set gtmtypes("rhdtyp",18,"off")=64 + Set gtmtypes("rhdtyp",18,"len")=4 + Set gtmtypes("rhdtyp",18,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","compiler_qlf")=18 + Set gtmtypes("rhdtyp",19,"name")="rhdtyp.old_rhead_off" + Set gtmtypes("rhdtyp",19,"off")=68 + Set gtmtypes("rhdtyp",19,"len")=4 + Set gtmtypes("rhdtyp",19,"type")="int" + Set gtmtypfldindx("rhdtyp","old_rhead_off")=19 + Set gtmtypes("rhdtyp",20,"name")="rhdtyp.current_rhead_off" + Set gtmtypes("rhdtyp",20,"off")=72 + Set gtmtypes("rhdtyp",20,"len")=4 + Set gtmtypes("rhdtyp",20,"type")="int" + Set gtmtypfldindx("rhdtyp","current_rhead_off")=20 + Set gtmtypes("rhdtyp",21,"name")="rhdtyp.temp_mvals" + Set gtmtypes("rhdtyp",21,"off")=76 + Set gtmtypes("rhdtyp",21,"len")=4 + Set gtmtypes("rhdtyp",21,"type")="int" + Set gtmtypfldindx("rhdtyp","temp_mvals")=21 + Set gtmtypes("rhdtyp",22,"name")="rhdtyp.temp_size" + Set gtmtypes("rhdtyp",22,"off")=80 + Set gtmtypes("rhdtyp",22,"len")=4 + Set gtmtypes("rhdtyp",22,"type")="int" + Set gtmtypfldindx("rhdtyp","temp_size")=22 + Set gtmtypes("rhdtyp",23,"name")="rhdtyp.trigr_handle" + Set gtmtypes("rhdtyp",23,"off")=84 + Set gtmtypes("rhdtyp",23,"len")=4 + Set gtmtypes("rhdtyp",23,"type")="addr" + Set gtmtypfldindx("rhdtyp","trigr_handle")=23 + Set gtmtypes("rhdtyp",24,"name")="rhdtyp.checksum_128" + Set gtmtypes("rhdtyp",24,"off")=88 + Set gtmtypes("rhdtyp",24,"len")=16 + Set gtmtypes("rhdtyp",24,"type")="unsigned-char" + Set gtmtypfldindx("rhdtyp","checksum_128")=24 + Set gtmtypes("rhdtyp",25,"name")="rhdtyp.source_code" + Set gtmtypes("rhdtyp",25,"off")=104 + Set gtmtypes("rhdtyp",25,"len")=4 + Set gtmtypes("rhdtyp",25,"type")="addr" + Set gtmtypfldindx("rhdtyp","source_code")=25 + Set gtmtypes("rhdtyp",26,"name")="rhdtyp.routine_source_offset" + Set gtmtypes("rhdtyp",26,"off")=108 + Set gtmtypes("rhdtyp",26,"len")=4 + Set gtmtypes("rhdtyp",26,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_source_offset")=26 + Set gtmtypes("rhdtyp",27,"name")="rhdtyp.routine_source_length" + Set gtmtypes("rhdtyp",27,"off")=112 + Set gtmtypes("rhdtyp",27,"len")=4 + Set gtmtypes("rhdtyp",27,"type")="unsigned-int" + Set gtmtypfldindx("rhdtyp","routine_source_length")=27 + ; + Set gtmtypes("routine_source")="struct" + Set gtmtypes("routine_source",0)=7 + Set gtmtypes("routine_source","len")=24 + Set gtmtypes("routine_source",1,"name")="routine_source.srcrecs" + Set gtmtypes("routine_source",1,"off")=0 + Set gtmtypes("routine_source",1,"len")=4 + Set gtmtypes("routine_source",1,"type")="int" + Set gtmtypfldindx("routine_source","srcrecs")=1 + Set gtmtypes("routine_source",2,"name")="routine_source.srcstat" + Set gtmtypes("routine_source",2,"off")=4 + Set gtmtypes("routine_source",2,"len")=4 + Set gtmtypes("routine_source",2,"type")="unsigned-int" + Set gtmtypfldindx("routine_source","srcstat")=2 + Set gtmtypes("routine_source",3,"name")="routine_source.srcbuff" + Set gtmtypes("routine_source",3,"off")=8 + Set gtmtypes("routine_source",3,"len")=4 + Set gtmtypes("routine_source",3,"type")="addr" + Set gtmtypfldindx("routine_source","srcbuff")=3 + Set gtmtypes("routine_source",4,"name")="routine_source.srclines" + Set gtmtypes("routine_source",4,"off")=12 + Set gtmtypes("routine_source",4,"len")=12 + Set gtmtypes("routine_source",4,"type")="mstr" + Set gtmtypfldindx("routine_source","srclines")=4 + Set gtmtypes("routine_source",5,"name")="routine_source.srclines[0].char_len" + Set gtmtypes("routine_source",5,"off")=12 + Set gtmtypes("routine_source",5,"len")=4 + Set gtmtypes("routine_source",5,"type")="unsigned-int" + Set gtmtypfldindx("routine_source","srclines[0].char_len")=5 + Set gtmtypes("routine_source",6,"name")="routine_source.srclines[0].len" + Set gtmtypes("routine_source",6,"off")=16 + Set gtmtypes("routine_source",6,"len")=4 + Set gtmtypes("routine_source",6,"type")="int" + Set gtmtypfldindx("routine_source","srclines[0].len")=6 + Set gtmtypes("routine_source",7,"name")="routine_source.srclines[0].addr" + Set gtmtypes("routine_source",7,"off")=20 + Set gtmtypes("routine_source",7,"len")=4 + Set gtmtypes("routine_source",7,"type")="addr" + Set gtmtypfldindx("routine_source","srclines[0].addr")=7 + ; + Set gtmtypes("rtn_tabent")="struct" + Set gtmtypes("rtn_tabent",0)=5 + Set gtmtypes("rtn_tabent","len")=16 + Set gtmtypes("rtn_tabent",1,"name")="rtn_tabent.rt_name" + Set gtmtypes("rtn_tabent",1,"off")=0 + Set gtmtypes("rtn_tabent",1,"len")=12 + Set gtmtypes("rtn_tabent",1,"type")="mstr" + Set gtmtypfldindx("rtn_tabent","rt_name")=1 + Set gtmtypes("rtn_tabent",2,"name")="rtn_tabent.rt_name.char_len" + Set gtmtypes("rtn_tabent",2,"off")=0 + Set gtmtypes("rtn_tabent",2,"len")=4 + Set gtmtypes("rtn_tabent",2,"type")="unsigned-int" + Set gtmtypfldindx("rtn_tabent","rt_name.char_len")=2 + Set gtmtypes("rtn_tabent",3,"name")="rtn_tabent.rt_name.len" + Set gtmtypes("rtn_tabent",3,"off")=4 + Set gtmtypes("rtn_tabent",3,"len")=4 + Set gtmtypes("rtn_tabent",3,"type")="int" + Set gtmtypfldindx("rtn_tabent","rt_name.len")=3 + Set gtmtypes("rtn_tabent",4,"name")="rtn_tabent.rt_name.addr" + Set gtmtypes("rtn_tabent",4,"off")=8 + Set gtmtypes("rtn_tabent",4,"len")=4 + Set gtmtypes("rtn_tabent",4,"type")="addr" + Set gtmtypfldindx("rtn_tabent","rt_name.addr")=4 + Set gtmtypes("rtn_tabent",5,"name")="rtn_tabent.rt_adr" + Set gtmtypes("rtn_tabent",5,"off")=12 + Set gtmtypes("rtn_tabent",5,"len")=4 + Set gtmtypes("rtn_tabent",5,"type")="addr" + Set gtmtypfldindx("rtn_tabent","rt_adr")=5 + ; + Set gtmtypes("rtnobj_hdr_t")="struct" + Set gtmtypes("rtnobj_hdr_t",0)=13 + Set gtmtypes("rtnobj_hdr_t","len")=40 + Set gtmtypes("rtnobj_hdr_t",1,"name")="rtnobj_hdr_t.queueIndex" + Set gtmtypes("rtnobj_hdr_t",1,"off")=0 + Set gtmtypes("rtnobj_hdr_t",1,"len")=2 + Set gtmtypes("rtnobj_hdr_t",1,"type")="unsigned-short" + Set gtmtypfldindx("rtnobj_hdr_t","queueIndex")=1 + Set gtmtypes("rtnobj_hdr_t",2,"name")="rtnobj_hdr_t.state" + Set gtmtypes("rtnobj_hdr_t",2,"off")=2 + Set gtmtypes("rtnobj_hdr_t",2,"len")=1 + Set gtmtypes("rtnobj_hdr_t",2,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","state")=2 + Set gtmtypes("rtnobj_hdr_t",3,"name")="rtnobj_hdr_t.initialized" + Set gtmtypes("rtnobj_hdr_t",3,"off")=3 + Set gtmtypes("rtnobj_hdr_t",3,"len")=1 + Set gtmtypes("rtnobj_hdr_t",3,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","initialized")=3 + Set gtmtypes("rtnobj_hdr_t",4,"name")="rtnobj_hdr_t.refcnt" + Set gtmtypes("rtnobj_hdr_t",4,"off")=4 + Set gtmtypes("rtnobj_hdr_t",4,"len")=4 + Set gtmtypes("rtnobj_hdr_t",4,"type")="int" + Set gtmtypfldindx("rtnobj_hdr_t","refcnt")=4 + Set gtmtypes("rtnobj_hdr_t",5,"name")="rtnobj_hdr_t.objhash" + Set gtmtypes("rtnobj_hdr_t",5,"off")=8 + Set gtmtypes("rtnobj_hdr_t",5,"len")=8 + Set gtmtypes("rtnobj_hdr_t",5,"type")="uint64_t" + Set gtmtypfldindx("rtnobj_hdr_t","objhash")=5 + Set gtmtypes("rtnobj_hdr_t",6,"name")="rtnobj_hdr_t.next_rtnobj_shm_offset" + Set gtmtypes("rtnobj_hdr_t",6,"off")=16 + Set gtmtypes("rtnobj_hdr_t",6,"len")=8 + Set gtmtypes("rtnobj_hdr_t",6,"type")="uint64_t" + Set gtmtypfldindx("rtnobj_hdr_t","next_rtnobj_shm_offset")=6 + Set gtmtypes("rtnobj_hdr_t",7,"name")="rtnobj_hdr_t.relinkctl_index" + Set gtmtypes("rtnobj_hdr_t",7,"off")=24 + Set gtmtypes("rtnobj_hdr_t",7,"len")=4 + Set gtmtypes("rtnobj_hdr_t",7,"type")="unsigned-int" + Set gtmtypfldindx("rtnobj_hdr_t","relinkctl_index")=7 + Set gtmtypes("rtnobj_hdr_t",8,"name")="rtnobj_hdr_t.objLen" + Set gtmtypes("rtnobj_hdr_t",8,"off")=28 + Set gtmtypes("rtnobj_hdr_t",8,"len")=4 + Set gtmtypes("rtnobj_hdr_t",8,"type")="unsigned-int" + Set gtmtypfldindx("rtnobj_hdr_t","objLen")=8 + Set gtmtypes("rtnobj_hdr_t",9,"name")="rtnobj_hdr_t.userStorage" + Set gtmtypes("rtnobj_hdr_t",9,"off")=32 + Set gtmtypes("rtnobj_hdr_t",9,"len")=8 + Set gtmtypes("rtnobj_hdr_t",9,"type")="union" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage")=9 + Set gtmtypes("rtnobj_hdr_t",10,"name")="rtnobj_hdr_t.userStorage.freePtr" + Set gtmtypes("rtnobj_hdr_t",10,"off")=32 + Set gtmtypes("rtnobj_hdr_t",10,"len")=8 + Set gtmtypes("rtnobj_hdr_t",10,"type")="que_ent" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr")=10 + Set gtmtypes("rtnobj_hdr_t",11,"name")="rtnobj_hdr_t.userStorage.freePtr.fl" + Set gtmtypes("rtnobj_hdr_t",11,"off")=32 + Set gtmtypes("rtnobj_hdr_t",11,"len")=4 + Set gtmtypes("rtnobj_hdr_t",11,"type")="intptr_t" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr.fl")=11 + Set gtmtypes("rtnobj_hdr_t",12,"name")="rtnobj_hdr_t.userStorage.freePtr.bl" + Set gtmtypes("rtnobj_hdr_t",12,"off")=36 + Set gtmtypes("rtnobj_hdr_t",12,"len")=4 + Set gtmtypes("rtnobj_hdr_t",12,"type")="intptr_t" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.freePtr.bl")=12 + Set gtmtypes("rtnobj_hdr_t",13,"name")="rtnobj_hdr_t.userStorage.userStart" + Set gtmtypes("rtnobj_hdr_t",13,"off")=32 + Set gtmtypes("rtnobj_hdr_t",13,"len")=1 + Set gtmtypes("rtnobj_hdr_t",13,"type")="unsigned-char" + Set gtmtypfldindx("rtnobj_hdr_t","userStorage.userStart")=13 + ; + Set gtmtypes("rtnobjshm_hdr_t")="struct" + Set gtmtypes("rtnobjshm_hdr_t",0)=9 + Set gtmtypes("rtnobjshm_hdr_t","len")=444 + Set gtmtypes("rtnobjshm_hdr_t",1,"name")="rtnobjshm_hdr_t.freeList" + Set gtmtypes("rtnobjshm_hdr_t",1,"off")=0 + Set gtmtypes("rtnobjshm_hdr_t",1,"len")=408 + Set gtmtypes("rtnobjshm_hdr_t",1,"type")="que_ent" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList")=1 + Set gtmtypes("rtnobjshm_hdr_t",1,"dim")=51 + Set gtmtypes("rtnobjshm_hdr_t",2,"name")="rtnobjshm_hdr_t.freeList[0].fl" + Set gtmtypes("rtnobjshm_hdr_t",2,"off")=0 + Set gtmtypes("rtnobjshm_hdr_t",2,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",2,"type")="intptr_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList[0].fl")=2 + Set gtmtypes("rtnobjshm_hdr_t",3,"name")="rtnobjshm_hdr_t.freeList[0].bl" + Set gtmtypes("rtnobjshm_hdr_t",3,"off")=4 + Set gtmtypes("rtnobjshm_hdr_t",3,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",3,"type")="intptr_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","freeList[0].bl")=3 + Set gtmtypes("rtnobjshm_hdr_t",4,"name")="rtnobjshm_hdr_t.rtnobj_min_free_index" + Set gtmtypes("rtnobjshm_hdr_t",4,"off")=408 + Set gtmtypes("rtnobjshm_hdr_t",4,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",4,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_min_free_index")=4 + Set gtmtypes("rtnobjshm_hdr_t",5,"name")="rtnobjshm_hdr_t.rtnobj_max_free_index" + Set gtmtypes("rtnobjshm_hdr_t",5,"off")=412 + Set gtmtypes("rtnobjshm_hdr_t",5,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",5,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_max_free_index")=5 + Set gtmtypes("rtnobjshm_hdr_t",6,"name")="rtnobjshm_hdr_t.rtnobj_shmid" + Set gtmtypes("rtnobjshm_hdr_t",6,"off")=416 + Set gtmtypes("rtnobjshm_hdr_t",6,"len")=4 + Set gtmtypes("rtnobjshm_hdr_t",6,"type")="int" + Set gtmtypfldindx("rtnobjshm_hdr_t","rtnobj_shmid")=6 + Set gtmtypes("rtnobjshm_hdr_t",7,"name")="rtnobjshm_hdr_t.real_len" + Set gtmtypes("rtnobjshm_hdr_t",7,"off")=420 + Set gtmtypes("rtnobjshm_hdr_t",7,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",7,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","real_len")=7 + Set gtmtypes("rtnobjshm_hdr_t",8,"name")="rtnobjshm_hdr_t.used_len" + Set gtmtypes("rtnobjshm_hdr_t",8,"off")=428 + Set gtmtypes("rtnobjshm_hdr_t",8,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",8,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","used_len")=8 + Set gtmtypes("rtnobjshm_hdr_t",9,"name")="rtnobjshm_hdr_t.shm_len" + Set gtmtypes("rtnobjshm_hdr_t",9,"off")=436 + Set gtmtypes("rtnobjshm_hdr_t",9,"len")=8 + Set gtmtypes("rtnobjshm_hdr_t",9,"type")="uint64_t" + Set gtmtypfldindx("rtnobjshm_hdr_t","shm_len")=9 + ; + Set gtmtypes("save_se")="struct" + Set gtmtypes("save_se",0)=15 + Set gtmtypes("save_se","len")=88 + Set gtmtypes("save_se",1,"name")="save_se.expr_start" + Set gtmtypes("save_se",1,"off")=0 + Set gtmtypes("save_se",1,"len")=4 + Set gtmtypes("save_se",1,"type")="addr" + Set gtmtypfldindx("save_se","expr_start")=1 + Set gtmtypes("save_se",2,"name")="save_se.expr_start_orig" + Set gtmtypes("save_se",2,"off")=4 + Set gtmtypes("save_se",2,"len")=4 + Set gtmtypes("save_se",2,"type")="addr" + Set gtmtypfldindx("save_se","expr_start_orig")=2 + Set gtmtypes("save_se",3,"name")="save_se.shift_side_effects" + Set gtmtypes("save_se",3,"off")=8 + Set gtmtypes("save_se",3,"len")=4 + Set gtmtypes("save_se",3,"type")="boolean_t" + Set gtmtypfldindx("save_se","shift_side_effects")=3 + Set gtmtypes("save_se",4,"name")="save_se.saw_side_effect" + Set gtmtypes("save_se",4,"off")=12 + Set gtmtypes("save_se",4,"len")=4 + Set gtmtypes("save_se",4,"type")="boolean_t" + Set gtmtypfldindx("save_se","saw_side_effect")=4 + Set gtmtypes("save_se",5,"name")="save_se.tmpchain" + Set gtmtypes("save_se",5,"off")=16 + Set gtmtypes("save_se",5,"len")=72 + Set gtmtypes("save_se",5,"type")="triple" + Set gtmtypfldindx("save_se","tmpchain")=5 + Set gtmtypes("save_se",6,"name")="save_se.tmpchain.opcode" + Set gtmtypes("save_se",6,"off")=16 + Set gtmtypes("save_se",6,"len")=4 + Set gtmtypes("save_se",6,"type")="unsigned-int" + Set gtmtypfldindx("save_se","tmpchain.opcode")=6 + Set gtmtypes("save_se",7,"name")="save_se.tmpchain.exorder" + Set gtmtypes("save_se",7,"off")=20 + Set gtmtypes("save_se",7,"len")=8 + Set gtmtypes("save_se",7,"type")="struct" + Set gtmtypfldindx("save_se","tmpchain.exorder")=7 + Set gtmtypes("save_se",8,"name")="save_se.tmpchain.exorder.fl" + Set gtmtypes("save_se",8,"off")=20 + Set gtmtypes("save_se",8,"len")=4 + Set gtmtypes("save_se",8,"type")="addr" + Set gtmtypfldindx("save_se","tmpchain.exorder.fl")=8 + Set gtmtypes("save_se",9,"name")="save_se.tmpchain.exorder.bl" + Set gtmtypes("save_se",9,"off")=24 + Set gtmtypes("save_se",9,"len")=4 + Set gtmtypes("save_se",9,"type")="addr" + Set gtmtypfldindx("save_se","tmpchain.exorder.bl")=9 + Set gtmtypes("save_se",10,"name")="save_se.tmpchain.backptr" + Set gtmtypes("save_se",10,"off")=28 + Set gtmtypes("save_se",10,"len")=12 + Set gtmtypes("save_se",10,"type")="tbp" + Set gtmtypfldindx("save_se","tmpchain.backptr")=10 + Set gtmtypes("save_se",11,"name")="save_se.tmpchain.jmplist" + Set gtmtypes("save_se",11,"off")=40 + Set gtmtypes("save_se",11,"len")=12 + Set gtmtypes("save_se",11,"type")="tbp" + Set gtmtypfldindx("save_se","tmpchain.jmplist")=11 + Set gtmtypes("save_se",12,"name")="save_se.tmpchain.src" + Set gtmtypes("save_se",12,"off")=52 + Set gtmtypes("save_se",12,"len")=8 + Set gtmtypes("save_se",12,"type")="source_address" + Set gtmtypfldindx("save_se","tmpchain.src")=12 + Set gtmtypes("save_se",13,"name")="save_se.tmpchain.rtaddr" + Set gtmtypes("save_se",13,"off")=60 + Set gtmtypes("save_se",13,"len")=4 + Set gtmtypes("save_se",13,"type")="int" + Set gtmtypfldindx("save_se","tmpchain.rtaddr")=13 + Set gtmtypes("save_se",14,"name")="save_se.tmpchain.operand" + Set gtmtypes("save_se",14,"off")=64 + Set gtmtypes("save_se",14,"len")=16 + Set gtmtypes("save_se",14,"type")="oprtype" + Set gtmtypfldindx("save_se","tmpchain.operand")=14 + Set gtmtypes("save_se",14,"dim")=2 + Set gtmtypes("save_se",15,"name")="save_se.tmpchain.destination" + Set gtmtypes("save_se",15,"off")=80 + Set gtmtypes("save_se",15,"len")=8 + Set gtmtypes("save_se",15,"type")="oprtype" + Set gtmtypfldindx("save_se","tmpchain.destination")=15 + ; + Set gtmtypes("save_strct")="struct" + Set gtmtypes("save_strct",0)=5 + Set gtmtypes("save_strct","len")=20 + Set gtmtypes("save_strct",1,"name")="save_strct.blk" + Set gtmtypes("save_strct",1,"off")=0 + Set gtmtypes("save_strct",1,"len")=4 + Set gtmtypes("save_strct",1,"type")="int" + Set gtmtypfldindx("save_strct","blk")=1 + Set gtmtypes("save_strct",2,"name")="save_strct.bp" + Set gtmtypes("save_strct",2,"off")=4 + Set gtmtypes("save_strct",2,"len")=4 + Set gtmtypes("save_strct",2,"type")="addr" + Set gtmtypfldindx("save_strct","bp")=2 + Set gtmtypes("save_strct",3,"name")="save_strct.region" + Set gtmtypes("save_strct",3,"off")=8 + Set gtmtypes("save_strct",3,"len")=4 + Set gtmtypes("save_strct",3,"type")="addr" + Set gtmtypfldindx("save_strct","region")=3 + Set gtmtypes("save_strct",4,"name")="save_strct.comment" + Set gtmtypes("save_strct",4,"off")=12 + Set gtmtypes("save_strct",4,"len")=4 + Set gtmtypes("save_strct",4,"type")="addr" + Set gtmtypfldindx("save_strct","comment")=4 + Set gtmtypes("save_strct",5,"name")="save_strct.ver" + Set gtmtypes("save_strct",5,"off")=16 + Set gtmtypes("save_strct",5,"len")=2 + Set gtmtypes("save_strct",5,"type")="short" + Set gtmtypfldindx("save_strct","ver")=5 + ; + Set gtmtypes("select_list")="struct" + Set gtmtypes("select_list",0)=5 + Set gtmtypes("select_list","len")=16 + Set gtmtypes("select_list",1,"name")="select_list.next" + Set gtmtypes("select_list",1,"off")=0 + Set gtmtypes("select_list",1,"len")=4 + Set gtmtypes("select_list",1,"type")="addr" + Set gtmtypfldindx("select_list","next")=1 + Set gtmtypes("select_list",2,"name")="select_list.buff" + Set gtmtypes("select_list",2,"off")=4 + Set gtmtypes("select_list",2,"len")=4 + Set gtmtypes("select_list",2,"type")="addr" + Set gtmtypfldindx("select_list","buff")=2 + Set gtmtypes("select_list",3,"name")="select_list.len" + Set gtmtypes("select_list",3,"off")=8 + Set gtmtypes("select_list",3,"len")=2 + Set gtmtypes("select_list",3,"type")="short" + Set gtmtypfldindx("select_list","len")=3 + Set gtmtypes("select_list",4,"name")="select_list.exclude" + Set gtmtypes("select_list",4,"off")=10 + Set gtmtypes("select_list",4,"len")=1 + Set gtmtypes("select_list",4,"type")="char" + Set gtmtypfldindx("select_list","exclude")=4 + Set gtmtypes("select_list",5,"name")="select_list.has_wildcard" + Set gtmtypes("select_list",5,"off")=12 + Set gtmtypes("select_list",5,"len")=4 + Set gtmtypes("select_list",5,"type")="boolean_t" + Set gtmtypfldindx("select_list","has_wildcard")=5 + ; + Set gtmtypes("sem_info")="struct" + Set gtmtypes("sem_info",0)=2 + Set gtmtypes("sem_info","len")=8 + Set gtmtypes("sem_info",1,"name")="sem_info.ftok_key" + Set gtmtypes("sem_info",1,"off")=0 + Set gtmtypes("sem_info",1,"len")=4 + Set gtmtypes("sem_info",1,"type")="int" + Set gtmtypfldindx("sem_info","ftok_key")=1 + Set gtmtypes("sem_info",2,"name")="sem_info.sem_id" + Set gtmtypes("sem_info",2,"off")=4 + Set gtmtypes("sem_info",2,"len")=4 + Set gtmtypes("sem_info",2,"type")="int" + Set gtmtypfldindx("sem_info","sem_id")=2 + ; + Set gtmtypes("semid_queue_elem")="struct" + Set gtmtypes("semid_queue_elem",0)=2 + Set gtmtypes("semid_queue_elem","len")=8 + Set gtmtypes("semid_queue_elem",1,"name")="semid_queue_elem.semid" + Set gtmtypes("semid_queue_elem",1,"off")=0 + Set gtmtypes("semid_queue_elem",1,"len")=4 + Set gtmtypes("semid_queue_elem",1,"type")="int" + Set gtmtypfldindx("semid_queue_elem","semid")=1 + Set gtmtypes("semid_queue_elem",2,"name")="semid_queue_elem.prev" + Set gtmtypes("semid_queue_elem",2,"off")=4 + Set gtmtypes("semid_queue_elem",2,"len")=4 + Set gtmtypes("semid_queue_elem",2,"type")="addr" + Set gtmtypfldindx("semid_queue_elem","prev")=2 + ; + Set gtmtypes("semwait_status_t")="struct" + Set gtmtypes("semwait_status_t",0)=7 + Set gtmtypes("semwait_status_t","len")=28 + Set gtmtypes("semwait_status_t",1,"name")="semwait_status_t.line_no" + Set gtmtypes("semwait_status_t",1,"off")=0 + Set gtmtypes("semwait_status_t",1,"len")=4 + Set gtmtypes("semwait_status_t",1,"type")="int" + Set gtmtypfldindx("semwait_status_t","line_no")=1 + Set gtmtypes("semwait_status_t",2,"name")="semwait_status_t.save_errno" + Set gtmtypes("semwait_status_t",2,"off")=4 + Set gtmtypes("semwait_status_t",2,"len")=4 + Set gtmtypes("semwait_status_t",2,"type")="int" + Set gtmtypfldindx("semwait_status_t","save_errno")=2 + Set gtmtypes("semwait_status_t",3,"name")="semwait_status_t.status1" + Set gtmtypes("semwait_status_t",3,"off")=8 + Set gtmtypes("semwait_status_t",3,"len")=4 + Set gtmtypes("semwait_status_t",3,"type")="int" + Set gtmtypfldindx("semwait_status_t","status1")=3 + Set gtmtypes("semwait_status_t",4,"name")="semwait_status_t.status2" + Set gtmtypes("semwait_status_t",4,"off")=12 + Set gtmtypes("semwait_status_t",4,"len")=4 + Set gtmtypes("semwait_status_t",4,"type")="int" + Set gtmtypfldindx("semwait_status_t","status2")=4 + Set gtmtypes("semwait_status_t",5,"name")="semwait_status_t.sem_pid" + Set gtmtypes("semwait_status_t",5,"off")=16 + Set gtmtypes("semwait_status_t",5,"len")=4 + Set gtmtypes("semwait_status_t",5,"type")="int" + Set gtmtypfldindx("semwait_status_t","sem_pid")=5 + Set gtmtypes("semwait_status_t",6,"name")="semwait_status_t.module" + Set gtmtypes("semwait_status_t",6,"off")=20 + Set gtmtypes("semwait_status_t",6,"len")=4 + Set gtmtypes("semwait_status_t",6,"type")="addr" + Set gtmtypfldindx("semwait_status_t","module")=6 + Set gtmtypes("semwait_status_t",7,"name")="semwait_status_t.op" + Set gtmtypes("semwait_status_t",7,"off")=24 + Set gtmtypes("semwait_status_t",7,"len")=4 + Set gtmtypes("semwait_status_t",7,"type")="int" + Set gtmtypfldindx("semwait_status_t","op")=7 + ; + Set gtmtypes("set_jnl_options")="struct" + Set gtmtypes("set_jnl_options",0)=16 + Set gtmtypes("set_jnl_options","len")=64 + Set gtmtypes("set_jnl_options",1,"name")="set_jnl_options.cli_journal" + Set gtmtypes("set_jnl_options",1,"off")=0 + Set gtmtypes("set_jnl_options",1,"len")=4 + Set gtmtypes("set_jnl_options",1,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_journal")=1 + Set gtmtypes("set_jnl_options",2,"name")="set_jnl_options.cli_enable" + Set gtmtypes("set_jnl_options",2,"off")=4 + Set gtmtypes("set_jnl_options",2,"len")=4 + Set gtmtypes("set_jnl_options",2,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_enable")=2 + Set gtmtypes("set_jnl_options",3,"name")="set_jnl_options.cli_on" + Set gtmtypes("set_jnl_options",3,"off")=8 + Set gtmtypes("set_jnl_options",3,"len")=4 + Set gtmtypes("set_jnl_options",3,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_on")=3 + Set gtmtypes("set_jnl_options",4,"name")="set_jnl_options.cli_replic_on" + Set gtmtypes("set_jnl_options",4,"off")=12 + Set gtmtypes("set_jnl_options",4,"len")=4 + Set gtmtypes("set_jnl_options",4,"type")="int" + Set gtmtypfldindx("set_jnl_options","cli_replic_on")=4 + Set gtmtypes("set_jnl_options",5,"name")="set_jnl_options.alignsize_specified" + Set gtmtypes("set_jnl_options",5,"off")=16 + Set gtmtypes("set_jnl_options",5,"len")=4 + Set gtmtypes("set_jnl_options",5,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","alignsize_specified")=5 + Set gtmtypes("set_jnl_options",6,"name")="set_jnl_options.allocation_specified" + Set gtmtypes("set_jnl_options",6,"off")=20 + Set gtmtypes("set_jnl_options",6,"len")=4 + Set gtmtypes("set_jnl_options",6,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","allocation_specified")=6 + Set gtmtypes("set_jnl_options",7,"name")="set_jnl_options.autoswitchlimit_specified" + Set gtmtypes("set_jnl_options",7,"off")=24 + Set gtmtypes("set_jnl_options",7,"len")=4 + Set gtmtypes("set_jnl_options",7,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","autoswitchlimit_specified")=7 + Set gtmtypes("set_jnl_options",8,"name")="set_jnl_options.image_type_specified" + Set gtmtypes("set_jnl_options",8,"off")=28 + Set gtmtypes("set_jnl_options",8,"len")=4 + Set gtmtypes("set_jnl_options",8,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","image_type_specified")=8 + Set gtmtypes("set_jnl_options",9,"name")="set_jnl_options.buffer_size_specified" + Set gtmtypes("set_jnl_options",9,"off")=32 + Set gtmtypes("set_jnl_options",9,"len")=4 + Set gtmtypes("set_jnl_options",9,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","buffer_size_specified")=9 + Set gtmtypes("set_jnl_options",10,"name")="set_jnl_options.epoch_interval_specified" + Set gtmtypes("set_jnl_options",10,"off")=36 + Set gtmtypes("set_jnl_options",10,"len")=4 + Set gtmtypes("set_jnl_options",10,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","epoch_interval_specified")=10 + Set gtmtypes("set_jnl_options",11,"name")="set_jnl_options.extension_specified" + Set gtmtypes("set_jnl_options",11,"off")=40 + Set gtmtypes("set_jnl_options",11,"len")=4 + Set gtmtypes("set_jnl_options",11,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","extension_specified")=11 + Set gtmtypes("set_jnl_options",12,"name")="set_jnl_options.filename_specified" + Set gtmtypes("set_jnl_options",12,"off")=44 + Set gtmtypes("set_jnl_options",12,"len")=4 + Set gtmtypes("set_jnl_options",12,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","filename_specified")=12 + Set gtmtypes("set_jnl_options",13,"name")="set_jnl_options.sync_io_specified" + Set gtmtypes("set_jnl_options",13,"off")=48 + Set gtmtypes("set_jnl_options",13,"len")=4 + Set gtmtypes("set_jnl_options",13,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","sync_io_specified")=13 + Set gtmtypes("set_jnl_options",14,"name")="set_jnl_options.yield_limit_specified" + Set gtmtypes("set_jnl_options",14,"off")=52 + Set gtmtypes("set_jnl_options",14,"len")=4 + Set gtmtypes("set_jnl_options",14,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","yield_limit_specified")=14 + Set gtmtypes("set_jnl_options",15,"name")="set_jnl_options.sync_io" + Set gtmtypes("set_jnl_options",15,"off")=56 + Set gtmtypes("set_jnl_options",15,"len")=4 + Set gtmtypes("set_jnl_options",15,"type")="boolean_t" + Set gtmtypfldindx("set_jnl_options","sync_io")=15 + Set gtmtypes("set_jnl_options",16,"name")="set_jnl_options.yield_limit" + Set gtmtypes("set_jnl_options",16,"off")=60 + Set gtmtypes("set_jnl_options",16,"len")=4 + Set gtmtypes("set_jnl_options",16,"type")="int" + Set gtmtypfldindx("set_jnl_options","yield_limit")=16 + ; + Set gtmtypes("sgbg_addrs")="struct" + Set gtmtypes("sgbg_addrs",0)=2 + Set gtmtypes("sgbg_addrs","len")=8 + Set gtmtypes("sgbg_addrs",1,"name")="sgbg_addrs.cache_state" + Set gtmtypes("sgbg_addrs",1,"off")=0 + Set gtmtypes("sgbg_addrs",1,"len")=4 + Set gtmtypes("sgbg_addrs",1,"type")="addr" + Set gtmtypfldindx("sgbg_addrs","cache_state")=1 + Set gtmtypes("sgbg_addrs",2,"name")="sgbg_addrs.fill1" + Set gtmtypes("sgbg_addrs",2,"off")=4 + Set gtmtypes("sgbg_addrs",2,"len")=4 + Set gtmtypes("sgbg_addrs",2,"type")="addr" + Set gtmtypfldindx("sgbg_addrs","fill1")=2 + ; + Set gtmtypes("sgm_info")="struct" + Set gtmtypes("sgm_info",0)=39 + Set gtmtypes("sgm_info","len")=160 + Set gtmtypes("sgm_info",1,"name")="sgm_info.next_sgm_info" + Set gtmtypes("sgm_info",1,"off")=0 + Set gtmtypes("sgm_info",1,"len")=4 + Set gtmtypes("sgm_info",1,"type")="addr" + Set gtmtypfldindx("sgm_info","next_sgm_info")=1 + Set gtmtypes("sgm_info",2,"name")="sgm_info.next_tp_si_by_ftok" + Set gtmtypes("sgm_info",2,"off")=4 + Set gtmtypes("sgm_info",2,"len")=4 + Set gtmtypes("sgm_info",2,"type")="addr" + Set gtmtypfldindx("sgm_info","next_tp_si_by_ftok")=2 + Set gtmtypes("sgm_info",3,"name")="sgm_info.first_tp_hist" + Set gtmtypes("sgm_info",3,"off")=8 + Set gtmtypes("sgm_info",3,"len")=4 + Set gtmtypes("sgm_info",3,"type")="addr" + Set gtmtypfldindx("sgm_info","first_tp_hist")=3 + Set gtmtypes("sgm_info",4,"name")="sgm_info.last_tp_hist" + Set gtmtypes("sgm_info",4,"off")=12 + Set gtmtypes("sgm_info",4,"len")=4 + Set gtmtypes("sgm_info",4,"type")="addr" + Set gtmtypfldindx("sgm_info","last_tp_hist")=4 + Set gtmtypes("sgm_info",5,"name")="sgm_info.blks_in_use" + Set gtmtypes("sgm_info",5,"off")=16 + Set gtmtypes("sgm_info",5,"len")=4 + Set gtmtypes("sgm_info",5,"type")="addr" + Set gtmtypfldindx("sgm_info","blks_in_use")=5 + Set gtmtypes("sgm_info",6,"name")="sgm_info.start_tn" + Set gtmtypes("sgm_info",6,"off")=20 + Set gtmtypes("sgm_info",6,"len")=8 + Set gtmtypes("sgm_info",6,"type")="uint64_t" + Set gtmtypfldindx("sgm_info","start_tn")=6 + Set gtmtypes("sgm_info",7,"name")="sgm_info.gv_cur_region" + Set gtmtypes("sgm_info",7,"off")=28 + Set gtmtypes("sgm_info",7,"len")=4 + Set gtmtypes("sgm_info",7,"type")="addr" + Set gtmtypfldindx("sgm_info","gv_cur_region")=7 + Set gtmtypes("sgm_info",8,"name")="sgm_info.update_trans" + Set gtmtypes("sgm_info",8,"off")=32 + Set gtmtypes("sgm_info",8,"len")=4 + Set gtmtypes("sgm_info",8,"type")="unsigned-int" + Set gtmtypfldindx("sgm_info","update_trans")=8 + Set gtmtypes("sgm_info",9,"name")="sgm_info.first_cw_set" + Set gtmtypes("sgm_info",9,"off")=36 + Set gtmtypes("sgm_info",9,"len")=4 + Set gtmtypes("sgm_info",9,"type")="addr" + Set gtmtypfldindx("sgm_info","first_cw_set")=9 + Set gtmtypes("sgm_info",10,"name")="sgm_info.last_cw_set" + Set gtmtypes("sgm_info",10,"off")=40 + Set gtmtypes("sgm_info",10,"len")=4 + Set gtmtypes("sgm_info",10,"type")="addr" + Set gtmtypfldindx("sgm_info","last_cw_set")=10 + Set gtmtypes("sgm_info",11,"name")="sgm_info.first_cw_bitmap" + Set gtmtypes("sgm_info",11,"off")=44 + Set gtmtypes("sgm_info",11,"len")=4 + Set gtmtypes("sgm_info",11,"type")="addr" + Set gtmtypfldindx("sgm_info","first_cw_bitmap")=11 + Set gtmtypes("sgm_info",12,"name")="sgm_info.cw_set_list" + Set gtmtypes("sgm_info",12,"off")=48 + Set gtmtypes("sgm_info",12,"len")=4 + Set gtmtypes("sgm_info",12,"type")="addr" + Set gtmtypfldindx("sgm_info","cw_set_list")=12 + Set gtmtypes("sgm_info",13,"name")="sgm_info.tlvl_cw_set_list" + Set gtmtypes("sgm_info",13,"off")=52 + Set gtmtypes("sgm_info",13,"len")=4 + Set gtmtypes("sgm_info",13,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_cw_set_list")=13 + Set gtmtypes("sgm_info",14,"name")="sgm_info.new_buff_list" + Set gtmtypes("sgm_info",14,"off")=56 + Set gtmtypes("sgm_info",14,"len")=4 + Set gtmtypes("sgm_info",14,"type")="addr" + Set gtmtypfldindx("sgm_info","new_buff_list")=14 + Set gtmtypes("sgm_info",15,"name")="sgm_info.recompute_list" + Set gtmtypes("sgm_info",15,"off")=60 + Set gtmtypes("sgm_info",15,"len")=4 + Set gtmtypes("sgm_info",15,"type")="addr" + Set gtmtypfldindx("sgm_info","recompute_list")=15 + Set gtmtypes("sgm_info",16,"name")="sgm_info.tlvl_info_list" + Set gtmtypes("sgm_info",16,"off")=64 + Set gtmtypes("sgm_info",16,"len")=4 + Set gtmtypes("sgm_info",16,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_info_list")=16 + Set gtmtypes("sgm_info",17,"name")="sgm_info.cr_array" + Set gtmtypes("sgm_info",17,"off")=68 + Set gtmtypes("sgm_info",17,"len")=4 + Set gtmtypes("sgm_info",17,"type")="addr" + Set gtmtypfldindx("sgm_info","cr_array")=17 + Set gtmtypes("sgm_info",18,"name")="sgm_info.tp_csd" + Set gtmtypes("sgm_info",18,"off")=72 + Set gtmtypes("sgm_info",18,"len")=4 + Set gtmtypes("sgm_info",18,"type")="addr" + Set gtmtypfldindx("sgm_info","tp_csd")=18 + Set gtmtypes("sgm_info",19,"name")="sgm_info.tp_csa" + Set gtmtypes("sgm_info",19,"off")=76 + Set gtmtypes("sgm_info",19,"len")=4 + Set gtmtypes("sgm_info",19,"type")="addr" + Set gtmtypfldindx("sgm_info","tp_csa")=19 + Set gtmtypes("sgm_info",20,"name")="sgm_info.kill_set_head" + Set gtmtypes("sgm_info",20,"off")=80 + Set gtmtypes("sgm_info",20,"len")=4 + Set gtmtypes("sgm_info",20,"type")="addr" + Set gtmtypfldindx("sgm_info","kill_set_head")=20 + Set gtmtypes("sgm_info",21,"name")="sgm_info.kill_set_tail" + Set gtmtypes("sgm_info",21,"off")=84 + Set gtmtypes("sgm_info",21,"len")=4 + Set gtmtypes("sgm_info",21,"type")="addr" + Set gtmtypfldindx("sgm_info","kill_set_tail")=21 + Set gtmtypes("sgm_info",22,"name")="sgm_info.tlvl_info_head" + Set gtmtypes("sgm_info",22,"off")=88 + Set gtmtypes("sgm_info",22,"len")=4 + Set gtmtypes("sgm_info",22,"type")="addr" + Set gtmtypfldindx("sgm_info","tlvl_info_head")=22 + Set gtmtypes("sgm_info",23,"name")="sgm_info.jnl_head" + Set gtmtypes("sgm_info",23,"off")=92 + Set gtmtypes("sgm_info",23,"len")=4 + Set gtmtypes("sgm_info",23,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_head")=23 + Set gtmtypes("sgm_info",24,"name")="sgm_info.jnl_tail" + Set gtmtypes("sgm_info",24,"off")=96 + Set gtmtypes("sgm_info",24,"len")=4 + Set gtmtypes("sgm_info",24,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_tail")=24 + Set gtmtypes("sgm_info",25,"name")="sgm_info.format_buff_list" + Set gtmtypes("sgm_info",25,"off")=100 + Set gtmtypes("sgm_info",25,"len")=4 + Set gtmtypes("sgm_info",25,"type")="addr" + Set gtmtypfldindx("sgm_info","format_buff_list")=25 + Set gtmtypes("sgm_info",26,"name")="sgm_info.jnl_list" + Set gtmtypes("sgm_info",26,"off")=104 + Set gtmtypes("sgm_info",26,"len")=4 + Set gtmtypes("sgm_info",26,"type")="addr" + Set gtmtypfldindx("sgm_info","jnl_list")=26 + Set gtmtypes("sgm_info",27,"name")="sgm_info.cw_set_depth" + Set gtmtypes("sgm_info",27,"off")=108 + Set gtmtypes("sgm_info",27,"len")=4 + Set gtmtypes("sgm_info",27,"type")="int" + Set gtmtypfldindx("sgm_info","cw_set_depth")=27 + Set gtmtypes("sgm_info",28,"name")="sgm_info.cr_array_index" + Set gtmtypes("sgm_info",28,"off")=112 + Set gtmtypes("sgm_info",28,"len")=4 + Set gtmtypes("sgm_info",28,"type")="int" + Set gtmtypfldindx("sgm_info","cr_array_index")=28 + Set gtmtypes("sgm_info",29,"name")="sgm_info.num_of_blks" + Set gtmtypes("sgm_info",29,"off")=116 + Set gtmtypes("sgm_info",29,"len")=4 + Set gtmtypes("sgm_info",29,"type")="int" + Set gtmtypfldindx("sgm_info","num_of_blks")=29 + Set gtmtypes("sgm_info",30,"name")="sgm_info.tp_hist_size" + Set gtmtypes("sgm_info",30,"off")=120 + Set gtmtypes("sgm_info",30,"len")=4 + Set gtmtypes("sgm_info",30,"type")="int" + Set gtmtypfldindx("sgm_info","tp_hist_size")=30 + Set gtmtypes("sgm_info",31,"name")="sgm_info.cur_tp_hist_size" + Set gtmtypes("sgm_info",31,"off")=124 + Set gtmtypes("sgm_info",31,"len")=4 + Set gtmtypes("sgm_info",31,"type")="int" + Set gtmtypfldindx("sgm_info","cur_tp_hist_size")=31 + Set gtmtypes("sgm_info",32,"name")="sgm_info.total_jnl_rec_size" + Set gtmtypes("sgm_info",32,"off")=128 + Set gtmtypes("sgm_info",32,"len")=4 + Set gtmtypes("sgm_info",32,"type")="int" + Set gtmtypfldindx("sgm_info","total_jnl_rec_size")=32 + Set gtmtypes("sgm_info",33,"name")="sgm_info.cr_array_size" + Set gtmtypes("sgm_info",33,"off")=132 + Set gtmtypes("sgm_info",33,"len")=4 + Set gtmtypes("sgm_info",33,"type")="int" + Set gtmtypfldindx("sgm_info","cr_array_size")=33 + Set gtmtypes("sgm_info",34,"name")="sgm_info.tp_set_sgm_done" + Set gtmtypes("sgm_info",34,"off")=136 + Set gtmtypes("sgm_info",34,"len")=4 + Set gtmtypes("sgm_info",34,"type")="boolean_t" + Set gtmtypfldindx("sgm_info","tp_set_sgm_done")=34 + Set gtmtypes("sgm_info",35,"name")="sgm_info.crash_count" + Set gtmtypes("sgm_info",35,"off")=140 + Set gtmtypes("sgm_info",35,"len")=4 + Set gtmtypes("sgm_info",35,"type")="int" + Set gtmtypfldindx("sgm_info","crash_count")=35 + Set gtmtypes("sgm_info",36,"name")="sgm_info.backup_block_saved" + Set gtmtypes("sgm_info",36,"off")=144 + Set gtmtypes("sgm_info",36,"len")=4 + Set gtmtypes("sgm_info",36,"type")="boolean_t" + Set gtmtypfldindx("sgm_info","backup_block_saved")=36 + Set gtmtypes("sgm_info",37,"name")="sgm_info.kip_csa" + Set gtmtypes("sgm_info",37,"off")=148 + Set gtmtypes("sgm_info",37,"len")=4 + Set gtmtypes("sgm_info",37,"type")="addr" + Set gtmtypfldindx("sgm_info","kip_csa")=37 + Set gtmtypes("sgm_info",38,"name")="sgm_info.tmp_cw_set_depth" + Set gtmtypes("sgm_info",38,"off")=152 + Set gtmtypes("sgm_info",38,"len")=4 + Set gtmtypes("sgm_info",38,"type")="int" + Set gtmtypfldindx("sgm_info","tmp_cw_set_depth")=38 + Set gtmtypes("sgm_info",39,"name")="sgm_info.tot_jrec_size" + Set gtmtypes("sgm_info",39,"off")=156 + Set gtmtypes("sgm_info",39,"len")=4 + Set gtmtypes("sgm_info",39,"type")="unsigned-int" + Set gtmtypfldindx("sgm_info","tot_jrec_size")=39 + ; + Set gtmtypes("sgmm_addrs")="struct" + Set gtmtypes("sgmm_addrs",0)=1 + Set gtmtypes("sgmm_addrs","len")=4 + Set gtmtypes("sgmm_addrs",1,"name")="sgmm_addrs.filler" + Set gtmtypes("sgmm_addrs",1,"off")=0 + Set gtmtypes("sgmm_addrs",1,"len")=4 + Set gtmtypes("sgmm_addrs",1,"type")="int" + Set gtmtypfldindx("sgmm_addrs","filler")=1 + ; + Set gtmtypes("sgmnt_addrs")="struct" + Set gtmtypes("sgmnt_addrs",0)=143 + Set gtmtypes("sgmnt_addrs","len")=820 + Set gtmtypes("sgmnt_addrs",1,"name")="sgmnt_addrs.hdr" + Set gtmtypes("sgmnt_addrs",1,"off")=0 + Set gtmtypes("sgmnt_addrs",1,"len")=4 + Set gtmtypes("sgmnt_addrs",1,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","hdr")=1 + Set gtmtypes("sgmnt_addrs",2,"name")="sgmnt_addrs.bmm" + Set gtmtypes("sgmnt_addrs",2,"off")=4 + Set gtmtypes("sgmnt_addrs",2,"len")=4 + Set gtmtypes("sgmnt_addrs",2,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bmm")=2 + Set gtmtypes("sgmnt_addrs",3,"name")="sgmnt_addrs.wc" + Set gtmtypes("sgmnt_addrs",3,"off")=8 + Set gtmtypes("sgmnt_addrs",3,"len")=4 + Set gtmtypes("sgmnt_addrs",3,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","wc")=3 + Set gtmtypes("sgmnt_addrs",4,"name")="sgmnt_addrs.bt_header" + Set gtmtypes("sgmnt_addrs",4,"off")=12 + Set gtmtypes("sgmnt_addrs",4,"len")=4 + Set gtmtypes("sgmnt_addrs",4,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bt_header")=4 + Set gtmtypes("sgmnt_addrs",5,"name")="sgmnt_addrs.bt_base" + Set gtmtypes("sgmnt_addrs",5,"off")=16 + Set gtmtypes("sgmnt_addrs",5,"len")=4 + Set gtmtypes("sgmnt_addrs",5,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","bt_base")=5 + Set gtmtypes("sgmnt_addrs",6,"name")="sgmnt_addrs.th_base" + Set gtmtypes("sgmnt_addrs",6,"off")=20 + Set gtmtypes("sgmnt_addrs",6,"len")=4 + Set gtmtypes("sgmnt_addrs",6,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","th_base")=6 + Set gtmtypes("sgmnt_addrs",7,"name")="sgmnt_addrs.ti" + Set gtmtypes("sgmnt_addrs",7,"off")=24 + Set gtmtypes("sgmnt_addrs",7,"len")=4 + Set gtmtypes("sgmnt_addrs",7,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","ti")=7 + Set gtmtypes("sgmnt_addrs",8,"name")="sgmnt_addrs.nl" + Set gtmtypes("sgmnt_addrs",8,"off")=28 + Set gtmtypes("sgmnt_addrs",8,"len")=4 + Set gtmtypes("sgmnt_addrs",8,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","nl")=8 + Set gtmtypes("sgmnt_addrs",9,"name")="sgmnt_addrs.critical" + Set gtmtypes("sgmnt_addrs",9,"off")=32 + Set gtmtypes("sgmnt_addrs",9,"len")=4 + Set gtmtypes("sgmnt_addrs",9,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","critical")=9 + Set gtmtypes("sgmnt_addrs",10,"name")="sgmnt_addrs.shmpool_buffer" + Set gtmtypes("sgmnt_addrs",10,"off")=36 + Set gtmtypes("sgmnt_addrs",10,"len")=4 + Set gtmtypes("sgmnt_addrs",10,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","shmpool_buffer")=10 + Set gtmtypes("sgmnt_addrs",11,"name")="sgmnt_addrs.db_addrs" + Set gtmtypes("sgmnt_addrs",11,"off")=40 + Set gtmtypes("sgmnt_addrs",11,"len")=8 + Set gtmtypes("sgmnt_addrs",11,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","db_addrs")=11 + Set gtmtypes("sgmnt_addrs",11,"dim")=2 + Set gtmtypes("sgmnt_addrs",12,"name")="sgmnt_addrs.lock_addrs" + Set gtmtypes("sgmnt_addrs",12,"off")=48 + Set gtmtypes("sgmnt_addrs",12,"len")=8 + Set gtmtypes("sgmnt_addrs",12,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","lock_addrs")=12 + Set gtmtypes("sgmnt_addrs",12,"dim")=2 + Set gtmtypes("sgmnt_addrs",13,"name")="sgmnt_addrs.dir_tree" + Set gtmtypes("sgmnt_addrs",13,"off")=56 + Set gtmtypes("sgmnt_addrs",13,"len")=4 + Set gtmtypes("sgmnt_addrs",13,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","dir_tree")=13 + Set gtmtypes("sgmnt_addrs",14,"name")="sgmnt_addrs.hasht_tree" + Set gtmtypes("sgmnt_addrs",14,"off")=60 + Set gtmtypes("sgmnt_addrs",14,"len")=4 + Set gtmtypes("sgmnt_addrs",14,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","hasht_tree")=14 + Set gtmtypes("sgmnt_addrs",15,"name")="sgmnt_addrs.next_fenced" + Set gtmtypes("sgmnt_addrs",15,"off")=64 + Set gtmtypes("sgmnt_addrs",15,"len")=4 + Set gtmtypes("sgmnt_addrs",15,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","next_fenced")=15 + Set gtmtypes("sgmnt_addrs",16,"name")="sgmnt_addrs.jnl" + Set gtmtypes("sgmnt_addrs",16,"off")=68 + Set gtmtypes("sgmnt_addrs",16,"len")=4 + Set gtmtypes("sgmnt_addrs",16,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","jnl")=16 + Set gtmtypes("sgmnt_addrs",17,"name")="sgmnt_addrs.sgm_info_ptr" + Set gtmtypes("sgmnt_addrs",17,"off")=72 + Set gtmtypes("sgmnt_addrs",17,"len")=4 + Set gtmtypes("sgmnt_addrs",17,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","sgm_info_ptr")=17 + Set gtmtypes("sgmnt_addrs",18,"name")="sgmnt_addrs.region" + Set gtmtypes("sgmnt_addrs",18,"off")=76 + Set gtmtypes("sgmnt_addrs",18,"len")=4 + Set gtmtypes("sgmnt_addrs",18,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","region")=18 + Set gtmtypes("sgmnt_addrs",19,"name")="sgmnt_addrs.gvt_hashtab" + Set gtmtypes("sgmnt_addrs",19,"off")=80 + Set gtmtypes("sgmnt_addrs",19,"len")=4 + Set gtmtypes("sgmnt_addrs",19,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","gvt_hashtab")=19 + Set gtmtypes("sgmnt_addrs",20,"name")="sgmnt_addrs.miscptr" + Set gtmtypes("sgmnt_addrs",20,"off")=84 + Set gtmtypes("sgmnt_addrs",20,"len")=4 + Set gtmtypes("sgmnt_addrs",20,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","miscptr")=20 + Set gtmtypes("sgmnt_addrs",21,"name")="sgmnt_addrs.next_csa" + Set gtmtypes("sgmnt_addrs",21,"off")=88 + Set gtmtypes("sgmnt_addrs",21,"len")=4 + Set gtmtypes("sgmnt_addrs",21,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","next_csa")=21 + Set gtmtypes("sgmnt_addrs",22,"name")="sgmnt_addrs.encr_key_handle" + Set gtmtypes("sgmnt_addrs",22,"off")=92 + Set gtmtypes("sgmnt_addrs",22,"len")=4 + Set gtmtypes("sgmnt_addrs",22,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_key_handle")=22 + Set gtmtypes("sgmnt_addrs",23,"name")="sgmnt_addrs.encr_key_handle2" + Set gtmtypes("sgmnt_addrs",23,"off")=96 + Set gtmtypes("sgmnt_addrs",23,"len")=4 + Set gtmtypes("sgmnt_addrs",23,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_key_handle2")=23 + Set gtmtypes("sgmnt_addrs",24,"name")="sgmnt_addrs.encr_ptr" + Set gtmtypes("sgmnt_addrs",24,"off")=100 + Set gtmtypes("sgmnt_addrs",24,"len")=4 + Set gtmtypes("sgmnt_addrs",24,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","encr_ptr")=24 + Set gtmtypes("sgmnt_addrs",25,"name")="sgmnt_addrs.ss_ctx" + Set gtmtypes("sgmnt_addrs",25,"off")=104 + Set gtmtypes("sgmnt_addrs",25,"len")=4 + Set gtmtypes("sgmnt_addrs",25,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","ss_ctx")=25 + Set gtmtypes("sgmnt_addrs",26,"name")="sgmnt_addrs.acc_meth" + Set gtmtypes("sgmnt_addrs",26,"off")=108 + Set gtmtypes("sgmnt_addrs",26,"len")=8 + Set gtmtypes("sgmnt_addrs",26,"type")="union" + Set gtmtypfldindx("sgmnt_addrs","acc_meth")=26 + Set gtmtypes("sgmnt_addrs",27,"name")="sgmnt_addrs.acc_meth.mm" + Set gtmtypes("sgmnt_addrs",27,"off")=108 + Set gtmtypes("sgmnt_addrs",27,"len")=4 + Set gtmtypes("sgmnt_addrs",27,"type")="sgmm_addrs" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.mm")=27 + Set gtmtypes("sgmnt_addrs",28,"name")="sgmnt_addrs.acc_meth.mm.filler" + Set gtmtypes("sgmnt_addrs",28,"off")=108 + Set gtmtypes("sgmnt_addrs",28,"len")=4 + Set gtmtypes("sgmnt_addrs",28,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.mm.filler")=28 + Set gtmtypes("sgmnt_addrs",29,"name")="sgmnt_addrs.acc_meth.bg" + Set gtmtypes("sgmnt_addrs",29,"off")=108 + Set gtmtypes("sgmnt_addrs",29,"len")=8 + Set gtmtypes("sgmnt_addrs",29,"type")="sgbg_addrs" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg")=29 + Set gtmtypes("sgmnt_addrs",30,"name")="sgmnt_addrs.acc_meth.bg.cache_state" + Set gtmtypes("sgmnt_addrs",30,"off")=108 + Set gtmtypes("sgmnt_addrs",30,"len")=4 + Set gtmtypes("sgmnt_addrs",30,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg.cache_state")=30 + Set gtmtypes("sgmnt_addrs",31,"name")="sgmnt_addrs.acc_meth.bg.fill1" + Set gtmtypes("sgmnt_addrs",31,"off")=112 + Set gtmtypes("sgmnt_addrs",31,"len")=4 + Set gtmtypes("sgmnt_addrs",31,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","acc_meth.bg.fill1")=31 + Set gtmtypes("sgmnt_addrs",32,"name")="sgmnt_addrs.gvstats_rec" + Set gtmtypes("sgmnt_addrs",32,"off")=116 + Set gtmtypes("sgmnt_addrs",32,"len")=464 + Set gtmtypes("sgmnt_addrs",32,"type")="gvstats_rec_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec")=32 + Set gtmtypes("sgmnt_addrs",33,"name")="sgmnt_addrs.gvstats_rec.n_set" + Set gtmtypes("sgmnt_addrs",33,"off")=116 + Set gtmtypes("sgmnt_addrs",33,"len")=8 + Set gtmtypes("sgmnt_addrs",33,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_set")=33 + Set gtmtypes("sgmnt_addrs",34,"name")="sgmnt_addrs.gvstats_rec.n_kill" + Set gtmtypes("sgmnt_addrs",34,"off")=124 + Set gtmtypes("sgmnt_addrs",34,"len")=8 + Set gtmtypes("sgmnt_addrs",34,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_kill")=34 + Set gtmtypes("sgmnt_addrs",35,"name")="sgmnt_addrs.gvstats_rec.n_get" + Set gtmtypes("sgmnt_addrs",35,"off")=132 + Set gtmtypes("sgmnt_addrs",35,"len")=8 + Set gtmtypes("sgmnt_addrs",35,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_get")=35 + Set gtmtypes("sgmnt_addrs",36,"name")="sgmnt_addrs.gvstats_rec.n_data" + Set gtmtypes("sgmnt_addrs",36,"off")=140 + Set gtmtypes("sgmnt_addrs",36,"len")=8 + Set gtmtypes("sgmnt_addrs",36,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_data")=36 + Set gtmtypes("sgmnt_addrs",37,"name")="sgmnt_addrs.gvstats_rec.n_order" + Set gtmtypes("sgmnt_addrs",37,"off")=148 + Set gtmtypes("sgmnt_addrs",37,"len")=8 + Set gtmtypes("sgmnt_addrs",37,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_order")=37 + Set gtmtypes("sgmnt_addrs",38,"name")="sgmnt_addrs.gvstats_rec.n_zprev" + Set gtmtypes("sgmnt_addrs",38,"off")=156 + Set gtmtypes("sgmnt_addrs",38,"len")=8 + Set gtmtypes("sgmnt_addrs",38,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_zprev")=38 + Set gtmtypes("sgmnt_addrs",39,"name")="sgmnt_addrs.gvstats_rec.n_query" + Set gtmtypes("sgmnt_addrs",39,"off")=164 + Set gtmtypes("sgmnt_addrs",39,"len")=8 + Set gtmtypes("sgmnt_addrs",39,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_query")=39 + Set gtmtypes("sgmnt_addrs",40,"name")="sgmnt_addrs.gvstats_rec.n_lock_success" + Set gtmtypes("sgmnt_addrs",40,"off")=172 + Set gtmtypes("sgmnt_addrs",40,"len")=8 + Set gtmtypes("sgmnt_addrs",40,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_lock_success")=40 + Set gtmtypes("sgmnt_addrs",41,"name")="sgmnt_addrs.gvstats_rec.n_lock_fail" + Set gtmtypes("sgmnt_addrs",41,"off")=180 + Set gtmtypes("sgmnt_addrs",41,"len")=8 + Set gtmtypes("sgmnt_addrs",41,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_lock_fail")=41 + Set gtmtypes("sgmnt_addrs",42,"name")="sgmnt_addrs.gvstats_rec.db_curr_tn" + Set gtmtypes("sgmnt_addrs",42,"off")=188 + Set gtmtypes("sgmnt_addrs",42,"len")=8 + Set gtmtypes("sgmnt_addrs",42,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.db_curr_tn")=42 + Set gtmtypes("sgmnt_addrs",43,"name")="sgmnt_addrs.gvstats_rec.n_dsk_read" + Set gtmtypes("sgmnt_addrs",43,"off")=196 + Set gtmtypes("sgmnt_addrs",43,"len")=8 + Set gtmtypes("sgmnt_addrs",43,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_dsk_read")=43 + Set gtmtypes("sgmnt_addrs",44,"name")="sgmnt_addrs.gvstats_rec.n_dsk_write" + Set gtmtypes("sgmnt_addrs",44,"off")=204 + Set gtmtypes("sgmnt_addrs",44,"len")=8 + Set gtmtypes("sgmnt_addrs",44,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_dsk_write")=44 + Set gtmtypes("sgmnt_addrs",45,"name")="sgmnt_addrs.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("sgmnt_addrs",45,"off")=212 + Set gtmtypes("sgmnt_addrs",45,"len")=8 + Set gtmtypes("sgmnt_addrs",45,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_readwrite")=45 + Set gtmtypes("sgmnt_addrs",46,"name")="sgmnt_addrs.gvstats_rec.n_nontp_readonly" + Set gtmtypes("sgmnt_addrs",46,"off")=220 + Set gtmtypes("sgmnt_addrs",46,"len")=8 + Set gtmtypes("sgmnt_addrs",46,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_readonly")=46 + Set gtmtypes("sgmnt_addrs",47,"name")="sgmnt_addrs.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("sgmnt_addrs",47,"off")=228 + Set gtmtypes("sgmnt_addrs",47,"len")=8 + Set gtmtypes("sgmnt_addrs",47,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_blkwrite")=47 + Set gtmtypes("sgmnt_addrs",48,"name")="sgmnt_addrs.gvstats_rec.n_nontp_blkread" + Set gtmtypes("sgmnt_addrs",48,"off")=236 + Set gtmtypes("sgmnt_addrs",48,"len")=8 + Set gtmtypes("sgmnt_addrs",48,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_blkread")=48 + Set gtmtypes("sgmnt_addrs",49,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("sgmnt_addrs",49,"off")=244 + Set gtmtypes("sgmnt_addrs",49,"len")=8 + Set gtmtypes("sgmnt_addrs",49,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_0")=49 + Set gtmtypes("sgmnt_addrs",50,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("sgmnt_addrs",50,"off")=252 + Set gtmtypes("sgmnt_addrs",50,"len")=8 + Set gtmtypes("sgmnt_addrs",50,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_1")=50 + Set gtmtypes("sgmnt_addrs",51,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("sgmnt_addrs",51,"off")=260 + Set gtmtypes("sgmnt_addrs",51,"len")=8 + Set gtmtypes("sgmnt_addrs",51,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_2")=51 + Set gtmtypes("sgmnt_addrs",52,"name")="sgmnt_addrs.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("sgmnt_addrs",52,"off")=268 + Set gtmtypes("sgmnt_addrs",52,"len")=8 + Set gtmtypes("sgmnt_addrs",52,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_nontp_retries_3")=52 + Set gtmtypes("sgmnt_addrs",53,"name")="sgmnt_addrs.gvstats_rec.n_tp_readwrite" + Set gtmtypes("sgmnt_addrs",53,"off")=276 + Set gtmtypes("sgmnt_addrs",53,"len")=8 + Set gtmtypes("sgmnt_addrs",53,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_readwrite")=53 + Set gtmtypes("sgmnt_addrs",54,"name")="sgmnt_addrs.gvstats_rec.n_tp_readonly" + Set gtmtypes("sgmnt_addrs",54,"off")=284 + Set gtmtypes("sgmnt_addrs",54,"len")=8 + Set gtmtypes("sgmnt_addrs",54,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_readonly")=54 + Set gtmtypes("sgmnt_addrs",55,"name")="sgmnt_addrs.gvstats_rec.n_tp_rolledback" + Set gtmtypes("sgmnt_addrs",55,"off")=292 + Set gtmtypes("sgmnt_addrs",55,"len")=8 + Set gtmtypes("sgmnt_addrs",55,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_rolledback")=55 + Set gtmtypes("sgmnt_addrs",56,"name")="sgmnt_addrs.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("sgmnt_addrs",56,"off")=300 + Set gtmtypes("sgmnt_addrs",56,"len")=8 + Set gtmtypes("sgmnt_addrs",56,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_blkwrite")=56 + Set gtmtypes("sgmnt_addrs",57,"name")="sgmnt_addrs.gvstats_rec.n_tp_blkread" + Set gtmtypes("sgmnt_addrs",57,"off")=308 + Set gtmtypes("sgmnt_addrs",57,"len")=8 + Set gtmtypes("sgmnt_addrs",57,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_blkread")=57 + Set gtmtypes("sgmnt_addrs",58,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("sgmnt_addrs",58,"off")=316 + Set gtmtypes("sgmnt_addrs",58,"len")=8 + Set gtmtypes("sgmnt_addrs",58,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_0")=58 + Set gtmtypes("sgmnt_addrs",59,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("sgmnt_addrs",59,"off")=324 + Set gtmtypes("sgmnt_addrs",59,"len")=8 + Set gtmtypes("sgmnt_addrs",59,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_1")=59 + Set gtmtypes("sgmnt_addrs",60,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("sgmnt_addrs",60,"off")=332 + Set gtmtypes("sgmnt_addrs",60,"len")=8 + Set gtmtypes("sgmnt_addrs",60,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_2")=60 + Set gtmtypes("sgmnt_addrs",61,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("sgmnt_addrs",61,"off")=340 + Set gtmtypes("sgmnt_addrs",61,"len")=8 + Set gtmtypes("sgmnt_addrs",61,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_3")=61 + Set gtmtypes("sgmnt_addrs",62,"name")="sgmnt_addrs.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("sgmnt_addrs",62,"off")=348 + Set gtmtypes("sgmnt_addrs",62,"len")=8 + Set gtmtypes("sgmnt_addrs",62,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_tot_retries_4")=62 + Set gtmtypes("sgmnt_addrs",63,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("sgmnt_addrs",63,"off")=356 + Set gtmtypes("sgmnt_addrs",63,"len")=8 + Set gtmtypes("sgmnt_addrs",63,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_0")=63 + Set gtmtypes("sgmnt_addrs",64,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("sgmnt_addrs",64,"off")=364 + Set gtmtypes("sgmnt_addrs",64,"len")=8 + Set gtmtypes("sgmnt_addrs",64,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_1")=64 + Set gtmtypes("sgmnt_addrs",65,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("sgmnt_addrs",65,"off")=372 + Set gtmtypes("sgmnt_addrs",65,"len")=8 + Set gtmtypes("sgmnt_addrs",65,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_2")=65 + Set gtmtypes("sgmnt_addrs",66,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("sgmnt_addrs",66,"off")=380 + Set gtmtypes("sgmnt_addrs",66,"len")=8 + Set gtmtypes("sgmnt_addrs",66,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_3")=66 + Set gtmtypes("sgmnt_addrs",67,"name")="sgmnt_addrs.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("sgmnt_addrs",67,"off")=388 + Set gtmtypes("sgmnt_addrs",67,"len")=8 + Set gtmtypes("sgmnt_addrs",67,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_tp_cnflct_retries_4")=67 + Set gtmtypes("sgmnt_addrs",68,"name")="sgmnt_addrs.gvstats_rec.n_ztrigger" + Set gtmtypes("sgmnt_addrs",68,"off")=396 + Set gtmtypes("sgmnt_addrs",68,"len")=8 + Set gtmtypes("sgmnt_addrs",68,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_ztrigger")=68 + Set gtmtypes("sgmnt_addrs",69,"name")="sgmnt_addrs.gvstats_rec.n_db_flush" + Set gtmtypes("sgmnt_addrs",69,"off")=404 + Set gtmtypes("sgmnt_addrs",69,"len")=8 + Set gtmtypes("sgmnt_addrs",69,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_flush")=69 + Set gtmtypes("sgmnt_addrs",70,"name")="sgmnt_addrs.gvstats_rec.n_db_fsync" + Set gtmtypes("sgmnt_addrs",70,"off")=412 + Set gtmtypes("sgmnt_addrs",70,"len")=8 + Set gtmtypes("sgmnt_addrs",70,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_fsync")=70 + Set gtmtypes("sgmnt_addrs",71,"name")="sgmnt_addrs.gvstats_rec.n_jnl_flush" + Set gtmtypes("sgmnt_addrs",71,"off")=420 + Set gtmtypes("sgmnt_addrs",71,"len")=8 + Set gtmtypes("sgmnt_addrs",71,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_flush")=71 + Set gtmtypes("sgmnt_addrs",72,"name")="sgmnt_addrs.gvstats_rec.n_jnl_fsync" + Set gtmtypes("sgmnt_addrs",72,"off")=428 + Set gtmtypes("sgmnt_addrs",72,"len")=8 + Set gtmtypes("sgmnt_addrs",72,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_fsync")=72 + Set gtmtypes("sgmnt_addrs",73,"name")="sgmnt_addrs.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("sgmnt_addrs",73,"off")=436 + Set gtmtypes("sgmnt_addrs",73,"len")=8 + Set gtmtypes("sgmnt_addrs",73,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jbuff_bytes")=73 + Set gtmtypes("sgmnt_addrs",74,"name")="sgmnt_addrs.gvstats_rec.n_jfile_bytes" + Set gtmtypes("sgmnt_addrs",74,"off")=444 + Set gtmtypes("sgmnt_addrs",74,"len")=8 + Set gtmtypes("sgmnt_addrs",74,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jfile_bytes")=74 + Set gtmtypes("sgmnt_addrs",75,"name")="sgmnt_addrs.gvstats_rec.n_jfile_writes" + Set gtmtypes("sgmnt_addrs",75,"off")=452 + Set gtmtypes("sgmnt_addrs",75,"len")=8 + Set gtmtypes("sgmnt_addrs",75,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jfile_writes")=75 + Set gtmtypes("sgmnt_addrs",76,"name")="sgmnt_addrs.gvstats_rec.n_jrec_logical" + Set gtmtypes("sgmnt_addrs",76,"off")=460 + Set gtmtypes("sgmnt_addrs",76,"len")=8 + Set gtmtypes("sgmnt_addrs",76,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_logical")=76 + Set gtmtypes("sgmnt_addrs",77,"name")="sgmnt_addrs.gvstats_rec.n_jrec_pblk" + Set gtmtypes("sgmnt_addrs",77,"off")=468 + Set gtmtypes("sgmnt_addrs",77,"len")=8 + Set gtmtypes("sgmnt_addrs",77,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_pblk")=77 + Set gtmtypes("sgmnt_addrs",78,"name")="sgmnt_addrs.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("sgmnt_addrs",78,"off")=476 + Set gtmtypes("sgmnt_addrs",78,"len")=8 + Set gtmtypes("sgmnt_addrs",78,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_epoch_regular")=78 + Set gtmtypes("sgmnt_addrs",79,"name")="sgmnt_addrs.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("sgmnt_addrs",79,"off")=484 + Set gtmtypes("sgmnt_addrs",79,"len")=8 + Set gtmtypes("sgmnt_addrs",79,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_epoch_idle")=79 + Set gtmtypes("sgmnt_addrs",80,"name")="sgmnt_addrs.gvstats_rec.n_jrec_other" + Set gtmtypes("sgmnt_addrs",80,"off")=492 + Set gtmtypes("sgmnt_addrs",80,"len")=8 + Set gtmtypes("sgmnt_addrs",80,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jrec_other")=80 + Set gtmtypes("sgmnt_addrs",81,"name")="sgmnt_addrs.gvstats_rec.n_jnl_extends" + Set gtmtypes("sgmnt_addrs",81,"off")=500 + Set gtmtypes("sgmnt_addrs",81,"len")=8 + Set gtmtypes("sgmnt_addrs",81,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_jnl_extends")=81 + Set gtmtypes("sgmnt_addrs",82,"name")="sgmnt_addrs.gvstats_rec.n_db_extends" + Set gtmtypes("sgmnt_addrs",82,"off")=508 + Set gtmtypes("sgmnt_addrs",82,"len")=8 + Set gtmtypes("sgmnt_addrs",82,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_db_extends")=82 + Set gtmtypes("sgmnt_addrs",83,"name")="sgmnt_addrs.gvstats_rec.n_crit_success" + Set gtmtypes("sgmnt_addrs",83,"off")=516 + Set gtmtypes("sgmnt_addrs",83,"len")=8 + Set gtmtypes("sgmnt_addrs",83,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_success")=83 + Set gtmtypes("sgmnt_addrs",84,"name")="sgmnt_addrs.gvstats_rec.n_crits_in_epch" + Set gtmtypes("sgmnt_addrs",84,"off")=524 + Set gtmtypes("sgmnt_addrs",84,"len")=8 + Set gtmtypes("sgmnt_addrs",84,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crits_in_epch")=84 + Set gtmtypes("sgmnt_addrs",85,"name")="sgmnt_addrs.gvstats_rec.sq_crit_failed" + Set gtmtypes("sgmnt_addrs",85,"off")=532 + Set gtmtypes("sgmnt_addrs",85,"len")=8 + Set gtmtypes("sgmnt_addrs",85,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_failed")=85 + Set gtmtypes("sgmnt_addrs",86,"name")="sgmnt_addrs.gvstats_rec.n_crit_failed" + Set gtmtypes("sgmnt_addrs",86,"off")=540 + Set gtmtypes("sgmnt_addrs",86,"len")=8 + Set gtmtypes("sgmnt_addrs",86,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_failed")=86 + Set gtmtypes("sgmnt_addrs",87,"name")="sgmnt_addrs.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("sgmnt_addrs",87,"off")=548 + Set gtmtypes("sgmnt_addrs",87,"len")=8 + Set gtmtypes("sgmnt_addrs",87,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_que_slps")=87 + Set gtmtypes("sgmnt_addrs",88,"name")="sgmnt_addrs.gvstats_rec.n_crit_que_slps" + Set gtmtypes("sgmnt_addrs",88,"off")=556 + Set gtmtypes("sgmnt_addrs",88,"len")=8 + Set gtmtypes("sgmnt_addrs",88,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_que_slps")=88 + Set gtmtypes("sgmnt_addrs",89,"name")="sgmnt_addrs.gvstats_rec.sq_crit_yields" + Set gtmtypes("sgmnt_addrs",89,"off")=564 + Set gtmtypes("sgmnt_addrs",89,"len")=8 + Set gtmtypes("sgmnt_addrs",89,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.sq_crit_yields")=89 + Set gtmtypes("sgmnt_addrs",90,"name")="sgmnt_addrs.gvstats_rec.n_crit_yields" + Set gtmtypes("sgmnt_addrs",90,"off")=572 + Set gtmtypes("sgmnt_addrs",90,"len")=8 + Set gtmtypes("sgmnt_addrs",90,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","gvstats_rec.n_crit_yields")=90 + Set gtmtypes("sgmnt_addrs",91,"name")="sgmnt_addrs.dbsync_timer_tn" + Set gtmtypes("sgmnt_addrs",91,"off")=580 + Set gtmtypes("sgmnt_addrs",91,"len")=8 + Set gtmtypes("sgmnt_addrs",91,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","dbsync_timer_tn")=91 + Set gtmtypes("sgmnt_addrs",92,"name")="sgmnt_addrs.fullblockwrite_len" + Set gtmtypes("sgmnt_addrs",92,"off")=588 + Set gtmtypes("sgmnt_addrs",92,"len")=4 + Set gtmtypes("sgmnt_addrs",92,"type")="size_t" + Set gtmtypfldindx("sgmnt_addrs","fullblockwrite_len")=92 + Set gtmtypes("sgmnt_addrs",93,"name")="sgmnt_addrs.total_blks" + Set gtmtypes("sgmnt_addrs",93,"off")=592 + Set gtmtypes("sgmnt_addrs",93,"len")=4 + Set gtmtypes("sgmnt_addrs",93,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","total_blks")=93 + Set gtmtypes("sgmnt_addrs",94,"name")="sgmnt_addrs.prev_free_blks" + Set gtmtypes("sgmnt_addrs",94,"off")=596 + Set gtmtypes("sgmnt_addrs",94,"len")=4 + Set gtmtypes("sgmnt_addrs",94,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","prev_free_blks")=94 + Set gtmtypes("sgmnt_addrs",95,"name")="sgmnt_addrs.timer" + Set gtmtypes("sgmnt_addrs",95,"off")=600 + Set gtmtypes("sgmnt_addrs",95,"len")=4 + Set gtmtypes("sgmnt_addrs",95,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","timer")=95 + Set gtmtypes("sgmnt_addrs",96,"name")="sgmnt_addrs.in_wtstart" + Set gtmtypes("sgmnt_addrs",96,"off")=604 + Set gtmtypes("sgmnt_addrs",96,"len")=4 + Set gtmtypes("sgmnt_addrs",96,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","in_wtstart")=96 + Set gtmtypes("sgmnt_addrs",97,"name")="sgmnt_addrs.now_crit" + Set gtmtypes("sgmnt_addrs",97,"off")=608 + Set gtmtypes("sgmnt_addrs",97,"len")=4 + Set gtmtypes("sgmnt_addrs",97,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","now_crit")=97 + Set gtmtypes("sgmnt_addrs",98,"name")="sgmnt_addrs.wbuf_dqd" + Set gtmtypes("sgmnt_addrs",98,"off")=612 + Set gtmtypes("sgmnt_addrs",98,"len")=4 + Set gtmtypes("sgmnt_addrs",98,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","wbuf_dqd")=98 + Set gtmtypes("sgmnt_addrs",99,"name")="sgmnt_addrs.stale_defer" + Set gtmtypes("sgmnt_addrs",99,"off")=616 + Set gtmtypes("sgmnt_addrs",99,"len")=4 + Set gtmtypes("sgmnt_addrs",99,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","stale_defer")=99 + Set gtmtypes("sgmnt_addrs",100,"name")="sgmnt_addrs.freeze" + Set gtmtypes("sgmnt_addrs",100,"off")=620 + Set gtmtypes("sgmnt_addrs",100,"len")=4 + Set gtmtypes("sgmnt_addrs",100,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","freeze")=100 + Set gtmtypes("sgmnt_addrs",101,"name")="sgmnt_addrs.dbsync_timer" + Set gtmtypes("sgmnt_addrs",101,"off")=624 + Set gtmtypes("sgmnt_addrs",101,"len")=4 + Set gtmtypes("sgmnt_addrs",101,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dbsync_timer")=101 + Set gtmtypes("sgmnt_addrs",102,"name")="sgmnt_addrs.reorg_last_dest" + Set gtmtypes("sgmnt_addrs",102,"off")=628 + Set gtmtypes("sgmnt_addrs",102,"len")=4 + Set gtmtypes("sgmnt_addrs",102,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","reorg_last_dest")=102 + Set gtmtypes("sgmnt_addrs",103,"name")="sgmnt_addrs.jnl_before_image" + Set gtmtypes("sgmnt_addrs",103,"off")=632 + Set gtmtypes("sgmnt_addrs",103,"len")=4 + Set gtmtypes("sgmnt_addrs",103,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","jnl_before_image")=103 + Set gtmtypes("sgmnt_addrs",104,"name")="sgmnt_addrs.read_write" + Set gtmtypes("sgmnt_addrs",104,"off")=636 + Set gtmtypes("sgmnt_addrs",104,"len")=4 + Set gtmtypes("sgmnt_addrs",104,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","read_write")=104 + Set gtmtypes("sgmnt_addrs",105,"name")="sgmnt_addrs.persistent_freeze" + Set gtmtypes("sgmnt_addrs",105,"off")=640 + Set gtmtypes("sgmnt_addrs",105,"len")=4 + Set gtmtypes("sgmnt_addrs",105,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","persistent_freeze")=105 + Set gtmtypes("sgmnt_addrs",106,"name")="sgmnt_addrs.pblk_align_jrecsize" + Set gtmtypes("sgmnt_addrs",106,"off")=644 + Set gtmtypes("sgmnt_addrs",106,"len")=4 + Set gtmtypes("sgmnt_addrs",106,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","pblk_align_jrecsize")=106 + Set gtmtypes("sgmnt_addrs",107,"name")="sgmnt_addrs.min_total_tpjnl_rec_size" + Set gtmtypes("sgmnt_addrs",107,"off")=648 + Set gtmtypes("sgmnt_addrs",107,"len")=4 + Set gtmtypes("sgmnt_addrs",107,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","min_total_tpjnl_rec_size")=107 + Set gtmtypes("sgmnt_addrs",108,"name")="sgmnt_addrs.min_total_nontpjnl_rec_size" + Set gtmtypes("sgmnt_addrs",108,"off")=652 + Set gtmtypes("sgmnt_addrs",108,"len")=4 + Set gtmtypes("sgmnt_addrs",108,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","min_total_nontpjnl_rec_size")=108 + Set gtmtypes("sgmnt_addrs",109,"name")="sgmnt_addrs.jnl_state" + Set gtmtypes("sgmnt_addrs",109,"off")=656 + Set gtmtypes("sgmnt_addrs",109,"len")=4 + Set gtmtypes("sgmnt_addrs",109,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","jnl_state")=109 + Set gtmtypes("sgmnt_addrs",110,"name")="sgmnt_addrs.repl_state" + Set gtmtypes("sgmnt_addrs",110,"off")=660 + Set gtmtypes("sgmnt_addrs",110,"len")=4 + Set gtmtypes("sgmnt_addrs",110,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","repl_state")=110 + Set gtmtypes("sgmnt_addrs",111,"name")="sgmnt_addrs.crit_check_cycle" + Set gtmtypes("sgmnt_addrs",111,"off")=664 + Set gtmtypes("sgmnt_addrs",111,"len")=4 + Set gtmtypes("sgmnt_addrs",111,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","crit_check_cycle")=111 + Set gtmtypes("sgmnt_addrs",112,"name")="sgmnt_addrs.backup_in_prog" + Set gtmtypes("sgmnt_addrs",112,"off")=668 + Set gtmtypes("sgmnt_addrs",112,"len")=4 + Set gtmtypes("sgmnt_addrs",112,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","backup_in_prog")=112 + Set gtmtypes("sgmnt_addrs",113,"name")="sgmnt_addrs.snapshot_in_prog" + Set gtmtypes("sgmnt_addrs",113,"off")=672 + Set gtmtypes("sgmnt_addrs",113,"len")=4 + Set gtmtypes("sgmnt_addrs",113,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","snapshot_in_prog")=113 + Set gtmtypes("sgmnt_addrs",114,"name")="sgmnt_addrs.ref_cnt" + Set gtmtypes("sgmnt_addrs",114,"off")=676 + Set gtmtypes("sgmnt_addrs",114,"len")=4 + Set gtmtypes("sgmnt_addrs",114,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","ref_cnt")=114 + Set gtmtypes("sgmnt_addrs",115,"name")="sgmnt_addrs.fid_index" + Set gtmtypes("sgmnt_addrs",115,"off")=680 + Set gtmtypes("sgmnt_addrs",115,"len")=4 + Set gtmtypes("sgmnt_addrs",115,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","fid_index")=115 + Set gtmtypes("sgmnt_addrs",116,"name")="sgmnt_addrs.do_fullblockwrites" + Set gtmtypes("sgmnt_addrs",116,"off")=684 + Set gtmtypes("sgmnt_addrs",116,"len")=4 + Set gtmtypes("sgmnt_addrs",116,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","do_fullblockwrites")=116 + Set gtmtypes("sgmnt_addrs",117,"name")="sgmnt_addrs.regnum" + Set gtmtypes("sgmnt_addrs",117,"off")=688 + Set gtmtypes("sgmnt_addrs",117,"len")=4 + Set gtmtypes("sgmnt_addrs",117,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","regnum")=117 + Set gtmtypes("sgmnt_addrs",118,"name")="sgmnt_addrs.n_pre_read_trigger" + Set gtmtypes("sgmnt_addrs",118,"off")=692 + Set gtmtypes("sgmnt_addrs",118,"len")=4 + Set gtmtypes("sgmnt_addrs",118,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","n_pre_read_trigger")=118 + Set gtmtypes("sgmnt_addrs",119,"name")="sgmnt_addrs.jnlpool_validate_check" + Set gtmtypes("sgmnt_addrs",119,"off")=696 + Set gtmtypes("sgmnt_addrs",119,"len")=4 + Set gtmtypes("sgmnt_addrs",119,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","jnlpool_validate_check")=119 + Set gtmtypes("sgmnt_addrs",120,"name")="sgmnt_addrs.regcnt" + Set gtmtypes("sgmnt_addrs",120,"off")=700 + Set gtmtypes("sgmnt_addrs",120,"len")=4 + Set gtmtypes("sgmnt_addrs",120,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","regcnt")=120 + Set gtmtypes("sgmnt_addrs",121,"name")="sgmnt_addrs.t_commit_crit" + Set gtmtypes("sgmnt_addrs",121,"off")=704 + Set gtmtypes("sgmnt_addrs",121,"len")=4 + Set gtmtypes("sgmnt_addrs",121,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","t_commit_crit")=121 + Set gtmtypes("sgmnt_addrs",122,"name")="sgmnt_addrs.wcs_pidcnt_incremented" + Set gtmtypes("sgmnt_addrs",122,"off")=708 + Set gtmtypes("sgmnt_addrs",122,"len")=4 + Set gtmtypes("sgmnt_addrs",122,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","wcs_pidcnt_incremented")=122 + Set gtmtypes("sgmnt_addrs",123,"name")="sgmnt_addrs.incr_db_trigger_cycle" + Set gtmtypes("sgmnt_addrs",123,"off")=712 + Set gtmtypes("sgmnt_addrs",123,"len")=4 + Set gtmtypes("sgmnt_addrs",123,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","incr_db_trigger_cycle")=123 + Set gtmtypes("sgmnt_addrs",124,"name")="sgmnt_addrs.db_trigger_cycle" + Set gtmtypes("sgmnt_addrs",124,"off")=716 + Set gtmtypes("sgmnt_addrs",124,"len")=4 + Set gtmtypes("sgmnt_addrs",124,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_trigger_cycle")=124 + Set gtmtypes("sgmnt_addrs",125,"name")="sgmnt_addrs.db_dztrigger_cycle" + Set gtmtypes("sgmnt_addrs",125,"off")=720 + Set gtmtypes("sgmnt_addrs",125,"len")=4 + Set gtmtypes("sgmnt_addrs",125,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_dztrigger_cycle")=125 + Set gtmtypes("sgmnt_addrs",126,"name")="sgmnt_addrs.hold_onto_crit" + Set gtmtypes("sgmnt_addrs",126,"off")=724 + Set gtmtypes("sgmnt_addrs",126,"len")=4 + Set gtmtypes("sgmnt_addrs",126,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","hold_onto_crit")=126 + Set gtmtypes("sgmnt_addrs",127,"name")="sgmnt_addrs.dse_crit_seize_done" + Set gtmtypes("sgmnt_addrs",127,"off")=728 + Set gtmtypes("sgmnt_addrs",127,"len")=4 + Set gtmtypes("sgmnt_addrs",127,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dse_crit_seize_done")=127 + Set gtmtypes("sgmnt_addrs",128,"name")="sgmnt_addrs.gbuff_limit" + Set gtmtypes("sgmnt_addrs",128,"off")=732 + Set gtmtypes("sgmnt_addrs",128,"len")=4 + Set gtmtypes("sgmnt_addrs",128,"type")="int" + Set gtmtypfldindx("sgmnt_addrs","gbuff_limit")=128 + Set gtmtypes("sgmnt_addrs",129,"name")="sgmnt_addrs.our_midnite" + Set gtmtypes("sgmnt_addrs",129,"off")=736 + Set gtmtypes("sgmnt_addrs",129,"len")=4 + Set gtmtypes("sgmnt_addrs",129,"type")="addr" + Set gtmtypfldindx("sgmnt_addrs","our_midnite")=129 + Set gtmtypes("sgmnt_addrs",130,"name")="sgmnt_addrs.root_search_cycle" + Set gtmtypes("sgmnt_addrs",130,"off")=740 + Set gtmtypes("sgmnt_addrs",130,"len")=4 + Set gtmtypes("sgmnt_addrs",130,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","root_search_cycle")=130 + Set gtmtypes("sgmnt_addrs",131,"name")="sgmnt_addrs.onln_rlbk_cycle" + Set gtmtypes("sgmnt_addrs",131,"off")=744 + Set gtmtypes("sgmnt_addrs",131,"len")=4 + Set gtmtypes("sgmnt_addrs",131,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","onln_rlbk_cycle")=131 + Set gtmtypes("sgmnt_addrs",132,"name")="sgmnt_addrs.db_onln_rlbkd_cycle" + Set gtmtypes("sgmnt_addrs",132,"off")=748 + Set gtmtypes("sgmnt_addrs",132,"len")=4 + Set gtmtypes("sgmnt_addrs",132,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_addrs","db_onln_rlbkd_cycle")=132 + Set gtmtypes("sgmnt_addrs",133,"name")="sgmnt_addrs.dbinit_shm_created" + Set gtmtypes("sgmnt_addrs",133,"off")=752 + Set gtmtypes("sgmnt_addrs",133,"len")=4 + Set gtmtypes("sgmnt_addrs",133,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","dbinit_shm_created")=133 + Set gtmtypes("sgmnt_addrs",134,"name")="sgmnt_addrs.read_only_fs" + Set gtmtypes("sgmnt_addrs",134,"off")=756 + Set gtmtypes("sgmnt_addrs",134,"len")=4 + Set gtmtypes("sgmnt_addrs",134,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","read_only_fs")=134 + Set gtmtypes("sgmnt_addrs",135,"name")="sgmnt_addrs.crit_probe" + Set gtmtypes("sgmnt_addrs",135,"off")=760 + Set gtmtypes("sgmnt_addrs",135,"len")=4 + Set gtmtypes("sgmnt_addrs",135,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_addrs","crit_probe")=135 + Set gtmtypes("sgmnt_addrs",136,"name")="sgmnt_addrs.probecrit_rec" + Set gtmtypes("sgmnt_addrs",136,"off")=764 + Set gtmtypes("sgmnt_addrs",136,"len")=56 + Set gtmtypes("sgmnt_addrs",136,"type")="probecrit_rec_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec")=136 + Set gtmtypes("sgmnt_addrs",137,"name")="sgmnt_addrs.probecrit_rec.t_get_crit" + Set gtmtypes("sgmnt_addrs",137,"off")=764 + Set gtmtypes("sgmnt_addrs",137,"len")=8 + Set gtmtypes("sgmnt_addrs",137,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.t_get_crit")=137 + Set gtmtypes("sgmnt_addrs",138,"name")="sgmnt_addrs.probecrit_rec.p_crit_failed" + Set gtmtypes("sgmnt_addrs",138,"off")=772 + Set gtmtypes("sgmnt_addrs",138,"len")=8 + Set gtmtypes("sgmnt_addrs",138,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_failed")=138 + Set gtmtypes("sgmnt_addrs",139,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_slps" + Set gtmtypes("sgmnt_addrs",139,"off")=780 + Set gtmtypes("sgmnt_addrs",139,"len")=8 + Set gtmtypes("sgmnt_addrs",139,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_slps")=139 + Set gtmtypes("sgmnt_addrs",140,"name")="sgmnt_addrs.probecrit_rec.p_crit_yields" + Set gtmtypes("sgmnt_addrs",140,"off")=788 + Set gtmtypes("sgmnt_addrs",140,"len")=8 + Set gtmtypes("sgmnt_addrs",140,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_yields")=140 + Set gtmtypes("sgmnt_addrs",141,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_full" + Set gtmtypes("sgmnt_addrs",141,"off")=796 + Set gtmtypes("sgmnt_addrs",141,"len")=8 + Set gtmtypes("sgmnt_addrs",141,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_full")=141 + Set gtmtypes("sgmnt_addrs",142,"name")="sgmnt_addrs.probecrit_rec.p_crit_que_slots" + Set gtmtypes("sgmnt_addrs",142,"off")=804 + Set gtmtypes("sgmnt_addrs",142,"len")=8 + Set gtmtypes("sgmnt_addrs",142,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_que_slots")=142 + Set gtmtypes("sgmnt_addrs",143,"name")="sgmnt_addrs.probecrit_rec.p_crit_success" + Set gtmtypes("sgmnt_addrs",143,"off")=812 + Set gtmtypes("sgmnt_addrs",143,"len")=8 + Set gtmtypes("sgmnt_addrs",143,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_addrs","probecrit_rec.p_crit_success")=143 + ; + Set gtmtypes("sgmnt_data")="struct" + Set gtmtypes("sgmnt_data",0)=565 + Set gtmtypes("sgmnt_data","len")=8192 + Set gtmtypes("sgmnt_data",1,"name")="sgmnt_data.label" + Set gtmtypes("sgmnt_data",1,"off")=0 + Set gtmtypes("sgmnt_data",1,"len")=12 + Set gtmtypes("sgmnt_data",1,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","label")=1 + Set gtmtypes("sgmnt_data",2,"name")="sgmnt_data.blk_size" + Set gtmtypes("sgmnt_data",2,"off")=12 + Set gtmtypes("sgmnt_data",2,"len")=4 + Set gtmtypes("sgmnt_data",2,"type")="int" + Set gtmtypfldindx("sgmnt_data","blk_size")=2 + Set gtmtypes("sgmnt_data",3,"name")="sgmnt_data.master_map_len" + Set gtmtypes("sgmnt_data",3,"off")=16 + Set gtmtypes("sgmnt_data",3,"len")=4 + Set gtmtypes("sgmnt_data",3,"type")="int" + Set gtmtypfldindx("sgmnt_data","master_map_len")=3 + Set gtmtypes("sgmnt_data",4,"name")="sgmnt_data.bplmap" + Set gtmtypes("sgmnt_data",4,"off")=20 + Set gtmtypes("sgmnt_data",4,"len")=4 + Set gtmtypes("sgmnt_data",4,"type")="int" + Set gtmtypfldindx("sgmnt_data","bplmap")=4 + Set gtmtypes("sgmnt_data",5,"name")="sgmnt_data.start_vbn" + Set gtmtypes("sgmnt_data",5,"off")=24 + Set gtmtypes("sgmnt_data",5,"len")=4 + Set gtmtypes("sgmnt_data",5,"type")="int" + Set gtmtypfldindx("sgmnt_data","start_vbn")=5 + Set gtmtypes("sgmnt_data",6,"name")="sgmnt_data.acc_meth" + Set gtmtypes("sgmnt_data",6,"off")=28 + Set gtmtypes("sgmnt_data",6,"len")=4 + Set gtmtypes("sgmnt_data",6,"type")="int" + Set gtmtypfldindx("sgmnt_data","acc_meth")=6 + Set gtmtypes("sgmnt_data",7,"name")="sgmnt_data.max_bts" + Set gtmtypes("sgmnt_data",7,"off")=32 + Set gtmtypes("sgmnt_data",7,"len")=4 + Set gtmtypes("sgmnt_data",7,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","max_bts")=7 + Set gtmtypes("sgmnt_data",8,"name")="sgmnt_data.n_bts" + Set gtmtypes("sgmnt_data",8,"off")=36 + Set gtmtypes("sgmnt_data",8,"len")=4 + Set gtmtypes("sgmnt_data",8,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bts")=8 + Set gtmtypes("sgmnt_data",9,"name")="sgmnt_data.bt_buckets" + Set gtmtypes("sgmnt_data",9,"off")=40 + Set gtmtypes("sgmnt_data",9,"len")=4 + Set gtmtypes("sgmnt_data",9,"type")="int" + Set gtmtypfldindx("sgmnt_data","bt_buckets")=9 + Set gtmtypes("sgmnt_data",10,"name")="sgmnt_data.reserved_bytes" + Set gtmtypes("sgmnt_data",10,"off")=44 + Set gtmtypes("sgmnt_data",10,"len")=4 + Set gtmtypes("sgmnt_data",10,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bytes")=10 + Set gtmtypes("sgmnt_data",11,"name")="sgmnt_data.max_rec_size" + Set gtmtypes("sgmnt_data",11,"off")=48 + Set gtmtypes("sgmnt_data",11,"len")=4 + Set gtmtypes("sgmnt_data",11,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_rec_size")=11 + Set gtmtypes("sgmnt_data",12,"name")="sgmnt_data.max_key_size" + Set gtmtypes("sgmnt_data",12,"off")=52 + Set gtmtypes("sgmnt_data",12,"len")=4 + Set gtmtypes("sgmnt_data",12,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_key_size")=12 + Set gtmtypes("sgmnt_data",13,"name")="sgmnt_data.lock_space_size" + Set gtmtypes("sgmnt_data",13,"off")=56 + Set gtmtypes("sgmnt_data",13,"len")=4 + Set gtmtypes("sgmnt_data",13,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","lock_space_size")=13 + Set gtmtypes("sgmnt_data",14,"name")="sgmnt_data.extension_size" + Set gtmtypes("sgmnt_data",14,"off")=60 + Set gtmtypes("sgmnt_data",14,"len")=4 + Set gtmtypes("sgmnt_data",14,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","extension_size")=14 + Set gtmtypes("sgmnt_data",15,"name")="sgmnt_data.def_coll" + Set gtmtypes("sgmnt_data",15,"off")=64 + Set gtmtypes("sgmnt_data",15,"len")=4 + Set gtmtypes("sgmnt_data",15,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","def_coll")=15 + Set gtmtypes("sgmnt_data",16,"name")="sgmnt_data.def_coll_ver" + Set gtmtypes("sgmnt_data",16,"off")=68 + Set gtmtypes("sgmnt_data",16,"len")=4 + Set gtmtypes("sgmnt_data",16,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","def_coll_ver")=16 + Set gtmtypes("sgmnt_data",17,"name")="sgmnt_data.std_null_coll" + Set gtmtypes("sgmnt_data",17,"off")=72 + Set gtmtypes("sgmnt_data",17,"len")=4 + Set gtmtypes("sgmnt_data",17,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","std_null_coll")=17 + Set gtmtypes("sgmnt_data",18,"name")="sgmnt_data.null_subs" + Set gtmtypes("sgmnt_data",18,"off")=76 + Set gtmtypes("sgmnt_data",18,"len")=4 + Set gtmtypes("sgmnt_data",18,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","null_subs")=18 + Set gtmtypes("sgmnt_data",19,"name")="sgmnt_data.free_space" + Set gtmtypes("sgmnt_data",19,"off")=80 + Set gtmtypes("sgmnt_data",19,"len")=4 + Set gtmtypes("sgmnt_data",19,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","free_space")=19 + Set gtmtypes("sgmnt_data",20,"name")="sgmnt_data.mutex_spin_parms" + Set gtmtypes("sgmnt_data",20,"off")=84 + Set gtmtypes("sgmnt_data",20,"len")=16 + Set gtmtypes("sgmnt_data",20,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms")=20 + Set gtmtypes("sgmnt_data",21,"name")="sgmnt_data.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("sgmnt_data",21,"off")=84 + Set gtmtypes("sgmnt_data",21,"len")=4 + Set gtmtypes("sgmnt_data",21,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_hard_spin_count")=21 + Set gtmtypes("sgmnt_data",22,"name")="sgmnt_data.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("sgmnt_data",22,"off")=88 + Set gtmtypes("sgmnt_data",22,"len")=4 + Set gtmtypes("sgmnt_data",22,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_sleep_spin_count")=22 + Set gtmtypes("sgmnt_data",23,"name")="sgmnt_data.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("sgmnt_data",23,"off")=92 + Set gtmtypes("sgmnt_data",23,"len")=4 + Set gtmtypes("sgmnt_data",23,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_spin_sleep_mask")=23 + Set gtmtypes("sgmnt_data",24,"name")="sgmnt_data.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("sgmnt_data",24,"off")=96 + Set gtmtypes("sgmnt_data",24,"len")=4 + Set gtmtypes("sgmnt_data",24,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_spin_parms.mutex_que_entry_space_size")=24 + Set gtmtypes("sgmnt_data",25,"name")="sgmnt_data.max_update_array_size" + Set gtmtypes("sgmnt_data",25,"off")=100 + Set gtmtypes("sgmnt_data",25,"len")=4 + Set gtmtypes("sgmnt_data",25,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_update_array_size")=25 + Set gtmtypes("sgmnt_data",26,"name")="sgmnt_data.max_non_bm_update_array_size" + Set gtmtypes("sgmnt_data",26,"off")=104 + Set gtmtypes("sgmnt_data",26,"len")=4 + Set gtmtypes("sgmnt_data",26,"type")="int" + Set gtmtypfldindx("sgmnt_data","max_non_bm_update_array_size")=26 + Set gtmtypes("sgmnt_data",27,"name")="sgmnt_data.file_corrupt" + Set gtmtypes("sgmnt_data",27,"off")=108 + Set gtmtypes("sgmnt_data",27,"len")=4 + Set gtmtypes("sgmnt_data",27,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","file_corrupt")=27 + Set gtmtypes("sgmnt_data",28,"name")="sgmnt_data.minor_dbver" + Set gtmtypes("sgmnt_data",28,"off")=112 + Set gtmtypes("sgmnt_data",28,"len")=4 + Set gtmtypes("sgmnt_data",28,"type")="int" + Set gtmtypfldindx("sgmnt_data","minor_dbver")=28 + Set gtmtypes("sgmnt_data",29,"name")="sgmnt_data.jnl_checksum" + Set gtmtypes("sgmnt_data",29,"off")=116 + Set gtmtypes("sgmnt_data",29,"len")=4 + Set gtmtypes("sgmnt_data",29,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_checksum")=29 + Set gtmtypes("sgmnt_data",30,"name")="sgmnt_data.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("sgmnt_data",30,"off")=120 + Set gtmtypes("sgmnt_data",30,"len")=4 + Set gtmtypes("sgmnt_data",30,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","wcs_phase2_commit_wait_spincnt")=30 + Set gtmtypes("sgmnt_data",31,"name")="sgmnt_data.last_mdb_ver" + Set gtmtypes("sgmnt_data",31,"off")=124 + Set gtmtypes("sgmnt_data",31,"len")=4 + Set gtmtypes("sgmnt_data",31,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_mdb_ver")=31 + Set gtmtypes("sgmnt_data",32,"name")="sgmnt_data.filler_created" + Set gtmtypes("sgmnt_data",32,"off")=128 + Set gtmtypes("sgmnt_data",32,"len")=52 + Set gtmtypes("sgmnt_data",32,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_created")=32 + Set gtmtypes("sgmnt_data",33,"name")="sgmnt_data.createinprogress" + Set gtmtypes("sgmnt_data",33,"off")=180 + Set gtmtypes("sgmnt_data",33,"len")=4 + Set gtmtypes("sgmnt_data",33,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","createinprogress")=33 + Set gtmtypes("sgmnt_data",34,"name")="sgmnt_data.creation_time4" + Set gtmtypes("sgmnt_data",34,"off")=184 + Set gtmtypes("sgmnt_data",34,"len")=4 + Set gtmtypes("sgmnt_data",34,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_time4")=34 + Set gtmtypes("sgmnt_data",35,"name")="sgmnt_data.creation_filler_8byte" + Set gtmtypes("sgmnt_data",35,"off")=188 + Set gtmtypes("sgmnt_data",35,"len")=4 + Set gtmtypes("sgmnt_data",35,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_filler_8byte")=35 + Set gtmtypes("sgmnt_data",36,"name")="sgmnt_data.max_tn" + Set gtmtypes("sgmnt_data",36,"off")=192 + Set gtmtypes("sgmnt_data",36,"len")=8 + Set gtmtypes("sgmnt_data",36,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","max_tn")=36 + Set gtmtypes("sgmnt_data",37,"name")="sgmnt_data.max_tn_warn" + Set gtmtypes("sgmnt_data",37,"off")=200 + Set gtmtypes("sgmnt_data",37,"len")=8 + Set gtmtypes("sgmnt_data",37,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","max_tn_warn")=37 + Set gtmtypes("sgmnt_data",38,"name")="sgmnt_data.last_inc_backup" + Set gtmtypes("sgmnt_data",38,"off")=208 + Set gtmtypes("sgmnt_data",38,"len")=8 + Set gtmtypes("sgmnt_data",38,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_inc_backup")=38 + Set gtmtypes("sgmnt_data",39,"name")="sgmnt_data.last_com_backup" + Set gtmtypes("sgmnt_data",39,"off")=216 + Set gtmtypes("sgmnt_data",39,"len")=8 + Set gtmtypes("sgmnt_data",39,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_com_backup")=39 + Set gtmtypes("sgmnt_data",40,"name")="sgmnt_data.last_rec_backup" + Set gtmtypes("sgmnt_data",40,"off")=224 + Set gtmtypes("sgmnt_data",40,"len")=8 + Set gtmtypes("sgmnt_data",40,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","last_rec_backup")=40 + Set gtmtypes("sgmnt_data",41,"name")="sgmnt_data.last_inc_bkup_last_blk" + Set gtmtypes("sgmnt_data",41,"off")=232 + Set gtmtypes("sgmnt_data",41,"len")=4 + Set gtmtypes("sgmnt_data",41,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_inc_bkup_last_blk")=41 + Set gtmtypes("sgmnt_data",42,"name")="sgmnt_data.last_com_bkup_last_blk" + Set gtmtypes("sgmnt_data",42,"off")=236 + Set gtmtypes("sgmnt_data",42,"len")=4 + Set gtmtypes("sgmnt_data",42,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_com_bkup_last_blk")=42 + Set gtmtypes("sgmnt_data",43,"name")="sgmnt_data.last_rec_bkup_last_blk" + Set gtmtypes("sgmnt_data",43,"off")=240 + Set gtmtypes("sgmnt_data",43,"len")=4 + Set gtmtypes("sgmnt_data",43,"type")="int" + Set gtmtypfldindx("sgmnt_data","last_rec_bkup_last_blk")=43 + Set gtmtypes("sgmnt_data",44,"name")="sgmnt_data.reorg_restart_block" + Set gtmtypes("sgmnt_data",44,"off")=244 + Set gtmtypes("sgmnt_data",44,"len")=4 + Set gtmtypes("sgmnt_data",44,"type")="int" + Set gtmtypfldindx("sgmnt_data","reorg_restart_block")=44 + Set gtmtypes("sgmnt_data",45,"name")="sgmnt_data.filler_256" + Set gtmtypes("sgmnt_data",45,"off")=248 + Set gtmtypes("sgmnt_data",45,"len")=8 + Set gtmtypes("sgmnt_data",45,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_256")=45 + Set gtmtypes("sgmnt_data",46,"name")="sgmnt_data.now_running" + Set gtmtypes("sgmnt_data",46,"off")=256 + Set gtmtypes("sgmnt_data",46,"len")=36 + Set gtmtypes("sgmnt_data",46,"type")="char" + Set gtmtypfldindx("sgmnt_data","now_running")=46 + Set gtmtypes("sgmnt_data",47,"name")="sgmnt_data.filler_owner_node" + Set gtmtypes("sgmnt_data",47,"off")=292 + Set gtmtypes("sgmnt_data",47,"len")=4 + Set gtmtypes("sgmnt_data",47,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_owner_node")=47 + Set gtmtypes("sgmnt_data",48,"name")="sgmnt_data.image_count" + Set gtmtypes("sgmnt_data",48,"off")=296 + Set gtmtypes("sgmnt_data",48,"len")=4 + Set gtmtypes("sgmnt_data",48,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","image_count")=48 + Set gtmtypes("sgmnt_data",49,"name")="sgmnt_data.freeze" + Set gtmtypes("sgmnt_data",49,"off")=300 + Set gtmtypes("sgmnt_data",49,"len")=4 + Set gtmtypes("sgmnt_data",49,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","freeze")=49 + Set gtmtypes("sgmnt_data",50,"name")="sgmnt_data.kill_in_prog" + Set gtmtypes("sgmnt_data",50,"off")=304 + Set gtmtypes("sgmnt_data",50,"len")=4 + Set gtmtypes("sgmnt_data",50,"type")="int" + Set gtmtypfldindx("sgmnt_data","kill_in_prog")=50 + Set gtmtypes("sgmnt_data",51,"name")="sgmnt_data.abandoned_kills" + Set gtmtypes("sgmnt_data",51,"off")=308 + Set gtmtypes("sgmnt_data",51,"len")=4 + Set gtmtypes("sgmnt_data",51,"type")="int" + Set gtmtypfldindx("sgmnt_data","abandoned_kills")=51 + Set gtmtypes("sgmnt_data",52,"name")="sgmnt_data.filler_320" + Set gtmtypes("sgmnt_data",52,"off")=312 + Set gtmtypes("sgmnt_data",52,"len")=8 + Set gtmtypes("sgmnt_data",52,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_320")=52 + Set gtmtypes("sgmnt_data",53,"name")="sgmnt_data.tn_upgrd_blks_0" + Set gtmtypes("sgmnt_data",53,"off")=320 + Set gtmtypes("sgmnt_data",53,"len")=8 + Set gtmtypes("sgmnt_data",53,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","tn_upgrd_blks_0")=53 + Set gtmtypes("sgmnt_data",54,"name")="sgmnt_data.desired_db_format_tn" + Set gtmtypes("sgmnt_data",54,"off")=328 + Set gtmtypes("sgmnt_data",54,"len")=8 + Set gtmtypes("sgmnt_data",54,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","desired_db_format_tn")=54 + Set gtmtypes("sgmnt_data",55,"name")="sgmnt_data.reorg_db_fmt_start_tn" + Set gtmtypes("sgmnt_data",55,"off")=336 + Set gtmtypes("sgmnt_data",55,"len")=8 + Set gtmtypes("sgmnt_data",55,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reorg_db_fmt_start_tn")=55 + Set gtmtypes("sgmnt_data",56,"name")="sgmnt_data.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("sgmnt_data",56,"off")=344 + Set gtmtypes("sgmnt_data",56,"len")=4 + Set gtmtypes("sgmnt_data",56,"type")="int" + Set gtmtypfldindx("sgmnt_data","reorg_upgrd_dwngrd_restart_block")=56 + Set gtmtypes("sgmnt_data",57,"name")="sgmnt_data.blks_to_upgrd" + Set gtmtypes("sgmnt_data",57,"off")=348 + Set gtmtypes("sgmnt_data",57,"len")=4 + Set gtmtypes("sgmnt_data",57,"type")="int" + Set gtmtypfldindx("sgmnt_data","blks_to_upgrd")=57 + Set gtmtypes("sgmnt_data",58,"name")="sgmnt_data.blks_to_upgrd_subzero_error" + Set gtmtypes("sgmnt_data",58,"off")=352 + Set gtmtypes("sgmnt_data",58,"len")=4 + Set gtmtypes("sgmnt_data",58,"type")="int" + Set gtmtypfldindx("sgmnt_data","blks_to_upgrd_subzero_error")=58 + Set gtmtypes("sgmnt_data",59,"name")="sgmnt_data.desired_db_format" + Set gtmtypes("sgmnt_data",59,"off")=356 + Set gtmtypes("sgmnt_data",59,"len")=4 + Set gtmtypes("sgmnt_data",59,"type")="int" + Set gtmtypfldindx("sgmnt_data","desired_db_format")=59 + Set gtmtypes("sgmnt_data",60,"name")="sgmnt_data.fully_upgraded" + Set gtmtypes("sgmnt_data",60,"off")=360 + Set gtmtypes("sgmnt_data",60,"len")=4 + Set gtmtypes("sgmnt_data",60,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","fully_upgraded")=60 + Set gtmtypes("sgmnt_data",61,"name")="sgmnt_data.db_got_to_v5_once" + Set gtmtypes("sgmnt_data",61,"off")=364 + Set gtmtypes("sgmnt_data",61,"len")=4 + Set gtmtypes("sgmnt_data",61,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","db_got_to_v5_once")=61 + Set gtmtypes("sgmnt_data",62,"name")="sgmnt_data.opened_by_gtmv53" + Set gtmtypes("sgmnt_data",62,"off")=368 + Set gtmtypes("sgmnt_data",62,"len")=4 + Set gtmtypes("sgmnt_data",62,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","opened_by_gtmv53")=62 + Set gtmtypes("sgmnt_data",63,"name")="sgmnt_data.filler_384" + Set gtmtypes("sgmnt_data",63,"off")=372 + Set gtmtypes("sgmnt_data",63,"len")=12 + Set gtmtypes("sgmnt_data",63,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_384")=63 + Set gtmtypes("sgmnt_data",64,"name")="sgmnt_data.trans_hist" + Set gtmtypes("sgmnt_data",64,"off")=384 + Set gtmtypes("sgmnt_data",64,"len")=56 + Set gtmtypes("sgmnt_data",64,"type")="th_index" + Set gtmtypfldindx("sgmnt_data","trans_hist")=64 + Set gtmtypes("sgmnt_data",65,"name")="sgmnt_data.trans_hist.curr_tn" + Set gtmtypes("sgmnt_data",65,"off")=384 + Set gtmtypes("sgmnt_data",65,"len")=8 + Set gtmtypes("sgmnt_data",65,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.curr_tn")=65 + Set gtmtypes("sgmnt_data",66,"name")="sgmnt_data.trans_hist.early_tn" + Set gtmtypes("sgmnt_data",66,"off")=392 + Set gtmtypes("sgmnt_data",66,"len")=8 + Set gtmtypes("sgmnt_data",66,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.early_tn")=66 + Set gtmtypes("sgmnt_data",67,"name")="sgmnt_data.trans_hist.last_mm_sync" + Set gtmtypes("sgmnt_data",67,"off")=400 + Set gtmtypes("sgmnt_data",67,"len")=8 + Set gtmtypes("sgmnt_data",67,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.last_mm_sync")=67 + Set gtmtypes("sgmnt_data",68,"name")="sgmnt_data.trans_hist.filler_8byte" + Set gtmtypes("sgmnt_data",68,"off")=408 + Set gtmtypes("sgmnt_data",68,"len")=8 + Set gtmtypes("sgmnt_data",68,"type")="char" + Set gtmtypfldindx("sgmnt_data","trans_hist.filler_8byte")=68 + Set gtmtypes("sgmnt_data",69,"name")="sgmnt_data.trans_hist.mm_tn" + Set gtmtypes("sgmnt_data",69,"off")=416 + Set gtmtypes("sgmnt_data",69,"len")=8 + Set gtmtypes("sgmnt_data",69,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","trans_hist.mm_tn")=69 + Set gtmtypes("sgmnt_data",70,"name")="sgmnt_data.trans_hist.lock_sequence" + Set gtmtypes("sgmnt_data",70,"off")=424 + Set gtmtypes("sgmnt_data",70,"len")=4 + Set gtmtypes("sgmnt_data",70,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.lock_sequence")=70 + Set gtmtypes("sgmnt_data",71,"name")="sgmnt_data.trans_hist.ccp_jnl_filesize" + Set gtmtypes("sgmnt_data",71,"off")=428 + Set gtmtypes("sgmnt_data",71,"len")=4 + Set gtmtypes("sgmnt_data",71,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.ccp_jnl_filesize")=71 + Set gtmtypes("sgmnt_data",72,"name")="sgmnt_data.trans_hist.total_blks" + Set gtmtypes("sgmnt_data",72,"off")=432 + Set gtmtypes("sgmnt_data",72,"len")=4 + Set gtmtypes("sgmnt_data",72,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.total_blks")=72 + Set gtmtypes("sgmnt_data",73,"name")="sgmnt_data.trans_hist.free_blocks" + Set gtmtypes("sgmnt_data",73,"off")=436 + Set gtmtypes("sgmnt_data",73,"len")=4 + Set gtmtypes("sgmnt_data",73,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","trans_hist.free_blocks")=73 + Set gtmtypes("sgmnt_data",74,"name")="sgmnt_data.filler_trans_hist" + Set gtmtypes("sgmnt_data",74,"off")=440 + Set gtmtypes("sgmnt_data",74,"len")=8 + Set gtmtypes("sgmnt_data",74,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_trans_hist")=74 + Set gtmtypes("sgmnt_data",75,"name")="sgmnt_data.flush_time" + Set gtmtypes("sgmnt_data",75,"off")=448 + Set gtmtypes("sgmnt_data",75,"len")=8 + Set gtmtypes("sgmnt_data",75,"type")="int" + Set gtmtypfldindx("sgmnt_data","flush_time")=75 + Set gtmtypes("sgmnt_data",75,"dim")=2 + Set gtmtypes("sgmnt_data",76,"name")="sgmnt_data.flush_trigger" + Set gtmtypes("sgmnt_data",76,"off")=456 + Set gtmtypes("sgmnt_data",76,"len")=4 + Set gtmtypes("sgmnt_data",76,"type")="int" + Set gtmtypfldindx("sgmnt_data","flush_trigger")=76 + Set gtmtypes("sgmnt_data",77,"name")="sgmnt_data.n_wrt_per_flu" + Set gtmtypes("sgmnt_data",77,"off")=460 + Set gtmtypes("sgmnt_data",77,"len")=4 + Set gtmtypes("sgmnt_data",77,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_wrt_per_flu")=77 + Set gtmtypes("sgmnt_data",78,"name")="sgmnt_data.wait_disk_space" + Set gtmtypes("sgmnt_data",78,"off")=464 + Set gtmtypes("sgmnt_data",78,"len")=4 + Set gtmtypes("sgmnt_data",78,"type")="int" + Set gtmtypfldindx("sgmnt_data","wait_disk_space")=78 + Set gtmtypes("sgmnt_data",79,"name")="sgmnt_data.defer_time" + Set gtmtypes("sgmnt_data",79,"off")=468 + Set gtmtypes("sgmnt_data",79,"len")=4 + Set gtmtypes("sgmnt_data",79,"type")="int" + Set gtmtypfldindx("sgmnt_data","defer_time")=79 + Set gtmtypes("sgmnt_data",80,"name")="sgmnt_data.filler_wc_blocked" + Set gtmtypes("sgmnt_data",80,"off")=472 + Set gtmtypes("sgmnt_data",80,"len")=4 + Set gtmtypes("sgmnt_data",80,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","filler_wc_blocked")=80 + Set gtmtypes("sgmnt_data",81,"name")="sgmnt_data.mumps_can_bypass" + Set gtmtypes("sgmnt_data",81,"off")=476 + Set gtmtypes("sgmnt_data",81,"len")=4 + Set gtmtypes("sgmnt_data",81,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","mumps_can_bypass")=81 + Set gtmtypes("sgmnt_data",82,"name")="sgmnt_data.epoch_taper" + Set gtmtypes("sgmnt_data",82,"off")=480 + Set gtmtypes("sgmnt_data",82,"len")=4 + Set gtmtypes("sgmnt_data",82,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","epoch_taper")=82 + Set gtmtypes("sgmnt_data",83,"name")="sgmnt_data.epoch_taper_time_pct" + Set gtmtypes("sgmnt_data",83,"off")=484 + Set gtmtypes("sgmnt_data",83,"len")=4 + Set gtmtypes("sgmnt_data",83,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","epoch_taper_time_pct")=83 + Set gtmtypes("sgmnt_data",84,"name")="sgmnt_data.epoch_taper_jnl_pct" + Set gtmtypes("sgmnt_data",84,"off")=488 + Set gtmtypes("sgmnt_data",84,"len")=4 + Set gtmtypes("sgmnt_data",84,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","epoch_taper_jnl_pct")=84 + Set gtmtypes("sgmnt_data",85,"name")="sgmnt_data.filler_512" + Set gtmtypes("sgmnt_data",85,"off")=492 + Set gtmtypes("sgmnt_data",85,"len")=4 + Set gtmtypes("sgmnt_data",85,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_512")=85 + Set gtmtypes("sgmnt_data",86,"name")="sgmnt_data.reserved_for_upd" + Set gtmtypes("sgmnt_data",86,"off")=496 + Set gtmtypes("sgmnt_data",86,"len")=4 + Set gtmtypes("sgmnt_data",86,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","reserved_for_upd")=86 + Set gtmtypes("sgmnt_data",87,"name")="sgmnt_data.avg_blks_per_100gbl" + Set gtmtypes("sgmnt_data",87,"off")=500 + Set gtmtypes("sgmnt_data",87,"len")=4 + Set gtmtypes("sgmnt_data",87,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","avg_blks_per_100gbl")=87 + Set gtmtypes("sgmnt_data",88,"name")="sgmnt_data.pre_read_trigger_factor" + Set gtmtypes("sgmnt_data",88,"off")=504 + Set gtmtypes("sgmnt_data",88,"len")=4 + Set gtmtypes("sgmnt_data",88,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","pre_read_trigger_factor")=88 + Set gtmtypes("sgmnt_data",89,"name")="sgmnt_data.writer_trigger_factor" + Set gtmtypes("sgmnt_data",89,"off")=508 + Set gtmtypes("sgmnt_data",89,"len")=4 + Set gtmtypes("sgmnt_data",89,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","writer_trigger_factor")=89 + Set gtmtypes("sgmnt_data",90,"name")="sgmnt_data.semid" + Set gtmtypes("sgmnt_data",90,"off")=512 + Set gtmtypes("sgmnt_data",90,"len")=4 + Set gtmtypes("sgmnt_data",90,"type")="int" + Set gtmtypfldindx("sgmnt_data","semid")=90 + Set gtmtypes("sgmnt_data",91,"name")="sgmnt_data.shmid" + Set gtmtypes("sgmnt_data",91,"off")=516 + Set gtmtypes("sgmnt_data",91,"len")=4 + Set gtmtypes("sgmnt_data",91,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmid")=91 + Set gtmtypes("sgmnt_data",92,"name")="sgmnt_data.gt_sem_ctime" + Set gtmtypes("sgmnt_data",92,"off")=520 + Set gtmtypes("sgmnt_data",92,"len")=8 + Set gtmtypes("sgmnt_data",92,"type")="gtm_time8" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime")=92 + Set gtmtypes("sgmnt_data",93,"name")="sgmnt_data.gt_sem_ctime.ctime" + Set gtmtypes("sgmnt_data",93,"off")=520 + Set gtmtypes("sgmnt_data",93,"len")=4 + Set gtmtypes("sgmnt_data",93,"type")="time_t" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime.ctime")=93 + Set gtmtypes("sgmnt_data",94,"name")="sgmnt_data.gt_sem_ctime.filler" + Set gtmtypes("sgmnt_data",94,"off")=520 + Set gtmtypes("sgmnt_data",94,"len")=8 + Set gtmtypes("sgmnt_data",94,"type")="int" + Set gtmtypfldindx("sgmnt_data","gt_sem_ctime.filler")=94 + Set gtmtypes("sgmnt_data",94,"dim")=2 + Set gtmtypes("sgmnt_data",95,"name")="sgmnt_data.gt_shm_ctime" + Set gtmtypes("sgmnt_data",95,"off")=528 + Set gtmtypes("sgmnt_data",95,"len")=8 + Set gtmtypes("sgmnt_data",95,"type")="gtm_time8" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime")=95 + Set gtmtypes("sgmnt_data",96,"name")="sgmnt_data.gt_shm_ctime.ctime" + Set gtmtypes("sgmnt_data",96,"off")=528 + Set gtmtypes("sgmnt_data",96,"len")=4 + Set gtmtypes("sgmnt_data",96,"type")="time_t" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime.ctime")=96 + Set gtmtypes("sgmnt_data",97,"name")="sgmnt_data.gt_shm_ctime.filler" + Set gtmtypes("sgmnt_data",97,"off")=528 + Set gtmtypes("sgmnt_data",97,"len")=8 + Set gtmtypes("sgmnt_data",97,"type")="int" + Set gtmtypfldindx("sgmnt_data","gt_shm_ctime.filler")=97 + Set gtmtypes("sgmnt_data",97,"dim")=2 + Set gtmtypes("sgmnt_data",98,"name")="sgmnt_data.filler_unixonly" + Set gtmtypes("sgmnt_data",98,"off")=536 + Set gtmtypes("sgmnt_data",98,"len")=40 + Set gtmtypes("sgmnt_data",98,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_unixonly")=98 + Set gtmtypes("sgmnt_data",99,"name")="sgmnt_data.filler_n_retries" + Set gtmtypes("sgmnt_data",99,"off")=576 + Set gtmtypes("sgmnt_data",99,"len")=20 + Set gtmtypes("sgmnt_data",99,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_retries")=99 + Set gtmtypes("sgmnt_data",99,"dim")=5 + Set gtmtypes("sgmnt_data",100,"name")="sgmnt_data.filler_n_puts" + Set gtmtypes("sgmnt_data",100,"off")=596 + Set gtmtypes("sgmnt_data",100,"len")=4 + Set gtmtypes("sgmnt_data",100,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_puts")=100 + Set gtmtypes("sgmnt_data",101,"name")="sgmnt_data.filler_n_kills" + Set gtmtypes("sgmnt_data",101,"off")=600 + Set gtmtypes("sgmnt_data",101,"len")=4 + Set gtmtypes("sgmnt_data",101,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_kills")=101 + Set gtmtypes("sgmnt_data",102,"name")="sgmnt_data.filler_n_queries" + Set gtmtypes("sgmnt_data",102,"off")=604 + Set gtmtypes("sgmnt_data",102,"len")=4 + Set gtmtypes("sgmnt_data",102,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_queries")=102 + Set gtmtypes("sgmnt_data",103,"name")="sgmnt_data.filler_n_gets" + Set gtmtypes("sgmnt_data",103,"off")=608 + Set gtmtypes("sgmnt_data",103,"len")=4 + Set gtmtypes("sgmnt_data",103,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_gets")=103 + Set gtmtypes("sgmnt_data",104,"name")="sgmnt_data.filler_n_order" + Set gtmtypes("sgmnt_data",104,"off")=612 + Set gtmtypes("sgmnt_data",104,"len")=4 + Set gtmtypes("sgmnt_data",104,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_order")=104 + Set gtmtypes("sgmnt_data",105,"name")="sgmnt_data.filler_n_zprevs" + Set gtmtypes("sgmnt_data",105,"off")=616 + Set gtmtypes("sgmnt_data",105,"len")=4 + Set gtmtypes("sgmnt_data",105,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_zprevs")=105 + Set gtmtypes("sgmnt_data",106,"name")="sgmnt_data.filler_n_data" + Set gtmtypes("sgmnt_data",106,"off")=620 + Set gtmtypes("sgmnt_data",106,"len")=4 + Set gtmtypes("sgmnt_data",106,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_data")=106 + Set gtmtypes("sgmnt_data",107,"name")="sgmnt_data.filler_n_puts_duplicate" + Set gtmtypes("sgmnt_data",107,"off")=624 + Set gtmtypes("sgmnt_data",107,"len")=4 + Set gtmtypes("sgmnt_data",107,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_puts_duplicate")=107 + Set gtmtypes("sgmnt_data",108,"name")="sgmnt_data.filler_n_tp_updates" + Set gtmtypes("sgmnt_data",108,"off")=628 + Set gtmtypes("sgmnt_data",108,"len")=4 + Set gtmtypes("sgmnt_data",108,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_updates")=108 + Set gtmtypes("sgmnt_data",109,"name")="sgmnt_data.filler_n_tp_updates_duplicate" + Set gtmtypes("sgmnt_data",109,"off")=632 + Set gtmtypes("sgmnt_data",109,"len")=4 + Set gtmtypes("sgmnt_data",109,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_updates_duplicate")=109 + Set gtmtypes("sgmnt_data",110,"name")="sgmnt_data.filler_accounting_64_align" + Set gtmtypes("sgmnt_data",110,"off")=636 + Set gtmtypes("sgmnt_data",110,"len")=4 + Set gtmtypes("sgmnt_data",110,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_accounting_64_align")=110 + Set gtmtypes("sgmnt_data",111,"name")="sgmnt_data.staleness" + Set gtmtypes("sgmnt_data",111,"off")=640 + Set gtmtypes("sgmnt_data",111,"len")=8 + Set gtmtypes("sgmnt_data",111,"type")="int" + Set gtmtypfldindx("sgmnt_data","staleness")=111 + Set gtmtypes("sgmnt_data",111,"dim")=2 + Set gtmtypes("sgmnt_data",112,"name")="sgmnt_data.ccp_tick_interval" + Set gtmtypes("sgmnt_data",112,"off")=648 + Set gtmtypes("sgmnt_data",112,"len")=8 + Set gtmtypes("sgmnt_data",112,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_tick_interval")=112 + Set gtmtypes("sgmnt_data",112,"dim")=2 + Set gtmtypes("sgmnt_data",113,"name")="sgmnt_data.ccp_quantum_interval" + Set gtmtypes("sgmnt_data",113,"off")=656 + Set gtmtypes("sgmnt_data",113,"len")=8 + Set gtmtypes("sgmnt_data",113,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_quantum_interval")=113 + Set gtmtypes("sgmnt_data",113,"dim")=2 + Set gtmtypes("sgmnt_data",114,"name")="sgmnt_data.ccp_response_interval" + Set gtmtypes("sgmnt_data",114,"off")=664 + Set gtmtypes("sgmnt_data",114,"len")=8 + Set gtmtypes("sgmnt_data",114,"type")="int" + Set gtmtypfldindx("sgmnt_data","ccp_response_interval")=114 + Set gtmtypes("sgmnt_data",114,"dim")=2 + Set gtmtypes("sgmnt_data",115,"name")="sgmnt_data.ccp_jnl_before" + Set gtmtypes("sgmnt_data",115,"off")=672 + Set gtmtypes("sgmnt_data",115,"len")=4 + Set gtmtypes("sgmnt_data",115,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","ccp_jnl_before")=115 + Set gtmtypes("sgmnt_data",116,"name")="sgmnt_data.clustered" + Set gtmtypes("sgmnt_data",116,"off")=676 + Set gtmtypes("sgmnt_data",116,"len")=4 + Set gtmtypes("sgmnt_data",116,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","clustered")=116 + Set gtmtypes("sgmnt_data",117,"name")="sgmnt_data.unbacked_cache" + Set gtmtypes("sgmnt_data",117,"off")=680 + Set gtmtypes("sgmnt_data",117,"len")=4 + Set gtmtypes("sgmnt_data",117,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","unbacked_cache")=117 + Set gtmtypes("sgmnt_data",118,"name")="sgmnt_data.rc_srv_cnt" + Set gtmtypes("sgmnt_data",118,"off")=684 + Set gtmtypes("sgmnt_data",118,"len")=4 + Set gtmtypes("sgmnt_data",118,"type")="int" + Set gtmtypfldindx("sgmnt_data","rc_srv_cnt")=118 + Set gtmtypes("sgmnt_data",119,"name")="sgmnt_data.dsid" + Set gtmtypes("sgmnt_data",119,"off")=688 + Set gtmtypes("sgmnt_data",119,"len")=4 + Set gtmtypes("sgmnt_data",119,"type")="int" + Set gtmtypfldindx("sgmnt_data","dsid")=119 + Set gtmtypes("sgmnt_data",120,"name")="sgmnt_data.rc_node" + Set gtmtypes("sgmnt_data",120,"off")=692 + Set gtmtypes("sgmnt_data",120,"len")=4 + Set gtmtypes("sgmnt_data",120,"type")="int" + Set gtmtypfldindx("sgmnt_data","rc_node")=120 + Set gtmtypes("sgmnt_data",121,"name")="sgmnt_data.filler_ccp_rc" + Set gtmtypes("sgmnt_data",121,"off")=696 + Set gtmtypes("sgmnt_data",121,"len")=8 + Set gtmtypes("sgmnt_data",121,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_ccp_rc")=121 + Set gtmtypes("sgmnt_data",122,"name")="sgmnt_data.reg_seqno" + Set gtmtypes("sgmnt_data",122,"off")=704 + Set gtmtypes("sgmnt_data",122,"len")=8 + Set gtmtypes("sgmnt_data",122,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reg_seqno")=122 + Set gtmtypes("sgmnt_data",123,"name")="sgmnt_data.pre_multisite_resync_seqno" + Set gtmtypes("sgmnt_data",123,"off")=712 + Set gtmtypes("sgmnt_data",123,"len")=8 + Set gtmtypes("sgmnt_data",123,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","pre_multisite_resync_seqno")=123 + Set gtmtypes("sgmnt_data",124,"name")="sgmnt_data.zqgblmod_tn" + Set gtmtypes("sgmnt_data",124,"off")=720 + Set gtmtypes("sgmnt_data",124,"len")=8 + Set gtmtypes("sgmnt_data",124,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","zqgblmod_tn")=124 + Set gtmtypes("sgmnt_data",125,"name")="sgmnt_data.zqgblmod_seqno" + Set gtmtypes("sgmnt_data",125,"off")=728 + Set gtmtypes("sgmnt_data",125,"len")=8 + Set gtmtypes("sgmnt_data",125,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","zqgblmod_seqno")=125 + Set gtmtypes("sgmnt_data",126,"name")="sgmnt_data.repl_state" + Set gtmtypes("sgmnt_data",126,"off")=736 + Set gtmtypes("sgmnt_data",126,"len")=4 + Set gtmtypes("sgmnt_data",126,"type")="int" + Set gtmtypfldindx("sgmnt_data","repl_state")=126 + Set gtmtypes("sgmnt_data",127,"name")="sgmnt_data.multi_site_open" + Set gtmtypes("sgmnt_data",127,"off")=740 + Set gtmtypes("sgmnt_data",127,"len")=4 + Set gtmtypes("sgmnt_data",127,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","multi_site_open")=127 + Set gtmtypes("sgmnt_data",128,"name")="sgmnt_data.filler_seqno" + Set gtmtypes("sgmnt_data",128,"off")=744 + Set gtmtypes("sgmnt_data",128,"len")=8 + Set gtmtypes("sgmnt_data",128,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","filler_seqno")=128 + Set gtmtypes("sgmnt_data",129,"name")="sgmnt_data.filler_repl" + Set gtmtypes("sgmnt_data",129,"off")=752 + Set gtmtypes("sgmnt_data",129,"len")=16 + Set gtmtypes("sgmnt_data",129,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_repl")=129 + Set gtmtypes("sgmnt_data",130,"name")="sgmnt_data.filler_n_tp_retries" + Set gtmtypes("sgmnt_data",130,"off")=768 + Set gtmtypes("sgmnt_data",130,"len")=48 + Set gtmtypes("sgmnt_data",130,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_retries")=130 + Set gtmtypes("sgmnt_data",130,"dim")=12 + Set gtmtypes("sgmnt_data",131,"name")="sgmnt_data.filler_n_tp_retries_conflicts" + Set gtmtypes("sgmnt_data",131,"off")=816 + Set gtmtypes("sgmnt_data",131,"len")=48 + Set gtmtypes("sgmnt_data",131,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_n_tp_retries_conflicts")=131 + Set gtmtypes("sgmnt_data",131,"dim")=12 + Set gtmtypes("sgmnt_data",132,"name")="sgmnt_data.tp_cdb_sc_blkmod" + Set gtmtypes("sgmnt_data",132,"off")=864 + Set gtmtypes("sgmnt_data",132,"len")=32 + Set gtmtypes("sgmnt_data",132,"type")="int" + Set gtmtypfldindx("sgmnt_data","tp_cdb_sc_blkmod")=132 + Set gtmtypes("sgmnt_data",132,"dim")=8 + Set gtmtypes("sgmnt_data",133,"name")="sgmnt_data.jnl_alq" + Set gtmtypes("sgmnt_data",133,"off")=896 + Set gtmtypes("sgmnt_data",133,"len")=4 + Set gtmtypes("sgmnt_data",133,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_alq")=133 + Set gtmtypes("sgmnt_data",134,"name")="sgmnt_data.jnl_deq" + Set gtmtypes("sgmnt_data",134,"off")=900 + Set gtmtypes("sgmnt_data",134,"len")=4 + Set gtmtypes("sgmnt_data",134,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_deq")=134 + Set gtmtypes("sgmnt_data",135,"name")="sgmnt_data.jnl_buffer_size" + Set gtmtypes("sgmnt_data",135,"off")=904 + Set gtmtypes("sgmnt_data",135,"len")=4 + Set gtmtypes("sgmnt_data",135,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_buffer_size")=135 + Set gtmtypes("sgmnt_data",136,"name")="sgmnt_data.jnl_before_image" + Set gtmtypes("sgmnt_data",136,"off")=908 + Set gtmtypes("sgmnt_data",136,"len")=4 + Set gtmtypes("sgmnt_data",136,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","jnl_before_image")=136 + Set gtmtypes("sgmnt_data",137,"name")="sgmnt_data.jnl_state" + Set gtmtypes("sgmnt_data",137,"off")=912 + Set gtmtypes("sgmnt_data",137,"len")=4 + Set gtmtypes("sgmnt_data",137,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_state")=137 + Set gtmtypes("sgmnt_data",138,"name")="sgmnt_data.jnl_file_len" + Set gtmtypes("sgmnt_data",138,"off")=916 + Set gtmtypes("sgmnt_data",138,"len")=4 + Set gtmtypes("sgmnt_data",138,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","jnl_file_len")=138 + Set gtmtypes("sgmnt_data",139,"name")="sgmnt_data.autoswitchlimit" + Set gtmtypes("sgmnt_data",139,"off")=920 + Set gtmtypes("sgmnt_data",139,"len")=4 + Set gtmtypes("sgmnt_data",139,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","autoswitchlimit")=139 + Set gtmtypes("sgmnt_data",140,"name")="sgmnt_data.epoch_interval" + Set gtmtypes("sgmnt_data",140,"off")=924 + Set gtmtypes("sgmnt_data",140,"len")=4 + Set gtmtypes("sgmnt_data",140,"type")="int" + Set gtmtypfldindx("sgmnt_data","epoch_interval")=140 + Set gtmtypes("sgmnt_data",141,"name")="sgmnt_data.alignsize" + Set gtmtypes("sgmnt_data",141,"off")=928 + Set gtmtypes("sgmnt_data",141,"len")=4 + Set gtmtypes("sgmnt_data",141,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","alignsize")=141 + Set gtmtypes("sgmnt_data",142,"name")="sgmnt_data.jnl_sync_io" + Set gtmtypes("sgmnt_data",142,"off")=932 + Set gtmtypes("sgmnt_data",142,"len")=4 + Set gtmtypes("sgmnt_data",142,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_sync_io")=142 + Set gtmtypes("sgmnt_data",143,"name")="sgmnt_data.yield_lmt" + Set gtmtypes("sgmnt_data",143,"off")=936 + Set gtmtypes("sgmnt_data",143,"len")=4 + Set gtmtypes("sgmnt_data",143,"type")="int" + Set gtmtypfldindx("sgmnt_data","yield_lmt")=143 + Set gtmtypes("sgmnt_data",144,"name")="sgmnt_data.turn_around_point" + Set gtmtypes("sgmnt_data",144,"off")=940 + Set gtmtypes("sgmnt_data",144,"len")=4 + Set gtmtypes("sgmnt_data",144,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","turn_around_point")=144 + Set gtmtypes("sgmnt_data",145,"name")="sgmnt_data.jnl_eovtn" + Set gtmtypes("sgmnt_data",145,"off")=944 + Set gtmtypes("sgmnt_data",145,"len")=8 + Set gtmtypes("sgmnt_data",145,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_eovtn")=145 + Set gtmtypes("sgmnt_data",146,"name")="sgmnt_data.filler_jnl" + Set gtmtypes("sgmnt_data",146,"off")=952 + Set gtmtypes("sgmnt_data",146,"len")=8 + Set gtmtypes("sgmnt_data",146,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_jnl")=146 + Set gtmtypes("sgmnt_data",147,"name")="sgmnt_data.intrpt_recov_resync_seqno" + Set gtmtypes("sgmnt_data",147,"off")=960 + Set gtmtypes("sgmnt_data",147,"len")=8 + Set gtmtypes("sgmnt_data",147,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_resync_seqno")=147 + Set gtmtypes("sgmnt_data",148,"name")="sgmnt_data.intrpt_recov_tp_resolve_time" + Set gtmtypes("sgmnt_data",148,"off")=968 + Set gtmtypes("sgmnt_data",148,"len")=4 + Set gtmtypes("sgmnt_data",148,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_tp_resolve_time")=148 + Set gtmtypes("sgmnt_data",149,"name")="sgmnt_data.recov_interrupted" + Set gtmtypes("sgmnt_data",149,"off")=972 + Set gtmtypes("sgmnt_data",149,"len")=4 + Set gtmtypes("sgmnt_data",149,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","recov_interrupted")=149 + Set gtmtypes("sgmnt_data",150,"name")="sgmnt_data.intrpt_recov_jnl_state" + Set gtmtypes("sgmnt_data",150,"off")=976 + Set gtmtypes("sgmnt_data",150,"len")=4 + Set gtmtypes("sgmnt_data",150,"type")="int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_jnl_state")=150 + Set gtmtypes("sgmnt_data",151,"name")="sgmnt_data.intrpt_recov_repl_state" + Set gtmtypes("sgmnt_data",151,"off")=980 + Set gtmtypes("sgmnt_data",151,"len")=4 + Set gtmtypes("sgmnt_data",151,"type")="int" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_repl_state")=151 + Set gtmtypes("sgmnt_data",152,"name")="sgmnt_data.before_trunc_total_blks" + Set gtmtypes("sgmnt_data",152,"off")=984 + Set gtmtypes("sgmnt_data",152,"len")=4 + Set gtmtypes("sgmnt_data",152,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","before_trunc_total_blks")=152 + Set gtmtypes("sgmnt_data",153,"name")="sgmnt_data.after_trunc_total_blks" + Set gtmtypes("sgmnt_data",153,"off")=988 + Set gtmtypes("sgmnt_data",153,"len")=4 + Set gtmtypes("sgmnt_data",153,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","after_trunc_total_blks")=153 + Set gtmtypes("sgmnt_data",154,"name")="sgmnt_data.before_trunc_free_blocks" + Set gtmtypes("sgmnt_data",154,"off")=992 + Set gtmtypes("sgmnt_data",154,"len")=4 + Set gtmtypes("sgmnt_data",154,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","before_trunc_free_blocks")=154 + Set gtmtypes("sgmnt_data",155,"name")="sgmnt_data.filler_trunc" + Set gtmtypes("sgmnt_data",155,"off")=996 + Set gtmtypes("sgmnt_data",155,"len")=4 + Set gtmtypes("sgmnt_data",155,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","filler_trunc")=155 + Set gtmtypes("sgmnt_data",156,"name")="sgmnt_data.filler_1k" + Set gtmtypes("sgmnt_data",156,"off")=1000 + Set gtmtypes("sgmnt_data",156,"len")=24 + Set gtmtypes("sgmnt_data",156,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_1k")=156 + Set gtmtypes("sgmnt_data",157,"name")="sgmnt_data.jnl_file_name" + Set gtmtypes("sgmnt_data",157,"off")=1024 + Set gtmtypes("sgmnt_data",157,"len")=256 + Set gtmtypes("sgmnt_data",157,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","jnl_file_name")=157 + Set gtmtypes("sgmnt_data",158,"name")="sgmnt_data.reorg_restart_key" + Set gtmtypes("sgmnt_data",158,"off")=1280 + Set gtmtypes("sgmnt_data",158,"len")=256 + Set gtmtypes("sgmnt_data",158,"type")="unsigned-char" + Set gtmtypfldindx("sgmnt_data","reorg_restart_key")=158 + Set gtmtypes("sgmnt_data",159,"name")="sgmnt_data.machine_name" + Set gtmtypes("sgmnt_data",159,"off")=1536 + Set gtmtypes("sgmnt_data",159,"len")=256 + Set gtmtypes("sgmnt_data",159,"type")="char" + Set gtmtypfldindx("sgmnt_data","machine_name")=159 + Set gtmtypes("sgmnt_data",160,"name")="sgmnt_data.encryption_hash" + Set gtmtypes("sgmnt_data",160,"off")=1792 + Set gtmtypes("sgmnt_data",160,"len")=80 + Set gtmtypes("sgmnt_data",160,"type")="char" + Set gtmtypfldindx("sgmnt_data","encryption_hash")=160 + Set gtmtypes("sgmnt_data",161,"name")="sgmnt_data.encryption_hash2" + Set gtmtypes("sgmnt_data",161,"off")=1872 + Set gtmtypes("sgmnt_data",161,"len")=80 + Set gtmtypes("sgmnt_data",161,"type")="char" + Set gtmtypfldindx("sgmnt_data","encryption_hash2")=161 + Set gtmtypes("sgmnt_data",162,"name")="sgmnt_data.non_null_iv" + Set gtmtypes("sgmnt_data",162,"off")=1952 + Set gtmtypes("sgmnt_data",162,"len")=4 + Set gtmtypes("sgmnt_data",162,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","non_null_iv")=162 + Set gtmtypes("sgmnt_data",163,"name")="sgmnt_data.encryption_hash_cutoff" + Set gtmtypes("sgmnt_data",163,"off")=1956 + Set gtmtypes("sgmnt_data",163,"len")=4 + Set gtmtypes("sgmnt_data",163,"type")="int" + Set gtmtypfldindx("sgmnt_data","encryption_hash_cutoff")=163 + Set gtmtypes("sgmnt_data",164,"name")="sgmnt_data.encryption_hash2_start_tn" + Set gtmtypes("sgmnt_data",164,"off")=1960 + Set gtmtypes("sgmnt_data",164,"len")=8 + Set gtmtypes("sgmnt_data",164,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","encryption_hash2_start_tn")=164 + Set gtmtypes("sgmnt_data",165,"name")="sgmnt_data.filler_encrypt" + Set gtmtypes("sgmnt_data",165,"off")=1968 + Set gtmtypes("sgmnt_data",165,"len")=80 + Set gtmtypes("sgmnt_data",165,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_encrypt")=165 + Set gtmtypes("sgmnt_data",166,"name")="sgmnt_data.total_buffer_flush_tn" + Set gtmtypes("sgmnt_data",166,"off")=2048 + Set gtmtypes("sgmnt_data",166,"len")=8 + Set gtmtypes("sgmnt_data",166,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","total_buffer_flush_tn")=166 + Set gtmtypes("sgmnt_data",167,"name")="sgmnt_data.bufct_buffer_flush_tn" + Set gtmtypes("sgmnt_data",167,"off")=2056 + Set gtmtypes("sgmnt_data",167,"len")=8 + Set gtmtypes("sgmnt_data",167,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_tn")=167 + Set gtmtypes("sgmnt_data",168,"name")="sgmnt_data.bufct_buffer_flush_loop_tn" + Set gtmtypes("sgmnt_data",168,"off")=2064 + Set gtmtypes("sgmnt_data",168,"len")=8 + Set gtmtypes("sgmnt_data",168,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_loop_tn")=168 + Set gtmtypes("sgmnt_data",169,"name")="sgmnt_data.wrt_calls_tn" + Set gtmtypes("sgmnt_data",169,"off")=2072 + Set gtmtypes("sgmnt_data",169,"len")=8 + Set gtmtypes("sgmnt_data",169,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_calls_tn")=169 + Set gtmtypes("sgmnt_data",170,"name")="sgmnt_data.wrt_count_tn" + Set gtmtypes("sgmnt_data",170,"off")=2080 + Set gtmtypes("sgmnt_data",170,"len")=8 + Set gtmtypes("sgmnt_data",170,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_count_tn")=170 + Set gtmtypes("sgmnt_data",171,"name")="sgmnt_data.wrt_blocked_tn" + Set gtmtypes("sgmnt_data",171,"off")=2088 + Set gtmtypes("sgmnt_data",171,"len")=8 + Set gtmtypes("sgmnt_data",171,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_blocked_tn")=171 + Set gtmtypes("sgmnt_data",172,"name")="sgmnt_data.wrt_busy_tn" + Set gtmtypes("sgmnt_data",172,"off")=2096 + Set gtmtypes("sgmnt_data",172,"len")=8 + Set gtmtypes("sgmnt_data",172,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_busy_tn")=172 + Set gtmtypes("sgmnt_data",173,"name")="sgmnt_data.wrt_noblks_wrtn_tn" + Set gtmtypes("sgmnt_data",173,"off")=2104 + Set gtmtypes("sgmnt_data",173,"len")=8 + Set gtmtypes("sgmnt_data",173,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wrt_noblks_wrtn_tn")=173 + Set gtmtypes("sgmnt_data",174,"name")="sgmnt_data.reserved_bgtrcrec1_tn" + Set gtmtypes("sgmnt_data",174,"off")=2112 + Set gtmtypes("sgmnt_data",174,"len")=8 + Set gtmtypes("sgmnt_data",174,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec1_tn")=174 + Set gtmtypes("sgmnt_data",175,"name")="sgmnt_data.reserved_bgtrcrec2_tn" + Set gtmtypes("sgmnt_data",175,"off")=2120 + Set gtmtypes("sgmnt_data",175,"len")=8 + Set gtmtypes("sgmnt_data",175,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec2_tn")=175 + Set gtmtypes("sgmnt_data",176,"name")="sgmnt_data.reserved_bgtrcrec3_tn" + Set gtmtypes("sgmnt_data",176,"off")=2128 + Set gtmtypes("sgmnt_data",176,"len")=8 + Set gtmtypes("sgmnt_data",176,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec3_tn")=176 + Set gtmtypes("sgmnt_data",177,"name")="sgmnt_data.lost_block_recovery_tn" + Set gtmtypes("sgmnt_data",177,"off")=2136 + Set gtmtypes("sgmnt_data",177,"len")=8 + Set gtmtypes("sgmnt_data",177,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","lost_block_recovery_tn")=177 + Set gtmtypes("sgmnt_data",178,"name")="sgmnt_data.wc_blocked_onln_rlbk_tn" + Set gtmtypes("sgmnt_data",178,"off")=2144 + Set gtmtypes("sgmnt_data",178,"len")=8 + Set gtmtypes("sgmnt_data",178,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_onln_rlbk_tn")=178 + Set gtmtypes("sgmnt_data",179,"name")="sgmnt_data.stale_tn" + Set gtmtypes("sgmnt_data",179,"off")=2152 + Set gtmtypes("sgmnt_data",179,"len")=8 + Set gtmtypes("sgmnt_data",179,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_tn")=179 + Set gtmtypes("sgmnt_data",180,"name")="sgmnt_data.starved_tn" + Set gtmtypes("sgmnt_data",180,"off")=2160 + Set gtmtypes("sgmnt_data",180,"len")=8 + Set gtmtypes("sgmnt_data",180,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","starved_tn")=180 + Set gtmtypes("sgmnt_data",181,"name")="sgmnt_data.stale_timer_started_tn" + Set gtmtypes("sgmnt_data",181,"off")=2168 + Set gtmtypes("sgmnt_data",181,"len")=8 + Set gtmtypes("sgmnt_data",181,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_timer_started_tn")=181 + Set gtmtypes("sgmnt_data",182,"name")="sgmnt_data.stale_timer_pop_tn" + Set gtmtypes("sgmnt_data",182,"off")=2176 + Set gtmtypes("sgmnt_data",182,"len")=8 + Set gtmtypes("sgmnt_data",182,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_timer_pop_tn")=182 + Set gtmtypes("sgmnt_data",183,"name")="sgmnt_data.stale_process_defer_tn" + Set gtmtypes("sgmnt_data",183,"off")=2184 + Set gtmtypes("sgmnt_data",183,"len")=8 + Set gtmtypes("sgmnt_data",183,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_process_defer_tn")=183 + Set gtmtypes("sgmnt_data",184,"name")="sgmnt_data.stale_defer_processed_tn" + Set gtmtypes("sgmnt_data",184,"off")=2192 + Set gtmtypes("sgmnt_data",184,"len")=8 + Set gtmtypes("sgmnt_data",184,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","stale_defer_processed_tn")=184 + Set gtmtypes("sgmnt_data",185,"name")="sgmnt_data.spcfc_buffer_flush_tn" + Set gtmtypes("sgmnt_data",185,"off")=2200 + Set gtmtypes("sgmnt_data",185,"len")=8 + Set gtmtypes("sgmnt_data",185,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_tn")=185 + Set gtmtypes("sgmnt_data",186,"name")="sgmnt_data.spcfc_buffer_flush_loop_tn" + Set gtmtypes("sgmnt_data",186,"off")=2208 + Set gtmtypes("sgmnt_data",186,"len")=8 + Set gtmtypes("sgmnt_data",186,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_loop_tn")=186 + Set gtmtypes("sgmnt_data",187,"name")="sgmnt_data.spcfc_buffer_flush_retries_tn" + Set gtmtypes("sgmnt_data",187,"off")=2216 + Set gtmtypes("sgmnt_data",187,"len")=8 + Set gtmtypes("sgmnt_data",187,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_retries_tn")=187 + Set gtmtypes("sgmnt_data",188,"name")="sgmnt_data.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("sgmnt_data",188,"off")=2224 + Set gtmtypes("sgmnt_data",188,"len")=8 + Set gtmtypes("sgmnt_data",188,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flushed_during_lockwait_tn")=188 + Set gtmtypes("sgmnt_data",189,"name")="sgmnt_data.tp_crit_retries_tn" + Set gtmtypes("sgmnt_data",189,"off")=2232 + Set gtmtypes("sgmnt_data",189,"len")=8 + Set gtmtypes("sgmnt_data",189,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","tp_crit_retries_tn")=189 + Set gtmtypes("sgmnt_data",190,"name")="sgmnt_data.db_csh_getn_flush_dirty_tn" + Set gtmtypes("sgmnt_data",190,"off")=2240 + Set gtmtypes("sgmnt_data",190,"len")=8 + Set gtmtypes("sgmnt_data",190,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_flush_dirty_tn")=190 + Set gtmtypes("sgmnt_data",191,"name")="sgmnt_data.db_csh_getn_rip_wait_tn" + Set gtmtypes("sgmnt_data",191,"off")=2248 + Set gtmtypes("sgmnt_data",191,"len")=8 + Set gtmtypes("sgmnt_data",191,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_rip_wait_tn")=191 + Set gtmtypes("sgmnt_data",192,"name")="sgmnt_data.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("sgmnt_data",192,"off")=2256 + Set gtmtypes("sgmnt_data",192,"len")=8 + Set gtmtypes("sgmnt_data",192,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_buf_owner_stuck_tn")=192 + Set gtmtypes("sgmnt_data",193,"name")="sgmnt_data.db_csh_getn_out_of_design_tn" + Set gtmtypes("sgmnt_data",193,"off")=2264 + Set gtmtypes("sgmnt_data",193,"len")=8 + Set gtmtypes("sgmnt_data",193,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_out_of_design_tn")=193 + Set gtmtypes("sgmnt_data",194,"name")="sgmnt_data.t_qread_buf_owner_stuck_tn" + Set gtmtypes("sgmnt_data",194,"off")=2272 + Set gtmtypes("sgmnt_data",194,"len")=8 + Set gtmtypes("sgmnt_data",194,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_buf_owner_stuck_tn")=194 + Set gtmtypes("sgmnt_data",195,"name")="sgmnt_data.t_qread_out_of_design_tn" + Set gtmtypes("sgmnt_data",195,"off")=2280 + Set gtmtypes("sgmnt_data",195,"len")=8 + Set gtmtypes("sgmnt_data",195,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_out_of_design_tn")=195 + Set gtmtypes("sgmnt_data",196,"name")="sgmnt_data.bt_put_flush_dirty_tn" + Set gtmtypes("sgmnt_data",196,"off")=2288 + Set gtmtypes("sgmnt_data",196,"len")=8 + Set gtmtypes("sgmnt_data",196,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","bt_put_flush_dirty_tn")=196 + Set gtmtypes("sgmnt_data",197,"name")="sgmnt_data.mlock_wakeups_tn" + Set gtmtypes("sgmnt_data",197,"off")=2296 + Set gtmtypes("sgmnt_data",197,"len")=8 + Set gtmtypes("sgmnt_data",197,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","mlock_wakeups_tn")=197 + Set gtmtypes("sgmnt_data",198,"name")="sgmnt_data.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("sgmnt_data",198,"off")=2304 + Set gtmtypes("sgmnt_data",198,"len")=8 + Set gtmtypes("sgmnt_data",198,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_recover_invoked_tn")=198 + Set gtmtypes("sgmnt_data",199,"name")="sgmnt_data.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("sgmnt_data",199,"off")=2312 + Set gtmtypes("sgmnt_data",199,"len")=8 + Set gtmtypes("sgmnt_data",199,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_verify_passed_tn")=199 + Set gtmtypes("sgmnt_data",200,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("sgmnt_data",200,"off")=2320 + Set gtmtypes("sgmnt_data",200,"len")=8 + Set gtmtypes("sgmnt_data",200,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=200 + Set gtmtypes("sgmnt_data",201,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("sgmnt_data",201,"off")=2328 + Set gtmtypes("sgmnt_data",201,"len")=8 + Set gtmtypes("sgmnt_data",201,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=201 + Set gtmtypes("sgmnt_data",202,"name")="sgmnt_data.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("sgmnt_data",202,"off")=2336 + Set gtmtypes("sgmnt_data",202,"len")=8 + Set gtmtypes("sgmnt_data",202,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_loopexceed_tn")=202 + Set gtmtypes("sgmnt_data",203,"name")="sgmnt_data.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("sgmnt_data",203,"off")=2344 + Set gtmtypes("sgmnt_data",203,"len")=8 + Set gtmtypes("sgmnt_data",203,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_wcsstarvewrt_tn")=203 + Set gtmtypes("sgmnt_data",204,"name")="sgmnt_data.wc_blocked_db_csh_get_tn" + Set gtmtypes("sgmnt_data",204,"off")=2352 + Set gtmtypes("sgmnt_data",204,"len")=8 + Set gtmtypes("sgmnt_data",204,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_get_tn")=204 + Set gtmtypes("sgmnt_data",205,"name")="sgmnt_data.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("sgmnt_data",205,"off")=2360 + Set gtmtypes("sgmnt_data",205,"len")=8 + Set gtmtypes("sgmnt_data",205,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_wcsgetspace_tn")=205 + Set gtmtypes("sgmnt_data",206,"name")="sgmnt_data.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("sgmnt_data",206,"off")=2368 + Set gtmtypes("sgmnt_data",206,"len")=8 + Set gtmtypes("sgmnt_data",206,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_t1_tn")=206 + Set gtmtypes("sgmnt_data",207,"name")="sgmnt_data.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("sgmnt_data",207,"off")=2376 + Set gtmtypes("sgmnt_data",207,"len")=8 + Set gtmtypes("sgmnt_data",207,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_bitmap_tn")=207 + Set gtmtypes("sgmnt_data",208,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("sgmnt_data",208,"off")=2384 + Set gtmtypes("sgmnt_data",208,"len")=8 + Set gtmtypes("sgmnt_data",208,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_cwset_tn")=208 + Set gtmtypes("sgmnt_data",209,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("sgmnt_data",209,"off")=2392 + Set gtmtypes("sgmnt_data",209,"len")=8 + Set gtmtypes("sgmnt_data",209,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_wcsflu_tn")=209 + Set gtmtypes("sgmnt_data",210,"name")="sgmnt_data.wc_blocked_t_end_hist_tn" + Set gtmtypes("sgmnt_data",210,"off")=2400 + Set gtmtypes("sgmnt_data",210,"len")=8 + Set gtmtypes("sgmnt_data",210,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist_tn")=210 + Set gtmtypes("sgmnt_data",211,"name")="sgmnt_data.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("sgmnt_data",211,"off")=2408 + Set gtmtypes("sgmnt_data",211,"len")=8 + Set gtmtypes("sgmnt_data",211,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nullbt_tn")=211 + Set gtmtypes("sgmnt_data",212,"name")="sgmnt_data.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("sgmnt_data",212,"off")=2416 + Set gtmtypes("sgmnt_data",212,"len")=8 + Set gtmtypes("sgmnt_data",212,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nonnullbt_tn")=212 + Set gtmtypes("sgmnt_data",213,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("sgmnt_data",213,"off")=2424 + Set gtmtypes("sgmnt_data",213,"len")=8 + Set gtmtypes("sgmnt_data",213,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nullbt_tn")=213 + Set gtmtypes("sgmnt_data",214,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("sgmnt_data",214,"off")=2432 + Set gtmtypes("sgmnt_data",214,"len")=8 + Set gtmtypes("sgmnt_data",214,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nonnullbt_tn")=214 + Set gtmtypes("sgmnt_data",215,"name")="sgmnt_data.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("sgmnt_data",215,"off")=2440 + Set gtmtypes("sgmnt_data",215,"len")=8 + Set gtmtypes("sgmnt_data",215,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_cwset_tn")=215 + Set gtmtypes("sgmnt_data",216,"name")="sgmnt_data.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("sgmnt_data",216,"off")=2448 + Set gtmtypes("sgmnt_data",216,"len")=8 + Set gtmtypes("sgmnt_data",216,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_wcsflu_tn")=216 + Set gtmtypes("sgmnt_data",217,"name")="sgmnt_data.db_csh_get_too_many_loops_tn" + Set gtmtypes("sgmnt_data",217,"off")=2456 + Set gtmtypes("sgmnt_data",217,"len")=8 + Set gtmtypes("sgmnt_data",217,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_get_too_many_loops_tn")=217 + Set gtmtypes("sgmnt_data",218,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("sgmnt_data",218,"off")=2464 + Set gtmtypes("sgmnt_data",218,"len")=8 + Set gtmtypes("sgmnt_data",218,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nullbt_tn")=218 + Set gtmtypes("sgmnt_data",219,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("sgmnt_data",219,"off")=2472 + Set gtmtypes("sgmnt_data",219,"len")=8 + Set gtmtypes("sgmnt_data",219,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nonnullbt_tn")=219 + Set gtmtypes("sgmnt_data",220,"name")="sgmnt_data.jnl_blocked_writer_lost_tn" + Set gtmtypes("sgmnt_data",220,"off")=2480 + Set gtmtypes("sgmnt_data",220,"len")=8 + Set gtmtypes("sgmnt_data",220,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_lost_tn")=220 + Set gtmtypes("sgmnt_data",221,"name")="sgmnt_data.jnl_blocked_writer_stuck_tn" + Set gtmtypes("sgmnt_data",221,"off")=2488 + Set gtmtypes("sgmnt_data",221,"len")=8 + Set gtmtypes("sgmnt_data",221,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_stuck_tn")=221 + Set gtmtypes("sgmnt_data",222,"name")="sgmnt_data.jnl_blocked_writer_blocked_tn" + Set gtmtypes("sgmnt_data",222,"off")=2496 + Set gtmtypes("sgmnt_data",222,"len")=8 + Set gtmtypes("sgmnt_data",222,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_blocked_tn")=222 + Set gtmtypes("sgmnt_data",223,"name")="sgmnt_data.n_jnl_fsyncs_tn" + Set gtmtypes("sgmnt_data",223,"off")=2504 + Set gtmtypes("sgmnt_data",223,"len")=8 + Set gtmtypes("sgmnt_data",223,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsyncs_tn")=223 + Set gtmtypes("sgmnt_data",224,"name")="sgmnt_data.n_jnl_fsync_tries_tn" + Set gtmtypes("sgmnt_data",224,"off")=2512 + Set gtmtypes("sgmnt_data",224,"len")=8 + Set gtmtypes("sgmnt_data",224,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_tries_tn")=224 + Set gtmtypes("sgmnt_data",225,"name")="sgmnt_data.n_jnl_fsync_recovers_tn" + Set gtmtypes("sgmnt_data",225,"off")=2520 + Set gtmtypes("sgmnt_data",225,"len")=8 + Set gtmtypes("sgmnt_data",225,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_recovers_tn")=225 + Set gtmtypes("sgmnt_data",226,"name")="sgmnt_data.n_db_fsyncs_tn" + Set gtmtypes("sgmnt_data",226,"off")=2528 + Set gtmtypes("sgmnt_data",226,"len")=8 + Set gtmtypes("sgmnt_data",226,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_tn")=226 + Set gtmtypes("sgmnt_data",227,"name")="sgmnt_data.n_db_fsyncs_in_crit_tn" + Set gtmtypes("sgmnt_data",227,"off")=2536 + Set gtmtypes("sgmnt_data",227,"len")=8 + Set gtmtypes("sgmnt_data",227,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_in_crit_tn")=227 + Set gtmtypes("sgmnt_data",228,"name")="sgmnt_data.n_dbsync_timers_tn" + Set gtmtypes("sgmnt_data",228,"off")=2544 + Set gtmtypes("sgmnt_data",228,"len")=8 + Set gtmtypes("sgmnt_data",228,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_dbsync_timers_tn")=228 + Set gtmtypes("sgmnt_data",229,"name")="sgmnt_data.n_dbsync_writes_tn" + Set gtmtypes("sgmnt_data",229,"off")=2552 + Set gtmtypes("sgmnt_data",229,"len")=8 + Set gtmtypes("sgmnt_data",229,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","n_dbsync_writes_tn")=229 + Set gtmtypes("sgmnt_data",230,"name")="sgmnt_data.mutex_queue_full_tn" + Set gtmtypes("sgmnt_data",230,"off")=2560 + Set gtmtypes("sgmnt_data",230,"len")=8 + Set gtmtypes("sgmnt_data",230,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","mutex_queue_full_tn")=230 + Set gtmtypes("sgmnt_data",231,"name")="sgmnt_data.wcb_bt_put_tn" + Set gtmtypes("sgmnt_data",231,"off")=2568 + Set gtmtypes("sgmnt_data",231,"len")=8 + Set gtmtypes("sgmnt_data",231,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bt_put_tn")=231 + Set gtmtypes("sgmnt_data",232,"name")="sgmnt_data.wcb_mutex_salvage_tn" + Set gtmtypes("sgmnt_data",232,"off")=2576 + Set gtmtypes("sgmnt_data",232,"len")=8 + Set gtmtypes("sgmnt_data",232,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_mutex_salvage_tn")=232 + Set gtmtypes("sgmnt_data",233,"name")="sgmnt_data.wcb_tp_grab_crit_tn" + Set gtmtypes("sgmnt_data",233,"off")=2584 + Set gtmtypes("sgmnt_data",233,"len")=8 + Set gtmtypes("sgmnt_data",233,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_tp_grab_crit_tn")=233 + Set gtmtypes("sgmnt_data",234,"name")="sgmnt_data.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("sgmnt_data",234,"off")=2592 + Set gtmtypes("sgmnt_data",234,"len")=8 + Set gtmtypes("sgmnt_data",234,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_nocr_invcr_tn")=234 + Set gtmtypes("sgmnt_data",235,"name")="sgmnt_data.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("sgmnt_data",235,"off")=2600 + Set gtmtypes("sgmnt_data",235,"len")=8 + Set gtmtypes("sgmnt_data",235,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_cr_invcr_tn")=235 + Set gtmtypes("sgmnt_data",236,"name")="sgmnt_data.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("sgmnt_data",236,"off")=2608 + Set gtmtypes("sgmnt_data",236,"len")=8 + Set gtmtypes("sgmnt_data",236,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_rip_wait_tn")=236 + Set gtmtypes("sgmnt_data",237,"name")="sgmnt_data.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("sgmnt_data",237,"off")=2616 + Set gtmtypes("sgmnt_data",237,"len")=8 + Set gtmtypes("sgmnt_data",237,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtyripwait_tn")=237 + Set gtmtypes("sgmnt_data",238,"name")="sgmnt_data.wcb_gds_rundown_tn" + Set gtmtypes("sgmnt_data",238,"off")=2624 + Set gtmtypes("sgmnt_data",238,"len")=8 + Set gtmtypes("sgmnt_data",238,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_gds_rundown_tn")=238 + Set gtmtypes("sgmnt_data",239,"name")="sgmnt_data.wcb_wcs_flu1_tn" + Set gtmtypes("sgmnt_data",239,"off")=2632 + Set gtmtypes("sgmnt_data",239,"len")=8 + Set gtmtypes("sgmnt_data",239,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wcs_flu1_tn")=239 + Set gtmtypes("sgmnt_data",240,"name")="sgmnt_data.wcb_mu_back_tn" + Set gtmtypes("sgmnt_data",240,"off")=2640 + Set gtmtypes("sgmnt_data",240,"len")=8 + Set gtmtypes("sgmnt_data",240,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_mu_back_tn")=240 + Set gtmtypes("sgmnt_data",241,"name")="sgmnt_data.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("sgmnt_data",241,"off")=2648 + Set gtmtypes("sgmnt_data",241,"len")=8 + Set gtmtypes("sgmnt_data",241,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirty_invcr_tn")=241 + Set gtmtypes("sgmnt_data",242,"name")="sgmnt_data.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("sgmnt_data",242,"off")=2656 + Set gtmtypes("sgmnt_data",242,"len")=8 + Set gtmtypes("sgmnt_data",242,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_wtfini_fail_tn")=242 + Set gtmtypes("sgmnt_data",243,"name")="sgmnt_data.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("sgmnt_data",243,"off")=2664 + Set gtmtypes("sgmnt_data",243,"len")=8 + Set gtmtypes("sgmnt_data",243,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_twin_stuck_tn")=243 + Set gtmtypes("sgmnt_data",244,"name")="sgmnt_data.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("sgmnt_data",244,"off")=2672 + Set gtmtypes("sgmnt_data",244,"len")=8 + Set gtmtypes("sgmnt_data",244,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_wrt_latch_stuck_tn")=244 + Set gtmtypes("sgmnt_data",245,"name")="sgmnt_data.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("sgmnt_data",245,"off")=2680 + Set gtmtypes("sgmnt_data",245,"len")=8 + Set gtmtypes("sgmnt_data",245,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_now_crit_tn")=245 + Set gtmtypes("sgmnt_data",246,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("sgmnt_data",246,"off")=2688 + Set gtmtypes("sgmnt_data",246,"len")=8 + Set gtmtypes("sgmnt_data",246,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index1_tn")=246 + Set gtmtypes("sgmnt_data",247,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("sgmnt_data",247,"off")=2696 + Set gtmtypes("sgmnt_data",247,"len")=8 + Set gtmtypes("sgmnt_data",247,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index2_tn")=247 + Set gtmtypes("sgmnt_data",248,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("sgmnt_data",248,"off")=2704 + Set gtmtypes("sgmnt_data",248,"len")=8 + Set gtmtypes("sgmnt_data",248,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch1_tn")=248 + Set gtmtypes("sgmnt_data",249,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("sgmnt_data",249,"off")=2712 + Set gtmtypes("sgmnt_data",249,"len")=8 + Set gtmtypes("sgmnt_data",249,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch2_tn")=249 + Set gtmtypes("sgmnt_data",250,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("sgmnt_data",250,"off")=2720 + Set gtmtypes("sgmnt_data",250,"len")=8 + Set gtmtypes("sgmnt_data",250,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch3_tn")=250 + Set gtmtypes("sgmnt_data",251,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("sgmnt_data",251,"off")=2728 + Set gtmtypes("sgmnt_data",251,"len")=8 + Set gtmtypes("sgmnt_data",251,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch1_tn")=251 + Set gtmtypes("sgmnt_data",252,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("sgmnt_data",252,"off")=2736 + Set gtmtypes("sgmnt_data",252,"len")=8 + Set gtmtypes("sgmnt_data",252,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch2_tn")=252 + Set gtmtypes("sgmnt_data",253,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("sgmnt_data",253,"off")=2744 + Set gtmtypes("sgmnt_data",253,"len")=8 + Set gtmtypes("sgmnt_data",253,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch3_tn")=253 + Set gtmtypes("sgmnt_data",254,"name")="sgmnt_data.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("sgmnt_data",254,"off")=2752 + Set gtmtypes("sgmnt_data",254,"len")=8 + Set gtmtypes("sgmnt_data",254,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtstart_bad_cr_tn")=254 + Set gtmtypes("sgmnt_data",255,"name")="sgmnt_data.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("sgmnt_data",255,"off")=2760 + Set gtmtypes("sgmnt_data",255,"len")=8 + Set gtmtypes("sgmnt_data",255,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtfini_bad_cr_tn")=255 + Set gtmtypes("sgmnt_data",256,"name")="sgmnt_data.wc_blocked_bt_get_tn" + Set gtmtypes("sgmnt_data",256,"off")=2768 + Set gtmtypes("sgmnt_data",256,"len")=8 + Set gtmtypes("sgmnt_data",256,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_bt_get_tn")=256 + Set gtmtypes("sgmnt_data",257,"name")="sgmnt_data.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("sgmnt_data",257,"off")=2776 + Set gtmtypes("sgmnt_data",257,"len")=8 + Set gtmtypes("sgmnt_data",257,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_cdb_sc_final_retry_tn")=257 + Set gtmtypes("sgmnt_data",258,"name")="sgmnt_data.wcb_bg_update_lckfail1_tn" + Set gtmtypes("sgmnt_data",258,"off")=2784 + Set gtmtypes("sgmnt_data",258,"len")=8 + Set gtmtypes("sgmnt_data",258,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail1_tn")=258 + Set gtmtypes("sgmnt_data",259,"name")="sgmnt_data.wcb_bg_update_lckfail2_tn" + Set gtmtypes("sgmnt_data",259,"off")=2792 + Set gtmtypes("sgmnt_data",259,"len")=8 + Set gtmtypes("sgmnt_data",259,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail2_tn")=259 + Set gtmtypes("sgmnt_data",260,"name")="sgmnt_data.wcb_wtstart_lckfail1_tn" + Set gtmtypes("sgmnt_data",260,"off")=2800 + Set gtmtypes("sgmnt_data",260,"len")=8 + Set gtmtypes("sgmnt_data",260,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail1_tn")=260 + Set gtmtypes("sgmnt_data",261,"name")="sgmnt_data.wcb_wtstart_lckfail2_tn" + Set gtmtypes("sgmnt_data",261,"off")=2808 + Set gtmtypes("sgmnt_data",261,"len")=8 + Set gtmtypes("sgmnt_data",261,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail2_tn")=261 + Set gtmtypes("sgmnt_data",262,"name")="sgmnt_data.wcb_wtstart_lckfail3_tn" + Set gtmtypes("sgmnt_data",262,"off")=2816 + Set gtmtypes("sgmnt_data",262,"len")=8 + Set gtmtypes("sgmnt_data",262,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail3_tn")=262 + Set gtmtypes("sgmnt_data",263,"name")="sgmnt_data.wcb_wtstart_lckfail4_tn" + Set gtmtypes("sgmnt_data",263,"off")=2824 + Set gtmtypes("sgmnt_data",263,"len")=8 + Set gtmtypes("sgmnt_data",263,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail4_tn")=263 + Set gtmtypes("sgmnt_data",264,"name")="sgmnt_data.wcb_wtfini_lckfail1_tn" + Set gtmtypes("sgmnt_data",264,"off")=2832 + Set gtmtypes("sgmnt_data",264,"len")=8 + Set gtmtypes("sgmnt_data",264,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail1_tn")=264 + Set gtmtypes("sgmnt_data",265,"name")="sgmnt_data.wcb_wtfini_lckfail2_tn" + Set gtmtypes("sgmnt_data",265,"off")=2840 + Set gtmtypes("sgmnt_data",265,"len")=8 + Set gtmtypes("sgmnt_data",265,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail2_tn")=265 + Set gtmtypes("sgmnt_data",266,"name")="sgmnt_data.wcb_wtfini_lckfail3_tn" + Set gtmtypes("sgmnt_data",266,"off")=2848 + Set gtmtypes("sgmnt_data",266,"len")=8 + Set gtmtypes("sgmnt_data",266,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail3_tn")=266 + Set gtmtypes("sgmnt_data",267,"name")="sgmnt_data.wcb_wtfini_lckfail4_tn" + Set gtmtypes("sgmnt_data",267,"off")=2856 + Set gtmtypes("sgmnt_data",267,"len")=8 + Set gtmtypes("sgmnt_data",267,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail4_tn")=267 + Set gtmtypes("sgmnt_data",268,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("sgmnt_data",268,"off")=2864 + Set gtmtypes("sgmnt_data",268,"len")=8 + Set gtmtypes("sgmnt_data",268,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck1_tn")=268 + Set gtmtypes("sgmnt_data",269,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("sgmnt_data",269,"off")=2872 + Set gtmtypes("sgmnt_data",269,"len")=8 + Set gtmtypes("sgmnt_data",269,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck2_tn")=269 + Set gtmtypes("sgmnt_data",270,"name")="sgmnt_data.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("sgmnt_data",270,"off")=2880 + Set gtmtypes("sgmnt_data",270,"len")=8 + Set gtmtypes("sgmnt_data",270,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_wbuf_dqd_tn")=270 + Set gtmtypes("sgmnt_data",271,"name")="sgmnt_data.dwngrd_refmts_syncio_tn" + Set gtmtypes("sgmnt_data",271,"off")=2888 + Set gtmtypes("sgmnt_data",271,"len")=8 + Set gtmtypes("sgmnt_data",271,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_syncio_tn")=271 + Set gtmtypes("sgmnt_data",272,"name")="sgmnt_data.dwngrd_refmts_asyncio_tn" + Set gtmtypes("sgmnt_data",272,"off")=2896 + Set gtmtypes("sgmnt_data",272,"len")=8 + Set gtmtypes("sgmnt_data",272,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_asyncio_tn")=272 + Set gtmtypes("sgmnt_data",273,"name")="sgmnt_data.shmpool_refmt_harvests_tn" + Set gtmtypes("sgmnt_data",273,"off")=2904 + Set gtmtypes("sgmnt_data",273,"len")=8 + Set gtmtypes("sgmnt_data",273,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_refmt_harvests_tn")=273 + Set gtmtypes("sgmnt_data",274,"name")="sgmnt_data.shmpool_recovery_tn" + Set gtmtypes("sgmnt_data",274,"off")=2912 + Set gtmtypes("sgmnt_data",274,"len")=8 + Set gtmtypes("sgmnt_data",274,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_recovery_tn")=274 + Set gtmtypes("sgmnt_data",275,"name")="sgmnt_data.shmpool_blkd_by_sdc_tn" + Set gtmtypes("sgmnt_data",275,"off")=2920 + Set gtmtypes("sgmnt_data",275,"len")=8 + Set gtmtypes("sgmnt_data",275,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_blkd_by_sdc_tn")=275 + Set gtmtypes("sgmnt_data",276,"name")="sgmnt_data.shmpool_alloc_bbflush_tn" + Set gtmtypes("sgmnt_data",276,"off")=2928 + Set gtmtypes("sgmnt_data",276,"len")=8 + Set gtmtypes("sgmnt_data",276,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","shmpool_alloc_bbflush_tn")=276 + Set gtmtypes("sgmnt_data",277,"name")="sgmnt_data.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("sgmnt_data",277,"off")=2936 + Set gtmtypes("sgmnt_data",277,"len")=8 + Set gtmtypes("sgmnt_data",277,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_replaced_tn")=277 + Set gtmtypes("sgmnt_data",278,"name")="sgmnt_data.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("sgmnt_data",278,"off")=2944 + Set gtmtypes("sgmnt_data",278,"len")=8 + Set gtmtypes("sgmnt_data",278,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_io_complete_tn")=278 + Set gtmtypes("sgmnt_data",279,"name")="sgmnt_data.refmt_hvst_blk_kept_tn" + Set gtmtypes("sgmnt_data",279,"off")=2952 + Set gtmtypes("sgmnt_data",279,"len")=8 + Set gtmtypes("sgmnt_data",279,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_kept_tn")=279 + Set gtmtypes("sgmnt_data",280,"name")="sgmnt_data.refmt_hvst_blk_ignored_tn" + Set gtmtypes("sgmnt_data",280,"off")=2960 + Set gtmtypes("sgmnt_data",280,"len")=8 + Set gtmtypes("sgmnt_data",280,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_ignored_tn")=280 + Set gtmtypes("sgmnt_data",281,"name")="sgmnt_data.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("sgmnt_data",281,"off")=2968 + Set gtmtypes("sgmnt_data",281,"len")=8 + Set gtmtypes("sgmnt_data",281,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_freed_tn")=281 + Set gtmtypes("sgmnt_data",282,"name")="sgmnt_data.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("sgmnt_data",282,"off")=2976 + Set gtmtypes("sgmnt_data",282,"len")=8 + Set gtmtypes("sgmnt_data",282,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_kept_tn")=282 + Set gtmtypes("sgmnt_data",283,"name")="sgmnt_data.active_lvl_trigger_tn" + Set gtmtypes("sgmnt_data",283,"off")=2984 + Set gtmtypes("sgmnt_data",283,"len")=8 + Set gtmtypes("sgmnt_data",283,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","active_lvl_trigger_tn")=283 + Set gtmtypes("sgmnt_data",284,"name")="sgmnt_data.new_buff_tn" + Set gtmtypes("sgmnt_data",284,"off")=2992 + Set gtmtypes("sgmnt_data",284,"len")=8 + Set gtmtypes("sgmnt_data",284,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","new_buff_tn")=284 + Set gtmtypes("sgmnt_data",285,"name")="sgmnt_data.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("sgmnt_data",285,"off")=3000 + Set gtmtypes("sgmnt_data",285,"len")=8 + Set gtmtypes("sgmnt_data",285,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_in_crit_tn")=285 + Set gtmtypes("sgmnt_data",286,"name")="sgmnt_data.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("sgmnt_data",286,"off")=3008 + Set gtmtypes("sgmnt_data",286,"len")=8 + Set gtmtypes("sgmnt_data",286,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_no_crit_tn")=286 + Set gtmtypes("sgmnt_data",287,"name")="sgmnt_data.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("sgmnt_data",287,"off")=3016 + Set gtmtypes("sgmnt_data",287,"len")=8 + Set gtmtypes("sgmnt_data",287,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_pidcnt_tn")=287 + Set gtmtypes("sgmnt_data",288,"name")="sgmnt_data.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("sgmnt_data",288,"off")=3024 + Set gtmtypes("sgmnt_data",288,"len")=8 + Set gtmtypes("sgmnt_data",288,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_intend_wait_tn")=288 + Set gtmtypes("sgmnt_data",289,"name")="sgmnt_data.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("sgmnt_data",289,"off")=3032 + Set gtmtypes("sgmnt_data",289,"len")=8 + Set gtmtypes("sgmnt_data",289,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_phase2_clnup_tn")=289 + Set gtmtypes("sgmnt_data",290,"name")="sgmnt_data.wcb_phase2_commit_wait_tn" + Set gtmtypes("sgmnt_data",290,"off")=3040 + Set gtmtypes("sgmnt_data",290,"len")=8 + Set gtmtypes("sgmnt_data",290,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","wcb_phase2_commit_wait_tn")=290 + Set gtmtypes("sgmnt_data",291,"name")="sgmnt_data.recompute_upd_array_calls_tn" + Set gtmtypes("sgmnt_data",291,"off")=3048 + Set gtmtypes("sgmnt_data",291,"len")=8 + Set gtmtypes("sgmnt_data",291,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_calls_tn")=291 + Set gtmtypes("sgmnt_data",292,"name")="sgmnt_data.recompute_upd_array_rip_tn" + Set gtmtypes("sgmnt_data",292,"off")=3056 + Set gtmtypes("sgmnt_data",292,"len")=8 + Set gtmtypes("sgmnt_data",292,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rip_tn")=292 + Set gtmtypes("sgmnt_data",293,"name")="sgmnt_data.recompute_upd_array_in_tend_tn" + Set gtmtypes("sgmnt_data",293,"off")=3064 + Set gtmtypes("sgmnt_data",293,"len")=8 + Set gtmtypes("sgmnt_data",293,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_in_tend_tn")=293 + Set gtmtypes("sgmnt_data",294,"name")="sgmnt_data.recompute_upd_array_search_blk_tn" + Set gtmtypes("sgmnt_data",294,"off")=3072 + Set gtmtypes("sgmnt_data",294,"len")=8 + Set gtmtypes("sgmnt_data",294,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_search_blk_tn")=294 + Set gtmtypes("sgmnt_data",295,"name")="sgmnt_data.recompute_upd_array_new_rec_tn" + Set gtmtypes("sgmnt_data",295,"off")=3080 + Set gtmtypes("sgmnt_data",295,"len")=8 + Set gtmtypes("sgmnt_data",295,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_new_rec_tn")=295 + Set gtmtypes("sgmnt_data",296,"name")="sgmnt_data.recompute_upd_array_rec_size_tn" + Set gtmtypes("sgmnt_data",296,"off")=3088 + Set gtmtypes("sgmnt_data",296,"len")=8 + Set gtmtypes("sgmnt_data",296,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_size_tn")=296 + Set gtmtypes("sgmnt_data",297,"name")="sgmnt_data.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("sgmnt_data",297,"off")=3096 + Set gtmtypes("sgmnt_data",297,"len")=8 + Set gtmtypes("sgmnt_data",297,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_cmpc_tn")=297 + Set gtmtypes("sgmnt_data",298,"name")="sgmnt_data.recompute_upd_array_blk_fini_tn" + Set gtmtypes("sgmnt_data",298,"off")=3104 + Set gtmtypes("sgmnt_data",298,"len")=8 + Set gtmtypes("sgmnt_data",298,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_fini_tn")=298 + Set gtmtypes("sgmnt_data",299,"name")="sgmnt_data.recompute_upd_array_blk_split_tn" + Set gtmtypes("sgmnt_data",299,"off")=3112 + Set gtmtypes("sgmnt_data",299,"len")=8 + Set gtmtypes("sgmnt_data",299,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_split_tn")=299 + Set gtmtypes("sgmnt_data",300,"name")="sgmnt_data.t_qread_ripsleep_cnt_tn" + Set gtmtypes("sgmnt_data",300,"off")=3120 + Set gtmtypes("sgmnt_data",300,"len")=8 + Set gtmtypes("sgmnt_data",300,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_cnt_tn")=300 + Set gtmtypes("sgmnt_data",301,"name")="sgmnt_data.t_qread_ripsleep_nblks_tn" + Set gtmtypes("sgmnt_data",301,"off")=3128 + Set gtmtypes("sgmnt_data",301,"len")=8 + Set gtmtypes("sgmnt_data",301,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_nblks_tn")=301 + Set gtmtypes("sgmnt_data",302,"name")="sgmnt_data.bg_trc_rec_tn_filler" + Set gtmtypes("sgmnt_data",302,"off")=3136 + Set gtmtypes("sgmnt_data",302,"len")=112 + Set gtmtypes("sgmnt_data",302,"type")="char" + Set gtmtypfldindx("sgmnt_data","bg_trc_rec_tn_filler")=302 + Set gtmtypes("sgmnt_data",303,"name")="sgmnt_data.total_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",303,"off")=3248 + Set gtmtypes("sgmnt_data",303,"len")=4 + Set gtmtypes("sgmnt_data",303,"type")="int" + Set gtmtypfldindx("sgmnt_data","total_buffer_flush_cntr")=303 + Set gtmtypes("sgmnt_data",304,"name")="sgmnt_data.bufct_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",304,"off")=3252 + Set gtmtypes("sgmnt_data",304,"len")=4 + Set gtmtypes("sgmnt_data",304,"type")="int" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_cntr")=304 + Set gtmtypes("sgmnt_data",305,"name")="sgmnt_data.bufct_buffer_flush_loop_cntr" + Set gtmtypes("sgmnt_data",305,"off")=3256 + Set gtmtypes("sgmnt_data",305,"len")=4 + Set gtmtypes("sgmnt_data",305,"type")="int" + Set gtmtypfldindx("sgmnt_data","bufct_buffer_flush_loop_cntr")=305 + Set gtmtypes("sgmnt_data",306,"name")="sgmnt_data.wrt_calls_cntr" + Set gtmtypes("sgmnt_data",306,"off")=3260 + Set gtmtypes("sgmnt_data",306,"len")=4 + Set gtmtypes("sgmnt_data",306,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_calls_cntr")=306 + Set gtmtypes("sgmnt_data",307,"name")="sgmnt_data.wrt_count_cntr" + Set gtmtypes("sgmnt_data",307,"off")=3264 + Set gtmtypes("sgmnt_data",307,"len")=4 + Set gtmtypes("sgmnt_data",307,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_count_cntr")=307 + Set gtmtypes("sgmnt_data",308,"name")="sgmnt_data.wrt_blocked_cntr" + Set gtmtypes("sgmnt_data",308,"off")=3268 + Set gtmtypes("sgmnt_data",308,"len")=4 + Set gtmtypes("sgmnt_data",308,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_blocked_cntr")=308 + Set gtmtypes("sgmnt_data",309,"name")="sgmnt_data.wrt_busy_cntr" + Set gtmtypes("sgmnt_data",309,"off")=3272 + Set gtmtypes("sgmnt_data",309,"len")=4 + Set gtmtypes("sgmnt_data",309,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_busy_cntr")=309 + Set gtmtypes("sgmnt_data",310,"name")="sgmnt_data.wrt_noblks_wrtn_cntr" + Set gtmtypes("sgmnt_data",310,"off")=3276 + Set gtmtypes("sgmnt_data",310,"len")=4 + Set gtmtypes("sgmnt_data",310,"type")="int" + Set gtmtypfldindx("sgmnt_data","wrt_noblks_wrtn_cntr")=310 + Set gtmtypes("sgmnt_data",311,"name")="sgmnt_data.reserved_bgtrcrec1_cntr" + Set gtmtypes("sgmnt_data",311,"off")=3280 + Set gtmtypes("sgmnt_data",311,"len")=4 + Set gtmtypes("sgmnt_data",311,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec1_cntr")=311 + Set gtmtypes("sgmnt_data",312,"name")="sgmnt_data.reserved_bgtrcrec2_cntr" + Set gtmtypes("sgmnt_data",312,"off")=3284 + Set gtmtypes("sgmnt_data",312,"len")=4 + Set gtmtypes("sgmnt_data",312,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec2_cntr")=312 + Set gtmtypes("sgmnt_data",313,"name")="sgmnt_data.reserved_bgtrcrec3_cntr" + Set gtmtypes("sgmnt_data",313,"off")=3288 + Set gtmtypes("sgmnt_data",313,"len")=4 + Set gtmtypes("sgmnt_data",313,"type")="int" + Set gtmtypfldindx("sgmnt_data","reserved_bgtrcrec3_cntr")=313 + Set gtmtypes("sgmnt_data",314,"name")="sgmnt_data.lost_block_recovery_cntr" + Set gtmtypes("sgmnt_data",314,"off")=3292 + Set gtmtypes("sgmnt_data",314,"len")=4 + Set gtmtypes("sgmnt_data",314,"type")="int" + Set gtmtypfldindx("sgmnt_data","lost_block_recovery_cntr")=314 + Set gtmtypes("sgmnt_data",315,"name")="sgmnt_data.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("sgmnt_data",315,"off")=3296 + Set gtmtypes("sgmnt_data",315,"len")=4 + Set gtmtypes("sgmnt_data",315,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_onln_rlbk_cntr")=315 + Set gtmtypes("sgmnt_data",316,"name")="sgmnt_data.stale_cntr" + Set gtmtypes("sgmnt_data",316,"off")=3300 + Set gtmtypes("sgmnt_data",316,"len")=4 + Set gtmtypes("sgmnt_data",316,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_cntr")=316 + Set gtmtypes("sgmnt_data",317,"name")="sgmnt_data.starved_cntr" + Set gtmtypes("sgmnt_data",317,"off")=3304 + Set gtmtypes("sgmnt_data",317,"len")=4 + Set gtmtypes("sgmnt_data",317,"type")="int" + Set gtmtypfldindx("sgmnt_data","starved_cntr")=317 + Set gtmtypes("sgmnt_data",318,"name")="sgmnt_data.stale_timer_started_cntr" + Set gtmtypes("sgmnt_data",318,"off")=3308 + Set gtmtypes("sgmnt_data",318,"len")=4 + Set gtmtypes("sgmnt_data",318,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_timer_started_cntr")=318 + Set gtmtypes("sgmnt_data",319,"name")="sgmnt_data.stale_timer_pop_cntr" + Set gtmtypes("sgmnt_data",319,"off")=3312 + Set gtmtypes("sgmnt_data",319,"len")=4 + Set gtmtypes("sgmnt_data",319,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_timer_pop_cntr")=319 + Set gtmtypes("sgmnt_data",320,"name")="sgmnt_data.stale_process_defer_cntr" + Set gtmtypes("sgmnt_data",320,"off")=3316 + Set gtmtypes("sgmnt_data",320,"len")=4 + Set gtmtypes("sgmnt_data",320,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_process_defer_cntr")=320 + Set gtmtypes("sgmnt_data",321,"name")="sgmnt_data.stale_defer_processed_cntr" + Set gtmtypes("sgmnt_data",321,"off")=3320 + Set gtmtypes("sgmnt_data",321,"len")=4 + Set gtmtypes("sgmnt_data",321,"type")="int" + Set gtmtypfldindx("sgmnt_data","stale_defer_processed_cntr")=321 + Set gtmtypes("sgmnt_data",322,"name")="sgmnt_data.spcfc_buffer_flush_cntr" + Set gtmtypes("sgmnt_data",322,"off")=3324 + Set gtmtypes("sgmnt_data",322,"len")=4 + Set gtmtypes("sgmnt_data",322,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_cntr")=322 + Set gtmtypes("sgmnt_data",323,"name")="sgmnt_data.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("sgmnt_data",323,"off")=3328 + Set gtmtypes("sgmnt_data",323,"len")=4 + Set gtmtypes("sgmnt_data",323,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_loop_cntr")=323 + Set gtmtypes("sgmnt_data",324,"name")="sgmnt_data.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("sgmnt_data",324,"off")=3332 + Set gtmtypes("sgmnt_data",324,"len")=4 + Set gtmtypes("sgmnt_data",324,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flush_retries_cntr")=324 + Set gtmtypes("sgmnt_data",325,"name")="sgmnt_data.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("sgmnt_data",325,"off")=3336 + Set gtmtypes("sgmnt_data",325,"len")=4 + Set gtmtypes("sgmnt_data",325,"type")="int" + Set gtmtypfldindx("sgmnt_data","spcfc_buffer_flushed_during_lockwait_cntr")=325 + Set gtmtypes("sgmnt_data",326,"name")="sgmnt_data.tp_crit_retries_cntr" + Set gtmtypes("sgmnt_data",326,"off")=3340 + Set gtmtypes("sgmnt_data",326,"len")=4 + Set gtmtypes("sgmnt_data",326,"type")="int" + Set gtmtypfldindx("sgmnt_data","tp_crit_retries_cntr")=326 + Set gtmtypes("sgmnt_data",327,"name")="sgmnt_data.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("sgmnt_data",327,"off")=3344 + Set gtmtypes("sgmnt_data",327,"len")=4 + Set gtmtypes("sgmnt_data",327,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_flush_dirty_cntr")=327 + Set gtmtypes("sgmnt_data",328,"name")="sgmnt_data.db_csh_getn_rip_wait_cntr" + Set gtmtypes("sgmnt_data",328,"off")=3348 + Set gtmtypes("sgmnt_data",328,"len")=4 + Set gtmtypes("sgmnt_data",328,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_rip_wait_cntr")=328 + Set gtmtypes("sgmnt_data",329,"name")="sgmnt_data.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("sgmnt_data",329,"off")=3352 + Set gtmtypes("sgmnt_data",329,"len")=4 + Set gtmtypes("sgmnt_data",329,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_buf_owner_stuck_cntr")=329 + Set gtmtypes("sgmnt_data",330,"name")="sgmnt_data.db_csh_getn_out_of_design_cntr" + Set gtmtypes("sgmnt_data",330,"off")=3356 + Set gtmtypes("sgmnt_data",330,"len")=4 + Set gtmtypes("sgmnt_data",330,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_out_of_design_cntr")=330 + Set gtmtypes("sgmnt_data",331,"name")="sgmnt_data.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("sgmnt_data",331,"off")=3360 + Set gtmtypes("sgmnt_data",331,"len")=4 + Set gtmtypes("sgmnt_data",331,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_buf_owner_stuck_cntr")=331 + Set gtmtypes("sgmnt_data",332,"name")="sgmnt_data.t_qread_out_of_design_cntr" + Set gtmtypes("sgmnt_data",332,"off")=3364 + Set gtmtypes("sgmnt_data",332,"len")=4 + Set gtmtypes("sgmnt_data",332,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_out_of_design_cntr")=332 + Set gtmtypes("sgmnt_data",333,"name")="sgmnt_data.bt_put_flush_dirty_cntr" + Set gtmtypes("sgmnt_data",333,"off")=3368 + Set gtmtypes("sgmnt_data",333,"len")=4 + Set gtmtypes("sgmnt_data",333,"type")="int" + Set gtmtypfldindx("sgmnt_data","bt_put_flush_dirty_cntr")=333 + Set gtmtypes("sgmnt_data",334,"name")="sgmnt_data.mlock_wakeups_cntr" + Set gtmtypes("sgmnt_data",334,"off")=3372 + Set gtmtypes("sgmnt_data",334,"len")=4 + Set gtmtypes("sgmnt_data",334,"type")="int" + Set gtmtypfldindx("sgmnt_data","mlock_wakeups_cntr")=334 + Set gtmtypes("sgmnt_data",335,"name")="sgmnt_data.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("sgmnt_data",335,"off")=3376 + Set gtmtypes("sgmnt_data",335,"len")=4 + Set gtmtypes("sgmnt_data",335,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_recover_invoked_cntr")=335 + Set gtmtypes("sgmnt_data",336,"name")="sgmnt_data.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("sgmnt_data",336,"off")=3380 + Set gtmtypes("sgmnt_data",336,"len")=4 + Set gtmtypes("sgmnt_data",336,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_verify_passed_cntr")=336 + Set gtmtypes("sgmnt_data",337,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("sgmnt_data",337,"off")=3384 + Set gtmtypes("sgmnt_data",337,"len")=4 + Set gtmtypes("sgmnt_data",337,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=337 + Set gtmtypes("sgmnt_data",338,"name")="sgmnt_data.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("sgmnt_data",338,"off")=3388 + Set gtmtypes("sgmnt_data",338,"len")=4 + Set gtmtypes("sgmnt_data",338,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=338 + Set gtmtypes("sgmnt_data",339,"name")="sgmnt_data.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("sgmnt_data",339,"off")=3392 + Set gtmtypes("sgmnt_data",339,"len")=4 + Set gtmtypes("sgmnt_data",339,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_loopexceed_cntr")=339 + Set gtmtypes("sgmnt_data",340,"name")="sgmnt_data.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("sgmnt_data",340,"off")=3396 + Set gtmtypes("sgmnt_data",340,"len")=4 + Set gtmtypes("sgmnt_data",340,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=340 + Set gtmtypes("sgmnt_data",341,"name")="sgmnt_data.wc_blocked_db_csh_get_cntr" + Set gtmtypes("sgmnt_data",341,"off")=3400 + Set gtmtypes("sgmnt_data",341,"len")=4 + Set gtmtypes("sgmnt_data",341,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_db_csh_get_cntr")=341 + Set gtmtypes("sgmnt_data",342,"name")="sgmnt_data.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("sgmnt_data",342,"off")=3404 + Set gtmtypes("sgmnt_data",342,"len")=4 + Set gtmtypes("sgmnt_data",342,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_wcsgetspace_cntr")=342 + Set gtmtypes("sgmnt_data",343,"name")="sgmnt_data.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("sgmnt_data",343,"off")=3408 + Set gtmtypes("sgmnt_data",343,"len")=4 + Set gtmtypes("sgmnt_data",343,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_t1_cntr")=343 + Set gtmtypes("sgmnt_data",344,"name")="sgmnt_data.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("sgmnt_data",344,"off")=3412 + Set gtmtypes("sgmnt_data",344,"len")=4 + Set gtmtypes("sgmnt_data",344,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_bitmap_cntr")=344 + Set gtmtypes("sgmnt_data",345,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("sgmnt_data",345,"off")=3416 + Set gtmtypes("sgmnt_data",345,"len")=4 + Set gtmtypes("sgmnt_data",345,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_cwset_cntr")=345 + Set gtmtypes("sgmnt_data",346,"name")="sgmnt_data.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("sgmnt_data",346,"off")=3420 + Set gtmtypes("sgmnt_data",346,"len")=4 + Set gtmtypes("sgmnt_data",346,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_jnl_wcsflu_cntr")=346 + Set gtmtypes("sgmnt_data",347,"name")="sgmnt_data.wc_blocked_t_end_hist_cntr" + Set gtmtypes("sgmnt_data",347,"off")=3424 + Set gtmtypes("sgmnt_data",347,"len")=4 + Set gtmtypes("sgmnt_data",347,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist_cntr")=347 + Set gtmtypes("sgmnt_data",348,"name")="sgmnt_data.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("sgmnt_data",348,"off")=3428 + Set gtmtypes("sgmnt_data",348,"len")=4 + Set gtmtypes("sgmnt_data",348,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nullbt_cntr")=348 + Set gtmtypes("sgmnt_data",349,"name")="sgmnt_data.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",349,"off")=3432 + Set gtmtypes("sgmnt_data",349,"len")=4 + Set gtmtypes("sgmnt_data",349,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_hist1_nonnullbt_cntr")=349 + Set gtmtypes("sgmnt_data",350,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("sgmnt_data",350,"off")=3436 + Set gtmtypes("sgmnt_data",350,"len")=4 + Set gtmtypes("sgmnt_data",350,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nullbt_cntr")=350 + Set gtmtypes("sgmnt_data",351,"name")="sgmnt_data.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",351,"off")=3440 + Set gtmtypes("sgmnt_data",351,"len")=4 + Set gtmtypes("sgmnt_data",351,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_bitmap_nonnullbt_cntr")=351 + Set gtmtypes("sgmnt_data",352,"name")="sgmnt_data.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("sgmnt_data",352,"off")=3444 + Set gtmtypes("sgmnt_data",352,"len")=4 + Set gtmtypes("sgmnt_data",352,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_cwset_cntr")=352 + Set gtmtypes("sgmnt_data",353,"name")="sgmnt_data.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("sgmnt_data",353,"off")=3448 + Set gtmtypes("sgmnt_data",353,"len")=4 + Set gtmtypes("sgmnt_data",353,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_jnl_wcsflu_cntr")=353 + Set gtmtypes("sgmnt_data",354,"name")="sgmnt_data.db_csh_get_too_many_loops_cntr" + Set gtmtypes("sgmnt_data",354,"off")=3452 + Set gtmtypes("sgmnt_data",354,"len")=4 + Set gtmtypes("sgmnt_data",354,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_get_too_many_loops_cntr")=354 + Set gtmtypes("sgmnt_data",355,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("sgmnt_data",355,"off")=3456 + Set gtmtypes("sgmnt_data",355,"len")=4 + Set gtmtypes("sgmnt_data",355,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nullbt_cntr")=355 + Set gtmtypes("sgmnt_data",356,"name")="sgmnt_data.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("sgmnt_data",356,"off")=3460 + Set gtmtypes("sgmnt_data",356,"len")=4 + Set gtmtypes("sgmnt_data",356,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tpckh_hist1_nonnullbt_cntr")=356 + Set gtmtypes("sgmnt_data",357,"name")="sgmnt_data.jnl_blocked_writer_lost_cntr" + Set gtmtypes("sgmnt_data",357,"off")=3464 + Set gtmtypes("sgmnt_data",357,"len")=4 + Set gtmtypes("sgmnt_data",357,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_lost_cntr")=357 + Set gtmtypes("sgmnt_data",358,"name")="sgmnt_data.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("sgmnt_data",358,"off")=3468 + Set gtmtypes("sgmnt_data",358,"len")=4 + Set gtmtypes("sgmnt_data",358,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_stuck_cntr")=358 + Set gtmtypes("sgmnt_data",359,"name")="sgmnt_data.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("sgmnt_data",359,"off")=3472 + Set gtmtypes("sgmnt_data",359,"len")=4 + Set gtmtypes("sgmnt_data",359,"type")="int" + Set gtmtypfldindx("sgmnt_data","jnl_blocked_writer_blocked_cntr")=359 + Set gtmtypes("sgmnt_data",360,"name")="sgmnt_data.n_jnl_fsyncs_cntr" + Set gtmtypes("sgmnt_data",360,"off")=3476 + Set gtmtypes("sgmnt_data",360,"len")=4 + Set gtmtypes("sgmnt_data",360,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsyncs_cntr")=360 + Set gtmtypes("sgmnt_data",361,"name")="sgmnt_data.n_jnl_fsync_tries_cntr" + Set gtmtypes("sgmnt_data",361,"off")=3480 + Set gtmtypes("sgmnt_data",361,"len")=4 + Set gtmtypes("sgmnt_data",361,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_tries_cntr")=361 + Set gtmtypes("sgmnt_data",362,"name")="sgmnt_data.n_jnl_fsync_recovers_cntr" + Set gtmtypes("sgmnt_data",362,"off")=3484 + Set gtmtypes("sgmnt_data",362,"len")=4 + Set gtmtypes("sgmnt_data",362,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_jnl_fsync_recovers_cntr")=362 + Set gtmtypes("sgmnt_data",363,"name")="sgmnt_data.n_db_fsyncs_cntr" + Set gtmtypes("sgmnt_data",363,"off")=3488 + Set gtmtypes("sgmnt_data",363,"len")=4 + Set gtmtypes("sgmnt_data",363,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_cntr")=363 + Set gtmtypes("sgmnt_data",364,"name")="sgmnt_data.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("sgmnt_data",364,"off")=3492 + Set gtmtypes("sgmnt_data",364,"len")=4 + Set gtmtypes("sgmnt_data",364,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_fsyncs_in_crit_cntr")=364 + Set gtmtypes("sgmnt_data",365,"name")="sgmnt_data.n_dbsync_timers_cntr" + Set gtmtypes("sgmnt_data",365,"off")=3496 + Set gtmtypes("sgmnt_data",365,"len")=4 + Set gtmtypes("sgmnt_data",365,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_dbsync_timers_cntr")=365 + Set gtmtypes("sgmnt_data",366,"name")="sgmnt_data.n_dbsync_writes_cntr" + Set gtmtypes("sgmnt_data",366,"off")=3500 + Set gtmtypes("sgmnt_data",366,"len")=4 + Set gtmtypes("sgmnt_data",366,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_dbsync_writes_cntr")=366 + Set gtmtypes("sgmnt_data",367,"name")="sgmnt_data.mutex_queue_full_cntr" + Set gtmtypes("sgmnt_data",367,"off")=3504 + Set gtmtypes("sgmnt_data",367,"len")=4 + Set gtmtypes("sgmnt_data",367,"type")="int" + Set gtmtypfldindx("sgmnt_data","mutex_queue_full_cntr")=367 + Set gtmtypes("sgmnt_data",368,"name")="sgmnt_data.wcb_bt_put_cntr" + Set gtmtypes("sgmnt_data",368,"off")=3508 + Set gtmtypes("sgmnt_data",368,"len")=4 + Set gtmtypes("sgmnt_data",368,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bt_put_cntr")=368 + Set gtmtypes("sgmnt_data",369,"name")="sgmnt_data.wcb_mutex_salvage_cntr" + Set gtmtypes("sgmnt_data",369,"off")=3512 + Set gtmtypes("sgmnt_data",369,"len")=4 + Set gtmtypes("sgmnt_data",369,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_mutex_salvage_cntr")=369 + Set gtmtypes("sgmnt_data",370,"name")="sgmnt_data.wcb_tp_grab_crit_cntr" + Set gtmtypes("sgmnt_data",370,"off")=3516 + Set gtmtypes("sgmnt_data",370,"len")=4 + Set gtmtypes("sgmnt_data",370,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_tp_grab_crit_cntr")=370 + Set gtmtypes("sgmnt_data",371,"name")="sgmnt_data.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("sgmnt_data",371,"off")=3520 + Set gtmtypes("sgmnt_data",371,"len")=4 + Set gtmtypes("sgmnt_data",371,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_nocr_invcr_cntr")=371 + Set gtmtypes("sgmnt_data",372,"name")="sgmnt_data.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("sgmnt_data",372,"off")=3524 + Set gtmtypes("sgmnt_data",372,"len")=4 + Set gtmtypes("sgmnt_data",372,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_cr_invcr_cntr")=372 + Set gtmtypes("sgmnt_data",373,"name")="sgmnt_data.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("sgmnt_data",373,"off")=3528 + Set gtmtypes("sgmnt_data",373,"len")=4 + Set gtmtypes("sgmnt_data",373,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_rip_wait_cntr")=373 + Set gtmtypes("sgmnt_data",374,"name")="sgmnt_data.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("sgmnt_data",374,"off")=3532 + Set gtmtypes("sgmnt_data",374,"len")=4 + Set gtmtypes("sgmnt_data",374,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtyripwait_cntr")=374 + Set gtmtypes("sgmnt_data",375,"name")="sgmnt_data.wcb_gds_rundown_cntr" + Set gtmtypes("sgmnt_data",375,"off")=3536 + Set gtmtypes("sgmnt_data",375,"len")=4 + Set gtmtypes("sgmnt_data",375,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_gds_rundown_cntr")=375 + Set gtmtypes("sgmnt_data",376,"name")="sgmnt_data.wcb_wcs_flu1_cntr" + Set gtmtypes("sgmnt_data",376,"off")=3540 + Set gtmtypes("sgmnt_data",376,"len")=4 + Set gtmtypes("sgmnt_data",376,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wcs_flu1_cntr")=376 + Set gtmtypes("sgmnt_data",377,"name")="sgmnt_data.wcb_mu_back_cntr" + Set gtmtypes("sgmnt_data",377,"off")=3544 + Set gtmtypes("sgmnt_data",377,"len")=4 + Set gtmtypes("sgmnt_data",377,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_mu_back_cntr")=377 + Set gtmtypes("sgmnt_data",378,"name")="sgmnt_data.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("sgmnt_data",378,"off")=3548 + Set gtmtypes("sgmnt_data",378,"len")=4 + Set gtmtypes("sgmnt_data",378,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirty_invcr_cntr")=378 + Set gtmtypes("sgmnt_data",379,"name")="sgmnt_data.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("sgmnt_data",379,"off")=3552 + Set gtmtypes("sgmnt_data",379,"len")=4 + Set gtmtypes("sgmnt_data",379,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_wtfini_fail_cntr")=379 + Set gtmtypes("sgmnt_data",380,"name")="sgmnt_data.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("sgmnt_data",380,"off")=3556 + Set gtmtypes("sgmnt_data",380,"len")=4 + Set gtmtypes("sgmnt_data",380,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_twin_stuck_cntr")=380 + Set gtmtypes("sgmnt_data",381,"name")="sgmnt_data.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("sgmnt_data",381,"off")=3560 + Set gtmtypes("sgmnt_data",381,"len")=4 + Set gtmtypes("sgmnt_data",381,"type")="int" + Set gtmtypfldindx("sgmnt_data","db_csh_getn_wrt_latch_stuck_cntr")=381 + Set gtmtypes("sgmnt_data",382,"name")="sgmnt_data.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("sgmnt_data",382,"off")=3564 + Set gtmtypes("sgmnt_data",382,"len")=4 + Set gtmtypes("sgmnt_data",382,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_now_crit_cntr")=382 + Set gtmtypes("sgmnt_data",383,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("sgmnt_data",383,"off")=3568 + Set gtmtypes("sgmnt_data",383,"len")=4 + Set gtmtypes("sgmnt_data",383,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index1_cntr")=383 + Set gtmtypes("sgmnt_data",384,"name")="sgmnt_data.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("sgmnt_data",384,"off")=3572 + Set gtmtypes("sgmnt_data",384,"len")=4 + Set gtmtypes("sgmnt_data",384,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_qread_bad_bt_index2_cntr")=384 + Set gtmtypes("sgmnt_data",385,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("sgmnt_data",385,"off")=3576 + Set gtmtypes("sgmnt_data",385,"len")=4 + Set gtmtypes("sgmnt_data",385,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch1_cntr")=385 + Set gtmtypes("sgmnt_data",386,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("sgmnt_data",386,"off")=3580 + Set gtmtypes("sgmnt_data",386,"len")=4 + Set gtmtypes("sgmnt_data",386,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch2_cntr")=386 + Set gtmtypes("sgmnt_data",387,"name")="sgmnt_data.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("sgmnt_data",387,"off")=3584 + Set gtmtypes("sgmnt_data",387,"len")=4 + Set gtmtypes("sgmnt_data",387,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_t_end_crbtmismatch3_cntr")=387 + Set gtmtypes("sgmnt_data",388,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("sgmnt_data",388,"off")=3588 + Set gtmtypes("sgmnt_data",388,"len")=4 + Set gtmtypes("sgmnt_data",388,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch1_cntr")=388 + Set gtmtypes("sgmnt_data",389,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("sgmnt_data",389,"off")=3592 + Set gtmtypes("sgmnt_data",389,"len")=4 + Set gtmtypes("sgmnt_data",389,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch2_cntr")=389 + Set gtmtypes("sgmnt_data",390,"name")="sgmnt_data.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("sgmnt_data",390,"off")=3596 + Set gtmtypes("sgmnt_data",390,"len")=4 + Set gtmtypes("sgmnt_data",390,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_tp_tend_crbtmismatch3_cntr")=390 + Set gtmtypes("sgmnt_data",391,"name")="sgmnt_data.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("sgmnt_data",391,"off")=3600 + Set gtmtypes("sgmnt_data",391,"len")=4 + Set gtmtypes("sgmnt_data",391,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtstart_bad_cr_cntr")=391 + Set gtmtypes("sgmnt_data",392,"name")="sgmnt_data.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("sgmnt_data",392,"off")=3604 + Set gtmtypes("sgmnt_data",392,"len")=4 + Set gtmtypes("sgmnt_data",392,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_wtfini_bad_cr_cntr")=392 + Set gtmtypes("sgmnt_data",393,"name")="sgmnt_data.wc_blocked_bt_get_cntr" + Set gtmtypes("sgmnt_data",393,"off")=3608 + Set gtmtypes("sgmnt_data",393,"len")=4 + Set gtmtypes("sgmnt_data",393,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_bt_get_cntr")=393 + Set gtmtypes("sgmnt_data",394,"name")="sgmnt_data.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("sgmnt_data",394,"off")=3612 + Set gtmtypes("sgmnt_data",394,"len")=4 + Set gtmtypes("sgmnt_data",394,"type")="int" + Set gtmtypfldindx("sgmnt_data","wc_blocked_wcs_cdb_sc_final_retry_cntr")=394 + Set gtmtypes("sgmnt_data",395,"name")="sgmnt_data.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("sgmnt_data",395,"off")=3616 + Set gtmtypes("sgmnt_data",395,"len")=4 + Set gtmtypes("sgmnt_data",395,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail1_cntr")=395 + Set gtmtypes("sgmnt_data",396,"name")="sgmnt_data.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("sgmnt_data",396,"off")=3620 + Set gtmtypes("sgmnt_data",396,"len")=4 + Set gtmtypes("sgmnt_data",396,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_bg_update_lckfail2_cntr")=396 + Set gtmtypes("sgmnt_data",397,"name")="sgmnt_data.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("sgmnt_data",397,"off")=3624 + Set gtmtypes("sgmnt_data",397,"len")=4 + Set gtmtypes("sgmnt_data",397,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail1_cntr")=397 + Set gtmtypes("sgmnt_data",398,"name")="sgmnt_data.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("sgmnt_data",398,"off")=3628 + Set gtmtypes("sgmnt_data",398,"len")=4 + Set gtmtypes("sgmnt_data",398,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail2_cntr")=398 + Set gtmtypes("sgmnt_data",399,"name")="sgmnt_data.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("sgmnt_data",399,"off")=3632 + Set gtmtypes("sgmnt_data",399,"len")=4 + Set gtmtypes("sgmnt_data",399,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail3_cntr")=399 + Set gtmtypes("sgmnt_data",400,"name")="sgmnt_data.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("sgmnt_data",400,"off")=3636 + Set gtmtypes("sgmnt_data",400,"len")=4 + Set gtmtypes("sgmnt_data",400,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtstart_lckfail4_cntr")=400 + Set gtmtypes("sgmnt_data",401,"name")="sgmnt_data.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("sgmnt_data",401,"off")=3640 + Set gtmtypes("sgmnt_data",401,"len")=4 + Set gtmtypes("sgmnt_data",401,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail1_cntr")=401 + Set gtmtypes("sgmnt_data",402,"name")="sgmnt_data.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("sgmnt_data",402,"off")=3644 + Set gtmtypes("sgmnt_data",402,"len")=4 + Set gtmtypes("sgmnt_data",402,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail2_cntr")=402 + Set gtmtypes("sgmnt_data",403,"name")="sgmnt_data.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("sgmnt_data",403,"off")=3648 + Set gtmtypes("sgmnt_data",403,"len")=4 + Set gtmtypes("sgmnt_data",403,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail3_cntr")=403 + Set gtmtypes("sgmnt_data",404,"name")="sgmnt_data.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("sgmnt_data",404,"off")=3652 + Set gtmtypes("sgmnt_data",404,"len")=4 + Set gtmtypes("sgmnt_data",404,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_wtfini_lckfail4_cntr")=404 + Set gtmtypes("sgmnt_data",405,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("sgmnt_data",405,"off")=3656 + Set gtmtypes("sgmnt_data",405,"len")=4 + Set gtmtypes("sgmnt_data",405,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck1_cntr")=405 + Set gtmtypes("sgmnt_data",406,"name")="sgmnt_data.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("sgmnt_data",406,"off")=3660 + Set gtmtypes("sgmnt_data",406,"len")=4 + Set gtmtypes("sgmnt_data",406,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_dirtystuck2_cntr")=406 + Set gtmtypes("sgmnt_data",407,"name")="sgmnt_data.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("sgmnt_data",407,"off")=3664 + Set gtmtypes("sgmnt_data",407,"len")=4 + Set gtmtypes("sgmnt_data",407,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_wbuf_dqd_cntr")=407 + Set gtmtypes("sgmnt_data",408,"name")="sgmnt_data.dwngrd_refmts_syncio_cntr" + Set gtmtypes("sgmnt_data",408,"off")=3668 + Set gtmtypes("sgmnt_data",408,"len")=4 + Set gtmtypes("sgmnt_data",408,"type")="int" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_syncio_cntr")=408 + Set gtmtypes("sgmnt_data",409,"name")="sgmnt_data.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("sgmnt_data",409,"off")=3672 + Set gtmtypes("sgmnt_data",409,"len")=4 + Set gtmtypes("sgmnt_data",409,"type")="int" + Set gtmtypfldindx("sgmnt_data","dwngrd_refmts_asyncio_cntr")=409 + Set gtmtypes("sgmnt_data",410,"name")="sgmnt_data.shmpool_refmt_harvests_cntr" + Set gtmtypes("sgmnt_data",410,"off")=3676 + Set gtmtypes("sgmnt_data",410,"len")=4 + Set gtmtypes("sgmnt_data",410,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_refmt_harvests_cntr")=410 + Set gtmtypes("sgmnt_data",411,"name")="sgmnt_data.shmpool_recovery_cntr" + Set gtmtypes("sgmnt_data",411,"off")=3680 + Set gtmtypes("sgmnt_data",411,"len")=4 + Set gtmtypes("sgmnt_data",411,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_recovery_cntr")=411 + Set gtmtypes("sgmnt_data",412,"name")="sgmnt_data.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("sgmnt_data",412,"off")=3684 + Set gtmtypes("sgmnt_data",412,"len")=4 + Set gtmtypes("sgmnt_data",412,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_blkd_by_sdc_cntr")=412 + Set gtmtypes("sgmnt_data",413,"name")="sgmnt_data.shmpool_alloc_bbflush_cntr" + Set gtmtypes("sgmnt_data",413,"off")=3688 + Set gtmtypes("sgmnt_data",413,"len")=4 + Set gtmtypes("sgmnt_data",413,"type")="int" + Set gtmtypfldindx("sgmnt_data","shmpool_alloc_bbflush_cntr")=413 + Set gtmtypes("sgmnt_data",414,"name")="sgmnt_data.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("sgmnt_data",414,"off")=3692 + Set gtmtypes("sgmnt_data",414,"len")=4 + Set gtmtypes("sgmnt_data",414,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_replaced_cntr")=414 + Set gtmtypes("sgmnt_data",415,"name")="sgmnt_data.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("sgmnt_data",415,"off")=3696 + Set gtmtypes("sgmnt_data",415,"len")=4 + Set gtmtypes("sgmnt_data",415,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_released_io_complete_cntr")=415 + Set gtmtypes("sgmnt_data",416,"name")="sgmnt_data.refmt_hvst_blk_kept_cntr" + Set gtmtypes("sgmnt_data",416,"off")=3700 + Set gtmtypes("sgmnt_data",416,"len")=4 + Set gtmtypes("sgmnt_data",416,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_kept_cntr")=416 + Set gtmtypes("sgmnt_data",417,"name")="sgmnt_data.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("sgmnt_data",417,"off")=3704 + Set gtmtypes("sgmnt_data",417,"len")=4 + Set gtmtypes("sgmnt_data",417,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_hvst_blk_ignored_cntr")=417 + Set gtmtypes("sgmnt_data",418,"name")="sgmnt_data.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("sgmnt_data",418,"off")=3708 + Set gtmtypes("sgmnt_data",418,"len")=4 + Set gtmtypes("sgmnt_data",418,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_freed_cntr")=418 + Set gtmtypes("sgmnt_data",419,"name")="sgmnt_data.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("sgmnt_data",419,"off")=3712 + Set gtmtypes("sgmnt_data",419,"len")=4 + Set gtmtypes("sgmnt_data",419,"type")="int" + Set gtmtypfldindx("sgmnt_data","refmt_blk_chk_blk_kept_cntr")=419 + Set gtmtypes("sgmnt_data",420,"name")="sgmnt_data.active_lvl_trigger_cntr" + Set gtmtypes("sgmnt_data",420,"off")=3716 + Set gtmtypes("sgmnt_data",420,"len")=4 + Set gtmtypes("sgmnt_data",420,"type")="int" + Set gtmtypfldindx("sgmnt_data","active_lvl_trigger_cntr")=420 + Set gtmtypes("sgmnt_data",421,"name")="sgmnt_data.new_buff_cntr" + Set gtmtypes("sgmnt_data",421,"off")=3720 + Set gtmtypes("sgmnt_data",421,"len")=4 + Set gtmtypes("sgmnt_data",421,"type")="int" + Set gtmtypfldindx("sgmnt_data","new_buff_cntr")=421 + Set gtmtypes("sgmnt_data",422,"name")="sgmnt_data.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("sgmnt_data",422,"off")=3724 + Set gtmtypes("sgmnt_data",422,"len")=4 + Set gtmtypes("sgmnt_data",422,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_in_crit_cntr")=422 + Set gtmtypes("sgmnt_data",423,"name")="sgmnt_data.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("sgmnt_data",423,"off")=3728 + Set gtmtypes("sgmnt_data",423,"len")=4 + Set gtmtypes("sgmnt_data",423,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_sleep_no_crit_cntr")=423 + Set gtmtypes("sgmnt_data",424,"name")="sgmnt_data.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("sgmnt_data",424,"off")=3732 + Set gtmtypes("sgmnt_data",424,"len")=4 + Set gtmtypes("sgmnt_data",424,"type")="int" + Set gtmtypfldindx("sgmnt_data","phase2_commit_wait_pidcnt_cntr")=424 + Set gtmtypes("sgmnt_data",425,"name")="sgmnt_data.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("sgmnt_data",425,"off")=3736 + Set gtmtypes("sgmnt_data",425,"len")=4 + Set gtmtypes("sgmnt_data",425,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_t_end_sysops_intend_wait_cntr")=425 + Set gtmtypes("sgmnt_data",426,"name")="sgmnt_data.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("sgmnt_data",426,"off")=3740 + Set gtmtypes("sgmnt_data",426,"len")=4 + Set gtmtypes("sgmnt_data",426,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_secshr_db_clnup_phase2_clnup_cntr")=426 + Set gtmtypes("sgmnt_data",427,"name")="sgmnt_data.wcb_phase2_commit_wait_cntr" + Set gtmtypes("sgmnt_data",427,"off")=3744 + Set gtmtypes("sgmnt_data",427,"len")=4 + Set gtmtypes("sgmnt_data",427,"type")="int" + Set gtmtypfldindx("sgmnt_data","wcb_phase2_commit_wait_cntr")=427 + Set gtmtypes("sgmnt_data",428,"name")="sgmnt_data.recompute_upd_array_calls_cntr" + Set gtmtypes("sgmnt_data",428,"off")=3748 + Set gtmtypes("sgmnt_data",428,"len")=4 + Set gtmtypes("sgmnt_data",428,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_calls_cntr")=428 + Set gtmtypes("sgmnt_data",429,"name")="sgmnt_data.recompute_upd_array_rip_cntr" + Set gtmtypes("sgmnt_data",429,"off")=3752 + Set gtmtypes("sgmnt_data",429,"len")=4 + Set gtmtypes("sgmnt_data",429,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rip_cntr")=429 + Set gtmtypes("sgmnt_data",430,"name")="sgmnt_data.recompute_upd_array_in_tend_cntr" + Set gtmtypes("sgmnt_data",430,"off")=3756 + Set gtmtypes("sgmnt_data",430,"len")=4 + Set gtmtypes("sgmnt_data",430,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_in_tend_cntr")=430 + Set gtmtypes("sgmnt_data",431,"name")="sgmnt_data.recompute_upd_array_search_blk_cntr" + Set gtmtypes("sgmnt_data",431,"off")=3760 + Set gtmtypes("sgmnt_data",431,"len")=4 + Set gtmtypes("sgmnt_data",431,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_search_blk_cntr")=431 + Set gtmtypes("sgmnt_data",432,"name")="sgmnt_data.recompute_upd_array_new_rec_cntr" + Set gtmtypes("sgmnt_data",432,"off")=3764 + Set gtmtypes("sgmnt_data",432,"len")=4 + Set gtmtypes("sgmnt_data",432,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_new_rec_cntr")=432 + Set gtmtypes("sgmnt_data",433,"name")="sgmnt_data.recompute_upd_array_rec_size_cntr" + Set gtmtypes("sgmnt_data",433,"off")=3768 + Set gtmtypes("sgmnt_data",433,"len")=4 + Set gtmtypes("sgmnt_data",433,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_size_cntr")=433 + Set gtmtypes("sgmnt_data",434,"name")="sgmnt_data.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("sgmnt_data",434,"off")=3772 + Set gtmtypes("sgmnt_data",434,"len")=4 + Set gtmtypes("sgmnt_data",434,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_rec_cmpc_cntr")=434 + Set gtmtypes("sgmnt_data",435,"name")="sgmnt_data.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("sgmnt_data",435,"off")=3776 + Set gtmtypes("sgmnt_data",435,"len")=4 + Set gtmtypes("sgmnt_data",435,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_fini_cntr")=435 + Set gtmtypes("sgmnt_data",436,"name")="sgmnt_data.recompute_upd_array_blk_split_cntr" + Set gtmtypes("sgmnt_data",436,"off")=3780 + Set gtmtypes("sgmnt_data",436,"len")=4 + Set gtmtypes("sgmnt_data",436,"type")="int" + Set gtmtypfldindx("sgmnt_data","recompute_upd_array_blk_split_cntr")=436 + Set gtmtypes("sgmnt_data",437,"name")="sgmnt_data.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("sgmnt_data",437,"off")=3784 + Set gtmtypes("sgmnt_data",437,"len")=4 + Set gtmtypes("sgmnt_data",437,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_cnt_cntr")=437 + Set gtmtypes("sgmnt_data",438,"name")="sgmnt_data.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("sgmnt_data",438,"off")=3788 + Set gtmtypes("sgmnt_data",438,"len")=4 + Set gtmtypes("sgmnt_data",438,"type")="int" + Set gtmtypfldindx("sgmnt_data","t_qread_ripsleep_nblks_cntr")=438 + Set gtmtypes("sgmnt_data",439,"name")="sgmnt_data.bg_trc_rec_cntr_filler" + Set gtmtypes("sgmnt_data",439,"off")=3792 + Set gtmtypes("sgmnt_data",439,"len")=56 + Set gtmtypes("sgmnt_data",439,"type")="char" + Set gtmtypfldindx("sgmnt_data","bg_trc_rec_cntr_filler")=439 + Set gtmtypes("sgmnt_data",440,"name")="sgmnt_data.n_gvcst_srches" + Set gtmtypes("sgmnt_data",440,"off")=3848 + Set gtmtypes("sgmnt_data",440,"len")=8 + Set gtmtypes("sgmnt_data",440,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches")=440 + Set gtmtypes("sgmnt_data",441,"name")="sgmnt_data.n_gvcst_srches.curr_count" + Set gtmtypes("sgmnt_data",441,"off")=3848 + Set gtmtypes("sgmnt_data",441,"len")=4 + Set gtmtypes("sgmnt_data",441,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches.curr_count")=441 + Set gtmtypes("sgmnt_data",442,"name")="sgmnt_data.n_gvcst_srches.cumul_count" + Set gtmtypes("sgmnt_data",442,"off")=3852 + Set gtmtypes("sgmnt_data",442,"len")=4 + Set gtmtypes("sgmnt_data",442,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srches.cumul_count")=442 + Set gtmtypes("sgmnt_data",443,"name")="sgmnt_data.n_gvcst_srch_clues" + Set gtmtypes("sgmnt_data",443,"off")=3856 + Set gtmtypes("sgmnt_data",443,"len")=8 + Set gtmtypes("sgmnt_data",443,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues")=443 + Set gtmtypes("sgmnt_data",444,"name")="sgmnt_data.n_gvcst_srch_clues.curr_count" + Set gtmtypes("sgmnt_data",444,"off")=3856 + Set gtmtypes("sgmnt_data",444,"len")=4 + Set gtmtypes("sgmnt_data",444,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues.curr_count")=444 + Set gtmtypes("sgmnt_data",445,"name")="sgmnt_data.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("sgmnt_data",445,"off")=3860 + Set gtmtypes("sgmnt_data",445,"len")=4 + Set gtmtypes("sgmnt_data",445,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_gvcst_srch_clues.cumul_count")=445 + Set gtmtypes("sgmnt_data",446,"name")="sgmnt_data.n_clue_used_head" + Set gtmtypes("sgmnt_data",446,"off")=3864 + Set gtmtypes("sgmnt_data",446,"len")=8 + Set gtmtypes("sgmnt_data",446,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head")=446 + Set gtmtypes("sgmnt_data",447,"name")="sgmnt_data.n_clue_used_head.curr_count" + Set gtmtypes("sgmnt_data",447,"off")=3864 + Set gtmtypes("sgmnt_data",447,"len")=4 + Set gtmtypes("sgmnt_data",447,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head.curr_count")=447 + Set gtmtypes("sgmnt_data",448,"name")="sgmnt_data.n_clue_used_head.cumul_count" + Set gtmtypes("sgmnt_data",448,"off")=3868 + Set gtmtypes("sgmnt_data",448,"len")=4 + Set gtmtypes("sgmnt_data",448,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_head.cumul_count")=448 + Set gtmtypes("sgmnt_data",449,"name")="sgmnt_data.n_clue_used_same" + Set gtmtypes("sgmnt_data",449,"off")=3872 + Set gtmtypes("sgmnt_data",449,"len")=8 + Set gtmtypes("sgmnt_data",449,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same")=449 + Set gtmtypes("sgmnt_data",450,"name")="sgmnt_data.n_clue_used_same.curr_count" + Set gtmtypes("sgmnt_data",450,"off")=3872 + Set gtmtypes("sgmnt_data",450,"len")=4 + Set gtmtypes("sgmnt_data",450,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same.curr_count")=450 + Set gtmtypes("sgmnt_data",451,"name")="sgmnt_data.n_clue_used_same.cumul_count" + Set gtmtypes("sgmnt_data",451,"off")=3876 + Set gtmtypes("sgmnt_data",451,"len")=4 + Set gtmtypes("sgmnt_data",451,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_same.cumul_count")=451 + Set gtmtypes("sgmnt_data",452,"name")="sgmnt_data.n_clue_used_tail" + Set gtmtypes("sgmnt_data",452,"off")=3880 + Set gtmtypes("sgmnt_data",452,"len")=8 + Set gtmtypes("sgmnt_data",452,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail")=452 + Set gtmtypes("sgmnt_data",453,"name")="sgmnt_data.n_clue_used_tail.curr_count" + Set gtmtypes("sgmnt_data",453,"off")=3880 + Set gtmtypes("sgmnt_data",453,"len")=4 + Set gtmtypes("sgmnt_data",453,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail.curr_count")=453 + Set gtmtypes("sgmnt_data",454,"name")="sgmnt_data.n_clue_used_tail.cumul_count" + Set gtmtypes("sgmnt_data",454,"off")=3884 + Set gtmtypes("sgmnt_data",454,"len")=4 + Set gtmtypes("sgmnt_data",454,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_clue_used_tail.cumul_count")=454 + Set gtmtypes("sgmnt_data",455,"name")="sgmnt_data.n_t_qreads" + Set gtmtypes("sgmnt_data",455,"off")=3888 + Set gtmtypes("sgmnt_data",455,"len")=8 + Set gtmtypes("sgmnt_data",455,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_t_qreads")=455 + Set gtmtypes("sgmnt_data",456,"name")="sgmnt_data.n_t_qreads.curr_count" + Set gtmtypes("sgmnt_data",456,"off")=3888 + Set gtmtypes("sgmnt_data",456,"len")=4 + Set gtmtypes("sgmnt_data",456,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_t_qreads.curr_count")=456 + Set gtmtypes("sgmnt_data",457,"name")="sgmnt_data.n_t_qreads.cumul_count" + Set gtmtypes("sgmnt_data",457,"off")=3892 + Set gtmtypes("sgmnt_data",457,"len")=4 + Set gtmtypes("sgmnt_data",457,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_t_qreads.cumul_count")=457 + Set gtmtypes("sgmnt_data",458,"name")="sgmnt_data.unused_dsk_reads" + Set gtmtypes("sgmnt_data",458,"off")=3896 + Set gtmtypes("sgmnt_data",458,"len")=8 + Set gtmtypes("sgmnt_data",458,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads")=458 + Set gtmtypes("sgmnt_data",459,"name")="sgmnt_data.unused_dsk_reads.curr_count" + Set gtmtypes("sgmnt_data",459,"off")=3896 + Set gtmtypes("sgmnt_data",459,"len")=4 + Set gtmtypes("sgmnt_data",459,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads.curr_count")=459 + Set gtmtypes("sgmnt_data",460,"name")="sgmnt_data.unused_dsk_reads.cumul_count" + Set gtmtypes("sgmnt_data",460,"off")=3900 + Set gtmtypes("sgmnt_data",460,"len")=4 + Set gtmtypes("sgmnt_data",460,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_reads.cumul_count")=460 + Set gtmtypes("sgmnt_data",461,"name")="sgmnt_data.n_bgmm_updates" + Set gtmtypes("sgmnt_data",461,"off")=3904 + Set gtmtypes("sgmnt_data",461,"len")=8 + Set gtmtypes("sgmnt_data",461,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates")=461 + Set gtmtypes("sgmnt_data",462,"name")="sgmnt_data.n_bgmm_updates.curr_count" + Set gtmtypes("sgmnt_data",462,"off")=3904 + Set gtmtypes("sgmnt_data",462,"len")=4 + Set gtmtypes("sgmnt_data",462,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates.curr_count")=462 + Set gtmtypes("sgmnt_data",463,"name")="sgmnt_data.n_bgmm_updates.cumul_count" + Set gtmtypes("sgmnt_data",463,"off")=3908 + Set gtmtypes("sgmnt_data",463,"len")=4 + Set gtmtypes("sgmnt_data",463,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bgmm_updates.cumul_count")=463 + Set gtmtypes("sgmnt_data",464,"name")="sgmnt_data.unused_dsk_writes" + Set gtmtypes("sgmnt_data",464,"off")=3912 + Set gtmtypes("sgmnt_data",464,"len")=8 + Set gtmtypes("sgmnt_data",464,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes")=464 + Set gtmtypes("sgmnt_data",465,"name")="sgmnt_data.unused_dsk_writes.curr_count" + Set gtmtypes("sgmnt_data",465,"off")=3912 + Set gtmtypes("sgmnt_data",465,"len")=4 + Set gtmtypes("sgmnt_data",465,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes.curr_count")=465 + Set gtmtypes("sgmnt_data",466,"name")="sgmnt_data.unused_dsk_writes.cumul_count" + Set gtmtypes("sgmnt_data",466,"off")=3916 + Set gtmtypes("sgmnt_data",466,"len")=4 + Set gtmtypes("sgmnt_data",466,"type")="int" + Set gtmtypfldindx("sgmnt_data","unused_dsk_writes.cumul_count")=466 + Set gtmtypes("sgmnt_data",467,"name")="sgmnt_data.n_bg_update_creates" + Set gtmtypes("sgmnt_data",467,"off")=3920 + Set gtmtypes("sgmnt_data",467,"len")=8 + Set gtmtypes("sgmnt_data",467,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates")=467 + Set gtmtypes("sgmnt_data",468,"name")="sgmnt_data.n_bg_update_creates.curr_count" + Set gtmtypes("sgmnt_data",468,"off")=3920 + Set gtmtypes("sgmnt_data",468,"len")=4 + Set gtmtypes("sgmnt_data",468,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates.curr_count")=468 + Set gtmtypes("sgmnt_data",469,"name")="sgmnt_data.n_bg_update_creates.cumul_count" + Set gtmtypes("sgmnt_data",469,"off")=3924 + Set gtmtypes("sgmnt_data",469,"len")=4 + Set gtmtypes("sgmnt_data",469,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_bg_update_creates.cumul_count")=469 + Set gtmtypes("sgmnt_data",470,"name")="sgmnt_data.n_db_csh_getns" + Set gtmtypes("sgmnt_data",470,"off")=3928 + Set gtmtypes("sgmnt_data",470,"len")=8 + Set gtmtypes("sgmnt_data",470,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns")=470 + Set gtmtypes("sgmnt_data",471,"name")="sgmnt_data.n_db_csh_getns.curr_count" + Set gtmtypes("sgmnt_data",471,"off")=3928 + Set gtmtypes("sgmnt_data",471,"len")=4 + Set gtmtypes("sgmnt_data",471,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns.curr_count")=471 + Set gtmtypes("sgmnt_data",472,"name")="sgmnt_data.n_db_csh_getns.cumul_count" + Set gtmtypes("sgmnt_data",472,"off")=3932 + Set gtmtypes("sgmnt_data",472,"len")=4 + Set gtmtypes("sgmnt_data",472,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getns.cumul_count")=472 + Set gtmtypes("sgmnt_data",473,"name")="sgmnt_data.n_db_csh_getn_lcnt" + Set gtmtypes("sgmnt_data",473,"off")=3936 + Set gtmtypes("sgmnt_data",473,"len")=8 + Set gtmtypes("sgmnt_data",473,"type")="db_csh_acct_rec" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt")=473 + Set gtmtypes("sgmnt_data",474,"name")="sgmnt_data.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("sgmnt_data",474,"off")=3936 + Set gtmtypes("sgmnt_data",474,"len")=4 + Set gtmtypes("sgmnt_data",474,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt.curr_count")=474 + Set gtmtypes("sgmnt_data",475,"name")="sgmnt_data.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("sgmnt_data",475,"off")=3940 + Set gtmtypes("sgmnt_data",475,"len")=4 + Set gtmtypes("sgmnt_data",475,"type")="int" + Set gtmtypfldindx("sgmnt_data","n_db_csh_getn_lcnt.cumul_count")=475 + Set gtmtypes("sgmnt_data",476,"name")="sgmnt_data.db_csh_acct_rec_filler_4k" + Set gtmtypes("sgmnt_data",476,"off")=3944 + Set gtmtypes("sgmnt_data",476,"len")=152 + Set gtmtypes("sgmnt_data",476,"type")="char" + Set gtmtypfldindx("sgmnt_data","db_csh_acct_rec_filler_4k")=476 + Set gtmtypes("sgmnt_data",477,"name")="sgmnt_data.gvstats_rec" + Set gtmtypes("sgmnt_data",477,"off")=4096 + Set gtmtypes("sgmnt_data",477,"len")=464 + Set gtmtypes("sgmnt_data",477,"type")="gvstats_rec_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec")=477 + Set gtmtypes("sgmnt_data",478,"name")="sgmnt_data.gvstats_rec.n_set" + Set gtmtypes("sgmnt_data",478,"off")=4096 + Set gtmtypes("sgmnt_data",478,"len")=8 + Set gtmtypes("sgmnt_data",478,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_set")=478 + Set gtmtypes("sgmnt_data",479,"name")="sgmnt_data.gvstats_rec.n_kill" + Set gtmtypes("sgmnt_data",479,"off")=4104 + Set gtmtypes("sgmnt_data",479,"len")=8 + Set gtmtypes("sgmnt_data",479,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_kill")=479 + Set gtmtypes("sgmnt_data",480,"name")="sgmnt_data.gvstats_rec.n_get" + Set gtmtypes("sgmnt_data",480,"off")=4112 + Set gtmtypes("sgmnt_data",480,"len")=8 + Set gtmtypes("sgmnt_data",480,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_get")=480 + Set gtmtypes("sgmnt_data",481,"name")="sgmnt_data.gvstats_rec.n_data" + Set gtmtypes("sgmnt_data",481,"off")=4120 + Set gtmtypes("sgmnt_data",481,"len")=8 + Set gtmtypes("sgmnt_data",481,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_data")=481 + Set gtmtypes("sgmnt_data",482,"name")="sgmnt_data.gvstats_rec.n_order" + Set gtmtypes("sgmnt_data",482,"off")=4128 + Set gtmtypes("sgmnt_data",482,"len")=8 + Set gtmtypes("sgmnt_data",482,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_order")=482 + Set gtmtypes("sgmnt_data",483,"name")="sgmnt_data.gvstats_rec.n_zprev" + Set gtmtypes("sgmnt_data",483,"off")=4136 + Set gtmtypes("sgmnt_data",483,"len")=8 + Set gtmtypes("sgmnt_data",483,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_zprev")=483 + Set gtmtypes("sgmnt_data",484,"name")="sgmnt_data.gvstats_rec.n_query" + Set gtmtypes("sgmnt_data",484,"off")=4144 + Set gtmtypes("sgmnt_data",484,"len")=8 + Set gtmtypes("sgmnt_data",484,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_query")=484 + Set gtmtypes("sgmnt_data",485,"name")="sgmnt_data.gvstats_rec.n_lock_success" + Set gtmtypes("sgmnt_data",485,"off")=4152 + Set gtmtypes("sgmnt_data",485,"len")=8 + Set gtmtypes("sgmnt_data",485,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_lock_success")=485 + Set gtmtypes("sgmnt_data",486,"name")="sgmnt_data.gvstats_rec.n_lock_fail" + Set gtmtypes("sgmnt_data",486,"off")=4160 + Set gtmtypes("sgmnt_data",486,"len")=8 + Set gtmtypes("sgmnt_data",486,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_lock_fail")=486 + Set gtmtypes("sgmnt_data",487,"name")="sgmnt_data.gvstats_rec.db_curr_tn" + Set gtmtypes("sgmnt_data",487,"off")=4168 + Set gtmtypes("sgmnt_data",487,"len")=8 + Set gtmtypes("sgmnt_data",487,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.db_curr_tn")=487 + Set gtmtypes("sgmnt_data",488,"name")="sgmnt_data.gvstats_rec.n_dsk_read" + Set gtmtypes("sgmnt_data",488,"off")=4176 + Set gtmtypes("sgmnt_data",488,"len")=8 + Set gtmtypes("sgmnt_data",488,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_dsk_read")=488 + Set gtmtypes("sgmnt_data",489,"name")="sgmnt_data.gvstats_rec.n_dsk_write" + Set gtmtypes("sgmnt_data",489,"off")=4184 + Set gtmtypes("sgmnt_data",489,"len")=8 + Set gtmtypes("sgmnt_data",489,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_dsk_write")=489 + Set gtmtypes("sgmnt_data",490,"name")="sgmnt_data.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("sgmnt_data",490,"off")=4192 + Set gtmtypes("sgmnt_data",490,"len")=8 + Set gtmtypes("sgmnt_data",490,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_readwrite")=490 + Set gtmtypes("sgmnt_data",491,"name")="sgmnt_data.gvstats_rec.n_nontp_readonly" + Set gtmtypes("sgmnt_data",491,"off")=4200 + Set gtmtypes("sgmnt_data",491,"len")=8 + Set gtmtypes("sgmnt_data",491,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_readonly")=491 + Set gtmtypes("sgmnt_data",492,"name")="sgmnt_data.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("sgmnt_data",492,"off")=4208 + Set gtmtypes("sgmnt_data",492,"len")=8 + Set gtmtypes("sgmnt_data",492,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_blkwrite")=492 + Set gtmtypes("sgmnt_data",493,"name")="sgmnt_data.gvstats_rec.n_nontp_blkread" + Set gtmtypes("sgmnt_data",493,"off")=4216 + Set gtmtypes("sgmnt_data",493,"len")=8 + Set gtmtypes("sgmnt_data",493,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_blkread")=493 + Set gtmtypes("sgmnt_data",494,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("sgmnt_data",494,"off")=4224 + Set gtmtypes("sgmnt_data",494,"len")=8 + Set gtmtypes("sgmnt_data",494,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_0")=494 + Set gtmtypes("sgmnt_data",495,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("sgmnt_data",495,"off")=4232 + Set gtmtypes("sgmnt_data",495,"len")=8 + Set gtmtypes("sgmnt_data",495,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_1")=495 + Set gtmtypes("sgmnt_data",496,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("sgmnt_data",496,"off")=4240 + Set gtmtypes("sgmnt_data",496,"len")=8 + Set gtmtypes("sgmnt_data",496,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_2")=496 + Set gtmtypes("sgmnt_data",497,"name")="sgmnt_data.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("sgmnt_data",497,"off")=4248 + Set gtmtypes("sgmnt_data",497,"len")=8 + Set gtmtypes("sgmnt_data",497,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_nontp_retries_3")=497 + Set gtmtypes("sgmnt_data",498,"name")="sgmnt_data.gvstats_rec.n_tp_readwrite" + Set gtmtypes("sgmnt_data",498,"off")=4256 + Set gtmtypes("sgmnt_data",498,"len")=8 + Set gtmtypes("sgmnt_data",498,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_readwrite")=498 + Set gtmtypes("sgmnt_data",499,"name")="sgmnt_data.gvstats_rec.n_tp_readonly" + Set gtmtypes("sgmnt_data",499,"off")=4264 + Set gtmtypes("sgmnt_data",499,"len")=8 + Set gtmtypes("sgmnt_data",499,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_readonly")=499 + Set gtmtypes("sgmnt_data",500,"name")="sgmnt_data.gvstats_rec.n_tp_rolledback" + Set gtmtypes("sgmnt_data",500,"off")=4272 + Set gtmtypes("sgmnt_data",500,"len")=8 + Set gtmtypes("sgmnt_data",500,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_rolledback")=500 + Set gtmtypes("sgmnt_data",501,"name")="sgmnt_data.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("sgmnt_data",501,"off")=4280 + Set gtmtypes("sgmnt_data",501,"len")=8 + Set gtmtypes("sgmnt_data",501,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_blkwrite")=501 + Set gtmtypes("sgmnt_data",502,"name")="sgmnt_data.gvstats_rec.n_tp_blkread" + Set gtmtypes("sgmnt_data",502,"off")=4288 + Set gtmtypes("sgmnt_data",502,"len")=8 + Set gtmtypes("sgmnt_data",502,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_blkread")=502 + Set gtmtypes("sgmnt_data",503,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("sgmnt_data",503,"off")=4296 + Set gtmtypes("sgmnt_data",503,"len")=8 + Set gtmtypes("sgmnt_data",503,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_0")=503 + Set gtmtypes("sgmnt_data",504,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("sgmnt_data",504,"off")=4304 + Set gtmtypes("sgmnt_data",504,"len")=8 + Set gtmtypes("sgmnt_data",504,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_1")=504 + Set gtmtypes("sgmnt_data",505,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("sgmnt_data",505,"off")=4312 + Set gtmtypes("sgmnt_data",505,"len")=8 + Set gtmtypes("sgmnt_data",505,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_2")=505 + Set gtmtypes("sgmnt_data",506,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("sgmnt_data",506,"off")=4320 + Set gtmtypes("sgmnt_data",506,"len")=8 + Set gtmtypes("sgmnt_data",506,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_3")=506 + Set gtmtypes("sgmnt_data",507,"name")="sgmnt_data.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("sgmnt_data",507,"off")=4328 + Set gtmtypes("sgmnt_data",507,"len")=8 + Set gtmtypes("sgmnt_data",507,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_tot_retries_4")=507 + Set gtmtypes("sgmnt_data",508,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("sgmnt_data",508,"off")=4336 + Set gtmtypes("sgmnt_data",508,"len")=8 + Set gtmtypes("sgmnt_data",508,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_0")=508 + Set gtmtypes("sgmnt_data",509,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("sgmnt_data",509,"off")=4344 + Set gtmtypes("sgmnt_data",509,"len")=8 + Set gtmtypes("sgmnt_data",509,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_1")=509 + Set gtmtypes("sgmnt_data",510,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("sgmnt_data",510,"off")=4352 + Set gtmtypes("sgmnt_data",510,"len")=8 + Set gtmtypes("sgmnt_data",510,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_2")=510 + Set gtmtypes("sgmnt_data",511,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("sgmnt_data",511,"off")=4360 + Set gtmtypes("sgmnt_data",511,"len")=8 + Set gtmtypes("sgmnt_data",511,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_3")=511 + Set gtmtypes("sgmnt_data",512,"name")="sgmnt_data.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("sgmnt_data",512,"off")=4368 + Set gtmtypes("sgmnt_data",512,"len")=8 + Set gtmtypes("sgmnt_data",512,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_tp_cnflct_retries_4")=512 + Set gtmtypes("sgmnt_data",513,"name")="sgmnt_data.gvstats_rec.n_ztrigger" + Set gtmtypes("sgmnt_data",513,"off")=4376 + Set gtmtypes("sgmnt_data",513,"len")=8 + Set gtmtypes("sgmnt_data",513,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_ztrigger")=513 + Set gtmtypes("sgmnt_data",514,"name")="sgmnt_data.gvstats_rec.n_db_flush" + Set gtmtypes("sgmnt_data",514,"off")=4384 + Set gtmtypes("sgmnt_data",514,"len")=8 + Set gtmtypes("sgmnt_data",514,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_flush")=514 + Set gtmtypes("sgmnt_data",515,"name")="sgmnt_data.gvstats_rec.n_db_fsync" + Set gtmtypes("sgmnt_data",515,"off")=4392 + Set gtmtypes("sgmnt_data",515,"len")=8 + Set gtmtypes("sgmnt_data",515,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_fsync")=515 + Set gtmtypes("sgmnt_data",516,"name")="sgmnt_data.gvstats_rec.n_jnl_flush" + Set gtmtypes("sgmnt_data",516,"off")=4400 + Set gtmtypes("sgmnt_data",516,"len")=8 + Set gtmtypes("sgmnt_data",516,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_flush")=516 + Set gtmtypes("sgmnt_data",517,"name")="sgmnt_data.gvstats_rec.n_jnl_fsync" + Set gtmtypes("sgmnt_data",517,"off")=4408 + Set gtmtypes("sgmnt_data",517,"len")=8 + Set gtmtypes("sgmnt_data",517,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_fsync")=517 + Set gtmtypes("sgmnt_data",518,"name")="sgmnt_data.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("sgmnt_data",518,"off")=4416 + Set gtmtypes("sgmnt_data",518,"len")=8 + Set gtmtypes("sgmnt_data",518,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jbuff_bytes")=518 + Set gtmtypes("sgmnt_data",519,"name")="sgmnt_data.gvstats_rec.n_jfile_bytes" + Set gtmtypes("sgmnt_data",519,"off")=4424 + Set gtmtypes("sgmnt_data",519,"len")=8 + Set gtmtypes("sgmnt_data",519,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jfile_bytes")=519 + Set gtmtypes("sgmnt_data",520,"name")="sgmnt_data.gvstats_rec.n_jfile_writes" + Set gtmtypes("sgmnt_data",520,"off")=4432 + Set gtmtypes("sgmnt_data",520,"len")=8 + Set gtmtypes("sgmnt_data",520,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jfile_writes")=520 + Set gtmtypes("sgmnt_data",521,"name")="sgmnt_data.gvstats_rec.n_jrec_logical" + Set gtmtypes("sgmnt_data",521,"off")=4440 + Set gtmtypes("sgmnt_data",521,"len")=8 + Set gtmtypes("sgmnt_data",521,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_logical")=521 + Set gtmtypes("sgmnt_data",522,"name")="sgmnt_data.gvstats_rec.n_jrec_pblk" + Set gtmtypes("sgmnt_data",522,"off")=4448 + Set gtmtypes("sgmnt_data",522,"len")=8 + Set gtmtypes("sgmnt_data",522,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_pblk")=522 + Set gtmtypes("sgmnt_data",523,"name")="sgmnt_data.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("sgmnt_data",523,"off")=4456 + Set gtmtypes("sgmnt_data",523,"len")=8 + Set gtmtypes("sgmnt_data",523,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_epoch_regular")=523 + Set gtmtypes("sgmnt_data",524,"name")="sgmnt_data.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("sgmnt_data",524,"off")=4464 + Set gtmtypes("sgmnt_data",524,"len")=8 + Set gtmtypes("sgmnt_data",524,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_epoch_idle")=524 + Set gtmtypes("sgmnt_data",525,"name")="sgmnt_data.gvstats_rec.n_jrec_other" + Set gtmtypes("sgmnt_data",525,"off")=4472 + Set gtmtypes("sgmnt_data",525,"len")=8 + Set gtmtypes("sgmnt_data",525,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jrec_other")=525 + Set gtmtypes("sgmnt_data",526,"name")="sgmnt_data.gvstats_rec.n_jnl_extends" + Set gtmtypes("sgmnt_data",526,"off")=4480 + Set gtmtypes("sgmnt_data",526,"len")=8 + Set gtmtypes("sgmnt_data",526,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_jnl_extends")=526 + Set gtmtypes("sgmnt_data",527,"name")="sgmnt_data.gvstats_rec.n_db_extends" + Set gtmtypes("sgmnt_data",527,"off")=4488 + Set gtmtypes("sgmnt_data",527,"len")=8 + Set gtmtypes("sgmnt_data",527,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_db_extends")=527 + Set gtmtypes("sgmnt_data",528,"name")="sgmnt_data.gvstats_rec.n_crit_success" + Set gtmtypes("sgmnt_data",528,"off")=4496 + Set gtmtypes("sgmnt_data",528,"len")=8 + Set gtmtypes("sgmnt_data",528,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_success")=528 + Set gtmtypes("sgmnt_data",529,"name")="sgmnt_data.gvstats_rec.n_crits_in_epch" + Set gtmtypes("sgmnt_data",529,"off")=4504 + Set gtmtypes("sgmnt_data",529,"len")=8 + Set gtmtypes("sgmnt_data",529,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crits_in_epch")=529 + Set gtmtypes("sgmnt_data",530,"name")="sgmnt_data.gvstats_rec.sq_crit_failed" + Set gtmtypes("sgmnt_data",530,"off")=4512 + Set gtmtypes("sgmnt_data",530,"len")=8 + Set gtmtypes("sgmnt_data",530,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_failed")=530 + Set gtmtypes("sgmnt_data",531,"name")="sgmnt_data.gvstats_rec.n_crit_failed" + Set gtmtypes("sgmnt_data",531,"off")=4520 + Set gtmtypes("sgmnt_data",531,"len")=8 + Set gtmtypes("sgmnt_data",531,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_failed")=531 + Set gtmtypes("sgmnt_data",532,"name")="sgmnt_data.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("sgmnt_data",532,"off")=4528 + Set gtmtypes("sgmnt_data",532,"len")=8 + Set gtmtypes("sgmnt_data",532,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_que_slps")=532 + Set gtmtypes("sgmnt_data",533,"name")="sgmnt_data.gvstats_rec.n_crit_que_slps" + Set gtmtypes("sgmnt_data",533,"off")=4536 + Set gtmtypes("sgmnt_data",533,"len")=8 + Set gtmtypes("sgmnt_data",533,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_que_slps")=533 + Set gtmtypes("sgmnt_data",534,"name")="sgmnt_data.gvstats_rec.sq_crit_yields" + Set gtmtypes("sgmnt_data",534,"off")=4544 + Set gtmtypes("sgmnt_data",534,"len")=8 + Set gtmtypes("sgmnt_data",534,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.sq_crit_yields")=534 + Set gtmtypes("sgmnt_data",535,"name")="sgmnt_data.gvstats_rec.n_crit_yields" + Set gtmtypes("sgmnt_data",535,"off")=4552 + Set gtmtypes("sgmnt_data",535,"len")=8 + Set gtmtypes("sgmnt_data",535,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","gvstats_rec.n_crit_yields")=535 + Set gtmtypes("sgmnt_data",536,"name")="sgmnt_data.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("sgmnt_data",536,"off")=4560 + Set gtmtypes("sgmnt_data",536,"len")=48 + Set gtmtypes("sgmnt_data",536,"type")="char" + Set gtmtypfldindx("sgmnt_data","gvstats_rec_filler_4k_plus_512")=536 + Set gtmtypes("sgmnt_data",537,"name")="sgmnt_data.filler_4k_plus_512" + Set gtmtypes("sgmnt_data",537,"off")=4608 + Set gtmtypes("sgmnt_data",537,"len")=368 + Set gtmtypes("sgmnt_data",537,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_4k_plus_512")=537 + Set gtmtypes("sgmnt_data",538,"name")="sgmnt_data.intrpt_recov_resync_strm_seqno" + Set gtmtypes("sgmnt_data",538,"off")=4976 + Set gtmtypes("sgmnt_data",538,"len")=128 + Set gtmtypes("sgmnt_data",538,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","intrpt_recov_resync_strm_seqno")=538 + Set gtmtypes("sgmnt_data",538,"dim")=16 + Set gtmtypes("sgmnt_data",539,"name")="sgmnt_data.creation_db_ver" + Set gtmtypes("sgmnt_data",539,"off")=5104 + Set gtmtypes("sgmnt_data",539,"len")=4 + Set gtmtypes("sgmnt_data",539,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_db_ver")=539 + Set gtmtypes("sgmnt_data",540,"name")="sgmnt_data.creation_mdb_ver" + Set gtmtypes("sgmnt_data",540,"off")=5108 + Set gtmtypes("sgmnt_data",540,"len")=4 + Set gtmtypes("sgmnt_data",540,"type")="int" + Set gtmtypfldindx("sgmnt_data","creation_mdb_ver")=540 + Set gtmtypes("sgmnt_data",541,"name")="sgmnt_data.certified_for_upgrade_to" + Set gtmtypes("sgmnt_data",541,"off")=5112 + Set gtmtypes("sgmnt_data",541,"len")=4 + Set gtmtypes("sgmnt_data",541,"type")="int" + Set gtmtypfldindx("sgmnt_data","certified_for_upgrade_to")=541 + Set gtmtypes("sgmnt_data",542,"name")="sgmnt_data.filler_5k" + Set gtmtypes("sgmnt_data",542,"off")=5116 + Set gtmtypes("sgmnt_data",542,"len")=4 + Set gtmtypes("sgmnt_data",542,"type")="int" + Set gtmtypfldindx("sgmnt_data","filler_5k")=542 + Set gtmtypes("sgmnt_data",543,"name")="sgmnt_data.secshr_ops_index_filler" + Set gtmtypes("sgmnt_data",543,"off")=5120 + Set gtmtypes("sgmnt_data",543,"len")=4 + Set gtmtypes("sgmnt_data",543,"type")="int" + Set gtmtypfldindx("sgmnt_data","secshr_ops_index_filler")=543 + Set gtmtypes("sgmnt_data",544,"name")="sgmnt_data.secshr_ops_array_filler" + Set gtmtypes("sgmnt_data",544,"off")=5124 + Set gtmtypes("sgmnt_data",544,"len")=1020 + Set gtmtypes("sgmnt_data",544,"type")="int" + Set gtmtypfldindx("sgmnt_data","secshr_ops_array_filler")=544 + Set gtmtypes("sgmnt_data",544,"dim")=255 + Set gtmtypes("sgmnt_data",545,"name")="sgmnt_data.next_upgrd_warn" + Set gtmtypes("sgmnt_data",545,"off")=6144 + Set gtmtypes("sgmnt_data",545,"len")=24 + Set gtmtypes("sgmnt_data",545,"type")="compswap_time_field" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn")=545 + Set gtmtypes("sgmnt_data",546,"name")="sgmnt_data.next_upgrd_warn.time_latch" + Set gtmtypes("sgmnt_data",546,"off")=6144 + Set gtmtypes("sgmnt_data",546,"len")=8 + Set gtmtypes("sgmnt_data",546,"type")="global_latch_t" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch")=546 + Set gtmtypes("sgmnt_data",547,"name")="sgmnt_data.next_upgrd_warn.time_latch.u" + Set gtmtypes("sgmnt_data",547,"off")=6144 + Set gtmtypes("sgmnt_data",547,"len")=8 + Set gtmtypes("sgmnt_data",547,"type")="union" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u")=547 + Set gtmtypes("sgmnt_data",548,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("sgmnt_data",548,"off")=6144 + Set gtmtypes("sgmnt_data",548,"len")=8 + Set gtmtypes("sgmnt_data",548,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.pid_imgcnt")=548 + Set gtmtypes("sgmnt_data",549,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("sgmnt_data",549,"off")=6144 + Set gtmtypes("sgmnt_data",549,"len")=8 + Set gtmtypes("sgmnt_data",549,"type")="struct" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts")=549 + Set gtmtypes("sgmnt_data",550,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("sgmnt_data",550,"off")=6144 + Set gtmtypes("sgmnt_data",550,"len")=4 + Set gtmtypes("sgmnt_data",550,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts.latch_pid")=550 + Set gtmtypes("sgmnt_data",551,"name")="sgmnt_data.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("sgmnt_data",551,"off")=6148 + Set gtmtypes("sgmnt_data",551,"len")=4 + Set gtmtypes("sgmnt_data",551,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.time_latch.u.parts.latch_word")=551 + Set gtmtypes("sgmnt_data",552,"name")="sgmnt_data.next_upgrd_warn.hp_latch_space" + Set gtmtypes("sgmnt_data",552,"off")=6152 + Set gtmtypes("sgmnt_data",552,"len")=16 + Set gtmtypes("sgmnt_data",552,"type")="int" + Set gtmtypfldindx("sgmnt_data","next_upgrd_warn.hp_latch_space")=552 + Set gtmtypes("sgmnt_data",552,"dim")=4 + Set gtmtypes("sgmnt_data",553,"name")="sgmnt_data.is_encrypted" + Set gtmtypes("sgmnt_data",553,"off")=6168 + Set gtmtypes("sgmnt_data",553,"len")=4 + Set gtmtypes("sgmnt_data",553,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","is_encrypted")=553 + Set gtmtypes("sgmnt_data",554,"name")="sgmnt_data.db_trigger_cycle" + Set gtmtypes("sgmnt_data",554,"off")=6172 + Set gtmtypes("sgmnt_data",554,"len")=4 + Set gtmtypes("sgmnt_data",554,"type")="unsigned-int" + Set gtmtypfldindx("sgmnt_data","db_trigger_cycle")=554 + Set gtmtypes("sgmnt_data",555,"name")="sgmnt_data.strm_reg_seqno" + Set gtmtypes("sgmnt_data",555,"off")=6176 + Set gtmtypes("sgmnt_data",555,"len")=128 + Set gtmtypes("sgmnt_data",555,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","strm_reg_seqno")=555 + Set gtmtypes("sgmnt_data",555,"dim")=16 + Set gtmtypes("sgmnt_data",556,"name")="sgmnt_data.save_strm_reg_seqno" + Set gtmtypes("sgmnt_data",556,"off")=6304 + Set gtmtypes("sgmnt_data",556,"len")=128 + Set gtmtypes("sgmnt_data",556,"type")="uint64_t" + Set gtmtypfldindx("sgmnt_data","save_strm_reg_seqno")=556 + Set gtmtypes("sgmnt_data",556,"dim")=16 + Set gtmtypes("sgmnt_data",557,"name")="sgmnt_data.freeze_on_fail" + Set gtmtypes("sgmnt_data",557,"off")=6432 + Set gtmtypes("sgmnt_data",557,"len")=4 + Set gtmtypes("sgmnt_data",557,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","freeze_on_fail")=557 + Set gtmtypes("sgmnt_data",558,"name")="sgmnt_data.span_node_absent" + Set gtmtypes("sgmnt_data",558,"off")=6436 + Set gtmtypes("sgmnt_data",558,"len")=4 + Set gtmtypes("sgmnt_data",558,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","span_node_absent")=558 + Set gtmtypes("sgmnt_data",559,"name")="sgmnt_data.maxkeysz_assured" + Set gtmtypes("sgmnt_data",559,"off")=6440 + Set gtmtypes("sgmnt_data",559,"len")=4 + Set gtmtypes("sgmnt_data",559,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","maxkeysz_assured")=559 + Set gtmtypes("sgmnt_data",560,"name")="sgmnt_data.hasht_upgrade_needed" + Set gtmtypes("sgmnt_data",560,"off")=6444 + Set gtmtypes("sgmnt_data",560,"len")=4 + Set gtmtypes("sgmnt_data",560,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","hasht_upgrade_needed")=560 + Set gtmtypes("sgmnt_data",561,"name")="sgmnt_data.defer_allocate" + Set gtmtypes("sgmnt_data",561,"off")=6448 + Set gtmtypes("sgmnt_data",561,"len")=4 + Set gtmtypes("sgmnt_data",561,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","defer_allocate")=561 + Set gtmtypes("sgmnt_data",562,"name")="sgmnt_data.ftok_counter_halted" + Set gtmtypes("sgmnt_data",562,"off")=6452 + Set gtmtypes("sgmnt_data",562,"len")=4 + Set gtmtypes("sgmnt_data",562,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","ftok_counter_halted")=562 + Set gtmtypes("sgmnt_data",563,"name")="sgmnt_data.access_counter_halted" + Set gtmtypes("sgmnt_data",563,"off")=6456 + Set gtmtypes("sgmnt_data",563,"len")=4 + Set gtmtypes("sgmnt_data",563,"type")="boolean_t" + Set gtmtypfldindx("sgmnt_data","access_counter_halted")=563 + Set gtmtypes("sgmnt_data",564,"name")="sgmnt_data.filler_7k" + Set gtmtypes("sgmnt_data",564,"off")=6460 + Set gtmtypes("sgmnt_data",564,"len")=708 + Set gtmtypes("sgmnt_data",564,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_7k")=564 + Set gtmtypes("sgmnt_data",565,"name")="sgmnt_data.filler_8k" + Set gtmtypes("sgmnt_data",565,"off")=7168 + Set gtmtypes("sgmnt_data",565,"len")=1024 + Set gtmtypes("sgmnt_data",565,"type")="char" + Set gtmtypfldindx("sgmnt_data","filler_8k")=565 + ; + Set gtmtypes("shm_forw_multi_t")="struct" + Set gtmtypes("shm_forw_multi_t",0)=20 + Set gtmtypes("shm_forw_multi_t","len")=60 + Set gtmtypes("shm_forw_multi_t",1,"name")="shm_forw_multi_t.free_chain" + Set gtmtypes("shm_forw_multi_t",1,"off")=0 + Set gtmtypes("shm_forw_multi_t",1,"len")=8 + Set gtmtypes("shm_forw_multi_t",1,"type")="que_ent" + Set gtmtypfldindx("shm_forw_multi_t","free_chain")=1 + Set gtmtypes("shm_forw_multi_t",2,"name")="shm_forw_multi_t.free_chain.fl" + Set gtmtypes("shm_forw_multi_t",2,"off")=0 + Set gtmtypes("shm_forw_multi_t",2,"len")=4 + Set gtmtypes("shm_forw_multi_t",2,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","free_chain.fl")=2 + Set gtmtypes("shm_forw_multi_t",3,"name")="shm_forw_multi_t.free_chain.bl" + Set gtmtypes("shm_forw_multi_t",3,"off")=4 + Set gtmtypes("shm_forw_multi_t",3,"len")=4 + Set gtmtypes("shm_forw_multi_t",3,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","free_chain.bl")=3 + Set gtmtypes("shm_forw_multi_t",4,"name")="shm_forw_multi_t.same_hash_chain" + Set gtmtypes("shm_forw_multi_t",4,"off")=8 + Set gtmtypes("shm_forw_multi_t",4,"len")=8 + Set gtmtypes("shm_forw_multi_t",4,"type")="que_ent" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain")=4 + Set gtmtypes("shm_forw_multi_t",5,"name")="shm_forw_multi_t.same_hash_chain.fl" + Set gtmtypes("shm_forw_multi_t",5,"off")=8 + Set gtmtypes("shm_forw_multi_t",5,"len")=4 + Set gtmtypes("shm_forw_multi_t",5,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain.fl")=5 + Set gtmtypes("shm_forw_multi_t",6,"name")="shm_forw_multi_t.same_hash_chain.bl" + Set gtmtypes("shm_forw_multi_t",6,"off")=12 + Set gtmtypes("shm_forw_multi_t",6,"len")=4 + Set gtmtypes("shm_forw_multi_t",6,"type")="intptr_t" + Set gtmtypfldindx("shm_forw_multi_t","same_hash_chain.bl")=6 + Set gtmtypes("shm_forw_multi_t",7,"name")="shm_forw_multi_t.token" + Set gtmtypes("shm_forw_multi_t",7,"off")=16 + Set gtmtypes("shm_forw_multi_t",7,"len")=8 + Set gtmtypes("shm_forw_multi_t",7,"type")="uint64_t" + Set gtmtypfldindx("shm_forw_multi_t","token")=7 + Set gtmtypes("shm_forw_multi_t",8,"name")="shm_forw_multi_t.time" + Set gtmtypes("shm_forw_multi_t",8,"off")=24 + Set gtmtypes("shm_forw_multi_t",8,"len")=4 + Set gtmtypes("shm_forw_multi_t",8,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","time")=8 + Set gtmtypes("shm_forw_multi_t",9,"name")="shm_forw_multi_t.recstat" + Set gtmtypes("shm_forw_multi_t",9,"off")=28 + Set gtmtypes("shm_forw_multi_t",9,"len")=4 + Set gtmtypes("shm_forw_multi_t",9,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","recstat")=9 + Set gtmtypes("shm_forw_multi_t",10,"name")="shm_forw_multi_t.num_reg_total" + Set gtmtypes("shm_forw_multi_t",10,"off")=32 + Set gtmtypes("shm_forw_multi_t",10,"len")=4 + Set gtmtypes("shm_forw_multi_t",10,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_total")=10 + Set gtmtypes("shm_forw_multi_t",11,"name")="shm_forw_multi_t.num_reg_seen_backward" + Set gtmtypes("shm_forw_multi_t",11,"off")=36 + Set gtmtypes("shm_forw_multi_t",11,"len")=4 + Set gtmtypes("shm_forw_multi_t",11,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_seen_backward")=11 + Set gtmtypes("shm_forw_multi_t",12,"name")="shm_forw_multi_t.num_reg_seen_forward" + Set gtmtypes("shm_forw_multi_t",12,"off")=40 + Set gtmtypes("shm_forw_multi_t",12,"len")=4 + Set gtmtypes("shm_forw_multi_t",12,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_reg_seen_forward")=12 + Set gtmtypes("shm_forw_multi_t",13,"name")="shm_forw_multi_t.num_procs" + Set gtmtypes("shm_forw_multi_t",13,"off")=44 + Set gtmtypes("shm_forw_multi_t",13,"len")=4 + Set gtmtypes("shm_forw_multi_t",13,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","num_procs")=13 + Set gtmtypes("shm_forw_multi_t",14,"name")="shm_forw_multi_t.hash_index" + Set gtmtypes("shm_forw_multi_t",14,"off")=48 + Set gtmtypes("shm_forw_multi_t",14,"len")=4 + Set gtmtypes("shm_forw_multi_t",14,"type")="unsigned-int" + Set gtmtypfldindx("shm_forw_multi_t","hash_index")=14 + Set gtmtypes("shm_forw_multi_t",15,"name")="shm_forw_multi_t.mur_latch" + Set gtmtypes("shm_forw_multi_t",15,"off")=52 + Set gtmtypes("shm_forw_multi_t",15,"len")=8 + Set gtmtypes("shm_forw_multi_t",15,"type")="global_latch_t" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch")=15 + Set gtmtypes("shm_forw_multi_t",16,"name")="shm_forw_multi_t.mur_latch.u" + Set gtmtypes("shm_forw_multi_t",16,"off")=52 + Set gtmtypes("shm_forw_multi_t",16,"len")=8 + Set gtmtypes("shm_forw_multi_t",16,"type")="union" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u")=16 + Set gtmtypes("shm_forw_multi_t",17,"name")="shm_forw_multi_t.mur_latch.u.pid_imgcnt" + Set gtmtypes("shm_forw_multi_t",17,"off")=52 + Set gtmtypes("shm_forw_multi_t",17,"len")=8 + Set gtmtypes("shm_forw_multi_t",17,"type")="uint64_t" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.pid_imgcnt")=17 + Set gtmtypes("shm_forw_multi_t",18,"name")="shm_forw_multi_t.mur_latch.u.parts" + Set gtmtypes("shm_forw_multi_t",18,"off")=52 + Set gtmtypes("shm_forw_multi_t",18,"len")=8 + Set gtmtypes("shm_forw_multi_t",18,"type")="struct" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts")=18 + Set gtmtypes("shm_forw_multi_t",19,"name")="shm_forw_multi_t.mur_latch.u.parts.latch_pid" + Set gtmtypes("shm_forw_multi_t",19,"off")=52 + Set gtmtypes("shm_forw_multi_t",19,"len")=4 + Set gtmtypes("shm_forw_multi_t",19,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts.latch_pid")=19 + Set gtmtypes("shm_forw_multi_t",20,"name")="shm_forw_multi_t.mur_latch.u.parts.latch_word" + Set gtmtypes("shm_forw_multi_t",20,"off")=56 + Set gtmtypes("shm_forw_multi_t",20,"len")=4 + Set gtmtypes("shm_forw_multi_t",20,"type")="int" + Set gtmtypfldindx("shm_forw_multi_t","mur_latch.u.parts.latch_word")=20 + ; + Set gtmtypes("shm_parms")="struct" + Set gtmtypes("shm_parms",0)=3 + Set gtmtypes("shm_parms","len")=12 + Set gtmtypes("shm_parms",1,"name")="shm_parms.sgmnt_siz" + Set gtmtypes("shm_parms",1,"off")=0 + Set gtmtypes("shm_parms",1,"len")=4 + Set gtmtypes("shm_parms",1,"type")="ssize_t" + Set gtmtypfldindx("shm_parms","sgmnt_siz")=1 + Set gtmtypes("shm_parms",2,"name")="shm_parms.shmid" + Set gtmtypes("shm_parms",2,"off")=4 + Set gtmtypes("shm_parms",2,"len")=4 + Set gtmtypes("shm_parms",2,"type")="int" + Set gtmtypfldindx("shm_parms","shmid")=2 + Set gtmtypes("shm_parms",3,"name")="shm_parms.key" + Set gtmtypes("shm_parms",3,"off")=8 + Set gtmtypes("shm_parms",3,"len")=4 + Set gtmtypes("shm_parms",3,"type")="key_t" + Set gtmtypfldindx("shm_parms","key")=3 + ; + Set gtmtypes("shm_reg_ctl_t")="struct" + Set gtmtypes("shm_reg_ctl_t",0)=9 + Set gtmtypes("shm_reg_ctl_t","len")=56 + Set gtmtypes("shm_reg_ctl_t",1,"name")="shm_reg_ctl_t.shm_forw_multi" + Set gtmtypes("shm_reg_ctl_t",1,"off")=0 + Set gtmtypes("shm_reg_ctl_t",1,"len")=4 + Set gtmtypes("shm_reg_ctl_t",1,"type")="addr" + Set gtmtypfldindx("shm_reg_ctl_t","shm_forw_multi")=1 + Set gtmtypes("shm_reg_ctl_t",2,"name")="shm_reg_ctl_t.consist_jnl_seqno" + Set gtmtypes("shm_reg_ctl_t",2,"off")=4 + Set gtmtypes("shm_reg_ctl_t",2,"len")=8 + Set gtmtypes("shm_reg_ctl_t",2,"type")="uint64_t" + Set gtmtypfldindx("shm_reg_ctl_t","consist_jnl_seqno")=2 + Set gtmtypes("shm_reg_ctl_t",3,"name")="shm_reg_ctl_t.jnlext_shm_size" + Set gtmtypes("shm_reg_ctl_t",3,"off")=12 + Set gtmtypes("shm_reg_ctl_t",3,"len")=4 + Set gtmtypes("shm_reg_ctl_t",3,"type")="size_t" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_shm_size")=3 + Set gtmtypes("shm_reg_ctl_t",4,"name")="shm_reg_ctl_t.owning_pid" + Set gtmtypes("shm_reg_ctl_t",4,"off")=16 + Set gtmtypes("shm_reg_ctl_t",4,"len")=4 + Set gtmtypes("shm_reg_ctl_t",4,"type")="pid_t" + Set gtmtypfldindx("shm_reg_ctl_t","owning_pid")=4 + Set gtmtypes("shm_reg_ctl_t",5,"name")="shm_reg_ctl_t.err_cnt" + Set gtmtypes("shm_reg_ctl_t",5,"off")=20 + Set gtmtypes("shm_reg_ctl_t",5,"len")=4 + Set gtmtypes("shm_reg_ctl_t",5,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","err_cnt")=5 + Set gtmtypes("shm_reg_ctl_t",6,"name")="shm_reg_ctl_t.wrn_count" + Set gtmtypes("shm_reg_ctl_t",6,"off")=24 + Set gtmtypes("shm_reg_ctl_t",6,"len")=4 + Set gtmtypes("shm_reg_ctl_t",6,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","wrn_count")=6 + Set gtmtypes("shm_reg_ctl_t",7,"name")="shm_reg_ctl_t.extr_file_created" + Set gtmtypes("shm_reg_ctl_t",7,"off")=28 + Set gtmtypes("shm_reg_ctl_t",7,"len")=12 + Set gtmtypes("shm_reg_ctl_t",7,"type")="boolean_t" + Set gtmtypfldindx("shm_reg_ctl_t","extr_file_created")=7 + Set gtmtypes("shm_reg_ctl_t",7,"dim")=3 + Set gtmtypes("shm_reg_ctl_t",8,"name")="shm_reg_ctl_t.jnlext_shmid" + Set gtmtypes("shm_reg_ctl_t",8,"off")=40 + Set gtmtypes("shm_reg_ctl_t",8,"len")=4 + Set gtmtypes("shm_reg_ctl_t",8,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_shmid")=8 + Set gtmtypes("shm_reg_ctl_t",9,"name")="shm_reg_ctl_t.jnlext_list_size" + Set gtmtypes("shm_reg_ctl_t",9,"off")=44 + Set gtmtypes("shm_reg_ctl_t",9,"len")=12 + Set gtmtypes("shm_reg_ctl_t",9,"type")="int" + Set gtmtypfldindx("shm_reg_ctl_t","jnlext_list_size")=9 + Set gtmtypes("shm_reg_ctl_t",9,"dim")=3 + ; + Set gtmtypes("shm_snapshot_t")="struct" + Set gtmtypes("shm_snapshot_t",0)=587 + Set gtmtypes("shm_snapshot_t","len")=12360 + Set gtmtypes("shm_snapshot_t",1,"name")="shm_snapshot_t.ss_info" + Set gtmtypes("shm_snapshot_t",1,"off")=0 + Set gtmtypes("shm_snapshot_t",1,"len")=4136 + Set gtmtypes("shm_snapshot_t",1,"type")="snapshot_info_t" + Set gtmtypfldindx("shm_snapshot_t","ss_info")=1 + Set gtmtypes("shm_snapshot_t",2,"name")="shm_snapshot_t.ss_info.ss_pid" + Set gtmtypes("shm_snapshot_t",2,"off")=0 + Set gtmtypes("shm_snapshot_t",2,"len")=4 + Set gtmtypes("shm_snapshot_t",2,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_pid")=2 + Set gtmtypes("shm_snapshot_t",3,"name")="shm_snapshot_t.ss_info.snapshot_tn" + Set gtmtypes("shm_snapshot_t",3,"off")=4 + Set gtmtypes("shm_snapshot_t",3,"len")=8 + Set gtmtypes("shm_snapshot_t",3,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","ss_info.snapshot_tn")=3 + Set gtmtypes("shm_snapshot_t",4,"name")="shm_snapshot_t.ss_info.db_blk_size" + Set gtmtypes("shm_snapshot_t",4,"off")=12 + Set gtmtypes("shm_snapshot_t",4,"len")=4 + Set gtmtypes("shm_snapshot_t",4,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.db_blk_size")=4 + Set gtmtypes("shm_snapshot_t",5,"name")="shm_snapshot_t.ss_info.free_blks" + Set gtmtypes("shm_snapshot_t",5,"off")=16 + Set gtmtypes("shm_snapshot_t",5,"len")=4 + Set gtmtypes("shm_snapshot_t",5,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.free_blks")=5 + Set gtmtypes("shm_snapshot_t",6,"name")="shm_snapshot_t.ss_info.total_blks" + Set gtmtypes("shm_snapshot_t",6,"off")=20 + Set gtmtypes("shm_snapshot_t",6,"len")=4 + Set gtmtypes("shm_snapshot_t",6,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.total_blks")=6 + Set gtmtypes("shm_snapshot_t",7,"name")="shm_snapshot_t.ss_info.shadow_file" + Set gtmtypes("shm_snapshot_t",7,"off")=24 + Set gtmtypes("shm_snapshot_t",7,"len")=4097 + Set gtmtypes("shm_snapshot_t",7,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","ss_info.shadow_file")=7 + Set gtmtypes("shm_snapshot_t",8,"name")="shm_snapshot_t.ss_info.shadow_vbn" + Set gtmtypes("shm_snapshot_t",8,"off")=4124 + Set gtmtypes("shm_snapshot_t",8,"len")=4 + Set gtmtypes("shm_snapshot_t",8,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.shadow_vbn")=8 + Set gtmtypes("shm_snapshot_t",9,"name")="shm_snapshot_t.ss_info.ss_shmid" + Set gtmtypes("shm_snapshot_t",9,"off")=4128 + Set gtmtypes("shm_snapshot_t",9,"len")=4 + Set gtmtypes("shm_snapshot_t",9,"type")="long" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_shmid")=9 + Set gtmtypes("shm_snapshot_t",10,"name")="shm_snapshot_t.ss_info.ss_shmsize" + Set gtmtypes("shm_snapshot_t",10,"off")=4132 + Set gtmtypes("shm_snapshot_t",10,"len")=4 + Set gtmtypes("shm_snapshot_t",10,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","ss_info.ss_shmsize")=10 + Set gtmtypes("shm_snapshot_t",11,"name")="shm_snapshot_t.failure_errno" + Set gtmtypes("shm_snapshot_t",11,"off")=4136 + Set gtmtypes("shm_snapshot_t",11,"len")=4 + Set gtmtypes("shm_snapshot_t",11,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","failure_errno")=11 + Set gtmtypes("shm_snapshot_t",12,"name")="shm_snapshot_t.failed_pid" + Set gtmtypes("shm_snapshot_t",12,"off")=4140 + Set gtmtypes("shm_snapshot_t",12,"len")=4 + Set gtmtypes("shm_snapshot_t",12,"type")="pid_t" + Set gtmtypfldindx("shm_snapshot_t","failed_pid")=12 + Set gtmtypes("shm_snapshot_t",13,"name")="shm_snapshot_t.in_use" + Set gtmtypes("shm_snapshot_t",13,"off")=4144 + Set gtmtypes("shm_snapshot_t",13,"len")=4 + Set gtmtypes("shm_snapshot_t",13,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","in_use")=13 + Set gtmtypes("shm_snapshot_t",14,"name")="shm_snapshot_t.preserve_snapshot" + Set gtmtypes("shm_snapshot_t",14,"off")=4148 + Set gtmtypes("shm_snapshot_t",14,"len")=4 + Set gtmtypes("shm_snapshot_t",14,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","preserve_snapshot")=14 + Set gtmtypes("shm_snapshot_t",15,"name")="shm_snapshot_t.bitmap_latch" + Set gtmtypes("shm_snapshot_t",15,"off")=4152 + Set gtmtypes("shm_snapshot_t",15,"len")=8 + Set gtmtypes("shm_snapshot_t",15,"type")="global_latch_t" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch")=15 + Set gtmtypes("shm_snapshot_t",16,"name")="shm_snapshot_t.bitmap_latch.u" + Set gtmtypes("shm_snapshot_t",16,"off")=4152 + Set gtmtypes("shm_snapshot_t",16,"len")=8 + Set gtmtypes("shm_snapshot_t",16,"type")="union" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u")=16 + Set gtmtypes("shm_snapshot_t",17,"name")="shm_snapshot_t.bitmap_latch.u.pid_imgcnt" + Set gtmtypes("shm_snapshot_t",17,"off")=4152 + Set gtmtypes("shm_snapshot_t",17,"len")=8 + Set gtmtypes("shm_snapshot_t",17,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.pid_imgcnt")=17 + Set gtmtypes("shm_snapshot_t",18,"name")="shm_snapshot_t.bitmap_latch.u.parts" + Set gtmtypes("shm_snapshot_t",18,"off")=4152 + Set gtmtypes("shm_snapshot_t",18,"len")=8 + Set gtmtypes("shm_snapshot_t",18,"type")="struct" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts")=18 + Set gtmtypes("shm_snapshot_t",19,"name")="shm_snapshot_t.bitmap_latch.u.parts.latch_pid" + Set gtmtypes("shm_snapshot_t",19,"off")=4152 + Set gtmtypes("shm_snapshot_t",19,"len")=4 + Set gtmtypes("shm_snapshot_t",19,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts.latch_pid")=19 + Set gtmtypes("shm_snapshot_t",20,"name")="shm_snapshot_t.bitmap_latch.u.parts.latch_word" + Set gtmtypes("shm_snapshot_t",20,"off")=4156 + Set gtmtypes("shm_snapshot_t",20,"len")=4 + Set gtmtypes("shm_snapshot_t",20,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","bitmap_latch.u.parts.latch_word")=20 + Set gtmtypes("shm_snapshot_t",21,"name")="shm_snapshot_t.ss_tn_count" + Set gtmtypes("shm_snapshot_t",21,"off")=4160 + Set gtmtypes("shm_snapshot_t",21,"len")=8 + Set gtmtypes("shm_snapshot_t",21,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","ss_tn_count")=21 + Set gtmtypes("shm_snapshot_t",22,"name")="shm_snapshot_t.shadow_file_header" + Set gtmtypes("shm_snapshot_t",22,"off")=4168 + Set gtmtypes("shm_snapshot_t",22,"len")=8192 + Set gtmtypes("shm_snapshot_t",22,"type")="sgmnt_data" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header")=22 + Set gtmtypes("shm_snapshot_t",23,"name")="shm_snapshot_t.shadow_file_header.label" + Set gtmtypes("shm_snapshot_t",23,"off")=4168 + Set gtmtypes("shm_snapshot_t",23,"len")=12 + Set gtmtypes("shm_snapshot_t",23,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.label")=23 + Set gtmtypes("shm_snapshot_t",24,"name")="shm_snapshot_t.shadow_file_header.blk_size" + Set gtmtypes("shm_snapshot_t",24,"off")=4180 + Set gtmtypes("shm_snapshot_t",24,"len")=4 + Set gtmtypes("shm_snapshot_t",24,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blk_size")=24 + Set gtmtypes("shm_snapshot_t",25,"name")="shm_snapshot_t.shadow_file_header.master_map_len" + Set gtmtypes("shm_snapshot_t",25,"off")=4184 + Set gtmtypes("shm_snapshot_t",25,"len")=4 + Set gtmtypes("shm_snapshot_t",25,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.master_map_len")=25 + Set gtmtypes("shm_snapshot_t",26,"name")="shm_snapshot_t.shadow_file_header.bplmap" + Set gtmtypes("shm_snapshot_t",26,"off")=4188 + Set gtmtypes("shm_snapshot_t",26,"len")=4 + Set gtmtypes("shm_snapshot_t",26,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bplmap")=26 + Set gtmtypes("shm_snapshot_t",27,"name")="shm_snapshot_t.shadow_file_header.start_vbn" + Set gtmtypes("shm_snapshot_t",27,"off")=4192 + Set gtmtypes("shm_snapshot_t",27,"len")=4 + Set gtmtypes("shm_snapshot_t",27,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.start_vbn")=27 + Set gtmtypes("shm_snapshot_t",28,"name")="shm_snapshot_t.shadow_file_header.acc_meth" + Set gtmtypes("shm_snapshot_t",28,"off")=4196 + Set gtmtypes("shm_snapshot_t",28,"len")=4 + Set gtmtypes("shm_snapshot_t",28,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.acc_meth")=28 + Set gtmtypes("shm_snapshot_t",29,"name")="shm_snapshot_t.shadow_file_header.max_bts" + Set gtmtypes("shm_snapshot_t",29,"off")=4200 + Set gtmtypes("shm_snapshot_t",29,"len")=4 + Set gtmtypes("shm_snapshot_t",29,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_bts")=29 + Set gtmtypes("shm_snapshot_t",30,"name")="shm_snapshot_t.shadow_file_header.n_bts" + Set gtmtypes("shm_snapshot_t",30,"off")=4204 + Set gtmtypes("shm_snapshot_t",30,"len")=4 + Set gtmtypes("shm_snapshot_t",30,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bts")=30 + Set gtmtypes("shm_snapshot_t",31,"name")="shm_snapshot_t.shadow_file_header.bt_buckets" + Set gtmtypes("shm_snapshot_t",31,"off")=4208 + Set gtmtypes("shm_snapshot_t",31,"len")=4 + Set gtmtypes("shm_snapshot_t",31,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_buckets")=31 + Set gtmtypes("shm_snapshot_t",32,"name")="shm_snapshot_t.shadow_file_header.reserved_bytes" + Set gtmtypes("shm_snapshot_t",32,"off")=4212 + Set gtmtypes("shm_snapshot_t",32,"len")=4 + Set gtmtypes("shm_snapshot_t",32,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bytes")=32 + Set gtmtypes("shm_snapshot_t",33,"name")="shm_snapshot_t.shadow_file_header.max_rec_size" + Set gtmtypes("shm_snapshot_t",33,"off")=4216 + Set gtmtypes("shm_snapshot_t",33,"len")=4 + Set gtmtypes("shm_snapshot_t",33,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_rec_size")=33 + Set gtmtypes("shm_snapshot_t",34,"name")="shm_snapshot_t.shadow_file_header.max_key_size" + Set gtmtypes("shm_snapshot_t",34,"off")=4220 + Set gtmtypes("shm_snapshot_t",34,"len")=4 + Set gtmtypes("shm_snapshot_t",34,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_key_size")=34 + Set gtmtypes("shm_snapshot_t",35,"name")="shm_snapshot_t.shadow_file_header.lock_space_size" + Set gtmtypes("shm_snapshot_t",35,"off")=4224 + Set gtmtypes("shm_snapshot_t",35,"len")=4 + Set gtmtypes("shm_snapshot_t",35,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lock_space_size")=35 + Set gtmtypes("shm_snapshot_t",36,"name")="shm_snapshot_t.shadow_file_header.extension_size" + Set gtmtypes("shm_snapshot_t",36,"off")=4228 + Set gtmtypes("shm_snapshot_t",36,"len")=4 + Set gtmtypes("shm_snapshot_t",36,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.extension_size")=36 + Set gtmtypes("shm_snapshot_t",37,"name")="shm_snapshot_t.shadow_file_header.def_coll" + Set gtmtypes("shm_snapshot_t",37,"off")=4232 + Set gtmtypes("shm_snapshot_t",37,"len")=4 + Set gtmtypes("shm_snapshot_t",37,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.def_coll")=37 + Set gtmtypes("shm_snapshot_t",38,"name")="shm_snapshot_t.shadow_file_header.def_coll_ver" + Set gtmtypes("shm_snapshot_t",38,"off")=4236 + Set gtmtypes("shm_snapshot_t",38,"len")=4 + Set gtmtypes("shm_snapshot_t",38,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.def_coll_ver")=38 + Set gtmtypes("shm_snapshot_t",39,"name")="shm_snapshot_t.shadow_file_header.std_null_coll" + Set gtmtypes("shm_snapshot_t",39,"off")=4240 + Set gtmtypes("shm_snapshot_t",39,"len")=4 + Set gtmtypes("shm_snapshot_t",39,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.std_null_coll")=39 + Set gtmtypes("shm_snapshot_t",40,"name")="shm_snapshot_t.shadow_file_header.null_subs" + Set gtmtypes("shm_snapshot_t",40,"off")=4244 + Set gtmtypes("shm_snapshot_t",40,"len")=4 + Set gtmtypes("shm_snapshot_t",40,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.null_subs")=40 + Set gtmtypes("shm_snapshot_t",41,"name")="shm_snapshot_t.shadow_file_header.free_space" + Set gtmtypes("shm_snapshot_t",41,"off")=4248 + Set gtmtypes("shm_snapshot_t",41,"len")=4 + Set gtmtypes("shm_snapshot_t",41,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.free_space")=41 + Set gtmtypes("shm_snapshot_t",42,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms" + Set gtmtypes("shm_snapshot_t",42,"off")=4252 + Set gtmtypes("shm_snapshot_t",42,"len")=16 + Set gtmtypes("shm_snapshot_t",42,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms")=42 + Set gtmtypes("shm_snapshot_t",43,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("shm_snapshot_t",43,"off")=4252 + Set gtmtypes("shm_snapshot_t",43,"len")=4 + Set gtmtypes("shm_snapshot_t",43,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_hard_spin_count")=43 + Set gtmtypes("shm_snapshot_t",44,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("shm_snapshot_t",44,"off")=4256 + Set gtmtypes("shm_snapshot_t",44,"len")=4 + Set gtmtypes("shm_snapshot_t",44,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count")=44 + Set gtmtypes("shm_snapshot_t",45,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("shm_snapshot_t",45,"off")=4260 + Set gtmtypes("shm_snapshot_t",45,"len")=4 + Set gtmtypes("shm_snapshot_t",45,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask")=45 + Set gtmtypes("shm_snapshot_t",46,"name")="shm_snapshot_t.shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("shm_snapshot_t",46,"off")=4264 + Set gtmtypes("shm_snapshot_t",46,"len")=4 + Set gtmtypes("shm_snapshot_t",46,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size")=46 + Set gtmtypes("shm_snapshot_t",47,"name")="shm_snapshot_t.shadow_file_header.max_update_array_size" + Set gtmtypes("shm_snapshot_t",47,"off")=4268 + Set gtmtypes("shm_snapshot_t",47,"len")=4 + Set gtmtypes("shm_snapshot_t",47,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_update_array_size")=47 + Set gtmtypes("shm_snapshot_t",48,"name")="shm_snapshot_t.shadow_file_header.max_non_bm_update_array_size" + Set gtmtypes("shm_snapshot_t",48,"off")=4272 + Set gtmtypes("shm_snapshot_t",48,"len")=4 + Set gtmtypes("shm_snapshot_t",48,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_non_bm_update_array_size")=48 + Set gtmtypes("shm_snapshot_t",49,"name")="shm_snapshot_t.shadow_file_header.file_corrupt" + Set gtmtypes("shm_snapshot_t",49,"off")=4276 + Set gtmtypes("shm_snapshot_t",49,"len")=4 + Set gtmtypes("shm_snapshot_t",49,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.file_corrupt")=49 + Set gtmtypes("shm_snapshot_t",50,"name")="shm_snapshot_t.shadow_file_header.minor_dbver" + Set gtmtypes("shm_snapshot_t",50,"off")=4280 + Set gtmtypes("shm_snapshot_t",50,"len")=4 + Set gtmtypes("shm_snapshot_t",50,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.minor_dbver")=50 + Set gtmtypes("shm_snapshot_t",51,"name")="shm_snapshot_t.shadow_file_header.jnl_checksum" + Set gtmtypes("shm_snapshot_t",51,"off")=4284 + Set gtmtypes("shm_snapshot_t",51,"len")=4 + Set gtmtypes("shm_snapshot_t",51,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_checksum")=51 + Set gtmtypes("shm_snapshot_t",52,"name")="shm_snapshot_t.shadow_file_header.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("shm_snapshot_t",52,"off")=4288 + Set gtmtypes("shm_snapshot_t",52,"len")=4 + Set gtmtypes("shm_snapshot_t",52,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcs_phase2_commit_wait_spincnt")=52 + Set gtmtypes("shm_snapshot_t",53,"name")="shm_snapshot_t.shadow_file_header.last_mdb_ver" + Set gtmtypes("shm_snapshot_t",53,"off")=4292 + Set gtmtypes("shm_snapshot_t",53,"len")=4 + Set gtmtypes("shm_snapshot_t",53,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_mdb_ver")=53 + Set gtmtypes("shm_snapshot_t",54,"name")="shm_snapshot_t.shadow_file_header.filler_created" + Set gtmtypes("shm_snapshot_t",54,"off")=4296 + Set gtmtypes("shm_snapshot_t",54,"len")=52 + Set gtmtypes("shm_snapshot_t",54,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_created")=54 + Set gtmtypes("shm_snapshot_t",55,"name")="shm_snapshot_t.shadow_file_header.createinprogress" + Set gtmtypes("shm_snapshot_t",55,"off")=4348 + Set gtmtypes("shm_snapshot_t",55,"len")=4 + Set gtmtypes("shm_snapshot_t",55,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.createinprogress")=55 + Set gtmtypes("shm_snapshot_t",56,"name")="shm_snapshot_t.shadow_file_header.creation_time4" + Set gtmtypes("shm_snapshot_t",56,"off")=4352 + Set gtmtypes("shm_snapshot_t",56,"len")=4 + Set gtmtypes("shm_snapshot_t",56,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_time4")=56 + Set gtmtypes("shm_snapshot_t",57,"name")="shm_snapshot_t.shadow_file_header.creation_filler_8byte" + Set gtmtypes("shm_snapshot_t",57,"off")=4356 + Set gtmtypes("shm_snapshot_t",57,"len")=4 + Set gtmtypes("shm_snapshot_t",57,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_filler_8byte")=57 + Set gtmtypes("shm_snapshot_t",58,"name")="shm_snapshot_t.shadow_file_header.max_tn" + Set gtmtypes("shm_snapshot_t",58,"off")=4360 + Set gtmtypes("shm_snapshot_t",58,"len")=8 + Set gtmtypes("shm_snapshot_t",58,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_tn")=58 + Set gtmtypes("shm_snapshot_t",59,"name")="shm_snapshot_t.shadow_file_header.max_tn_warn" + Set gtmtypes("shm_snapshot_t",59,"off")=4368 + Set gtmtypes("shm_snapshot_t",59,"len")=8 + Set gtmtypes("shm_snapshot_t",59,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.max_tn_warn")=59 + Set gtmtypes("shm_snapshot_t",60,"name")="shm_snapshot_t.shadow_file_header.last_inc_backup" + Set gtmtypes("shm_snapshot_t",60,"off")=4376 + Set gtmtypes("shm_snapshot_t",60,"len")=8 + Set gtmtypes("shm_snapshot_t",60,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_inc_backup")=60 + Set gtmtypes("shm_snapshot_t",61,"name")="shm_snapshot_t.shadow_file_header.last_com_backup" + Set gtmtypes("shm_snapshot_t",61,"off")=4384 + Set gtmtypes("shm_snapshot_t",61,"len")=8 + Set gtmtypes("shm_snapshot_t",61,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_com_backup")=61 + Set gtmtypes("shm_snapshot_t",62,"name")="shm_snapshot_t.shadow_file_header.last_rec_backup" + Set gtmtypes("shm_snapshot_t",62,"off")=4392 + Set gtmtypes("shm_snapshot_t",62,"len")=8 + Set gtmtypes("shm_snapshot_t",62,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_rec_backup")=62 + Set gtmtypes("shm_snapshot_t",63,"name")="shm_snapshot_t.shadow_file_header.last_inc_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",63,"off")=4400 + Set gtmtypes("shm_snapshot_t",63,"len")=4 + Set gtmtypes("shm_snapshot_t",63,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_inc_bkup_last_blk")=63 + Set gtmtypes("shm_snapshot_t",64,"name")="shm_snapshot_t.shadow_file_header.last_com_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",64,"off")=4404 + Set gtmtypes("shm_snapshot_t",64,"len")=4 + Set gtmtypes("shm_snapshot_t",64,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_com_bkup_last_blk")=64 + Set gtmtypes("shm_snapshot_t",65,"name")="shm_snapshot_t.shadow_file_header.last_rec_bkup_last_blk" + Set gtmtypes("shm_snapshot_t",65,"off")=4408 + Set gtmtypes("shm_snapshot_t",65,"len")=4 + Set gtmtypes("shm_snapshot_t",65,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.last_rec_bkup_last_blk")=65 + Set gtmtypes("shm_snapshot_t",66,"name")="shm_snapshot_t.shadow_file_header.reorg_restart_block" + Set gtmtypes("shm_snapshot_t",66,"off")=4412 + Set gtmtypes("shm_snapshot_t",66,"len")=4 + Set gtmtypes("shm_snapshot_t",66,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_restart_block")=66 + Set gtmtypes("shm_snapshot_t",67,"name")="shm_snapshot_t.shadow_file_header.filler_256" + Set gtmtypes("shm_snapshot_t",67,"off")=4416 + Set gtmtypes("shm_snapshot_t",67,"len")=8 + Set gtmtypes("shm_snapshot_t",67,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_256")=67 + Set gtmtypes("shm_snapshot_t",68,"name")="shm_snapshot_t.shadow_file_header.now_running" + Set gtmtypes("shm_snapshot_t",68,"off")=4424 + Set gtmtypes("shm_snapshot_t",68,"len")=36 + Set gtmtypes("shm_snapshot_t",68,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.now_running")=68 + Set gtmtypes("shm_snapshot_t",69,"name")="shm_snapshot_t.shadow_file_header.filler_owner_node" + Set gtmtypes("shm_snapshot_t",69,"off")=4460 + Set gtmtypes("shm_snapshot_t",69,"len")=4 + Set gtmtypes("shm_snapshot_t",69,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_owner_node")=69 + Set gtmtypes("shm_snapshot_t",70,"name")="shm_snapshot_t.shadow_file_header.image_count" + Set gtmtypes("shm_snapshot_t",70,"off")=4464 + Set gtmtypes("shm_snapshot_t",70,"len")=4 + Set gtmtypes("shm_snapshot_t",70,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.image_count")=70 + Set gtmtypes("shm_snapshot_t",71,"name")="shm_snapshot_t.shadow_file_header.freeze" + Set gtmtypes("shm_snapshot_t",71,"off")=4468 + Set gtmtypes("shm_snapshot_t",71,"len")=4 + Set gtmtypes("shm_snapshot_t",71,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.freeze")=71 + Set gtmtypes("shm_snapshot_t",72,"name")="shm_snapshot_t.shadow_file_header.kill_in_prog" + Set gtmtypes("shm_snapshot_t",72,"off")=4472 + Set gtmtypes("shm_snapshot_t",72,"len")=4 + Set gtmtypes("shm_snapshot_t",72,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.kill_in_prog")=72 + Set gtmtypes("shm_snapshot_t",73,"name")="shm_snapshot_t.shadow_file_header.abandoned_kills" + Set gtmtypes("shm_snapshot_t",73,"off")=4476 + Set gtmtypes("shm_snapshot_t",73,"len")=4 + Set gtmtypes("shm_snapshot_t",73,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.abandoned_kills")=73 + Set gtmtypes("shm_snapshot_t",74,"name")="shm_snapshot_t.shadow_file_header.filler_320" + Set gtmtypes("shm_snapshot_t",74,"off")=4480 + Set gtmtypes("shm_snapshot_t",74,"len")=8 + Set gtmtypes("shm_snapshot_t",74,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_320")=74 + Set gtmtypes("shm_snapshot_t",75,"name")="shm_snapshot_t.shadow_file_header.tn_upgrd_blks_0" + Set gtmtypes("shm_snapshot_t",75,"off")=4488 + Set gtmtypes("shm_snapshot_t",75,"len")=8 + Set gtmtypes("shm_snapshot_t",75,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tn_upgrd_blks_0")=75 + Set gtmtypes("shm_snapshot_t",76,"name")="shm_snapshot_t.shadow_file_header.desired_db_format_tn" + Set gtmtypes("shm_snapshot_t",76,"off")=4496 + Set gtmtypes("shm_snapshot_t",76,"len")=8 + Set gtmtypes("shm_snapshot_t",76,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.desired_db_format_tn")=76 + Set gtmtypes("shm_snapshot_t",77,"name")="shm_snapshot_t.shadow_file_header.reorg_db_fmt_start_tn" + Set gtmtypes("shm_snapshot_t",77,"off")=4504 + Set gtmtypes("shm_snapshot_t",77,"len")=8 + Set gtmtypes("shm_snapshot_t",77,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_db_fmt_start_tn")=77 + Set gtmtypes("shm_snapshot_t",78,"name")="shm_snapshot_t.shadow_file_header.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("shm_snapshot_t",78,"off")=4512 + Set gtmtypes("shm_snapshot_t",78,"len")=4 + Set gtmtypes("shm_snapshot_t",78,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_upgrd_dwngrd_restart_block")=78 + Set gtmtypes("shm_snapshot_t",79,"name")="shm_snapshot_t.shadow_file_header.blks_to_upgrd" + Set gtmtypes("shm_snapshot_t",79,"off")=4516 + Set gtmtypes("shm_snapshot_t",79,"len")=4 + Set gtmtypes("shm_snapshot_t",79,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blks_to_upgrd")=79 + Set gtmtypes("shm_snapshot_t",80,"name")="shm_snapshot_t.shadow_file_header.blks_to_upgrd_subzero_error" + Set gtmtypes("shm_snapshot_t",80,"off")=4520 + Set gtmtypes("shm_snapshot_t",80,"len")=4 + Set gtmtypes("shm_snapshot_t",80,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.blks_to_upgrd_subzero_error")=80 + Set gtmtypes("shm_snapshot_t",81,"name")="shm_snapshot_t.shadow_file_header.desired_db_format" + Set gtmtypes("shm_snapshot_t",81,"off")=4524 + Set gtmtypes("shm_snapshot_t",81,"len")=4 + Set gtmtypes("shm_snapshot_t",81,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.desired_db_format")=81 + Set gtmtypes("shm_snapshot_t",82,"name")="shm_snapshot_t.shadow_file_header.fully_upgraded" + Set gtmtypes("shm_snapshot_t",82,"off")=4528 + Set gtmtypes("shm_snapshot_t",82,"len")=4 + Set gtmtypes("shm_snapshot_t",82,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.fully_upgraded")=82 + Set gtmtypes("shm_snapshot_t",83,"name")="shm_snapshot_t.shadow_file_header.db_got_to_v5_once" + Set gtmtypes("shm_snapshot_t",83,"off")=4532 + Set gtmtypes("shm_snapshot_t",83,"len")=4 + Set gtmtypes("shm_snapshot_t",83,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_got_to_v5_once")=83 + Set gtmtypes("shm_snapshot_t",84,"name")="shm_snapshot_t.shadow_file_header.opened_by_gtmv53" + Set gtmtypes("shm_snapshot_t",84,"off")=4536 + Set gtmtypes("shm_snapshot_t",84,"len")=4 + Set gtmtypes("shm_snapshot_t",84,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.opened_by_gtmv53")=84 + Set gtmtypes("shm_snapshot_t",85,"name")="shm_snapshot_t.shadow_file_header.filler_384" + Set gtmtypes("shm_snapshot_t",85,"off")=4540 + Set gtmtypes("shm_snapshot_t",85,"len")=12 + Set gtmtypes("shm_snapshot_t",85,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_384")=85 + Set gtmtypes("shm_snapshot_t",86,"name")="shm_snapshot_t.shadow_file_header.trans_hist" + Set gtmtypes("shm_snapshot_t",86,"off")=4552 + Set gtmtypes("shm_snapshot_t",86,"len")=56 + Set gtmtypes("shm_snapshot_t",86,"type")="th_index" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist")=86 + Set gtmtypes("shm_snapshot_t",87,"name")="shm_snapshot_t.shadow_file_header.trans_hist.curr_tn" + Set gtmtypes("shm_snapshot_t",87,"off")=4552 + Set gtmtypes("shm_snapshot_t",87,"len")=8 + Set gtmtypes("shm_snapshot_t",87,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.curr_tn")=87 + Set gtmtypes("shm_snapshot_t",88,"name")="shm_snapshot_t.shadow_file_header.trans_hist.early_tn" + Set gtmtypes("shm_snapshot_t",88,"off")=4560 + Set gtmtypes("shm_snapshot_t",88,"len")=8 + Set gtmtypes("shm_snapshot_t",88,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.early_tn")=88 + Set gtmtypes("shm_snapshot_t",89,"name")="shm_snapshot_t.shadow_file_header.trans_hist.last_mm_sync" + Set gtmtypes("shm_snapshot_t",89,"off")=4568 + Set gtmtypes("shm_snapshot_t",89,"len")=8 + Set gtmtypes("shm_snapshot_t",89,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.last_mm_sync")=89 + Set gtmtypes("shm_snapshot_t",90,"name")="shm_snapshot_t.shadow_file_header.trans_hist.filler_8byte" + Set gtmtypes("shm_snapshot_t",90,"off")=4576 + Set gtmtypes("shm_snapshot_t",90,"len")=8 + Set gtmtypes("shm_snapshot_t",90,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.filler_8byte")=90 + Set gtmtypes("shm_snapshot_t",91,"name")="shm_snapshot_t.shadow_file_header.trans_hist.mm_tn" + Set gtmtypes("shm_snapshot_t",91,"off")=4584 + Set gtmtypes("shm_snapshot_t",91,"len")=8 + Set gtmtypes("shm_snapshot_t",91,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.mm_tn")=91 + Set gtmtypes("shm_snapshot_t",92,"name")="shm_snapshot_t.shadow_file_header.trans_hist.lock_sequence" + Set gtmtypes("shm_snapshot_t",92,"off")=4592 + Set gtmtypes("shm_snapshot_t",92,"len")=4 + Set gtmtypes("shm_snapshot_t",92,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.lock_sequence")=92 + Set gtmtypes("shm_snapshot_t",93,"name")="shm_snapshot_t.shadow_file_header.trans_hist.ccp_jnl_filesize" + Set gtmtypes("shm_snapshot_t",93,"off")=4596 + Set gtmtypes("shm_snapshot_t",93,"len")=4 + Set gtmtypes("shm_snapshot_t",93,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.ccp_jnl_filesize")=93 + Set gtmtypes("shm_snapshot_t",94,"name")="shm_snapshot_t.shadow_file_header.trans_hist.total_blks" + Set gtmtypes("shm_snapshot_t",94,"off")=4600 + Set gtmtypes("shm_snapshot_t",94,"len")=4 + Set gtmtypes("shm_snapshot_t",94,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.total_blks")=94 + Set gtmtypes("shm_snapshot_t",95,"name")="shm_snapshot_t.shadow_file_header.trans_hist.free_blocks" + Set gtmtypes("shm_snapshot_t",95,"off")=4604 + Set gtmtypes("shm_snapshot_t",95,"len")=4 + Set gtmtypes("shm_snapshot_t",95,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.trans_hist.free_blocks")=95 + Set gtmtypes("shm_snapshot_t",96,"name")="shm_snapshot_t.shadow_file_header.filler_trans_hist" + Set gtmtypes("shm_snapshot_t",96,"off")=4608 + Set gtmtypes("shm_snapshot_t",96,"len")=8 + Set gtmtypes("shm_snapshot_t",96,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_trans_hist")=96 + Set gtmtypes("shm_snapshot_t",97,"name")="shm_snapshot_t.shadow_file_header.flush_time" + Set gtmtypes("shm_snapshot_t",97,"off")=4616 + Set gtmtypes("shm_snapshot_t",97,"len")=8 + Set gtmtypes("shm_snapshot_t",97,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.flush_time")=97 + Set gtmtypes("shm_snapshot_t",97,"dim")=2 + Set gtmtypes("shm_snapshot_t",98,"name")="shm_snapshot_t.shadow_file_header.flush_trigger" + Set gtmtypes("shm_snapshot_t",98,"off")=4624 + Set gtmtypes("shm_snapshot_t",98,"len")=4 + Set gtmtypes("shm_snapshot_t",98,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.flush_trigger")=98 + Set gtmtypes("shm_snapshot_t",99,"name")="shm_snapshot_t.shadow_file_header.n_wrt_per_flu" + Set gtmtypes("shm_snapshot_t",99,"off")=4628 + Set gtmtypes("shm_snapshot_t",99,"len")=4 + Set gtmtypes("shm_snapshot_t",99,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_wrt_per_flu")=99 + Set gtmtypes("shm_snapshot_t",100,"name")="shm_snapshot_t.shadow_file_header.wait_disk_space" + Set gtmtypes("shm_snapshot_t",100,"off")=4632 + Set gtmtypes("shm_snapshot_t",100,"len")=4 + Set gtmtypes("shm_snapshot_t",100,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wait_disk_space")=100 + Set gtmtypes("shm_snapshot_t",101,"name")="shm_snapshot_t.shadow_file_header.defer_time" + Set gtmtypes("shm_snapshot_t",101,"off")=4636 + Set gtmtypes("shm_snapshot_t",101,"len")=4 + Set gtmtypes("shm_snapshot_t",101,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.defer_time")=101 + Set gtmtypes("shm_snapshot_t",102,"name")="shm_snapshot_t.shadow_file_header.filler_wc_blocked" + Set gtmtypes("shm_snapshot_t",102,"off")=4640 + Set gtmtypes("shm_snapshot_t",102,"len")=4 + Set gtmtypes("shm_snapshot_t",102,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_wc_blocked")=102 + Set gtmtypes("shm_snapshot_t",103,"name")="shm_snapshot_t.shadow_file_header.mumps_can_bypass" + Set gtmtypes("shm_snapshot_t",103,"off")=4644 + Set gtmtypes("shm_snapshot_t",103,"len")=4 + Set gtmtypes("shm_snapshot_t",103,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mumps_can_bypass")=103 + Set gtmtypes("shm_snapshot_t",104,"name")="shm_snapshot_t.shadow_file_header.epoch_taper" + Set gtmtypes("shm_snapshot_t",104,"off")=4648 + Set gtmtypes("shm_snapshot_t",104,"len")=4 + Set gtmtypes("shm_snapshot_t",104,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper")=104 + Set gtmtypes("shm_snapshot_t",105,"name")="shm_snapshot_t.shadow_file_header.epoch_taper_time_pct" + Set gtmtypes("shm_snapshot_t",105,"off")=4652 + Set gtmtypes("shm_snapshot_t",105,"len")=4 + Set gtmtypes("shm_snapshot_t",105,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper_time_pct")=105 + Set gtmtypes("shm_snapshot_t",106,"name")="shm_snapshot_t.shadow_file_header.epoch_taper_jnl_pct" + Set gtmtypes("shm_snapshot_t",106,"off")=4656 + Set gtmtypes("shm_snapshot_t",106,"len")=4 + Set gtmtypes("shm_snapshot_t",106,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_taper_jnl_pct")=106 + Set gtmtypes("shm_snapshot_t",107,"name")="shm_snapshot_t.shadow_file_header.filler_512" + Set gtmtypes("shm_snapshot_t",107,"off")=4660 + Set gtmtypes("shm_snapshot_t",107,"len")=4 + Set gtmtypes("shm_snapshot_t",107,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_512")=107 + Set gtmtypes("shm_snapshot_t",108,"name")="shm_snapshot_t.shadow_file_header.reserved_for_upd" + Set gtmtypes("shm_snapshot_t",108,"off")=4664 + Set gtmtypes("shm_snapshot_t",108,"len")=4 + Set gtmtypes("shm_snapshot_t",108,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_for_upd")=108 + Set gtmtypes("shm_snapshot_t",109,"name")="shm_snapshot_t.shadow_file_header.avg_blks_per_100gbl" + Set gtmtypes("shm_snapshot_t",109,"off")=4668 + Set gtmtypes("shm_snapshot_t",109,"len")=4 + Set gtmtypes("shm_snapshot_t",109,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.avg_blks_per_100gbl")=109 + Set gtmtypes("shm_snapshot_t",110,"name")="shm_snapshot_t.shadow_file_header.pre_read_trigger_factor" + Set gtmtypes("shm_snapshot_t",110,"off")=4672 + Set gtmtypes("shm_snapshot_t",110,"len")=4 + Set gtmtypes("shm_snapshot_t",110,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.pre_read_trigger_factor")=110 + Set gtmtypes("shm_snapshot_t",111,"name")="shm_snapshot_t.shadow_file_header.writer_trigger_factor" + Set gtmtypes("shm_snapshot_t",111,"off")=4676 + Set gtmtypes("shm_snapshot_t",111,"len")=4 + Set gtmtypes("shm_snapshot_t",111,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.writer_trigger_factor")=111 + Set gtmtypes("shm_snapshot_t",112,"name")="shm_snapshot_t.shadow_file_header.semid" + Set gtmtypes("shm_snapshot_t",112,"off")=4680 + Set gtmtypes("shm_snapshot_t",112,"len")=4 + Set gtmtypes("shm_snapshot_t",112,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.semid")=112 + Set gtmtypes("shm_snapshot_t",113,"name")="shm_snapshot_t.shadow_file_header.shmid" + Set gtmtypes("shm_snapshot_t",113,"off")=4684 + Set gtmtypes("shm_snapshot_t",113,"len")=4 + Set gtmtypes("shm_snapshot_t",113,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmid")=113 + Set gtmtypes("shm_snapshot_t",114,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime" + Set gtmtypes("shm_snapshot_t",114,"off")=4688 + Set gtmtypes("shm_snapshot_t",114,"len")=8 + Set gtmtypes("shm_snapshot_t",114,"type")="gtm_time8" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime")=114 + Set gtmtypes("shm_snapshot_t",115,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime.ctime" + Set gtmtypes("shm_snapshot_t",115,"off")=4688 + Set gtmtypes("shm_snapshot_t",115,"len")=4 + Set gtmtypes("shm_snapshot_t",115,"type")="time_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime.ctime")=115 + Set gtmtypes("shm_snapshot_t",116,"name")="shm_snapshot_t.shadow_file_header.gt_sem_ctime.filler" + Set gtmtypes("shm_snapshot_t",116,"off")=4688 + Set gtmtypes("shm_snapshot_t",116,"len")=8 + Set gtmtypes("shm_snapshot_t",116,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_sem_ctime.filler")=116 + Set gtmtypes("shm_snapshot_t",116,"dim")=2 + Set gtmtypes("shm_snapshot_t",117,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime" + Set gtmtypes("shm_snapshot_t",117,"off")=4696 + Set gtmtypes("shm_snapshot_t",117,"len")=8 + Set gtmtypes("shm_snapshot_t",117,"type")="gtm_time8" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime")=117 + Set gtmtypes("shm_snapshot_t",118,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime.ctime" + Set gtmtypes("shm_snapshot_t",118,"off")=4696 + Set gtmtypes("shm_snapshot_t",118,"len")=4 + Set gtmtypes("shm_snapshot_t",118,"type")="time_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime.ctime")=118 + Set gtmtypes("shm_snapshot_t",119,"name")="shm_snapshot_t.shadow_file_header.gt_shm_ctime.filler" + Set gtmtypes("shm_snapshot_t",119,"off")=4696 + Set gtmtypes("shm_snapshot_t",119,"len")=8 + Set gtmtypes("shm_snapshot_t",119,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gt_shm_ctime.filler")=119 + Set gtmtypes("shm_snapshot_t",119,"dim")=2 + Set gtmtypes("shm_snapshot_t",120,"name")="shm_snapshot_t.shadow_file_header.filler_unixonly" + Set gtmtypes("shm_snapshot_t",120,"off")=4704 + Set gtmtypes("shm_snapshot_t",120,"len")=40 + Set gtmtypes("shm_snapshot_t",120,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_unixonly")=120 + Set gtmtypes("shm_snapshot_t",121,"name")="shm_snapshot_t.shadow_file_header.filler_n_retries" + Set gtmtypes("shm_snapshot_t",121,"off")=4744 + Set gtmtypes("shm_snapshot_t",121,"len")=20 + Set gtmtypes("shm_snapshot_t",121,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_retries")=121 + Set gtmtypes("shm_snapshot_t",121,"dim")=5 + Set gtmtypes("shm_snapshot_t",122,"name")="shm_snapshot_t.shadow_file_header.filler_n_puts" + Set gtmtypes("shm_snapshot_t",122,"off")=4764 + Set gtmtypes("shm_snapshot_t",122,"len")=4 + Set gtmtypes("shm_snapshot_t",122,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_puts")=122 + Set gtmtypes("shm_snapshot_t",123,"name")="shm_snapshot_t.shadow_file_header.filler_n_kills" + Set gtmtypes("shm_snapshot_t",123,"off")=4768 + Set gtmtypes("shm_snapshot_t",123,"len")=4 + Set gtmtypes("shm_snapshot_t",123,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_kills")=123 + Set gtmtypes("shm_snapshot_t",124,"name")="shm_snapshot_t.shadow_file_header.filler_n_queries" + Set gtmtypes("shm_snapshot_t",124,"off")=4772 + Set gtmtypes("shm_snapshot_t",124,"len")=4 + Set gtmtypes("shm_snapshot_t",124,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_queries")=124 + Set gtmtypes("shm_snapshot_t",125,"name")="shm_snapshot_t.shadow_file_header.filler_n_gets" + Set gtmtypes("shm_snapshot_t",125,"off")=4776 + Set gtmtypes("shm_snapshot_t",125,"len")=4 + Set gtmtypes("shm_snapshot_t",125,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_gets")=125 + Set gtmtypes("shm_snapshot_t",126,"name")="shm_snapshot_t.shadow_file_header.filler_n_order" + Set gtmtypes("shm_snapshot_t",126,"off")=4780 + Set gtmtypes("shm_snapshot_t",126,"len")=4 + Set gtmtypes("shm_snapshot_t",126,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_order")=126 + Set gtmtypes("shm_snapshot_t",127,"name")="shm_snapshot_t.shadow_file_header.filler_n_zprevs" + Set gtmtypes("shm_snapshot_t",127,"off")=4784 + Set gtmtypes("shm_snapshot_t",127,"len")=4 + Set gtmtypes("shm_snapshot_t",127,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_zprevs")=127 + Set gtmtypes("shm_snapshot_t",128,"name")="shm_snapshot_t.shadow_file_header.filler_n_data" + Set gtmtypes("shm_snapshot_t",128,"off")=4788 + Set gtmtypes("shm_snapshot_t",128,"len")=4 + Set gtmtypes("shm_snapshot_t",128,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_data")=128 + Set gtmtypes("shm_snapshot_t",129,"name")="shm_snapshot_t.shadow_file_header.filler_n_puts_duplicate" + Set gtmtypes("shm_snapshot_t",129,"off")=4792 + Set gtmtypes("shm_snapshot_t",129,"len")=4 + Set gtmtypes("shm_snapshot_t",129,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_puts_duplicate")=129 + Set gtmtypes("shm_snapshot_t",130,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_updates" + Set gtmtypes("shm_snapshot_t",130,"off")=4796 + Set gtmtypes("shm_snapshot_t",130,"len")=4 + Set gtmtypes("shm_snapshot_t",130,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_updates")=130 + Set gtmtypes("shm_snapshot_t",131,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_updates_duplicate" + Set gtmtypes("shm_snapshot_t",131,"off")=4800 + Set gtmtypes("shm_snapshot_t",131,"len")=4 + Set gtmtypes("shm_snapshot_t",131,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_updates_duplicate")=131 + Set gtmtypes("shm_snapshot_t",132,"name")="shm_snapshot_t.shadow_file_header.filler_accounting_64_align" + Set gtmtypes("shm_snapshot_t",132,"off")=4804 + Set gtmtypes("shm_snapshot_t",132,"len")=4 + Set gtmtypes("shm_snapshot_t",132,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_accounting_64_align")=132 + Set gtmtypes("shm_snapshot_t",133,"name")="shm_snapshot_t.shadow_file_header.staleness" + Set gtmtypes("shm_snapshot_t",133,"off")=4808 + Set gtmtypes("shm_snapshot_t",133,"len")=8 + Set gtmtypes("shm_snapshot_t",133,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.staleness")=133 + Set gtmtypes("shm_snapshot_t",133,"dim")=2 + Set gtmtypes("shm_snapshot_t",134,"name")="shm_snapshot_t.shadow_file_header.ccp_tick_interval" + Set gtmtypes("shm_snapshot_t",134,"off")=4816 + Set gtmtypes("shm_snapshot_t",134,"len")=8 + Set gtmtypes("shm_snapshot_t",134,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_tick_interval")=134 + Set gtmtypes("shm_snapshot_t",134,"dim")=2 + Set gtmtypes("shm_snapshot_t",135,"name")="shm_snapshot_t.shadow_file_header.ccp_quantum_interval" + Set gtmtypes("shm_snapshot_t",135,"off")=4824 + Set gtmtypes("shm_snapshot_t",135,"len")=8 + Set gtmtypes("shm_snapshot_t",135,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_quantum_interval")=135 + Set gtmtypes("shm_snapshot_t",135,"dim")=2 + Set gtmtypes("shm_snapshot_t",136,"name")="shm_snapshot_t.shadow_file_header.ccp_response_interval" + Set gtmtypes("shm_snapshot_t",136,"off")=4832 + Set gtmtypes("shm_snapshot_t",136,"len")=8 + Set gtmtypes("shm_snapshot_t",136,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_response_interval")=136 + Set gtmtypes("shm_snapshot_t",136,"dim")=2 + Set gtmtypes("shm_snapshot_t",137,"name")="shm_snapshot_t.shadow_file_header.ccp_jnl_before" + Set gtmtypes("shm_snapshot_t",137,"off")=4840 + Set gtmtypes("shm_snapshot_t",137,"len")=4 + Set gtmtypes("shm_snapshot_t",137,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ccp_jnl_before")=137 + Set gtmtypes("shm_snapshot_t",138,"name")="shm_snapshot_t.shadow_file_header.clustered" + Set gtmtypes("shm_snapshot_t",138,"off")=4844 + Set gtmtypes("shm_snapshot_t",138,"len")=4 + Set gtmtypes("shm_snapshot_t",138,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.clustered")=138 + Set gtmtypes("shm_snapshot_t",139,"name")="shm_snapshot_t.shadow_file_header.unbacked_cache" + Set gtmtypes("shm_snapshot_t",139,"off")=4848 + Set gtmtypes("shm_snapshot_t",139,"len")=4 + Set gtmtypes("shm_snapshot_t",139,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unbacked_cache")=139 + Set gtmtypes("shm_snapshot_t",140,"name")="shm_snapshot_t.shadow_file_header.rc_srv_cnt" + Set gtmtypes("shm_snapshot_t",140,"off")=4852 + Set gtmtypes("shm_snapshot_t",140,"len")=4 + Set gtmtypes("shm_snapshot_t",140,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.rc_srv_cnt")=140 + Set gtmtypes("shm_snapshot_t",141,"name")="shm_snapshot_t.shadow_file_header.dsid" + Set gtmtypes("shm_snapshot_t",141,"off")=4856 + Set gtmtypes("shm_snapshot_t",141,"len")=4 + Set gtmtypes("shm_snapshot_t",141,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dsid")=141 + Set gtmtypes("shm_snapshot_t",142,"name")="shm_snapshot_t.shadow_file_header.rc_node" + Set gtmtypes("shm_snapshot_t",142,"off")=4860 + Set gtmtypes("shm_snapshot_t",142,"len")=4 + Set gtmtypes("shm_snapshot_t",142,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.rc_node")=142 + Set gtmtypes("shm_snapshot_t",143,"name")="shm_snapshot_t.shadow_file_header.filler_ccp_rc" + Set gtmtypes("shm_snapshot_t",143,"off")=4864 + Set gtmtypes("shm_snapshot_t",143,"len")=8 + Set gtmtypes("shm_snapshot_t",143,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_ccp_rc")=143 + Set gtmtypes("shm_snapshot_t",144,"name")="shm_snapshot_t.shadow_file_header.reg_seqno" + Set gtmtypes("shm_snapshot_t",144,"off")=4872 + Set gtmtypes("shm_snapshot_t",144,"len")=8 + Set gtmtypes("shm_snapshot_t",144,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reg_seqno")=144 + Set gtmtypes("shm_snapshot_t",145,"name")="shm_snapshot_t.shadow_file_header.pre_multisite_resync_seqno" + Set gtmtypes("shm_snapshot_t",145,"off")=4880 + Set gtmtypes("shm_snapshot_t",145,"len")=8 + Set gtmtypes("shm_snapshot_t",145,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.pre_multisite_resync_seqno")=145 + Set gtmtypes("shm_snapshot_t",146,"name")="shm_snapshot_t.shadow_file_header.zqgblmod_tn" + Set gtmtypes("shm_snapshot_t",146,"off")=4888 + Set gtmtypes("shm_snapshot_t",146,"len")=8 + Set gtmtypes("shm_snapshot_t",146,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.zqgblmod_tn")=146 + Set gtmtypes("shm_snapshot_t",147,"name")="shm_snapshot_t.shadow_file_header.zqgblmod_seqno" + Set gtmtypes("shm_snapshot_t",147,"off")=4896 + Set gtmtypes("shm_snapshot_t",147,"len")=8 + Set gtmtypes("shm_snapshot_t",147,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.zqgblmod_seqno")=147 + Set gtmtypes("shm_snapshot_t",148,"name")="shm_snapshot_t.shadow_file_header.repl_state" + Set gtmtypes("shm_snapshot_t",148,"off")=4904 + Set gtmtypes("shm_snapshot_t",148,"len")=4 + Set gtmtypes("shm_snapshot_t",148,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.repl_state")=148 + Set gtmtypes("shm_snapshot_t",149,"name")="shm_snapshot_t.shadow_file_header.multi_site_open" + Set gtmtypes("shm_snapshot_t",149,"off")=4908 + Set gtmtypes("shm_snapshot_t",149,"len")=4 + Set gtmtypes("shm_snapshot_t",149,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.multi_site_open")=149 + Set gtmtypes("shm_snapshot_t",150,"name")="shm_snapshot_t.shadow_file_header.filler_seqno" + Set gtmtypes("shm_snapshot_t",150,"off")=4912 + Set gtmtypes("shm_snapshot_t",150,"len")=8 + Set gtmtypes("shm_snapshot_t",150,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_seqno")=150 + Set gtmtypes("shm_snapshot_t",151,"name")="shm_snapshot_t.shadow_file_header.filler_repl" + Set gtmtypes("shm_snapshot_t",151,"off")=4920 + Set gtmtypes("shm_snapshot_t",151,"len")=16 + Set gtmtypes("shm_snapshot_t",151,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_repl")=151 + Set gtmtypes("shm_snapshot_t",152,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_retries" + Set gtmtypes("shm_snapshot_t",152,"off")=4936 + Set gtmtypes("shm_snapshot_t",152,"len")=48 + Set gtmtypes("shm_snapshot_t",152,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_retries")=152 + Set gtmtypes("shm_snapshot_t",152,"dim")=12 + Set gtmtypes("shm_snapshot_t",153,"name")="shm_snapshot_t.shadow_file_header.filler_n_tp_retries_conflicts" + Set gtmtypes("shm_snapshot_t",153,"off")=4984 + Set gtmtypes("shm_snapshot_t",153,"len")=48 + Set gtmtypes("shm_snapshot_t",153,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_n_tp_retries_conflicts")=153 + Set gtmtypes("shm_snapshot_t",153,"dim")=12 + Set gtmtypes("shm_snapshot_t",154,"name")="shm_snapshot_t.shadow_file_header.tp_cdb_sc_blkmod" + Set gtmtypes("shm_snapshot_t",154,"off")=5032 + Set gtmtypes("shm_snapshot_t",154,"len")=32 + Set gtmtypes("shm_snapshot_t",154,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_cdb_sc_blkmod")=154 + Set gtmtypes("shm_snapshot_t",154,"dim")=8 + Set gtmtypes("shm_snapshot_t",155,"name")="shm_snapshot_t.shadow_file_header.jnl_alq" + Set gtmtypes("shm_snapshot_t",155,"off")=5064 + Set gtmtypes("shm_snapshot_t",155,"len")=4 + Set gtmtypes("shm_snapshot_t",155,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_alq")=155 + Set gtmtypes("shm_snapshot_t",156,"name")="shm_snapshot_t.shadow_file_header.jnl_deq" + Set gtmtypes("shm_snapshot_t",156,"off")=5068 + Set gtmtypes("shm_snapshot_t",156,"len")=4 + Set gtmtypes("shm_snapshot_t",156,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_deq")=156 + Set gtmtypes("shm_snapshot_t",157,"name")="shm_snapshot_t.shadow_file_header.jnl_buffer_size" + Set gtmtypes("shm_snapshot_t",157,"off")=5072 + Set gtmtypes("shm_snapshot_t",157,"len")=4 + Set gtmtypes("shm_snapshot_t",157,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_buffer_size")=157 + Set gtmtypes("shm_snapshot_t",158,"name")="shm_snapshot_t.shadow_file_header.jnl_before_image" + Set gtmtypes("shm_snapshot_t",158,"off")=5076 + Set gtmtypes("shm_snapshot_t",158,"len")=4 + Set gtmtypes("shm_snapshot_t",158,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_before_image")=158 + Set gtmtypes("shm_snapshot_t",159,"name")="shm_snapshot_t.shadow_file_header.jnl_state" + Set gtmtypes("shm_snapshot_t",159,"off")=5080 + Set gtmtypes("shm_snapshot_t",159,"len")=4 + Set gtmtypes("shm_snapshot_t",159,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_state")=159 + Set gtmtypes("shm_snapshot_t",160,"name")="shm_snapshot_t.shadow_file_header.jnl_file_len" + Set gtmtypes("shm_snapshot_t",160,"off")=5084 + Set gtmtypes("shm_snapshot_t",160,"len")=4 + Set gtmtypes("shm_snapshot_t",160,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_file_len")=160 + Set gtmtypes("shm_snapshot_t",161,"name")="shm_snapshot_t.shadow_file_header.autoswitchlimit" + Set gtmtypes("shm_snapshot_t",161,"off")=5088 + Set gtmtypes("shm_snapshot_t",161,"len")=4 + Set gtmtypes("shm_snapshot_t",161,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.autoswitchlimit")=161 + Set gtmtypes("shm_snapshot_t",162,"name")="shm_snapshot_t.shadow_file_header.epoch_interval" + Set gtmtypes("shm_snapshot_t",162,"off")=5092 + Set gtmtypes("shm_snapshot_t",162,"len")=4 + Set gtmtypes("shm_snapshot_t",162,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.epoch_interval")=162 + Set gtmtypes("shm_snapshot_t",163,"name")="shm_snapshot_t.shadow_file_header.alignsize" + Set gtmtypes("shm_snapshot_t",163,"off")=5096 + Set gtmtypes("shm_snapshot_t",163,"len")=4 + Set gtmtypes("shm_snapshot_t",163,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.alignsize")=163 + Set gtmtypes("shm_snapshot_t",164,"name")="shm_snapshot_t.shadow_file_header.jnl_sync_io" + Set gtmtypes("shm_snapshot_t",164,"off")=5100 + Set gtmtypes("shm_snapshot_t",164,"len")=4 + Set gtmtypes("shm_snapshot_t",164,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_sync_io")=164 + Set gtmtypes("shm_snapshot_t",165,"name")="shm_snapshot_t.shadow_file_header.yield_lmt" + Set gtmtypes("shm_snapshot_t",165,"off")=5104 + Set gtmtypes("shm_snapshot_t",165,"len")=4 + Set gtmtypes("shm_snapshot_t",165,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.yield_lmt")=165 + Set gtmtypes("shm_snapshot_t",166,"name")="shm_snapshot_t.shadow_file_header.turn_around_point" + Set gtmtypes("shm_snapshot_t",166,"off")=5108 + Set gtmtypes("shm_snapshot_t",166,"len")=4 + Set gtmtypes("shm_snapshot_t",166,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.turn_around_point")=166 + Set gtmtypes("shm_snapshot_t",167,"name")="shm_snapshot_t.shadow_file_header.jnl_eovtn" + Set gtmtypes("shm_snapshot_t",167,"off")=5112 + Set gtmtypes("shm_snapshot_t",167,"len")=8 + Set gtmtypes("shm_snapshot_t",167,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_eovtn")=167 + Set gtmtypes("shm_snapshot_t",168,"name")="shm_snapshot_t.shadow_file_header.filler_jnl" + Set gtmtypes("shm_snapshot_t",168,"off")=5120 + Set gtmtypes("shm_snapshot_t",168,"len")=8 + Set gtmtypes("shm_snapshot_t",168,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_jnl")=168 + Set gtmtypes("shm_snapshot_t",169,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_resync_seqno" + Set gtmtypes("shm_snapshot_t",169,"off")=5128 + Set gtmtypes("shm_snapshot_t",169,"len")=8 + Set gtmtypes("shm_snapshot_t",169,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_resync_seqno")=169 + Set gtmtypes("shm_snapshot_t",170,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_tp_resolve_time" + Set gtmtypes("shm_snapshot_t",170,"off")=5136 + Set gtmtypes("shm_snapshot_t",170,"len")=4 + Set gtmtypes("shm_snapshot_t",170,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_tp_resolve_time")=170 + Set gtmtypes("shm_snapshot_t",171,"name")="shm_snapshot_t.shadow_file_header.recov_interrupted" + Set gtmtypes("shm_snapshot_t",171,"off")=5140 + Set gtmtypes("shm_snapshot_t",171,"len")=4 + Set gtmtypes("shm_snapshot_t",171,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recov_interrupted")=171 + Set gtmtypes("shm_snapshot_t",172,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_jnl_state" + Set gtmtypes("shm_snapshot_t",172,"off")=5144 + Set gtmtypes("shm_snapshot_t",172,"len")=4 + Set gtmtypes("shm_snapshot_t",172,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_jnl_state")=172 + Set gtmtypes("shm_snapshot_t",173,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_repl_state" + Set gtmtypes("shm_snapshot_t",173,"off")=5148 + Set gtmtypes("shm_snapshot_t",173,"len")=4 + Set gtmtypes("shm_snapshot_t",173,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_repl_state")=173 + Set gtmtypes("shm_snapshot_t",174,"name")="shm_snapshot_t.shadow_file_header.before_trunc_total_blks" + Set gtmtypes("shm_snapshot_t",174,"off")=5152 + Set gtmtypes("shm_snapshot_t",174,"len")=4 + Set gtmtypes("shm_snapshot_t",174,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.before_trunc_total_blks")=174 + Set gtmtypes("shm_snapshot_t",175,"name")="shm_snapshot_t.shadow_file_header.after_trunc_total_blks" + Set gtmtypes("shm_snapshot_t",175,"off")=5156 + Set gtmtypes("shm_snapshot_t",175,"len")=4 + Set gtmtypes("shm_snapshot_t",175,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.after_trunc_total_blks")=175 + Set gtmtypes("shm_snapshot_t",176,"name")="shm_snapshot_t.shadow_file_header.before_trunc_free_blocks" + Set gtmtypes("shm_snapshot_t",176,"off")=5160 + Set gtmtypes("shm_snapshot_t",176,"len")=4 + Set gtmtypes("shm_snapshot_t",176,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.before_trunc_free_blocks")=176 + Set gtmtypes("shm_snapshot_t",177,"name")="shm_snapshot_t.shadow_file_header.filler_trunc" + Set gtmtypes("shm_snapshot_t",177,"off")=5164 + Set gtmtypes("shm_snapshot_t",177,"len")=4 + Set gtmtypes("shm_snapshot_t",177,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_trunc")=177 + Set gtmtypes("shm_snapshot_t",178,"name")="shm_snapshot_t.shadow_file_header.filler_1k" + Set gtmtypes("shm_snapshot_t",178,"off")=5168 + Set gtmtypes("shm_snapshot_t",178,"len")=24 + Set gtmtypes("shm_snapshot_t",178,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_1k")=178 + Set gtmtypes("shm_snapshot_t",179,"name")="shm_snapshot_t.shadow_file_header.jnl_file_name" + Set gtmtypes("shm_snapshot_t",179,"off")=5192 + Set gtmtypes("shm_snapshot_t",179,"len")=256 + Set gtmtypes("shm_snapshot_t",179,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_file_name")=179 + Set gtmtypes("shm_snapshot_t",180,"name")="shm_snapshot_t.shadow_file_header.reorg_restart_key" + Set gtmtypes("shm_snapshot_t",180,"off")=5448 + Set gtmtypes("shm_snapshot_t",180,"len")=256 + Set gtmtypes("shm_snapshot_t",180,"type")="unsigned-char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reorg_restart_key")=180 + Set gtmtypes("shm_snapshot_t",181,"name")="shm_snapshot_t.shadow_file_header.machine_name" + Set gtmtypes("shm_snapshot_t",181,"off")=5704 + Set gtmtypes("shm_snapshot_t",181,"len")=256 + Set gtmtypes("shm_snapshot_t",181,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.machine_name")=181 + Set gtmtypes("shm_snapshot_t",182,"name")="shm_snapshot_t.shadow_file_header.encryption_hash" + Set gtmtypes("shm_snapshot_t",182,"off")=5960 + Set gtmtypes("shm_snapshot_t",182,"len")=80 + Set gtmtypes("shm_snapshot_t",182,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash")=182 + Set gtmtypes("shm_snapshot_t",183,"name")="shm_snapshot_t.shadow_file_header.encryption_hash2" + Set gtmtypes("shm_snapshot_t",183,"off")=6040 + Set gtmtypes("shm_snapshot_t",183,"len")=80 + Set gtmtypes("shm_snapshot_t",183,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash2")=183 + Set gtmtypes("shm_snapshot_t",184,"name")="shm_snapshot_t.shadow_file_header.non_null_iv" + Set gtmtypes("shm_snapshot_t",184,"off")=6120 + Set gtmtypes("shm_snapshot_t",184,"len")=4 + Set gtmtypes("shm_snapshot_t",184,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.non_null_iv")=184 + Set gtmtypes("shm_snapshot_t",185,"name")="shm_snapshot_t.shadow_file_header.encryption_hash_cutoff" + Set gtmtypes("shm_snapshot_t",185,"off")=6124 + Set gtmtypes("shm_snapshot_t",185,"len")=4 + Set gtmtypes("shm_snapshot_t",185,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash_cutoff")=185 + Set gtmtypes("shm_snapshot_t",186,"name")="shm_snapshot_t.shadow_file_header.encryption_hash2_start_tn" + Set gtmtypes("shm_snapshot_t",186,"off")=6128 + Set gtmtypes("shm_snapshot_t",186,"len")=8 + Set gtmtypes("shm_snapshot_t",186,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.encryption_hash2_start_tn")=186 + Set gtmtypes("shm_snapshot_t",187,"name")="shm_snapshot_t.shadow_file_header.filler_encrypt" + Set gtmtypes("shm_snapshot_t",187,"off")=6136 + Set gtmtypes("shm_snapshot_t",187,"len")=80 + Set gtmtypes("shm_snapshot_t",187,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_encrypt")=187 + Set gtmtypes("shm_snapshot_t",188,"name")="shm_snapshot_t.shadow_file_header.total_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",188,"off")=6216 + Set gtmtypes("shm_snapshot_t",188,"len")=8 + Set gtmtypes("shm_snapshot_t",188,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.total_buffer_flush_tn")=188 + Set gtmtypes("shm_snapshot_t",189,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",189,"off")=6224 + Set gtmtypes("shm_snapshot_t",189,"len")=8 + Set gtmtypes("shm_snapshot_t",189,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_tn")=189 + Set gtmtypes("shm_snapshot_t",190,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_loop_tn" + Set gtmtypes("shm_snapshot_t",190,"off")=6232 + Set gtmtypes("shm_snapshot_t",190,"len")=8 + Set gtmtypes("shm_snapshot_t",190,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_loop_tn")=190 + Set gtmtypes("shm_snapshot_t",191,"name")="shm_snapshot_t.shadow_file_header.wrt_calls_tn" + Set gtmtypes("shm_snapshot_t",191,"off")=6240 + Set gtmtypes("shm_snapshot_t",191,"len")=8 + Set gtmtypes("shm_snapshot_t",191,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_calls_tn")=191 + Set gtmtypes("shm_snapshot_t",192,"name")="shm_snapshot_t.shadow_file_header.wrt_count_tn" + Set gtmtypes("shm_snapshot_t",192,"off")=6248 + Set gtmtypes("shm_snapshot_t",192,"len")=8 + Set gtmtypes("shm_snapshot_t",192,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_count_tn")=192 + Set gtmtypes("shm_snapshot_t",193,"name")="shm_snapshot_t.shadow_file_header.wrt_blocked_tn" + Set gtmtypes("shm_snapshot_t",193,"off")=6256 + Set gtmtypes("shm_snapshot_t",193,"len")=8 + Set gtmtypes("shm_snapshot_t",193,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_blocked_tn")=193 + Set gtmtypes("shm_snapshot_t",194,"name")="shm_snapshot_t.shadow_file_header.wrt_busy_tn" + Set gtmtypes("shm_snapshot_t",194,"off")=6264 + Set gtmtypes("shm_snapshot_t",194,"len")=8 + Set gtmtypes("shm_snapshot_t",194,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_busy_tn")=194 + Set gtmtypes("shm_snapshot_t",195,"name")="shm_snapshot_t.shadow_file_header.wrt_noblks_wrtn_tn" + Set gtmtypes("shm_snapshot_t",195,"off")=6272 + Set gtmtypes("shm_snapshot_t",195,"len")=8 + Set gtmtypes("shm_snapshot_t",195,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_noblks_wrtn_tn")=195 + Set gtmtypes("shm_snapshot_t",196,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec1_tn" + Set gtmtypes("shm_snapshot_t",196,"off")=6280 + Set gtmtypes("shm_snapshot_t",196,"len")=8 + Set gtmtypes("shm_snapshot_t",196,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec1_tn")=196 + Set gtmtypes("shm_snapshot_t",197,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec2_tn" + Set gtmtypes("shm_snapshot_t",197,"off")=6288 + Set gtmtypes("shm_snapshot_t",197,"len")=8 + Set gtmtypes("shm_snapshot_t",197,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec2_tn")=197 + Set gtmtypes("shm_snapshot_t",198,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec3_tn" + Set gtmtypes("shm_snapshot_t",198,"off")=6296 + Set gtmtypes("shm_snapshot_t",198,"len")=8 + Set gtmtypes("shm_snapshot_t",198,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec3_tn")=198 + Set gtmtypes("shm_snapshot_t",199,"name")="shm_snapshot_t.shadow_file_header.lost_block_recovery_tn" + Set gtmtypes("shm_snapshot_t",199,"off")=6304 + Set gtmtypes("shm_snapshot_t",199,"len")=8 + Set gtmtypes("shm_snapshot_t",199,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lost_block_recovery_tn")=199 + Set gtmtypes("shm_snapshot_t",200,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_onln_rlbk_tn" + Set gtmtypes("shm_snapshot_t",200,"off")=6312 + Set gtmtypes("shm_snapshot_t",200,"len")=8 + Set gtmtypes("shm_snapshot_t",200,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_onln_rlbk_tn")=200 + Set gtmtypes("shm_snapshot_t",201,"name")="shm_snapshot_t.shadow_file_header.stale_tn" + Set gtmtypes("shm_snapshot_t",201,"off")=6320 + Set gtmtypes("shm_snapshot_t",201,"len")=8 + Set gtmtypes("shm_snapshot_t",201,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_tn")=201 + Set gtmtypes("shm_snapshot_t",202,"name")="shm_snapshot_t.shadow_file_header.starved_tn" + Set gtmtypes("shm_snapshot_t",202,"off")=6328 + Set gtmtypes("shm_snapshot_t",202,"len")=8 + Set gtmtypes("shm_snapshot_t",202,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.starved_tn")=202 + Set gtmtypes("shm_snapshot_t",203,"name")="shm_snapshot_t.shadow_file_header.stale_timer_started_tn" + Set gtmtypes("shm_snapshot_t",203,"off")=6336 + Set gtmtypes("shm_snapshot_t",203,"len")=8 + Set gtmtypes("shm_snapshot_t",203,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_started_tn")=203 + Set gtmtypes("shm_snapshot_t",204,"name")="shm_snapshot_t.shadow_file_header.stale_timer_pop_tn" + Set gtmtypes("shm_snapshot_t",204,"off")=6344 + Set gtmtypes("shm_snapshot_t",204,"len")=8 + Set gtmtypes("shm_snapshot_t",204,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_pop_tn")=204 + Set gtmtypes("shm_snapshot_t",205,"name")="shm_snapshot_t.shadow_file_header.stale_process_defer_tn" + Set gtmtypes("shm_snapshot_t",205,"off")=6352 + Set gtmtypes("shm_snapshot_t",205,"len")=8 + Set gtmtypes("shm_snapshot_t",205,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_process_defer_tn")=205 + Set gtmtypes("shm_snapshot_t",206,"name")="shm_snapshot_t.shadow_file_header.stale_defer_processed_tn" + Set gtmtypes("shm_snapshot_t",206,"off")=6360 + Set gtmtypes("shm_snapshot_t",206,"len")=8 + Set gtmtypes("shm_snapshot_t",206,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_defer_processed_tn")=206 + Set gtmtypes("shm_snapshot_t",207,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_tn" + Set gtmtypes("shm_snapshot_t",207,"off")=6368 + Set gtmtypes("shm_snapshot_t",207,"len")=8 + Set gtmtypes("shm_snapshot_t",207,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_tn")=207 + Set gtmtypes("shm_snapshot_t",208,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_loop_tn" + Set gtmtypes("shm_snapshot_t",208,"off")=6376 + Set gtmtypes("shm_snapshot_t",208,"len")=8 + Set gtmtypes("shm_snapshot_t",208,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_loop_tn")=208 + Set gtmtypes("shm_snapshot_t",209,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_retries_tn" + Set gtmtypes("shm_snapshot_t",209,"off")=6384 + Set gtmtypes("shm_snapshot_t",209,"len")=8 + Set gtmtypes("shm_snapshot_t",209,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_retries_tn")=209 + Set gtmtypes("shm_snapshot_t",210,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("shm_snapshot_t",210,"off")=6392 + Set gtmtypes("shm_snapshot_t",210,"len")=8 + Set gtmtypes("shm_snapshot_t",210,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn")=210 + Set gtmtypes("shm_snapshot_t",211,"name")="shm_snapshot_t.shadow_file_header.tp_crit_retries_tn" + Set gtmtypes("shm_snapshot_t",211,"off")=6400 + Set gtmtypes("shm_snapshot_t",211,"len")=8 + Set gtmtypes("shm_snapshot_t",211,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_crit_retries_tn")=211 + Set gtmtypes("shm_snapshot_t",212,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_flush_dirty_tn" + Set gtmtypes("shm_snapshot_t",212,"off")=6408 + Set gtmtypes("shm_snapshot_t",212,"len")=8 + Set gtmtypes("shm_snapshot_t",212,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_flush_dirty_tn")=212 + Set gtmtypes("shm_snapshot_t",213,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_rip_wait_tn" + Set gtmtypes("shm_snapshot_t",213,"off")=6416 + Set gtmtypes("shm_snapshot_t",213,"len")=8 + Set gtmtypes("shm_snapshot_t",213,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_rip_wait_tn")=213 + Set gtmtypes("shm_snapshot_t",214,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("shm_snapshot_t",214,"off")=6424 + Set gtmtypes("shm_snapshot_t",214,"len")=8 + Set gtmtypes("shm_snapshot_t",214,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_buf_owner_stuck_tn")=214 + Set gtmtypes("shm_snapshot_t",215,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_out_of_design_tn" + Set gtmtypes("shm_snapshot_t",215,"off")=6432 + Set gtmtypes("shm_snapshot_t",215,"len")=8 + Set gtmtypes("shm_snapshot_t",215,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_out_of_design_tn")=215 + Set gtmtypes("shm_snapshot_t",216,"name")="shm_snapshot_t.shadow_file_header.t_qread_buf_owner_stuck_tn" + Set gtmtypes("shm_snapshot_t",216,"off")=6440 + Set gtmtypes("shm_snapshot_t",216,"len")=8 + Set gtmtypes("shm_snapshot_t",216,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_buf_owner_stuck_tn")=216 + Set gtmtypes("shm_snapshot_t",217,"name")="shm_snapshot_t.shadow_file_header.t_qread_out_of_design_tn" + Set gtmtypes("shm_snapshot_t",217,"off")=6448 + Set gtmtypes("shm_snapshot_t",217,"len")=8 + Set gtmtypes("shm_snapshot_t",217,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_out_of_design_tn")=217 + Set gtmtypes("shm_snapshot_t",218,"name")="shm_snapshot_t.shadow_file_header.bt_put_flush_dirty_tn" + Set gtmtypes("shm_snapshot_t",218,"off")=6456 + Set gtmtypes("shm_snapshot_t",218,"len")=8 + Set gtmtypes("shm_snapshot_t",218,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_put_flush_dirty_tn")=218 + Set gtmtypes("shm_snapshot_t",219,"name")="shm_snapshot_t.shadow_file_header.mlock_wakeups_tn" + Set gtmtypes("shm_snapshot_t",219,"off")=6464 + Set gtmtypes("shm_snapshot_t",219,"len")=8 + Set gtmtypes("shm_snapshot_t",219,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mlock_wakeups_tn")=219 + Set gtmtypes("shm_snapshot_t",220,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("shm_snapshot_t",220,"off")=6472 + Set gtmtypes("shm_snapshot_t",220,"len")=8 + Set gtmtypes("shm_snapshot_t",220,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_recover_invoked_tn")=220 + Set gtmtypes("shm_snapshot_t",221,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("shm_snapshot_t",221,"off")=6480 + Set gtmtypes("shm_snapshot_t",221,"len")=8 + Set gtmtypes("shm_snapshot_t",221,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_verify_passed_tn")=221 + Set gtmtypes("shm_snapshot_t",222,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("shm_snapshot_t",222,"off")=6488 + Set gtmtypes("shm_snapshot_t",222,"len")=8 + Set gtmtypes("shm_snapshot_t",222,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=222 + Set gtmtypes("shm_snapshot_t",223,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("shm_snapshot_t",223,"off")=6496 + Set gtmtypes("shm_snapshot_t",223,"len")=8 + Set gtmtypes("shm_snapshot_t",223,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=223 + Set gtmtypes("shm_snapshot_t",224,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("shm_snapshot_t",224,"off")=6504 + Set gtmtypes("shm_snapshot_t",224,"len")=8 + Set gtmtypes("shm_snapshot_t",224,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn")=224 + Set gtmtypes("shm_snapshot_t",225,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("shm_snapshot_t",225,"off")=6512 + Set gtmtypes("shm_snapshot_t",225,"len")=8 + Set gtmtypes("shm_snapshot_t",225,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn")=225 + Set gtmtypes("shm_snapshot_t",226,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_get_tn" + Set gtmtypes("shm_snapshot_t",226,"off")=6520 + Set gtmtypes("shm_snapshot_t",226,"len")=8 + Set gtmtypes("shm_snapshot_t",226,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_get_tn")=226 + Set gtmtypes("shm_snapshot_t",227,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("shm_snapshot_t",227,"off")=6528 + Set gtmtypes("shm_snapshot_t",227,"len")=8 + Set gtmtypes("shm_snapshot_t",227,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn")=227 + Set gtmtypes("shm_snapshot_t",228,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("shm_snapshot_t",228,"off")=6536 + Set gtmtypes("shm_snapshot_t",228,"len")=8 + Set gtmtypes("shm_snapshot_t",228,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_t1_tn")=228 + Set gtmtypes("shm_snapshot_t",229,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("shm_snapshot_t",229,"off")=6544 + Set gtmtypes("shm_snapshot_t",229,"len")=8 + Set gtmtypes("shm_snapshot_t",229,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_bitmap_tn")=229 + Set gtmtypes("shm_snapshot_t",230,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("shm_snapshot_t",230,"off")=6552 + Set gtmtypes("shm_snapshot_t",230,"len")=8 + Set gtmtypes("shm_snapshot_t",230,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn")=230 + Set gtmtypes("shm_snapshot_t",231,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("shm_snapshot_t",231,"off")=6560 + Set gtmtypes("shm_snapshot_t",231,"len")=8 + Set gtmtypes("shm_snapshot_t",231,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn")=231 + Set gtmtypes("shm_snapshot_t",232,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist_tn" + Set gtmtypes("shm_snapshot_t",232,"off")=6568 + Set gtmtypes("shm_snapshot_t",232,"len")=8 + Set gtmtypes("shm_snapshot_t",232,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist_tn")=232 + Set gtmtypes("shm_snapshot_t",233,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("shm_snapshot_t",233,"off")=6576 + Set gtmtypes("shm_snapshot_t",233,"len")=8 + Set gtmtypes("shm_snapshot_t",233,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn")=233 + Set gtmtypes("shm_snapshot_t",234,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",234,"off")=6584 + Set gtmtypes("shm_snapshot_t",234,"len")=8 + Set gtmtypes("shm_snapshot_t",234,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn")=234 + Set gtmtypes("shm_snapshot_t",235,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("shm_snapshot_t",235,"off")=6592 + Set gtmtypes("shm_snapshot_t",235,"len")=8 + Set gtmtypes("shm_snapshot_t",235,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn")=235 + Set gtmtypes("shm_snapshot_t",236,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",236,"off")=6600 + Set gtmtypes("shm_snapshot_t",236,"len")=8 + Set gtmtypes("shm_snapshot_t",236,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn")=236 + Set gtmtypes("shm_snapshot_t",237,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("shm_snapshot_t",237,"off")=6608 + Set gtmtypes("shm_snapshot_t",237,"len")=8 + Set gtmtypes("shm_snapshot_t",237,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_cwset_tn")=237 + Set gtmtypes("shm_snapshot_t",238,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("shm_snapshot_t",238,"off")=6616 + Set gtmtypes("shm_snapshot_t",238,"len")=8 + Set gtmtypes("shm_snapshot_t",238,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn")=238 + Set gtmtypes("shm_snapshot_t",239,"name")="shm_snapshot_t.shadow_file_header.db_csh_get_too_many_loops_tn" + Set gtmtypes("shm_snapshot_t",239,"off")=6624 + Set gtmtypes("shm_snapshot_t",239,"len")=8 + Set gtmtypes("shm_snapshot_t",239,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_get_too_many_loops_tn")=239 + Set gtmtypes("shm_snapshot_t",240,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("shm_snapshot_t",240,"off")=6632 + Set gtmtypes("shm_snapshot_t",240,"len")=8 + Set gtmtypes("shm_snapshot_t",240,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn")=240 + Set gtmtypes("shm_snapshot_t",241,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("shm_snapshot_t",241,"off")=6640 + Set gtmtypes("shm_snapshot_t",241,"len")=8 + Set gtmtypes("shm_snapshot_t",241,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn")=241 + Set gtmtypes("shm_snapshot_t",242,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_lost_tn" + Set gtmtypes("shm_snapshot_t",242,"off")=6648 + Set gtmtypes("shm_snapshot_t",242,"len")=8 + Set gtmtypes("shm_snapshot_t",242,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_lost_tn")=242 + Set gtmtypes("shm_snapshot_t",243,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_stuck_tn" + Set gtmtypes("shm_snapshot_t",243,"off")=6656 + Set gtmtypes("shm_snapshot_t",243,"len")=8 + Set gtmtypes("shm_snapshot_t",243,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_stuck_tn")=243 + Set gtmtypes("shm_snapshot_t",244,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_blocked_tn" + Set gtmtypes("shm_snapshot_t",244,"off")=6664 + Set gtmtypes("shm_snapshot_t",244,"len")=8 + Set gtmtypes("shm_snapshot_t",244,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_blocked_tn")=244 + Set gtmtypes("shm_snapshot_t",245,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsyncs_tn" + Set gtmtypes("shm_snapshot_t",245,"off")=6672 + Set gtmtypes("shm_snapshot_t",245,"len")=8 + Set gtmtypes("shm_snapshot_t",245,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsyncs_tn")=245 + Set gtmtypes("shm_snapshot_t",246,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_tries_tn" + Set gtmtypes("shm_snapshot_t",246,"off")=6680 + Set gtmtypes("shm_snapshot_t",246,"len")=8 + Set gtmtypes("shm_snapshot_t",246,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_tries_tn")=246 + Set gtmtypes("shm_snapshot_t",247,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_recovers_tn" + Set gtmtypes("shm_snapshot_t",247,"off")=6688 + Set gtmtypes("shm_snapshot_t",247,"len")=8 + Set gtmtypes("shm_snapshot_t",247,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_recovers_tn")=247 + Set gtmtypes("shm_snapshot_t",248,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_tn" + Set gtmtypes("shm_snapshot_t",248,"off")=6696 + Set gtmtypes("shm_snapshot_t",248,"len")=8 + Set gtmtypes("shm_snapshot_t",248,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_tn")=248 + Set gtmtypes("shm_snapshot_t",249,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_in_crit_tn" + Set gtmtypes("shm_snapshot_t",249,"off")=6704 + Set gtmtypes("shm_snapshot_t",249,"len")=8 + Set gtmtypes("shm_snapshot_t",249,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_in_crit_tn")=249 + Set gtmtypes("shm_snapshot_t",250,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_timers_tn" + Set gtmtypes("shm_snapshot_t",250,"off")=6712 + Set gtmtypes("shm_snapshot_t",250,"len")=8 + Set gtmtypes("shm_snapshot_t",250,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_timers_tn")=250 + Set gtmtypes("shm_snapshot_t",251,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_writes_tn" + Set gtmtypes("shm_snapshot_t",251,"off")=6720 + Set gtmtypes("shm_snapshot_t",251,"len")=8 + Set gtmtypes("shm_snapshot_t",251,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_writes_tn")=251 + Set gtmtypes("shm_snapshot_t",252,"name")="shm_snapshot_t.shadow_file_header.mutex_queue_full_tn" + Set gtmtypes("shm_snapshot_t",252,"off")=6728 + Set gtmtypes("shm_snapshot_t",252,"len")=8 + Set gtmtypes("shm_snapshot_t",252,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_queue_full_tn")=252 + Set gtmtypes("shm_snapshot_t",253,"name")="shm_snapshot_t.shadow_file_header.wcb_bt_put_tn" + Set gtmtypes("shm_snapshot_t",253,"off")=6736 + Set gtmtypes("shm_snapshot_t",253,"len")=8 + Set gtmtypes("shm_snapshot_t",253,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bt_put_tn")=253 + Set gtmtypes("shm_snapshot_t",254,"name")="shm_snapshot_t.shadow_file_header.wcb_mutex_salvage_tn" + Set gtmtypes("shm_snapshot_t",254,"off")=6744 + Set gtmtypes("shm_snapshot_t",254,"len")=8 + Set gtmtypes("shm_snapshot_t",254,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mutex_salvage_tn")=254 + Set gtmtypes("shm_snapshot_t",255,"name")="shm_snapshot_t.shadow_file_header.wcb_tp_grab_crit_tn" + Set gtmtypes("shm_snapshot_t",255,"off")=6752 + Set gtmtypes("shm_snapshot_t",255,"len")=8 + Set gtmtypes("shm_snapshot_t",255,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_tp_grab_crit_tn")=255 + Set gtmtypes("shm_snapshot_t",256,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("shm_snapshot_t",256,"off")=6760 + Set gtmtypes("shm_snapshot_t",256,"len")=8 + Set gtmtypes("shm_snapshot_t",256,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn")=256 + Set gtmtypes("shm_snapshot_t",257,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("shm_snapshot_t",257,"off")=6768 + Set gtmtypes("shm_snapshot_t",257,"len")=8 + Set gtmtypes("shm_snapshot_t",257,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_cr_invcr_tn")=257 + Set gtmtypes("shm_snapshot_t",258,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("shm_snapshot_t",258,"off")=6776 + Set gtmtypes("shm_snapshot_t",258,"len")=8 + Set gtmtypes("shm_snapshot_t",258,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_rip_wait_tn")=258 + Set gtmtypes("shm_snapshot_t",259,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("shm_snapshot_t",259,"off")=6784 + Set gtmtypes("shm_snapshot_t",259,"len")=8 + Set gtmtypes("shm_snapshot_t",259,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn")=259 + Set gtmtypes("shm_snapshot_t",260,"name")="shm_snapshot_t.shadow_file_header.wcb_gds_rundown_tn" + Set gtmtypes("shm_snapshot_t",260,"off")=6792 + Set gtmtypes("shm_snapshot_t",260,"len")=8 + Set gtmtypes("shm_snapshot_t",260,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_gds_rundown_tn")=260 + Set gtmtypes("shm_snapshot_t",261,"name")="shm_snapshot_t.shadow_file_header.wcb_wcs_flu1_tn" + Set gtmtypes("shm_snapshot_t",261,"off")=6800 + Set gtmtypes("shm_snapshot_t",261,"len")=8 + Set gtmtypes("shm_snapshot_t",261,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wcs_flu1_tn")=261 + Set gtmtypes("shm_snapshot_t",262,"name")="shm_snapshot_t.shadow_file_header.wcb_mu_back_tn" + Set gtmtypes("shm_snapshot_t",262,"off")=6808 + Set gtmtypes("shm_snapshot_t",262,"len")=8 + Set gtmtypes("shm_snapshot_t",262,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mu_back_tn")=262 + Set gtmtypes("shm_snapshot_t",263,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("shm_snapshot_t",263,"off")=6816 + Set gtmtypes("shm_snapshot_t",263,"len")=8 + Set gtmtypes("shm_snapshot_t",263,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn")=263 + Set gtmtypes("shm_snapshot_t",264,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("shm_snapshot_t",264,"off")=6824 + Set gtmtypes("shm_snapshot_t",264,"len")=8 + Set gtmtypes("shm_snapshot_t",264,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn")=264 + Set gtmtypes("shm_snapshot_t",265,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("shm_snapshot_t",265,"off")=6832 + Set gtmtypes("shm_snapshot_t",265,"len")=8 + Set gtmtypes("shm_snapshot_t",265,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_twin_stuck_tn")=265 + Set gtmtypes("shm_snapshot_t",266,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("shm_snapshot_t",266,"off")=6840 + Set gtmtypes("shm_snapshot_t",266,"len")=8 + Set gtmtypes("shm_snapshot_t",266,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_wrt_latch_stuck_tn")=266 + Set gtmtypes("shm_snapshot_t",267,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("shm_snapshot_t",267,"off")=6848 + Set gtmtypes("shm_snapshot_t",267,"len")=8 + Set gtmtypes("shm_snapshot_t",267,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_now_crit_tn")=267 + Set gtmtypes("shm_snapshot_t",268,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("shm_snapshot_t",268,"off")=6856 + Set gtmtypes("shm_snapshot_t",268,"len")=8 + Set gtmtypes("shm_snapshot_t",268,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn")=268 + Set gtmtypes("shm_snapshot_t",269,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("shm_snapshot_t",269,"off")=6864 + Set gtmtypes("shm_snapshot_t",269,"len")=8 + Set gtmtypes("shm_snapshot_t",269,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn")=269 + Set gtmtypes("shm_snapshot_t",270,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("shm_snapshot_t",270,"off")=6872 + Set gtmtypes("shm_snapshot_t",270,"len")=8 + Set gtmtypes("shm_snapshot_t",270,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn")=270 + Set gtmtypes("shm_snapshot_t",271,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("shm_snapshot_t",271,"off")=6880 + Set gtmtypes("shm_snapshot_t",271,"len")=8 + Set gtmtypes("shm_snapshot_t",271,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn")=271 + Set gtmtypes("shm_snapshot_t",272,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("shm_snapshot_t",272,"off")=6888 + Set gtmtypes("shm_snapshot_t",272,"len")=8 + Set gtmtypes("shm_snapshot_t",272,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn")=272 + Set gtmtypes("shm_snapshot_t",273,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("shm_snapshot_t",273,"off")=6896 + Set gtmtypes("shm_snapshot_t",273,"len")=8 + Set gtmtypes("shm_snapshot_t",273,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn")=273 + Set gtmtypes("shm_snapshot_t",274,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("shm_snapshot_t",274,"off")=6904 + Set gtmtypes("shm_snapshot_t",274,"len")=8 + Set gtmtypes("shm_snapshot_t",274,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn")=274 + Set gtmtypes("shm_snapshot_t",275,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("shm_snapshot_t",275,"off")=6912 + Set gtmtypes("shm_snapshot_t",275,"len")=8 + Set gtmtypes("shm_snapshot_t",275,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn")=275 + Set gtmtypes("shm_snapshot_t",276,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("shm_snapshot_t",276,"off")=6920 + Set gtmtypes("shm_snapshot_t",276,"len")=8 + Set gtmtypes("shm_snapshot_t",276,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn")=276 + Set gtmtypes("shm_snapshot_t",277,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("shm_snapshot_t",277,"off")=6928 + Set gtmtypes("shm_snapshot_t",277,"len")=8 + Set gtmtypes("shm_snapshot_t",277,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn")=277 + Set gtmtypes("shm_snapshot_t",278,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_bt_get_tn" + Set gtmtypes("shm_snapshot_t",278,"off")=6936 + Set gtmtypes("shm_snapshot_t",278,"len")=8 + Set gtmtypes("shm_snapshot_t",278,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_bt_get_tn")=278 + Set gtmtypes("shm_snapshot_t",279,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("shm_snapshot_t",279,"off")=6944 + Set gtmtypes("shm_snapshot_t",279,"len")=8 + Set gtmtypes("shm_snapshot_t",279,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn")=279 + Set gtmtypes("shm_snapshot_t",280,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",280,"off")=6952 + Set gtmtypes("shm_snapshot_t",280,"len")=8 + Set gtmtypes("shm_snapshot_t",280,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail1_tn")=280 + Set gtmtypes("shm_snapshot_t",281,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",281,"off")=6960 + Set gtmtypes("shm_snapshot_t",281,"len")=8 + Set gtmtypes("shm_snapshot_t",281,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail2_tn")=281 + Set gtmtypes("shm_snapshot_t",282,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",282,"off")=6968 + Set gtmtypes("shm_snapshot_t",282,"len")=8 + Set gtmtypes("shm_snapshot_t",282,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail1_tn")=282 + Set gtmtypes("shm_snapshot_t",283,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",283,"off")=6976 + Set gtmtypes("shm_snapshot_t",283,"len")=8 + Set gtmtypes("shm_snapshot_t",283,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail2_tn")=283 + Set gtmtypes("shm_snapshot_t",284,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail3_tn" + Set gtmtypes("shm_snapshot_t",284,"off")=6984 + Set gtmtypes("shm_snapshot_t",284,"len")=8 + Set gtmtypes("shm_snapshot_t",284,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail3_tn")=284 + Set gtmtypes("shm_snapshot_t",285,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail4_tn" + Set gtmtypes("shm_snapshot_t",285,"off")=6992 + Set gtmtypes("shm_snapshot_t",285,"len")=8 + Set gtmtypes("shm_snapshot_t",285,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail4_tn")=285 + Set gtmtypes("shm_snapshot_t",286,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail1_tn" + Set gtmtypes("shm_snapshot_t",286,"off")=7000 + Set gtmtypes("shm_snapshot_t",286,"len")=8 + Set gtmtypes("shm_snapshot_t",286,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail1_tn")=286 + Set gtmtypes("shm_snapshot_t",287,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail2_tn" + Set gtmtypes("shm_snapshot_t",287,"off")=7008 + Set gtmtypes("shm_snapshot_t",287,"len")=8 + Set gtmtypes("shm_snapshot_t",287,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail2_tn")=287 + Set gtmtypes("shm_snapshot_t",288,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail3_tn" + Set gtmtypes("shm_snapshot_t",288,"off")=7016 + Set gtmtypes("shm_snapshot_t",288,"len")=8 + Set gtmtypes("shm_snapshot_t",288,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail3_tn")=288 + Set gtmtypes("shm_snapshot_t",289,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail4_tn" + Set gtmtypes("shm_snapshot_t",289,"off")=7024 + Set gtmtypes("shm_snapshot_t",289,"len")=8 + Set gtmtypes("shm_snapshot_t",289,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail4_tn")=289 + Set gtmtypes("shm_snapshot_t",290,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("shm_snapshot_t",290,"off")=7032 + Set gtmtypes("shm_snapshot_t",290,"len")=8 + Set gtmtypes("shm_snapshot_t",290,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn")=290 + Set gtmtypes("shm_snapshot_t",291,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("shm_snapshot_t",291,"off")=7040 + Set gtmtypes("shm_snapshot_t",291,"len")=8 + Set gtmtypes("shm_snapshot_t",291,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn")=291 + Set gtmtypes("shm_snapshot_t",292,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("shm_snapshot_t",292,"off")=7048 + Set gtmtypes("shm_snapshot_t",292,"len")=8 + Set gtmtypes("shm_snapshot_t",292,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn")=292 + Set gtmtypes("shm_snapshot_t",293,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_syncio_tn" + Set gtmtypes("shm_snapshot_t",293,"off")=7056 + Set gtmtypes("shm_snapshot_t",293,"len")=8 + Set gtmtypes("shm_snapshot_t",293,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_syncio_tn")=293 + Set gtmtypes("shm_snapshot_t",294,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_asyncio_tn" + Set gtmtypes("shm_snapshot_t",294,"off")=7064 + Set gtmtypes("shm_snapshot_t",294,"len")=8 + Set gtmtypes("shm_snapshot_t",294,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_asyncio_tn")=294 + Set gtmtypes("shm_snapshot_t",295,"name")="shm_snapshot_t.shadow_file_header.shmpool_refmt_harvests_tn" + Set gtmtypes("shm_snapshot_t",295,"off")=7072 + Set gtmtypes("shm_snapshot_t",295,"len")=8 + Set gtmtypes("shm_snapshot_t",295,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_refmt_harvests_tn")=295 + Set gtmtypes("shm_snapshot_t",296,"name")="shm_snapshot_t.shadow_file_header.shmpool_recovery_tn" + Set gtmtypes("shm_snapshot_t",296,"off")=7080 + Set gtmtypes("shm_snapshot_t",296,"len")=8 + Set gtmtypes("shm_snapshot_t",296,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_recovery_tn")=296 + Set gtmtypes("shm_snapshot_t",297,"name")="shm_snapshot_t.shadow_file_header.shmpool_blkd_by_sdc_tn" + Set gtmtypes("shm_snapshot_t",297,"off")=7088 + Set gtmtypes("shm_snapshot_t",297,"len")=8 + Set gtmtypes("shm_snapshot_t",297,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_blkd_by_sdc_tn")=297 + Set gtmtypes("shm_snapshot_t",298,"name")="shm_snapshot_t.shadow_file_header.shmpool_alloc_bbflush_tn" + Set gtmtypes("shm_snapshot_t",298,"off")=7096 + Set gtmtypes("shm_snapshot_t",298,"len")=8 + Set gtmtypes("shm_snapshot_t",298,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_alloc_bbflush_tn")=298 + Set gtmtypes("shm_snapshot_t",299,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("shm_snapshot_t",299,"off")=7104 + Set gtmtypes("shm_snapshot_t",299,"len")=8 + Set gtmtypes("shm_snapshot_t",299,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_replaced_tn")=299 + Set gtmtypes("shm_snapshot_t",300,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("shm_snapshot_t",300,"off")=7112 + Set gtmtypes("shm_snapshot_t",300,"len")=8 + Set gtmtypes("shm_snapshot_t",300,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_io_complete_tn")=300 + Set gtmtypes("shm_snapshot_t",301,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_kept_tn" + Set gtmtypes("shm_snapshot_t",301,"off")=7120 + Set gtmtypes("shm_snapshot_t",301,"len")=8 + Set gtmtypes("shm_snapshot_t",301,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_kept_tn")=301 + Set gtmtypes("shm_snapshot_t",302,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_ignored_tn" + Set gtmtypes("shm_snapshot_t",302,"off")=7128 + Set gtmtypes("shm_snapshot_t",302,"len")=8 + Set gtmtypes("shm_snapshot_t",302,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_ignored_tn")=302 + Set gtmtypes("shm_snapshot_t",303,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("shm_snapshot_t",303,"off")=7136 + Set gtmtypes("shm_snapshot_t",303,"len")=8 + Set gtmtypes("shm_snapshot_t",303,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_freed_tn")=303 + Set gtmtypes("shm_snapshot_t",304,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("shm_snapshot_t",304,"off")=7144 + Set gtmtypes("shm_snapshot_t",304,"len")=8 + Set gtmtypes("shm_snapshot_t",304,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_kept_tn")=304 + Set gtmtypes("shm_snapshot_t",305,"name")="shm_snapshot_t.shadow_file_header.active_lvl_trigger_tn" + Set gtmtypes("shm_snapshot_t",305,"off")=7152 + Set gtmtypes("shm_snapshot_t",305,"len")=8 + Set gtmtypes("shm_snapshot_t",305,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.active_lvl_trigger_tn")=305 + Set gtmtypes("shm_snapshot_t",306,"name")="shm_snapshot_t.shadow_file_header.new_buff_tn" + Set gtmtypes("shm_snapshot_t",306,"off")=7160 + Set gtmtypes("shm_snapshot_t",306,"len")=8 + Set gtmtypes("shm_snapshot_t",306,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.new_buff_tn")=306 + Set gtmtypes("shm_snapshot_t",307,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("shm_snapshot_t",307,"off")=7168 + Set gtmtypes("shm_snapshot_t",307,"len")=8 + Set gtmtypes("shm_snapshot_t",307,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_in_crit_tn")=307 + Set gtmtypes("shm_snapshot_t",308,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("shm_snapshot_t",308,"off")=7176 + Set gtmtypes("shm_snapshot_t",308,"len")=8 + Set gtmtypes("shm_snapshot_t",308,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_no_crit_tn")=308 + Set gtmtypes("shm_snapshot_t",309,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("shm_snapshot_t",309,"off")=7184 + Set gtmtypes("shm_snapshot_t",309,"len")=8 + Set gtmtypes("shm_snapshot_t",309,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_pidcnt_tn")=309 + Set gtmtypes("shm_snapshot_t",310,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("shm_snapshot_t",310,"off")=7192 + Set gtmtypes("shm_snapshot_t",310,"len")=8 + Set gtmtypes("shm_snapshot_t",310,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_intend_wait_tn")=310 + Set gtmtypes("shm_snapshot_t",311,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("shm_snapshot_t",311,"off")=7200 + Set gtmtypes("shm_snapshot_t",311,"len")=8 + Set gtmtypes("shm_snapshot_t",311,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn")=311 + Set gtmtypes("shm_snapshot_t",312,"name")="shm_snapshot_t.shadow_file_header.wcb_phase2_commit_wait_tn" + Set gtmtypes("shm_snapshot_t",312,"off")=7208 + Set gtmtypes("shm_snapshot_t",312,"len")=8 + Set gtmtypes("shm_snapshot_t",312,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_phase2_commit_wait_tn")=312 + Set gtmtypes("shm_snapshot_t",313,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_calls_tn" + Set gtmtypes("shm_snapshot_t",313,"off")=7216 + Set gtmtypes("shm_snapshot_t",313,"len")=8 + Set gtmtypes("shm_snapshot_t",313,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_calls_tn")=313 + Set gtmtypes("shm_snapshot_t",314,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rip_tn" + Set gtmtypes("shm_snapshot_t",314,"off")=7224 + Set gtmtypes("shm_snapshot_t",314,"len")=8 + Set gtmtypes("shm_snapshot_t",314,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rip_tn")=314 + Set gtmtypes("shm_snapshot_t",315,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_in_tend_tn" + Set gtmtypes("shm_snapshot_t",315,"off")=7232 + Set gtmtypes("shm_snapshot_t",315,"len")=8 + Set gtmtypes("shm_snapshot_t",315,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_in_tend_tn")=315 + Set gtmtypes("shm_snapshot_t",316,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_search_blk_tn" + Set gtmtypes("shm_snapshot_t",316,"off")=7240 + Set gtmtypes("shm_snapshot_t",316,"len")=8 + Set gtmtypes("shm_snapshot_t",316,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_search_blk_tn")=316 + Set gtmtypes("shm_snapshot_t",317,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_new_rec_tn" + Set gtmtypes("shm_snapshot_t",317,"off")=7248 + Set gtmtypes("shm_snapshot_t",317,"len")=8 + Set gtmtypes("shm_snapshot_t",317,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_new_rec_tn")=317 + Set gtmtypes("shm_snapshot_t",318,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_size_tn" + Set gtmtypes("shm_snapshot_t",318,"off")=7256 + Set gtmtypes("shm_snapshot_t",318,"len")=8 + Set gtmtypes("shm_snapshot_t",318,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_size_tn")=318 + Set gtmtypes("shm_snapshot_t",319,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("shm_snapshot_t",319,"off")=7264 + Set gtmtypes("shm_snapshot_t",319,"len")=8 + Set gtmtypes("shm_snapshot_t",319,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_cmpc_tn")=319 + Set gtmtypes("shm_snapshot_t",320,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_fini_tn" + Set gtmtypes("shm_snapshot_t",320,"off")=7272 + Set gtmtypes("shm_snapshot_t",320,"len")=8 + Set gtmtypes("shm_snapshot_t",320,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_fini_tn")=320 + Set gtmtypes("shm_snapshot_t",321,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_split_tn" + Set gtmtypes("shm_snapshot_t",321,"off")=7280 + Set gtmtypes("shm_snapshot_t",321,"len")=8 + Set gtmtypes("shm_snapshot_t",321,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_split_tn")=321 + Set gtmtypes("shm_snapshot_t",322,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_cnt_tn" + Set gtmtypes("shm_snapshot_t",322,"off")=7288 + Set gtmtypes("shm_snapshot_t",322,"len")=8 + Set gtmtypes("shm_snapshot_t",322,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_cnt_tn")=322 + Set gtmtypes("shm_snapshot_t",323,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_nblks_tn" + Set gtmtypes("shm_snapshot_t",323,"off")=7296 + Set gtmtypes("shm_snapshot_t",323,"len")=8 + Set gtmtypes("shm_snapshot_t",323,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_nblks_tn")=323 + Set gtmtypes("shm_snapshot_t",324,"name")="shm_snapshot_t.shadow_file_header.bg_trc_rec_tn_filler" + Set gtmtypes("shm_snapshot_t",324,"off")=7304 + Set gtmtypes("shm_snapshot_t",324,"len")=112 + Set gtmtypes("shm_snapshot_t",324,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bg_trc_rec_tn_filler")=324 + Set gtmtypes("shm_snapshot_t",325,"name")="shm_snapshot_t.shadow_file_header.total_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",325,"off")=7416 + Set gtmtypes("shm_snapshot_t",325,"len")=4 + Set gtmtypes("shm_snapshot_t",325,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.total_buffer_flush_cntr")=325 + Set gtmtypes("shm_snapshot_t",326,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",326,"off")=7420 + Set gtmtypes("shm_snapshot_t",326,"len")=4 + Set gtmtypes("shm_snapshot_t",326,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_cntr")=326 + Set gtmtypes("shm_snapshot_t",327,"name")="shm_snapshot_t.shadow_file_header.bufct_buffer_flush_loop_cntr" + Set gtmtypes("shm_snapshot_t",327,"off")=7424 + Set gtmtypes("shm_snapshot_t",327,"len")=4 + Set gtmtypes("shm_snapshot_t",327,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bufct_buffer_flush_loop_cntr")=327 + Set gtmtypes("shm_snapshot_t",328,"name")="shm_snapshot_t.shadow_file_header.wrt_calls_cntr" + Set gtmtypes("shm_snapshot_t",328,"off")=7428 + Set gtmtypes("shm_snapshot_t",328,"len")=4 + Set gtmtypes("shm_snapshot_t",328,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_calls_cntr")=328 + Set gtmtypes("shm_snapshot_t",329,"name")="shm_snapshot_t.shadow_file_header.wrt_count_cntr" + Set gtmtypes("shm_snapshot_t",329,"off")=7432 + Set gtmtypes("shm_snapshot_t",329,"len")=4 + Set gtmtypes("shm_snapshot_t",329,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_count_cntr")=329 + Set gtmtypes("shm_snapshot_t",330,"name")="shm_snapshot_t.shadow_file_header.wrt_blocked_cntr" + Set gtmtypes("shm_snapshot_t",330,"off")=7436 + Set gtmtypes("shm_snapshot_t",330,"len")=4 + Set gtmtypes("shm_snapshot_t",330,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_blocked_cntr")=330 + Set gtmtypes("shm_snapshot_t",331,"name")="shm_snapshot_t.shadow_file_header.wrt_busy_cntr" + Set gtmtypes("shm_snapshot_t",331,"off")=7440 + Set gtmtypes("shm_snapshot_t",331,"len")=4 + Set gtmtypes("shm_snapshot_t",331,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_busy_cntr")=331 + Set gtmtypes("shm_snapshot_t",332,"name")="shm_snapshot_t.shadow_file_header.wrt_noblks_wrtn_cntr" + Set gtmtypes("shm_snapshot_t",332,"off")=7444 + Set gtmtypes("shm_snapshot_t",332,"len")=4 + Set gtmtypes("shm_snapshot_t",332,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wrt_noblks_wrtn_cntr")=332 + Set gtmtypes("shm_snapshot_t",333,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec1_cntr" + Set gtmtypes("shm_snapshot_t",333,"off")=7448 + Set gtmtypes("shm_snapshot_t",333,"len")=4 + Set gtmtypes("shm_snapshot_t",333,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec1_cntr")=333 + Set gtmtypes("shm_snapshot_t",334,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec2_cntr" + Set gtmtypes("shm_snapshot_t",334,"off")=7452 + Set gtmtypes("shm_snapshot_t",334,"len")=4 + Set gtmtypes("shm_snapshot_t",334,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec2_cntr")=334 + Set gtmtypes("shm_snapshot_t",335,"name")="shm_snapshot_t.shadow_file_header.reserved_bgtrcrec3_cntr" + Set gtmtypes("shm_snapshot_t",335,"off")=7456 + Set gtmtypes("shm_snapshot_t",335,"len")=4 + Set gtmtypes("shm_snapshot_t",335,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.reserved_bgtrcrec3_cntr")=335 + Set gtmtypes("shm_snapshot_t",336,"name")="shm_snapshot_t.shadow_file_header.lost_block_recovery_cntr" + Set gtmtypes("shm_snapshot_t",336,"off")=7460 + Set gtmtypes("shm_snapshot_t",336,"len")=4 + Set gtmtypes("shm_snapshot_t",336,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.lost_block_recovery_cntr")=336 + Set gtmtypes("shm_snapshot_t",337,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("shm_snapshot_t",337,"off")=7464 + Set gtmtypes("shm_snapshot_t",337,"len")=4 + Set gtmtypes("shm_snapshot_t",337,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_onln_rlbk_cntr")=337 + Set gtmtypes("shm_snapshot_t",338,"name")="shm_snapshot_t.shadow_file_header.stale_cntr" + Set gtmtypes("shm_snapshot_t",338,"off")=7468 + Set gtmtypes("shm_snapshot_t",338,"len")=4 + Set gtmtypes("shm_snapshot_t",338,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_cntr")=338 + Set gtmtypes("shm_snapshot_t",339,"name")="shm_snapshot_t.shadow_file_header.starved_cntr" + Set gtmtypes("shm_snapshot_t",339,"off")=7472 + Set gtmtypes("shm_snapshot_t",339,"len")=4 + Set gtmtypes("shm_snapshot_t",339,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.starved_cntr")=339 + Set gtmtypes("shm_snapshot_t",340,"name")="shm_snapshot_t.shadow_file_header.stale_timer_started_cntr" + Set gtmtypes("shm_snapshot_t",340,"off")=7476 + Set gtmtypes("shm_snapshot_t",340,"len")=4 + Set gtmtypes("shm_snapshot_t",340,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_started_cntr")=340 + Set gtmtypes("shm_snapshot_t",341,"name")="shm_snapshot_t.shadow_file_header.stale_timer_pop_cntr" + Set gtmtypes("shm_snapshot_t",341,"off")=7480 + Set gtmtypes("shm_snapshot_t",341,"len")=4 + Set gtmtypes("shm_snapshot_t",341,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_timer_pop_cntr")=341 + Set gtmtypes("shm_snapshot_t",342,"name")="shm_snapshot_t.shadow_file_header.stale_process_defer_cntr" + Set gtmtypes("shm_snapshot_t",342,"off")=7484 + Set gtmtypes("shm_snapshot_t",342,"len")=4 + Set gtmtypes("shm_snapshot_t",342,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_process_defer_cntr")=342 + Set gtmtypes("shm_snapshot_t",343,"name")="shm_snapshot_t.shadow_file_header.stale_defer_processed_cntr" + Set gtmtypes("shm_snapshot_t",343,"off")=7488 + Set gtmtypes("shm_snapshot_t",343,"len")=4 + Set gtmtypes("shm_snapshot_t",343,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.stale_defer_processed_cntr")=343 + Set gtmtypes("shm_snapshot_t",344,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_cntr" + Set gtmtypes("shm_snapshot_t",344,"off")=7492 + Set gtmtypes("shm_snapshot_t",344,"len")=4 + Set gtmtypes("shm_snapshot_t",344,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_cntr")=344 + Set gtmtypes("shm_snapshot_t",345,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("shm_snapshot_t",345,"off")=7496 + Set gtmtypes("shm_snapshot_t",345,"len")=4 + Set gtmtypes("shm_snapshot_t",345,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_loop_cntr")=345 + Set gtmtypes("shm_snapshot_t",346,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("shm_snapshot_t",346,"off")=7500 + Set gtmtypes("shm_snapshot_t",346,"len")=4 + Set gtmtypes("shm_snapshot_t",346,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flush_retries_cntr")=346 + Set gtmtypes("shm_snapshot_t",347,"name")="shm_snapshot_t.shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("shm_snapshot_t",347,"off")=7504 + Set gtmtypes("shm_snapshot_t",347,"len")=4 + Set gtmtypes("shm_snapshot_t",347,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr")=347 + Set gtmtypes("shm_snapshot_t",348,"name")="shm_snapshot_t.shadow_file_header.tp_crit_retries_cntr" + Set gtmtypes("shm_snapshot_t",348,"off")=7508 + Set gtmtypes("shm_snapshot_t",348,"len")=4 + Set gtmtypes("shm_snapshot_t",348,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.tp_crit_retries_cntr")=348 + Set gtmtypes("shm_snapshot_t",349,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("shm_snapshot_t",349,"off")=7512 + Set gtmtypes("shm_snapshot_t",349,"len")=4 + Set gtmtypes("shm_snapshot_t",349,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_flush_dirty_cntr")=349 + Set gtmtypes("shm_snapshot_t",350,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_rip_wait_cntr" + Set gtmtypes("shm_snapshot_t",350,"off")=7516 + Set gtmtypes("shm_snapshot_t",350,"len")=4 + Set gtmtypes("shm_snapshot_t",350,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_rip_wait_cntr")=350 + Set gtmtypes("shm_snapshot_t",351,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("shm_snapshot_t",351,"off")=7520 + Set gtmtypes("shm_snapshot_t",351,"len")=4 + Set gtmtypes("shm_snapshot_t",351,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_buf_owner_stuck_cntr")=351 + Set gtmtypes("shm_snapshot_t",352,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_out_of_design_cntr" + Set gtmtypes("shm_snapshot_t",352,"off")=7524 + Set gtmtypes("shm_snapshot_t",352,"len")=4 + Set gtmtypes("shm_snapshot_t",352,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_out_of_design_cntr")=352 + Set gtmtypes("shm_snapshot_t",353,"name")="shm_snapshot_t.shadow_file_header.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("shm_snapshot_t",353,"off")=7528 + Set gtmtypes("shm_snapshot_t",353,"len")=4 + Set gtmtypes("shm_snapshot_t",353,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_buf_owner_stuck_cntr")=353 + Set gtmtypes("shm_snapshot_t",354,"name")="shm_snapshot_t.shadow_file_header.t_qread_out_of_design_cntr" + Set gtmtypes("shm_snapshot_t",354,"off")=7532 + Set gtmtypes("shm_snapshot_t",354,"len")=4 + Set gtmtypes("shm_snapshot_t",354,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_out_of_design_cntr")=354 + Set gtmtypes("shm_snapshot_t",355,"name")="shm_snapshot_t.shadow_file_header.bt_put_flush_dirty_cntr" + Set gtmtypes("shm_snapshot_t",355,"off")=7536 + Set gtmtypes("shm_snapshot_t",355,"len")=4 + Set gtmtypes("shm_snapshot_t",355,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bt_put_flush_dirty_cntr")=355 + Set gtmtypes("shm_snapshot_t",356,"name")="shm_snapshot_t.shadow_file_header.mlock_wakeups_cntr" + Set gtmtypes("shm_snapshot_t",356,"off")=7540 + Set gtmtypes("shm_snapshot_t",356,"len")=4 + Set gtmtypes("shm_snapshot_t",356,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mlock_wakeups_cntr")=356 + Set gtmtypes("shm_snapshot_t",357,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("shm_snapshot_t",357,"off")=7544 + Set gtmtypes("shm_snapshot_t",357,"len")=4 + Set gtmtypes("shm_snapshot_t",357,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_recover_invoked_cntr")=357 + Set gtmtypes("shm_snapshot_t",358,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("shm_snapshot_t",358,"off")=7548 + Set gtmtypes("shm_snapshot_t",358,"len")=4 + Set gtmtypes("shm_snapshot_t",358,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_verify_passed_cntr")=358 + Set gtmtypes("shm_snapshot_t",359,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("shm_snapshot_t",359,"off")=7552 + Set gtmtypes("shm_snapshot_t",359,"len")=4 + Set gtmtypes("shm_snapshot_t",359,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=359 + Set gtmtypes("shm_snapshot_t",360,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("shm_snapshot_t",360,"off")=7556 + Set gtmtypes("shm_snapshot_t",360,"len")=4 + Set gtmtypes("shm_snapshot_t",360,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=360 + Set gtmtypes("shm_snapshot_t",361,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("shm_snapshot_t",361,"off")=7560 + Set gtmtypes("shm_snapshot_t",361,"len")=4 + Set gtmtypes("shm_snapshot_t",361,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr")=361 + Set gtmtypes("shm_snapshot_t",362,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("shm_snapshot_t",362,"off")=7564 + Set gtmtypes("shm_snapshot_t",362,"len")=4 + Set gtmtypes("shm_snapshot_t",362,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=362 + Set gtmtypes("shm_snapshot_t",363,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_db_csh_get_cntr" + Set gtmtypes("shm_snapshot_t",363,"off")=7568 + Set gtmtypes("shm_snapshot_t",363,"len")=4 + Set gtmtypes("shm_snapshot_t",363,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_db_csh_get_cntr")=363 + Set gtmtypes("shm_snapshot_t",364,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("shm_snapshot_t",364,"off")=7572 + Set gtmtypes("shm_snapshot_t",364,"len")=4 + Set gtmtypes("shm_snapshot_t",364,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr")=364 + Set gtmtypes("shm_snapshot_t",365,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("shm_snapshot_t",365,"off")=7576 + Set gtmtypes("shm_snapshot_t",365,"len")=4 + Set gtmtypes("shm_snapshot_t",365,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_t1_cntr")=365 + Set gtmtypes("shm_snapshot_t",366,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("shm_snapshot_t",366,"off")=7580 + Set gtmtypes("shm_snapshot_t",366,"len")=4 + Set gtmtypes("shm_snapshot_t",366,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_bitmap_cntr")=366 + Set gtmtypes("shm_snapshot_t",367,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("shm_snapshot_t",367,"off")=7584 + Set gtmtypes("shm_snapshot_t",367,"len")=4 + Set gtmtypes("shm_snapshot_t",367,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr")=367 + Set gtmtypes("shm_snapshot_t",368,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("shm_snapshot_t",368,"off")=7588 + Set gtmtypes("shm_snapshot_t",368,"len")=4 + Set gtmtypes("shm_snapshot_t",368,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr")=368 + Set gtmtypes("shm_snapshot_t",369,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist_cntr" + Set gtmtypes("shm_snapshot_t",369,"off")=7592 + Set gtmtypes("shm_snapshot_t",369,"len")=4 + Set gtmtypes("shm_snapshot_t",369,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist_cntr")=369 + Set gtmtypes("shm_snapshot_t",370,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",370,"off")=7596 + Set gtmtypes("shm_snapshot_t",370,"len")=4 + Set gtmtypes("shm_snapshot_t",370,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr")=370 + Set gtmtypes("shm_snapshot_t",371,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",371,"off")=7600 + Set gtmtypes("shm_snapshot_t",371,"len")=4 + Set gtmtypes("shm_snapshot_t",371,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr")=371 + Set gtmtypes("shm_snapshot_t",372,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",372,"off")=7604 + Set gtmtypes("shm_snapshot_t",372,"len")=4 + Set gtmtypes("shm_snapshot_t",372,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr")=372 + Set gtmtypes("shm_snapshot_t",373,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",373,"off")=7608 + Set gtmtypes("shm_snapshot_t",373,"len")=4 + Set gtmtypes("shm_snapshot_t",373,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr")=373 + Set gtmtypes("shm_snapshot_t",374,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("shm_snapshot_t",374,"off")=7612 + Set gtmtypes("shm_snapshot_t",374,"len")=4 + Set gtmtypes("shm_snapshot_t",374,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr")=374 + Set gtmtypes("shm_snapshot_t",375,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("shm_snapshot_t",375,"off")=7616 + Set gtmtypes("shm_snapshot_t",375,"len")=4 + Set gtmtypes("shm_snapshot_t",375,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr")=375 + Set gtmtypes("shm_snapshot_t",376,"name")="shm_snapshot_t.shadow_file_header.db_csh_get_too_many_loops_cntr" + Set gtmtypes("shm_snapshot_t",376,"off")=7620 + Set gtmtypes("shm_snapshot_t",376,"len")=4 + Set gtmtypes("shm_snapshot_t",376,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_get_too_many_loops_cntr")=376 + Set gtmtypes("shm_snapshot_t",377,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("shm_snapshot_t",377,"off")=7624 + Set gtmtypes("shm_snapshot_t",377,"len")=4 + Set gtmtypes("shm_snapshot_t",377,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr")=377 + Set gtmtypes("shm_snapshot_t",378,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("shm_snapshot_t",378,"off")=7628 + Set gtmtypes("shm_snapshot_t",378,"len")=4 + Set gtmtypes("shm_snapshot_t",378,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr")=378 + Set gtmtypes("shm_snapshot_t",379,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_lost_cntr" + Set gtmtypes("shm_snapshot_t",379,"off")=7632 + Set gtmtypes("shm_snapshot_t",379,"len")=4 + Set gtmtypes("shm_snapshot_t",379,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_lost_cntr")=379 + Set gtmtypes("shm_snapshot_t",380,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("shm_snapshot_t",380,"off")=7636 + Set gtmtypes("shm_snapshot_t",380,"len")=4 + Set gtmtypes("shm_snapshot_t",380,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_stuck_cntr")=380 + Set gtmtypes("shm_snapshot_t",381,"name")="shm_snapshot_t.shadow_file_header.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("shm_snapshot_t",381,"off")=7640 + Set gtmtypes("shm_snapshot_t",381,"len")=4 + Set gtmtypes("shm_snapshot_t",381,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.jnl_blocked_writer_blocked_cntr")=381 + Set gtmtypes("shm_snapshot_t",382,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsyncs_cntr" + Set gtmtypes("shm_snapshot_t",382,"off")=7644 + Set gtmtypes("shm_snapshot_t",382,"len")=4 + Set gtmtypes("shm_snapshot_t",382,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsyncs_cntr")=382 + Set gtmtypes("shm_snapshot_t",383,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_tries_cntr" + Set gtmtypes("shm_snapshot_t",383,"off")=7648 + Set gtmtypes("shm_snapshot_t",383,"len")=4 + Set gtmtypes("shm_snapshot_t",383,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_tries_cntr")=383 + Set gtmtypes("shm_snapshot_t",384,"name")="shm_snapshot_t.shadow_file_header.n_jnl_fsync_recovers_cntr" + Set gtmtypes("shm_snapshot_t",384,"off")=7652 + Set gtmtypes("shm_snapshot_t",384,"len")=4 + Set gtmtypes("shm_snapshot_t",384,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_jnl_fsync_recovers_cntr")=384 + Set gtmtypes("shm_snapshot_t",385,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_cntr" + Set gtmtypes("shm_snapshot_t",385,"off")=7656 + Set gtmtypes("shm_snapshot_t",385,"len")=4 + Set gtmtypes("shm_snapshot_t",385,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_cntr")=385 + Set gtmtypes("shm_snapshot_t",386,"name")="shm_snapshot_t.shadow_file_header.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("shm_snapshot_t",386,"off")=7660 + Set gtmtypes("shm_snapshot_t",386,"len")=4 + Set gtmtypes("shm_snapshot_t",386,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_fsyncs_in_crit_cntr")=386 + Set gtmtypes("shm_snapshot_t",387,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_timers_cntr" + Set gtmtypes("shm_snapshot_t",387,"off")=7664 + Set gtmtypes("shm_snapshot_t",387,"len")=4 + Set gtmtypes("shm_snapshot_t",387,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_timers_cntr")=387 + Set gtmtypes("shm_snapshot_t",388,"name")="shm_snapshot_t.shadow_file_header.n_dbsync_writes_cntr" + Set gtmtypes("shm_snapshot_t",388,"off")=7668 + Set gtmtypes("shm_snapshot_t",388,"len")=4 + Set gtmtypes("shm_snapshot_t",388,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_dbsync_writes_cntr")=388 + Set gtmtypes("shm_snapshot_t",389,"name")="shm_snapshot_t.shadow_file_header.mutex_queue_full_cntr" + Set gtmtypes("shm_snapshot_t",389,"off")=7672 + Set gtmtypes("shm_snapshot_t",389,"len")=4 + Set gtmtypes("shm_snapshot_t",389,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.mutex_queue_full_cntr")=389 + Set gtmtypes("shm_snapshot_t",390,"name")="shm_snapshot_t.shadow_file_header.wcb_bt_put_cntr" + Set gtmtypes("shm_snapshot_t",390,"off")=7676 + Set gtmtypes("shm_snapshot_t",390,"len")=4 + Set gtmtypes("shm_snapshot_t",390,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bt_put_cntr")=390 + Set gtmtypes("shm_snapshot_t",391,"name")="shm_snapshot_t.shadow_file_header.wcb_mutex_salvage_cntr" + Set gtmtypes("shm_snapshot_t",391,"off")=7680 + Set gtmtypes("shm_snapshot_t",391,"len")=4 + Set gtmtypes("shm_snapshot_t",391,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mutex_salvage_cntr")=391 + Set gtmtypes("shm_snapshot_t",392,"name")="shm_snapshot_t.shadow_file_header.wcb_tp_grab_crit_cntr" + Set gtmtypes("shm_snapshot_t",392,"off")=7684 + Set gtmtypes("shm_snapshot_t",392,"len")=4 + Set gtmtypes("shm_snapshot_t",392,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_tp_grab_crit_cntr")=392 + Set gtmtypes("shm_snapshot_t",393,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("shm_snapshot_t",393,"off")=7688 + Set gtmtypes("shm_snapshot_t",393,"len")=4 + Set gtmtypes("shm_snapshot_t",393,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr")=393 + Set gtmtypes("shm_snapshot_t",394,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("shm_snapshot_t",394,"off")=7692 + Set gtmtypes("shm_snapshot_t",394,"len")=4 + Set gtmtypes("shm_snapshot_t",394,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr")=394 + Set gtmtypes("shm_snapshot_t",395,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("shm_snapshot_t",395,"off")=7696 + Set gtmtypes("shm_snapshot_t",395,"len")=4 + Set gtmtypes("shm_snapshot_t",395,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_rip_wait_cntr")=395 + Set gtmtypes("shm_snapshot_t",396,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("shm_snapshot_t",396,"off")=7700 + Set gtmtypes("shm_snapshot_t",396,"len")=4 + Set gtmtypes("shm_snapshot_t",396,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr")=396 + Set gtmtypes("shm_snapshot_t",397,"name")="shm_snapshot_t.shadow_file_header.wcb_gds_rundown_cntr" + Set gtmtypes("shm_snapshot_t",397,"off")=7704 + Set gtmtypes("shm_snapshot_t",397,"len")=4 + Set gtmtypes("shm_snapshot_t",397,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_gds_rundown_cntr")=397 + Set gtmtypes("shm_snapshot_t",398,"name")="shm_snapshot_t.shadow_file_header.wcb_wcs_flu1_cntr" + Set gtmtypes("shm_snapshot_t",398,"off")=7708 + Set gtmtypes("shm_snapshot_t",398,"len")=4 + Set gtmtypes("shm_snapshot_t",398,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wcs_flu1_cntr")=398 + Set gtmtypes("shm_snapshot_t",399,"name")="shm_snapshot_t.shadow_file_header.wcb_mu_back_cntr" + Set gtmtypes("shm_snapshot_t",399,"off")=7712 + Set gtmtypes("shm_snapshot_t",399,"len")=4 + Set gtmtypes("shm_snapshot_t",399,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_mu_back_cntr")=399 + Set gtmtypes("shm_snapshot_t",400,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("shm_snapshot_t",400,"off")=7716 + Set gtmtypes("shm_snapshot_t",400,"len")=4 + Set gtmtypes("shm_snapshot_t",400,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr")=400 + Set gtmtypes("shm_snapshot_t",401,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("shm_snapshot_t",401,"off")=7720 + Set gtmtypes("shm_snapshot_t",401,"len")=4 + Set gtmtypes("shm_snapshot_t",401,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr")=401 + Set gtmtypes("shm_snapshot_t",402,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("shm_snapshot_t",402,"off")=7724 + Set gtmtypes("shm_snapshot_t",402,"len")=4 + Set gtmtypes("shm_snapshot_t",402,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr")=402 + Set gtmtypes("shm_snapshot_t",403,"name")="shm_snapshot_t.shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("shm_snapshot_t",403,"off")=7728 + Set gtmtypes("shm_snapshot_t",403,"len")=4 + Set gtmtypes("shm_snapshot_t",403,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr")=403 + Set gtmtypes("shm_snapshot_t",404,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("shm_snapshot_t",404,"off")=7732 + Set gtmtypes("shm_snapshot_t",404,"len")=4 + Set gtmtypes("shm_snapshot_t",404,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr")=404 + Set gtmtypes("shm_snapshot_t",405,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("shm_snapshot_t",405,"off")=7736 + Set gtmtypes("shm_snapshot_t",405,"len")=4 + Set gtmtypes("shm_snapshot_t",405,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr")=405 + Set gtmtypes("shm_snapshot_t",406,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("shm_snapshot_t",406,"off")=7740 + Set gtmtypes("shm_snapshot_t",406,"len")=4 + Set gtmtypes("shm_snapshot_t",406,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr")=406 + Set gtmtypes("shm_snapshot_t",407,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("shm_snapshot_t",407,"off")=7744 + Set gtmtypes("shm_snapshot_t",407,"len")=4 + Set gtmtypes("shm_snapshot_t",407,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr")=407 + Set gtmtypes("shm_snapshot_t",408,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("shm_snapshot_t",408,"off")=7748 + Set gtmtypes("shm_snapshot_t",408,"len")=4 + Set gtmtypes("shm_snapshot_t",408,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr")=408 + Set gtmtypes("shm_snapshot_t",409,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("shm_snapshot_t",409,"off")=7752 + Set gtmtypes("shm_snapshot_t",409,"len")=4 + Set gtmtypes("shm_snapshot_t",409,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr")=409 + Set gtmtypes("shm_snapshot_t",410,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("shm_snapshot_t",410,"off")=7756 + Set gtmtypes("shm_snapshot_t",410,"len")=4 + Set gtmtypes("shm_snapshot_t",410,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr")=410 + Set gtmtypes("shm_snapshot_t",411,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("shm_snapshot_t",411,"off")=7760 + Set gtmtypes("shm_snapshot_t",411,"len")=4 + Set gtmtypes("shm_snapshot_t",411,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr")=411 + Set gtmtypes("shm_snapshot_t",412,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("shm_snapshot_t",412,"off")=7764 + Set gtmtypes("shm_snapshot_t",412,"len")=4 + Set gtmtypes("shm_snapshot_t",412,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr")=412 + Set gtmtypes("shm_snapshot_t",413,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("shm_snapshot_t",413,"off")=7768 + Set gtmtypes("shm_snapshot_t",413,"len")=4 + Set gtmtypes("shm_snapshot_t",413,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr")=413 + Set gtmtypes("shm_snapshot_t",414,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("shm_snapshot_t",414,"off")=7772 + Set gtmtypes("shm_snapshot_t",414,"len")=4 + Set gtmtypes("shm_snapshot_t",414,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr")=414 + Set gtmtypes("shm_snapshot_t",415,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_bt_get_cntr" + Set gtmtypes("shm_snapshot_t",415,"off")=7776 + Set gtmtypes("shm_snapshot_t",415,"len")=4 + Set gtmtypes("shm_snapshot_t",415,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_bt_get_cntr")=415 + Set gtmtypes("shm_snapshot_t",416,"name")="shm_snapshot_t.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("shm_snapshot_t",416,"off")=7780 + Set gtmtypes("shm_snapshot_t",416,"len")=4 + Set gtmtypes("shm_snapshot_t",416,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr")=416 + Set gtmtypes("shm_snapshot_t",417,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",417,"off")=7784 + Set gtmtypes("shm_snapshot_t",417,"len")=4 + Set gtmtypes("shm_snapshot_t",417,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail1_cntr")=417 + Set gtmtypes("shm_snapshot_t",418,"name")="shm_snapshot_t.shadow_file_header.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",418,"off")=7788 + Set gtmtypes("shm_snapshot_t",418,"len")=4 + Set gtmtypes("shm_snapshot_t",418,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_bg_update_lckfail2_cntr")=418 + Set gtmtypes("shm_snapshot_t",419,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",419,"off")=7792 + Set gtmtypes("shm_snapshot_t",419,"len")=4 + Set gtmtypes("shm_snapshot_t",419,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail1_cntr")=419 + Set gtmtypes("shm_snapshot_t",420,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",420,"off")=7796 + Set gtmtypes("shm_snapshot_t",420,"len")=4 + Set gtmtypes("shm_snapshot_t",420,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail2_cntr")=420 + Set gtmtypes("shm_snapshot_t",421,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("shm_snapshot_t",421,"off")=7800 + Set gtmtypes("shm_snapshot_t",421,"len")=4 + Set gtmtypes("shm_snapshot_t",421,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail3_cntr")=421 + Set gtmtypes("shm_snapshot_t",422,"name")="shm_snapshot_t.shadow_file_header.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("shm_snapshot_t",422,"off")=7804 + Set gtmtypes("shm_snapshot_t",422,"len")=4 + Set gtmtypes("shm_snapshot_t",422,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtstart_lckfail4_cntr")=422 + Set gtmtypes("shm_snapshot_t",423,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("shm_snapshot_t",423,"off")=7808 + Set gtmtypes("shm_snapshot_t",423,"len")=4 + Set gtmtypes("shm_snapshot_t",423,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail1_cntr")=423 + Set gtmtypes("shm_snapshot_t",424,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("shm_snapshot_t",424,"off")=7812 + Set gtmtypes("shm_snapshot_t",424,"len")=4 + Set gtmtypes("shm_snapshot_t",424,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail2_cntr")=424 + Set gtmtypes("shm_snapshot_t",425,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("shm_snapshot_t",425,"off")=7816 + Set gtmtypes("shm_snapshot_t",425,"len")=4 + Set gtmtypes("shm_snapshot_t",425,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail3_cntr")=425 + Set gtmtypes("shm_snapshot_t",426,"name")="shm_snapshot_t.shadow_file_header.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("shm_snapshot_t",426,"off")=7820 + Set gtmtypes("shm_snapshot_t",426,"len")=4 + Set gtmtypes("shm_snapshot_t",426,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_wtfini_lckfail4_cntr")=426 + Set gtmtypes("shm_snapshot_t",427,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("shm_snapshot_t",427,"off")=7824 + Set gtmtypes("shm_snapshot_t",427,"len")=4 + Set gtmtypes("shm_snapshot_t",427,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr")=427 + Set gtmtypes("shm_snapshot_t",428,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("shm_snapshot_t",428,"off")=7828 + Set gtmtypes("shm_snapshot_t",428,"len")=4 + Set gtmtypes("shm_snapshot_t",428,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr")=428 + Set gtmtypes("shm_snapshot_t",429,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("shm_snapshot_t",429,"off")=7832 + Set gtmtypes("shm_snapshot_t",429,"len")=4 + Set gtmtypes("shm_snapshot_t",429,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr")=429 + Set gtmtypes("shm_snapshot_t",430,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_syncio_cntr" + Set gtmtypes("shm_snapshot_t",430,"off")=7836 + Set gtmtypes("shm_snapshot_t",430,"len")=4 + Set gtmtypes("shm_snapshot_t",430,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_syncio_cntr")=430 + Set gtmtypes("shm_snapshot_t",431,"name")="shm_snapshot_t.shadow_file_header.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("shm_snapshot_t",431,"off")=7840 + Set gtmtypes("shm_snapshot_t",431,"len")=4 + Set gtmtypes("shm_snapshot_t",431,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.dwngrd_refmts_asyncio_cntr")=431 + Set gtmtypes("shm_snapshot_t",432,"name")="shm_snapshot_t.shadow_file_header.shmpool_refmt_harvests_cntr" + Set gtmtypes("shm_snapshot_t",432,"off")=7844 + Set gtmtypes("shm_snapshot_t",432,"len")=4 + Set gtmtypes("shm_snapshot_t",432,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_refmt_harvests_cntr")=432 + Set gtmtypes("shm_snapshot_t",433,"name")="shm_snapshot_t.shadow_file_header.shmpool_recovery_cntr" + Set gtmtypes("shm_snapshot_t",433,"off")=7848 + Set gtmtypes("shm_snapshot_t",433,"len")=4 + Set gtmtypes("shm_snapshot_t",433,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_recovery_cntr")=433 + Set gtmtypes("shm_snapshot_t",434,"name")="shm_snapshot_t.shadow_file_header.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("shm_snapshot_t",434,"off")=7852 + Set gtmtypes("shm_snapshot_t",434,"len")=4 + Set gtmtypes("shm_snapshot_t",434,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_blkd_by_sdc_cntr")=434 + Set gtmtypes("shm_snapshot_t",435,"name")="shm_snapshot_t.shadow_file_header.shmpool_alloc_bbflush_cntr" + Set gtmtypes("shm_snapshot_t",435,"off")=7856 + Set gtmtypes("shm_snapshot_t",435,"len")=4 + Set gtmtypes("shm_snapshot_t",435,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.shmpool_alloc_bbflush_cntr")=435 + Set gtmtypes("shm_snapshot_t",436,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("shm_snapshot_t",436,"off")=7860 + Set gtmtypes("shm_snapshot_t",436,"len")=4 + Set gtmtypes("shm_snapshot_t",436,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_replaced_cntr")=436 + Set gtmtypes("shm_snapshot_t",437,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("shm_snapshot_t",437,"off")=7864 + Set gtmtypes("shm_snapshot_t",437,"len")=4 + Set gtmtypes("shm_snapshot_t",437,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_released_io_complete_cntr")=437 + Set gtmtypes("shm_snapshot_t",438,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_kept_cntr" + Set gtmtypes("shm_snapshot_t",438,"off")=7868 + Set gtmtypes("shm_snapshot_t",438,"len")=4 + Set gtmtypes("shm_snapshot_t",438,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_kept_cntr")=438 + Set gtmtypes("shm_snapshot_t",439,"name")="shm_snapshot_t.shadow_file_header.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("shm_snapshot_t",439,"off")=7872 + Set gtmtypes("shm_snapshot_t",439,"len")=4 + Set gtmtypes("shm_snapshot_t",439,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_hvst_blk_ignored_cntr")=439 + Set gtmtypes("shm_snapshot_t",440,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("shm_snapshot_t",440,"off")=7876 + Set gtmtypes("shm_snapshot_t",440,"len")=4 + Set gtmtypes("shm_snapshot_t",440,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_freed_cntr")=440 + Set gtmtypes("shm_snapshot_t",441,"name")="shm_snapshot_t.shadow_file_header.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("shm_snapshot_t",441,"off")=7880 + Set gtmtypes("shm_snapshot_t",441,"len")=4 + Set gtmtypes("shm_snapshot_t",441,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.refmt_blk_chk_blk_kept_cntr")=441 + Set gtmtypes("shm_snapshot_t",442,"name")="shm_snapshot_t.shadow_file_header.active_lvl_trigger_cntr" + Set gtmtypes("shm_snapshot_t",442,"off")=7884 + Set gtmtypes("shm_snapshot_t",442,"len")=4 + Set gtmtypes("shm_snapshot_t",442,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.active_lvl_trigger_cntr")=442 + Set gtmtypes("shm_snapshot_t",443,"name")="shm_snapshot_t.shadow_file_header.new_buff_cntr" + Set gtmtypes("shm_snapshot_t",443,"off")=7888 + Set gtmtypes("shm_snapshot_t",443,"len")=4 + Set gtmtypes("shm_snapshot_t",443,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.new_buff_cntr")=443 + Set gtmtypes("shm_snapshot_t",444,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("shm_snapshot_t",444,"off")=7892 + Set gtmtypes("shm_snapshot_t",444,"len")=4 + Set gtmtypes("shm_snapshot_t",444,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr")=444 + Set gtmtypes("shm_snapshot_t",445,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("shm_snapshot_t",445,"off")=7896 + Set gtmtypes("shm_snapshot_t",445,"len")=4 + Set gtmtypes("shm_snapshot_t",445,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr")=445 + Set gtmtypes("shm_snapshot_t",446,"name")="shm_snapshot_t.shadow_file_header.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("shm_snapshot_t",446,"off")=7900 + Set gtmtypes("shm_snapshot_t",446,"len")=4 + Set gtmtypes("shm_snapshot_t",446,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.phase2_commit_wait_pidcnt_cntr")=446 + Set gtmtypes("shm_snapshot_t",447,"name")="shm_snapshot_t.shadow_file_header.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("shm_snapshot_t",447,"off")=7904 + Set gtmtypes("shm_snapshot_t",447,"len")=4 + Set gtmtypes("shm_snapshot_t",447,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_t_end_sysops_intend_wait_cntr")=447 + Set gtmtypes("shm_snapshot_t",448,"name")="shm_snapshot_t.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("shm_snapshot_t",448,"off")=7908 + Set gtmtypes("shm_snapshot_t",448,"len")=4 + Set gtmtypes("shm_snapshot_t",448,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr")=448 + Set gtmtypes("shm_snapshot_t",449,"name")="shm_snapshot_t.shadow_file_header.wcb_phase2_commit_wait_cntr" + Set gtmtypes("shm_snapshot_t",449,"off")=7912 + Set gtmtypes("shm_snapshot_t",449,"len")=4 + Set gtmtypes("shm_snapshot_t",449,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.wcb_phase2_commit_wait_cntr")=449 + Set gtmtypes("shm_snapshot_t",450,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_calls_cntr" + Set gtmtypes("shm_snapshot_t",450,"off")=7916 + Set gtmtypes("shm_snapshot_t",450,"len")=4 + Set gtmtypes("shm_snapshot_t",450,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_calls_cntr")=450 + Set gtmtypes("shm_snapshot_t",451,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rip_cntr" + Set gtmtypes("shm_snapshot_t",451,"off")=7920 + Set gtmtypes("shm_snapshot_t",451,"len")=4 + Set gtmtypes("shm_snapshot_t",451,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rip_cntr")=451 + Set gtmtypes("shm_snapshot_t",452,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_in_tend_cntr" + Set gtmtypes("shm_snapshot_t",452,"off")=7924 + Set gtmtypes("shm_snapshot_t",452,"len")=4 + Set gtmtypes("shm_snapshot_t",452,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_in_tend_cntr")=452 + Set gtmtypes("shm_snapshot_t",453,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_search_blk_cntr" + Set gtmtypes("shm_snapshot_t",453,"off")=7928 + Set gtmtypes("shm_snapshot_t",453,"len")=4 + Set gtmtypes("shm_snapshot_t",453,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_search_blk_cntr")=453 + Set gtmtypes("shm_snapshot_t",454,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_new_rec_cntr" + Set gtmtypes("shm_snapshot_t",454,"off")=7932 + Set gtmtypes("shm_snapshot_t",454,"len")=4 + Set gtmtypes("shm_snapshot_t",454,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_new_rec_cntr")=454 + Set gtmtypes("shm_snapshot_t",455,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_size_cntr" + Set gtmtypes("shm_snapshot_t",455,"off")=7936 + Set gtmtypes("shm_snapshot_t",455,"len")=4 + Set gtmtypes("shm_snapshot_t",455,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_size_cntr")=455 + Set gtmtypes("shm_snapshot_t",456,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("shm_snapshot_t",456,"off")=7940 + Set gtmtypes("shm_snapshot_t",456,"len")=4 + Set gtmtypes("shm_snapshot_t",456,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_rec_cmpc_cntr")=456 + Set gtmtypes("shm_snapshot_t",457,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("shm_snapshot_t",457,"off")=7944 + Set gtmtypes("shm_snapshot_t",457,"len")=4 + Set gtmtypes("shm_snapshot_t",457,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_fini_cntr")=457 + Set gtmtypes("shm_snapshot_t",458,"name")="shm_snapshot_t.shadow_file_header.recompute_upd_array_blk_split_cntr" + Set gtmtypes("shm_snapshot_t",458,"off")=7948 + Set gtmtypes("shm_snapshot_t",458,"len")=4 + Set gtmtypes("shm_snapshot_t",458,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.recompute_upd_array_blk_split_cntr")=458 + Set gtmtypes("shm_snapshot_t",459,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("shm_snapshot_t",459,"off")=7952 + Set gtmtypes("shm_snapshot_t",459,"len")=4 + Set gtmtypes("shm_snapshot_t",459,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_cnt_cntr")=459 + Set gtmtypes("shm_snapshot_t",460,"name")="shm_snapshot_t.shadow_file_header.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("shm_snapshot_t",460,"off")=7956 + Set gtmtypes("shm_snapshot_t",460,"len")=4 + Set gtmtypes("shm_snapshot_t",460,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.t_qread_ripsleep_nblks_cntr")=460 + Set gtmtypes("shm_snapshot_t",461,"name")="shm_snapshot_t.shadow_file_header.bg_trc_rec_cntr_filler" + Set gtmtypes("shm_snapshot_t",461,"off")=7960 + Set gtmtypes("shm_snapshot_t",461,"len")=56 + Set gtmtypes("shm_snapshot_t",461,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.bg_trc_rec_cntr_filler")=461 + Set gtmtypes("shm_snapshot_t",462,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches" + Set gtmtypes("shm_snapshot_t",462,"off")=8016 + Set gtmtypes("shm_snapshot_t",462,"len")=8 + Set gtmtypes("shm_snapshot_t",462,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches")=462 + Set gtmtypes("shm_snapshot_t",463,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches.curr_count" + Set gtmtypes("shm_snapshot_t",463,"off")=8016 + Set gtmtypes("shm_snapshot_t",463,"len")=4 + Set gtmtypes("shm_snapshot_t",463,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches.curr_count")=463 + Set gtmtypes("shm_snapshot_t",464,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srches.cumul_count" + Set gtmtypes("shm_snapshot_t",464,"off")=8020 + Set gtmtypes("shm_snapshot_t",464,"len")=4 + Set gtmtypes("shm_snapshot_t",464,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srches.cumul_count")=464 + Set gtmtypes("shm_snapshot_t",465,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues" + Set gtmtypes("shm_snapshot_t",465,"off")=8024 + Set gtmtypes("shm_snapshot_t",465,"len")=8 + Set gtmtypes("shm_snapshot_t",465,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues")=465 + Set gtmtypes("shm_snapshot_t",466,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues.curr_count" + Set gtmtypes("shm_snapshot_t",466,"off")=8024 + Set gtmtypes("shm_snapshot_t",466,"len")=4 + Set gtmtypes("shm_snapshot_t",466,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues.curr_count")=466 + Set gtmtypes("shm_snapshot_t",467,"name")="shm_snapshot_t.shadow_file_header.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("shm_snapshot_t",467,"off")=8028 + Set gtmtypes("shm_snapshot_t",467,"len")=4 + Set gtmtypes("shm_snapshot_t",467,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_gvcst_srch_clues.cumul_count")=467 + Set gtmtypes("shm_snapshot_t",468,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head" + Set gtmtypes("shm_snapshot_t",468,"off")=8032 + Set gtmtypes("shm_snapshot_t",468,"len")=8 + Set gtmtypes("shm_snapshot_t",468,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head")=468 + Set gtmtypes("shm_snapshot_t",469,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head.curr_count" + Set gtmtypes("shm_snapshot_t",469,"off")=8032 + Set gtmtypes("shm_snapshot_t",469,"len")=4 + Set gtmtypes("shm_snapshot_t",469,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head.curr_count")=469 + Set gtmtypes("shm_snapshot_t",470,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_head.cumul_count" + Set gtmtypes("shm_snapshot_t",470,"off")=8036 + Set gtmtypes("shm_snapshot_t",470,"len")=4 + Set gtmtypes("shm_snapshot_t",470,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_head.cumul_count")=470 + Set gtmtypes("shm_snapshot_t",471,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same" + Set gtmtypes("shm_snapshot_t",471,"off")=8040 + Set gtmtypes("shm_snapshot_t",471,"len")=8 + Set gtmtypes("shm_snapshot_t",471,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same")=471 + Set gtmtypes("shm_snapshot_t",472,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same.curr_count" + Set gtmtypes("shm_snapshot_t",472,"off")=8040 + Set gtmtypes("shm_snapshot_t",472,"len")=4 + Set gtmtypes("shm_snapshot_t",472,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same.curr_count")=472 + Set gtmtypes("shm_snapshot_t",473,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_same.cumul_count" + Set gtmtypes("shm_snapshot_t",473,"off")=8044 + Set gtmtypes("shm_snapshot_t",473,"len")=4 + Set gtmtypes("shm_snapshot_t",473,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_same.cumul_count")=473 + Set gtmtypes("shm_snapshot_t",474,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail" + Set gtmtypes("shm_snapshot_t",474,"off")=8048 + Set gtmtypes("shm_snapshot_t",474,"len")=8 + Set gtmtypes("shm_snapshot_t",474,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail")=474 + Set gtmtypes("shm_snapshot_t",475,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail.curr_count" + Set gtmtypes("shm_snapshot_t",475,"off")=8048 + Set gtmtypes("shm_snapshot_t",475,"len")=4 + Set gtmtypes("shm_snapshot_t",475,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail.curr_count")=475 + Set gtmtypes("shm_snapshot_t",476,"name")="shm_snapshot_t.shadow_file_header.n_clue_used_tail.cumul_count" + Set gtmtypes("shm_snapshot_t",476,"off")=8052 + Set gtmtypes("shm_snapshot_t",476,"len")=4 + Set gtmtypes("shm_snapshot_t",476,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_clue_used_tail.cumul_count")=476 + Set gtmtypes("shm_snapshot_t",477,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads" + Set gtmtypes("shm_snapshot_t",477,"off")=8056 + Set gtmtypes("shm_snapshot_t",477,"len")=8 + Set gtmtypes("shm_snapshot_t",477,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads")=477 + Set gtmtypes("shm_snapshot_t",478,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads.curr_count" + Set gtmtypes("shm_snapshot_t",478,"off")=8056 + Set gtmtypes("shm_snapshot_t",478,"len")=4 + Set gtmtypes("shm_snapshot_t",478,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads.curr_count")=478 + Set gtmtypes("shm_snapshot_t",479,"name")="shm_snapshot_t.shadow_file_header.n_t_qreads.cumul_count" + Set gtmtypes("shm_snapshot_t",479,"off")=8060 + Set gtmtypes("shm_snapshot_t",479,"len")=4 + Set gtmtypes("shm_snapshot_t",479,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_t_qreads.cumul_count")=479 + Set gtmtypes("shm_snapshot_t",480,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads" + Set gtmtypes("shm_snapshot_t",480,"off")=8064 + Set gtmtypes("shm_snapshot_t",480,"len")=8 + Set gtmtypes("shm_snapshot_t",480,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads")=480 + Set gtmtypes("shm_snapshot_t",481,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads.curr_count" + Set gtmtypes("shm_snapshot_t",481,"off")=8064 + Set gtmtypes("shm_snapshot_t",481,"len")=4 + Set gtmtypes("shm_snapshot_t",481,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads.curr_count")=481 + Set gtmtypes("shm_snapshot_t",482,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_reads.cumul_count" + Set gtmtypes("shm_snapshot_t",482,"off")=8068 + Set gtmtypes("shm_snapshot_t",482,"len")=4 + Set gtmtypes("shm_snapshot_t",482,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_reads.cumul_count")=482 + Set gtmtypes("shm_snapshot_t",483,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates" + Set gtmtypes("shm_snapshot_t",483,"off")=8072 + Set gtmtypes("shm_snapshot_t",483,"len")=8 + Set gtmtypes("shm_snapshot_t",483,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates")=483 + Set gtmtypes("shm_snapshot_t",484,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates.curr_count" + Set gtmtypes("shm_snapshot_t",484,"off")=8072 + Set gtmtypes("shm_snapshot_t",484,"len")=4 + Set gtmtypes("shm_snapshot_t",484,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates.curr_count")=484 + Set gtmtypes("shm_snapshot_t",485,"name")="shm_snapshot_t.shadow_file_header.n_bgmm_updates.cumul_count" + Set gtmtypes("shm_snapshot_t",485,"off")=8076 + Set gtmtypes("shm_snapshot_t",485,"len")=4 + Set gtmtypes("shm_snapshot_t",485,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bgmm_updates.cumul_count")=485 + Set gtmtypes("shm_snapshot_t",486,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes" + Set gtmtypes("shm_snapshot_t",486,"off")=8080 + Set gtmtypes("shm_snapshot_t",486,"len")=8 + Set gtmtypes("shm_snapshot_t",486,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes")=486 + Set gtmtypes("shm_snapshot_t",487,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes.curr_count" + Set gtmtypes("shm_snapshot_t",487,"off")=8080 + Set gtmtypes("shm_snapshot_t",487,"len")=4 + Set gtmtypes("shm_snapshot_t",487,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes.curr_count")=487 + Set gtmtypes("shm_snapshot_t",488,"name")="shm_snapshot_t.shadow_file_header.unused_dsk_writes.cumul_count" + Set gtmtypes("shm_snapshot_t",488,"off")=8084 + Set gtmtypes("shm_snapshot_t",488,"len")=4 + Set gtmtypes("shm_snapshot_t",488,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.unused_dsk_writes.cumul_count")=488 + Set gtmtypes("shm_snapshot_t",489,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates" + Set gtmtypes("shm_snapshot_t",489,"off")=8088 + Set gtmtypes("shm_snapshot_t",489,"len")=8 + Set gtmtypes("shm_snapshot_t",489,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates")=489 + Set gtmtypes("shm_snapshot_t",490,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates.curr_count" + Set gtmtypes("shm_snapshot_t",490,"off")=8088 + Set gtmtypes("shm_snapshot_t",490,"len")=4 + Set gtmtypes("shm_snapshot_t",490,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates.curr_count")=490 + Set gtmtypes("shm_snapshot_t",491,"name")="shm_snapshot_t.shadow_file_header.n_bg_update_creates.cumul_count" + Set gtmtypes("shm_snapshot_t",491,"off")=8092 + Set gtmtypes("shm_snapshot_t",491,"len")=4 + Set gtmtypes("shm_snapshot_t",491,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_bg_update_creates.cumul_count")=491 + Set gtmtypes("shm_snapshot_t",492,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns" + Set gtmtypes("shm_snapshot_t",492,"off")=8096 + Set gtmtypes("shm_snapshot_t",492,"len")=8 + Set gtmtypes("shm_snapshot_t",492,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns")=492 + Set gtmtypes("shm_snapshot_t",493,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns.curr_count" + Set gtmtypes("shm_snapshot_t",493,"off")=8096 + Set gtmtypes("shm_snapshot_t",493,"len")=4 + Set gtmtypes("shm_snapshot_t",493,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns.curr_count")=493 + Set gtmtypes("shm_snapshot_t",494,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getns.cumul_count" + Set gtmtypes("shm_snapshot_t",494,"off")=8100 + Set gtmtypes("shm_snapshot_t",494,"len")=4 + Set gtmtypes("shm_snapshot_t",494,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getns.cumul_count")=494 + Set gtmtypes("shm_snapshot_t",495,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt" + Set gtmtypes("shm_snapshot_t",495,"off")=8104 + Set gtmtypes("shm_snapshot_t",495,"len")=8 + Set gtmtypes("shm_snapshot_t",495,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt")=495 + Set gtmtypes("shm_snapshot_t",496,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("shm_snapshot_t",496,"off")=8104 + Set gtmtypes("shm_snapshot_t",496,"len")=4 + Set gtmtypes("shm_snapshot_t",496,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt.curr_count")=496 + Set gtmtypes("shm_snapshot_t",497,"name")="shm_snapshot_t.shadow_file_header.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("shm_snapshot_t",497,"off")=8108 + Set gtmtypes("shm_snapshot_t",497,"len")=4 + Set gtmtypes("shm_snapshot_t",497,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.n_db_csh_getn_lcnt.cumul_count")=497 + Set gtmtypes("shm_snapshot_t",498,"name")="shm_snapshot_t.shadow_file_header.db_csh_acct_rec_filler_4k" + Set gtmtypes("shm_snapshot_t",498,"off")=8112 + Set gtmtypes("shm_snapshot_t",498,"len")=152 + Set gtmtypes("shm_snapshot_t",498,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_csh_acct_rec_filler_4k")=498 + Set gtmtypes("shm_snapshot_t",499,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec" + Set gtmtypes("shm_snapshot_t",499,"off")=8264 + Set gtmtypes("shm_snapshot_t",499,"len")=464 + Set gtmtypes("shm_snapshot_t",499,"type")="gvstats_rec_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec")=499 + Set gtmtypes("shm_snapshot_t",500,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_set" + Set gtmtypes("shm_snapshot_t",500,"off")=8264 + Set gtmtypes("shm_snapshot_t",500,"len")=8 + Set gtmtypes("shm_snapshot_t",500,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_set")=500 + Set gtmtypes("shm_snapshot_t",501,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_kill" + Set gtmtypes("shm_snapshot_t",501,"off")=8272 + Set gtmtypes("shm_snapshot_t",501,"len")=8 + Set gtmtypes("shm_snapshot_t",501,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_kill")=501 + Set gtmtypes("shm_snapshot_t",502,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_get" + Set gtmtypes("shm_snapshot_t",502,"off")=8280 + Set gtmtypes("shm_snapshot_t",502,"len")=8 + Set gtmtypes("shm_snapshot_t",502,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_get")=502 + Set gtmtypes("shm_snapshot_t",503,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_data" + Set gtmtypes("shm_snapshot_t",503,"off")=8288 + Set gtmtypes("shm_snapshot_t",503,"len")=8 + Set gtmtypes("shm_snapshot_t",503,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_data")=503 + Set gtmtypes("shm_snapshot_t",504,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_order" + Set gtmtypes("shm_snapshot_t",504,"off")=8296 + Set gtmtypes("shm_snapshot_t",504,"len")=8 + Set gtmtypes("shm_snapshot_t",504,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_order")=504 + Set gtmtypes("shm_snapshot_t",505,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_zprev" + Set gtmtypes("shm_snapshot_t",505,"off")=8304 + Set gtmtypes("shm_snapshot_t",505,"len")=8 + Set gtmtypes("shm_snapshot_t",505,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_zprev")=505 + Set gtmtypes("shm_snapshot_t",506,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_query" + Set gtmtypes("shm_snapshot_t",506,"off")=8312 + Set gtmtypes("shm_snapshot_t",506,"len")=8 + Set gtmtypes("shm_snapshot_t",506,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_query")=506 + Set gtmtypes("shm_snapshot_t",507,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_lock_success" + Set gtmtypes("shm_snapshot_t",507,"off")=8320 + Set gtmtypes("shm_snapshot_t",507,"len")=8 + Set gtmtypes("shm_snapshot_t",507,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_lock_success")=507 + Set gtmtypes("shm_snapshot_t",508,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_lock_fail" + Set gtmtypes("shm_snapshot_t",508,"off")=8328 + Set gtmtypes("shm_snapshot_t",508,"len")=8 + Set gtmtypes("shm_snapshot_t",508,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_lock_fail")=508 + Set gtmtypes("shm_snapshot_t",509,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.db_curr_tn" + Set gtmtypes("shm_snapshot_t",509,"off")=8336 + Set gtmtypes("shm_snapshot_t",509,"len")=8 + Set gtmtypes("shm_snapshot_t",509,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.db_curr_tn")=509 + Set gtmtypes("shm_snapshot_t",510,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_dsk_read" + Set gtmtypes("shm_snapshot_t",510,"off")=8344 + Set gtmtypes("shm_snapshot_t",510,"len")=8 + Set gtmtypes("shm_snapshot_t",510,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_dsk_read")=510 + Set gtmtypes("shm_snapshot_t",511,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_dsk_write" + Set gtmtypes("shm_snapshot_t",511,"off")=8352 + Set gtmtypes("shm_snapshot_t",511,"len")=8 + Set gtmtypes("shm_snapshot_t",511,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_dsk_write")=511 + Set gtmtypes("shm_snapshot_t",512,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("shm_snapshot_t",512,"off")=8360 + Set gtmtypes("shm_snapshot_t",512,"len")=8 + Set gtmtypes("shm_snapshot_t",512,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_readwrite")=512 + Set gtmtypes("shm_snapshot_t",513,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_readonly" + Set gtmtypes("shm_snapshot_t",513,"off")=8368 + Set gtmtypes("shm_snapshot_t",513,"len")=8 + Set gtmtypes("shm_snapshot_t",513,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_readonly")=513 + Set gtmtypes("shm_snapshot_t",514,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("shm_snapshot_t",514,"off")=8376 + Set gtmtypes("shm_snapshot_t",514,"len")=8 + Set gtmtypes("shm_snapshot_t",514,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_blkwrite")=514 + Set gtmtypes("shm_snapshot_t",515,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_blkread" + Set gtmtypes("shm_snapshot_t",515,"off")=8384 + Set gtmtypes("shm_snapshot_t",515,"len")=8 + Set gtmtypes("shm_snapshot_t",515,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_blkread")=515 + Set gtmtypes("shm_snapshot_t",516,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("shm_snapshot_t",516,"off")=8392 + Set gtmtypes("shm_snapshot_t",516,"len")=8 + Set gtmtypes("shm_snapshot_t",516,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_0")=516 + Set gtmtypes("shm_snapshot_t",517,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("shm_snapshot_t",517,"off")=8400 + Set gtmtypes("shm_snapshot_t",517,"len")=8 + Set gtmtypes("shm_snapshot_t",517,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_1")=517 + Set gtmtypes("shm_snapshot_t",518,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("shm_snapshot_t",518,"off")=8408 + Set gtmtypes("shm_snapshot_t",518,"len")=8 + Set gtmtypes("shm_snapshot_t",518,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_2")=518 + Set gtmtypes("shm_snapshot_t",519,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("shm_snapshot_t",519,"off")=8416 + Set gtmtypes("shm_snapshot_t",519,"len")=8 + Set gtmtypes("shm_snapshot_t",519,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_nontp_retries_3")=519 + Set gtmtypes("shm_snapshot_t",520,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_readwrite" + Set gtmtypes("shm_snapshot_t",520,"off")=8424 + Set gtmtypes("shm_snapshot_t",520,"len")=8 + Set gtmtypes("shm_snapshot_t",520,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_readwrite")=520 + Set gtmtypes("shm_snapshot_t",521,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_readonly" + Set gtmtypes("shm_snapshot_t",521,"off")=8432 + Set gtmtypes("shm_snapshot_t",521,"len")=8 + Set gtmtypes("shm_snapshot_t",521,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_readonly")=521 + Set gtmtypes("shm_snapshot_t",522,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_rolledback" + Set gtmtypes("shm_snapshot_t",522,"off")=8440 + Set gtmtypes("shm_snapshot_t",522,"len")=8 + Set gtmtypes("shm_snapshot_t",522,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_rolledback")=522 + Set gtmtypes("shm_snapshot_t",523,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("shm_snapshot_t",523,"off")=8448 + Set gtmtypes("shm_snapshot_t",523,"len")=8 + Set gtmtypes("shm_snapshot_t",523,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_blkwrite")=523 + Set gtmtypes("shm_snapshot_t",524,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_blkread" + Set gtmtypes("shm_snapshot_t",524,"off")=8456 + Set gtmtypes("shm_snapshot_t",524,"len")=8 + Set gtmtypes("shm_snapshot_t",524,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_blkread")=524 + Set gtmtypes("shm_snapshot_t",525,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("shm_snapshot_t",525,"off")=8464 + Set gtmtypes("shm_snapshot_t",525,"len")=8 + Set gtmtypes("shm_snapshot_t",525,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_0")=525 + Set gtmtypes("shm_snapshot_t",526,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("shm_snapshot_t",526,"off")=8472 + Set gtmtypes("shm_snapshot_t",526,"len")=8 + Set gtmtypes("shm_snapshot_t",526,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_1")=526 + Set gtmtypes("shm_snapshot_t",527,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("shm_snapshot_t",527,"off")=8480 + Set gtmtypes("shm_snapshot_t",527,"len")=8 + Set gtmtypes("shm_snapshot_t",527,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_2")=527 + Set gtmtypes("shm_snapshot_t",528,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("shm_snapshot_t",528,"off")=8488 + Set gtmtypes("shm_snapshot_t",528,"len")=8 + Set gtmtypes("shm_snapshot_t",528,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_3")=528 + Set gtmtypes("shm_snapshot_t",529,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("shm_snapshot_t",529,"off")=8496 + Set gtmtypes("shm_snapshot_t",529,"len")=8 + Set gtmtypes("shm_snapshot_t",529,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_tot_retries_4")=529 + Set gtmtypes("shm_snapshot_t",530,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("shm_snapshot_t",530,"off")=8504 + Set gtmtypes("shm_snapshot_t",530,"len")=8 + Set gtmtypes("shm_snapshot_t",530,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0")=530 + Set gtmtypes("shm_snapshot_t",531,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("shm_snapshot_t",531,"off")=8512 + Set gtmtypes("shm_snapshot_t",531,"len")=8 + Set gtmtypes("shm_snapshot_t",531,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1")=531 + Set gtmtypes("shm_snapshot_t",532,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("shm_snapshot_t",532,"off")=8520 + Set gtmtypes("shm_snapshot_t",532,"len")=8 + Set gtmtypes("shm_snapshot_t",532,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2")=532 + Set gtmtypes("shm_snapshot_t",533,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("shm_snapshot_t",533,"off")=8528 + Set gtmtypes("shm_snapshot_t",533,"len")=8 + Set gtmtypes("shm_snapshot_t",533,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3")=533 + Set gtmtypes("shm_snapshot_t",534,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("shm_snapshot_t",534,"off")=8536 + Set gtmtypes("shm_snapshot_t",534,"len")=8 + Set gtmtypes("shm_snapshot_t",534,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4")=534 + Set gtmtypes("shm_snapshot_t",535,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_ztrigger" + Set gtmtypes("shm_snapshot_t",535,"off")=8544 + Set gtmtypes("shm_snapshot_t",535,"len")=8 + Set gtmtypes("shm_snapshot_t",535,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_ztrigger")=535 + Set gtmtypes("shm_snapshot_t",536,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_flush" + Set gtmtypes("shm_snapshot_t",536,"off")=8552 + Set gtmtypes("shm_snapshot_t",536,"len")=8 + Set gtmtypes("shm_snapshot_t",536,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_flush")=536 + Set gtmtypes("shm_snapshot_t",537,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_fsync" + Set gtmtypes("shm_snapshot_t",537,"off")=8560 + Set gtmtypes("shm_snapshot_t",537,"len")=8 + Set gtmtypes("shm_snapshot_t",537,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_fsync")=537 + Set gtmtypes("shm_snapshot_t",538,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_flush" + Set gtmtypes("shm_snapshot_t",538,"off")=8568 + Set gtmtypes("shm_snapshot_t",538,"len")=8 + Set gtmtypes("shm_snapshot_t",538,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_flush")=538 + Set gtmtypes("shm_snapshot_t",539,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_fsync" + Set gtmtypes("shm_snapshot_t",539,"off")=8576 + Set gtmtypes("shm_snapshot_t",539,"len")=8 + Set gtmtypes("shm_snapshot_t",539,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_fsync")=539 + Set gtmtypes("shm_snapshot_t",540,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("shm_snapshot_t",540,"off")=8584 + Set gtmtypes("shm_snapshot_t",540,"len")=8 + Set gtmtypes("shm_snapshot_t",540,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jbuff_bytes")=540 + Set gtmtypes("shm_snapshot_t",541,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jfile_bytes" + Set gtmtypes("shm_snapshot_t",541,"off")=8592 + Set gtmtypes("shm_snapshot_t",541,"len")=8 + Set gtmtypes("shm_snapshot_t",541,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jfile_bytes")=541 + Set gtmtypes("shm_snapshot_t",542,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jfile_writes" + Set gtmtypes("shm_snapshot_t",542,"off")=8600 + Set gtmtypes("shm_snapshot_t",542,"len")=8 + Set gtmtypes("shm_snapshot_t",542,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jfile_writes")=542 + Set gtmtypes("shm_snapshot_t",543,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_logical" + Set gtmtypes("shm_snapshot_t",543,"off")=8608 + Set gtmtypes("shm_snapshot_t",543,"len")=8 + Set gtmtypes("shm_snapshot_t",543,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_logical")=543 + Set gtmtypes("shm_snapshot_t",544,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_pblk" + Set gtmtypes("shm_snapshot_t",544,"off")=8616 + Set gtmtypes("shm_snapshot_t",544,"len")=8 + Set gtmtypes("shm_snapshot_t",544,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_pblk")=544 + Set gtmtypes("shm_snapshot_t",545,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("shm_snapshot_t",545,"off")=8624 + Set gtmtypes("shm_snapshot_t",545,"len")=8 + Set gtmtypes("shm_snapshot_t",545,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_epoch_regular")=545 + Set gtmtypes("shm_snapshot_t",546,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("shm_snapshot_t",546,"off")=8632 + Set gtmtypes("shm_snapshot_t",546,"len")=8 + Set gtmtypes("shm_snapshot_t",546,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_epoch_idle")=546 + Set gtmtypes("shm_snapshot_t",547,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jrec_other" + Set gtmtypes("shm_snapshot_t",547,"off")=8640 + Set gtmtypes("shm_snapshot_t",547,"len")=8 + Set gtmtypes("shm_snapshot_t",547,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jrec_other")=547 + Set gtmtypes("shm_snapshot_t",548,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_jnl_extends" + Set gtmtypes("shm_snapshot_t",548,"off")=8648 + Set gtmtypes("shm_snapshot_t",548,"len")=8 + Set gtmtypes("shm_snapshot_t",548,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_jnl_extends")=548 + Set gtmtypes("shm_snapshot_t",549,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_db_extends" + Set gtmtypes("shm_snapshot_t",549,"off")=8656 + Set gtmtypes("shm_snapshot_t",549,"len")=8 + Set gtmtypes("shm_snapshot_t",549,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_db_extends")=549 + Set gtmtypes("shm_snapshot_t",550,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_success" + Set gtmtypes("shm_snapshot_t",550,"off")=8664 + Set gtmtypes("shm_snapshot_t",550,"len")=8 + Set gtmtypes("shm_snapshot_t",550,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_success")=550 + Set gtmtypes("shm_snapshot_t",551,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crits_in_epch" + Set gtmtypes("shm_snapshot_t",551,"off")=8672 + Set gtmtypes("shm_snapshot_t",551,"len")=8 + Set gtmtypes("shm_snapshot_t",551,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crits_in_epch")=551 + Set gtmtypes("shm_snapshot_t",552,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_failed" + Set gtmtypes("shm_snapshot_t",552,"off")=8680 + Set gtmtypes("shm_snapshot_t",552,"len")=8 + Set gtmtypes("shm_snapshot_t",552,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_failed")=552 + Set gtmtypes("shm_snapshot_t",553,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_failed" + Set gtmtypes("shm_snapshot_t",553,"off")=8688 + Set gtmtypes("shm_snapshot_t",553,"len")=8 + Set gtmtypes("shm_snapshot_t",553,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_failed")=553 + Set gtmtypes("shm_snapshot_t",554,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("shm_snapshot_t",554,"off")=8696 + Set gtmtypes("shm_snapshot_t",554,"len")=8 + Set gtmtypes("shm_snapshot_t",554,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_que_slps")=554 + Set gtmtypes("shm_snapshot_t",555,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_que_slps" + Set gtmtypes("shm_snapshot_t",555,"off")=8704 + Set gtmtypes("shm_snapshot_t",555,"len")=8 + Set gtmtypes("shm_snapshot_t",555,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_que_slps")=555 + Set gtmtypes("shm_snapshot_t",556,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.sq_crit_yields" + Set gtmtypes("shm_snapshot_t",556,"off")=8712 + Set gtmtypes("shm_snapshot_t",556,"len")=8 + Set gtmtypes("shm_snapshot_t",556,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.sq_crit_yields")=556 + Set gtmtypes("shm_snapshot_t",557,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec.n_crit_yields" + Set gtmtypes("shm_snapshot_t",557,"off")=8720 + Set gtmtypes("shm_snapshot_t",557,"len")=8 + Set gtmtypes("shm_snapshot_t",557,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec.n_crit_yields")=557 + Set gtmtypes("shm_snapshot_t",558,"name")="shm_snapshot_t.shadow_file_header.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("shm_snapshot_t",558,"off")=8728 + Set gtmtypes("shm_snapshot_t",558,"len")=48 + Set gtmtypes("shm_snapshot_t",558,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.gvstats_rec_filler_4k_plus_512")=558 + Set gtmtypes("shm_snapshot_t",559,"name")="shm_snapshot_t.shadow_file_header.filler_4k_plus_512" + Set gtmtypes("shm_snapshot_t",559,"off")=8776 + Set gtmtypes("shm_snapshot_t",559,"len")=368 + Set gtmtypes("shm_snapshot_t",559,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_4k_plus_512")=559 + Set gtmtypes("shm_snapshot_t",560,"name")="shm_snapshot_t.shadow_file_header.intrpt_recov_resync_strm_seqno" + Set gtmtypes("shm_snapshot_t",560,"off")=9144 + Set gtmtypes("shm_snapshot_t",560,"len")=128 + Set gtmtypes("shm_snapshot_t",560,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.intrpt_recov_resync_strm_seqno")=560 + Set gtmtypes("shm_snapshot_t",560,"dim")=16 + Set gtmtypes("shm_snapshot_t",561,"name")="shm_snapshot_t.shadow_file_header.creation_db_ver" + Set gtmtypes("shm_snapshot_t",561,"off")=9272 + Set gtmtypes("shm_snapshot_t",561,"len")=4 + Set gtmtypes("shm_snapshot_t",561,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_db_ver")=561 + Set gtmtypes("shm_snapshot_t",562,"name")="shm_snapshot_t.shadow_file_header.creation_mdb_ver" + Set gtmtypes("shm_snapshot_t",562,"off")=9276 + Set gtmtypes("shm_snapshot_t",562,"len")=4 + Set gtmtypes("shm_snapshot_t",562,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.creation_mdb_ver")=562 + Set gtmtypes("shm_snapshot_t",563,"name")="shm_snapshot_t.shadow_file_header.certified_for_upgrade_to" + Set gtmtypes("shm_snapshot_t",563,"off")=9280 + Set gtmtypes("shm_snapshot_t",563,"len")=4 + Set gtmtypes("shm_snapshot_t",563,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.certified_for_upgrade_to")=563 + Set gtmtypes("shm_snapshot_t",564,"name")="shm_snapshot_t.shadow_file_header.filler_5k" + Set gtmtypes("shm_snapshot_t",564,"off")=9284 + Set gtmtypes("shm_snapshot_t",564,"len")=4 + Set gtmtypes("shm_snapshot_t",564,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_5k")=564 + Set gtmtypes("shm_snapshot_t",565,"name")="shm_snapshot_t.shadow_file_header.secshr_ops_index_filler" + Set gtmtypes("shm_snapshot_t",565,"off")=9288 + Set gtmtypes("shm_snapshot_t",565,"len")=4 + Set gtmtypes("shm_snapshot_t",565,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.secshr_ops_index_filler")=565 + Set gtmtypes("shm_snapshot_t",566,"name")="shm_snapshot_t.shadow_file_header.secshr_ops_array_filler" + Set gtmtypes("shm_snapshot_t",566,"off")=9292 + Set gtmtypes("shm_snapshot_t",566,"len")=1020 + Set gtmtypes("shm_snapshot_t",566,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.secshr_ops_array_filler")=566 + Set gtmtypes("shm_snapshot_t",566,"dim")=255 + Set gtmtypes("shm_snapshot_t",567,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn" + Set gtmtypes("shm_snapshot_t",567,"off")=10312 + Set gtmtypes("shm_snapshot_t",567,"len")=24 + Set gtmtypes("shm_snapshot_t",567,"type")="compswap_time_field" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn")=567 + Set gtmtypes("shm_snapshot_t",568,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch" + Set gtmtypes("shm_snapshot_t",568,"off")=10312 + Set gtmtypes("shm_snapshot_t",568,"len")=8 + Set gtmtypes("shm_snapshot_t",568,"type")="global_latch_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch")=568 + Set gtmtypes("shm_snapshot_t",569,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u" + Set gtmtypes("shm_snapshot_t",569,"off")=10312 + Set gtmtypes("shm_snapshot_t",569,"len")=8 + Set gtmtypes("shm_snapshot_t",569,"type")="union" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u")=569 + Set gtmtypes("shm_snapshot_t",570,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("shm_snapshot_t",570,"off")=10312 + Set gtmtypes("shm_snapshot_t",570,"len")=8 + Set gtmtypes("shm_snapshot_t",570,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt")=570 + Set gtmtypes("shm_snapshot_t",571,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("shm_snapshot_t",571,"off")=10312 + Set gtmtypes("shm_snapshot_t",571,"len")=8 + Set gtmtypes("shm_snapshot_t",571,"type")="struct" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts")=571 + Set gtmtypes("shm_snapshot_t",572,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("shm_snapshot_t",572,"off")=10312 + Set gtmtypes("shm_snapshot_t",572,"len")=4 + Set gtmtypes("shm_snapshot_t",572,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid")=572 + Set gtmtypes("shm_snapshot_t",573,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("shm_snapshot_t",573,"off")=10316 + Set gtmtypes("shm_snapshot_t",573,"len")=4 + Set gtmtypes("shm_snapshot_t",573,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word")=573 + Set gtmtypes("shm_snapshot_t",574,"name")="shm_snapshot_t.shadow_file_header.next_upgrd_warn.hp_latch_space" + Set gtmtypes("shm_snapshot_t",574,"off")=10320 + Set gtmtypes("shm_snapshot_t",574,"len")=16 + Set gtmtypes("shm_snapshot_t",574,"type")="int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.next_upgrd_warn.hp_latch_space")=574 + Set gtmtypes("shm_snapshot_t",574,"dim")=4 + Set gtmtypes("shm_snapshot_t",575,"name")="shm_snapshot_t.shadow_file_header.is_encrypted" + Set gtmtypes("shm_snapshot_t",575,"off")=10336 + Set gtmtypes("shm_snapshot_t",575,"len")=4 + Set gtmtypes("shm_snapshot_t",575,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.is_encrypted")=575 + Set gtmtypes("shm_snapshot_t",576,"name")="shm_snapshot_t.shadow_file_header.db_trigger_cycle" + Set gtmtypes("shm_snapshot_t",576,"off")=10340 + Set gtmtypes("shm_snapshot_t",576,"len")=4 + Set gtmtypes("shm_snapshot_t",576,"type")="unsigned-int" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.db_trigger_cycle")=576 + Set gtmtypes("shm_snapshot_t",577,"name")="shm_snapshot_t.shadow_file_header.strm_reg_seqno" + Set gtmtypes("shm_snapshot_t",577,"off")=10344 + Set gtmtypes("shm_snapshot_t",577,"len")=128 + Set gtmtypes("shm_snapshot_t",577,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.strm_reg_seqno")=577 + Set gtmtypes("shm_snapshot_t",577,"dim")=16 + Set gtmtypes("shm_snapshot_t",578,"name")="shm_snapshot_t.shadow_file_header.save_strm_reg_seqno" + Set gtmtypes("shm_snapshot_t",578,"off")=10472 + Set gtmtypes("shm_snapshot_t",578,"len")=128 + Set gtmtypes("shm_snapshot_t",578,"type")="uint64_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.save_strm_reg_seqno")=578 + Set gtmtypes("shm_snapshot_t",578,"dim")=16 + Set gtmtypes("shm_snapshot_t",579,"name")="shm_snapshot_t.shadow_file_header.freeze_on_fail" + Set gtmtypes("shm_snapshot_t",579,"off")=10600 + Set gtmtypes("shm_snapshot_t",579,"len")=4 + Set gtmtypes("shm_snapshot_t",579,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.freeze_on_fail")=579 + Set gtmtypes("shm_snapshot_t",580,"name")="shm_snapshot_t.shadow_file_header.span_node_absent" + Set gtmtypes("shm_snapshot_t",580,"off")=10604 + Set gtmtypes("shm_snapshot_t",580,"len")=4 + Set gtmtypes("shm_snapshot_t",580,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.span_node_absent")=580 + Set gtmtypes("shm_snapshot_t",581,"name")="shm_snapshot_t.shadow_file_header.maxkeysz_assured" + Set gtmtypes("shm_snapshot_t",581,"off")=10608 + Set gtmtypes("shm_snapshot_t",581,"len")=4 + Set gtmtypes("shm_snapshot_t",581,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.maxkeysz_assured")=581 + Set gtmtypes("shm_snapshot_t",582,"name")="shm_snapshot_t.shadow_file_header.hasht_upgrade_needed" + Set gtmtypes("shm_snapshot_t",582,"off")=10612 + Set gtmtypes("shm_snapshot_t",582,"len")=4 + Set gtmtypes("shm_snapshot_t",582,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.hasht_upgrade_needed")=582 + Set gtmtypes("shm_snapshot_t",583,"name")="shm_snapshot_t.shadow_file_header.defer_allocate" + Set gtmtypes("shm_snapshot_t",583,"off")=10616 + Set gtmtypes("shm_snapshot_t",583,"len")=4 + Set gtmtypes("shm_snapshot_t",583,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.defer_allocate")=583 + Set gtmtypes("shm_snapshot_t",584,"name")="shm_snapshot_t.shadow_file_header.ftok_counter_halted" + Set gtmtypes("shm_snapshot_t",584,"off")=10620 + Set gtmtypes("shm_snapshot_t",584,"len")=4 + Set gtmtypes("shm_snapshot_t",584,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.ftok_counter_halted")=584 + Set gtmtypes("shm_snapshot_t",585,"name")="shm_snapshot_t.shadow_file_header.access_counter_halted" + Set gtmtypes("shm_snapshot_t",585,"off")=10624 + Set gtmtypes("shm_snapshot_t",585,"len")=4 + Set gtmtypes("shm_snapshot_t",585,"type")="boolean_t" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.access_counter_halted")=585 + Set gtmtypes("shm_snapshot_t",586,"name")="shm_snapshot_t.shadow_file_header.filler_7k" + Set gtmtypes("shm_snapshot_t",586,"off")=10628 + Set gtmtypes("shm_snapshot_t",586,"len")=708 + Set gtmtypes("shm_snapshot_t",586,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_7k")=586 + Set gtmtypes("shm_snapshot_t",587,"name")="shm_snapshot_t.shadow_file_header.filler_8k" + Set gtmtypes("shm_snapshot_t",587,"off")=11336 + Set gtmtypes("shm_snapshot_t",587,"len")=1024 + Set gtmtypes("shm_snapshot_t",587,"type")="char" + Set gtmtypfldindx("shm_snapshot_t","shadow_file_header.filler_8k")=587 + ; + Set gtmtypes("shmpool_blk_hdr")="struct" + Set gtmtypes("shmpool_blk_hdr",0)=11 + Set gtmtypes("shmpool_blk_hdr","len")=32 + Set gtmtypes("shmpool_blk_hdr",1,"name")="shmpool_blk_hdr.sm_que" + Set gtmtypes("shmpool_blk_hdr",1,"off")=0 + Set gtmtypes("shmpool_blk_hdr",1,"len")=8 + Set gtmtypes("shmpool_blk_hdr",1,"type")="que_ent" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que")=1 + Set gtmtypes("shmpool_blk_hdr",2,"name")="shmpool_blk_hdr.sm_que.fl" + Set gtmtypes("shmpool_blk_hdr",2,"off")=0 + Set gtmtypes("shmpool_blk_hdr",2,"len")=4 + Set gtmtypes("shmpool_blk_hdr",2,"type")="intptr_t" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que.fl")=2 + Set gtmtypes("shmpool_blk_hdr",3,"name")="shmpool_blk_hdr.sm_que.bl" + Set gtmtypes("shmpool_blk_hdr",3,"off")=4 + Set gtmtypes("shmpool_blk_hdr",3,"len")=4 + Set gtmtypes("shmpool_blk_hdr",3,"type")="intptr_t" + Set gtmtypfldindx("shmpool_blk_hdr","sm_que.bl")=3 + Set gtmtypes("shmpool_blk_hdr",4,"name")="shmpool_blk_hdr.blktype" + Set gtmtypes("shmpool_blk_hdr",4,"off")=8 + Set gtmtypes("shmpool_blk_hdr",4,"len")=4 + Set gtmtypes("shmpool_blk_hdr",4,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","blktype")=4 + Set gtmtypes("shmpool_blk_hdr",5,"name")="shmpool_blk_hdr.blkid" + Set gtmtypes("shmpool_blk_hdr",5,"off")=12 + Set gtmtypes("shmpool_blk_hdr",5,"len")=4 + Set gtmtypes("shmpool_blk_hdr",5,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","blkid")=5 + Set gtmtypes("shmpool_blk_hdr",6,"name")="shmpool_blk_hdr.use" + Set gtmtypes("shmpool_blk_hdr",6,"off")=16 + Set gtmtypes("shmpool_blk_hdr",6,"len")=4 + Set gtmtypes("shmpool_blk_hdr",6,"type")="union" + Set gtmtypfldindx("shmpool_blk_hdr","use")=6 + Set gtmtypes("shmpool_blk_hdr",7,"name")="shmpool_blk_hdr.use.bkup" + Set gtmtypes("shmpool_blk_hdr",7,"off")=16 + Set gtmtypes("shmpool_blk_hdr",7,"len")=4 + Set gtmtypes("shmpool_blk_hdr",7,"type")="struct" + Set gtmtypfldindx("shmpool_blk_hdr","use.bkup")=7 + Set gtmtypes("shmpool_blk_hdr",8,"name")="shmpool_blk_hdr.use.bkup.ondsk_blkver" + Set gtmtypes("shmpool_blk_hdr",8,"off")=16 + Set gtmtypes("shmpool_blk_hdr",8,"len")=4 + Set gtmtypes("shmpool_blk_hdr",8,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","use.bkup.ondsk_blkver")=8 + Set gtmtypes("shmpool_blk_hdr",9,"name")="shmpool_blk_hdr.holder_pid" + Set gtmtypes("shmpool_blk_hdr",9,"off")=20 + Set gtmtypes("shmpool_blk_hdr",9,"len")=4 + Set gtmtypes("shmpool_blk_hdr",9,"type")="pid_t" + Set gtmtypfldindx("shmpool_blk_hdr","holder_pid")=9 + Set gtmtypes("shmpool_blk_hdr",10,"name")="shmpool_blk_hdr.valid_data" + Set gtmtypes("shmpool_blk_hdr",10,"off")=24 + Set gtmtypes("shmpool_blk_hdr",10,"len")=4 + Set gtmtypes("shmpool_blk_hdr",10,"type")="boolean_t" + Set gtmtypfldindx("shmpool_blk_hdr","valid_data")=10 + Set gtmtypes("shmpool_blk_hdr",11,"name")="shmpool_blk_hdr.image_count" + Set gtmtypes("shmpool_blk_hdr",11,"off")=28 + Set gtmtypes("shmpool_blk_hdr",11,"len")=4 + Set gtmtypes("shmpool_blk_hdr",11,"type")="int" + Set gtmtypfldindx("shmpool_blk_hdr","image_count")=11 + ; + Set gtmtypes("shmpool_buff_hdr")="struct" + Set gtmtypes("shmpool_buff_hdr",0)=594 + Set gtmtypes("shmpool_buff_hdr","len")=8544 + Set gtmtypes("shmpool_buff_hdr",1,"name")="shmpool_buff_hdr.shmpool_crit_latch" + Set gtmtypes("shmpool_buff_hdr",1,"off")=0 + Set gtmtypes("shmpool_buff_hdr",1,"len")=8 + Set gtmtypes("shmpool_buff_hdr",1,"type")="global_latch_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch")=1 + Set gtmtypes("shmpool_buff_hdr",2,"name")="shmpool_buff_hdr.shmpool_crit_latch.u" + Set gtmtypes("shmpool_buff_hdr",2,"off")=0 + Set gtmtypes("shmpool_buff_hdr",2,"len")=8 + Set gtmtypes("shmpool_buff_hdr",2,"type")="union" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u")=2 + Set gtmtypes("shmpool_buff_hdr",3,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.pid_imgcnt" + Set gtmtypes("shmpool_buff_hdr",3,"off")=0 + Set gtmtypes("shmpool_buff_hdr",3,"len")=8 + Set gtmtypes("shmpool_buff_hdr",3,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.pid_imgcnt")=3 + Set gtmtypes("shmpool_buff_hdr",4,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts" + Set gtmtypes("shmpool_buff_hdr",4,"off")=0 + Set gtmtypes("shmpool_buff_hdr",4,"len")=8 + Set gtmtypes("shmpool_buff_hdr",4,"type")="struct" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts")=4 + Set gtmtypes("shmpool_buff_hdr",5,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts.latch_pid" + Set gtmtypes("shmpool_buff_hdr",5,"off")=0 + Set gtmtypes("shmpool_buff_hdr",5,"len")=4 + Set gtmtypes("shmpool_buff_hdr",5,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts.latch_pid")=5 + Set gtmtypes("shmpool_buff_hdr",6,"name")="shmpool_buff_hdr.shmpool_crit_latch.u.parts.latch_word" + Set gtmtypes("shmpool_buff_hdr",6,"off")=4 + Set gtmtypes("shmpool_buff_hdr",6,"len")=4 + Set gtmtypes("shmpool_buff_hdr",6,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_crit_latch.u.parts.latch_word")=6 + Set gtmtypes("shmpool_buff_hdr",7,"name")="shmpool_buff_hdr.dskaddr" + Set gtmtypes("shmpool_buff_hdr",7,"off")=8 + Set gtmtypes("shmpool_buff_hdr",7,"len")=8 + Set gtmtypes("shmpool_buff_hdr",7,"type")="off_t" + Set gtmtypfldindx("shmpool_buff_hdr","dskaddr")=7 + Set gtmtypes("shmpool_buff_hdr",8,"name")="shmpool_buff_hdr.backup_tn" + Set gtmtypes("shmpool_buff_hdr",8,"off")=16 + Set gtmtypes("shmpool_buff_hdr",8,"len")=8 + Set gtmtypes("shmpool_buff_hdr",8,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","backup_tn")=8 + Set gtmtypes("shmpool_buff_hdr",9,"name")="shmpool_buff_hdr.inc_backup_tn" + Set gtmtypes("shmpool_buff_hdr",9,"off")=24 + Set gtmtypes("shmpool_buff_hdr",9,"len")=8 + Set gtmtypes("shmpool_buff_hdr",9,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","inc_backup_tn")=9 + Set gtmtypes("shmpool_buff_hdr",10,"name")="shmpool_buff_hdr.tempfilename" + Set gtmtypes("shmpool_buff_hdr",10,"off")=32 + Set gtmtypes("shmpool_buff_hdr",10,"len")=256 + Set gtmtypes("shmpool_buff_hdr",10,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","tempfilename")=10 + Set gtmtypes("shmpool_buff_hdr",11,"name")="shmpool_buff_hdr.que_free" + Set gtmtypes("shmpool_buff_hdr",11,"off")=288 + Set gtmtypes("shmpool_buff_hdr",11,"len")=8 + Set gtmtypes("shmpool_buff_hdr",11,"type")="que_ent" + Set gtmtypfldindx("shmpool_buff_hdr","que_free")=11 + Set gtmtypes("shmpool_buff_hdr",12,"name")="shmpool_buff_hdr.que_free.fl" + Set gtmtypes("shmpool_buff_hdr",12,"off")=288 + Set gtmtypes("shmpool_buff_hdr",12,"len")=4 + Set gtmtypes("shmpool_buff_hdr",12,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_free.fl")=12 + Set gtmtypes("shmpool_buff_hdr",13,"name")="shmpool_buff_hdr.que_free.bl" + Set gtmtypes("shmpool_buff_hdr",13,"off")=292 + Set gtmtypes("shmpool_buff_hdr",13,"len")=4 + Set gtmtypes("shmpool_buff_hdr",13,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_free.bl")=13 + Set gtmtypes("shmpool_buff_hdr",14,"name")="shmpool_buff_hdr.que_backup" + Set gtmtypes("shmpool_buff_hdr",14,"off")=296 + Set gtmtypes("shmpool_buff_hdr",14,"len")=8 + Set gtmtypes("shmpool_buff_hdr",14,"type")="que_ent" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup")=14 + Set gtmtypes("shmpool_buff_hdr",15,"name")="shmpool_buff_hdr.que_backup.fl" + Set gtmtypes("shmpool_buff_hdr",15,"off")=296 + Set gtmtypes("shmpool_buff_hdr",15,"len")=4 + Set gtmtypes("shmpool_buff_hdr",15,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup.fl")=15 + Set gtmtypes("shmpool_buff_hdr",16,"name")="shmpool_buff_hdr.que_backup.bl" + Set gtmtypes("shmpool_buff_hdr",16,"off")=300 + Set gtmtypes("shmpool_buff_hdr",16,"len")=4 + Set gtmtypes("shmpool_buff_hdr",16,"type")="intptr_t" + Set gtmtypfldindx("shmpool_buff_hdr","que_backup.bl")=16 + Set gtmtypes("shmpool_buff_hdr",17,"name")="shmpool_buff_hdr.free_cnt" + Set gtmtypes("shmpool_buff_hdr",17,"off")=304 + Set gtmtypes("shmpool_buff_hdr",17,"len")=4 + Set gtmtypes("shmpool_buff_hdr",17,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","free_cnt")=17 + Set gtmtypes("shmpool_buff_hdr",18,"name")="shmpool_buff_hdr.backup_cnt" + Set gtmtypes("shmpool_buff_hdr",18,"off")=308 + Set gtmtypes("shmpool_buff_hdr",18,"len")=4 + Set gtmtypes("shmpool_buff_hdr",18,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_cnt")=18 + Set gtmtypes("shmpool_buff_hdr",19,"name")="shmpool_buff_hdr.reformat_cnt" + Set gtmtypes("shmpool_buff_hdr",19,"off")=312 + Set gtmtypes("shmpool_buff_hdr",19,"len")=4 + Set gtmtypes("shmpool_buff_hdr",19,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","reformat_cnt")=19 + Set gtmtypes("shmpool_buff_hdr",20,"name")="shmpool_buff_hdr.allocs_since_chk" + Set gtmtypes("shmpool_buff_hdr",20,"off")=316 + Set gtmtypes("shmpool_buff_hdr",20,"len")=4 + Set gtmtypes("shmpool_buff_hdr",20,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","allocs_since_chk")=20 + Set gtmtypes("shmpool_buff_hdr",21,"name")="shmpool_buff_hdr.total_blks" + Set gtmtypes("shmpool_buff_hdr",21,"off")=320 + Set gtmtypes("shmpool_buff_hdr",21,"len")=4 + Set gtmtypes("shmpool_buff_hdr",21,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","total_blks")=21 + Set gtmtypes("shmpool_buff_hdr",22,"name")="shmpool_buff_hdr.blk_size" + Set gtmtypes("shmpool_buff_hdr",22,"off")=324 + Set gtmtypes("shmpool_buff_hdr",22,"len")=4 + Set gtmtypes("shmpool_buff_hdr",22,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","blk_size")=22 + Set gtmtypes("shmpool_buff_hdr",23,"name")="shmpool_buff_hdr.failed" + Set gtmtypes("shmpool_buff_hdr",23,"off")=328 + Set gtmtypes("shmpool_buff_hdr",23,"len")=4 + Set gtmtypes("shmpool_buff_hdr",23,"type")="pid_t" + Set gtmtypfldindx("shmpool_buff_hdr","failed")=23 + Set gtmtypes("shmpool_buff_hdr",24,"name")="shmpool_buff_hdr.backup_errno" + Set gtmtypes("shmpool_buff_hdr",24,"off")=332 + Set gtmtypes("shmpool_buff_hdr",24,"len")=4 + Set gtmtypes("shmpool_buff_hdr",24,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_errno")=24 + Set gtmtypes("shmpool_buff_hdr",25,"name")="shmpool_buff_hdr.backup_pid" + Set gtmtypes("shmpool_buff_hdr",25,"off")=336 + Set gtmtypes("shmpool_buff_hdr",25,"len")=4 + Set gtmtypes("shmpool_buff_hdr",25,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_pid")=25 + Set gtmtypes("shmpool_buff_hdr",26,"name")="shmpool_buff_hdr.backup_image_count" + Set gtmtypes("shmpool_buff_hdr",26,"off")=340 + Set gtmtypes("shmpool_buff_hdr",26,"len")=4 + Set gtmtypes("shmpool_buff_hdr",26,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","backup_image_count")=26 + Set gtmtypes("shmpool_buff_hdr",27,"name")="shmpool_buff_hdr.shmpool_blocked" + Set gtmtypes("shmpool_buff_hdr",27,"off")=344 + Set gtmtypes("shmpool_buff_hdr",27,"len")=4 + Set gtmtypes("shmpool_buff_hdr",27,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shmpool_blocked")=27 + Set gtmtypes("shmpool_buff_hdr",28,"name")="shmpool_buff_hdr.filler" + Set gtmtypes("shmpool_buff_hdr",28,"off")=348 + Set gtmtypes("shmpool_buff_hdr",28,"len")=4 + Set gtmtypes("shmpool_buff_hdr",28,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","filler")=28 + Set gtmtypes("shmpool_buff_hdr",29,"name")="shmpool_buff_hdr.shadow_file_header" + Set gtmtypes("shmpool_buff_hdr",29,"off")=352 + Set gtmtypes("shmpool_buff_hdr",29,"len")=8192 + Set gtmtypes("shmpool_buff_hdr",29,"type")="sgmnt_data" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header")=29 + Set gtmtypes("shmpool_buff_hdr",30,"name")="shmpool_buff_hdr.shadow_file_header.label" + Set gtmtypes("shmpool_buff_hdr",30,"off")=352 + Set gtmtypes("shmpool_buff_hdr",30,"len")=12 + Set gtmtypes("shmpool_buff_hdr",30,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.label")=30 + Set gtmtypes("shmpool_buff_hdr",31,"name")="shmpool_buff_hdr.shadow_file_header.blk_size" + Set gtmtypes("shmpool_buff_hdr",31,"off")=364 + Set gtmtypes("shmpool_buff_hdr",31,"len")=4 + Set gtmtypes("shmpool_buff_hdr",31,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blk_size")=31 + Set gtmtypes("shmpool_buff_hdr",32,"name")="shmpool_buff_hdr.shadow_file_header.master_map_len" + Set gtmtypes("shmpool_buff_hdr",32,"off")=368 + Set gtmtypes("shmpool_buff_hdr",32,"len")=4 + Set gtmtypes("shmpool_buff_hdr",32,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.master_map_len")=32 + Set gtmtypes("shmpool_buff_hdr",33,"name")="shmpool_buff_hdr.shadow_file_header.bplmap" + Set gtmtypes("shmpool_buff_hdr",33,"off")=372 + Set gtmtypes("shmpool_buff_hdr",33,"len")=4 + Set gtmtypes("shmpool_buff_hdr",33,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bplmap")=33 + Set gtmtypes("shmpool_buff_hdr",34,"name")="shmpool_buff_hdr.shadow_file_header.start_vbn" + Set gtmtypes("shmpool_buff_hdr",34,"off")=376 + Set gtmtypes("shmpool_buff_hdr",34,"len")=4 + Set gtmtypes("shmpool_buff_hdr",34,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.start_vbn")=34 + Set gtmtypes("shmpool_buff_hdr",35,"name")="shmpool_buff_hdr.shadow_file_header.acc_meth" + Set gtmtypes("shmpool_buff_hdr",35,"off")=380 + Set gtmtypes("shmpool_buff_hdr",35,"len")=4 + Set gtmtypes("shmpool_buff_hdr",35,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.acc_meth")=35 + Set gtmtypes("shmpool_buff_hdr",36,"name")="shmpool_buff_hdr.shadow_file_header.max_bts" + Set gtmtypes("shmpool_buff_hdr",36,"off")=384 + Set gtmtypes("shmpool_buff_hdr",36,"len")=4 + Set gtmtypes("shmpool_buff_hdr",36,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_bts")=36 + Set gtmtypes("shmpool_buff_hdr",37,"name")="shmpool_buff_hdr.shadow_file_header.n_bts" + Set gtmtypes("shmpool_buff_hdr",37,"off")=388 + Set gtmtypes("shmpool_buff_hdr",37,"len")=4 + Set gtmtypes("shmpool_buff_hdr",37,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bts")=37 + Set gtmtypes("shmpool_buff_hdr",38,"name")="shmpool_buff_hdr.shadow_file_header.bt_buckets" + Set gtmtypes("shmpool_buff_hdr",38,"off")=392 + Set gtmtypes("shmpool_buff_hdr",38,"len")=4 + Set gtmtypes("shmpool_buff_hdr",38,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_buckets")=38 + Set gtmtypes("shmpool_buff_hdr",39,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bytes" + Set gtmtypes("shmpool_buff_hdr",39,"off")=396 + Set gtmtypes("shmpool_buff_hdr",39,"len")=4 + Set gtmtypes("shmpool_buff_hdr",39,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bytes")=39 + Set gtmtypes("shmpool_buff_hdr",40,"name")="shmpool_buff_hdr.shadow_file_header.max_rec_size" + Set gtmtypes("shmpool_buff_hdr",40,"off")=400 + Set gtmtypes("shmpool_buff_hdr",40,"len")=4 + Set gtmtypes("shmpool_buff_hdr",40,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_rec_size")=40 + Set gtmtypes("shmpool_buff_hdr",41,"name")="shmpool_buff_hdr.shadow_file_header.max_key_size" + Set gtmtypes("shmpool_buff_hdr",41,"off")=404 + Set gtmtypes("shmpool_buff_hdr",41,"len")=4 + Set gtmtypes("shmpool_buff_hdr",41,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_key_size")=41 + Set gtmtypes("shmpool_buff_hdr",42,"name")="shmpool_buff_hdr.shadow_file_header.lock_space_size" + Set gtmtypes("shmpool_buff_hdr",42,"off")=408 + Set gtmtypes("shmpool_buff_hdr",42,"len")=4 + Set gtmtypes("shmpool_buff_hdr",42,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lock_space_size")=42 + Set gtmtypes("shmpool_buff_hdr",43,"name")="shmpool_buff_hdr.shadow_file_header.extension_size" + Set gtmtypes("shmpool_buff_hdr",43,"off")=412 + Set gtmtypes("shmpool_buff_hdr",43,"len")=4 + Set gtmtypes("shmpool_buff_hdr",43,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.extension_size")=43 + Set gtmtypes("shmpool_buff_hdr",44,"name")="shmpool_buff_hdr.shadow_file_header.def_coll" + Set gtmtypes("shmpool_buff_hdr",44,"off")=416 + Set gtmtypes("shmpool_buff_hdr",44,"len")=4 + Set gtmtypes("shmpool_buff_hdr",44,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.def_coll")=44 + Set gtmtypes("shmpool_buff_hdr",45,"name")="shmpool_buff_hdr.shadow_file_header.def_coll_ver" + Set gtmtypes("shmpool_buff_hdr",45,"off")=420 + Set gtmtypes("shmpool_buff_hdr",45,"len")=4 + Set gtmtypes("shmpool_buff_hdr",45,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.def_coll_ver")=45 + Set gtmtypes("shmpool_buff_hdr",46,"name")="shmpool_buff_hdr.shadow_file_header.std_null_coll" + Set gtmtypes("shmpool_buff_hdr",46,"off")=424 + Set gtmtypes("shmpool_buff_hdr",46,"len")=4 + Set gtmtypes("shmpool_buff_hdr",46,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.std_null_coll")=46 + Set gtmtypes("shmpool_buff_hdr",47,"name")="shmpool_buff_hdr.shadow_file_header.null_subs" + Set gtmtypes("shmpool_buff_hdr",47,"off")=428 + Set gtmtypes("shmpool_buff_hdr",47,"len")=4 + Set gtmtypes("shmpool_buff_hdr",47,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.null_subs")=47 + Set gtmtypes("shmpool_buff_hdr",48,"name")="shmpool_buff_hdr.shadow_file_header.free_space" + Set gtmtypes("shmpool_buff_hdr",48,"off")=432 + Set gtmtypes("shmpool_buff_hdr",48,"len")=4 + Set gtmtypes("shmpool_buff_hdr",48,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.free_space")=48 + Set gtmtypes("shmpool_buff_hdr",49,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms" + Set gtmtypes("shmpool_buff_hdr",49,"off")=436 + Set gtmtypes("shmpool_buff_hdr",49,"len")=16 + Set gtmtypes("shmpool_buff_hdr",49,"type")="mutex_spin_parms_struct" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms")=49 + Set gtmtypes("shmpool_buff_hdr",50,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_hard_spin_count" + Set gtmtypes("shmpool_buff_hdr",50,"off")=436 + Set gtmtypes("shmpool_buff_hdr",50,"len")=4 + Set gtmtypes("shmpool_buff_hdr",50,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_hard_spin_count")=50 + Set gtmtypes("shmpool_buff_hdr",51,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count" + Set gtmtypes("shmpool_buff_hdr",51,"off")=440 + Set gtmtypes("shmpool_buff_hdr",51,"len")=4 + Set gtmtypes("shmpool_buff_hdr",51,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_sleep_spin_count")=51 + Set gtmtypes("shmpool_buff_hdr",52,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask" + Set gtmtypes("shmpool_buff_hdr",52,"off")=444 + Set gtmtypes("shmpool_buff_hdr",52,"len")=4 + Set gtmtypes("shmpool_buff_hdr",52,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_spin_sleep_mask")=52 + Set gtmtypes("shmpool_buff_hdr",53,"name")="shmpool_buff_hdr.shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size" + Set gtmtypes("shmpool_buff_hdr",53,"off")=448 + Set gtmtypes("shmpool_buff_hdr",53,"len")=4 + Set gtmtypes("shmpool_buff_hdr",53,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_spin_parms.mutex_que_entry_space_size")=53 + Set gtmtypes("shmpool_buff_hdr",54,"name")="shmpool_buff_hdr.shadow_file_header.max_update_array_size" + Set gtmtypes("shmpool_buff_hdr",54,"off")=452 + Set gtmtypes("shmpool_buff_hdr",54,"len")=4 + Set gtmtypes("shmpool_buff_hdr",54,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_update_array_size")=54 + Set gtmtypes("shmpool_buff_hdr",55,"name")="shmpool_buff_hdr.shadow_file_header.max_non_bm_update_array_size" + Set gtmtypes("shmpool_buff_hdr",55,"off")=456 + Set gtmtypes("shmpool_buff_hdr",55,"len")=4 + Set gtmtypes("shmpool_buff_hdr",55,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_non_bm_update_array_size")=55 + Set gtmtypes("shmpool_buff_hdr",56,"name")="shmpool_buff_hdr.shadow_file_header.file_corrupt" + Set gtmtypes("shmpool_buff_hdr",56,"off")=460 + Set gtmtypes("shmpool_buff_hdr",56,"len")=4 + Set gtmtypes("shmpool_buff_hdr",56,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.file_corrupt")=56 + Set gtmtypes("shmpool_buff_hdr",57,"name")="shmpool_buff_hdr.shadow_file_header.minor_dbver" + Set gtmtypes("shmpool_buff_hdr",57,"off")=464 + Set gtmtypes("shmpool_buff_hdr",57,"len")=4 + Set gtmtypes("shmpool_buff_hdr",57,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.minor_dbver")=57 + Set gtmtypes("shmpool_buff_hdr",58,"name")="shmpool_buff_hdr.shadow_file_header.jnl_checksum" + Set gtmtypes("shmpool_buff_hdr",58,"off")=468 + Set gtmtypes("shmpool_buff_hdr",58,"len")=4 + Set gtmtypes("shmpool_buff_hdr",58,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_checksum")=58 + Set gtmtypes("shmpool_buff_hdr",59,"name")="shmpool_buff_hdr.shadow_file_header.wcs_phase2_commit_wait_spincnt" + Set gtmtypes("shmpool_buff_hdr",59,"off")=472 + Set gtmtypes("shmpool_buff_hdr",59,"len")=4 + Set gtmtypes("shmpool_buff_hdr",59,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcs_phase2_commit_wait_spincnt")=59 + Set gtmtypes("shmpool_buff_hdr",60,"name")="shmpool_buff_hdr.shadow_file_header.last_mdb_ver" + Set gtmtypes("shmpool_buff_hdr",60,"off")=476 + Set gtmtypes("shmpool_buff_hdr",60,"len")=4 + Set gtmtypes("shmpool_buff_hdr",60,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_mdb_ver")=60 + Set gtmtypes("shmpool_buff_hdr",61,"name")="shmpool_buff_hdr.shadow_file_header.filler_created" + Set gtmtypes("shmpool_buff_hdr",61,"off")=480 + Set gtmtypes("shmpool_buff_hdr",61,"len")=52 + Set gtmtypes("shmpool_buff_hdr",61,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_created")=61 + Set gtmtypes("shmpool_buff_hdr",62,"name")="shmpool_buff_hdr.shadow_file_header.createinprogress" + Set gtmtypes("shmpool_buff_hdr",62,"off")=532 + Set gtmtypes("shmpool_buff_hdr",62,"len")=4 + Set gtmtypes("shmpool_buff_hdr",62,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.createinprogress")=62 + Set gtmtypes("shmpool_buff_hdr",63,"name")="shmpool_buff_hdr.shadow_file_header.creation_time4" + Set gtmtypes("shmpool_buff_hdr",63,"off")=536 + Set gtmtypes("shmpool_buff_hdr",63,"len")=4 + Set gtmtypes("shmpool_buff_hdr",63,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_time4")=63 + Set gtmtypes("shmpool_buff_hdr",64,"name")="shmpool_buff_hdr.shadow_file_header.creation_filler_8byte" + Set gtmtypes("shmpool_buff_hdr",64,"off")=540 + Set gtmtypes("shmpool_buff_hdr",64,"len")=4 + Set gtmtypes("shmpool_buff_hdr",64,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_filler_8byte")=64 + Set gtmtypes("shmpool_buff_hdr",65,"name")="shmpool_buff_hdr.shadow_file_header.max_tn" + Set gtmtypes("shmpool_buff_hdr",65,"off")=544 + Set gtmtypes("shmpool_buff_hdr",65,"len")=8 + Set gtmtypes("shmpool_buff_hdr",65,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_tn")=65 + Set gtmtypes("shmpool_buff_hdr",66,"name")="shmpool_buff_hdr.shadow_file_header.max_tn_warn" + Set gtmtypes("shmpool_buff_hdr",66,"off")=552 + Set gtmtypes("shmpool_buff_hdr",66,"len")=8 + Set gtmtypes("shmpool_buff_hdr",66,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.max_tn_warn")=66 + Set gtmtypes("shmpool_buff_hdr",67,"name")="shmpool_buff_hdr.shadow_file_header.last_inc_backup" + Set gtmtypes("shmpool_buff_hdr",67,"off")=560 + Set gtmtypes("shmpool_buff_hdr",67,"len")=8 + Set gtmtypes("shmpool_buff_hdr",67,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_inc_backup")=67 + Set gtmtypes("shmpool_buff_hdr",68,"name")="shmpool_buff_hdr.shadow_file_header.last_com_backup" + Set gtmtypes("shmpool_buff_hdr",68,"off")=568 + Set gtmtypes("shmpool_buff_hdr",68,"len")=8 + Set gtmtypes("shmpool_buff_hdr",68,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_com_backup")=68 + Set gtmtypes("shmpool_buff_hdr",69,"name")="shmpool_buff_hdr.shadow_file_header.last_rec_backup" + Set gtmtypes("shmpool_buff_hdr",69,"off")=576 + Set gtmtypes("shmpool_buff_hdr",69,"len")=8 + Set gtmtypes("shmpool_buff_hdr",69,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_rec_backup")=69 + Set gtmtypes("shmpool_buff_hdr",70,"name")="shmpool_buff_hdr.shadow_file_header.last_inc_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",70,"off")=584 + Set gtmtypes("shmpool_buff_hdr",70,"len")=4 + Set gtmtypes("shmpool_buff_hdr",70,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_inc_bkup_last_blk")=70 + Set gtmtypes("shmpool_buff_hdr",71,"name")="shmpool_buff_hdr.shadow_file_header.last_com_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",71,"off")=588 + Set gtmtypes("shmpool_buff_hdr",71,"len")=4 + Set gtmtypes("shmpool_buff_hdr",71,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_com_bkup_last_blk")=71 + Set gtmtypes("shmpool_buff_hdr",72,"name")="shmpool_buff_hdr.shadow_file_header.last_rec_bkup_last_blk" + Set gtmtypes("shmpool_buff_hdr",72,"off")=592 + Set gtmtypes("shmpool_buff_hdr",72,"len")=4 + Set gtmtypes("shmpool_buff_hdr",72,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.last_rec_bkup_last_blk")=72 + Set gtmtypes("shmpool_buff_hdr",73,"name")="shmpool_buff_hdr.shadow_file_header.reorg_restart_block" + Set gtmtypes("shmpool_buff_hdr",73,"off")=596 + Set gtmtypes("shmpool_buff_hdr",73,"len")=4 + Set gtmtypes("shmpool_buff_hdr",73,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_restart_block")=73 + Set gtmtypes("shmpool_buff_hdr",74,"name")="shmpool_buff_hdr.shadow_file_header.filler_256" + Set gtmtypes("shmpool_buff_hdr",74,"off")=600 + Set gtmtypes("shmpool_buff_hdr",74,"len")=8 + Set gtmtypes("shmpool_buff_hdr",74,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_256")=74 + Set gtmtypes("shmpool_buff_hdr",75,"name")="shmpool_buff_hdr.shadow_file_header.now_running" + Set gtmtypes("shmpool_buff_hdr",75,"off")=608 + Set gtmtypes("shmpool_buff_hdr",75,"len")=36 + Set gtmtypes("shmpool_buff_hdr",75,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.now_running")=75 + Set gtmtypes("shmpool_buff_hdr",76,"name")="shmpool_buff_hdr.shadow_file_header.filler_owner_node" + Set gtmtypes("shmpool_buff_hdr",76,"off")=644 + Set gtmtypes("shmpool_buff_hdr",76,"len")=4 + Set gtmtypes("shmpool_buff_hdr",76,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_owner_node")=76 + Set gtmtypes("shmpool_buff_hdr",77,"name")="shmpool_buff_hdr.shadow_file_header.image_count" + Set gtmtypes("shmpool_buff_hdr",77,"off")=648 + Set gtmtypes("shmpool_buff_hdr",77,"len")=4 + Set gtmtypes("shmpool_buff_hdr",77,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.image_count")=77 + Set gtmtypes("shmpool_buff_hdr",78,"name")="shmpool_buff_hdr.shadow_file_header.freeze" + Set gtmtypes("shmpool_buff_hdr",78,"off")=652 + Set gtmtypes("shmpool_buff_hdr",78,"len")=4 + Set gtmtypes("shmpool_buff_hdr",78,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.freeze")=78 + Set gtmtypes("shmpool_buff_hdr",79,"name")="shmpool_buff_hdr.shadow_file_header.kill_in_prog" + Set gtmtypes("shmpool_buff_hdr",79,"off")=656 + Set gtmtypes("shmpool_buff_hdr",79,"len")=4 + Set gtmtypes("shmpool_buff_hdr",79,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.kill_in_prog")=79 + Set gtmtypes("shmpool_buff_hdr",80,"name")="shmpool_buff_hdr.shadow_file_header.abandoned_kills" + Set gtmtypes("shmpool_buff_hdr",80,"off")=660 + Set gtmtypes("shmpool_buff_hdr",80,"len")=4 + Set gtmtypes("shmpool_buff_hdr",80,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.abandoned_kills")=80 + Set gtmtypes("shmpool_buff_hdr",81,"name")="shmpool_buff_hdr.shadow_file_header.filler_320" + Set gtmtypes("shmpool_buff_hdr",81,"off")=664 + Set gtmtypes("shmpool_buff_hdr",81,"len")=8 + Set gtmtypes("shmpool_buff_hdr",81,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_320")=81 + Set gtmtypes("shmpool_buff_hdr",82,"name")="shmpool_buff_hdr.shadow_file_header.tn_upgrd_blks_0" + Set gtmtypes("shmpool_buff_hdr",82,"off")=672 + Set gtmtypes("shmpool_buff_hdr",82,"len")=8 + Set gtmtypes("shmpool_buff_hdr",82,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tn_upgrd_blks_0")=82 + Set gtmtypes("shmpool_buff_hdr",83,"name")="shmpool_buff_hdr.shadow_file_header.desired_db_format_tn" + Set gtmtypes("shmpool_buff_hdr",83,"off")=680 + Set gtmtypes("shmpool_buff_hdr",83,"len")=8 + Set gtmtypes("shmpool_buff_hdr",83,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.desired_db_format_tn")=83 + Set gtmtypes("shmpool_buff_hdr",84,"name")="shmpool_buff_hdr.shadow_file_header.reorg_db_fmt_start_tn" + Set gtmtypes("shmpool_buff_hdr",84,"off")=688 + Set gtmtypes("shmpool_buff_hdr",84,"len")=8 + Set gtmtypes("shmpool_buff_hdr",84,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_db_fmt_start_tn")=84 + Set gtmtypes("shmpool_buff_hdr",85,"name")="shmpool_buff_hdr.shadow_file_header.reorg_upgrd_dwngrd_restart_block" + Set gtmtypes("shmpool_buff_hdr",85,"off")=696 + Set gtmtypes("shmpool_buff_hdr",85,"len")=4 + Set gtmtypes("shmpool_buff_hdr",85,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_upgrd_dwngrd_restart_block")=85 + Set gtmtypes("shmpool_buff_hdr",86,"name")="shmpool_buff_hdr.shadow_file_header.blks_to_upgrd" + Set gtmtypes("shmpool_buff_hdr",86,"off")=700 + Set gtmtypes("shmpool_buff_hdr",86,"len")=4 + Set gtmtypes("shmpool_buff_hdr",86,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blks_to_upgrd")=86 + Set gtmtypes("shmpool_buff_hdr",87,"name")="shmpool_buff_hdr.shadow_file_header.blks_to_upgrd_subzero_error" + Set gtmtypes("shmpool_buff_hdr",87,"off")=704 + Set gtmtypes("shmpool_buff_hdr",87,"len")=4 + Set gtmtypes("shmpool_buff_hdr",87,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.blks_to_upgrd_subzero_error")=87 + Set gtmtypes("shmpool_buff_hdr",88,"name")="shmpool_buff_hdr.shadow_file_header.desired_db_format" + Set gtmtypes("shmpool_buff_hdr",88,"off")=708 + Set gtmtypes("shmpool_buff_hdr",88,"len")=4 + Set gtmtypes("shmpool_buff_hdr",88,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.desired_db_format")=88 + Set gtmtypes("shmpool_buff_hdr",89,"name")="shmpool_buff_hdr.shadow_file_header.fully_upgraded" + Set gtmtypes("shmpool_buff_hdr",89,"off")=712 + Set gtmtypes("shmpool_buff_hdr",89,"len")=4 + Set gtmtypes("shmpool_buff_hdr",89,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.fully_upgraded")=89 + Set gtmtypes("shmpool_buff_hdr",90,"name")="shmpool_buff_hdr.shadow_file_header.db_got_to_v5_once" + Set gtmtypes("shmpool_buff_hdr",90,"off")=716 + Set gtmtypes("shmpool_buff_hdr",90,"len")=4 + Set gtmtypes("shmpool_buff_hdr",90,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_got_to_v5_once")=90 + Set gtmtypes("shmpool_buff_hdr",91,"name")="shmpool_buff_hdr.shadow_file_header.opened_by_gtmv53" + Set gtmtypes("shmpool_buff_hdr",91,"off")=720 + Set gtmtypes("shmpool_buff_hdr",91,"len")=4 + Set gtmtypes("shmpool_buff_hdr",91,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.opened_by_gtmv53")=91 + Set gtmtypes("shmpool_buff_hdr",92,"name")="shmpool_buff_hdr.shadow_file_header.filler_384" + Set gtmtypes("shmpool_buff_hdr",92,"off")=724 + Set gtmtypes("shmpool_buff_hdr",92,"len")=12 + Set gtmtypes("shmpool_buff_hdr",92,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_384")=92 + Set gtmtypes("shmpool_buff_hdr",93,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist" + Set gtmtypes("shmpool_buff_hdr",93,"off")=736 + Set gtmtypes("shmpool_buff_hdr",93,"len")=56 + Set gtmtypes("shmpool_buff_hdr",93,"type")="th_index" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist")=93 + Set gtmtypes("shmpool_buff_hdr",94,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.curr_tn" + Set gtmtypes("shmpool_buff_hdr",94,"off")=736 + Set gtmtypes("shmpool_buff_hdr",94,"len")=8 + Set gtmtypes("shmpool_buff_hdr",94,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.curr_tn")=94 + Set gtmtypes("shmpool_buff_hdr",95,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.early_tn" + Set gtmtypes("shmpool_buff_hdr",95,"off")=744 + Set gtmtypes("shmpool_buff_hdr",95,"len")=8 + Set gtmtypes("shmpool_buff_hdr",95,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.early_tn")=95 + Set gtmtypes("shmpool_buff_hdr",96,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.last_mm_sync" + Set gtmtypes("shmpool_buff_hdr",96,"off")=752 + Set gtmtypes("shmpool_buff_hdr",96,"len")=8 + Set gtmtypes("shmpool_buff_hdr",96,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.last_mm_sync")=96 + Set gtmtypes("shmpool_buff_hdr",97,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.filler_8byte" + Set gtmtypes("shmpool_buff_hdr",97,"off")=760 + Set gtmtypes("shmpool_buff_hdr",97,"len")=8 + Set gtmtypes("shmpool_buff_hdr",97,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.filler_8byte")=97 + Set gtmtypes("shmpool_buff_hdr",98,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.mm_tn" + Set gtmtypes("shmpool_buff_hdr",98,"off")=768 + Set gtmtypes("shmpool_buff_hdr",98,"len")=8 + Set gtmtypes("shmpool_buff_hdr",98,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.mm_tn")=98 + Set gtmtypes("shmpool_buff_hdr",99,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.lock_sequence" + Set gtmtypes("shmpool_buff_hdr",99,"off")=776 + Set gtmtypes("shmpool_buff_hdr",99,"len")=4 + Set gtmtypes("shmpool_buff_hdr",99,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.lock_sequence")=99 + Set gtmtypes("shmpool_buff_hdr",100,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.ccp_jnl_filesize" + Set gtmtypes("shmpool_buff_hdr",100,"off")=780 + Set gtmtypes("shmpool_buff_hdr",100,"len")=4 + Set gtmtypes("shmpool_buff_hdr",100,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.ccp_jnl_filesize")=100 + Set gtmtypes("shmpool_buff_hdr",101,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.total_blks" + Set gtmtypes("shmpool_buff_hdr",101,"off")=784 + Set gtmtypes("shmpool_buff_hdr",101,"len")=4 + Set gtmtypes("shmpool_buff_hdr",101,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.total_blks")=101 + Set gtmtypes("shmpool_buff_hdr",102,"name")="shmpool_buff_hdr.shadow_file_header.trans_hist.free_blocks" + Set gtmtypes("shmpool_buff_hdr",102,"off")=788 + Set gtmtypes("shmpool_buff_hdr",102,"len")=4 + Set gtmtypes("shmpool_buff_hdr",102,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.trans_hist.free_blocks")=102 + Set gtmtypes("shmpool_buff_hdr",103,"name")="shmpool_buff_hdr.shadow_file_header.filler_trans_hist" + Set gtmtypes("shmpool_buff_hdr",103,"off")=792 + Set gtmtypes("shmpool_buff_hdr",103,"len")=8 + Set gtmtypes("shmpool_buff_hdr",103,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_trans_hist")=103 + Set gtmtypes("shmpool_buff_hdr",104,"name")="shmpool_buff_hdr.shadow_file_header.flush_time" + Set gtmtypes("shmpool_buff_hdr",104,"off")=800 + Set gtmtypes("shmpool_buff_hdr",104,"len")=8 + Set gtmtypes("shmpool_buff_hdr",104,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.flush_time")=104 + Set gtmtypes("shmpool_buff_hdr",104,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",105,"name")="shmpool_buff_hdr.shadow_file_header.flush_trigger" + Set gtmtypes("shmpool_buff_hdr",105,"off")=808 + Set gtmtypes("shmpool_buff_hdr",105,"len")=4 + Set gtmtypes("shmpool_buff_hdr",105,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.flush_trigger")=105 + Set gtmtypes("shmpool_buff_hdr",106,"name")="shmpool_buff_hdr.shadow_file_header.n_wrt_per_flu" + Set gtmtypes("shmpool_buff_hdr",106,"off")=812 + Set gtmtypes("shmpool_buff_hdr",106,"len")=4 + Set gtmtypes("shmpool_buff_hdr",106,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_wrt_per_flu")=106 + Set gtmtypes("shmpool_buff_hdr",107,"name")="shmpool_buff_hdr.shadow_file_header.wait_disk_space" + Set gtmtypes("shmpool_buff_hdr",107,"off")=816 + Set gtmtypes("shmpool_buff_hdr",107,"len")=4 + Set gtmtypes("shmpool_buff_hdr",107,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wait_disk_space")=107 + Set gtmtypes("shmpool_buff_hdr",108,"name")="shmpool_buff_hdr.shadow_file_header.defer_time" + Set gtmtypes("shmpool_buff_hdr",108,"off")=820 + Set gtmtypes("shmpool_buff_hdr",108,"len")=4 + Set gtmtypes("shmpool_buff_hdr",108,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.defer_time")=108 + Set gtmtypes("shmpool_buff_hdr",109,"name")="shmpool_buff_hdr.shadow_file_header.filler_wc_blocked" + Set gtmtypes("shmpool_buff_hdr",109,"off")=824 + Set gtmtypes("shmpool_buff_hdr",109,"len")=4 + Set gtmtypes("shmpool_buff_hdr",109,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_wc_blocked")=109 + Set gtmtypes("shmpool_buff_hdr",110,"name")="shmpool_buff_hdr.shadow_file_header.mumps_can_bypass" + Set gtmtypes("shmpool_buff_hdr",110,"off")=828 + Set gtmtypes("shmpool_buff_hdr",110,"len")=4 + Set gtmtypes("shmpool_buff_hdr",110,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mumps_can_bypass")=110 + Set gtmtypes("shmpool_buff_hdr",111,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper" + Set gtmtypes("shmpool_buff_hdr",111,"off")=832 + Set gtmtypes("shmpool_buff_hdr",111,"len")=4 + Set gtmtypes("shmpool_buff_hdr",111,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper")=111 + Set gtmtypes("shmpool_buff_hdr",112,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper_time_pct" + Set gtmtypes("shmpool_buff_hdr",112,"off")=836 + Set gtmtypes("shmpool_buff_hdr",112,"len")=4 + Set gtmtypes("shmpool_buff_hdr",112,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper_time_pct")=112 + Set gtmtypes("shmpool_buff_hdr",113,"name")="shmpool_buff_hdr.shadow_file_header.epoch_taper_jnl_pct" + Set gtmtypes("shmpool_buff_hdr",113,"off")=840 + Set gtmtypes("shmpool_buff_hdr",113,"len")=4 + Set gtmtypes("shmpool_buff_hdr",113,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_taper_jnl_pct")=113 + Set gtmtypes("shmpool_buff_hdr",114,"name")="shmpool_buff_hdr.shadow_file_header.filler_512" + Set gtmtypes("shmpool_buff_hdr",114,"off")=844 + Set gtmtypes("shmpool_buff_hdr",114,"len")=4 + Set gtmtypes("shmpool_buff_hdr",114,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_512")=114 + Set gtmtypes("shmpool_buff_hdr",115,"name")="shmpool_buff_hdr.shadow_file_header.reserved_for_upd" + Set gtmtypes("shmpool_buff_hdr",115,"off")=848 + Set gtmtypes("shmpool_buff_hdr",115,"len")=4 + Set gtmtypes("shmpool_buff_hdr",115,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_for_upd")=115 + Set gtmtypes("shmpool_buff_hdr",116,"name")="shmpool_buff_hdr.shadow_file_header.avg_blks_per_100gbl" + Set gtmtypes("shmpool_buff_hdr",116,"off")=852 + Set gtmtypes("shmpool_buff_hdr",116,"len")=4 + Set gtmtypes("shmpool_buff_hdr",116,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.avg_blks_per_100gbl")=116 + Set gtmtypes("shmpool_buff_hdr",117,"name")="shmpool_buff_hdr.shadow_file_header.pre_read_trigger_factor" + Set gtmtypes("shmpool_buff_hdr",117,"off")=856 + Set gtmtypes("shmpool_buff_hdr",117,"len")=4 + Set gtmtypes("shmpool_buff_hdr",117,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.pre_read_trigger_factor")=117 + Set gtmtypes("shmpool_buff_hdr",118,"name")="shmpool_buff_hdr.shadow_file_header.writer_trigger_factor" + Set gtmtypes("shmpool_buff_hdr",118,"off")=860 + Set gtmtypes("shmpool_buff_hdr",118,"len")=4 + Set gtmtypes("shmpool_buff_hdr",118,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.writer_trigger_factor")=118 + Set gtmtypes("shmpool_buff_hdr",119,"name")="shmpool_buff_hdr.shadow_file_header.semid" + Set gtmtypes("shmpool_buff_hdr",119,"off")=864 + Set gtmtypes("shmpool_buff_hdr",119,"len")=4 + Set gtmtypes("shmpool_buff_hdr",119,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.semid")=119 + Set gtmtypes("shmpool_buff_hdr",120,"name")="shmpool_buff_hdr.shadow_file_header.shmid" + Set gtmtypes("shmpool_buff_hdr",120,"off")=868 + Set gtmtypes("shmpool_buff_hdr",120,"len")=4 + Set gtmtypes("shmpool_buff_hdr",120,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmid")=120 + Set gtmtypes("shmpool_buff_hdr",121,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime" + Set gtmtypes("shmpool_buff_hdr",121,"off")=872 + Set gtmtypes("shmpool_buff_hdr",121,"len")=8 + Set gtmtypes("shmpool_buff_hdr",121,"type")="gtm_time8" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime")=121 + Set gtmtypes("shmpool_buff_hdr",122,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime.ctime" + Set gtmtypes("shmpool_buff_hdr",122,"off")=872 + Set gtmtypes("shmpool_buff_hdr",122,"len")=4 + Set gtmtypes("shmpool_buff_hdr",122,"type")="time_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime.ctime")=122 + Set gtmtypes("shmpool_buff_hdr",123,"name")="shmpool_buff_hdr.shadow_file_header.gt_sem_ctime.filler" + Set gtmtypes("shmpool_buff_hdr",123,"off")=872 + Set gtmtypes("shmpool_buff_hdr",123,"len")=8 + Set gtmtypes("shmpool_buff_hdr",123,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_sem_ctime.filler")=123 + Set gtmtypes("shmpool_buff_hdr",123,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",124,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime" + Set gtmtypes("shmpool_buff_hdr",124,"off")=880 + Set gtmtypes("shmpool_buff_hdr",124,"len")=8 + Set gtmtypes("shmpool_buff_hdr",124,"type")="gtm_time8" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime")=124 + Set gtmtypes("shmpool_buff_hdr",125,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime.ctime" + Set gtmtypes("shmpool_buff_hdr",125,"off")=880 + Set gtmtypes("shmpool_buff_hdr",125,"len")=4 + Set gtmtypes("shmpool_buff_hdr",125,"type")="time_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime.ctime")=125 + Set gtmtypes("shmpool_buff_hdr",126,"name")="shmpool_buff_hdr.shadow_file_header.gt_shm_ctime.filler" + Set gtmtypes("shmpool_buff_hdr",126,"off")=880 + Set gtmtypes("shmpool_buff_hdr",126,"len")=8 + Set gtmtypes("shmpool_buff_hdr",126,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gt_shm_ctime.filler")=126 + Set gtmtypes("shmpool_buff_hdr",126,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",127,"name")="shmpool_buff_hdr.shadow_file_header.filler_unixonly" + Set gtmtypes("shmpool_buff_hdr",127,"off")=888 + Set gtmtypes("shmpool_buff_hdr",127,"len")=40 + Set gtmtypes("shmpool_buff_hdr",127,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_unixonly")=127 + Set gtmtypes("shmpool_buff_hdr",128,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_retries" + Set gtmtypes("shmpool_buff_hdr",128,"off")=928 + Set gtmtypes("shmpool_buff_hdr",128,"len")=20 + Set gtmtypes("shmpool_buff_hdr",128,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_retries")=128 + Set gtmtypes("shmpool_buff_hdr",128,"dim")=5 + Set gtmtypes("shmpool_buff_hdr",129,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_puts" + Set gtmtypes("shmpool_buff_hdr",129,"off")=948 + Set gtmtypes("shmpool_buff_hdr",129,"len")=4 + Set gtmtypes("shmpool_buff_hdr",129,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_puts")=129 + Set gtmtypes("shmpool_buff_hdr",130,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_kills" + Set gtmtypes("shmpool_buff_hdr",130,"off")=952 + Set gtmtypes("shmpool_buff_hdr",130,"len")=4 + Set gtmtypes("shmpool_buff_hdr",130,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_kills")=130 + Set gtmtypes("shmpool_buff_hdr",131,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_queries" + Set gtmtypes("shmpool_buff_hdr",131,"off")=956 + Set gtmtypes("shmpool_buff_hdr",131,"len")=4 + Set gtmtypes("shmpool_buff_hdr",131,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_queries")=131 + Set gtmtypes("shmpool_buff_hdr",132,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_gets" + Set gtmtypes("shmpool_buff_hdr",132,"off")=960 + Set gtmtypes("shmpool_buff_hdr",132,"len")=4 + Set gtmtypes("shmpool_buff_hdr",132,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_gets")=132 + Set gtmtypes("shmpool_buff_hdr",133,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_order" + Set gtmtypes("shmpool_buff_hdr",133,"off")=964 + Set gtmtypes("shmpool_buff_hdr",133,"len")=4 + Set gtmtypes("shmpool_buff_hdr",133,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_order")=133 + Set gtmtypes("shmpool_buff_hdr",134,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_zprevs" + Set gtmtypes("shmpool_buff_hdr",134,"off")=968 + Set gtmtypes("shmpool_buff_hdr",134,"len")=4 + Set gtmtypes("shmpool_buff_hdr",134,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_zprevs")=134 + Set gtmtypes("shmpool_buff_hdr",135,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_data" + Set gtmtypes("shmpool_buff_hdr",135,"off")=972 + Set gtmtypes("shmpool_buff_hdr",135,"len")=4 + Set gtmtypes("shmpool_buff_hdr",135,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_data")=135 + Set gtmtypes("shmpool_buff_hdr",136,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_puts_duplicate" + Set gtmtypes("shmpool_buff_hdr",136,"off")=976 + Set gtmtypes("shmpool_buff_hdr",136,"len")=4 + Set gtmtypes("shmpool_buff_hdr",136,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_puts_duplicate")=136 + Set gtmtypes("shmpool_buff_hdr",137,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_updates" + Set gtmtypes("shmpool_buff_hdr",137,"off")=980 + Set gtmtypes("shmpool_buff_hdr",137,"len")=4 + Set gtmtypes("shmpool_buff_hdr",137,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_updates")=137 + Set gtmtypes("shmpool_buff_hdr",138,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_updates_duplicate" + Set gtmtypes("shmpool_buff_hdr",138,"off")=984 + Set gtmtypes("shmpool_buff_hdr",138,"len")=4 + Set gtmtypes("shmpool_buff_hdr",138,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_updates_duplicate")=138 + Set gtmtypes("shmpool_buff_hdr",139,"name")="shmpool_buff_hdr.shadow_file_header.filler_accounting_64_align" + Set gtmtypes("shmpool_buff_hdr",139,"off")=988 + Set gtmtypes("shmpool_buff_hdr",139,"len")=4 + Set gtmtypes("shmpool_buff_hdr",139,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_accounting_64_align")=139 + Set gtmtypes("shmpool_buff_hdr",140,"name")="shmpool_buff_hdr.shadow_file_header.staleness" + Set gtmtypes("shmpool_buff_hdr",140,"off")=992 + Set gtmtypes("shmpool_buff_hdr",140,"len")=8 + Set gtmtypes("shmpool_buff_hdr",140,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.staleness")=140 + Set gtmtypes("shmpool_buff_hdr",140,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",141,"name")="shmpool_buff_hdr.shadow_file_header.ccp_tick_interval" + Set gtmtypes("shmpool_buff_hdr",141,"off")=1000 + Set gtmtypes("shmpool_buff_hdr",141,"len")=8 + Set gtmtypes("shmpool_buff_hdr",141,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_tick_interval")=141 + Set gtmtypes("shmpool_buff_hdr",141,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",142,"name")="shmpool_buff_hdr.shadow_file_header.ccp_quantum_interval" + Set gtmtypes("shmpool_buff_hdr",142,"off")=1008 + Set gtmtypes("shmpool_buff_hdr",142,"len")=8 + Set gtmtypes("shmpool_buff_hdr",142,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_quantum_interval")=142 + Set gtmtypes("shmpool_buff_hdr",142,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",143,"name")="shmpool_buff_hdr.shadow_file_header.ccp_response_interval" + Set gtmtypes("shmpool_buff_hdr",143,"off")=1016 + Set gtmtypes("shmpool_buff_hdr",143,"len")=8 + Set gtmtypes("shmpool_buff_hdr",143,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_response_interval")=143 + Set gtmtypes("shmpool_buff_hdr",143,"dim")=2 + Set gtmtypes("shmpool_buff_hdr",144,"name")="shmpool_buff_hdr.shadow_file_header.ccp_jnl_before" + Set gtmtypes("shmpool_buff_hdr",144,"off")=1024 + Set gtmtypes("shmpool_buff_hdr",144,"len")=4 + Set gtmtypes("shmpool_buff_hdr",144,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ccp_jnl_before")=144 + Set gtmtypes("shmpool_buff_hdr",145,"name")="shmpool_buff_hdr.shadow_file_header.clustered" + Set gtmtypes("shmpool_buff_hdr",145,"off")=1028 + Set gtmtypes("shmpool_buff_hdr",145,"len")=4 + Set gtmtypes("shmpool_buff_hdr",145,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.clustered")=145 + Set gtmtypes("shmpool_buff_hdr",146,"name")="shmpool_buff_hdr.shadow_file_header.unbacked_cache" + Set gtmtypes("shmpool_buff_hdr",146,"off")=1032 + Set gtmtypes("shmpool_buff_hdr",146,"len")=4 + Set gtmtypes("shmpool_buff_hdr",146,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unbacked_cache")=146 + Set gtmtypes("shmpool_buff_hdr",147,"name")="shmpool_buff_hdr.shadow_file_header.rc_srv_cnt" + Set gtmtypes("shmpool_buff_hdr",147,"off")=1036 + Set gtmtypes("shmpool_buff_hdr",147,"len")=4 + Set gtmtypes("shmpool_buff_hdr",147,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.rc_srv_cnt")=147 + Set gtmtypes("shmpool_buff_hdr",148,"name")="shmpool_buff_hdr.shadow_file_header.dsid" + Set gtmtypes("shmpool_buff_hdr",148,"off")=1040 + Set gtmtypes("shmpool_buff_hdr",148,"len")=4 + Set gtmtypes("shmpool_buff_hdr",148,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dsid")=148 + Set gtmtypes("shmpool_buff_hdr",149,"name")="shmpool_buff_hdr.shadow_file_header.rc_node" + Set gtmtypes("shmpool_buff_hdr",149,"off")=1044 + Set gtmtypes("shmpool_buff_hdr",149,"len")=4 + Set gtmtypes("shmpool_buff_hdr",149,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.rc_node")=149 + Set gtmtypes("shmpool_buff_hdr",150,"name")="shmpool_buff_hdr.shadow_file_header.filler_ccp_rc" + Set gtmtypes("shmpool_buff_hdr",150,"off")=1048 + Set gtmtypes("shmpool_buff_hdr",150,"len")=8 + Set gtmtypes("shmpool_buff_hdr",150,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_ccp_rc")=150 + Set gtmtypes("shmpool_buff_hdr",151,"name")="shmpool_buff_hdr.shadow_file_header.reg_seqno" + Set gtmtypes("shmpool_buff_hdr",151,"off")=1056 + Set gtmtypes("shmpool_buff_hdr",151,"len")=8 + Set gtmtypes("shmpool_buff_hdr",151,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reg_seqno")=151 + Set gtmtypes("shmpool_buff_hdr",152,"name")="shmpool_buff_hdr.shadow_file_header.pre_multisite_resync_seqno" + Set gtmtypes("shmpool_buff_hdr",152,"off")=1064 + Set gtmtypes("shmpool_buff_hdr",152,"len")=8 + Set gtmtypes("shmpool_buff_hdr",152,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.pre_multisite_resync_seqno")=152 + Set gtmtypes("shmpool_buff_hdr",153,"name")="shmpool_buff_hdr.shadow_file_header.zqgblmod_tn" + Set gtmtypes("shmpool_buff_hdr",153,"off")=1072 + Set gtmtypes("shmpool_buff_hdr",153,"len")=8 + Set gtmtypes("shmpool_buff_hdr",153,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.zqgblmod_tn")=153 + Set gtmtypes("shmpool_buff_hdr",154,"name")="shmpool_buff_hdr.shadow_file_header.zqgblmod_seqno" + Set gtmtypes("shmpool_buff_hdr",154,"off")=1080 + Set gtmtypes("shmpool_buff_hdr",154,"len")=8 + Set gtmtypes("shmpool_buff_hdr",154,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.zqgblmod_seqno")=154 + Set gtmtypes("shmpool_buff_hdr",155,"name")="shmpool_buff_hdr.shadow_file_header.repl_state" + Set gtmtypes("shmpool_buff_hdr",155,"off")=1088 + Set gtmtypes("shmpool_buff_hdr",155,"len")=4 + Set gtmtypes("shmpool_buff_hdr",155,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.repl_state")=155 + Set gtmtypes("shmpool_buff_hdr",156,"name")="shmpool_buff_hdr.shadow_file_header.multi_site_open" + Set gtmtypes("shmpool_buff_hdr",156,"off")=1092 + Set gtmtypes("shmpool_buff_hdr",156,"len")=4 + Set gtmtypes("shmpool_buff_hdr",156,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.multi_site_open")=156 + Set gtmtypes("shmpool_buff_hdr",157,"name")="shmpool_buff_hdr.shadow_file_header.filler_seqno" + Set gtmtypes("shmpool_buff_hdr",157,"off")=1096 + Set gtmtypes("shmpool_buff_hdr",157,"len")=8 + Set gtmtypes("shmpool_buff_hdr",157,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_seqno")=157 + Set gtmtypes("shmpool_buff_hdr",158,"name")="shmpool_buff_hdr.shadow_file_header.filler_repl" + Set gtmtypes("shmpool_buff_hdr",158,"off")=1104 + Set gtmtypes("shmpool_buff_hdr",158,"len")=16 + Set gtmtypes("shmpool_buff_hdr",158,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_repl")=158 + Set gtmtypes("shmpool_buff_hdr",159,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_retries" + Set gtmtypes("shmpool_buff_hdr",159,"off")=1120 + Set gtmtypes("shmpool_buff_hdr",159,"len")=48 + Set gtmtypes("shmpool_buff_hdr",159,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_retries")=159 + Set gtmtypes("shmpool_buff_hdr",159,"dim")=12 + Set gtmtypes("shmpool_buff_hdr",160,"name")="shmpool_buff_hdr.shadow_file_header.filler_n_tp_retries_conflicts" + Set gtmtypes("shmpool_buff_hdr",160,"off")=1168 + Set gtmtypes("shmpool_buff_hdr",160,"len")=48 + Set gtmtypes("shmpool_buff_hdr",160,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_n_tp_retries_conflicts")=160 + Set gtmtypes("shmpool_buff_hdr",160,"dim")=12 + Set gtmtypes("shmpool_buff_hdr",161,"name")="shmpool_buff_hdr.shadow_file_header.tp_cdb_sc_blkmod" + Set gtmtypes("shmpool_buff_hdr",161,"off")=1216 + Set gtmtypes("shmpool_buff_hdr",161,"len")=32 + Set gtmtypes("shmpool_buff_hdr",161,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_cdb_sc_blkmod")=161 + Set gtmtypes("shmpool_buff_hdr",161,"dim")=8 + Set gtmtypes("shmpool_buff_hdr",162,"name")="shmpool_buff_hdr.shadow_file_header.jnl_alq" + Set gtmtypes("shmpool_buff_hdr",162,"off")=1248 + Set gtmtypes("shmpool_buff_hdr",162,"len")=4 + Set gtmtypes("shmpool_buff_hdr",162,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_alq")=162 + Set gtmtypes("shmpool_buff_hdr",163,"name")="shmpool_buff_hdr.shadow_file_header.jnl_deq" + Set gtmtypes("shmpool_buff_hdr",163,"off")=1252 + Set gtmtypes("shmpool_buff_hdr",163,"len")=4 + Set gtmtypes("shmpool_buff_hdr",163,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_deq")=163 + Set gtmtypes("shmpool_buff_hdr",164,"name")="shmpool_buff_hdr.shadow_file_header.jnl_buffer_size" + Set gtmtypes("shmpool_buff_hdr",164,"off")=1256 + Set gtmtypes("shmpool_buff_hdr",164,"len")=4 + Set gtmtypes("shmpool_buff_hdr",164,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_buffer_size")=164 + Set gtmtypes("shmpool_buff_hdr",165,"name")="shmpool_buff_hdr.shadow_file_header.jnl_before_image" + Set gtmtypes("shmpool_buff_hdr",165,"off")=1260 + Set gtmtypes("shmpool_buff_hdr",165,"len")=4 + Set gtmtypes("shmpool_buff_hdr",165,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_before_image")=165 + Set gtmtypes("shmpool_buff_hdr",166,"name")="shmpool_buff_hdr.shadow_file_header.jnl_state" + Set gtmtypes("shmpool_buff_hdr",166,"off")=1264 + Set gtmtypes("shmpool_buff_hdr",166,"len")=4 + Set gtmtypes("shmpool_buff_hdr",166,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_state")=166 + Set gtmtypes("shmpool_buff_hdr",167,"name")="shmpool_buff_hdr.shadow_file_header.jnl_file_len" + Set gtmtypes("shmpool_buff_hdr",167,"off")=1268 + Set gtmtypes("shmpool_buff_hdr",167,"len")=4 + Set gtmtypes("shmpool_buff_hdr",167,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_file_len")=167 + Set gtmtypes("shmpool_buff_hdr",168,"name")="shmpool_buff_hdr.shadow_file_header.autoswitchlimit" + Set gtmtypes("shmpool_buff_hdr",168,"off")=1272 + Set gtmtypes("shmpool_buff_hdr",168,"len")=4 + Set gtmtypes("shmpool_buff_hdr",168,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.autoswitchlimit")=168 + Set gtmtypes("shmpool_buff_hdr",169,"name")="shmpool_buff_hdr.shadow_file_header.epoch_interval" + Set gtmtypes("shmpool_buff_hdr",169,"off")=1276 + Set gtmtypes("shmpool_buff_hdr",169,"len")=4 + Set gtmtypes("shmpool_buff_hdr",169,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.epoch_interval")=169 + Set gtmtypes("shmpool_buff_hdr",170,"name")="shmpool_buff_hdr.shadow_file_header.alignsize" + Set gtmtypes("shmpool_buff_hdr",170,"off")=1280 + Set gtmtypes("shmpool_buff_hdr",170,"len")=4 + Set gtmtypes("shmpool_buff_hdr",170,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.alignsize")=170 + Set gtmtypes("shmpool_buff_hdr",171,"name")="shmpool_buff_hdr.shadow_file_header.jnl_sync_io" + Set gtmtypes("shmpool_buff_hdr",171,"off")=1284 + Set gtmtypes("shmpool_buff_hdr",171,"len")=4 + Set gtmtypes("shmpool_buff_hdr",171,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_sync_io")=171 + Set gtmtypes("shmpool_buff_hdr",172,"name")="shmpool_buff_hdr.shadow_file_header.yield_lmt" + Set gtmtypes("shmpool_buff_hdr",172,"off")=1288 + Set gtmtypes("shmpool_buff_hdr",172,"len")=4 + Set gtmtypes("shmpool_buff_hdr",172,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.yield_lmt")=172 + Set gtmtypes("shmpool_buff_hdr",173,"name")="shmpool_buff_hdr.shadow_file_header.turn_around_point" + Set gtmtypes("shmpool_buff_hdr",173,"off")=1292 + Set gtmtypes("shmpool_buff_hdr",173,"len")=4 + Set gtmtypes("shmpool_buff_hdr",173,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.turn_around_point")=173 + Set gtmtypes("shmpool_buff_hdr",174,"name")="shmpool_buff_hdr.shadow_file_header.jnl_eovtn" + Set gtmtypes("shmpool_buff_hdr",174,"off")=1296 + Set gtmtypes("shmpool_buff_hdr",174,"len")=8 + Set gtmtypes("shmpool_buff_hdr",174,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_eovtn")=174 + Set gtmtypes("shmpool_buff_hdr",175,"name")="shmpool_buff_hdr.shadow_file_header.filler_jnl" + Set gtmtypes("shmpool_buff_hdr",175,"off")=1304 + Set gtmtypes("shmpool_buff_hdr",175,"len")=8 + Set gtmtypes("shmpool_buff_hdr",175,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_jnl")=175 + Set gtmtypes("shmpool_buff_hdr",176,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_resync_seqno" + Set gtmtypes("shmpool_buff_hdr",176,"off")=1312 + Set gtmtypes("shmpool_buff_hdr",176,"len")=8 + Set gtmtypes("shmpool_buff_hdr",176,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_resync_seqno")=176 + Set gtmtypes("shmpool_buff_hdr",177,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_tp_resolve_time" + Set gtmtypes("shmpool_buff_hdr",177,"off")=1320 + Set gtmtypes("shmpool_buff_hdr",177,"len")=4 + Set gtmtypes("shmpool_buff_hdr",177,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_tp_resolve_time")=177 + Set gtmtypes("shmpool_buff_hdr",178,"name")="shmpool_buff_hdr.shadow_file_header.recov_interrupted" + Set gtmtypes("shmpool_buff_hdr",178,"off")=1324 + Set gtmtypes("shmpool_buff_hdr",178,"len")=4 + Set gtmtypes("shmpool_buff_hdr",178,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recov_interrupted")=178 + Set gtmtypes("shmpool_buff_hdr",179,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_jnl_state" + Set gtmtypes("shmpool_buff_hdr",179,"off")=1328 + Set gtmtypes("shmpool_buff_hdr",179,"len")=4 + Set gtmtypes("shmpool_buff_hdr",179,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_jnl_state")=179 + Set gtmtypes("shmpool_buff_hdr",180,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_repl_state" + Set gtmtypes("shmpool_buff_hdr",180,"off")=1332 + Set gtmtypes("shmpool_buff_hdr",180,"len")=4 + Set gtmtypes("shmpool_buff_hdr",180,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_repl_state")=180 + Set gtmtypes("shmpool_buff_hdr",181,"name")="shmpool_buff_hdr.shadow_file_header.before_trunc_total_blks" + Set gtmtypes("shmpool_buff_hdr",181,"off")=1336 + Set gtmtypes("shmpool_buff_hdr",181,"len")=4 + Set gtmtypes("shmpool_buff_hdr",181,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.before_trunc_total_blks")=181 + Set gtmtypes("shmpool_buff_hdr",182,"name")="shmpool_buff_hdr.shadow_file_header.after_trunc_total_blks" + Set gtmtypes("shmpool_buff_hdr",182,"off")=1340 + Set gtmtypes("shmpool_buff_hdr",182,"len")=4 + Set gtmtypes("shmpool_buff_hdr",182,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.after_trunc_total_blks")=182 + Set gtmtypes("shmpool_buff_hdr",183,"name")="shmpool_buff_hdr.shadow_file_header.before_trunc_free_blocks" + Set gtmtypes("shmpool_buff_hdr",183,"off")=1344 + Set gtmtypes("shmpool_buff_hdr",183,"len")=4 + Set gtmtypes("shmpool_buff_hdr",183,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.before_trunc_free_blocks")=183 + Set gtmtypes("shmpool_buff_hdr",184,"name")="shmpool_buff_hdr.shadow_file_header.filler_trunc" + Set gtmtypes("shmpool_buff_hdr",184,"off")=1348 + Set gtmtypes("shmpool_buff_hdr",184,"len")=4 + Set gtmtypes("shmpool_buff_hdr",184,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_trunc")=184 + Set gtmtypes("shmpool_buff_hdr",185,"name")="shmpool_buff_hdr.shadow_file_header.filler_1k" + Set gtmtypes("shmpool_buff_hdr",185,"off")=1352 + Set gtmtypes("shmpool_buff_hdr",185,"len")=24 + Set gtmtypes("shmpool_buff_hdr",185,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_1k")=185 + Set gtmtypes("shmpool_buff_hdr",186,"name")="shmpool_buff_hdr.shadow_file_header.jnl_file_name" + Set gtmtypes("shmpool_buff_hdr",186,"off")=1376 + Set gtmtypes("shmpool_buff_hdr",186,"len")=256 + Set gtmtypes("shmpool_buff_hdr",186,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_file_name")=186 + Set gtmtypes("shmpool_buff_hdr",187,"name")="shmpool_buff_hdr.shadow_file_header.reorg_restart_key" + Set gtmtypes("shmpool_buff_hdr",187,"off")=1632 + Set gtmtypes("shmpool_buff_hdr",187,"len")=256 + Set gtmtypes("shmpool_buff_hdr",187,"type")="unsigned-char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reorg_restart_key")=187 + Set gtmtypes("shmpool_buff_hdr",188,"name")="shmpool_buff_hdr.shadow_file_header.machine_name" + Set gtmtypes("shmpool_buff_hdr",188,"off")=1888 + Set gtmtypes("shmpool_buff_hdr",188,"len")=256 + Set gtmtypes("shmpool_buff_hdr",188,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.machine_name")=188 + Set gtmtypes("shmpool_buff_hdr",189,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash" + Set gtmtypes("shmpool_buff_hdr",189,"off")=2144 + Set gtmtypes("shmpool_buff_hdr",189,"len")=80 + Set gtmtypes("shmpool_buff_hdr",189,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash")=189 + Set gtmtypes("shmpool_buff_hdr",190,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash2" + Set gtmtypes("shmpool_buff_hdr",190,"off")=2224 + Set gtmtypes("shmpool_buff_hdr",190,"len")=80 + Set gtmtypes("shmpool_buff_hdr",190,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash2")=190 + Set gtmtypes("shmpool_buff_hdr",191,"name")="shmpool_buff_hdr.shadow_file_header.non_null_iv" + Set gtmtypes("shmpool_buff_hdr",191,"off")=2304 + Set gtmtypes("shmpool_buff_hdr",191,"len")=4 + Set gtmtypes("shmpool_buff_hdr",191,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.non_null_iv")=191 + Set gtmtypes("shmpool_buff_hdr",192,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash_cutoff" + Set gtmtypes("shmpool_buff_hdr",192,"off")=2308 + Set gtmtypes("shmpool_buff_hdr",192,"len")=4 + Set gtmtypes("shmpool_buff_hdr",192,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash_cutoff")=192 + Set gtmtypes("shmpool_buff_hdr",193,"name")="shmpool_buff_hdr.shadow_file_header.encryption_hash2_start_tn" + Set gtmtypes("shmpool_buff_hdr",193,"off")=2312 + Set gtmtypes("shmpool_buff_hdr",193,"len")=8 + Set gtmtypes("shmpool_buff_hdr",193,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.encryption_hash2_start_tn")=193 + Set gtmtypes("shmpool_buff_hdr",194,"name")="shmpool_buff_hdr.shadow_file_header.filler_encrypt" + Set gtmtypes("shmpool_buff_hdr",194,"off")=2320 + Set gtmtypes("shmpool_buff_hdr",194,"len")=80 + Set gtmtypes("shmpool_buff_hdr",194,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_encrypt")=194 + Set gtmtypes("shmpool_buff_hdr",195,"name")="shmpool_buff_hdr.shadow_file_header.total_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",195,"off")=2400 + Set gtmtypes("shmpool_buff_hdr",195,"len")=8 + Set gtmtypes("shmpool_buff_hdr",195,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.total_buffer_flush_tn")=195 + Set gtmtypes("shmpool_buff_hdr",196,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",196,"off")=2408 + Set gtmtypes("shmpool_buff_hdr",196,"len")=8 + Set gtmtypes("shmpool_buff_hdr",196,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_tn")=196 + Set gtmtypes("shmpool_buff_hdr",197,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_loop_tn" + Set gtmtypes("shmpool_buff_hdr",197,"off")=2416 + Set gtmtypes("shmpool_buff_hdr",197,"len")=8 + Set gtmtypes("shmpool_buff_hdr",197,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_loop_tn")=197 + Set gtmtypes("shmpool_buff_hdr",198,"name")="shmpool_buff_hdr.shadow_file_header.wrt_calls_tn" + Set gtmtypes("shmpool_buff_hdr",198,"off")=2424 + Set gtmtypes("shmpool_buff_hdr",198,"len")=8 + Set gtmtypes("shmpool_buff_hdr",198,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_calls_tn")=198 + Set gtmtypes("shmpool_buff_hdr",199,"name")="shmpool_buff_hdr.shadow_file_header.wrt_count_tn" + Set gtmtypes("shmpool_buff_hdr",199,"off")=2432 + Set gtmtypes("shmpool_buff_hdr",199,"len")=8 + Set gtmtypes("shmpool_buff_hdr",199,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_count_tn")=199 + Set gtmtypes("shmpool_buff_hdr",200,"name")="shmpool_buff_hdr.shadow_file_header.wrt_blocked_tn" + Set gtmtypes("shmpool_buff_hdr",200,"off")=2440 + Set gtmtypes("shmpool_buff_hdr",200,"len")=8 + Set gtmtypes("shmpool_buff_hdr",200,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_blocked_tn")=200 + Set gtmtypes("shmpool_buff_hdr",201,"name")="shmpool_buff_hdr.shadow_file_header.wrt_busy_tn" + Set gtmtypes("shmpool_buff_hdr",201,"off")=2448 + Set gtmtypes("shmpool_buff_hdr",201,"len")=8 + Set gtmtypes("shmpool_buff_hdr",201,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_busy_tn")=201 + Set gtmtypes("shmpool_buff_hdr",202,"name")="shmpool_buff_hdr.shadow_file_header.wrt_noblks_wrtn_tn" + Set gtmtypes("shmpool_buff_hdr",202,"off")=2456 + Set gtmtypes("shmpool_buff_hdr",202,"len")=8 + Set gtmtypes("shmpool_buff_hdr",202,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_noblks_wrtn_tn")=202 + Set gtmtypes("shmpool_buff_hdr",203,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec1_tn" + Set gtmtypes("shmpool_buff_hdr",203,"off")=2464 + Set gtmtypes("shmpool_buff_hdr",203,"len")=8 + Set gtmtypes("shmpool_buff_hdr",203,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec1_tn")=203 + Set gtmtypes("shmpool_buff_hdr",204,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec2_tn" + Set gtmtypes("shmpool_buff_hdr",204,"off")=2472 + Set gtmtypes("shmpool_buff_hdr",204,"len")=8 + Set gtmtypes("shmpool_buff_hdr",204,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec2_tn")=204 + Set gtmtypes("shmpool_buff_hdr",205,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec3_tn" + Set gtmtypes("shmpool_buff_hdr",205,"off")=2480 + Set gtmtypes("shmpool_buff_hdr",205,"len")=8 + Set gtmtypes("shmpool_buff_hdr",205,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec3_tn")=205 + Set gtmtypes("shmpool_buff_hdr",206,"name")="shmpool_buff_hdr.shadow_file_header.lost_block_recovery_tn" + Set gtmtypes("shmpool_buff_hdr",206,"off")=2488 + Set gtmtypes("shmpool_buff_hdr",206,"len")=8 + Set gtmtypes("shmpool_buff_hdr",206,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lost_block_recovery_tn")=206 + Set gtmtypes("shmpool_buff_hdr",207,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_onln_rlbk_tn" + Set gtmtypes("shmpool_buff_hdr",207,"off")=2496 + Set gtmtypes("shmpool_buff_hdr",207,"len")=8 + Set gtmtypes("shmpool_buff_hdr",207,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_onln_rlbk_tn")=207 + Set gtmtypes("shmpool_buff_hdr",208,"name")="shmpool_buff_hdr.shadow_file_header.stale_tn" + Set gtmtypes("shmpool_buff_hdr",208,"off")=2504 + Set gtmtypes("shmpool_buff_hdr",208,"len")=8 + Set gtmtypes("shmpool_buff_hdr",208,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_tn")=208 + Set gtmtypes("shmpool_buff_hdr",209,"name")="shmpool_buff_hdr.shadow_file_header.starved_tn" + Set gtmtypes("shmpool_buff_hdr",209,"off")=2512 + Set gtmtypes("shmpool_buff_hdr",209,"len")=8 + Set gtmtypes("shmpool_buff_hdr",209,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.starved_tn")=209 + Set gtmtypes("shmpool_buff_hdr",210,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_started_tn" + Set gtmtypes("shmpool_buff_hdr",210,"off")=2520 + Set gtmtypes("shmpool_buff_hdr",210,"len")=8 + Set gtmtypes("shmpool_buff_hdr",210,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_started_tn")=210 + Set gtmtypes("shmpool_buff_hdr",211,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_pop_tn" + Set gtmtypes("shmpool_buff_hdr",211,"off")=2528 + Set gtmtypes("shmpool_buff_hdr",211,"len")=8 + Set gtmtypes("shmpool_buff_hdr",211,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_pop_tn")=211 + Set gtmtypes("shmpool_buff_hdr",212,"name")="shmpool_buff_hdr.shadow_file_header.stale_process_defer_tn" + Set gtmtypes("shmpool_buff_hdr",212,"off")=2536 + Set gtmtypes("shmpool_buff_hdr",212,"len")=8 + Set gtmtypes("shmpool_buff_hdr",212,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_process_defer_tn")=212 + Set gtmtypes("shmpool_buff_hdr",213,"name")="shmpool_buff_hdr.shadow_file_header.stale_defer_processed_tn" + Set gtmtypes("shmpool_buff_hdr",213,"off")=2544 + Set gtmtypes("shmpool_buff_hdr",213,"len")=8 + Set gtmtypes("shmpool_buff_hdr",213,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_defer_processed_tn")=213 + Set gtmtypes("shmpool_buff_hdr",214,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_tn" + Set gtmtypes("shmpool_buff_hdr",214,"off")=2552 + Set gtmtypes("shmpool_buff_hdr",214,"len")=8 + Set gtmtypes("shmpool_buff_hdr",214,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_tn")=214 + Set gtmtypes("shmpool_buff_hdr",215,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_loop_tn" + Set gtmtypes("shmpool_buff_hdr",215,"off")=2560 + Set gtmtypes("shmpool_buff_hdr",215,"len")=8 + Set gtmtypes("shmpool_buff_hdr",215,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_loop_tn")=215 + Set gtmtypes("shmpool_buff_hdr",216,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_retries_tn" + Set gtmtypes("shmpool_buff_hdr",216,"off")=2568 + Set gtmtypes("shmpool_buff_hdr",216,"len")=8 + Set gtmtypes("shmpool_buff_hdr",216,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_retries_tn")=216 + Set gtmtypes("shmpool_buff_hdr",217,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn" + Set gtmtypes("shmpool_buff_hdr",217,"off")=2576 + Set gtmtypes("shmpool_buff_hdr",217,"len")=8 + Set gtmtypes("shmpool_buff_hdr",217,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flushed_during_lockwait_tn")=217 + Set gtmtypes("shmpool_buff_hdr",218,"name")="shmpool_buff_hdr.shadow_file_header.tp_crit_retries_tn" + Set gtmtypes("shmpool_buff_hdr",218,"off")=2584 + Set gtmtypes("shmpool_buff_hdr",218,"len")=8 + Set gtmtypes("shmpool_buff_hdr",218,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_crit_retries_tn")=218 + Set gtmtypes("shmpool_buff_hdr",219,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_flush_dirty_tn" + Set gtmtypes("shmpool_buff_hdr",219,"off")=2592 + Set gtmtypes("shmpool_buff_hdr",219,"len")=8 + Set gtmtypes("shmpool_buff_hdr",219,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_flush_dirty_tn")=219 + Set gtmtypes("shmpool_buff_hdr",220,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_rip_wait_tn" + Set gtmtypes("shmpool_buff_hdr",220,"off")=2600 + Set gtmtypes("shmpool_buff_hdr",220,"len")=8 + Set gtmtypes("shmpool_buff_hdr",220,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_rip_wait_tn")=220 + Set gtmtypes("shmpool_buff_hdr",221,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_buf_owner_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",221,"off")=2608 + Set gtmtypes("shmpool_buff_hdr",221,"len")=8 + Set gtmtypes("shmpool_buff_hdr",221,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_buf_owner_stuck_tn")=221 + Set gtmtypes("shmpool_buff_hdr",222,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_out_of_design_tn" + Set gtmtypes("shmpool_buff_hdr",222,"off")=2616 + Set gtmtypes("shmpool_buff_hdr",222,"len")=8 + Set gtmtypes("shmpool_buff_hdr",222,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_out_of_design_tn")=222 + Set gtmtypes("shmpool_buff_hdr",223,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_buf_owner_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",223,"off")=2624 + Set gtmtypes("shmpool_buff_hdr",223,"len")=8 + Set gtmtypes("shmpool_buff_hdr",223,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_buf_owner_stuck_tn")=223 + Set gtmtypes("shmpool_buff_hdr",224,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_out_of_design_tn" + Set gtmtypes("shmpool_buff_hdr",224,"off")=2632 + Set gtmtypes("shmpool_buff_hdr",224,"len")=8 + Set gtmtypes("shmpool_buff_hdr",224,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_out_of_design_tn")=224 + Set gtmtypes("shmpool_buff_hdr",225,"name")="shmpool_buff_hdr.shadow_file_header.bt_put_flush_dirty_tn" + Set gtmtypes("shmpool_buff_hdr",225,"off")=2640 + Set gtmtypes("shmpool_buff_hdr",225,"len")=8 + Set gtmtypes("shmpool_buff_hdr",225,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_put_flush_dirty_tn")=225 + Set gtmtypes("shmpool_buff_hdr",226,"name")="shmpool_buff_hdr.shadow_file_header.mlock_wakeups_tn" + Set gtmtypes("shmpool_buff_hdr",226,"off")=2648 + Set gtmtypes("shmpool_buff_hdr",226,"len")=8 + Set gtmtypes("shmpool_buff_hdr",226,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mlock_wakeups_tn")=226 + Set gtmtypes("shmpool_buff_hdr",227,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_recover_invoked_tn" + Set gtmtypes("shmpool_buff_hdr",227,"off")=2656 + Set gtmtypes("shmpool_buff_hdr",227,"len")=8 + Set gtmtypes("shmpool_buff_hdr",227,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_recover_invoked_tn")=227 + Set gtmtypes("shmpool_buff_hdr",228,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_verify_passed_tn" + Set gtmtypes("shmpool_buff_hdr",228,"off")=2664 + Set gtmtypes("shmpool_buff_hdr",228,"len")=8 + Set gtmtypes("shmpool_buff_hdr",228,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_verify_passed_tn")=228 + Set gtmtypes("shmpool_buff_hdr",229,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn" + Set gtmtypes("shmpool_buff_hdr",229,"off")=2672 + Set gtmtypes("shmpool_buff_hdr",229,"len")=8 + Set gtmtypes("shmpool_buff_hdr",229,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_tn")=229 + Set gtmtypes("shmpool_buff_hdr",230,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn" + Set gtmtypes("shmpool_buff_hdr",230,"off")=2680 + Set gtmtypes("shmpool_buff_hdr",230,"len")=8 + Set gtmtypes("shmpool_buff_hdr",230,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_tn")=230 + Set gtmtypes("shmpool_buff_hdr",231,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn" + Set gtmtypes("shmpool_buff_hdr",231,"off")=2688 + Set gtmtypes("shmpool_buff_hdr",231,"len")=8 + Set gtmtypes("shmpool_buff_hdr",231,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_tn")=231 + Set gtmtypes("shmpool_buff_hdr",232,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn" + Set gtmtypes("shmpool_buff_hdr",232,"off")=2696 + Set gtmtypes("shmpool_buff_hdr",232,"len")=8 + Set gtmtypes("shmpool_buff_hdr",232,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_tn")=232 + Set gtmtypes("shmpool_buff_hdr",233,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_get_tn" + Set gtmtypes("shmpool_buff_hdr",233,"off")=2704 + Set gtmtypes("shmpool_buff_hdr",233,"len")=8 + Set gtmtypes("shmpool_buff_hdr",233,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_get_tn")=233 + Set gtmtypes("shmpool_buff_hdr",234,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn" + Set gtmtypes("shmpool_buff_hdr",234,"off")=2712 + Set gtmtypes("shmpool_buff_hdr",234,"len")=8 + Set gtmtypes("shmpool_buff_hdr",234,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_tn")=234 + Set gtmtypes("shmpool_buff_hdr",235,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_t1_tn" + Set gtmtypes("shmpool_buff_hdr",235,"off")=2720 + Set gtmtypes("shmpool_buff_hdr",235,"len")=8 + Set gtmtypes("shmpool_buff_hdr",235,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_t1_tn")=235 + Set gtmtypes("shmpool_buff_hdr",236,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_bitmap_tn" + Set gtmtypes("shmpool_buff_hdr",236,"off")=2728 + Set gtmtypes("shmpool_buff_hdr",236,"len")=8 + Set gtmtypes("shmpool_buff_hdr",236,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_bitmap_tn")=236 + Set gtmtypes("shmpool_buff_hdr",237,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn" + Set gtmtypes("shmpool_buff_hdr",237,"off")=2736 + Set gtmtypes("shmpool_buff_hdr",237,"len")=8 + Set gtmtypes("shmpool_buff_hdr",237,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_tn")=237 + Set gtmtypes("shmpool_buff_hdr",238,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn" + Set gtmtypes("shmpool_buff_hdr",238,"off")=2744 + Set gtmtypes("shmpool_buff_hdr",238,"len")=8 + Set gtmtypes("shmpool_buff_hdr",238,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_tn")=238 + Set gtmtypes("shmpool_buff_hdr",239,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist_tn" + Set gtmtypes("shmpool_buff_hdr",239,"off")=2752 + Set gtmtypes("shmpool_buff_hdr",239,"len")=8 + Set gtmtypes("shmpool_buff_hdr",239,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist_tn")=239 + Set gtmtypes("shmpool_buff_hdr",240,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",240,"off")=2760 + Set gtmtypes("shmpool_buff_hdr",240,"len")=8 + Set gtmtypes("shmpool_buff_hdr",240,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nullbt_tn")=240 + Set gtmtypes("shmpool_buff_hdr",241,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",241,"off")=2768 + Set gtmtypes("shmpool_buff_hdr",241,"len")=8 + Set gtmtypes("shmpool_buff_hdr",241,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_tn")=241 + Set gtmtypes("shmpool_buff_hdr",242,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",242,"off")=2776 + Set gtmtypes("shmpool_buff_hdr",242,"len")=8 + Set gtmtypes("shmpool_buff_hdr",242,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_tn")=242 + Set gtmtypes("shmpool_buff_hdr",243,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",243,"off")=2784 + Set gtmtypes("shmpool_buff_hdr",243,"len")=8 + Set gtmtypes("shmpool_buff_hdr",243,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_tn")=243 + Set gtmtypes("shmpool_buff_hdr",244,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_cwset_tn" + Set gtmtypes("shmpool_buff_hdr",244,"off")=2792 + Set gtmtypes("shmpool_buff_hdr",244,"len")=8 + Set gtmtypes("shmpool_buff_hdr",244,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_cwset_tn")=244 + Set gtmtypes("shmpool_buff_hdr",245,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn" + Set gtmtypes("shmpool_buff_hdr",245,"off")=2800 + Set gtmtypes("shmpool_buff_hdr",245,"len")=8 + Set gtmtypes("shmpool_buff_hdr",245,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_tn")=245 + Set gtmtypes("shmpool_buff_hdr",246,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_get_too_many_loops_tn" + Set gtmtypes("shmpool_buff_hdr",246,"off")=2808 + Set gtmtypes("shmpool_buff_hdr",246,"len")=8 + Set gtmtypes("shmpool_buff_hdr",246,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_get_too_many_loops_tn")=246 + Set gtmtypes("shmpool_buff_hdr",247,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn" + Set gtmtypes("shmpool_buff_hdr",247,"off")=2816 + Set gtmtypes("shmpool_buff_hdr",247,"len")=8 + Set gtmtypes("shmpool_buff_hdr",247,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_tn")=247 + Set gtmtypes("shmpool_buff_hdr",248,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn" + Set gtmtypes("shmpool_buff_hdr",248,"off")=2824 + Set gtmtypes("shmpool_buff_hdr",248,"len")=8 + Set gtmtypes("shmpool_buff_hdr",248,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_tn")=248 + Set gtmtypes("shmpool_buff_hdr",249,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_lost_tn" + Set gtmtypes("shmpool_buff_hdr",249,"off")=2832 + Set gtmtypes("shmpool_buff_hdr",249,"len")=8 + Set gtmtypes("shmpool_buff_hdr",249,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_lost_tn")=249 + Set gtmtypes("shmpool_buff_hdr",250,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",250,"off")=2840 + Set gtmtypes("shmpool_buff_hdr",250,"len")=8 + Set gtmtypes("shmpool_buff_hdr",250,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_stuck_tn")=250 + Set gtmtypes("shmpool_buff_hdr",251,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_blocked_tn" + Set gtmtypes("shmpool_buff_hdr",251,"off")=2848 + Set gtmtypes("shmpool_buff_hdr",251,"len")=8 + Set gtmtypes("shmpool_buff_hdr",251,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_blocked_tn")=251 + Set gtmtypes("shmpool_buff_hdr",252,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsyncs_tn" + Set gtmtypes("shmpool_buff_hdr",252,"off")=2856 + Set gtmtypes("shmpool_buff_hdr",252,"len")=8 + Set gtmtypes("shmpool_buff_hdr",252,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsyncs_tn")=252 + Set gtmtypes("shmpool_buff_hdr",253,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_tries_tn" + Set gtmtypes("shmpool_buff_hdr",253,"off")=2864 + Set gtmtypes("shmpool_buff_hdr",253,"len")=8 + Set gtmtypes("shmpool_buff_hdr",253,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_tries_tn")=253 + Set gtmtypes("shmpool_buff_hdr",254,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_recovers_tn" + Set gtmtypes("shmpool_buff_hdr",254,"off")=2872 + Set gtmtypes("shmpool_buff_hdr",254,"len")=8 + Set gtmtypes("shmpool_buff_hdr",254,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_recovers_tn")=254 + Set gtmtypes("shmpool_buff_hdr",255,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_tn" + Set gtmtypes("shmpool_buff_hdr",255,"off")=2880 + Set gtmtypes("shmpool_buff_hdr",255,"len")=8 + Set gtmtypes("shmpool_buff_hdr",255,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_tn")=255 + Set gtmtypes("shmpool_buff_hdr",256,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_in_crit_tn" + Set gtmtypes("shmpool_buff_hdr",256,"off")=2888 + Set gtmtypes("shmpool_buff_hdr",256,"len")=8 + Set gtmtypes("shmpool_buff_hdr",256,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_in_crit_tn")=256 + Set gtmtypes("shmpool_buff_hdr",257,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_timers_tn" + Set gtmtypes("shmpool_buff_hdr",257,"off")=2896 + Set gtmtypes("shmpool_buff_hdr",257,"len")=8 + Set gtmtypes("shmpool_buff_hdr",257,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_timers_tn")=257 + Set gtmtypes("shmpool_buff_hdr",258,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_writes_tn" + Set gtmtypes("shmpool_buff_hdr",258,"off")=2904 + Set gtmtypes("shmpool_buff_hdr",258,"len")=8 + Set gtmtypes("shmpool_buff_hdr",258,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_writes_tn")=258 + Set gtmtypes("shmpool_buff_hdr",259,"name")="shmpool_buff_hdr.shadow_file_header.mutex_queue_full_tn" + Set gtmtypes("shmpool_buff_hdr",259,"off")=2912 + Set gtmtypes("shmpool_buff_hdr",259,"len")=8 + Set gtmtypes("shmpool_buff_hdr",259,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_queue_full_tn")=259 + Set gtmtypes("shmpool_buff_hdr",260,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bt_put_tn" + Set gtmtypes("shmpool_buff_hdr",260,"off")=2920 + Set gtmtypes("shmpool_buff_hdr",260,"len")=8 + Set gtmtypes("shmpool_buff_hdr",260,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bt_put_tn")=260 + Set gtmtypes("shmpool_buff_hdr",261,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mutex_salvage_tn" + Set gtmtypes("shmpool_buff_hdr",261,"off")=2928 + Set gtmtypes("shmpool_buff_hdr",261,"len")=8 + Set gtmtypes("shmpool_buff_hdr",261,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mutex_salvage_tn")=261 + Set gtmtypes("shmpool_buff_hdr",262,"name")="shmpool_buff_hdr.shadow_file_header.wcb_tp_grab_crit_tn" + Set gtmtypes("shmpool_buff_hdr",262,"off")=2936 + Set gtmtypes("shmpool_buff_hdr",262,"len")=8 + Set gtmtypes("shmpool_buff_hdr",262,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_tp_grab_crit_tn")=262 + Set gtmtypes("shmpool_buff_hdr",263,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",263,"off")=2944 + Set gtmtypes("shmpool_buff_hdr",263,"len")=8 + Set gtmtypes("shmpool_buff_hdr",263,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_nocr_invcr_tn")=263 + Set gtmtypes("shmpool_buff_hdr",264,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_cr_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",264,"off")=2952 + Set gtmtypes("shmpool_buff_hdr",264,"len")=8 + Set gtmtypes("shmpool_buff_hdr",264,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_cr_invcr_tn")=264 + Set gtmtypes("shmpool_buff_hdr",265,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_rip_wait_tn" + Set gtmtypes("shmpool_buff_hdr",265,"off")=2960 + Set gtmtypes("shmpool_buff_hdr",265,"len")=8 + Set gtmtypes("shmpool_buff_hdr",265,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_rip_wait_tn")=265 + Set gtmtypes("shmpool_buff_hdr",266,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn" + Set gtmtypes("shmpool_buff_hdr",266,"off")=2968 + Set gtmtypes("shmpool_buff_hdr",266,"len")=8 + Set gtmtypes("shmpool_buff_hdr",266,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtyripwait_tn")=266 + Set gtmtypes("shmpool_buff_hdr",267,"name")="shmpool_buff_hdr.shadow_file_header.wcb_gds_rundown_tn" + Set gtmtypes("shmpool_buff_hdr",267,"off")=2976 + Set gtmtypes("shmpool_buff_hdr",267,"len")=8 + Set gtmtypes("shmpool_buff_hdr",267,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_gds_rundown_tn")=267 + Set gtmtypes("shmpool_buff_hdr",268,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wcs_flu1_tn" + Set gtmtypes("shmpool_buff_hdr",268,"off")=2984 + Set gtmtypes("shmpool_buff_hdr",268,"len")=8 + Set gtmtypes("shmpool_buff_hdr",268,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wcs_flu1_tn")=268 + Set gtmtypes("shmpool_buff_hdr",269,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mu_back_tn" + Set gtmtypes("shmpool_buff_hdr",269,"off")=2992 + Set gtmtypes("shmpool_buff_hdr",269,"len")=8 + Set gtmtypes("shmpool_buff_hdr",269,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mu_back_tn")=269 + Set gtmtypes("shmpool_buff_hdr",270,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn" + Set gtmtypes("shmpool_buff_hdr",270,"off")=3000 + Set gtmtypes("shmpool_buff_hdr",270,"len")=8 + Set gtmtypes("shmpool_buff_hdr",270,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirty_invcr_tn")=270 + Set gtmtypes("shmpool_buff_hdr",271,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn" + Set gtmtypes("shmpool_buff_hdr",271,"off")=3008 + Set gtmtypes("shmpool_buff_hdr",271,"len")=8 + Set gtmtypes("shmpool_buff_hdr",271,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_wtfini_fail_tn")=271 + Set gtmtypes("shmpool_buff_hdr",272,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_twin_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",272,"off")=3016 + Set gtmtypes("shmpool_buff_hdr",272,"len")=8 + Set gtmtypes("shmpool_buff_hdr",272,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_twin_stuck_tn")=272 + Set gtmtypes("shmpool_buff_hdr",273,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_wrt_latch_stuck_tn" + Set gtmtypes("shmpool_buff_hdr",273,"off")=3024 + Set gtmtypes("shmpool_buff_hdr",273,"len")=8 + Set gtmtypes("shmpool_buff_hdr",273,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_wrt_latch_stuck_tn")=273 + Set gtmtypes("shmpool_buff_hdr",274,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_now_crit_tn" + Set gtmtypes("shmpool_buff_hdr",274,"off")=3032 + Set gtmtypes("shmpool_buff_hdr",274,"len")=8 + Set gtmtypes("shmpool_buff_hdr",274,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_now_crit_tn")=274 + Set gtmtypes("shmpool_buff_hdr",275,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn" + Set gtmtypes("shmpool_buff_hdr",275,"off")=3040 + Set gtmtypes("shmpool_buff_hdr",275,"len")=8 + Set gtmtypes("shmpool_buff_hdr",275,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_tn")=275 + Set gtmtypes("shmpool_buff_hdr",276,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn" + Set gtmtypes("shmpool_buff_hdr",276,"off")=3048 + Set gtmtypes("shmpool_buff_hdr",276,"len")=8 + Set gtmtypes("shmpool_buff_hdr",276,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_tn")=276 + Set gtmtypes("shmpool_buff_hdr",277,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn" + Set gtmtypes("shmpool_buff_hdr",277,"off")=3056 + Set gtmtypes("shmpool_buff_hdr",277,"len")=8 + Set gtmtypes("shmpool_buff_hdr",277,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch1_tn")=277 + Set gtmtypes("shmpool_buff_hdr",278,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn" + Set gtmtypes("shmpool_buff_hdr",278,"off")=3064 + Set gtmtypes("shmpool_buff_hdr",278,"len")=8 + Set gtmtypes("shmpool_buff_hdr",278,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch2_tn")=278 + Set gtmtypes("shmpool_buff_hdr",279,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn" + Set gtmtypes("shmpool_buff_hdr",279,"off")=3072 + Set gtmtypes("shmpool_buff_hdr",279,"len")=8 + Set gtmtypes("shmpool_buff_hdr",279,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch3_tn")=279 + Set gtmtypes("shmpool_buff_hdr",280,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn" + Set gtmtypes("shmpool_buff_hdr",280,"off")=3080 + Set gtmtypes("shmpool_buff_hdr",280,"len")=8 + Set gtmtypes("shmpool_buff_hdr",280,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_tn")=280 + Set gtmtypes("shmpool_buff_hdr",281,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn" + Set gtmtypes("shmpool_buff_hdr",281,"off")=3088 + Set gtmtypes("shmpool_buff_hdr",281,"len")=8 + Set gtmtypes("shmpool_buff_hdr",281,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_tn")=281 + Set gtmtypes("shmpool_buff_hdr",282,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn" + Set gtmtypes("shmpool_buff_hdr",282,"off")=3096 + Set gtmtypes("shmpool_buff_hdr",282,"len")=8 + Set gtmtypes("shmpool_buff_hdr",282,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_tn")=282 + Set gtmtypes("shmpool_buff_hdr",283,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn" + Set gtmtypes("shmpool_buff_hdr",283,"off")=3104 + Set gtmtypes("shmpool_buff_hdr",283,"len")=8 + Set gtmtypes("shmpool_buff_hdr",283,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_tn")=283 + Set gtmtypes("shmpool_buff_hdr",284,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn" + Set gtmtypes("shmpool_buff_hdr",284,"off")=3112 + Set gtmtypes("shmpool_buff_hdr",284,"len")=8 + Set gtmtypes("shmpool_buff_hdr",284,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_tn")=284 + Set gtmtypes("shmpool_buff_hdr",285,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_bt_get_tn" + Set gtmtypes("shmpool_buff_hdr",285,"off")=3120 + Set gtmtypes("shmpool_buff_hdr",285,"len")=8 + Set gtmtypes("shmpool_buff_hdr",285,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_bt_get_tn")=285 + Set gtmtypes("shmpool_buff_hdr",286,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn" + Set gtmtypes("shmpool_buff_hdr",286,"off")=3128 + Set gtmtypes("shmpool_buff_hdr",286,"len")=8 + Set gtmtypes("shmpool_buff_hdr",286,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_tn")=286 + Set gtmtypes("shmpool_buff_hdr",287,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",287,"off")=3136 + Set gtmtypes("shmpool_buff_hdr",287,"len")=8 + Set gtmtypes("shmpool_buff_hdr",287,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail1_tn")=287 + Set gtmtypes("shmpool_buff_hdr",288,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",288,"off")=3144 + Set gtmtypes("shmpool_buff_hdr",288,"len")=8 + Set gtmtypes("shmpool_buff_hdr",288,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail2_tn")=288 + Set gtmtypes("shmpool_buff_hdr",289,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",289,"off")=3152 + Set gtmtypes("shmpool_buff_hdr",289,"len")=8 + Set gtmtypes("shmpool_buff_hdr",289,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail1_tn")=289 + Set gtmtypes("shmpool_buff_hdr",290,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",290,"off")=3160 + Set gtmtypes("shmpool_buff_hdr",290,"len")=8 + Set gtmtypes("shmpool_buff_hdr",290,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail2_tn")=290 + Set gtmtypes("shmpool_buff_hdr",291,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail3_tn" + Set gtmtypes("shmpool_buff_hdr",291,"off")=3168 + Set gtmtypes("shmpool_buff_hdr",291,"len")=8 + Set gtmtypes("shmpool_buff_hdr",291,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail3_tn")=291 + Set gtmtypes("shmpool_buff_hdr",292,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail4_tn" + Set gtmtypes("shmpool_buff_hdr",292,"off")=3176 + Set gtmtypes("shmpool_buff_hdr",292,"len")=8 + Set gtmtypes("shmpool_buff_hdr",292,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail4_tn")=292 + Set gtmtypes("shmpool_buff_hdr",293,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail1_tn" + Set gtmtypes("shmpool_buff_hdr",293,"off")=3184 + Set gtmtypes("shmpool_buff_hdr",293,"len")=8 + Set gtmtypes("shmpool_buff_hdr",293,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail1_tn")=293 + Set gtmtypes("shmpool_buff_hdr",294,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail2_tn" + Set gtmtypes("shmpool_buff_hdr",294,"off")=3192 + Set gtmtypes("shmpool_buff_hdr",294,"len")=8 + Set gtmtypes("shmpool_buff_hdr",294,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail2_tn")=294 + Set gtmtypes("shmpool_buff_hdr",295,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail3_tn" + Set gtmtypes("shmpool_buff_hdr",295,"off")=3200 + Set gtmtypes("shmpool_buff_hdr",295,"len")=8 + Set gtmtypes("shmpool_buff_hdr",295,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail3_tn")=295 + Set gtmtypes("shmpool_buff_hdr",296,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail4_tn" + Set gtmtypes("shmpool_buff_hdr",296,"off")=3208 + Set gtmtypes("shmpool_buff_hdr",296,"len")=8 + Set gtmtypes("shmpool_buff_hdr",296,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail4_tn")=296 + Set gtmtypes("shmpool_buff_hdr",297,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn" + Set gtmtypes("shmpool_buff_hdr",297,"off")=3216 + Set gtmtypes("shmpool_buff_hdr",297,"len")=8 + Set gtmtypes("shmpool_buff_hdr",297,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck1_tn")=297 + Set gtmtypes("shmpool_buff_hdr",298,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn" + Set gtmtypes("shmpool_buff_hdr",298,"off")=3224 + Set gtmtypes("shmpool_buff_hdr",298,"len")=8 + Set gtmtypes("shmpool_buff_hdr",298,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck2_tn")=298 + Set gtmtypes("shmpool_buff_hdr",299,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn" + Set gtmtypes("shmpool_buff_hdr",299,"off")=3232 + Set gtmtypes("shmpool_buff_hdr",299,"len")=8 + Set gtmtypes("shmpool_buff_hdr",299,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_tn")=299 + Set gtmtypes("shmpool_buff_hdr",300,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_syncio_tn" + Set gtmtypes("shmpool_buff_hdr",300,"off")=3240 + Set gtmtypes("shmpool_buff_hdr",300,"len")=8 + Set gtmtypes("shmpool_buff_hdr",300,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_syncio_tn")=300 + Set gtmtypes("shmpool_buff_hdr",301,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_asyncio_tn" + Set gtmtypes("shmpool_buff_hdr",301,"off")=3248 + Set gtmtypes("shmpool_buff_hdr",301,"len")=8 + Set gtmtypes("shmpool_buff_hdr",301,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_asyncio_tn")=301 + Set gtmtypes("shmpool_buff_hdr",302,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_refmt_harvests_tn" + Set gtmtypes("shmpool_buff_hdr",302,"off")=3256 + Set gtmtypes("shmpool_buff_hdr",302,"len")=8 + Set gtmtypes("shmpool_buff_hdr",302,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_refmt_harvests_tn")=302 + Set gtmtypes("shmpool_buff_hdr",303,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_recovery_tn" + Set gtmtypes("shmpool_buff_hdr",303,"off")=3264 + Set gtmtypes("shmpool_buff_hdr",303,"len")=8 + Set gtmtypes("shmpool_buff_hdr",303,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_recovery_tn")=303 + Set gtmtypes("shmpool_buff_hdr",304,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_blkd_by_sdc_tn" + Set gtmtypes("shmpool_buff_hdr",304,"off")=3272 + Set gtmtypes("shmpool_buff_hdr",304,"len")=8 + Set gtmtypes("shmpool_buff_hdr",304,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_blkd_by_sdc_tn")=304 + Set gtmtypes("shmpool_buff_hdr",305,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_alloc_bbflush_tn" + Set gtmtypes("shmpool_buff_hdr",305,"off")=3280 + Set gtmtypes("shmpool_buff_hdr",305,"len")=8 + Set gtmtypes("shmpool_buff_hdr",305,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_alloc_bbflush_tn")=305 + Set gtmtypes("shmpool_buff_hdr",306,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_replaced_tn" + Set gtmtypes("shmpool_buff_hdr",306,"off")=3288 + Set gtmtypes("shmpool_buff_hdr",306,"len")=8 + Set gtmtypes("shmpool_buff_hdr",306,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_replaced_tn")=306 + Set gtmtypes("shmpool_buff_hdr",307,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_io_complete_tn" + Set gtmtypes("shmpool_buff_hdr",307,"off")=3296 + Set gtmtypes("shmpool_buff_hdr",307,"len")=8 + Set gtmtypes("shmpool_buff_hdr",307,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_io_complete_tn")=307 + Set gtmtypes("shmpool_buff_hdr",308,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_kept_tn" + Set gtmtypes("shmpool_buff_hdr",308,"off")=3304 + Set gtmtypes("shmpool_buff_hdr",308,"len")=8 + Set gtmtypes("shmpool_buff_hdr",308,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_kept_tn")=308 + Set gtmtypes("shmpool_buff_hdr",309,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_ignored_tn" + Set gtmtypes("shmpool_buff_hdr",309,"off")=3312 + Set gtmtypes("shmpool_buff_hdr",309,"len")=8 + Set gtmtypes("shmpool_buff_hdr",309,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_ignored_tn")=309 + Set gtmtypes("shmpool_buff_hdr",310,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_freed_tn" + Set gtmtypes("shmpool_buff_hdr",310,"off")=3320 + Set gtmtypes("shmpool_buff_hdr",310,"len")=8 + Set gtmtypes("shmpool_buff_hdr",310,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_freed_tn")=310 + Set gtmtypes("shmpool_buff_hdr",311,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_kept_tn" + Set gtmtypes("shmpool_buff_hdr",311,"off")=3328 + Set gtmtypes("shmpool_buff_hdr",311,"len")=8 + Set gtmtypes("shmpool_buff_hdr",311,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_kept_tn")=311 + Set gtmtypes("shmpool_buff_hdr",312,"name")="shmpool_buff_hdr.shadow_file_header.active_lvl_trigger_tn" + Set gtmtypes("shmpool_buff_hdr",312,"off")=3336 + Set gtmtypes("shmpool_buff_hdr",312,"len")=8 + Set gtmtypes("shmpool_buff_hdr",312,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.active_lvl_trigger_tn")=312 + Set gtmtypes("shmpool_buff_hdr",313,"name")="shmpool_buff_hdr.shadow_file_header.new_buff_tn" + Set gtmtypes("shmpool_buff_hdr",313,"off")=3344 + Set gtmtypes("shmpool_buff_hdr",313,"len")=8 + Set gtmtypes("shmpool_buff_hdr",313,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.new_buff_tn")=313 + Set gtmtypes("shmpool_buff_hdr",314,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_in_crit_tn" + Set gtmtypes("shmpool_buff_hdr",314,"off")=3352 + Set gtmtypes("shmpool_buff_hdr",314,"len")=8 + Set gtmtypes("shmpool_buff_hdr",314,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_in_crit_tn")=314 + Set gtmtypes("shmpool_buff_hdr",315,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_no_crit_tn" + Set gtmtypes("shmpool_buff_hdr",315,"off")=3360 + Set gtmtypes("shmpool_buff_hdr",315,"len")=8 + Set gtmtypes("shmpool_buff_hdr",315,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_no_crit_tn")=315 + Set gtmtypes("shmpool_buff_hdr",316,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_pidcnt_tn" + Set gtmtypes("shmpool_buff_hdr",316,"off")=3368 + Set gtmtypes("shmpool_buff_hdr",316,"len")=8 + Set gtmtypes("shmpool_buff_hdr",316,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_pidcnt_tn")=316 + Set gtmtypes("shmpool_buff_hdr",317,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_intend_wait_tn" + Set gtmtypes("shmpool_buff_hdr",317,"off")=3376 + Set gtmtypes("shmpool_buff_hdr",317,"len")=8 + Set gtmtypes("shmpool_buff_hdr",317,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_intend_wait_tn")=317 + Set gtmtypes("shmpool_buff_hdr",318,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn" + Set gtmtypes("shmpool_buff_hdr",318,"off")=3384 + Set gtmtypes("shmpool_buff_hdr",318,"len")=8 + Set gtmtypes("shmpool_buff_hdr",318,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_tn")=318 + Set gtmtypes("shmpool_buff_hdr",319,"name")="shmpool_buff_hdr.shadow_file_header.wcb_phase2_commit_wait_tn" + Set gtmtypes("shmpool_buff_hdr",319,"off")=3392 + Set gtmtypes("shmpool_buff_hdr",319,"len")=8 + Set gtmtypes("shmpool_buff_hdr",319,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_phase2_commit_wait_tn")=319 + Set gtmtypes("shmpool_buff_hdr",320,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_calls_tn" + Set gtmtypes("shmpool_buff_hdr",320,"off")=3400 + Set gtmtypes("shmpool_buff_hdr",320,"len")=8 + Set gtmtypes("shmpool_buff_hdr",320,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_calls_tn")=320 + Set gtmtypes("shmpool_buff_hdr",321,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rip_tn" + Set gtmtypes("shmpool_buff_hdr",321,"off")=3408 + Set gtmtypes("shmpool_buff_hdr",321,"len")=8 + Set gtmtypes("shmpool_buff_hdr",321,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rip_tn")=321 + Set gtmtypes("shmpool_buff_hdr",322,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_in_tend_tn" + Set gtmtypes("shmpool_buff_hdr",322,"off")=3416 + Set gtmtypes("shmpool_buff_hdr",322,"len")=8 + Set gtmtypes("shmpool_buff_hdr",322,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_in_tend_tn")=322 + Set gtmtypes("shmpool_buff_hdr",323,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_search_blk_tn" + Set gtmtypes("shmpool_buff_hdr",323,"off")=3424 + Set gtmtypes("shmpool_buff_hdr",323,"len")=8 + Set gtmtypes("shmpool_buff_hdr",323,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_search_blk_tn")=323 + Set gtmtypes("shmpool_buff_hdr",324,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_new_rec_tn" + Set gtmtypes("shmpool_buff_hdr",324,"off")=3432 + Set gtmtypes("shmpool_buff_hdr",324,"len")=8 + Set gtmtypes("shmpool_buff_hdr",324,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_new_rec_tn")=324 + Set gtmtypes("shmpool_buff_hdr",325,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_size_tn" + Set gtmtypes("shmpool_buff_hdr",325,"off")=3440 + Set gtmtypes("shmpool_buff_hdr",325,"len")=8 + Set gtmtypes("shmpool_buff_hdr",325,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_size_tn")=325 + Set gtmtypes("shmpool_buff_hdr",326,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_cmpc_tn" + Set gtmtypes("shmpool_buff_hdr",326,"off")=3448 + Set gtmtypes("shmpool_buff_hdr",326,"len")=8 + Set gtmtypes("shmpool_buff_hdr",326,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_cmpc_tn")=326 + Set gtmtypes("shmpool_buff_hdr",327,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_fini_tn" + Set gtmtypes("shmpool_buff_hdr",327,"off")=3456 + Set gtmtypes("shmpool_buff_hdr",327,"len")=8 + Set gtmtypes("shmpool_buff_hdr",327,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_fini_tn")=327 + Set gtmtypes("shmpool_buff_hdr",328,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_split_tn" + Set gtmtypes("shmpool_buff_hdr",328,"off")=3464 + Set gtmtypes("shmpool_buff_hdr",328,"len")=8 + Set gtmtypes("shmpool_buff_hdr",328,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_split_tn")=328 + Set gtmtypes("shmpool_buff_hdr",329,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_cnt_tn" + Set gtmtypes("shmpool_buff_hdr",329,"off")=3472 + Set gtmtypes("shmpool_buff_hdr",329,"len")=8 + Set gtmtypes("shmpool_buff_hdr",329,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_cnt_tn")=329 + Set gtmtypes("shmpool_buff_hdr",330,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_nblks_tn" + Set gtmtypes("shmpool_buff_hdr",330,"off")=3480 + Set gtmtypes("shmpool_buff_hdr",330,"len")=8 + Set gtmtypes("shmpool_buff_hdr",330,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_nblks_tn")=330 + Set gtmtypes("shmpool_buff_hdr",331,"name")="shmpool_buff_hdr.shadow_file_header.bg_trc_rec_tn_filler" + Set gtmtypes("shmpool_buff_hdr",331,"off")=3488 + Set gtmtypes("shmpool_buff_hdr",331,"len")=112 + Set gtmtypes("shmpool_buff_hdr",331,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bg_trc_rec_tn_filler")=331 + Set gtmtypes("shmpool_buff_hdr",332,"name")="shmpool_buff_hdr.shadow_file_header.total_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",332,"off")=3600 + Set gtmtypes("shmpool_buff_hdr",332,"len")=4 + Set gtmtypes("shmpool_buff_hdr",332,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.total_buffer_flush_cntr")=332 + Set gtmtypes("shmpool_buff_hdr",333,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",333,"off")=3604 + Set gtmtypes("shmpool_buff_hdr",333,"len")=4 + Set gtmtypes("shmpool_buff_hdr",333,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_cntr")=333 + Set gtmtypes("shmpool_buff_hdr",334,"name")="shmpool_buff_hdr.shadow_file_header.bufct_buffer_flush_loop_cntr" + Set gtmtypes("shmpool_buff_hdr",334,"off")=3608 + Set gtmtypes("shmpool_buff_hdr",334,"len")=4 + Set gtmtypes("shmpool_buff_hdr",334,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bufct_buffer_flush_loop_cntr")=334 + Set gtmtypes("shmpool_buff_hdr",335,"name")="shmpool_buff_hdr.shadow_file_header.wrt_calls_cntr" + Set gtmtypes("shmpool_buff_hdr",335,"off")=3612 + Set gtmtypes("shmpool_buff_hdr",335,"len")=4 + Set gtmtypes("shmpool_buff_hdr",335,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_calls_cntr")=335 + Set gtmtypes("shmpool_buff_hdr",336,"name")="shmpool_buff_hdr.shadow_file_header.wrt_count_cntr" + Set gtmtypes("shmpool_buff_hdr",336,"off")=3616 + Set gtmtypes("shmpool_buff_hdr",336,"len")=4 + Set gtmtypes("shmpool_buff_hdr",336,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_count_cntr")=336 + Set gtmtypes("shmpool_buff_hdr",337,"name")="shmpool_buff_hdr.shadow_file_header.wrt_blocked_cntr" + Set gtmtypes("shmpool_buff_hdr",337,"off")=3620 + Set gtmtypes("shmpool_buff_hdr",337,"len")=4 + Set gtmtypes("shmpool_buff_hdr",337,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_blocked_cntr")=337 + Set gtmtypes("shmpool_buff_hdr",338,"name")="shmpool_buff_hdr.shadow_file_header.wrt_busy_cntr" + Set gtmtypes("shmpool_buff_hdr",338,"off")=3624 + Set gtmtypes("shmpool_buff_hdr",338,"len")=4 + Set gtmtypes("shmpool_buff_hdr",338,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_busy_cntr")=338 + Set gtmtypes("shmpool_buff_hdr",339,"name")="shmpool_buff_hdr.shadow_file_header.wrt_noblks_wrtn_cntr" + Set gtmtypes("shmpool_buff_hdr",339,"off")=3628 + Set gtmtypes("shmpool_buff_hdr",339,"len")=4 + Set gtmtypes("shmpool_buff_hdr",339,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wrt_noblks_wrtn_cntr")=339 + Set gtmtypes("shmpool_buff_hdr",340,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec1_cntr" + Set gtmtypes("shmpool_buff_hdr",340,"off")=3632 + Set gtmtypes("shmpool_buff_hdr",340,"len")=4 + Set gtmtypes("shmpool_buff_hdr",340,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec1_cntr")=340 + Set gtmtypes("shmpool_buff_hdr",341,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec2_cntr" + Set gtmtypes("shmpool_buff_hdr",341,"off")=3636 + Set gtmtypes("shmpool_buff_hdr",341,"len")=4 + Set gtmtypes("shmpool_buff_hdr",341,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec2_cntr")=341 + Set gtmtypes("shmpool_buff_hdr",342,"name")="shmpool_buff_hdr.shadow_file_header.reserved_bgtrcrec3_cntr" + Set gtmtypes("shmpool_buff_hdr",342,"off")=3640 + Set gtmtypes("shmpool_buff_hdr",342,"len")=4 + Set gtmtypes("shmpool_buff_hdr",342,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.reserved_bgtrcrec3_cntr")=342 + Set gtmtypes("shmpool_buff_hdr",343,"name")="shmpool_buff_hdr.shadow_file_header.lost_block_recovery_cntr" + Set gtmtypes("shmpool_buff_hdr",343,"off")=3644 + Set gtmtypes("shmpool_buff_hdr",343,"len")=4 + Set gtmtypes("shmpool_buff_hdr",343,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.lost_block_recovery_cntr")=343 + Set gtmtypes("shmpool_buff_hdr",344,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_onln_rlbk_cntr" + Set gtmtypes("shmpool_buff_hdr",344,"off")=3648 + Set gtmtypes("shmpool_buff_hdr",344,"len")=4 + Set gtmtypes("shmpool_buff_hdr",344,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_onln_rlbk_cntr")=344 + Set gtmtypes("shmpool_buff_hdr",345,"name")="shmpool_buff_hdr.shadow_file_header.stale_cntr" + Set gtmtypes("shmpool_buff_hdr",345,"off")=3652 + Set gtmtypes("shmpool_buff_hdr",345,"len")=4 + Set gtmtypes("shmpool_buff_hdr",345,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_cntr")=345 + Set gtmtypes("shmpool_buff_hdr",346,"name")="shmpool_buff_hdr.shadow_file_header.starved_cntr" + Set gtmtypes("shmpool_buff_hdr",346,"off")=3656 + Set gtmtypes("shmpool_buff_hdr",346,"len")=4 + Set gtmtypes("shmpool_buff_hdr",346,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.starved_cntr")=346 + Set gtmtypes("shmpool_buff_hdr",347,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_started_cntr" + Set gtmtypes("shmpool_buff_hdr",347,"off")=3660 + Set gtmtypes("shmpool_buff_hdr",347,"len")=4 + Set gtmtypes("shmpool_buff_hdr",347,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_started_cntr")=347 + Set gtmtypes("shmpool_buff_hdr",348,"name")="shmpool_buff_hdr.shadow_file_header.stale_timer_pop_cntr" + Set gtmtypes("shmpool_buff_hdr",348,"off")=3664 + Set gtmtypes("shmpool_buff_hdr",348,"len")=4 + Set gtmtypes("shmpool_buff_hdr",348,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_timer_pop_cntr")=348 + Set gtmtypes("shmpool_buff_hdr",349,"name")="shmpool_buff_hdr.shadow_file_header.stale_process_defer_cntr" + Set gtmtypes("shmpool_buff_hdr",349,"off")=3668 + Set gtmtypes("shmpool_buff_hdr",349,"len")=4 + Set gtmtypes("shmpool_buff_hdr",349,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_process_defer_cntr")=349 + Set gtmtypes("shmpool_buff_hdr",350,"name")="shmpool_buff_hdr.shadow_file_header.stale_defer_processed_cntr" + Set gtmtypes("shmpool_buff_hdr",350,"off")=3672 + Set gtmtypes("shmpool_buff_hdr",350,"len")=4 + Set gtmtypes("shmpool_buff_hdr",350,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.stale_defer_processed_cntr")=350 + Set gtmtypes("shmpool_buff_hdr",351,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_cntr" + Set gtmtypes("shmpool_buff_hdr",351,"off")=3676 + Set gtmtypes("shmpool_buff_hdr",351,"len")=4 + Set gtmtypes("shmpool_buff_hdr",351,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_cntr")=351 + Set gtmtypes("shmpool_buff_hdr",352,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_loop_cntr" + Set gtmtypes("shmpool_buff_hdr",352,"off")=3680 + Set gtmtypes("shmpool_buff_hdr",352,"len")=4 + Set gtmtypes("shmpool_buff_hdr",352,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_loop_cntr")=352 + Set gtmtypes("shmpool_buff_hdr",353,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flush_retries_cntr" + Set gtmtypes("shmpool_buff_hdr",353,"off")=3684 + Set gtmtypes("shmpool_buff_hdr",353,"len")=4 + Set gtmtypes("shmpool_buff_hdr",353,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flush_retries_cntr")=353 + Set gtmtypes("shmpool_buff_hdr",354,"name")="shmpool_buff_hdr.shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr" + Set gtmtypes("shmpool_buff_hdr",354,"off")=3688 + Set gtmtypes("shmpool_buff_hdr",354,"len")=4 + Set gtmtypes("shmpool_buff_hdr",354,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.spcfc_buffer_flushed_during_lockwait_cntr")=354 + Set gtmtypes("shmpool_buff_hdr",355,"name")="shmpool_buff_hdr.shadow_file_header.tp_crit_retries_cntr" + Set gtmtypes("shmpool_buff_hdr",355,"off")=3692 + Set gtmtypes("shmpool_buff_hdr",355,"len")=4 + Set gtmtypes("shmpool_buff_hdr",355,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.tp_crit_retries_cntr")=355 + Set gtmtypes("shmpool_buff_hdr",356,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_flush_dirty_cntr" + Set gtmtypes("shmpool_buff_hdr",356,"off")=3696 + Set gtmtypes("shmpool_buff_hdr",356,"len")=4 + Set gtmtypes("shmpool_buff_hdr",356,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_flush_dirty_cntr")=356 + Set gtmtypes("shmpool_buff_hdr",357,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_rip_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",357,"off")=3700 + Set gtmtypes("shmpool_buff_hdr",357,"len")=4 + Set gtmtypes("shmpool_buff_hdr",357,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_rip_wait_cntr")=357 + Set gtmtypes("shmpool_buff_hdr",358,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_buf_owner_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",358,"off")=3704 + Set gtmtypes("shmpool_buff_hdr",358,"len")=4 + Set gtmtypes("shmpool_buff_hdr",358,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_buf_owner_stuck_cntr")=358 + Set gtmtypes("shmpool_buff_hdr",359,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_out_of_design_cntr" + Set gtmtypes("shmpool_buff_hdr",359,"off")=3708 + Set gtmtypes("shmpool_buff_hdr",359,"len")=4 + Set gtmtypes("shmpool_buff_hdr",359,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_out_of_design_cntr")=359 + Set gtmtypes("shmpool_buff_hdr",360,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_buf_owner_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",360,"off")=3712 + Set gtmtypes("shmpool_buff_hdr",360,"len")=4 + Set gtmtypes("shmpool_buff_hdr",360,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_buf_owner_stuck_cntr")=360 + Set gtmtypes("shmpool_buff_hdr",361,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_out_of_design_cntr" + Set gtmtypes("shmpool_buff_hdr",361,"off")=3716 + Set gtmtypes("shmpool_buff_hdr",361,"len")=4 + Set gtmtypes("shmpool_buff_hdr",361,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_out_of_design_cntr")=361 + Set gtmtypes("shmpool_buff_hdr",362,"name")="shmpool_buff_hdr.shadow_file_header.bt_put_flush_dirty_cntr" + Set gtmtypes("shmpool_buff_hdr",362,"off")=3720 + Set gtmtypes("shmpool_buff_hdr",362,"len")=4 + Set gtmtypes("shmpool_buff_hdr",362,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bt_put_flush_dirty_cntr")=362 + Set gtmtypes("shmpool_buff_hdr",363,"name")="shmpool_buff_hdr.shadow_file_header.mlock_wakeups_cntr" + Set gtmtypes("shmpool_buff_hdr",363,"off")=3724 + Set gtmtypes("shmpool_buff_hdr",363,"len")=4 + Set gtmtypes("shmpool_buff_hdr",363,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mlock_wakeups_cntr")=363 + Set gtmtypes("shmpool_buff_hdr",364,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_recover_invoked_cntr" + Set gtmtypes("shmpool_buff_hdr",364,"off")=3728 + Set gtmtypes("shmpool_buff_hdr",364,"len")=4 + Set gtmtypes("shmpool_buff_hdr",364,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_recover_invoked_cntr")=364 + Set gtmtypes("shmpool_buff_hdr",365,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_verify_passed_cntr" + Set gtmtypes("shmpool_buff_hdr",365,"off")=3732 + Set gtmtypes("shmpool_buff_hdr",365,"len")=4 + Set gtmtypes("shmpool_buff_hdr",365,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_verify_passed_cntr")=365 + Set gtmtypes("shmpool_buff_hdr",366,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",366,"off")=3736 + Set gtmtypes("shmpool_buff_hdr",366,"len")=4 + Set gtmtypes("shmpool_buff_hdr",366,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_getn_invalid_blk_cntr")=366 + Set gtmtypes("shmpool_buff_hdr",367,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",367,"off")=3740 + Set gtmtypes("shmpool_buff_hdr",367,"len")=4 + Set gtmtypes("shmpool_buff_hdr",367,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_db_csh_get_invalid_blk_cntr")=367 + Set gtmtypes("shmpool_buff_hdr",368,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr" + Set gtmtypes("shmpool_buff_hdr",368,"off")=3744 + Set gtmtypes("shmpool_buff_hdr",368,"len")=4 + Set gtmtypes("shmpool_buff_hdr",368,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_loopexceed_cntr")=368 + Set gtmtypes("shmpool_buff_hdr",369,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr" + Set gtmtypes("shmpool_buff_hdr",369,"off")=3748 + Set gtmtypes("shmpool_buff_hdr",369,"len")=4 + Set gtmtypes("shmpool_buff_hdr",369,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_getn_wcsstarvewrt_cntr")=369 + Set gtmtypes("shmpool_buff_hdr",370,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_db_csh_get_cntr" + Set gtmtypes("shmpool_buff_hdr",370,"off")=3752 + Set gtmtypes("shmpool_buff_hdr",370,"len")=4 + Set gtmtypes("shmpool_buff_hdr",370,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_db_csh_get_cntr")=370 + Set gtmtypes("shmpool_buff_hdr",371,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr" + Set gtmtypes("shmpool_buff_hdr",371,"off")=3756 + Set gtmtypes("shmpool_buff_hdr",371,"len")=4 + Set gtmtypes("shmpool_buff_hdr",371,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_wcsgetspace_cntr")=371 + Set gtmtypes("shmpool_buff_hdr",372,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_t1_cntr" + Set gtmtypes("shmpool_buff_hdr",372,"off")=3760 + Set gtmtypes("shmpool_buff_hdr",372,"len")=4 + Set gtmtypes("shmpool_buff_hdr",372,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_t1_cntr")=372 + Set gtmtypes("shmpool_buff_hdr",373,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_bitmap_cntr" + Set gtmtypes("shmpool_buff_hdr",373,"off")=3764 + Set gtmtypes("shmpool_buff_hdr",373,"len")=4 + Set gtmtypes("shmpool_buff_hdr",373,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_bitmap_cntr")=373 + Set gtmtypes("shmpool_buff_hdr",374,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr" + Set gtmtypes("shmpool_buff_hdr",374,"off")=3768 + Set gtmtypes("shmpool_buff_hdr",374,"len")=4 + Set gtmtypes("shmpool_buff_hdr",374,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_cwset_cntr")=374 + Set gtmtypes("shmpool_buff_hdr",375,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr" + Set gtmtypes("shmpool_buff_hdr",375,"off")=3772 + Set gtmtypes("shmpool_buff_hdr",375,"len")=4 + Set gtmtypes("shmpool_buff_hdr",375,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_jnl_wcsflu_cntr")=375 + Set gtmtypes("shmpool_buff_hdr",376,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist_cntr" + Set gtmtypes("shmpool_buff_hdr",376,"off")=3776 + Set gtmtypes("shmpool_buff_hdr",376,"len")=4 + Set gtmtypes("shmpool_buff_hdr",376,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist_cntr")=376 + Set gtmtypes("shmpool_buff_hdr",377,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",377,"off")=3780 + Set gtmtypes("shmpool_buff_hdr",377,"len")=4 + Set gtmtypes("shmpool_buff_hdr",377,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nullbt_cntr")=377 + Set gtmtypes("shmpool_buff_hdr",378,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",378,"off")=3784 + Set gtmtypes("shmpool_buff_hdr",378,"len")=4 + Set gtmtypes("shmpool_buff_hdr",378,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_hist1_nonnullbt_cntr")=378 + Set gtmtypes("shmpool_buff_hdr",379,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",379,"off")=3788 + Set gtmtypes("shmpool_buff_hdr",379,"len")=4 + Set gtmtypes("shmpool_buff_hdr",379,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nullbt_cntr")=379 + Set gtmtypes("shmpool_buff_hdr",380,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",380,"off")=3792 + Set gtmtypes("shmpool_buff_hdr",380,"len")=4 + Set gtmtypes("shmpool_buff_hdr",380,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_bitmap_nonnullbt_cntr")=380 + Set gtmtypes("shmpool_buff_hdr",381,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr" + Set gtmtypes("shmpool_buff_hdr",381,"off")=3796 + Set gtmtypes("shmpool_buff_hdr",381,"len")=4 + Set gtmtypes("shmpool_buff_hdr",381,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_cwset_cntr")=381 + Set gtmtypes("shmpool_buff_hdr",382,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr" + Set gtmtypes("shmpool_buff_hdr",382,"off")=3800 + Set gtmtypes("shmpool_buff_hdr",382,"len")=4 + Set gtmtypes("shmpool_buff_hdr",382,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_jnl_wcsflu_cntr")=382 + Set gtmtypes("shmpool_buff_hdr",383,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_get_too_many_loops_cntr" + Set gtmtypes("shmpool_buff_hdr",383,"off")=3804 + Set gtmtypes("shmpool_buff_hdr",383,"len")=4 + Set gtmtypes("shmpool_buff_hdr",383,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_get_too_many_loops_cntr")=383 + Set gtmtypes("shmpool_buff_hdr",384,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",384,"off")=3808 + Set gtmtypes("shmpool_buff_hdr",384,"len")=4 + Set gtmtypes("shmpool_buff_hdr",384,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nullbt_cntr")=384 + Set gtmtypes("shmpool_buff_hdr",385,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr" + Set gtmtypes("shmpool_buff_hdr",385,"off")=3812 + Set gtmtypes("shmpool_buff_hdr",385,"len")=4 + Set gtmtypes("shmpool_buff_hdr",385,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tpckh_hist1_nonnullbt_cntr")=385 + Set gtmtypes("shmpool_buff_hdr",386,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_lost_cntr" + Set gtmtypes("shmpool_buff_hdr",386,"off")=3816 + Set gtmtypes("shmpool_buff_hdr",386,"len")=4 + Set gtmtypes("shmpool_buff_hdr",386,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_lost_cntr")=386 + Set gtmtypes("shmpool_buff_hdr",387,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",387,"off")=3820 + Set gtmtypes("shmpool_buff_hdr",387,"len")=4 + Set gtmtypes("shmpool_buff_hdr",387,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_stuck_cntr")=387 + Set gtmtypes("shmpool_buff_hdr",388,"name")="shmpool_buff_hdr.shadow_file_header.jnl_blocked_writer_blocked_cntr" + Set gtmtypes("shmpool_buff_hdr",388,"off")=3824 + Set gtmtypes("shmpool_buff_hdr",388,"len")=4 + Set gtmtypes("shmpool_buff_hdr",388,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.jnl_blocked_writer_blocked_cntr")=388 + Set gtmtypes("shmpool_buff_hdr",389,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsyncs_cntr" + Set gtmtypes("shmpool_buff_hdr",389,"off")=3828 + Set gtmtypes("shmpool_buff_hdr",389,"len")=4 + Set gtmtypes("shmpool_buff_hdr",389,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsyncs_cntr")=389 + Set gtmtypes("shmpool_buff_hdr",390,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_tries_cntr" + Set gtmtypes("shmpool_buff_hdr",390,"off")=3832 + Set gtmtypes("shmpool_buff_hdr",390,"len")=4 + Set gtmtypes("shmpool_buff_hdr",390,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_tries_cntr")=390 + Set gtmtypes("shmpool_buff_hdr",391,"name")="shmpool_buff_hdr.shadow_file_header.n_jnl_fsync_recovers_cntr" + Set gtmtypes("shmpool_buff_hdr",391,"off")=3836 + Set gtmtypes("shmpool_buff_hdr",391,"len")=4 + Set gtmtypes("shmpool_buff_hdr",391,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_jnl_fsync_recovers_cntr")=391 + Set gtmtypes("shmpool_buff_hdr",392,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_cntr" + Set gtmtypes("shmpool_buff_hdr",392,"off")=3840 + Set gtmtypes("shmpool_buff_hdr",392,"len")=4 + Set gtmtypes("shmpool_buff_hdr",392,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_cntr")=392 + Set gtmtypes("shmpool_buff_hdr",393,"name")="shmpool_buff_hdr.shadow_file_header.n_db_fsyncs_in_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",393,"off")=3844 + Set gtmtypes("shmpool_buff_hdr",393,"len")=4 + Set gtmtypes("shmpool_buff_hdr",393,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_fsyncs_in_crit_cntr")=393 + Set gtmtypes("shmpool_buff_hdr",394,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_timers_cntr" + Set gtmtypes("shmpool_buff_hdr",394,"off")=3848 + Set gtmtypes("shmpool_buff_hdr",394,"len")=4 + Set gtmtypes("shmpool_buff_hdr",394,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_timers_cntr")=394 + Set gtmtypes("shmpool_buff_hdr",395,"name")="shmpool_buff_hdr.shadow_file_header.n_dbsync_writes_cntr" + Set gtmtypes("shmpool_buff_hdr",395,"off")=3852 + Set gtmtypes("shmpool_buff_hdr",395,"len")=4 + Set gtmtypes("shmpool_buff_hdr",395,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_dbsync_writes_cntr")=395 + Set gtmtypes("shmpool_buff_hdr",396,"name")="shmpool_buff_hdr.shadow_file_header.mutex_queue_full_cntr" + Set gtmtypes("shmpool_buff_hdr",396,"off")=3856 + Set gtmtypes("shmpool_buff_hdr",396,"len")=4 + Set gtmtypes("shmpool_buff_hdr",396,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.mutex_queue_full_cntr")=396 + Set gtmtypes("shmpool_buff_hdr",397,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bt_put_cntr" + Set gtmtypes("shmpool_buff_hdr",397,"off")=3860 + Set gtmtypes("shmpool_buff_hdr",397,"len")=4 + Set gtmtypes("shmpool_buff_hdr",397,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bt_put_cntr")=397 + Set gtmtypes("shmpool_buff_hdr",398,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mutex_salvage_cntr" + Set gtmtypes("shmpool_buff_hdr",398,"off")=3864 + Set gtmtypes("shmpool_buff_hdr",398,"len")=4 + Set gtmtypes("shmpool_buff_hdr",398,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mutex_salvage_cntr")=398 + Set gtmtypes("shmpool_buff_hdr",399,"name")="shmpool_buff_hdr.shadow_file_header.wcb_tp_grab_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",399,"off")=3868 + Set gtmtypes("shmpool_buff_hdr",399,"len")=4 + Set gtmtypes("shmpool_buff_hdr",399,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_tp_grab_crit_cntr")=399 + Set gtmtypes("shmpool_buff_hdr",400,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",400,"off")=3872 + Set gtmtypes("shmpool_buff_hdr",400,"len")=4 + Set gtmtypes("shmpool_buff_hdr",400,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_nocr_invcr_cntr")=400 + Set gtmtypes("shmpool_buff_hdr",401,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",401,"off")=3876 + Set gtmtypes("shmpool_buff_hdr",401,"len")=4 + Set gtmtypes("shmpool_buff_hdr",401,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_cr_invcr_cntr")=401 + Set gtmtypes("shmpool_buff_hdr",402,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_rip_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",402,"off")=3880 + Set gtmtypes("shmpool_buff_hdr",402,"len")=4 + Set gtmtypes("shmpool_buff_hdr",402,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_rip_wait_cntr")=402 + Set gtmtypes("shmpool_buff_hdr",403,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr" + Set gtmtypes("shmpool_buff_hdr",403,"off")=3884 + Set gtmtypes("shmpool_buff_hdr",403,"len")=4 + Set gtmtypes("shmpool_buff_hdr",403,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtyripwait_cntr")=403 + Set gtmtypes("shmpool_buff_hdr",404,"name")="shmpool_buff_hdr.shadow_file_header.wcb_gds_rundown_cntr" + Set gtmtypes("shmpool_buff_hdr",404,"off")=3888 + Set gtmtypes("shmpool_buff_hdr",404,"len")=4 + Set gtmtypes("shmpool_buff_hdr",404,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_gds_rundown_cntr")=404 + Set gtmtypes("shmpool_buff_hdr",405,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wcs_flu1_cntr" + Set gtmtypes("shmpool_buff_hdr",405,"off")=3892 + Set gtmtypes("shmpool_buff_hdr",405,"len")=4 + Set gtmtypes("shmpool_buff_hdr",405,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wcs_flu1_cntr")=405 + Set gtmtypes("shmpool_buff_hdr",406,"name")="shmpool_buff_hdr.shadow_file_header.wcb_mu_back_cntr" + Set gtmtypes("shmpool_buff_hdr",406,"off")=3896 + Set gtmtypes("shmpool_buff_hdr",406,"len")=4 + Set gtmtypes("shmpool_buff_hdr",406,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_mu_back_cntr")=406 + Set gtmtypes("shmpool_buff_hdr",407,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr" + Set gtmtypes("shmpool_buff_hdr",407,"off")=3900 + Set gtmtypes("shmpool_buff_hdr",407,"len")=4 + Set gtmtypes("shmpool_buff_hdr",407,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirty_invcr_cntr")=407 + Set gtmtypes("shmpool_buff_hdr",408,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr" + Set gtmtypes("shmpool_buff_hdr",408,"off")=3904 + Set gtmtypes("shmpool_buff_hdr",408,"len")=4 + Set gtmtypes("shmpool_buff_hdr",408,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_wtfini_fail_cntr")=408 + Set gtmtypes("shmpool_buff_hdr",409,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",409,"off")=3908 + Set gtmtypes("shmpool_buff_hdr",409,"len")=4 + Set gtmtypes("shmpool_buff_hdr",409,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_twin_stuck_cntr")=409 + Set gtmtypes("shmpool_buff_hdr",410,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr" + Set gtmtypes("shmpool_buff_hdr",410,"off")=3912 + Set gtmtypes("shmpool_buff_hdr",410,"len")=4 + Set gtmtypes("shmpool_buff_hdr",410,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_getn_wrt_latch_stuck_cntr")=410 + Set gtmtypes("shmpool_buff_hdr",411,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",411,"off")=3916 + Set gtmtypes("shmpool_buff_hdr",411,"len")=4 + Set gtmtypes("shmpool_buff_hdr",411,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_now_crit_cntr")=411 + Set gtmtypes("shmpool_buff_hdr",412,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr" + Set gtmtypes("shmpool_buff_hdr",412,"off")=3920 + Set gtmtypes("shmpool_buff_hdr",412,"len")=4 + Set gtmtypes("shmpool_buff_hdr",412,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index1_cntr")=412 + Set gtmtypes("shmpool_buff_hdr",413,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr" + Set gtmtypes("shmpool_buff_hdr",413,"off")=3924 + Set gtmtypes("shmpool_buff_hdr",413,"len")=4 + Set gtmtypes("shmpool_buff_hdr",413,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_qread_bad_bt_index2_cntr")=413 + Set gtmtypes("shmpool_buff_hdr",414,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr" + Set gtmtypes("shmpool_buff_hdr",414,"off")=3928 + Set gtmtypes("shmpool_buff_hdr",414,"len")=4 + Set gtmtypes("shmpool_buff_hdr",414,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch1_cntr")=414 + Set gtmtypes("shmpool_buff_hdr",415,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr" + Set gtmtypes("shmpool_buff_hdr",415,"off")=3932 + Set gtmtypes("shmpool_buff_hdr",415,"len")=4 + Set gtmtypes("shmpool_buff_hdr",415,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch2_cntr")=415 + Set gtmtypes("shmpool_buff_hdr",416,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr" + Set gtmtypes("shmpool_buff_hdr",416,"off")=3936 + Set gtmtypes("shmpool_buff_hdr",416,"len")=4 + Set gtmtypes("shmpool_buff_hdr",416,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_t_end_crbtmismatch3_cntr")=416 + Set gtmtypes("shmpool_buff_hdr",417,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr" + Set gtmtypes("shmpool_buff_hdr",417,"off")=3940 + Set gtmtypes("shmpool_buff_hdr",417,"len")=4 + Set gtmtypes("shmpool_buff_hdr",417,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch1_cntr")=417 + Set gtmtypes("shmpool_buff_hdr",418,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr" + Set gtmtypes("shmpool_buff_hdr",418,"off")=3944 + Set gtmtypes("shmpool_buff_hdr",418,"len")=4 + Set gtmtypes("shmpool_buff_hdr",418,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch2_cntr")=418 + Set gtmtypes("shmpool_buff_hdr",419,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr" + Set gtmtypes("shmpool_buff_hdr",419,"off")=3948 + Set gtmtypes("shmpool_buff_hdr",419,"len")=4 + Set gtmtypes("shmpool_buff_hdr",419,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_tp_tend_crbtmismatch3_cntr")=419 + Set gtmtypes("shmpool_buff_hdr",420,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr" + Set gtmtypes("shmpool_buff_hdr",420,"off")=3952 + Set gtmtypes("shmpool_buff_hdr",420,"len")=4 + Set gtmtypes("shmpool_buff_hdr",420,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtstart_bad_cr_cntr")=420 + Set gtmtypes("shmpool_buff_hdr",421,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr" + Set gtmtypes("shmpool_buff_hdr",421,"off")=3956 + Set gtmtypes("shmpool_buff_hdr",421,"len")=4 + Set gtmtypes("shmpool_buff_hdr",421,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_wtfini_bad_cr_cntr")=421 + Set gtmtypes("shmpool_buff_hdr",422,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_bt_get_cntr" + Set gtmtypes("shmpool_buff_hdr",422,"off")=3960 + Set gtmtypes("shmpool_buff_hdr",422,"len")=4 + Set gtmtypes("shmpool_buff_hdr",422,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_bt_get_cntr")=422 + Set gtmtypes("shmpool_buff_hdr",423,"name")="shmpool_buff_hdr.shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr" + Set gtmtypes("shmpool_buff_hdr",423,"off")=3964 + Set gtmtypes("shmpool_buff_hdr",423,"len")=4 + Set gtmtypes("shmpool_buff_hdr",423,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wc_blocked_wcs_cdb_sc_final_retry_cntr")=423 + Set gtmtypes("shmpool_buff_hdr",424,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",424,"off")=3968 + Set gtmtypes("shmpool_buff_hdr",424,"len")=4 + Set gtmtypes("shmpool_buff_hdr",424,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail1_cntr")=424 + Set gtmtypes("shmpool_buff_hdr",425,"name")="shmpool_buff_hdr.shadow_file_header.wcb_bg_update_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",425,"off")=3972 + Set gtmtypes("shmpool_buff_hdr",425,"len")=4 + Set gtmtypes("shmpool_buff_hdr",425,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_bg_update_lckfail2_cntr")=425 + Set gtmtypes("shmpool_buff_hdr",426,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",426,"off")=3976 + Set gtmtypes("shmpool_buff_hdr",426,"len")=4 + Set gtmtypes("shmpool_buff_hdr",426,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail1_cntr")=426 + Set gtmtypes("shmpool_buff_hdr",427,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",427,"off")=3980 + Set gtmtypes("shmpool_buff_hdr",427,"len")=4 + Set gtmtypes("shmpool_buff_hdr",427,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail2_cntr")=427 + Set gtmtypes("shmpool_buff_hdr",428,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail3_cntr" + Set gtmtypes("shmpool_buff_hdr",428,"off")=3984 + Set gtmtypes("shmpool_buff_hdr",428,"len")=4 + Set gtmtypes("shmpool_buff_hdr",428,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail3_cntr")=428 + Set gtmtypes("shmpool_buff_hdr",429,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtstart_lckfail4_cntr" + Set gtmtypes("shmpool_buff_hdr",429,"off")=3988 + Set gtmtypes("shmpool_buff_hdr",429,"len")=4 + Set gtmtypes("shmpool_buff_hdr",429,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtstart_lckfail4_cntr")=429 + Set gtmtypes("shmpool_buff_hdr",430,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail1_cntr" + Set gtmtypes("shmpool_buff_hdr",430,"off")=3992 + Set gtmtypes("shmpool_buff_hdr",430,"len")=4 + Set gtmtypes("shmpool_buff_hdr",430,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail1_cntr")=430 + Set gtmtypes("shmpool_buff_hdr",431,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail2_cntr" + Set gtmtypes("shmpool_buff_hdr",431,"off")=3996 + Set gtmtypes("shmpool_buff_hdr",431,"len")=4 + Set gtmtypes("shmpool_buff_hdr",431,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail2_cntr")=431 + Set gtmtypes("shmpool_buff_hdr",432,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail3_cntr" + Set gtmtypes("shmpool_buff_hdr",432,"off")=4000 + Set gtmtypes("shmpool_buff_hdr",432,"len")=4 + Set gtmtypes("shmpool_buff_hdr",432,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail3_cntr")=432 + Set gtmtypes("shmpool_buff_hdr",433,"name")="shmpool_buff_hdr.shadow_file_header.wcb_wtfini_lckfail4_cntr" + Set gtmtypes("shmpool_buff_hdr",433,"off")=4004 + Set gtmtypes("shmpool_buff_hdr",433,"len")=4 + Set gtmtypes("shmpool_buff_hdr",433,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_wtfini_lckfail4_cntr")=433 + Set gtmtypes("shmpool_buff_hdr",434,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr" + Set gtmtypes("shmpool_buff_hdr",434,"off")=4008 + Set gtmtypes("shmpool_buff_hdr",434,"len")=4 + Set gtmtypes("shmpool_buff_hdr",434,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck1_cntr")=434 + Set gtmtypes("shmpool_buff_hdr",435,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr" + Set gtmtypes("shmpool_buff_hdr",435,"off")=4012 + Set gtmtypes("shmpool_buff_hdr",435,"len")=4 + Set gtmtypes("shmpool_buff_hdr",435,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_dirtystuck2_cntr")=435 + Set gtmtypes("shmpool_buff_hdr",436,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr" + Set gtmtypes("shmpool_buff_hdr",436,"off")=4016 + Set gtmtypes("shmpool_buff_hdr",436,"len")=4 + Set gtmtypes("shmpool_buff_hdr",436,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_wbuf_dqd_cntr")=436 + Set gtmtypes("shmpool_buff_hdr",437,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_syncio_cntr" + Set gtmtypes("shmpool_buff_hdr",437,"off")=4020 + Set gtmtypes("shmpool_buff_hdr",437,"len")=4 + Set gtmtypes("shmpool_buff_hdr",437,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_syncio_cntr")=437 + Set gtmtypes("shmpool_buff_hdr",438,"name")="shmpool_buff_hdr.shadow_file_header.dwngrd_refmts_asyncio_cntr" + Set gtmtypes("shmpool_buff_hdr",438,"off")=4024 + Set gtmtypes("shmpool_buff_hdr",438,"len")=4 + Set gtmtypes("shmpool_buff_hdr",438,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.dwngrd_refmts_asyncio_cntr")=438 + Set gtmtypes("shmpool_buff_hdr",439,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_refmt_harvests_cntr" + Set gtmtypes("shmpool_buff_hdr",439,"off")=4028 + Set gtmtypes("shmpool_buff_hdr",439,"len")=4 + Set gtmtypes("shmpool_buff_hdr",439,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_refmt_harvests_cntr")=439 + Set gtmtypes("shmpool_buff_hdr",440,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_recovery_cntr" + Set gtmtypes("shmpool_buff_hdr",440,"off")=4032 + Set gtmtypes("shmpool_buff_hdr",440,"len")=4 + Set gtmtypes("shmpool_buff_hdr",440,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_recovery_cntr")=440 + Set gtmtypes("shmpool_buff_hdr",441,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_blkd_by_sdc_cntr" + Set gtmtypes("shmpool_buff_hdr",441,"off")=4036 + Set gtmtypes("shmpool_buff_hdr",441,"len")=4 + Set gtmtypes("shmpool_buff_hdr",441,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_blkd_by_sdc_cntr")=441 + Set gtmtypes("shmpool_buff_hdr",442,"name")="shmpool_buff_hdr.shadow_file_header.shmpool_alloc_bbflush_cntr" + Set gtmtypes("shmpool_buff_hdr",442,"off")=4040 + Set gtmtypes("shmpool_buff_hdr",442,"len")=4 + Set gtmtypes("shmpool_buff_hdr",442,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.shmpool_alloc_bbflush_cntr")=442 + Set gtmtypes("shmpool_buff_hdr",443,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_replaced_cntr" + Set gtmtypes("shmpool_buff_hdr",443,"off")=4044 + Set gtmtypes("shmpool_buff_hdr",443,"len")=4 + Set gtmtypes("shmpool_buff_hdr",443,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_replaced_cntr")=443 + Set gtmtypes("shmpool_buff_hdr",444,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_released_io_complete_cntr" + Set gtmtypes("shmpool_buff_hdr",444,"off")=4048 + Set gtmtypes("shmpool_buff_hdr",444,"len")=4 + Set gtmtypes("shmpool_buff_hdr",444,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_released_io_complete_cntr")=444 + Set gtmtypes("shmpool_buff_hdr",445,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_kept_cntr" + Set gtmtypes("shmpool_buff_hdr",445,"off")=4052 + Set gtmtypes("shmpool_buff_hdr",445,"len")=4 + Set gtmtypes("shmpool_buff_hdr",445,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_kept_cntr")=445 + Set gtmtypes("shmpool_buff_hdr",446,"name")="shmpool_buff_hdr.shadow_file_header.refmt_hvst_blk_ignored_cntr" + Set gtmtypes("shmpool_buff_hdr",446,"off")=4056 + Set gtmtypes("shmpool_buff_hdr",446,"len")=4 + Set gtmtypes("shmpool_buff_hdr",446,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_hvst_blk_ignored_cntr")=446 + Set gtmtypes("shmpool_buff_hdr",447,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_freed_cntr" + Set gtmtypes("shmpool_buff_hdr",447,"off")=4060 + Set gtmtypes("shmpool_buff_hdr",447,"len")=4 + Set gtmtypes("shmpool_buff_hdr",447,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_freed_cntr")=447 + Set gtmtypes("shmpool_buff_hdr",448,"name")="shmpool_buff_hdr.shadow_file_header.refmt_blk_chk_blk_kept_cntr" + Set gtmtypes("shmpool_buff_hdr",448,"off")=4064 + Set gtmtypes("shmpool_buff_hdr",448,"len")=4 + Set gtmtypes("shmpool_buff_hdr",448,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.refmt_blk_chk_blk_kept_cntr")=448 + Set gtmtypes("shmpool_buff_hdr",449,"name")="shmpool_buff_hdr.shadow_file_header.active_lvl_trigger_cntr" + Set gtmtypes("shmpool_buff_hdr",449,"off")=4068 + Set gtmtypes("shmpool_buff_hdr",449,"len")=4 + Set gtmtypes("shmpool_buff_hdr",449,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.active_lvl_trigger_cntr")=449 + Set gtmtypes("shmpool_buff_hdr",450,"name")="shmpool_buff_hdr.shadow_file_header.new_buff_cntr" + Set gtmtypes("shmpool_buff_hdr",450,"off")=4072 + Set gtmtypes("shmpool_buff_hdr",450,"len")=4 + Set gtmtypes("shmpool_buff_hdr",450,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.new_buff_cntr")=450 + Set gtmtypes("shmpool_buff_hdr",451,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",451,"off")=4076 + Set gtmtypes("shmpool_buff_hdr",451,"len")=4 + Set gtmtypes("shmpool_buff_hdr",451,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_in_crit_cntr")=451 + Set gtmtypes("shmpool_buff_hdr",452,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr" + Set gtmtypes("shmpool_buff_hdr",452,"off")=4080 + Set gtmtypes("shmpool_buff_hdr",452,"len")=4 + Set gtmtypes("shmpool_buff_hdr",452,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_sleep_no_crit_cntr")=452 + Set gtmtypes("shmpool_buff_hdr",453,"name")="shmpool_buff_hdr.shadow_file_header.phase2_commit_wait_pidcnt_cntr" + Set gtmtypes("shmpool_buff_hdr",453,"off")=4084 + Set gtmtypes("shmpool_buff_hdr",453,"len")=4 + Set gtmtypes("shmpool_buff_hdr",453,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.phase2_commit_wait_pidcnt_cntr")=453 + Set gtmtypes("shmpool_buff_hdr",454,"name")="shmpool_buff_hdr.shadow_file_header.wcb_t_end_sysops_intend_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",454,"off")=4088 + Set gtmtypes("shmpool_buff_hdr",454,"len")=4 + Set gtmtypes("shmpool_buff_hdr",454,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_t_end_sysops_intend_wait_cntr")=454 + Set gtmtypes("shmpool_buff_hdr",455,"name")="shmpool_buff_hdr.shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr" + Set gtmtypes("shmpool_buff_hdr",455,"off")=4092 + Set gtmtypes("shmpool_buff_hdr",455,"len")=4 + Set gtmtypes("shmpool_buff_hdr",455,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_secshr_db_clnup_phase2_clnup_cntr")=455 + Set gtmtypes("shmpool_buff_hdr",456,"name")="shmpool_buff_hdr.shadow_file_header.wcb_phase2_commit_wait_cntr" + Set gtmtypes("shmpool_buff_hdr",456,"off")=4096 + Set gtmtypes("shmpool_buff_hdr",456,"len")=4 + Set gtmtypes("shmpool_buff_hdr",456,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.wcb_phase2_commit_wait_cntr")=456 + Set gtmtypes("shmpool_buff_hdr",457,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_calls_cntr" + Set gtmtypes("shmpool_buff_hdr",457,"off")=4100 + Set gtmtypes("shmpool_buff_hdr",457,"len")=4 + Set gtmtypes("shmpool_buff_hdr",457,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_calls_cntr")=457 + Set gtmtypes("shmpool_buff_hdr",458,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rip_cntr" + Set gtmtypes("shmpool_buff_hdr",458,"off")=4104 + Set gtmtypes("shmpool_buff_hdr",458,"len")=4 + Set gtmtypes("shmpool_buff_hdr",458,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rip_cntr")=458 + Set gtmtypes("shmpool_buff_hdr",459,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_in_tend_cntr" + Set gtmtypes("shmpool_buff_hdr",459,"off")=4108 + Set gtmtypes("shmpool_buff_hdr",459,"len")=4 + Set gtmtypes("shmpool_buff_hdr",459,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_in_tend_cntr")=459 + Set gtmtypes("shmpool_buff_hdr",460,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_search_blk_cntr" + Set gtmtypes("shmpool_buff_hdr",460,"off")=4112 + Set gtmtypes("shmpool_buff_hdr",460,"len")=4 + Set gtmtypes("shmpool_buff_hdr",460,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_search_blk_cntr")=460 + Set gtmtypes("shmpool_buff_hdr",461,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_new_rec_cntr" + Set gtmtypes("shmpool_buff_hdr",461,"off")=4116 + Set gtmtypes("shmpool_buff_hdr",461,"len")=4 + Set gtmtypes("shmpool_buff_hdr",461,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_new_rec_cntr")=461 + Set gtmtypes("shmpool_buff_hdr",462,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_size_cntr" + Set gtmtypes("shmpool_buff_hdr",462,"off")=4120 + Set gtmtypes("shmpool_buff_hdr",462,"len")=4 + Set gtmtypes("shmpool_buff_hdr",462,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_size_cntr")=462 + Set gtmtypes("shmpool_buff_hdr",463,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_rec_cmpc_cntr" + Set gtmtypes("shmpool_buff_hdr",463,"off")=4124 + Set gtmtypes("shmpool_buff_hdr",463,"len")=4 + Set gtmtypes("shmpool_buff_hdr",463,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_rec_cmpc_cntr")=463 + Set gtmtypes("shmpool_buff_hdr",464,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_fini_cntr" + Set gtmtypes("shmpool_buff_hdr",464,"off")=4128 + Set gtmtypes("shmpool_buff_hdr",464,"len")=4 + Set gtmtypes("shmpool_buff_hdr",464,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_fini_cntr")=464 + Set gtmtypes("shmpool_buff_hdr",465,"name")="shmpool_buff_hdr.shadow_file_header.recompute_upd_array_blk_split_cntr" + Set gtmtypes("shmpool_buff_hdr",465,"off")=4132 + Set gtmtypes("shmpool_buff_hdr",465,"len")=4 + Set gtmtypes("shmpool_buff_hdr",465,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.recompute_upd_array_blk_split_cntr")=465 + Set gtmtypes("shmpool_buff_hdr",466,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_cnt_cntr" + Set gtmtypes("shmpool_buff_hdr",466,"off")=4136 + Set gtmtypes("shmpool_buff_hdr",466,"len")=4 + Set gtmtypes("shmpool_buff_hdr",466,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_cnt_cntr")=466 + Set gtmtypes("shmpool_buff_hdr",467,"name")="shmpool_buff_hdr.shadow_file_header.t_qread_ripsleep_nblks_cntr" + Set gtmtypes("shmpool_buff_hdr",467,"off")=4140 + Set gtmtypes("shmpool_buff_hdr",467,"len")=4 + Set gtmtypes("shmpool_buff_hdr",467,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.t_qread_ripsleep_nblks_cntr")=467 + Set gtmtypes("shmpool_buff_hdr",468,"name")="shmpool_buff_hdr.shadow_file_header.bg_trc_rec_cntr_filler" + Set gtmtypes("shmpool_buff_hdr",468,"off")=4144 + Set gtmtypes("shmpool_buff_hdr",468,"len")=56 + Set gtmtypes("shmpool_buff_hdr",468,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.bg_trc_rec_cntr_filler")=468 + Set gtmtypes("shmpool_buff_hdr",469,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches" + Set gtmtypes("shmpool_buff_hdr",469,"off")=4200 + Set gtmtypes("shmpool_buff_hdr",469,"len")=8 + Set gtmtypes("shmpool_buff_hdr",469,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches")=469 + Set gtmtypes("shmpool_buff_hdr",470,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches.curr_count" + Set gtmtypes("shmpool_buff_hdr",470,"off")=4200 + Set gtmtypes("shmpool_buff_hdr",470,"len")=4 + Set gtmtypes("shmpool_buff_hdr",470,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches.curr_count")=470 + Set gtmtypes("shmpool_buff_hdr",471,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srches.cumul_count" + Set gtmtypes("shmpool_buff_hdr",471,"off")=4204 + Set gtmtypes("shmpool_buff_hdr",471,"len")=4 + Set gtmtypes("shmpool_buff_hdr",471,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srches.cumul_count")=471 + Set gtmtypes("shmpool_buff_hdr",472,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues" + Set gtmtypes("shmpool_buff_hdr",472,"off")=4208 + Set gtmtypes("shmpool_buff_hdr",472,"len")=8 + Set gtmtypes("shmpool_buff_hdr",472,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues")=472 + Set gtmtypes("shmpool_buff_hdr",473,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues.curr_count" + Set gtmtypes("shmpool_buff_hdr",473,"off")=4208 + Set gtmtypes("shmpool_buff_hdr",473,"len")=4 + Set gtmtypes("shmpool_buff_hdr",473,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues.curr_count")=473 + Set gtmtypes("shmpool_buff_hdr",474,"name")="shmpool_buff_hdr.shadow_file_header.n_gvcst_srch_clues.cumul_count" + Set gtmtypes("shmpool_buff_hdr",474,"off")=4212 + Set gtmtypes("shmpool_buff_hdr",474,"len")=4 + Set gtmtypes("shmpool_buff_hdr",474,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_gvcst_srch_clues.cumul_count")=474 + Set gtmtypes("shmpool_buff_hdr",475,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head" + Set gtmtypes("shmpool_buff_hdr",475,"off")=4216 + Set gtmtypes("shmpool_buff_hdr",475,"len")=8 + Set gtmtypes("shmpool_buff_hdr",475,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head")=475 + Set gtmtypes("shmpool_buff_hdr",476,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head.curr_count" + Set gtmtypes("shmpool_buff_hdr",476,"off")=4216 + Set gtmtypes("shmpool_buff_hdr",476,"len")=4 + Set gtmtypes("shmpool_buff_hdr",476,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head.curr_count")=476 + Set gtmtypes("shmpool_buff_hdr",477,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_head.cumul_count" + Set gtmtypes("shmpool_buff_hdr",477,"off")=4220 + Set gtmtypes("shmpool_buff_hdr",477,"len")=4 + Set gtmtypes("shmpool_buff_hdr",477,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_head.cumul_count")=477 + Set gtmtypes("shmpool_buff_hdr",478,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same" + Set gtmtypes("shmpool_buff_hdr",478,"off")=4224 + Set gtmtypes("shmpool_buff_hdr",478,"len")=8 + Set gtmtypes("shmpool_buff_hdr",478,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same")=478 + Set gtmtypes("shmpool_buff_hdr",479,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same.curr_count" + Set gtmtypes("shmpool_buff_hdr",479,"off")=4224 + Set gtmtypes("shmpool_buff_hdr",479,"len")=4 + Set gtmtypes("shmpool_buff_hdr",479,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same.curr_count")=479 + Set gtmtypes("shmpool_buff_hdr",480,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_same.cumul_count" + Set gtmtypes("shmpool_buff_hdr",480,"off")=4228 + Set gtmtypes("shmpool_buff_hdr",480,"len")=4 + Set gtmtypes("shmpool_buff_hdr",480,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_same.cumul_count")=480 + Set gtmtypes("shmpool_buff_hdr",481,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail" + Set gtmtypes("shmpool_buff_hdr",481,"off")=4232 + Set gtmtypes("shmpool_buff_hdr",481,"len")=8 + Set gtmtypes("shmpool_buff_hdr",481,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail")=481 + Set gtmtypes("shmpool_buff_hdr",482,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail.curr_count" + Set gtmtypes("shmpool_buff_hdr",482,"off")=4232 + Set gtmtypes("shmpool_buff_hdr",482,"len")=4 + Set gtmtypes("shmpool_buff_hdr",482,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail.curr_count")=482 + Set gtmtypes("shmpool_buff_hdr",483,"name")="shmpool_buff_hdr.shadow_file_header.n_clue_used_tail.cumul_count" + Set gtmtypes("shmpool_buff_hdr",483,"off")=4236 + Set gtmtypes("shmpool_buff_hdr",483,"len")=4 + Set gtmtypes("shmpool_buff_hdr",483,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_clue_used_tail.cumul_count")=483 + Set gtmtypes("shmpool_buff_hdr",484,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads" + Set gtmtypes("shmpool_buff_hdr",484,"off")=4240 + Set gtmtypes("shmpool_buff_hdr",484,"len")=8 + Set gtmtypes("shmpool_buff_hdr",484,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads")=484 + Set gtmtypes("shmpool_buff_hdr",485,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads.curr_count" + Set gtmtypes("shmpool_buff_hdr",485,"off")=4240 + Set gtmtypes("shmpool_buff_hdr",485,"len")=4 + Set gtmtypes("shmpool_buff_hdr",485,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads.curr_count")=485 + Set gtmtypes("shmpool_buff_hdr",486,"name")="shmpool_buff_hdr.shadow_file_header.n_t_qreads.cumul_count" + Set gtmtypes("shmpool_buff_hdr",486,"off")=4244 + Set gtmtypes("shmpool_buff_hdr",486,"len")=4 + Set gtmtypes("shmpool_buff_hdr",486,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_t_qreads.cumul_count")=486 + Set gtmtypes("shmpool_buff_hdr",487,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads" + Set gtmtypes("shmpool_buff_hdr",487,"off")=4248 + Set gtmtypes("shmpool_buff_hdr",487,"len")=8 + Set gtmtypes("shmpool_buff_hdr",487,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads")=487 + Set gtmtypes("shmpool_buff_hdr",488,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads.curr_count" + Set gtmtypes("shmpool_buff_hdr",488,"off")=4248 + Set gtmtypes("shmpool_buff_hdr",488,"len")=4 + Set gtmtypes("shmpool_buff_hdr",488,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads.curr_count")=488 + Set gtmtypes("shmpool_buff_hdr",489,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_reads.cumul_count" + Set gtmtypes("shmpool_buff_hdr",489,"off")=4252 + Set gtmtypes("shmpool_buff_hdr",489,"len")=4 + Set gtmtypes("shmpool_buff_hdr",489,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_reads.cumul_count")=489 + Set gtmtypes("shmpool_buff_hdr",490,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates" + Set gtmtypes("shmpool_buff_hdr",490,"off")=4256 + Set gtmtypes("shmpool_buff_hdr",490,"len")=8 + Set gtmtypes("shmpool_buff_hdr",490,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates")=490 + Set gtmtypes("shmpool_buff_hdr",491,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates.curr_count" + Set gtmtypes("shmpool_buff_hdr",491,"off")=4256 + Set gtmtypes("shmpool_buff_hdr",491,"len")=4 + Set gtmtypes("shmpool_buff_hdr",491,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates.curr_count")=491 + Set gtmtypes("shmpool_buff_hdr",492,"name")="shmpool_buff_hdr.shadow_file_header.n_bgmm_updates.cumul_count" + Set gtmtypes("shmpool_buff_hdr",492,"off")=4260 + Set gtmtypes("shmpool_buff_hdr",492,"len")=4 + Set gtmtypes("shmpool_buff_hdr",492,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bgmm_updates.cumul_count")=492 + Set gtmtypes("shmpool_buff_hdr",493,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes" + Set gtmtypes("shmpool_buff_hdr",493,"off")=4264 + Set gtmtypes("shmpool_buff_hdr",493,"len")=8 + Set gtmtypes("shmpool_buff_hdr",493,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes")=493 + Set gtmtypes("shmpool_buff_hdr",494,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes.curr_count" + Set gtmtypes("shmpool_buff_hdr",494,"off")=4264 + Set gtmtypes("shmpool_buff_hdr",494,"len")=4 + Set gtmtypes("shmpool_buff_hdr",494,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes.curr_count")=494 + Set gtmtypes("shmpool_buff_hdr",495,"name")="shmpool_buff_hdr.shadow_file_header.unused_dsk_writes.cumul_count" + Set gtmtypes("shmpool_buff_hdr",495,"off")=4268 + Set gtmtypes("shmpool_buff_hdr",495,"len")=4 + Set gtmtypes("shmpool_buff_hdr",495,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.unused_dsk_writes.cumul_count")=495 + Set gtmtypes("shmpool_buff_hdr",496,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates" + Set gtmtypes("shmpool_buff_hdr",496,"off")=4272 + Set gtmtypes("shmpool_buff_hdr",496,"len")=8 + Set gtmtypes("shmpool_buff_hdr",496,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates")=496 + Set gtmtypes("shmpool_buff_hdr",497,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates.curr_count" + Set gtmtypes("shmpool_buff_hdr",497,"off")=4272 + Set gtmtypes("shmpool_buff_hdr",497,"len")=4 + Set gtmtypes("shmpool_buff_hdr",497,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates.curr_count")=497 + Set gtmtypes("shmpool_buff_hdr",498,"name")="shmpool_buff_hdr.shadow_file_header.n_bg_update_creates.cumul_count" + Set gtmtypes("shmpool_buff_hdr",498,"off")=4276 + Set gtmtypes("shmpool_buff_hdr",498,"len")=4 + Set gtmtypes("shmpool_buff_hdr",498,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_bg_update_creates.cumul_count")=498 + Set gtmtypes("shmpool_buff_hdr",499,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns" + Set gtmtypes("shmpool_buff_hdr",499,"off")=4280 + Set gtmtypes("shmpool_buff_hdr",499,"len")=8 + Set gtmtypes("shmpool_buff_hdr",499,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns")=499 + Set gtmtypes("shmpool_buff_hdr",500,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns.curr_count" + Set gtmtypes("shmpool_buff_hdr",500,"off")=4280 + Set gtmtypes("shmpool_buff_hdr",500,"len")=4 + Set gtmtypes("shmpool_buff_hdr",500,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns.curr_count")=500 + Set gtmtypes("shmpool_buff_hdr",501,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getns.cumul_count" + Set gtmtypes("shmpool_buff_hdr",501,"off")=4284 + Set gtmtypes("shmpool_buff_hdr",501,"len")=4 + Set gtmtypes("shmpool_buff_hdr",501,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getns.cumul_count")=501 + Set gtmtypes("shmpool_buff_hdr",502,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt" + Set gtmtypes("shmpool_buff_hdr",502,"off")=4288 + Set gtmtypes("shmpool_buff_hdr",502,"len")=8 + Set gtmtypes("shmpool_buff_hdr",502,"type")="db_csh_acct_rec" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt")=502 + Set gtmtypes("shmpool_buff_hdr",503,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt.curr_count" + Set gtmtypes("shmpool_buff_hdr",503,"off")=4288 + Set gtmtypes("shmpool_buff_hdr",503,"len")=4 + Set gtmtypes("shmpool_buff_hdr",503,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt.curr_count")=503 + Set gtmtypes("shmpool_buff_hdr",504,"name")="shmpool_buff_hdr.shadow_file_header.n_db_csh_getn_lcnt.cumul_count" + Set gtmtypes("shmpool_buff_hdr",504,"off")=4292 + Set gtmtypes("shmpool_buff_hdr",504,"len")=4 + Set gtmtypes("shmpool_buff_hdr",504,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.n_db_csh_getn_lcnt.cumul_count")=504 + Set gtmtypes("shmpool_buff_hdr",505,"name")="shmpool_buff_hdr.shadow_file_header.db_csh_acct_rec_filler_4k" + Set gtmtypes("shmpool_buff_hdr",505,"off")=4296 + Set gtmtypes("shmpool_buff_hdr",505,"len")=152 + Set gtmtypes("shmpool_buff_hdr",505,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_csh_acct_rec_filler_4k")=505 + Set gtmtypes("shmpool_buff_hdr",506,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec" + Set gtmtypes("shmpool_buff_hdr",506,"off")=4448 + Set gtmtypes("shmpool_buff_hdr",506,"len")=464 + Set gtmtypes("shmpool_buff_hdr",506,"type")="gvstats_rec_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec")=506 + Set gtmtypes("shmpool_buff_hdr",507,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_set" + Set gtmtypes("shmpool_buff_hdr",507,"off")=4448 + Set gtmtypes("shmpool_buff_hdr",507,"len")=8 + Set gtmtypes("shmpool_buff_hdr",507,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_set")=507 + Set gtmtypes("shmpool_buff_hdr",508,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_kill" + Set gtmtypes("shmpool_buff_hdr",508,"off")=4456 + Set gtmtypes("shmpool_buff_hdr",508,"len")=8 + Set gtmtypes("shmpool_buff_hdr",508,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_kill")=508 + Set gtmtypes("shmpool_buff_hdr",509,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_get" + Set gtmtypes("shmpool_buff_hdr",509,"off")=4464 + Set gtmtypes("shmpool_buff_hdr",509,"len")=8 + Set gtmtypes("shmpool_buff_hdr",509,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_get")=509 + Set gtmtypes("shmpool_buff_hdr",510,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_data" + Set gtmtypes("shmpool_buff_hdr",510,"off")=4472 + Set gtmtypes("shmpool_buff_hdr",510,"len")=8 + Set gtmtypes("shmpool_buff_hdr",510,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_data")=510 + Set gtmtypes("shmpool_buff_hdr",511,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_order" + Set gtmtypes("shmpool_buff_hdr",511,"off")=4480 + Set gtmtypes("shmpool_buff_hdr",511,"len")=8 + Set gtmtypes("shmpool_buff_hdr",511,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_order")=511 + Set gtmtypes("shmpool_buff_hdr",512,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_zprev" + Set gtmtypes("shmpool_buff_hdr",512,"off")=4488 + Set gtmtypes("shmpool_buff_hdr",512,"len")=8 + Set gtmtypes("shmpool_buff_hdr",512,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_zprev")=512 + Set gtmtypes("shmpool_buff_hdr",513,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_query" + Set gtmtypes("shmpool_buff_hdr",513,"off")=4496 + Set gtmtypes("shmpool_buff_hdr",513,"len")=8 + Set gtmtypes("shmpool_buff_hdr",513,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_query")=513 + Set gtmtypes("shmpool_buff_hdr",514,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_lock_success" + Set gtmtypes("shmpool_buff_hdr",514,"off")=4504 + Set gtmtypes("shmpool_buff_hdr",514,"len")=8 + Set gtmtypes("shmpool_buff_hdr",514,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_lock_success")=514 + Set gtmtypes("shmpool_buff_hdr",515,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_lock_fail" + Set gtmtypes("shmpool_buff_hdr",515,"off")=4512 + Set gtmtypes("shmpool_buff_hdr",515,"len")=8 + Set gtmtypes("shmpool_buff_hdr",515,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_lock_fail")=515 + Set gtmtypes("shmpool_buff_hdr",516,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.db_curr_tn" + Set gtmtypes("shmpool_buff_hdr",516,"off")=4520 + Set gtmtypes("shmpool_buff_hdr",516,"len")=8 + Set gtmtypes("shmpool_buff_hdr",516,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.db_curr_tn")=516 + Set gtmtypes("shmpool_buff_hdr",517,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_dsk_read" + Set gtmtypes("shmpool_buff_hdr",517,"off")=4528 + Set gtmtypes("shmpool_buff_hdr",517,"len")=8 + Set gtmtypes("shmpool_buff_hdr",517,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_dsk_read")=517 + Set gtmtypes("shmpool_buff_hdr",518,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_dsk_write" + Set gtmtypes("shmpool_buff_hdr",518,"off")=4536 + Set gtmtypes("shmpool_buff_hdr",518,"len")=8 + Set gtmtypes("shmpool_buff_hdr",518,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_dsk_write")=518 + Set gtmtypes("shmpool_buff_hdr",519,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("shmpool_buff_hdr",519,"off")=4544 + Set gtmtypes("shmpool_buff_hdr",519,"len")=8 + Set gtmtypes("shmpool_buff_hdr",519,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_readwrite")=519 + Set gtmtypes("shmpool_buff_hdr",520,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_readonly" + Set gtmtypes("shmpool_buff_hdr",520,"off")=4552 + Set gtmtypes("shmpool_buff_hdr",520,"len")=8 + Set gtmtypes("shmpool_buff_hdr",520,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_readonly")=520 + Set gtmtypes("shmpool_buff_hdr",521,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("shmpool_buff_hdr",521,"off")=4560 + Set gtmtypes("shmpool_buff_hdr",521,"len")=8 + Set gtmtypes("shmpool_buff_hdr",521,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_blkwrite")=521 + Set gtmtypes("shmpool_buff_hdr",522,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_blkread" + Set gtmtypes("shmpool_buff_hdr",522,"off")=4568 + Set gtmtypes("shmpool_buff_hdr",522,"len")=8 + Set gtmtypes("shmpool_buff_hdr",522,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_blkread")=522 + Set gtmtypes("shmpool_buff_hdr",523,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("shmpool_buff_hdr",523,"off")=4576 + Set gtmtypes("shmpool_buff_hdr",523,"len")=8 + Set gtmtypes("shmpool_buff_hdr",523,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_0")=523 + Set gtmtypes("shmpool_buff_hdr",524,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("shmpool_buff_hdr",524,"off")=4584 + Set gtmtypes("shmpool_buff_hdr",524,"len")=8 + Set gtmtypes("shmpool_buff_hdr",524,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_1")=524 + Set gtmtypes("shmpool_buff_hdr",525,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("shmpool_buff_hdr",525,"off")=4592 + Set gtmtypes("shmpool_buff_hdr",525,"len")=8 + Set gtmtypes("shmpool_buff_hdr",525,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_2")=525 + Set gtmtypes("shmpool_buff_hdr",526,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("shmpool_buff_hdr",526,"off")=4600 + Set gtmtypes("shmpool_buff_hdr",526,"len")=8 + Set gtmtypes("shmpool_buff_hdr",526,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_nontp_retries_3")=526 + Set gtmtypes("shmpool_buff_hdr",527,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_readwrite" + Set gtmtypes("shmpool_buff_hdr",527,"off")=4608 + Set gtmtypes("shmpool_buff_hdr",527,"len")=8 + Set gtmtypes("shmpool_buff_hdr",527,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_readwrite")=527 + Set gtmtypes("shmpool_buff_hdr",528,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_readonly" + Set gtmtypes("shmpool_buff_hdr",528,"off")=4616 + Set gtmtypes("shmpool_buff_hdr",528,"len")=8 + Set gtmtypes("shmpool_buff_hdr",528,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_readonly")=528 + Set gtmtypes("shmpool_buff_hdr",529,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_rolledback" + Set gtmtypes("shmpool_buff_hdr",529,"off")=4624 + Set gtmtypes("shmpool_buff_hdr",529,"len")=8 + Set gtmtypes("shmpool_buff_hdr",529,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_rolledback")=529 + Set gtmtypes("shmpool_buff_hdr",530,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("shmpool_buff_hdr",530,"off")=4632 + Set gtmtypes("shmpool_buff_hdr",530,"len")=8 + Set gtmtypes("shmpool_buff_hdr",530,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_blkwrite")=530 + Set gtmtypes("shmpool_buff_hdr",531,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_blkread" + Set gtmtypes("shmpool_buff_hdr",531,"off")=4640 + Set gtmtypes("shmpool_buff_hdr",531,"len")=8 + Set gtmtypes("shmpool_buff_hdr",531,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_blkread")=531 + Set gtmtypes("shmpool_buff_hdr",532,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("shmpool_buff_hdr",532,"off")=4648 + Set gtmtypes("shmpool_buff_hdr",532,"len")=8 + Set gtmtypes("shmpool_buff_hdr",532,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_0")=532 + Set gtmtypes("shmpool_buff_hdr",533,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("shmpool_buff_hdr",533,"off")=4656 + Set gtmtypes("shmpool_buff_hdr",533,"len")=8 + Set gtmtypes("shmpool_buff_hdr",533,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_1")=533 + Set gtmtypes("shmpool_buff_hdr",534,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("shmpool_buff_hdr",534,"off")=4664 + Set gtmtypes("shmpool_buff_hdr",534,"len")=8 + Set gtmtypes("shmpool_buff_hdr",534,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_2")=534 + Set gtmtypes("shmpool_buff_hdr",535,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("shmpool_buff_hdr",535,"off")=4672 + Set gtmtypes("shmpool_buff_hdr",535,"len")=8 + Set gtmtypes("shmpool_buff_hdr",535,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_3")=535 + Set gtmtypes("shmpool_buff_hdr",536,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("shmpool_buff_hdr",536,"off")=4680 + Set gtmtypes("shmpool_buff_hdr",536,"len")=8 + Set gtmtypes("shmpool_buff_hdr",536,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_tot_retries_4")=536 + Set gtmtypes("shmpool_buff_hdr",537,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("shmpool_buff_hdr",537,"off")=4688 + Set gtmtypes("shmpool_buff_hdr",537,"len")=8 + Set gtmtypes("shmpool_buff_hdr",537,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_0")=537 + Set gtmtypes("shmpool_buff_hdr",538,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("shmpool_buff_hdr",538,"off")=4696 + Set gtmtypes("shmpool_buff_hdr",538,"len")=8 + Set gtmtypes("shmpool_buff_hdr",538,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_1")=538 + Set gtmtypes("shmpool_buff_hdr",539,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("shmpool_buff_hdr",539,"off")=4704 + Set gtmtypes("shmpool_buff_hdr",539,"len")=8 + Set gtmtypes("shmpool_buff_hdr",539,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_2")=539 + Set gtmtypes("shmpool_buff_hdr",540,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("shmpool_buff_hdr",540,"off")=4712 + Set gtmtypes("shmpool_buff_hdr",540,"len")=8 + Set gtmtypes("shmpool_buff_hdr",540,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_3")=540 + Set gtmtypes("shmpool_buff_hdr",541,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("shmpool_buff_hdr",541,"off")=4720 + Set gtmtypes("shmpool_buff_hdr",541,"len")=8 + Set gtmtypes("shmpool_buff_hdr",541,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_tp_cnflct_retries_4")=541 + Set gtmtypes("shmpool_buff_hdr",542,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_ztrigger" + Set gtmtypes("shmpool_buff_hdr",542,"off")=4728 + Set gtmtypes("shmpool_buff_hdr",542,"len")=8 + Set gtmtypes("shmpool_buff_hdr",542,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_ztrigger")=542 + Set gtmtypes("shmpool_buff_hdr",543,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_flush" + Set gtmtypes("shmpool_buff_hdr",543,"off")=4736 + Set gtmtypes("shmpool_buff_hdr",543,"len")=8 + Set gtmtypes("shmpool_buff_hdr",543,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_flush")=543 + Set gtmtypes("shmpool_buff_hdr",544,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_fsync" + Set gtmtypes("shmpool_buff_hdr",544,"off")=4744 + Set gtmtypes("shmpool_buff_hdr",544,"len")=8 + Set gtmtypes("shmpool_buff_hdr",544,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_fsync")=544 + Set gtmtypes("shmpool_buff_hdr",545,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_flush" + Set gtmtypes("shmpool_buff_hdr",545,"off")=4752 + Set gtmtypes("shmpool_buff_hdr",545,"len")=8 + Set gtmtypes("shmpool_buff_hdr",545,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_flush")=545 + Set gtmtypes("shmpool_buff_hdr",546,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_fsync" + Set gtmtypes("shmpool_buff_hdr",546,"off")=4760 + Set gtmtypes("shmpool_buff_hdr",546,"len")=8 + Set gtmtypes("shmpool_buff_hdr",546,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_fsync")=546 + Set gtmtypes("shmpool_buff_hdr",547,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("shmpool_buff_hdr",547,"off")=4768 + Set gtmtypes("shmpool_buff_hdr",547,"len")=8 + Set gtmtypes("shmpool_buff_hdr",547,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jbuff_bytes")=547 + Set gtmtypes("shmpool_buff_hdr",548,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jfile_bytes" + Set gtmtypes("shmpool_buff_hdr",548,"off")=4776 + Set gtmtypes("shmpool_buff_hdr",548,"len")=8 + Set gtmtypes("shmpool_buff_hdr",548,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jfile_bytes")=548 + Set gtmtypes("shmpool_buff_hdr",549,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jfile_writes" + Set gtmtypes("shmpool_buff_hdr",549,"off")=4784 + Set gtmtypes("shmpool_buff_hdr",549,"len")=8 + Set gtmtypes("shmpool_buff_hdr",549,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jfile_writes")=549 + Set gtmtypes("shmpool_buff_hdr",550,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_logical" + Set gtmtypes("shmpool_buff_hdr",550,"off")=4792 + Set gtmtypes("shmpool_buff_hdr",550,"len")=8 + Set gtmtypes("shmpool_buff_hdr",550,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_logical")=550 + Set gtmtypes("shmpool_buff_hdr",551,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_pblk" + Set gtmtypes("shmpool_buff_hdr",551,"off")=4800 + Set gtmtypes("shmpool_buff_hdr",551,"len")=8 + Set gtmtypes("shmpool_buff_hdr",551,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_pblk")=551 + Set gtmtypes("shmpool_buff_hdr",552,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("shmpool_buff_hdr",552,"off")=4808 + Set gtmtypes("shmpool_buff_hdr",552,"len")=8 + Set gtmtypes("shmpool_buff_hdr",552,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_epoch_regular")=552 + Set gtmtypes("shmpool_buff_hdr",553,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("shmpool_buff_hdr",553,"off")=4816 + Set gtmtypes("shmpool_buff_hdr",553,"len")=8 + Set gtmtypes("shmpool_buff_hdr",553,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_epoch_idle")=553 + Set gtmtypes("shmpool_buff_hdr",554,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jrec_other" + Set gtmtypes("shmpool_buff_hdr",554,"off")=4824 + Set gtmtypes("shmpool_buff_hdr",554,"len")=8 + Set gtmtypes("shmpool_buff_hdr",554,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jrec_other")=554 + Set gtmtypes("shmpool_buff_hdr",555,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_jnl_extends" + Set gtmtypes("shmpool_buff_hdr",555,"off")=4832 + Set gtmtypes("shmpool_buff_hdr",555,"len")=8 + Set gtmtypes("shmpool_buff_hdr",555,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_jnl_extends")=555 + Set gtmtypes("shmpool_buff_hdr",556,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_db_extends" + Set gtmtypes("shmpool_buff_hdr",556,"off")=4840 + Set gtmtypes("shmpool_buff_hdr",556,"len")=8 + Set gtmtypes("shmpool_buff_hdr",556,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_db_extends")=556 + Set gtmtypes("shmpool_buff_hdr",557,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_success" + Set gtmtypes("shmpool_buff_hdr",557,"off")=4848 + Set gtmtypes("shmpool_buff_hdr",557,"len")=8 + Set gtmtypes("shmpool_buff_hdr",557,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_success")=557 + Set gtmtypes("shmpool_buff_hdr",558,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crits_in_epch" + Set gtmtypes("shmpool_buff_hdr",558,"off")=4856 + Set gtmtypes("shmpool_buff_hdr",558,"len")=8 + Set gtmtypes("shmpool_buff_hdr",558,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crits_in_epch")=558 + Set gtmtypes("shmpool_buff_hdr",559,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_failed" + Set gtmtypes("shmpool_buff_hdr",559,"off")=4864 + Set gtmtypes("shmpool_buff_hdr",559,"len")=8 + Set gtmtypes("shmpool_buff_hdr",559,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_failed")=559 + Set gtmtypes("shmpool_buff_hdr",560,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_failed" + Set gtmtypes("shmpool_buff_hdr",560,"off")=4872 + Set gtmtypes("shmpool_buff_hdr",560,"len")=8 + Set gtmtypes("shmpool_buff_hdr",560,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_failed")=560 + Set gtmtypes("shmpool_buff_hdr",561,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("shmpool_buff_hdr",561,"off")=4880 + Set gtmtypes("shmpool_buff_hdr",561,"len")=8 + Set gtmtypes("shmpool_buff_hdr",561,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_que_slps")=561 + Set gtmtypes("shmpool_buff_hdr",562,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_que_slps" + Set gtmtypes("shmpool_buff_hdr",562,"off")=4888 + Set gtmtypes("shmpool_buff_hdr",562,"len")=8 + Set gtmtypes("shmpool_buff_hdr",562,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_que_slps")=562 + Set gtmtypes("shmpool_buff_hdr",563,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.sq_crit_yields" + Set gtmtypes("shmpool_buff_hdr",563,"off")=4896 + Set gtmtypes("shmpool_buff_hdr",563,"len")=8 + Set gtmtypes("shmpool_buff_hdr",563,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.sq_crit_yields")=563 + Set gtmtypes("shmpool_buff_hdr",564,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec.n_crit_yields" + Set gtmtypes("shmpool_buff_hdr",564,"off")=4904 + Set gtmtypes("shmpool_buff_hdr",564,"len")=8 + Set gtmtypes("shmpool_buff_hdr",564,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec.n_crit_yields")=564 + Set gtmtypes("shmpool_buff_hdr",565,"name")="shmpool_buff_hdr.shadow_file_header.gvstats_rec_filler_4k_plus_512" + Set gtmtypes("shmpool_buff_hdr",565,"off")=4912 + Set gtmtypes("shmpool_buff_hdr",565,"len")=48 + Set gtmtypes("shmpool_buff_hdr",565,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.gvstats_rec_filler_4k_plus_512")=565 + Set gtmtypes("shmpool_buff_hdr",566,"name")="shmpool_buff_hdr.shadow_file_header.filler_4k_plus_512" + Set gtmtypes("shmpool_buff_hdr",566,"off")=4960 + Set gtmtypes("shmpool_buff_hdr",566,"len")=368 + Set gtmtypes("shmpool_buff_hdr",566,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_4k_plus_512")=566 + Set gtmtypes("shmpool_buff_hdr",567,"name")="shmpool_buff_hdr.shadow_file_header.intrpt_recov_resync_strm_seqno" + Set gtmtypes("shmpool_buff_hdr",567,"off")=5328 + Set gtmtypes("shmpool_buff_hdr",567,"len")=128 + Set gtmtypes("shmpool_buff_hdr",567,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.intrpt_recov_resync_strm_seqno")=567 + Set gtmtypes("shmpool_buff_hdr",567,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",568,"name")="shmpool_buff_hdr.shadow_file_header.creation_db_ver" + Set gtmtypes("shmpool_buff_hdr",568,"off")=5456 + Set gtmtypes("shmpool_buff_hdr",568,"len")=4 + Set gtmtypes("shmpool_buff_hdr",568,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_db_ver")=568 + Set gtmtypes("shmpool_buff_hdr",569,"name")="shmpool_buff_hdr.shadow_file_header.creation_mdb_ver" + Set gtmtypes("shmpool_buff_hdr",569,"off")=5460 + Set gtmtypes("shmpool_buff_hdr",569,"len")=4 + Set gtmtypes("shmpool_buff_hdr",569,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.creation_mdb_ver")=569 + Set gtmtypes("shmpool_buff_hdr",570,"name")="shmpool_buff_hdr.shadow_file_header.certified_for_upgrade_to" + Set gtmtypes("shmpool_buff_hdr",570,"off")=5464 + Set gtmtypes("shmpool_buff_hdr",570,"len")=4 + Set gtmtypes("shmpool_buff_hdr",570,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.certified_for_upgrade_to")=570 + Set gtmtypes("shmpool_buff_hdr",571,"name")="shmpool_buff_hdr.shadow_file_header.filler_5k" + Set gtmtypes("shmpool_buff_hdr",571,"off")=5468 + Set gtmtypes("shmpool_buff_hdr",571,"len")=4 + Set gtmtypes("shmpool_buff_hdr",571,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_5k")=571 + Set gtmtypes("shmpool_buff_hdr",572,"name")="shmpool_buff_hdr.shadow_file_header.secshr_ops_index_filler" + Set gtmtypes("shmpool_buff_hdr",572,"off")=5472 + Set gtmtypes("shmpool_buff_hdr",572,"len")=4 + Set gtmtypes("shmpool_buff_hdr",572,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.secshr_ops_index_filler")=572 + Set gtmtypes("shmpool_buff_hdr",573,"name")="shmpool_buff_hdr.shadow_file_header.secshr_ops_array_filler" + Set gtmtypes("shmpool_buff_hdr",573,"off")=5476 + Set gtmtypes("shmpool_buff_hdr",573,"len")=1020 + Set gtmtypes("shmpool_buff_hdr",573,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.secshr_ops_array_filler")=573 + Set gtmtypes("shmpool_buff_hdr",573,"dim")=255 + Set gtmtypes("shmpool_buff_hdr",574,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn" + Set gtmtypes("shmpool_buff_hdr",574,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",574,"len")=24 + Set gtmtypes("shmpool_buff_hdr",574,"type")="compswap_time_field" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn")=574 + Set gtmtypes("shmpool_buff_hdr",575,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch" + Set gtmtypes("shmpool_buff_hdr",575,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",575,"len")=8 + Set gtmtypes("shmpool_buff_hdr",575,"type")="global_latch_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch")=575 + Set gtmtypes("shmpool_buff_hdr",576,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u" + Set gtmtypes("shmpool_buff_hdr",576,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",576,"len")=8 + Set gtmtypes("shmpool_buff_hdr",576,"type")="union" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u")=576 + Set gtmtypes("shmpool_buff_hdr",577,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt" + Set gtmtypes("shmpool_buff_hdr",577,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",577,"len")=8 + Set gtmtypes("shmpool_buff_hdr",577,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.pid_imgcnt")=577 + Set gtmtypes("shmpool_buff_hdr",578,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts" + Set gtmtypes("shmpool_buff_hdr",578,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",578,"len")=8 + Set gtmtypes("shmpool_buff_hdr",578,"type")="struct" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts")=578 + Set gtmtypes("shmpool_buff_hdr",579,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid" + Set gtmtypes("shmpool_buff_hdr",579,"off")=6496 + Set gtmtypes("shmpool_buff_hdr",579,"len")=4 + Set gtmtypes("shmpool_buff_hdr",579,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_pid")=579 + Set gtmtypes("shmpool_buff_hdr",580,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word" + Set gtmtypes("shmpool_buff_hdr",580,"off")=6500 + Set gtmtypes("shmpool_buff_hdr",580,"len")=4 + Set gtmtypes("shmpool_buff_hdr",580,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.time_latch.u.parts.latch_word")=580 + Set gtmtypes("shmpool_buff_hdr",581,"name")="shmpool_buff_hdr.shadow_file_header.next_upgrd_warn.hp_latch_space" + Set gtmtypes("shmpool_buff_hdr",581,"off")=6504 + Set gtmtypes("shmpool_buff_hdr",581,"len")=16 + Set gtmtypes("shmpool_buff_hdr",581,"type")="int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.next_upgrd_warn.hp_latch_space")=581 + Set gtmtypes("shmpool_buff_hdr",581,"dim")=4 + Set gtmtypes("shmpool_buff_hdr",582,"name")="shmpool_buff_hdr.shadow_file_header.is_encrypted" + Set gtmtypes("shmpool_buff_hdr",582,"off")=6520 + Set gtmtypes("shmpool_buff_hdr",582,"len")=4 + Set gtmtypes("shmpool_buff_hdr",582,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.is_encrypted")=582 + Set gtmtypes("shmpool_buff_hdr",583,"name")="shmpool_buff_hdr.shadow_file_header.db_trigger_cycle" + Set gtmtypes("shmpool_buff_hdr",583,"off")=6524 + Set gtmtypes("shmpool_buff_hdr",583,"len")=4 + Set gtmtypes("shmpool_buff_hdr",583,"type")="unsigned-int" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.db_trigger_cycle")=583 + Set gtmtypes("shmpool_buff_hdr",584,"name")="shmpool_buff_hdr.shadow_file_header.strm_reg_seqno" + Set gtmtypes("shmpool_buff_hdr",584,"off")=6528 + Set gtmtypes("shmpool_buff_hdr",584,"len")=128 + Set gtmtypes("shmpool_buff_hdr",584,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.strm_reg_seqno")=584 + Set gtmtypes("shmpool_buff_hdr",584,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",585,"name")="shmpool_buff_hdr.shadow_file_header.save_strm_reg_seqno" + Set gtmtypes("shmpool_buff_hdr",585,"off")=6656 + Set gtmtypes("shmpool_buff_hdr",585,"len")=128 + Set gtmtypes("shmpool_buff_hdr",585,"type")="uint64_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.save_strm_reg_seqno")=585 + Set gtmtypes("shmpool_buff_hdr",585,"dim")=16 + Set gtmtypes("shmpool_buff_hdr",586,"name")="shmpool_buff_hdr.shadow_file_header.freeze_on_fail" + Set gtmtypes("shmpool_buff_hdr",586,"off")=6784 + Set gtmtypes("shmpool_buff_hdr",586,"len")=4 + Set gtmtypes("shmpool_buff_hdr",586,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.freeze_on_fail")=586 + Set gtmtypes("shmpool_buff_hdr",587,"name")="shmpool_buff_hdr.shadow_file_header.span_node_absent" + Set gtmtypes("shmpool_buff_hdr",587,"off")=6788 + Set gtmtypes("shmpool_buff_hdr",587,"len")=4 + Set gtmtypes("shmpool_buff_hdr",587,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.span_node_absent")=587 + Set gtmtypes("shmpool_buff_hdr",588,"name")="shmpool_buff_hdr.shadow_file_header.maxkeysz_assured" + Set gtmtypes("shmpool_buff_hdr",588,"off")=6792 + Set gtmtypes("shmpool_buff_hdr",588,"len")=4 + Set gtmtypes("shmpool_buff_hdr",588,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.maxkeysz_assured")=588 + Set gtmtypes("shmpool_buff_hdr",589,"name")="shmpool_buff_hdr.shadow_file_header.hasht_upgrade_needed" + Set gtmtypes("shmpool_buff_hdr",589,"off")=6796 + Set gtmtypes("shmpool_buff_hdr",589,"len")=4 + Set gtmtypes("shmpool_buff_hdr",589,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.hasht_upgrade_needed")=589 + Set gtmtypes("shmpool_buff_hdr",590,"name")="shmpool_buff_hdr.shadow_file_header.defer_allocate" + Set gtmtypes("shmpool_buff_hdr",590,"off")=6800 + Set gtmtypes("shmpool_buff_hdr",590,"len")=4 + Set gtmtypes("shmpool_buff_hdr",590,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.defer_allocate")=590 + Set gtmtypes("shmpool_buff_hdr",591,"name")="shmpool_buff_hdr.shadow_file_header.ftok_counter_halted" + Set gtmtypes("shmpool_buff_hdr",591,"off")=6804 + Set gtmtypes("shmpool_buff_hdr",591,"len")=4 + Set gtmtypes("shmpool_buff_hdr",591,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.ftok_counter_halted")=591 + Set gtmtypes("shmpool_buff_hdr",592,"name")="shmpool_buff_hdr.shadow_file_header.access_counter_halted" + Set gtmtypes("shmpool_buff_hdr",592,"off")=6808 + Set gtmtypes("shmpool_buff_hdr",592,"len")=4 + Set gtmtypes("shmpool_buff_hdr",592,"type")="boolean_t" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.access_counter_halted")=592 + Set gtmtypes("shmpool_buff_hdr",593,"name")="shmpool_buff_hdr.shadow_file_header.filler_7k" + Set gtmtypes("shmpool_buff_hdr",593,"off")=6812 + Set gtmtypes("shmpool_buff_hdr",593,"len")=708 + Set gtmtypes("shmpool_buff_hdr",593,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_7k")=593 + Set gtmtypes("shmpool_buff_hdr",594,"name")="shmpool_buff_hdr.shadow_file_header.filler_8k" + Set gtmtypes("shmpool_buff_hdr",594,"off")=7520 + Set gtmtypes("shmpool_buff_hdr",594,"len")=1024 + Set gtmtypes("shmpool_buff_hdr",594,"type")="char" + Set gtmtypfldindx("shmpool_buff_hdr","shadow_file_header.filler_8k")=594 + ; + Set gtmtypes("show_reply")="struct" + Set gtmtypes("show_reply",0)=2 + Set gtmtypes("show_reply","len")=257 + Set gtmtypes("show_reply",1,"name")="show_reply.code" + Set gtmtypes("show_reply",1,"off")=0 + Set gtmtypes("show_reply",1,"len")=1 + Set gtmtypes("show_reply",1,"type")="char" + Set gtmtypfldindx("show_reply","code")=1 + Set gtmtypes("show_reply",2,"name")="show_reply.line" + Set gtmtypes("show_reply",2,"off")=1 + Set gtmtypes("show_reply",2,"len")=256 + Set gtmtypes("show_reply",2,"type")="char" + Set gtmtypfldindx("show_reply","line")=2 + ; + Set gtmtypes("show_request")="struct" + Set gtmtypes("show_request",0)=7 + Set gtmtypes("show_request","len")=44 + Set gtmtypes("show_request",1,"name")="show_request.code" + Set gtmtypes("show_request",1,"off")=0 + Set gtmtypes("show_request",1,"len")=1 + Set gtmtypes("show_request",1,"type")="char" + Set gtmtypfldindx("show_request","code")=1 + Set gtmtypes("show_request",2,"name")="show_request.rnum" + Set gtmtypes("show_request",2,"off")=1 + Set gtmtypes("show_request",2,"len")=1 + Set gtmtypes("show_request",2,"type")="char" + Set gtmtypfldindx("show_request","rnum")=2 + Set gtmtypes("show_request",3,"name")="show_request.all" + Set gtmtypes("show_request",3,"off")=2 + Set gtmtypes("show_request",3,"len")=1 + Set gtmtypes("show_request",3,"type")="char" + Set gtmtypfldindx("show_request","all")=3 + Set gtmtypes("show_request",4,"name")="show_request.wait" + Set gtmtypes("show_request",4,"off")=3 + Set gtmtypes("show_request",4,"len")=1 + Set gtmtypes("show_request",4,"type")="char" + Set gtmtypfldindx("show_request","wait")=4 + Set gtmtypes("show_request",5,"name")="show_request.pid" + Set gtmtypes("show_request",5,"off")=4 + Set gtmtypes("show_request",5,"len")=4 + Set gtmtypes("show_request",5,"type")="int" + Set gtmtypfldindx("show_request","pid")=5 + Set gtmtypes("show_request",6,"name")="show_request.nodelength" + Set gtmtypes("show_request",6,"off")=8 + Set gtmtypes("show_request",6,"len")=1 + Set gtmtypes("show_request",6,"type")="char" + Set gtmtypfldindx("show_request","nodelength")=6 + Set gtmtypes("show_request",7,"name")="show_request.node" + Set gtmtypes("show_request",7,"off")=9 + Set gtmtypes("show_request",7,"len")=32 + Set gtmtypes("show_request",7,"type")="char" + Set gtmtypfldindx("show_request","node")=7 + ; + Set gtmtypes("snapshot_context_t")="struct" + Set gtmtypes("snapshot_context_t",0)=13 + Set gtmtypes("snapshot_context_t","len")=4148 + Set gtmtypes("snapshot_context_t",1,"name")="snapshot_context_t.shdw_fd" + Set gtmtypes("snapshot_context_t",1,"off")=0 + Set gtmtypes("snapshot_context_t",1,"len")=4 + Set gtmtypes("snapshot_context_t",1,"type")="int" + Set gtmtypfldindx("snapshot_context_t","shdw_fd")=1 + Set gtmtypes("snapshot_context_t",2,"name")="snapshot_context_t.nl_shmid" + Set gtmtypes("snapshot_context_t",2,"off")=4 + Set gtmtypes("snapshot_context_t",2,"len")=4 + Set gtmtypes("snapshot_context_t",2,"type")="long" + Set gtmtypfldindx("snapshot_context_t","nl_shmid")=2 + Set gtmtypes("snapshot_context_t",3,"name")="snapshot_context_t.attach_shmid" + Set gtmtypes("snapshot_context_t",3,"off")=8 + Set gtmtypes("snapshot_context_t",3,"len")=4 + Set gtmtypes("snapshot_context_t",3,"type")="long" + Set gtmtypfldindx("snapshot_context_t","attach_shmid")=3 + Set gtmtypes("snapshot_context_t",4,"name")="snapshot_context_t.ss_shmcycle" + Set gtmtypes("snapshot_context_t",4,"off")=12 + Set gtmtypes("snapshot_context_t",4,"len")=4 + Set gtmtypes("snapshot_context_t",4,"type")="int" + Set gtmtypfldindx("snapshot_context_t","ss_shmcycle")=4 + Set gtmtypes("snapshot_context_t",5,"name")="snapshot_context_t.total_blks" + Set gtmtypes("snapshot_context_t",5,"off")=16 + Set gtmtypes("snapshot_context_t",5,"len")=4 + Set gtmtypes("snapshot_context_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","total_blks")=5 + Set gtmtypes("snapshot_context_t",6,"name")="snapshot_context_t.failure_errno" + Set gtmtypes("snapshot_context_t",6,"off")=20 + Set gtmtypes("snapshot_context_t",6,"len")=4 + Set gtmtypes("snapshot_context_t",6,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","failure_errno")=6 + Set gtmtypes("snapshot_context_t",7,"name")="snapshot_context_t.ss_shm_ptr" + Set gtmtypes("snapshot_context_t",7,"off")=24 + Set gtmtypes("snapshot_context_t",7,"len")=4 + Set gtmtypes("snapshot_context_t",7,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","ss_shm_ptr")=7 + Set gtmtypes("snapshot_context_t",8,"name")="snapshot_context_t.start_shmaddr" + Set gtmtypes("snapshot_context_t",8,"off")=28 + Set gtmtypes("snapshot_context_t",8,"len")=4 + Set gtmtypes("snapshot_context_t",8,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","start_shmaddr")=8 + Set gtmtypes("snapshot_context_t",9,"name")="snapshot_context_t.bitmap_addr" + Set gtmtypes("snapshot_context_t",9,"off")=32 + Set gtmtypes("snapshot_context_t",9,"len")=4 + Set gtmtypes("snapshot_context_t",9,"type")="addr" + Set gtmtypfldindx("snapshot_context_t","bitmap_addr")=9 + Set gtmtypes("snapshot_context_t",10,"name")="snapshot_context_t.shadow_vbn" + Set gtmtypes("snapshot_context_t",10,"off")=36 + Set gtmtypes("snapshot_context_t",10,"len")=4 + Set gtmtypes("snapshot_context_t",10,"type")="int" + Set gtmtypfldindx("snapshot_context_t","shadow_vbn")=10 + Set gtmtypes("snapshot_context_t",11,"name")="snapshot_context_t.shadow_file" + Set gtmtypes("snapshot_context_t",11,"off")=40 + Set gtmtypes("snapshot_context_t",11,"len")=4097 + Set gtmtypes("snapshot_context_t",11,"type")="char" + Set gtmtypfldindx("snapshot_context_t","shadow_file")=11 + Set gtmtypes("snapshot_context_t",12,"name")="snapshot_context_t.cur_state" + Set gtmtypes("snapshot_context_t",12,"off")=4140 + Set gtmtypes("snapshot_context_t",12,"len")=4 + Set gtmtypes("snapshot_context_t",12,"type")="int" + Set gtmtypfldindx("snapshot_context_t","cur_state")=12 + Set gtmtypes("snapshot_context_t",13,"name")="snapshot_context_t.proc_property" + Set gtmtypes("snapshot_context_t",13,"off")=4144 + Set gtmtypes("snapshot_context_t",13,"len")=4 + Set gtmtypes("snapshot_context_t",13,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_context_t","proc_property")=13 + ; + Set gtmtypes("snapshot_filhdr_t")="struct" + Set gtmtypes("snapshot_filhdr_t",0)=13 + Set gtmtypes("snapshot_filhdr_t","len")=5128 + Set gtmtypes("snapshot_filhdr_t",1,"name")="snapshot_filhdr_t.label" + Set gtmtypes("snapshot_filhdr_t",1,"off")=0 + Set gtmtypes("snapshot_filhdr_t",1,"len")=10 + Set gtmtypes("snapshot_filhdr_t",1,"type")="char" + Set gtmtypfldindx("snapshot_filhdr_t","label")=1 + Set gtmtypes("snapshot_filhdr_t",2,"name")="snapshot_filhdr_t.ss_info" + Set gtmtypes("snapshot_filhdr_t",2,"off")=12 + Set gtmtypes("snapshot_filhdr_t",2,"len")=4136 + Set gtmtypes("snapshot_filhdr_t",2,"type")="snapshot_info_t" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info")=2 + Set gtmtypes("snapshot_filhdr_t",3,"name")="snapshot_filhdr_t.ss_info.ss_pid" + Set gtmtypes("snapshot_filhdr_t",3,"off")=12 + Set gtmtypes("snapshot_filhdr_t",3,"len")=4 + Set gtmtypes("snapshot_filhdr_t",3,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_pid")=3 + Set gtmtypes("snapshot_filhdr_t",4,"name")="snapshot_filhdr_t.ss_info.snapshot_tn" + Set gtmtypes("snapshot_filhdr_t",4,"off")=16 + Set gtmtypes("snapshot_filhdr_t",4,"len")=8 + Set gtmtypes("snapshot_filhdr_t",4,"type")="uint64_t" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.snapshot_tn")=4 + Set gtmtypes("snapshot_filhdr_t",5,"name")="snapshot_filhdr_t.ss_info.db_blk_size" + Set gtmtypes("snapshot_filhdr_t",5,"off")=24 + Set gtmtypes("snapshot_filhdr_t",5,"len")=4 + Set gtmtypes("snapshot_filhdr_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.db_blk_size")=5 + Set gtmtypes("snapshot_filhdr_t",6,"name")="snapshot_filhdr_t.ss_info.free_blks" + Set gtmtypes("snapshot_filhdr_t",6,"off")=28 + Set gtmtypes("snapshot_filhdr_t",6,"len")=4 + Set gtmtypes("snapshot_filhdr_t",6,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.free_blks")=6 + Set gtmtypes("snapshot_filhdr_t",7,"name")="snapshot_filhdr_t.ss_info.total_blks" + Set gtmtypes("snapshot_filhdr_t",7,"off")=32 + Set gtmtypes("snapshot_filhdr_t",7,"len")=4 + Set gtmtypes("snapshot_filhdr_t",7,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.total_blks")=7 + Set gtmtypes("snapshot_filhdr_t",8,"name")="snapshot_filhdr_t.ss_info.shadow_file" + Set gtmtypes("snapshot_filhdr_t",8,"off")=36 + Set gtmtypes("snapshot_filhdr_t",8,"len")=4097 + Set gtmtypes("snapshot_filhdr_t",8,"type")="char" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.shadow_file")=8 + Set gtmtypes("snapshot_filhdr_t",9,"name")="snapshot_filhdr_t.ss_info.shadow_vbn" + Set gtmtypes("snapshot_filhdr_t",9,"off")=4136 + Set gtmtypes("snapshot_filhdr_t",9,"len")=4 + Set gtmtypes("snapshot_filhdr_t",9,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.shadow_vbn")=9 + Set gtmtypes("snapshot_filhdr_t",10,"name")="snapshot_filhdr_t.ss_info.ss_shmid" + Set gtmtypes("snapshot_filhdr_t",10,"off")=4140 + Set gtmtypes("snapshot_filhdr_t",10,"len")=4 + Set gtmtypes("snapshot_filhdr_t",10,"type")="long" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_shmid")=10 + Set gtmtypes("snapshot_filhdr_t",11,"name")="snapshot_filhdr_t.ss_info.ss_shmsize" + Set gtmtypes("snapshot_filhdr_t",11,"off")=4144 + Set gtmtypes("snapshot_filhdr_t",11,"len")=4 + Set gtmtypes("snapshot_filhdr_t",11,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","ss_info.ss_shmsize")=11 + Set gtmtypes("snapshot_filhdr_t",12,"name")="snapshot_filhdr_t.shadow_file_len" + Set gtmtypes("snapshot_filhdr_t",12,"off")=4148 + Set gtmtypes("snapshot_filhdr_t",12,"len")=4 + Set gtmtypes("snapshot_filhdr_t",12,"type")="int" + Set gtmtypfldindx("snapshot_filhdr_t","shadow_file_len")=12 + Set gtmtypes("snapshot_filhdr_t",13,"name")="snapshot_filhdr_t.filler" + Set gtmtypes("snapshot_filhdr_t",13,"off")=4152 + Set gtmtypes("snapshot_filhdr_t",13,"len")=976 + Set gtmtypes("snapshot_filhdr_t",13,"type")="unsigned-char" + Set gtmtypfldindx("snapshot_filhdr_t","filler")=13 + ; + Set gtmtypes("snapshot_info_t")="struct" + Set gtmtypes("snapshot_info_t",0)=9 + Set gtmtypes("snapshot_info_t","len")=4136 + Set gtmtypes("snapshot_info_t",1,"name")="snapshot_info_t.ss_pid" + Set gtmtypes("snapshot_info_t",1,"off")=0 + Set gtmtypes("snapshot_info_t",1,"len")=4 + Set gtmtypes("snapshot_info_t",1,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","ss_pid")=1 + Set gtmtypes("snapshot_info_t",2,"name")="snapshot_info_t.snapshot_tn" + Set gtmtypes("snapshot_info_t",2,"off")=4 + Set gtmtypes("snapshot_info_t",2,"len")=8 + Set gtmtypes("snapshot_info_t",2,"type")="uint64_t" + Set gtmtypfldindx("snapshot_info_t","snapshot_tn")=2 + Set gtmtypes("snapshot_info_t",3,"name")="snapshot_info_t.db_blk_size" + Set gtmtypes("snapshot_info_t",3,"off")=12 + Set gtmtypes("snapshot_info_t",3,"len")=4 + Set gtmtypes("snapshot_info_t",3,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","db_blk_size")=3 + Set gtmtypes("snapshot_info_t",4,"name")="snapshot_info_t.free_blks" + Set gtmtypes("snapshot_info_t",4,"off")=16 + Set gtmtypes("snapshot_info_t",4,"len")=4 + Set gtmtypes("snapshot_info_t",4,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","free_blks")=4 + Set gtmtypes("snapshot_info_t",5,"name")="snapshot_info_t.total_blks" + Set gtmtypes("snapshot_info_t",5,"off")=20 + Set gtmtypes("snapshot_info_t",5,"len")=4 + Set gtmtypes("snapshot_info_t",5,"type")="unsigned-int" + Set gtmtypfldindx("snapshot_info_t","total_blks")=5 + Set gtmtypes("snapshot_info_t",6,"name")="snapshot_info_t.shadow_file" + Set gtmtypes("snapshot_info_t",6,"off")=24 + Set gtmtypes("snapshot_info_t",6,"len")=4097 + Set gtmtypes("snapshot_info_t",6,"type")="char" + Set gtmtypfldindx("snapshot_info_t","shadow_file")=6 + Set gtmtypes("snapshot_info_t",7,"name")="snapshot_info_t.shadow_vbn" + Set gtmtypes("snapshot_info_t",7,"off")=4124 + Set gtmtypes("snapshot_info_t",7,"len")=4 + Set gtmtypes("snapshot_info_t",7,"type")="int" + Set gtmtypfldindx("snapshot_info_t","shadow_vbn")=7 + Set gtmtypes("snapshot_info_t",8,"name")="snapshot_info_t.ss_shmid" + Set gtmtypes("snapshot_info_t",8,"off")=4128 + Set gtmtypes("snapshot_info_t",8,"len")=4 + Set gtmtypes("snapshot_info_t",8,"type")="long" + Set gtmtypfldindx("snapshot_info_t","ss_shmid")=8 + Set gtmtypes("snapshot_info_t",9,"name")="snapshot_info_t.ss_shmsize" + Set gtmtypes("snapshot_info_t",9,"off")=4132 + Set gtmtypes("snapshot_info_t",9,"len")=4 + Set gtmtypes("snapshot_info_t",9,"type")="int" + Set gtmtypfldindx("snapshot_info_t","ss_shmsize")=9 + ; + Set gtmtypes("socket_address")="struct" + Set gtmtypes("socket_address",0)=6 + Set gtmtypes("socket_address","len")=52 + Set gtmtypes("socket_address",1,"name")="socket_address.sa" + Set gtmtypes("socket_address",1,"off")=0 + Set gtmtypes("socket_address",1,"len")=4 + Set gtmtypes("socket_address",1,"type")="addr" + Set gtmtypfldindx("socket_address","sa")=1 + Set gtmtypes("socket_address",2,"name")="socket_address.ai" + Set gtmtypes("socket_address",2,"off")=4 + Set gtmtypes("socket_address",2,"len")=32 + Set gtmtypes("socket_address",2,"type")="struct" + Set gtmtypfldindx("socket_address","ai")=2 + Set gtmtypes("socket_address",3,"name")="socket_address.ai_head" + Set gtmtypes("socket_address",3,"off")=36 + Set gtmtypes("socket_address",3,"len")=4 + Set gtmtypes("socket_address",3,"type")="addr" + Set gtmtypfldindx("socket_address","ai_head")=3 + Set gtmtypes("socket_address",4,"name")="socket_address.port" + Set gtmtypes("socket_address",4,"off")=40 + Set gtmtypes("socket_address",4,"len")=2 + Set gtmtypes("socket_address",4,"type")="unsigned-short" + Set gtmtypfldindx("socket_address","port")=4 + Set gtmtypes("socket_address",5,"name")="socket_address.process" + Set gtmtypes("socket_address",5,"off")=44 + Set gtmtypes("socket_address",5,"len")=4 + Set gtmtypes("socket_address",5,"type")="pid_t" + Set gtmtypfldindx("socket_address","process")=5 + Set gtmtypes("socket_address",6,"name")="socket_address.saddr_ip" + Set gtmtypes("socket_address",6,"off")=48 + Set gtmtypes("socket_address",6,"len")=4 + Set gtmtypes("socket_address",6,"type")="addr" + Set gtmtypfldindx("socket_address","saddr_ip")=6 + ; + Set gtmtypes("socket_interrupt")="struct" + Set gtmtypes("socket_interrupt",0)=10 + Set gtmtypes("socket_interrupt","len")=36 + Set gtmtypes("socket_interrupt",1,"name")="socket_interrupt.end_time" + Set gtmtypes("socket_interrupt",1,"off")=0 + Set gtmtypes("socket_interrupt",1,"len")=8 + Set gtmtypes("socket_interrupt",1,"type")="ABS_TIME" + Set gtmtypfldindx("socket_interrupt","end_time")=1 + Set gtmtypes("socket_interrupt",2,"name")="socket_interrupt.end_time.at_sec" + Set gtmtypes("socket_interrupt",2,"off")=0 + Set gtmtypes("socket_interrupt",2,"len")=4 + Set gtmtypes("socket_interrupt",2,"type")="long" + Set gtmtypfldindx("socket_interrupt","end_time.at_sec")=2 + Set gtmtypes("socket_interrupt",3,"name")="socket_interrupt.end_time.at_usec" + Set gtmtypes("socket_interrupt",3,"off")=4 + Set gtmtypes("socket_interrupt",3,"len")=4 + Set gtmtypes("socket_interrupt",3,"type")="long" + Set gtmtypfldindx("socket_interrupt","end_time.at_usec")=3 + Set gtmtypes("socket_interrupt",4,"name")="socket_interrupt.who_saved" + Set gtmtypes("socket_interrupt",4,"off")=8 + Set gtmtypes("socket_interrupt",4,"len")=4 + Set gtmtypes("socket_interrupt",4,"type")="int" + Set gtmtypfldindx("socket_interrupt","who_saved")=4 + Set gtmtypes("socket_interrupt",5,"name")="socket_interrupt.max_bufflen" + Set gtmtypes("socket_interrupt",5,"off")=12 + Set gtmtypes("socket_interrupt",5,"len")=4 + Set gtmtypes("socket_interrupt",5,"type")="int" + Set gtmtypfldindx("socket_interrupt","max_bufflen")=5 + Set gtmtypes("socket_interrupt",6,"name")="socket_interrupt.bytes_read" + Set gtmtypes("socket_interrupt",6,"off")=16 + Set gtmtypes("socket_interrupt",6,"len")=4 + Set gtmtypes("socket_interrupt",6,"type")="int" + Set gtmtypfldindx("socket_interrupt","bytes_read")=6 + Set gtmtypes("socket_interrupt",7,"name")="socket_interrupt.chars_read" + Set gtmtypes("socket_interrupt",7,"off")=20 + Set gtmtypes("socket_interrupt",7,"len")=4 + Set gtmtypes("socket_interrupt",7,"type")="int" + Set gtmtypfldindx("socket_interrupt","chars_read")=7 + Set gtmtypes("socket_interrupt",8,"name")="socket_interrupt.end_time_valid" + Set gtmtypes("socket_interrupt",8,"off")=24 + Set gtmtypes("socket_interrupt",8,"len")=4 + Set gtmtypes("socket_interrupt",8,"type")="boolean_t" + Set gtmtypfldindx("socket_interrupt","end_time_valid")=8 + Set gtmtypes("socket_interrupt",9,"name")="socket_interrupt.ibfsize_specified" + Set gtmtypes("socket_interrupt",9,"off")=28 + Set gtmtypes("socket_interrupt",9,"len")=4 + Set gtmtypes("socket_interrupt",9,"type")="boolean_t" + Set gtmtypfldindx("socket_interrupt","ibfsize_specified")=9 + Set gtmtypes("socket_interrupt",10,"name")="socket_interrupt.newdsocket" + Set gtmtypes("socket_interrupt",10,"off")=32 + Set gtmtypes("socket_interrupt",10,"len")=4 + Set gtmtypes("socket_interrupt",10,"type")="addr" + Set gtmtypfldindx("socket_interrupt","newdsocket")=10 + ; + Set gtmtypes("socket_struct")="struct" + Set gtmtypes("socket_struct",0)=84 + Set gtmtypes("socket_struct","len")=2124 + Set gtmtypes("socket_struct",1,"name")="socket_struct.sd" + Set gtmtypes("socket_struct",1,"off")=0 + Set gtmtypes("socket_struct",1,"len")=4 + Set gtmtypes("socket_struct",1,"type")="int" + Set gtmtypfldindx("socket_struct","sd")=1 + Set gtmtypes("socket_struct",2,"name")="socket_struct.temp_sd" + Set gtmtypes("socket_struct",2,"off")=4 + Set gtmtypes("socket_struct",2,"len")=4 + Set gtmtypes("socket_struct",2,"type")="int" + Set gtmtypfldindx("socket_struct","temp_sd")=2 + Set gtmtypes("socket_struct",3,"name")="socket_struct.dev" + Set gtmtypes("socket_struct",3,"off")=8 + Set gtmtypes("socket_struct",3,"len")=4 + Set gtmtypes("socket_struct",3,"type")="addr" + Set gtmtypfldindx("socket_struct","dev")=3 + Set gtmtypes("socket_struct",4,"name")="socket_struct.passive" + Set gtmtypes("socket_struct",4,"off")=12 + Set gtmtypes("socket_struct",4,"len")=4 + Set gtmtypes("socket_struct",4,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","passive")=4 + Set gtmtypes("socket_struct",5,"name")="socket_struct.ioerror" + Set gtmtypes("socket_struct",5,"off")=16 + Set gtmtypes("socket_struct",5,"len")=4 + Set gtmtypes("socket_struct",5,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","ioerror")=5 + Set gtmtypes("socket_struct",6,"name")="socket_struct.urgent" + Set gtmtypes("socket_struct",6,"off")=20 + Set gtmtypes("socket_struct",6,"len")=4 + Set gtmtypes("socket_struct",6,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","urgent")=6 + Set gtmtypes("socket_struct",7,"name")="socket_struct.delim0containsLF" + Set gtmtypes("socket_struct",7,"off")=24 + Set gtmtypes("socket_struct",7,"len")=4 + Set gtmtypes("socket_struct",7,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","delim0containsLF")=7 + Set gtmtypes("socket_struct",8,"name")="socket_struct.state" + Set gtmtypes("socket_struct",8,"off")=28 + Set gtmtypes("socket_struct",8,"len")=4 + Set gtmtypes("socket_struct",8,"type")="int" + Set gtmtypfldindx("socket_struct","state")=8 + Set gtmtypes("socket_struct",9,"name")="socket_struct.protocol" + Set gtmtypes("socket_struct",9,"off")=32 + Set gtmtypes("socket_struct",9,"len")=4 + Set gtmtypes("socket_struct",9,"type")="int" + Set gtmtypfldindx("socket_struct","protocol")=9 + Set gtmtypes("socket_struct",10,"name")="socket_struct.local" + Set gtmtypes("socket_struct",10,"off")=36 + Set gtmtypes("socket_struct",10,"len")=52 + Set gtmtypes("socket_struct",10,"type")="socket_address" + Set gtmtypfldindx("socket_struct","local")=10 + Set gtmtypes("socket_struct",11,"name")="socket_struct.local.sa" + Set gtmtypes("socket_struct",11,"off")=36 + Set gtmtypes("socket_struct",11,"len")=4 + Set gtmtypes("socket_struct",11,"type")="addr" + Set gtmtypfldindx("socket_struct","local.sa")=11 + Set gtmtypes("socket_struct",12,"name")="socket_struct.local.ai" + Set gtmtypes("socket_struct",12,"off")=40 + Set gtmtypes("socket_struct",12,"len")=32 + Set gtmtypes("socket_struct",12,"type")="struct" + Set gtmtypfldindx("socket_struct","local.ai")=12 + Set gtmtypes("socket_struct",13,"name")="socket_struct.local.ai_head" + Set gtmtypes("socket_struct",13,"off")=72 + Set gtmtypes("socket_struct",13,"len")=4 + Set gtmtypes("socket_struct",13,"type")="addr" + Set gtmtypfldindx("socket_struct","local.ai_head")=13 + Set gtmtypes("socket_struct",14,"name")="socket_struct.local.port" + Set gtmtypes("socket_struct",14,"off")=76 + Set gtmtypes("socket_struct",14,"len")=2 + Set gtmtypes("socket_struct",14,"type")="unsigned-short" + Set gtmtypfldindx("socket_struct","local.port")=14 + Set gtmtypes("socket_struct",15,"name")="socket_struct.local.process" + Set gtmtypes("socket_struct",15,"off")=80 + Set gtmtypes("socket_struct",15,"len")=4 + Set gtmtypes("socket_struct",15,"type")="pid_t" + Set gtmtypfldindx("socket_struct","local.process")=15 + Set gtmtypes("socket_struct",16,"name")="socket_struct.local.saddr_ip" + Set gtmtypes("socket_struct",16,"off")=84 + Set gtmtypes("socket_struct",16,"len")=4 + Set gtmtypes("socket_struct",16,"type")="addr" + Set gtmtypfldindx("socket_struct","local.saddr_ip")=16 + Set gtmtypes("socket_struct",17,"name")="socket_struct.remote" + Set gtmtypes("socket_struct",17,"off")=88 + Set gtmtypes("socket_struct",17,"len")=52 + Set gtmtypes("socket_struct",17,"type")="socket_address" + Set gtmtypfldindx("socket_struct","remote")=17 + Set gtmtypes("socket_struct",18,"name")="socket_struct.remote.sa" + Set gtmtypes("socket_struct",18,"off")=88 + Set gtmtypes("socket_struct",18,"len")=4 + Set gtmtypes("socket_struct",18,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.sa")=18 + Set gtmtypes("socket_struct",19,"name")="socket_struct.remote.ai" + Set gtmtypes("socket_struct",19,"off")=92 + Set gtmtypes("socket_struct",19,"len")=32 + Set gtmtypes("socket_struct",19,"type")="struct" + Set gtmtypfldindx("socket_struct","remote.ai")=19 + Set gtmtypes("socket_struct",20,"name")="socket_struct.remote.ai_head" + Set gtmtypes("socket_struct",20,"off")=124 + Set gtmtypes("socket_struct",20,"len")=4 + Set gtmtypes("socket_struct",20,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.ai_head")=20 + Set gtmtypes("socket_struct",21,"name")="socket_struct.remote.port" + Set gtmtypes("socket_struct",21,"off")=128 + Set gtmtypes("socket_struct",21,"len")=2 + Set gtmtypes("socket_struct",21,"type")="unsigned-short" + Set gtmtypfldindx("socket_struct","remote.port")=21 + Set gtmtypes("socket_struct",22,"name")="socket_struct.remote.process" + Set gtmtypes("socket_struct",22,"off")=132 + Set gtmtypes("socket_struct",22,"len")=4 + Set gtmtypes("socket_struct",22,"type")="pid_t" + Set gtmtypfldindx("socket_struct","remote.process")=22 + Set gtmtypes("socket_struct",23,"name")="socket_struct.remote.saddr_ip" + Set gtmtypes("socket_struct",23,"off")=136 + Set gtmtypes("socket_struct",23,"len")=4 + Set gtmtypes("socket_struct",23,"type")="addr" + Set gtmtypfldindx("socket_struct","remote.saddr_ip")=23 + Set gtmtypes("socket_struct",24,"name")="socket_struct.lastop" + Set gtmtypes("socket_struct",24,"off")=140 + Set gtmtypes("socket_struct",24,"len")=4 + Set gtmtypes("socket_struct",24,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","lastop")=24 + Set gtmtypes("socket_struct",25,"name")="socket_struct.moreread_timeout" + Set gtmtypes("socket_struct",25,"off")=144 + Set gtmtypes("socket_struct",25,"len")=4 + Set gtmtypes("socket_struct",25,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","moreread_timeout")=25 + Set gtmtypes("socket_struct",26,"name")="socket_struct.handle" + Set gtmtypes("socket_struct",26,"off")=148 + Set gtmtypes("socket_struct",26,"len")=256 + Set gtmtypes("socket_struct",26,"type")="char" + Set gtmtypfldindx("socket_struct","handle")=26 + Set gtmtypes("socket_struct",27,"name")="socket_struct.handle_len" + Set gtmtypes("socket_struct",27,"off")=404 + Set gtmtypes("socket_struct",27,"len")=4 + Set gtmtypes("socket_struct",27,"type")="int" + Set gtmtypfldindx("socket_struct","handle_len")=27 + Set gtmtypes("socket_struct",28,"name")="socket_struct.bufsiz" + Set gtmtypes("socket_struct",28,"off")=408 + Set gtmtypes("socket_struct",28,"len")=4 + Set gtmtypes("socket_struct",28,"type")="int" + Set gtmtypfldindx("socket_struct","bufsiz")=28 + Set gtmtypes("socket_struct",29,"name")="socket_struct.n_delimiter" + Set gtmtypes("socket_struct",29,"off")=412 + Set gtmtypes("socket_struct",29,"len")=4 + Set gtmtypes("socket_struct",29,"type")="int" + Set gtmtypfldindx("socket_struct","n_delimiter")=29 + Set gtmtypes("socket_struct",30,"name")="socket_struct.last_recv_errno" + Set gtmtypes("socket_struct",30,"off")=416 + Set gtmtypes("socket_struct",30,"len")=4 + Set gtmtypes("socket_struct",30,"type")="int" + Set gtmtypfldindx("socket_struct","last_recv_errno")=30 + Set gtmtypes("socket_struct",31,"name")="socket_struct.delimiter" + Set gtmtypes("socket_struct",31,"off")=420 + Set gtmtypes("socket_struct",31,"len")=768 + Set gtmtypes("socket_struct",31,"type")="mstr" + Set gtmtypfldindx("socket_struct","delimiter")=31 + Set gtmtypes("socket_struct",31,"dim")=64 + Set gtmtypes("socket_struct",32,"name")="socket_struct.delimiter[0].char_len" + Set gtmtypes("socket_struct",32,"off")=420 + Set gtmtypes("socket_struct",32,"len")=4 + Set gtmtypes("socket_struct",32,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","delimiter[0].char_len")=32 + Set gtmtypes("socket_struct",33,"name")="socket_struct.delimiter[0].len" + Set gtmtypes("socket_struct",33,"off")=424 + Set gtmtypes("socket_struct",33,"len")=4 + Set gtmtypes("socket_struct",33,"type")="int" + Set gtmtypfldindx("socket_struct","delimiter[0].len")=33 + Set gtmtypes("socket_struct",34,"name")="socket_struct.delimiter[0].addr" + Set gtmtypes("socket_struct",34,"off")=428 + Set gtmtypes("socket_struct",34,"len")=4 + Set gtmtypes("socket_struct",34,"type")="addr" + Set gtmtypfldindx("socket_struct","delimiter[0].addr")=34 + Set gtmtypes("socket_struct",35,"name")="socket_struct.idelimiter" + Set gtmtypes("socket_struct",35,"off")=1188 + Set gtmtypes("socket_struct",35,"len")=768 + Set gtmtypes("socket_struct",35,"type")="mstr" + Set gtmtypfldindx("socket_struct","idelimiter")=35 + Set gtmtypes("socket_struct",35,"dim")=64 + Set gtmtypes("socket_struct",36,"name")="socket_struct.idelimiter[0].char_len" + Set gtmtypes("socket_struct",36,"off")=1188 + Set gtmtypes("socket_struct",36,"len")=4 + Set gtmtypes("socket_struct",36,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","idelimiter[0].char_len")=36 + Set gtmtypes("socket_struct",37,"name")="socket_struct.idelimiter[0].len" + Set gtmtypes("socket_struct",37,"off")=1192 + Set gtmtypes("socket_struct",37,"len")=4 + Set gtmtypes("socket_struct",37,"type")="int" + Set gtmtypfldindx("socket_struct","idelimiter[0].len")=37 + Set gtmtypes("socket_struct",38,"name")="socket_struct.idelimiter[0].addr" + Set gtmtypes("socket_struct",38,"off")=1196 + Set gtmtypes("socket_struct",38,"len")=4 + Set gtmtypes("socket_struct",38,"type")="addr" + Set gtmtypfldindx("socket_struct","idelimiter[0].addr")=38 + Set gtmtypes("socket_struct",39,"name")="socket_struct.odelimiter0" + Set gtmtypes("socket_struct",39,"off")=1956 + Set gtmtypes("socket_struct",39,"len")=12 + Set gtmtypes("socket_struct",39,"type")="mstr" + Set gtmtypfldindx("socket_struct","odelimiter0")=39 + Set gtmtypes("socket_struct",40,"name")="socket_struct.odelimiter0.char_len" + Set gtmtypes("socket_struct",40,"off")=1956 + Set gtmtypes("socket_struct",40,"len")=4 + Set gtmtypes("socket_struct",40,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","odelimiter0.char_len")=40 + Set gtmtypes("socket_struct",41,"name")="socket_struct.odelimiter0.len" + Set gtmtypes("socket_struct",41,"off")=1960 + Set gtmtypes("socket_struct",41,"len")=4 + Set gtmtypes("socket_struct",41,"type")="int" + Set gtmtypfldindx("socket_struct","odelimiter0.len")=41 + Set gtmtypes("socket_struct",42,"name")="socket_struct.odelimiter0.addr" + Set gtmtypes("socket_struct",42,"off")=1964 + Set gtmtypes("socket_struct",42,"len")=4 + Set gtmtypes("socket_struct",42,"type")="addr" + Set gtmtypfldindx("socket_struct","odelimiter0.addr")=42 + Set gtmtypes("socket_struct",43,"name")="socket_struct.buffer_size" + Set gtmtypes("socket_struct",43,"off")=1968 + Set gtmtypes("socket_struct",43,"len")=4 + Set gtmtypes("socket_struct",43,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffer_size")=43 + Set gtmtypes("socket_struct",44,"name")="socket_struct.buffered_length" + Set gtmtypes("socket_struct",44,"off")=1972 + Set gtmtypes("socket_struct",44,"len")=4 + Set gtmtypes("socket_struct",44,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffered_length")=44 + Set gtmtypes("socket_struct",45,"name")="socket_struct.buffered_offset" + Set gtmtypes("socket_struct",45,"off")=1976 + Set gtmtypes("socket_struct",45,"len")=4 + Set gtmtypes("socket_struct",45,"type")="size_t" + Set gtmtypfldindx("socket_struct","buffered_offset")=45 + Set gtmtypes("socket_struct",46,"name")="socket_struct.buffer" + Set gtmtypes("socket_struct",46,"off")=1980 + Set gtmtypes("socket_struct",46,"len")=4 + Set gtmtypes("socket_struct",46,"type")="addr" + Set gtmtypfldindx("socket_struct","buffer")=46 + Set gtmtypes("socket_struct",47,"name")="socket_struct.nodelay" + Set gtmtypes("socket_struct",47,"off")=1984 + Set gtmtypes("socket_struct",47,"len")=4 + Set gtmtypes("socket_struct",47,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","nodelay")=47 + Set gtmtypes("socket_struct",48,"name")="socket_struct.first_read" + Set gtmtypes("socket_struct",48,"off")=1988 + Set gtmtypes("socket_struct",48,"len")=4 + Set gtmtypes("socket_struct",48,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","first_read")=48 + Set gtmtypes("socket_struct",49,"name")="socket_struct.first_write" + Set gtmtypes("socket_struct",49,"off")=1992 + Set gtmtypes("socket_struct",49,"len")=4 + Set gtmtypes("socket_struct",49,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","first_write")=49 + Set gtmtypes("socket_struct",50,"name")="socket_struct.def_moreread_timeout" + Set gtmtypes("socket_struct",50,"off")=1996 + Set gtmtypes("socket_struct",50,"len")=4 + Set gtmtypes("socket_struct",50,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","def_moreread_timeout")=50 + Set gtmtypes("socket_struct",51,"name")="socket_struct.passtype" + Set gtmtypes("socket_struct",51,"off")=2000 + Set gtmtypes("socket_struct",51,"len")=4 + Set gtmtypes("socket_struct",51,"type")="int" + Set gtmtypfldindx("socket_struct","passtype")=51 + Set gtmtypes("socket_struct",52,"name")="socket_struct.filemode" + Set gtmtypes("socket_struct",52,"off")=2004 + Set gtmtypes("socket_struct",52,"len")=4 + Set gtmtypes("socket_struct",52,"type")="uint" + Set gtmtypfldindx("socket_struct","filemode")=52 + Set gtmtypes("socket_struct",53,"name")="socket_struct.filemode_mask" + Set gtmtypes("socket_struct",53,"off")=2008 + Set gtmtypes("socket_struct",53,"len")=4 + Set gtmtypes("socket_struct",53,"type")="uint" + Set gtmtypfldindx("socket_struct","filemode_mask")=53 + Set gtmtypes("socket_struct",54,"name")="socket_struct.uic" + Set gtmtypes("socket_struct",54,"off")=2012 + Set gtmtypes("socket_struct",54,"len")=8 + Set gtmtypes("socket_struct",54,"type")="uic_struct_int" + Set gtmtypfldindx("socket_struct","uic")=54 + Set gtmtypes("socket_struct",55,"name")="socket_struct.uic.mem" + Set gtmtypes("socket_struct",55,"off")=2012 + Set gtmtypes("socket_struct",55,"len")=4 + Set gtmtypes("socket_struct",55,"type")="uid_t" + Set gtmtypfldindx("socket_struct","uic.mem")=55 + Set gtmtypes("socket_struct",56,"name")="socket_struct.uic.grp" + Set gtmtypes("socket_struct",56,"off")=2016 + Set gtmtypes("socket_struct",56,"len")=4 + Set gtmtypes("socket_struct",56,"type")="gid_t" + Set gtmtypfldindx("socket_struct","uic.grp")=56 + Set gtmtypes("socket_struct",57,"name")="socket_struct.zff" + Set gtmtypes("socket_struct",57,"off")=2020 + Set gtmtypes("socket_struct",57,"len")=12 + Set gtmtypes("socket_struct",57,"type")="mstr" + Set gtmtypfldindx("socket_struct","zff")=57 + Set gtmtypes("socket_struct",58,"name")="socket_struct.zff.char_len" + Set gtmtypes("socket_struct",58,"off")=2020 + Set gtmtypes("socket_struct",58,"len")=4 + Set gtmtypes("socket_struct",58,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","zff.char_len")=58 + Set gtmtypes("socket_struct",59,"name")="socket_struct.zff.len" + Set gtmtypes("socket_struct",59,"off")=2024 + Set gtmtypes("socket_struct",59,"len")=4 + Set gtmtypes("socket_struct",59,"type")="int" + Set gtmtypfldindx("socket_struct","zff.len")=59 + Set gtmtypes("socket_struct",60,"name")="socket_struct.zff.addr" + Set gtmtypes("socket_struct",60,"off")=2028 + Set gtmtypes("socket_struct",60,"len")=4 + Set gtmtypes("socket_struct",60,"type")="addr" + Set gtmtypfldindx("socket_struct","zff.addr")=60 + Set gtmtypes("socket_struct",61,"name")="socket_struct.ozff" + Set gtmtypes("socket_struct",61,"off")=2032 + Set gtmtypes("socket_struct",61,"len")=12 + Set gtmtypes("socket_struct",61,"type")="mstr" + Set gtmtypfldindx("socket_struct","ozff")=61 + Set gtmtypes("socket_struct",62,"name")="socket_struct.ozff.char_len" + Set gtmtypes("socket_struct",62,"off")=2032 + Set gtmtypes("socket_struct",62,"len")=4 + Set gtmtypes("socket_struct",62,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","ozff.char_len")=62 + Set gtmtypes("socket_struct",63,"name")="socket_struct.ozff.len" + Set gtmtypes("socket_struct",63,"off")=2036 + Set gtmtypes("socket_struct",63,"len")=4 + Set gtmtypes("socket_struct",63,"type")="int" + Set gtmtypfldindx("socket_struct","ozff.len")=63 + Set gtmtypes("socket_struct",64,"name")="socket_struct.ozff.addr" + Set gtmtypes("socket_struct",64,"off")=2040 + Set gtmtypes("socket_struct",64,"len")=4 + Set gtmtypes("socket_struct",64,"type")="addr" + Set gtmtypfldindx("socket_struct","ozff.addr")=64 + Set gtmtypes("socket_struct",65,"name")="socket_struct.lastaction" + Set gtmtypes("socket_struct",65,"off")=2044 + Set gtmtypes("socket_struct",65,"len")=4 + Set gtmtypes("socket_struct",65,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","lastaction")=65 + Set gtmtypes("socket_struct",66,"name")="socket_struct.readycycle" + Set gtmtypes("socket_struct",66,"off")=2048 + Set gtmtypes("socket_struct",66,"len")=4 + Set gtmtypes("socket_struct",66,"type")="unsigned-int" + Set gtmtypfldindx("socket_struct","readycycle")=66 + Set gtmtypes("socket_struct",67,"name")="socket_struct.pendingevent" + Set gtmtypes("socket_struct",67,"off")=2052 + Set gtmtypes("socket_struct",67,"len")=4 + Set gtmtypes("socket_struct",67,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","pendingevent")=67 + Set gtmtypes("socket_struct",68,"name")="socket_struct.howcreated" + Set gtmtypes("socket_struct",68,"off")=2056 + Set gtmtypes("socket_struct",68,"len")=4 + Set gtmtypes("socket_struct",68,"type")="int" + Set gtmtypfldindx("socket_struct","howcreated")=68 + Set gtmtypes("socket_struct",69,"name")="socket_struct.parenthandle" + Set gtmtypes("socket_struct",69,"off")=2060 + Set gtmtypes("socket_struct",69,"len")=4 + Set gtmtypes("socket_struct",69,"type")="addr" + Set gtmtypfldindx("socket_struct","parenthandle")=69 + Set gtmtypes("socket_struct",70,"name")="socket_struct.obuffer_size" + Set gtmtypes("socket_struct",70,"off")=2064 + Set gtmtypes("socket_struct",70,"len")=4 + Set gtmtypes("socket_struct",70,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_size")=70 + Set gtmtypes("socket_struct",71,"name")="socket_struct.obuffer_length" + Set gtmtypes("socket_struct",71,"off")=2068 + Set gtmtypes("socket_struct",71,"len")=4 + Set gtmtypes("socket_struct",71,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_length")=71 + Set gtmtypes("socket_struct",72,"name")="socket_struct.obuffer_offset" + Set gtmtypes("socket_struct",72,"off")=2072 + Set gtmtypes("socket_struct",72,"len")=4 + Set gtmtypes("socket_struct",72,"type")="size_t" + Set gtmtypfldindx("socket_struct","obuffer_offset")=72 + Set gtmtypes("socket_struct",73,"name")="socket_struct.obuffer_timer_set" + Set gtmtypes("socket_struct",73,"off")=2076 + Set gtmtypes("socket_struct",73,"len")=4 + Set gtmtypes("socket_struct",73,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","obuffer_timer_set")=73 + Set gtmtypes("socket_struct",74,"name")="socket_struct.obuffer_output_active" + Set gtmtypes("socket_struct",74,"off")=2080 + Set gtmtypes("socket_struct",74,"len")=4 + Set gtmtypes("socket_struct",74,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","obuffer_output_active")=74 + Set gtmtypes("socket_struct",75,"name")="socket_struct.obuffer_flush_time" + Set gtmtypes("socket_struct",75,"off")=2084 + Set gtmtypes("socket_struct",75,"len")=4 + Set gtmtypes("socket_struct",75,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_flush_time")=75 + Set gtmtypes("socket_struct",76,"name")="socket_struct.obuffer_wait_time" + Set gtmtypes("socket_struct",76,"off")=2088 + Set gtmtypes("socket_struct",76,"len")=4 + Set gtmtypes("socket_struct",76,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_wait_time")=76 + Set gtmtypes("socket_struct",77,"name")="socket_struct.obuffer_errno" + Set gtmtypes("socket_struct",77,"off")=2092 + Set gtmtypes("socket_struct",77,"len")=4 + Set gtmtypes("socket_struct",77,"type")="int" + Set gtmtypfldindx("socket_struct","obuffer_errno")=77 + Set gtmtypes("socket_struct",78,"name")="socket_struct.obuffer" + Set gtmtypes("socket_struct",78,"off")=2096 + Set gtmtypes("socket_struct",78,"len")=4 + Set gtmtypes("socket_struct",78,"type")="addr" + Set gtmtypfldindx("socket_struct","obuffer")=78 + Set gtmtypes("socket_struct",79,"name")="socket_struct.nonblocking" + Set gtmtypes("socket_struct",79,"off")=2100 + Set gtmtypes("socket_struct",79,"len")=4 + Set gtmtypes("socket_struct",79,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","nonblocking")=79 + Set gtmtypes("socket_struct",80,"name")="socket_struct.tlsenabled" + Set gtmtypes("socket_struct",80,"off")=2104 + Set gtmtypes("socket_struct",80,"len")=4 + Set gtmtypes("socket_struct",80,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlsenabled")=80 + Set gtmtypes("socket_struct",81,"name")="socket_struct.tlssocket" + Set gtmtypes("socket_struct",81,"off")=2108 + Set gtmtypes("socket_struct",81,"len")=4 + Set gtmtypes("socket_struct",81,"type")="addr" + Set gtmtypfldindx("socket_struct","tlssocket")=81 + Set gtmtypes("socket_struct",82,"name")="socket_struct.tlsreadblocked" + Set gtmtypes("socket_struct",82,"off")=2112 + Set gtmtypes("socket_struct",82,"len")=4 + Set gtmtypes("socket_struct",82,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlsreadblocked")=82 + Set gtmtypes("socket_struct",83,"name")="socket_struct.tlswriteblocked" + Set gtmtypes("socket_struct",83,"off")=2116 + Set gtmtypes("socket_struct",83,"len")=4 + Set gtmtypes("socket_struct",83,"type")="boolean_t" + Set gtmtypfldindx("socket_struct","tlswriteblocked")=83 + Set gtmtypes("socket_struct",84,"name")="socket_struct.tlspolldirection" + Set gtmtypes("socket_struct",84,"off")=2120 + Set gtmtypes("socket_struct",84,"len")=2 + Set gtmtypes("socket_struct",84,"type")="short" + Set gtmtypfldindx("socket_struct","tlspolldirection")=84 + ; + Set gtmtypes("source_address")="struct" + Set gtmtypes("source_address",0)=2 + Set gtmtypes("source_address","len")=8 + Set gtmtypes("source_address",1,"name")="source_address.line" + Set gtmtypes("source_address",1,"off")=0 + Set gtmtypes("source_address",1,"len")=4 + Set gtmtypes("source_address",1,"type")="unsigned-int" + Set gtmtypfldindx("source_address","line")=1 + Set gtmtypes("source_address",2,"name")="source_address.column" + Set gtmtypes("source_address",2,"off")=4 + Set gtmtypes("source_address",2,"len")=4 + Set gtmtypes("source_address",2,"type")="unsigned-int" + Set gtmtypfldindx("source_address","column")=2 + ; + Set gtmtypes("span_node_integ")="struct" + Set gtmtypes("span_node_integ",0)=11 + Set gtmtypes("span_node_integ","len")=1064 + Set gtmtypes("span_node_integ",1,"name")="span_node_integ.sn_type" + Set gtmtypes("span_node_integ",1,"off")=0 + Set gtmtypes("span_node_integ",1,"len")=4 + Set gtmtypes("span_node_integ",1,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_type")=1 + Set gtmtypes("span_node_integ",2,"name")="span_node_integ.span_prev_blk" + Set gtmtypes("span_node_integ",2,"off")=4 + Set gtmtypes("span_node_integ",2,"len")=4 + Set gtmtypes("span_node_integ",2,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_prev_blk")=2 + Set gtmtypes("span_node_integ",3,"name")="span_node_integ.span_blk_cnt" + Set gtmtypes("span_node_integ",3,"off")=8 + Set gtmtypes("span_node_integ",3,"len")=4 + Set gtmtypes("span_node_integ",3,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_blk_cnt")=3 + Set gtmtypes("span_node_integ",4,"name")="span_node_integ.span_tot_blks" + Set gtmtypes("span_node_integ",4,"off")=12 + Set gtmtypes("span_node_integ",4,"len")=4 + Set gtmtypes("span_node_integ",4,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_tot_blks")=4 + Set gtmtypes("span_node_integ",5,"name")="span_node_integ.span_node_sz" + Set gtmtypes("span_node_integ",5,"off")=16 + Set gtmtypes("span_node_integ",5,"len")=4 + Set gtmtypes("span_node_integ",5,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_node_sz")=5 + Set gtmtypes("span_node_integ",6,"name")="span_node_integ.span_frag_off" + Set gtmtypes("span_node_integ",6,"off")=20 + Set gtmtypes("span_node_integ",6,"len")=4 + Set gtmtypes("span_node_integ",6,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","span_frag_off")=6 + Set gtmtypes("span_node_integ",7,"name")="span_node_integ.key_len" + Set gtmtypes("span_node_integ",7,"off")=24 + Set gtmtypes("span_node_integ",7,"len")=4 + Set gtmtypes("span_node_integ",7,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","key_len")=7 + Set gtmtypes("span_node_integ",8,"name")="span_node_integ.val_len" + Set gtmtypes("span_node_integ",8,"off")=28 + Set gtmtypes("span_node_integ",8,"len")=4 + Set gtmtypes("span_node_integ",8,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","val_len")=8 + Set gtmtypes("span_node_integ",9,"name")="span_node_integ.sn_cnt" + Set gtmtypes("span_node_integ",9,"off")=32 + Set gtmtypes("span_node_integ",9,"len")=4 + Set gtmtypes("span_node_integ",9,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_cnt")=9 + Set gtmtypes("span_node_integ",10,"name")="span_node_integ.sn_blk_cnt" + Set gtmtypes("span_node_integ",10,"off")=36 + Set gtmtypes("span_node_integ",10,"len")=4 + Set gtmtypes("span_node_integ",10,"type")="unsigned-int" + Set gtmtypfldindx("span_node_integ","sn_blk_cnt")=10 + Set gtmtypes("span_node_integ",11,"name")="span_node_integ.span_node_buf" + Set gtmtypes("span_node_integ",11,"off")=40 + Set gtmtypes("span_node_integ",11,"len")=1023 + Set gtmtypes("span_node_integ",11,"type")="unsigned-char" + Set gtmtypfldindx("span_node_integ","span_node_buf")=11 + ; + Set gtmtypes("span_parms")="struct" + Set gtmtypes("span_parms",0)=10 + Set gtmtypes("span_parms","len")=40 + Set gtmtypes("span_parms",1,"name")="span_parms.span_status" + Set gtmtypes("span_parms",1,"off")=0 + Set gtmtypes("span_parms",1,"len")=4 + Set gtmtypes("span_parms",1,"type")="boolean_t" + Set gtmtypfldindx("span_parms","span_status")=1 + Set gtmtypes("span_parms",2,"name")="span_parms.enable_jnl_format" + Set gtmtypes("span_parms",2,"off")=4 + Set gtmtypes("span_parms",2,"len")=4 + Set gtmtypes("span_parms",2,"type")="boolean_t" + Set gtmtypfldindx("span_parms","enable_jnl_format")=2 + Set gtmtypes("span_parms",3,"name")="span_parms.enable_trigger_read_and_fire" + Set gtmtypes("span_parms",3,"off")=8 + Set gtmtypes("span_parms",3,"len")=4 + Set gtmtypes("span_parms",3,"type")="boolean_t" + Set gtmtypfldindx("span_parms","enable_trigger_read_and_fire")=3 + Set gtmtypes("span_parms",4,"name")="span_parms.ztval_gvcst_put_redo" + Set gtmtypes("span_parms",4,"off")=12 + Set gtmtypes("span_parms",4,"len")=4 + Set gtmtypes("span_parms",4,"type")="boolean_t" + Set gtmtypfldindx("span_parms","ztval_gvcst_put_redo")=4 + Set gtmtypes("span_parms",5,"name")="span_parms.val_forjnl" + Set gtmtypes("span_parms",5,"off")=16 + Set gtmtypes("span_parms",5,"len")=4 + Set gtmtypes("span_parms",5,"type")="addr" + Set gtmtypfldindx("span_parms","val_forjnl")=5 + Set gtmtypes("span_parms",6,"name")="span_parms.blk_reserved_bytes" + Set gtmtypes("span_parms",6,"off")=20 + Set gtmtypes("span_parms",6,"len")=4 + Set gtmtypes("span_parms",6,"type")="int" + Set gtmtypfldindx("span_parms","blk_reserved_bytes")=6 + Set gtmtypes("span_parms",7,"name")="span_parms.save_msp" + Set gtmtypes("span_parms",7,"off")=24 + Set gtmtypes("span_parms",7,"len")=4 + Set gtmtypes("span_parms",7,"type")="addr" + Set gtmtypfldindx("span_parms","save_msp")=7 + Set gtmtypes("span_parms",8,"name")="span_parms.save_mv_chain" + Set gtmtypes("span_parms",8,"off")=28 + Set gtmtypes("span_parms",8,"len")=4 + Set gtmtypes("span_parms",8,"type")="addr" + Set gtmtypfldindx("span_parms","save_mv_chain")=8 + Set gtmtypes("span_parms",9,"name")="span_parms.ztold_mval" + Set gtmtypes("span_parms",9,"off")=32 + Set gtmtypes("span_parms",9,"len")=4 + Set gtmtypes("span_parms",9,"type")="addr" + Set gtmtypfldindx("span_parms","ztold_mval")=9 + Set gtmtypes("span_parms",10,"name")="span_parms.ztval_mval" + Set gtmtypes("span_parms",10,"off")=36 + Set gtmtypes("span_parms",10,"len")=4 + Set gtmtypes("span_parms",10,"type")="addr" + Set gtmtypfldindx("span_parms","ztval_mval")=10 + ; + Set gtmtypes("span_subs")="struct" + Set gtmtypes("span_subs",0)=3 + Set gtmtypes("span_subs","len")=3 + Set gtmtypes("span_subs",1,"name")="span_subs.b_ctrl" + Set gtmtypes("span_subs",1,"off")=0 + Set gtmtypes("span_subs",1,"len")=1 + Set gtmtypes("span_subs",1,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_ctrl")=1 + Set gtmtypes("span_subs",2,"name")="span_subs.b_first" + Set gtmtypes("span_subs",2,"off")=1 + Set gtmtypes("span_subs",2,"len")=1 + Set gtmtypes("span_subs",2,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_first")=2 + Set gtmtypes("span_subs",3,"name")="span_subs.b_sec" + Set gtmtypes("span_subs",3,"off")=2 + Set gtmtypes("span_subs",3,"len")=1 + Set gtmtypes("span_subs",3,"type")="unsigned-char" + Set gtmtypfldindx("span_subs","b_sec")=3 + ; + Set gtmtypes("spdesc")="struct" + Set gtmtypes("spdesc",0)=5 + Set gtmtypes("spdesc","len")=20 + Set gtmtypes("spdesc",1,"name")="spdesc.base" + Set gtmtypes("spdesc",1,"off")=0 + Set gtmtypes("spdesc",1,"len")=4 + Set gtmtypes("spdesc",1,"type")="addr" + Set gtmtypfldindx("spdesc","base")=1 + Set gtmtypes("spdesc",2,"name")="spdesc.gtm_free" + Set gtmtypes("spdesc",2,"off")=4 + Set gtmtypes("spdesc",2,"len")=4 + Set gtmtypes("spdesc",2,"type")="addr" + Set gtmtypfldindx("spdesc","gtm_free")=2 + Set gtmtypes("spdesc",3,"name")="spdesc.top" + Set gtmtypes("spdesc",3,"off")=8 + Set gtmtypes("spdesc",3,"len")=4 + Set gtmtypes("spdesc",3,"type")="addr" + Set gtmtypfldindx("spdesc","top")=3 + Set gtmtypes("spdesc",4,"name")="spdesc.lasttop" + Set gtmtypes("spdesc",4,"off")=12 + Set gtmtypes("spdesc",4,"len")=4 + Set gtmtypes("spdesc",4,"type")="addr" + Set gtmtypfldindx("spdesc","lasttop")=4 + Set gtmtypes("spdesc",5,"name")="spdesc.prvprt" + Set gtmtypes("spdesc",5,"off")=16 + Set gtmtypes("spdesc",5,"len")=1 + Set gtmtypes("spdesc",5,"type")="unsigned-char" + Set gtmtypfldindx("spdesc","prvprt")=5 + ; + Set gtmtypes("src_line_struct")="struct" + Set gtmtypes("src_line_struct",0)=8 + Set gtmtypes("src_line_struct","len")=24 + Set gtmtypes("src_line_struct",1,"name")="src_line_struct.que" + Set gtmtypes("src_line_struct",1,"off")=0 + Set gtmtypes("src_line_struct",1,"len")=8 + Set gtmtypes("src_line_struct",1,"type")="struct" + Set gtmtypfldindx("src_line_struct","que")=1 + Set gtmtypes("src_line_struct",2,"name")="src_line_struct.que.fl" + Set gtmtypes("src_line_struct",2,"off")=0 + Set gtmtypes("src_line_struct",2,"len")=4 + Set gtmtypes("src_line_struct",2,"type")="addr" + Set gtmtypfldindx("src_line_struct","que.fl")=2 + Set gtmtypes("src_line_struct",3,"name")="src_line_struct.que.bl" + Set gtmtypes("src_line_struct",3,"off")=4 + Set gtmtypes("src_line_struct",3,"len")=4 + Set gtmtypes("src_line_struct",3,"type")="addr" + Set gtmtypfldindx("src_line_struct","que.bl")=3 + Set gtmtypes("src_line_struct",4,"name")="src_line_struct.str" + Set gtmtypes("src_line_struct",4,"off")=8 + Set gtmtypes("src_line_struct",4,"len")=12 + Set gtmtypes("src_line_struct",4,"type")="mstr" + Set gtmtypfldindx("src_line_struct","str")=4 + Set gtmtypes("src_line_struct",5,"name")="src_line_struct.str.char_len" + Set gtmtypes("src_line_struct",5,"off")=8 + Set gtmtypes("src_line_struct",5,"len")=4 + Set gtmtypes("src_line_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("src_line_struct","str.char_len")=5 + Set gtmtypes("src_line_struct",6,"name")="src_line_struct.str.len" + Set gtmtypes("src_line_struct",6,"off")=12 + Set gtmtypes("src_line_struct",6,"len")=4 + Set gtmtypes("src_line_struct",6,"type")="int" + Set gtmtypfldindx("src_line_struct","str.len")=6 + Set gtmtypes("src_line_struct",7,"name")="src_line_struct.str.addr" + Set gtmtypes("src_line_struct",7,"off")=16 + Set gtmtypes("src_line_struct",7,"len")=4 + Set gtmtypes("src_line_struct",7,"type")="addr" + Set gtmtypfldindx("src_line_struct","str.addr")=7 + Set gtmtypes("src_line_struct",8,"name")="src_line_struct.line" + Set gtmtypes("src_line_struct",8,"off")=20 + Set gtmtypes("src_line_struct",8,"len")=4 + Set gtmtypes("src_line_struct",8,"type")="int" + Set gtmtypfldindx("src_line_struct","line")=8 + ; + Set gtmtypes("srch_blk_status")="struct" + Set gtmtypes("srch_blk_status",0)=15 + Set gtmtypes("srch_blk_status","len")=48 + Set gtmtypes("srch_blk_status",1,"name")="srch_blk_status.cr" + Set gtmtypes("srch_blk_status",1,"off")=0 + Set gtmtypes("srch_blk_status",1,"len")=4 + Set gtmtypes("srch_blk_status",1,"type")="addr" + Set gtmtypfldindx("srch_blk_status","cr")=1 + Set gtmtypes("srch_blk_status",2,"name")="srch_blk_status.buffaddr" + Set gtmtypes("srch_blk_status",2,"off")=4 + Set gtmtypes("srch_blk_status",2,"len")=4 + Set gtmtypes("srch_blk_status",2,"type")="addr" + Set gtmtypfldindx("srch_blk_status","buffaddr")=2 + Set gtmtypes("srch_blk_status",3,"name")="srch_blk_status.blk_num" + Set gtmtypes("srch_blk_status",3,"off")=8 + Set gtmtypes("srch_blk_status",3,"len")=4 + Set gtmtypes("srch_blk_status",3,"type")="int" + Set gtmtypfldindx("srch_blk_status","blk_num")=3 + Set gtmtypes("srch_blk_status",4,"name")="srch_blk_status.tn" + Set gtmtypes("srch_blk_status",4,"off")=12 + Set gtmtypes("srch_blk_status",4,"len")=8 + Set gtmtypes("srch_blk_status",4,"type")="uint64_t" + Set gtmtypfldindx("srch_blk_status","tn")=4 + Set gtmtypes("srch_blk_status",5,"name")="srch_blk_status.prev_rec" + Set gtmtypes("srch_blk_status",5,"off")=20 + Set gtmtypes("srch_blk_status",5,"len")=4 + Set gtmtypes("srch_blk_status",5,"type")="srch_rec_status" + Set gtmtypfldindx("srch_blk_status","prev_rec")=5 + Set gtmtypes("srch_blk_status",6,"name")="srch_blk_status.prev_rec.offset" + Set gtmtypes("srch_blk_status",6,"off")=20 + Set gtmtypes("srch_blk_status",6,"len")=2 + Set gtmtypes("srch_blk_status",6,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","prev_rec.offset")=6 + Set gtmtypes("srch_blk_status",7,"name")="srch_blk_status.prev_rec.match" + Set gtmtypes("srch_blk_status",7,"off")=22 + Set gtmtypes("srch_blk_status",7,"len")=2 + Set gtmtypes("srch_blk_status",7,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","prev_rec.match")=7 + Set gtmtypes("srch_blk_status",8,"name")="srch_blk_status.curr_rec" + Set gtmtypes("srch_blk_status",8,"off")=24 + Set gtmtypes("srch_blk_status",8,"len")=4 + Set gtmtypes("srch_blk_status",8,"type")="srch_rec_status" + Set gtmtypfldindx("srch_blk_status","curr_rec")=8 + Set gtmtypes("srch_blk_status",9,"name")="srch_blk_status.curr_rec.offset" + Set gtmtypes("srch_blk_status",9,"off")=24 + Set gtmtypes("srch_blk_status",9,"len")=2 + Set gtmtypes("srch_blk_status",9,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","curr_rec.offset")=9 + Set gtmtypes("srch_blk_status",10,"name")="srch_blk_status.curr_rec.match" + Set gtmtypes("srch_blk_status",10,"off")=26 + Set gtmtypes("srch_blk_status",10,"len")=2 + Set gtmtypes("srch_blk_status",10,"type")="unsigned-short" + Set gtmtypfldindx("srch_blk_status","curr_rec.match")=10 + Set gtmtypes("srch_blk_status",11,"name")="srch_blk_status.cycle" + Set gtmtypes("srch_blk_status",11,"off")=28 + Set gtmtypes("srch_blk_status",11,"len")=4 + Set gtmtypes("srch_blk_status",11,"type")="int" + Set gtmtypfldindx("srch_blk_status","cycle")=11 + Set gtmtypes("srch_blk_status",12,"name")="srch_blk_status.level" + Set gtmtypes("srch_blk_status",12,"off")=32 + Set gtmtypes("srch_blk_status",12,"len")=4 + Set gtmtypes("srch_blk_status",12,"type")="int" + Set gtmtypfldindx("srch_blk_status","level")=12 + Set gtmtypes("srch_blk_status",13,"name")="srch_blk_status.cse" + Set gtmtypes("srch_blk_status",13,"off")=36 + Set gtmtypes("srch_blk_status",13,"len")=4 + Set gtmtypes("srch_blk_status",13,"type")="addr" + Set gtmtypfldindx("srch_blk_status","cse")=13 + Set gtmtypes("srch_blk_status",14,"name")="srch_blk_status.first_tp_srch_status" + Set gtmtypes("srch_blk_status",14,"off")=40 + Set gtmtypes("srch_blk_status",14,"len")=4 + Set gtmtypes("srch_blk_status",14,"type")="addr" + Set gtmtypfldindx("srch_blk_status","first_tp_srch_status")=14 + Set gtmtypes("srch_blk_status",15,"name")="srch_blk_status.blk_target" + Set gtmtypes("srch_blk_status",15,"off")=44 + Set gtmtypes("srch_blk_status",15,"len")=4 + Set gtmtypes("srch_blk_status",15,"type")="addr" + Set gtmtypfldindx("srch_blk_status","blk_target")=15 + ; + Set gtmtypes("srch_hist")="struct" + Set gtmtypes("srch_hist",0)=18 + Set gtmtypes("srch_hist","len")=392 + Set gtmtypes("srch_hist",1,"name")="srch_hist.depth" + Set gtmtypes("srch_hist",1,"off")=0 + Set gtmtypes("srch_hist",1,"len")=4 + Set gtmtypes("srch_hist",1,"type")="int" + Set gtmtypfldindx("srch_hist","depth")=1 + Set gtmtypes("srch_hist",2,"name")="srch_hist.filler" + Set gtmtypes("srch_hist",2,"off")=4 + Set gtmtypes("srch_hist",2,"len")=4 + Set gtmtypes("srch_hist",2,"type")="int" + Set gtmtypfldindx("srch_hist","filler")=2 + Set gtmtypes("srch_hist",3,"name")="srch_hist.h" + Set gtmtypes("srch_hist",3,"off")=8 + Set gtmtypes("srch_hist",3,"len")=384 + Set gtmtypes("srch_hist",3,"type")="srch_blk_status" + Set gtmtypfldindx("srch_hist","h")=3 + Set gtmtypes("srch_hist",3,"dim")=8 + Set gtmtypes("srch_hist",4,"name")="srch_hist.h[0].cr" + Set gtmtypes("srch_hist",4,"off")=8 + Set gtmtypes("srch_hist",4,"len")=4 + Set gtmtypes("srch_hist",4,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].cr")=4 + Set gtmtypes("srch_hist",5,"name")="srch_hist.h[0].buffaddr" + Set gtmtypes("srch_hist",5,"off")=12 + Set gtmtypes("srch_hist",5,"len")=4 + Set gtmtypes("srch_hist",5,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].buffaddr")=5 + Set gtmtypes("srch_hist",6,"name")="srch_hist.h[0].blk_num" + Set gtmtypes("srch_hist",6,"off")=16 + Set gtmtypes("srch_hist",6,"len")=4 + Set gtmtypes("srch_hist",6,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].blk_num")=6 + Set gtmtypes("srch_hist",7,"name")="srch_hist.h[0].tn" + Set gtmtypes("srch_hist",7,"off")=20 + Set gtmtypes("srch_hist",7,"len")=8 + Set gtmtypes("srch_hist",7,"type")="uint64_t" + Set gtmtypfldindx("srch_hist","h[0].tn")=7 + Set gtmtypes("srch_hist",8,"name")="srch_hist.h[0].prev_rec" + Set gtmtypes("srch_hist",8,"off")=28 + Set gtmtypes("srch_hist",8,"len")=4 + Set gtmtypes("srch_hist",8,"type")="srch_rec_status" + Set gtmtypfldindx("srch_hist","h[0].prev_rec")=8 + Set gtmtypes("srch_hist",9,"name")="srch_hist.h[0].prev_rec.offset" + Set gtmtypes("srch_hist",9,"off")=28 + Set gtmtypes("srch_hist",9,"len")=2 + Set gtmtypes("srch_hist",9,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].prev_rec.offset")=9 + Set gtmtypes("srch_hist",10,"name")="srch_hist.h[0].prev_rec.match" + Set gtmtypes("srch_hist",10,"off")=30 + Set gtmtypes("srch_hist",10,"len")=2 + Set gtmtypes("srch_hist",10,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].prev_rec.match")=10 + Set gtmtypes("srch_hist",11,"name")="srch_hist.h[0].curr_rec" + Set gtmtypes("srch_hist",11,"off")=32 + Set gtmtypes("srch_hist",11,"len")=4 + Set gtmtypes("srch_hist",11,"type")="srch_rec_status" + Set gtmtypfldindx("srch_hist","h[0].curr_rec")=11 + Set gtmtypes("srch_hist",12,"name")="srch_hist.h[0].curr_rec.offset" + Set gtmtypes("srch_hist",12,"off")=32 + Set gtmtypes("srch_hist",12,"len")=2 + Set gtmtypes("srch_hist",12,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].curr_rec.offset")=12 + Set gtmtypes("srch_hist",13,"name")="srch_hist.h[0].curr_rec.match" + Set gtmtypes("srch_hist",13,"off")=34 + Set gtmtypes("srch_hist",13,"len")=2 + Set gtmtypes("srch_hist",13,"type")="unsigned-short" + Set gtmtypfldindx("srch_hist","h[0].curr_rec.match")=13 + Set gtmtypes("srch_hist",14,"name")="srch_hist.h[0].cycle" + Set gtmtypes("srch_hist",14,"off")=36 + Set gtmtypes("srch_hist",14,"len")=4 + Set gtmtypes("srch_hist",14,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].cycle")=14 + Set gtmtypes("srch_hist",15,"name")="srch_hist.h[0].level" + Set gtmtypes("srch_hist",15,"off")=40 + Set gtmtypes("srch_hist",15,"len")=4 + Set gtmtypes("srch_hist",15,"type")="int" + Set gtmtypfldindx("srch_hist","h[0].level")=15 + Set gtmtypes("srch_hist",16,"name")="srch_hist.h[0].cse" + Set gtmtypes("srch_hist",16,"off")=44 + Set gtmtypes("srch_hist",16,"len")=4 + Set gtmtypes("srch_hist",16,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].cse")=16 + Set gtmtypes("srch_hist",17,"name")="srch_hist.h[0].first_tp_srch_status" + Set gtmtypes("srch_hist",17,"off")=48 + Set gtmtypes("srch_hist",17,"len")=4 + Set gtmtypes("srch_hist",17,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].first_tp_srch_status")=17 + Set gtmtypes("srch_hist",18,"name")="srch_hist.h[0].blk_target" + Set gtmtypes("srch_hist",18,"off")=52 + Set gtmtypes("srch_hist",18,"len")=4 + Set gtmtypes("srch_hist",18,"type")="addr" + Set gtmtypfldindx("srch_hist","h[0].blk_target")=18 + ; + Set gtmtypes("srch_rec_status")="struct" + Set gtmtypes("srch_rec_status",0)=2 + Set gtmtypes("srch_rec_status","len")=4 + Set gtmtypes("srch_rec_status",1,"name")="srch_rec_status.offset" + Set gtmtypes("srch_rec_status",1,"off")=0 + Set gtmtypes("srch_rec_status",1,"len")=2 + Set gtmtypes("srch_rec_status",1,"type")="unsigned-short" + Set gtmtypfldindx("srch_rec_status","offset")=1 + Set gtmtypes("srch_rec_status",2,"name")="srch_rec_status.match" + Set gtmtypes("srch_rec_status",2,"off")=2 + Set gtmtypes("srch_rec_status",2,"len")=2 + Set gtmtypes("srch_rec_status",2,"type")="unsigned-short" + Set gtmtypfldindx("srch_rec_status","match")=2 + ; + Set gtmtypes("st_timer_alloc")="struct" + Set gtmtypes("st_timer_alloc",0)=2 + Set gtmtypes("st_timer_alloc","len")=8 + Set gtmtypes("st_timer_alloc",1,"name")="st_timer_alloc.addr" + Set gtmtypes("st_timer_alloc",1,"off")=0 + Set gtmtypes("st_timer_alloc",1,"len")=4 + Set gtmtypes("st_timer_alloc",1,"type")="addr" + Set gtmtypfldindx("st_timer_alloc","addr")=1 + Set gtmtypes("st_timer_alloc",2,"name")="st_timer_alloc.next" + Set gtmtypes("st_timer_alloc",2,"off")=4 + Set gtmtypes("st_timer_alloc",2,"len")=4 + Set gtmtypes("st_timer_alloc",2,"type")="addr" + Set gtmtypfldindx("st_timer_alloc","next")=2 + ; + Set gtmtypes("stack_frame")="struct" + Set gtmtypes("stack_frame",0)=14 + Set gtmtypes("stack_frame","len")=44 + Set gtmtypes("stack_frame",1,"name")="stack_frame.rvector" + Set gtmtypes("stack_frame",1,"off")=0 + Set gtmtypes("stack_frame",1,"len")=4 + Set gtmtypes("stack_frame",1,"type")="addr" + Set gtmtypfldindx("stack_frame","rvector")=1 + Set gtmtypes("stack_frame",2,"name")="stack_frame.l_symtab" + Set gtmtypes("stack_frame",2,"off")=4 + Set gtmtypes("stack_frame",2,"len")=4 + Set gtmtypes("stack_frame",2,"type")="addr" + Set gtmtypfldindx("stack_frame","l_symtab")=2 + Set gtmtypes("stack_frame",3,"name")="stack_frame.mpc" + Set gtmtypes("stack_frame",3,"off")=8 + Set gtmtypes("stack_frame",3,"len")=4 + Set gtmtypes("stack_frame",3,"type")="addr" + Set gtmtypfldindx("stack_frame","mpc")=3 + Set gtmtypes("stack_frame",4,"name")="stack_frame.ctxt" + Set gtmtypes("stack_frame",4,"off")=12 + Set gtmtypes("stack_frame",4,"len")=4 + Set gtmtypes("stack_frame",4,"type")="addr" + Set gtmtypfldindx("stack_frame","ctxt")=4 + Set gtmtypes("stack_frame",5,"name")="stack_frame.temps_ptr" + Set gtmtypes("stack_frame",5,"off")=16 + Set gtmtypes("stack_frame",5,"len")=4 + Set gtmtypes("stack_frame",5,"type")="addr" + Set gtmtypfldindx("stack_frame","temps_ptr")=5 + Set gtmtypes("stack_frame",6,"name")="stack_frame.vartab_off" + Set gtmtypes("stack_frame",6,"off")=20 + Set gtmtypes("stack_frame",6,"len")=4 + Set gtmtypes("stack_frame",6,"type")="addr" + Set gtmtypfldindx("stack_frame","vartab_off")=6 + Set gtmtypes("stack_frame",7,"name")="stack_frame.vartab_len" + Set gtmtypes("stack_frame",7,"off")=24 + Set gtmtypes("stack_frame",7,"len")=2 + Set gtmtypes("stack_frame",7,"type")="short" + Set gtmtypfldindx("stack_frame","vartab_len")=7 + Set gtmtypes("stack_frame",8,"name")="stack_frame.temp_mvals" + Set gtmtypes("stack_frame",8,"off")=26 + Set gtmtypes("stack_frame",8,"len")=2 + Set gtmtypes("stack_frame",8,"type")="short" + Set gtmtypfldindx("stack_frame","temp_mvals")=8 + Set gtmtypes("stack_frame",9,"name")="stack_frame.old_frame_pointer" + Set gtmtypes("stack_frame",9,"off")=28 + Set gtmtypes("stack_frame",9,"len")=4 + Set gtmtypes("stack_frame",9,"type")="addr" + Set gtmtypfldindx("stack_frame","old_frame_pointer")=9 + Set gtmtypes("stack_frame",10,"name")="stack_frame.type" + Set gtmtypes("stack_frame",10,"off")=32 + Set gtmtypes("stack_frame",10,"len")=2 + Set gtmtypes("stack_frame",10,"type")="unsigned-short" + Set gtmtypfldindx("stack_frame","type")=10 + Set gtmtypes("stack_frame",11,"name")="stack_frame.flags" + Set gtmtypes("stack_frame",11,"off")=34 + Set gtmtypes("stack_frame",11,"len")=1 + Set gtmtypes("stack_frame",11,"type")="unsigned-char" + Set gtmtypfldindx("stack_frame","flags")=11 + Set gtmtypes("stack_frame",12,"name")="stack_frame.dollar_test" + Set gtmtypes("stack_frame",12,"off")=35 + Set gtmtypes("stack_frame",12,"len")=1 + Set gtmtypes("stack_frame",12,"type")="char" + Set gtmtypfldindx("stack_frame","dollar_test")=12 + Set gtmtypes("stack_frame",13,"name")="stack_frame.for_ctrl_stack" + Set gtmtypes("stack_frame",13,"off")=36 + Set gtmtypes("stack_frame",13,"len")=4 + Set gtmtypes("stack_frame",13,"type")="addr" + Set gtmtypfldindx("stack_frame","for_ctrl_stack")=13 + Set gtmtypes("stack_frame",14,"name")="stack_frame.ret_value" + Set gtmtypes("stack_frame",14,"off")=40 + Set gtmtypes("stack_frame",14,"len")=4 + Set gtmtypes("stack_frame",14,"type")="addr" + Set gtmtypfldindx("stack_frame","ret_value")=14 + ; + Set gtmtypes("storElem")="struct" + Set gtmtypes("storElem",0)=10 + Set gtmtypes("storElem","len")=16 + Set gtmtypes("storElem",1,"name")="storElem.queueIndex" + Set gtmtypes("storElem",1,"off")=0 + Set gtmtypes("storElem",1,"len")=1 + Set gtmtypes("storElem",1,"type")="char" + Set gtmtypfldindx("storElem","queueIndex")=1 + Set gtmtypes("storElem",2,"name")="storElem.state" + Set gtmtypes("storElem",2,"off")=1 + Set gtmtypes("storElem",2,"len")=1 + Set gtmtypes("storElem",2,"type")="unsigned-char" + Set gtmtypfldindx("storElem","state")=2 + Set gtmtypes("storElem",3,"name")="storElem.extHdrOffset" + Set gtmtypes("storElem",3,"off")=2 + Set gtmtypes("storElem",3,"len")=2 + Set gtmtypes("storElem",3,"type")="unsigned-short" + Set gtmtypfldindx("storElem","extHdrOffset")=3 + Set gtmtypes("storElem",4,"name")="storElem.realLen" + Set gtmtypes("storElem",4,"off")=4 + Set gtmtypes("storElem",4,"len")=4 + Set gtmtypes("storElem",4,"type")="unsigned-int" + Set gtmtypfldindx("storElem","realLen")=4 + Set gtmtypes("storElem",5,"name")="storElem.userStorage" + Set gtmtypes("storElem",5,"off")=8 + Set gtmtypes("storElem",5,"len")=8 + Set gtmtypes("storElem",5,"type")="union" + Set gtmtypfldindx("storElem","userStorage")=5 + Set gtmtypes("storElem",6,"name")="storElem.userStorage.deferFreeNext" + Set gtmtypes("storElem",6,"off")=8 + Set gtmtypes("storElem",6,"len")=4 + Set gtmtypes("storElem",6,"type")="addr" + Set gtmtypfldindx("storElem","userStorage.deferFreeNext")=6 + Set gtmtypes("storElem",7,"name")="storElem.userStorage.links" + Set gtmtypes("storElem",7,"off")=8 + Set gtmtypes("storElem",7,"len")=8 + Set gtmtypes("storElem",7,"type")="struct" + Set gtmtypfldindx("storElem","userStorage.links")=7 + Set gtmtypes("storElem",8,"name")="storElem.userStorage.links.fPtr" + Set gtmtypes("storElem",8,"off")=8 + Set gtmtypes("storElem",8,"len")=4 + Set gtmtypes("storElem",8,"type")="addr" + Set gtmtypfldindx("storElem","userStorage.links.fPtr")=8 + Set gtmtypes("storElem",9,"name")="storElem.userStorage.links.bPtr" + Set gtmtypes("storElem",9,"off")=12 + Set gtmtypes("storElem",9,"len")=4 + Set gtmtypes("storElem",9,"type")="addr" + Set gtmtypfldindx("storElem","userStorage.links.bPtr")=9 + Set gtmtypes("storElem",10,"name")="storElem.userStorage.userStart" + Set gtmtypes("storElem",10,"off")=8 + Set gtmtypes("storElem",10,"len")=1 + Set gtmtypes("storElem",10,"type")="unsigned-char" + Set gtmtypfldindx("storElem","userStorage.userStart")=10 + ; + Set gtmtypes("stringkey")="struct" + Set gtmtypes("stringkey",0)=5 + Set gtmtypes("stringkey","len")=16 + Set gtmtypes("stringkey",1,"name")="stringkey.str" + Set gtmtypes("stringkey",1,"off")=0 + Set gtmtypes("stringkey",1,"len")=12 + Set gtmtypes("stringkey",1,"type")="mstr" + Set gtmtypfldindx("stringkey","str")=1 + Set gtmtypes("stringkey",2,"name")="stringkey.str.char_len" + Set gtmtypes("stringkey",2,"off")=0 + Set gtmtypes("stringkey",2,"len")=4 + Set gtmtypes("stringkey",2,"type")="unsigned-int" + Set gtmtypfldindx("stringkey","str.char_len")=2 + Set gtmtypes("stringkey",3,"name")="stringkey.str.len" + Set gtmtypes("stringkey",3,"off")=4 + Set gtmtypes("stringkey",3,"len")=4 + Set gtmtypes("stringkey",3,"type")="int" + Set gtmtypfldindx("stringkey","str.len")=3 + Set gtmtypes("stringkey",4,"name")="stringkey.str.addr" + Set gtmtypes("stringkey",4,"off")=8 + Set gtmtypes("stringkey",4,"len")=4 + Set gtmtypes("stringkey",4,"type")="addr" + Set gtmtypfldindx("stringkey","str.addr")=4 + Set gtmtypes("stringkey",5,"name")="stringkey.hash_code" + Set gtmtypes("stringkey",5,"off")=12 + Set gtmtypes("stringkey",5,"len")=4 + Set gtmtypes("stringkey",5,"type")="unsigned-int" + Set gtmtypfldindx("stringkey","hash_code")=5 + ; + Set gtmtypes("struct_jrec_align")="struct" + Set gtmtypes("struct_jrec_align",0)=7 + Set gtmtypes("struct_jrec_align","len")=32 + Set gtmtypes("struct_jrec_align",1,"name")="struct_jrec_align.prefix" + Set gtmtypes("struct_jrec_align",1,"off")=0 + Set gtmtypes("struct_jrec_align",1,"len")=24 + Set gtmtypes("struct_jrec_align",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_align","prefix")=1 + Set gtmtypes("struct_jrec_align",2,"name")="struct_jrec_align.prefix.pini_addr" + Set gtmtypes("struct_jrec_align",2,"off")=4 + Set gtmtypes("struct_jrec_align",2,"len")=4 + Set gtmtypes("struct_jrec_align",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_align",3,"name")="struct_jrec_align.prefix.time" + Set gtmtypes("struct_jrec_align",3,"off")=8 + Set gtmtypes("struct_jrec_align",3,"len")=4 + Set gtmtypes("struct_jrec_align",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.time")=3 + Set gtmtypes("struct_jrec_align",4,"name")="struct_jrec_align.prefix.checksum" + Set gtmtypes("struct_jrec_align",4,"off")=12 + Set gtmtypes("struct_jrec_align",4,"len")=4 + Set gtmtypes("struct_jrec_align",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_align","prefix.checksum")=4 + Set gtmtypes("struct_jrec_align",5,"name")="struct_jrec_align.prefix.tn" + Set gtmtypes("struct_jrec_align",5,"off")=16 + Set gtmtypes("struct_jrec_align",5,"len")=8 + Set gtmtypes("struct_jrec_align",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_align","prefix.tn")=5 + Set gtmtypes("struct_jrec_align",6,"name")="struct_jrec_align.align_str" + Set gtmtypes("struct_jrec_align",6,"off")=24 + Set gtmtypes("struct_jrec_align",6,"len")=8 + Set gtmtypes("struct_jrec_align",6,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_align","align_str")=6 + Set gtmtypes("struct_jrec_align",7,"name")="struct_jrec_align.align_str.text" + Set gtmtypes("struct_jrec_align",7,"off")=28 + Set gtmtypes("struct_jrec_align",7,"len")=1 + Set gtmtypes("struct_jrec_align",7,"type")="char" + Set gtmtypfldindx("struct_jrec_align","align_str.text")=7 + ; + Set gtmtypes("struct_jrec_blk")="struct" + Set gtmtypes("struct_jrec_blk",0)=10 + Set gtmtypes("struct_jrec_blk","len")=44 + Set gtmtypes("struct_jrec_blk",1,"name")="struct_jrec_blk.prefix" + Set gtmtypes("struct_jrec_blk",1,"off")=0 + Set gtmtypes("struct_jrec_blk",1,"len")=24 + Set gtmtypes("struct_jrec_blk",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_blk","prefix")=1 + Set gtmtypes("struct_jrec_blk",2,"name")="struct_jrec_blk.prefix.pini_addr" + Set gtmtypes("struct_jrec_blk",2,"off")=4 + Set gtmtypes("struct_jrec_blk",2,"len")=4 + Set gtmtypes("struct_jrec_blk",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_blk",3,"name")="struct_jrec_blk.prefix.time" + Set gtmtypes("struct_jrec_blk",3,"off")=8 + Set gtmtypes("struct_jrec_blk",3,"len")=4 + Set gtmtypes("struct_jrec_blk",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.time")=3 + Set gtmtypes("struct_jrec_blk",4,"name")="struct_jrec_blk.prefix.checksum" + Set gtmtypes("struct_jrec_blk",4,"off")=12 + Set gtmtypes("struct_jrec_blk",4,"len")=4 + Set gtmtypes("struct_jrec_blk",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","prefix.checksum")=4 + Set gtmtypes("struct_jrec_blk",5,"name")="struct_jrec_blk.prefix.tn" + Set gtmtypes("struct_jrec_blk",5,"off")=16 + Set gtmtypes("struct_jrec_blk",5,"len")=8 + Set gtmtypes("struct_jrec_blk",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_blk","prefix.tn")=5 + Set gtmtypes("struct_jrec_blk",6,"name")="struct_jrec_blk.blknum" + Set gtmtypes("struct_jrec_blk",6,"off")=24 + Set gtmtypes("struct_jrec_blk",6,"len")=4 + Set gtmtypes("struct_jrec_blk",6,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","blknum")=6 + Set gtmtypes("struct_jrec_blk",7,"name")="struct_jrec_blk.bsiz" + Set gtmtypes("struct_jrec_blk",7,"off")=28 + Set gtmtypes("struct_jrec_blk",7,"len")=4 + Set gtmtypes("struct_jrec_blk",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_blk","bsiz")=7 + Set gtmtypes("struct_jrec_blk",8,"name")="struct_jrec_blk.ondsk_blkver" + Set gtmtypes("struct_jrec_blk",8,"off")=32 + Set gtmtypes("struct_jrec_blk",8,"len")=4 + Set gtmtypes("struct_jrec_blk",8,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","ondsk_blkver")=8 + Set gtmtypes("struct_jrec_blk",9,"name")="struct_jrec_blk.filler" + Set gtmtypes("struct_jrec_blk",9,"off")=36 + Set gtmtypes("struct_jrec_blk",9,"len")=4 + Set gtmtypes("struct_jrec_blk",9,"type")="int" + Set gtmtypfldindx("struct_jrec_blk","filler")=9 + Set gtmtypes("struct_jrec_blk",10,"name")="struct_jrec_blk.blk_contents" + Set gtmtypes("struct_jrec_blk",10,"off")=40 + Set gtmtypes("struct_jrec_blk",10,"len")=1 + Set gtmtypes("struct_jrec_blk",10,"type")="char" + Set gtmtypfldindx("struct_jrec_blk","blk_contents")=10 + ; + Set gtmtypes("struct_jrec_eof")="struct" + Set gtmtypes("struct_jrec_eof",0)=8 + Set gtmtypes("struct_jrec_eof","len")=40 + Set gtmtypes("struct_jrec_eof",1,"name")="struct_jrec_eof.prefix" + Set gtmtypes("struct_jrec_eof",1,"off")=0 + Set gtmtypes("struct_jrec_eof",1,"len")=24 + Set gtmtypes("struct_jrec_eof",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_eof","prefix")=1 + Set gtmtypes("struct_jrec_eof",2,"name")="struct_jrec_eof.prefix.pini_addr" + Set gtmtypes("struct_jrec_eof",2,"off")=4 + Set gtmtypes("struct_jrec_eof",2,"len")=4 + Set gtmtypes("struct_jrec_eof",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_eof",3,"name")="struct_jrec_eof.prefix.time" + Set gtmtypes("struct_jrec_eof",3,"off")=8 + Set gtmtypes("struct_jrec_eof",3,"len")=4 + Set gtmtypes("struct_jrec_eof",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.time")=3 + Set gtmtypes("struct_jrec_eof",4,"name")="struct_jrec_eof.prefix.checksum" + Set gtmtypes("struct_jrec_eof",4,"off")=12 + Set gtmtypes("struct_jrec_eof",4,"len")=4 + Set gtmtypes("struct_jrec_eof",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","prefix.checksum")=4 + Set gtmtypes("struct_jrec_eof",5,"name")="struct_jrec_eof.prefix.tn" + Set gtmtypes("struct_jrec_eof",5,"off")=16 + Set gtmtypes("struct_jrec_eof",5,"len")=8 + Set gtmtypes("struct_jrec_eof",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_eof","prefix.tn")=5 + Set gtmtypes("struct_jrec_eof",6,"name")="struct_jrec_eof.jnl_seqno" + Set gtmtypes("struct_jrec_eof",6,"off")=24 + Set gtmtypes("struct_jrec_eof",6,"len")=8 + Set gtmtypes("struct_jrec_eof",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_eof","jnl_seqno")=6 + Set gtmtypes("struct_jrec_eof",7,"name")="struct_jrec_eof.filler" + Set gtmtypes("struct_jrec_eof",7,"off")=32 + Set gtmtypes("struct_jrec_eof",7,"len")=4 + Set gtmtypes("struct_jrec_eof",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_eof","filler")=7 + Set gtmtypes("struct_jrec_eof",8,"name")="struct_jrec_eof.suffix" + Set gtmtypes("struct_jrec_eof",8,"off")=36 + Set gtmtypes("struct_jrec_eof",8,"len")=4 + Set gtmtypes("struct_jrec_eof",8,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_eof","suffix")=8 + ; + Set gtmtypes("struct_jrec_epoch")="struct" + Set gtmtypes("struct_jrec_epoch",0)=13 + Set gtmtypes("struct_jrec_epoch","len")=184 + Set gtmtypes("struct_jrec_epoch",1,"name")="struct_jrec_epoch.prefix" + Set gtmtypes("struct_jrec_epoch",1,"off")=0 + Set gtmtypes("struct_jrec_epoch",1,"len")=24 + Set gtmtypes("struct_jrec_epoch",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_epoch","prefix")=1 + Set gtmtypes("struct_jrec_epoch",2,"name")="struct_jrec_epoch.prefix.pini_addr" + Set gtmtypes("struct_jrec_epoch",2,"off")=4 + Set gtmtypes("struct_jrec_epoch",2,"len")=4 + Set gtmtypes("struct_jrec_epoch",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_epoch",3,"name")="struct_jrec_epoch.prefix.time" + Set gtmtypes("struct_jrec_epoch",3,"off")=8 + Set gtmtypes("struct_jrec_epoch",3,"len")=4 + Set gtmtypes("struct_jrec_epoch",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.time")=3 + Set gtmtypes("struct_jrec_epoch",4,"name")="struct_jrec_epoch.prefix.checksum" + Set gtmtypes("struct_jrec_epoch",4,"off")=12 + Set gtmtypes("struct_jrec_epoch",4,"len")=4 + Set gtmtypes("struct_jrec_epoch",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","prefix.checksum")=4 + Set gtmtypes("struct_jrec_epoch",5,"name")="struct_jrec_epoch.prefix.tn" + Set gtmtypes("struct_jrec_epoch",5,"off")=16 + Set gtmtypes("struct_jrec_epoch",5,"len")=8 + Set gtmtypes("struct_jrec_epoch",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","prefix.tn")=5 + Set gtmtypes("struct_jrec_epoch",6,"name")="struct_jrec_epoch.jnl_seqno" + Set gtmtypes("struct_jrec_epoch",6,"off")=24 + Set gtmtypes("struct_jrec_epoch",6,"len")=8 + Set gtmtypes("struct_jrec_epoch",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","jnl_seqno")=6 + Set gtmtypes("struct_jrec_epoch",7,"name")="struct_jrec_epoch.blks_to_upgrd" + Set gtmtypes("struct_jrec_epoch",7,"off")=32 + Set gtmtypes("struct_jrec_epoch",7,"len")=4 + Set gtmtypes("struct_jrec_epoch",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","blks_to_upgrd")=7 + Set gtmtypes("struct_jrec_epoch",8,"name")="struct_jrec_epoch.free_blocks" + Set gtmtypes("struct_jrec_epoch",8,"off")=36 + Set gtmtypes("struct_jrec_epoch",8,"len")=4 + Set gtmtypes("struct_jrec_epoch",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","free_blocks")=8 + Set gtmtypes("struct_jrec_epoch",9,"name")="struct_jrec_epoch.total_blks" + Set gtmtypes("struct_jrec_epoch",9,"off")=40 + Set gtmtypes("struct_jrec_epoch",9,"len")=4 + Set gtmtypes("struct_jrec_epoch",9,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","total_blks")=9 + Set gtmtypes("struct_jrec_epoch",10,"name")="struct_jrec_epoch.fully_upgraded" + Set gtmtypes("struct_jrec_epoch",10,"off")=44 + Set gtmtypes("struct_jrec_epoch",10,"len")=4 + Set gtmtypes("struct_jrec_epoch",10,"type")="boolean_t" + Set gtmtypfldindx("struct_jrec_epoch","fully_upgraded")=10 + Set gtmtypes("struct_jrec_epoch",11,"name")="struct_jrec_epoch.strm_seqno" + Set gtmtypes("struct_jrec_epoch",11,"off")=48 + Set gtmtypes("struct_jrec_epoch",11,"len")=128 + Set gtmtypes("struct_jrec_epoch",11,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_epoch","strm_seqno")=11 + Set gtmtypes("struct_jrec_epoch",11,"dim")=16 + Set gtmtypes("struct_jrec_epoch",12,"name")="struct_jrec_epoch.filler" + Set gtmtypes("struct_jrec_epoch",12,"off")=176 + Set gtmtypes("struct_jrec_epoch",12,"len")=4 + Set gtmtypes("struct_jrec_epoch",12,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_epoch","filler")=12 + Set gtmtypes("struct_jrec_epoch",13,"name")="struct_jrec_epoch.suffix" + Set gtmtypes("struct_jrec_epoch",13,"off")=180 + Set gtmtypes("struct_jrec_epoch",13,"len")=4 + Set gtmtypes("struct_jrec_epoch",13,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_epoch","suffix")=13 + ; + Set gtmtypes("struct_jrec_inctn")="struct" + Set gtmtypes("struct_jrec_inctn",0)=18 + Set gtmtypes("struct_jrec_inctn","len")=40 + Set gtmtypes("struct_jrec_inctn",1,"name")="struct_jrec_inctn.prefix" + Set gtmtypes("struct_jrec_inctn",1,"off")=0 + Set gtmtypes("struct_jrec_inctn",1,"len")=24 + Set gtmtypes("struct_jrec_inctn",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_inctn","prefix")=1 + Set gtmtypes("struct_jrec_inctn",2,"name")="struct_jrec_inctn.prefix.pini_addr" + Set gtmtypes("struct_jrec_inctn",2,"off")=4 + Set gtmtypes("struct_jrec_inctn",2,"len")=4 + Set gtmtypes("struct_jrec_inctn",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_inctn",3,"name")="struct_jrec_inctn.prefix.time" + Set gtmtypes("struct_jrec_inctn",3,"off")=8 + Set gtmtypes("struct_jrec_inctn",3,"len")=4 + Set gtmtypes("struct_jrec_inctn",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.time")=3 + Set gtmtypes("struct_jrec_inctn",4,"name")="struct_jrec_inctn.prefix.checksum" + Set gtmtypes("struct_jrec_inctn",4,"off")=12 + Set gtmtypes("struct_jrec_inctn",4,"len")=4 + Set gtmtypes("struct_jrec_inctn",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","prefix.checksum")=4 + Set gtmtypes("struct_jrec_inctn",5,"name")="struct_jrec_inctn.prefix.tn" + Set gtmtypes("struct_jrec_inctn",5,"off")=16 + Set gtmtypes("struct_jrec_inctn",5,"len")=8 + Set gtmtypes("struct_jrec_inctn",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_inctn","prefix.tn")=5 + Set gtmtypes("struct_jrec_inctn",6,"name")="struct_jrec_inctn.detail" + Set gtmtypes("struct_jrec_inctn",6,"off")=24 + Set gtmtypes("struct_jrec_inctn",6,"len")=16 + Set gtmtypes("struct_jrec_inctn",6,"type")="inctn_detail_t" + Set gtmtypfldindx("struct_jrec_inctn","detail")=6 + Set gtmtypes("struct_jrec_inctn",7,"name")="struct_jrec_inctn.detail.blknum_struct" + Set gtmtypes("struct_jrec_inctn",7,"off")=24 + Set gtmtypes("struct_jrec_inctn",7,"len")=16 + Set gtmtypes("struct_jrec_inctn",7,"type")="inctn_detail_blknum_t" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct")=7 + Set gtmtypes("struct_jrec_inctn",8,"name")="struct_jrec_inctn.detail.blknum_struct.blknum" + Set gtmtypes("struct_jrec_inctn",8,"off")=24 + Set gtmtypes("struct_jrec_inctn",8,"len")=4 + Set gtmtypes("struct_jrec_inctn",8,"type")="int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.blknum")=8 + Set gtmtypes("struct_jrec_inctn",9,"name")="struct_jrec_inctn.detail.blknum_struct.filler_uint4" + Set gtmtypes("struct_jrec_inctn",9,"off")=28 + Set gtmtypes("struct_jrec_inctn",9,"len")=4 + Set gtmtypes("struct_jrec_inctn",9,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.filler_uint4")=9 + Set gtmtypes("struct_jrec_inctn",10,"name")="struct_jrec_inctn.detail.blknum_struct.filler_short" + Set gtmtypes("struct_jrec_inctn",10,"off")=32 + Set gtmtypes("struct_jrec_inctn",10,"len")=2 + Set gtmtypes("struct_jrec_inctn",10,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.filler_short")=10 + Set gtmtypes("struct_jrec_inctn",11,"name")="struct_jrec_inctn.detail.blknum_struct.opcode" + Set gtmtypes("struct_jrec_inctn",11,"off")=34 + Set gtmtypes("struct_jrec_inctn",11,"len")=2 + Set gtmtypes("struct_jrec_inctn",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.opcode")=11 + Set gtmtypes("struct_jrec_inctn",12,"name")="struct_jrec_inctn.detail.blknum_struct.suffix" + Set gtmtypes("struct_jrec_inctn",12,"off")=36 + Set gtmtypes("struct_jrec_inctn",12,"len")=4 + Set gtmtypes("struct_jrec_inctn",12,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_inctn","detail.blknum_struct.suffix")=12 + Set gtmtypes("struct_jrec_inctn",13,"name")="struct_jrec_inctn.detail.blks2upgrd_struct" + Set gtmtypes("struct_jrec_inctn",13,"off")=24 + Set gtmtypes("struct_jrec_inctn",13,"len")=16 + Set gtmtypes("struct_jrec_inctn",13,"type")="inctn_detail_blks2upgrd_t" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct")=13 + Set gtmtypes("struct_jrec_inctn",14,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.blks_to_upgrd_delta" + Set gtmtypes("struct_jrec_inctn",14,"off")=24 + Set gtmtypes("struct_jrec_inctn",14,"len")=4 + Set gtmtypes("struct_jrec_inctn",14,"type")="int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.blks_to_upgrd_delta")=14 + Set gtmtypes("struct_jrec_inctn",15,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.filler_uint4" + Set gtmtypes("struct_jrec_inctn",15,"off")=28 + Set gtmtypes("struct_jrec_inctn",15,"len")=4 + Set gtmtypes("struct_jrec_inctn",15,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.filler_uint4")=15 + Set gtmtypes("struct_jrec_inctn",16,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.filler_short" + Set gtmtypes("struct_jrec_inctn",16,"off")=32 + Set gtmtypes("struct_jrec_inctn",16,"len")=2 + Set gtmtypes("struct_jrec_inctn",16,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.filler_short")=16 + Set gtmtypes("struct_jrec_inctn",17,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.opcode" + Set gtmtypes("struct_jrec_inctn",17,"off")=34 + Set gtmtypes("struct_jrec_inctn",17,"len")=2 + Set gtmtypes("struct_jrec_inctn",17,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.opcode")=17 + Set gtmtypes("struct_jrec_inctn",18,"name")="struct_jrec_inctn.detail.blks2upgrd_struct.suffix" + Set gtmtypes("struct_jrec_inctn",18,"off")=36 + Set gtmtypes("struct_jrec_inctn",18,"len")=4 + Set gtmtypes("struct_jrec_inctn",18,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_inctn","detail.blks2upgrd_struct.suffix")=18 + ; + Set gtmtypes("struct_jrec_lgtrig")="struct" + Set gtmtypes("struct_jrec_lgtrig",0)=14 + Set gtmtypes("struct_jrec_lgtrig","len")=56 + Set gtmtypes("struct_jrec_lgtrig",1,"name")="struct_jrec_lgtrig.prefix" + Set gtmtypes("struct_jrec_lgtrig",1,"off")=0 + Set gtmtypes("struct_jrec_lgtrig",1,"len")=24 + Set gtmtypes("struct_jrec_lgtrig",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix")=1 + Set gtmtypes("struct_jrec_lgtrig",2,"name")="struct_jrec_lgtrig.prefix.pini_addr" + Set gtmtypes("struct_jrec_lgtrig",2,"off")=4 + Set gtmtypes("struct_jrec_lgtrig",2,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_lgtrig",3,"name")="struct_jrec_lgtrig.prefix.time" + Set gtmtypes("struct_jrec_lgtrig",3,"off")=8 + Set gtmtypes("struct_jrec_lgtrig",3,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.time")=3 + Set gtmtypes("struct_jrec_lgtrig",4,"name")="struct_jrec_lgtrig.prefix.checksum" + Set gtmtypes("struct_jrec_lgtrig",4,"off")=12 + Set gtmtypes("struct_jrec_lgtrig",4,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.checksum")=4 + Set gtmtypes("struct_jrec_lgtrig",5,"name")="struct_jrec_lgtrig.prefix.tn" + Set gtmtypes("struct_jrec_lgtrig",5,"off")=16 + Set gtmtypes("struct_jrec_lgtrig",5,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","prefix.tn")=5 + Set gtmtypes("struct_jrec_lgtrig",6,"name")="struct_jrec_lgtrig.token_seq" + Set gtmtypes("struct_jrec_lgtrig",6,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",6,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq")=6 + Set gtmtypes("struct_jrec_lgtrig",7,"name")="struct_jrec_lgtrig.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_lgtrig",7,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",7,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_lgtrig",8,"name")="struct_jrec_lgtrig.token_seq.token" + Set gtmtypes("struct_jrec_lgtrig",8,"off")=24 + Set gtmtypes("struct_jrec_lgtrig",8,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","token_seq.token")=8 + Set gtmtypes("struct_jrec_lgtrig",9,"name")="struct_jrec_lgtrig.strm_seqno" + Set gtmtypes("struct_jrec_lgtrig",9,"off")=32 + Set gtmtypes("struct_jrec_lgtrig",9,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_lgtrig","strm_seqno")=9 + Set gtmtypes("struct_jrec_lgtrig",10,"name")="struct_jrec_lgtrig.update_num" + Set gtmtypes("struct_jrec_lgtrig",10,"off")=40 + Set gtmtypes("struct_jrec_lgtrig",10,"len")=4 + Set gtmtypes("struct_jrec_lgtrig",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_lgtrig","update_num")=10 + Set gtmtypes("struct_jrec_lgtrig",11,"name")="struct_jrec_lgtrig.filler_short" + Set gtmtypes("struct_jrec_lgtrig",11,"off")=44 + Set gtmtypes("struct_jrec_lgtrig",11,"len")=2 + Set gtmtypes("struct_jrec_lgtrig",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_lgtrig","filler_short")=11 + Set gtmtypes("struct_jrec_lgtrig",12,"name")="struct_jrec_lgtrig.num_participants" + Set gtmtypes("struct_jrec_lgtrig",12,"off")=46 + Set gtmtypes("struct_jrec_lgtrig",12,"len")=2 + Set gtmtypes("struct_jrec_lgtrig",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_lgtrig","num_participants")=12 + Set gtmtypes("struct_jrec_lgtrig",13,"name")="struct_jrec_lgtrig.lgtrig_str" + Set gtmtypes("struct_jrec_lgtrig",13,"off")=48 + Set gtmtypes("struct_jrec_lgtrig",13,"len")=8 + Set gtmtypes("struct_jrec_lgtrig",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_lgtrig","lgtrig_str")=13 + Set gtmtypes("struct_jrec_lgtrig",14,"name")="struct_jrec_lgtrig.lgtrig_str.text" + Set gtmtypes("struct_jrec_lgtrig",14,"off")=52 + Set gtmtypes("struct_jrec_lgtrig",14,"len")=1 + Set gtmtypes("struct_jrec_lgtrig",14,"type")="char" + Set gtmtypfldindx("struct_jrec_lgtrig","lgtrig_str.text")=14 + ; + Set gtmtypes("struct_jrec_null")="struct" + Set gtmtypes("struct_jrec_null",0)=9 + Set gtmtypes("struct_jrec_null","len")=48 + Set gtmtypes("struct_jrec_null",1,"name")="struct_jrec_null.prefix" + Set gtmtypes("struct_jrec_null",1,"off")=0 + Set gtmtypes("struct_jrec_null",1,"len")=24 + Set gtmtypes("struct_jrec_null",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_null","prefix")=1 + Set gtmtypes("struct_jrec_null",2,"name")="struct_jrec_null.prefix.pini_addr" + Set gtmtypes("struct_jrec_null",2,"off")=4 + Set gtmtypes("struct_jrec_null",2,"len")=4 + Set gtmtypes("struct_jrec_null",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_null",3,"name")="struct_jrec_null.prefix.time" + Set gtmtypes("struct_jrec_null",3,"off")=8 + Set gtmtypes("struct_jrec_null",3,"len")=4 + Set gtmtypes("struct_jrec_null",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.time")=3 + Set gtmtypes("struct_jrec_null",4,"name")="struct_jrec_null.prefix.checksum" + Set gtmtypes("struct_jrec_null",4,"off")=12 + Set gtmtypes("struct_jrec_null",4,"len")=4 + Set gtmtypes("struct_jrec_null",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","prefix.checksum")=4 + Set gtmtypes("struct_jrec_null",5,"name")="struct_jrec_null.prefix.tn" + Set gtmtypes("struct_jrec_null",5,"off")=16 + Set gtmtypes("struct_jrec_null",5,"len")=8 + Set gtmtypes("struct_jrec_null",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","prefix.tn")=5 + Set gtmtypes("struct_jrec_null",6,"name")="struct_jrec_null.jnl_seqno" + Set gtmtypes("struct_jrec_null",6,"off")=24 + Set gtmtypes("struct_jrec_null",6,"len")=8 + Set gtmtypes("struct_jrec_null",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","jnl_seqno")=6 + Set gtmtypes("struct_jrec_null",7,"name")="struct_jrec_null.strm_seqno" + Set gtmtypes("struct_jrec_null",7,"off")=32 + Set gtmtypes("struct_jrec_null",7,"len")=8 + Set gtmtypes("struct_jrec_null",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_null","strm_seqno")=7 + Set gtmtypes("struct_jrec_null",8,"name")="struct_jrec_null.filler" + Set gtmtypes("struct_jrec_null",8,"off")=40 + Set gtmtypes("struct_jrec_null",8,"len")=4 + Set gtmtypes("struct_jrec_null",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_null","filler")=8 + Set gtmtypes("struct_jrec_null",9,"name")="struct_jrec_null.suffix" + Set gtmtypes("struct_jrec_null",9,"off")=44 + Set gtmtypes("struct_jrec_null",9,"len")=4 + Set gtmtypes("struct_jrec_null",9,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_null","suffix")=9 + ; + Set gtmtypes("struct_jrec_pfin")="struct" + Set gtmtypes("struct_jrec_pfin",0)=7 + Set gtmtypes("struct_jrec_pfin","len")=32 + Set gtmtypes("struct_jrec_pfin",1,"name")="struct_jrec_pfin.prefix" + Set gtmtypes("struct_jrec_pfin",1,"off")=0 + Set gtmtypes("struct_jrec_pfin",1,"len")=24 + Set gtmtypes("struct_jrec_pfin",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_pfin","prefix")=1 + Set gtmtypes("struct_jrec_pfin",2,"name")="struct_jrec_pfin.prefix.pini_addr" + Set gtmtypes("struct_jrec_pfin",2,"off")=4 + Set gtmtypes("struct_jrec_pfin",2,"len")=4 + Set gtmtypes("struct_jrec_pfin",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_pfin",3,"name")="struct_jrec_pfin.prefix.time" + Set gtmtypes("struct_jrec_pfin",3,"off")=8 + Set gtmtypes("struct_jrec_pfin",3,"len")=4 + Set gtmtypes("struct_jrec_pfin",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.time")=3 + Set gtmtypes("struct_jrec_pfin",4,"name")="struct_jrec_pfin.prefix.checksum" + Set gtmtypes("struct_jrec_pfin",4,"off")=12 + Set gtmtypes("struct_jrec_pfin",4,"len")=4 + Set gtmtypes("struct_jrec_pfin",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","prefix.checksum")=4 + Set gtmtypes("struct_jrec_pfin",5,"name")="struct_jrec_pfin.prefix.tn" + Set gtmtypes("struct_jrec_pfin",5,"off")=16 + Set gtmtypes("struct_jrec_pfin",5,"len")=8 + Set gtmtypes("struct_jrec_pfin",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_pfin","prefix.tn")=5 + Set gtmtypes("struct_jrec_pfin",6,"name")="struct_jrec_pfin.filler" + Set gtmtypes("struct_jrec_pfin",6,"off")=24 + Set gtmtypes("struct_jrec_pfin",6,"len")=4 + Set gtmtypes("struct_jrec_pfin",6,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pfin","filler")=6 + Set gtmtypes("struct_jrec_pfin",7,"name")="struct_jrec_pfin.suffix" + Set gtmtypes("struct_jrec_pfin",7,"off")=28 + Set gtmtypes("struct_jrec_pfin",7,"len")=4 + Set gtmtypes("struct_jrec_pfin",7,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_pfin","suffix")=7 + ; + Set gtmtypes("struct_jrec_pini")="struct" + Set gtmtypes("struct_jrec_pini",0)=18 + Set gtmtypes("struct_jrec_pini","len")=208 + Set gtmtypes("struct_jrec_pini",1,"name")="struct_jrec_pini.prefix" + Set gtmtypes("struct_jrec_pini",1,"off")=0 + Set gtmtypes("struct_jrec_pini",1,"len")=24 + Set gtmtypes("struct_jrec_pini",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_pini","prefix")=1 + Set gtmtypes("struct_jrec_pini",2,"name")="struct_jrec_pini.prefix.pini_addr" + Set gtmtypes("struct_jrec_pini",2,"off")=4 + Set gtmtypes("struct_jrec_pini",2,"len")=4 + Set gtmtypes("struct_jrec_pini",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_pini",3,"name")="struct_jrec_pini.prefix.time" + Set gtmtypes("struct_jrec_pini",3,"off")=8 + Set gtmtypes("struct_jrec_pini",3,"len")=4 + Set gtmtypes("struct_jrec_pini",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.time")=3 + Set gtmtypes("struct_jrec_pini",4,"name")="struct_jrec_pini.prefix.checksum" + Set gtmtypes("struct_jrec_pini",4,"off")=12 + Set gtmtypes("struct_jrec_pini",4,"len")=4 + Set gtmtypes("struct_jrec_pini",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","prefix.checksum")=4 + Set gtmtypes("struct_jrec_pini",5,"name")="struct_jrec_pini.prefix.tn" + Set gtmtypes("struct_jrec_pini",5,"off")=16 + Set gtmtypes("struct_jrec_pini",5,"len")=8 + Set gtmtypes("struct_jrec_pini",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_pini","prefix.tn")=5 + Set gtmtypes("struct_jrec_pini",6,"name")="struct_jrec_pini.process_vector" + Set gtmtypes("struct_jrec_pini",6,"off")=24 + Set gtmtypes("struct_jrec_pini",6,"len")=176 + Set gtmtypes("struct_jrec_pini",6,"type")="jnl_process_vector" + Set gtmtypfldindx("struct_jrec_pini","process_vector")=6 + Set gtmtypes("struct_jrec_pini",6,"dim")=2 + Set gtmtypes("struct_jrec_pini",7,"name")="struct_jrec_pini.process_vector[0].jpv_pid" + Set gtmtypes("struct_jrec_pini",7,"off")=24 + Set gtmtypes("struct_jrec_pini",7,"len")=4 + Set gtmtypes("struct_jrec_pini",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_pid")=7 + Set gtmtypes("struct_jrec_pini",8,"name")="struct_jrec_pini.process_vector[0].jpv_image_count" + Set gtmtypes("struct_jrec_pini",8,"off")=28 + Set gtmtypes("struct_jrec_pini",8,"len")=4 + Set gtmtypes("struct_jrec_pini",8,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_image_count")=8 + Set gtmtypes("struct_jrec_pini",9,"name")="struct_jrec_pini.process_vector[0].jpv_time" + Set gtmtypes("struct_jrec_pini",9,"off")=32 + Set gtmtypes("struct_jrec_pini",9,"len")=8 + Set gtmtypes("struct_jrec_pini",9,"type")="int64_t" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_time")=9 + Set gtmtypes("struct_jrec_pini",10,"name")="struct_jrec_pini.process_vector[0].jpv_login_time" + Set gtmtypes("struct_jrec_pini",10,"off")=40 + Set gtmtypes("struct_jrec_pini",10,"len")=8 + Set gtmtypes("struct_jrec_pini",10,"type")="int64_t" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_login_time")=10 + Set gtmtypes("struct_jrec_pini",11,"name")="struct_jrec_pini.process_vector[0].jpv_node" + Set gtmtypes("struct_jrec_pini",11,"off")=48 + Set gtmtypes("struct_jrec_pini",11,"len")=16 + Set gtmtypes("struct_jrec_pini",11,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_node")=11 + Set gtmtypes("struct_jrec_pini",12,"name")="struct_jrec_pini.process_vector[0].jpv_user" + Set gtmtypes("struct_jrec_pini",12,"off")=64 + Set gtmtypes("struct_jrec_pini",12,"len")=12 + Set gtmtypes("struct_jrec_pini",12,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_user")=12 + Set gtmtypes("struct_jrec_pini",13,"name")="struct_jrec_pini.process_vector[0].jpv_prcnam" + Set gtmtypes("struct_jrec_pini",13,"off")=76 + Set gtmtypes("struct_jrec_pini",13,"len")=16 + Set gtmtypes("struct_jrec_pini",13,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_prcnam")=13 + Set gtmtypes("struct_jrec_pini",14,"name")="struct_jrec_pini.process_vector[0].jpv_terminal" + Set gtmtypes("struct_jrec_pini",14,"off")=92 + Set gtmtypes("struct_jrec_pini",14,"len")=15 + Set gtmtypes("struct_jrec_pini",14,"type")="char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_terminal")=14 + Set gtmtypes("struct_jrec_pini",15,"name")="struct_jrec_pini.process_vector[0].jpv_mode" + Set gtmtypes("struct_jrec_pini",15,"off")=107 + Set gtmtypes("struct_jrec_pini",15,"len")=1 + Set gtmtypes("struct_jrec_pini",15,"type")="unsigned-char" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].jpv_mode")=15 + Set gtmtypes("struct_jrec_pini",16,"name")="struct_jrec_pini.process_vector[0].filler" + Set gtmtypes("struct_jrec_pini",16,"off")=108 + Set gtmtypes("struct_jrec_pini",16,"len")=4 + Set gtmtypes("struct_jrec_pini",16,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","process_vector[0].filler")=16 + Set gtmtypes("struct_jrec_pini",17,"name")="struct_jrec_pini.filler" + Set gtmtypes("struct_jrec_pini",17,"off")=200 + Set gtmtypes("struct_jrec_pini",17,"len")=4 + Set gtmtypes("struct_jrec_pini",17,"type")="int" + Set gtmtypfldindx("struct_jrec_pini","filler")=17 + Set gtmtypes("struct_jrec_pini",18,"name")="struct_jrec_pini.suffix" + Set gtmtypes("struct_jrec_pini",18,"off")=204 + Set gtmtypes("struct_jrec_pini",18,"len")=4 + Set gtmtypes("struct_jrec_pini",18,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_pini","suffix")=18 + ; + Set gtmtypes("struct_jrec_tcom")="struct" + Set gtmtypes("struct_jrec_tcom",0)=13 + Set gtmtypes("struct_jrec_tcom","len")=56 + Set gtmtypes("struct_jrec_tcom",1,"name")="struct_jrec_tcom.prefix" + Set gtmtypes("struct_jrec_tcom",1,"off")=0 + Set gtmtypes("struct_jrec_tcom",1,"len")=24 + Set gtmtypes("struct_jrec_tcom",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_tcom","prefix")=1 + Set gtmtypes("struct_jrec_tcom",2,"name")="struct_jrec_tcom.prefix.pini_addr" + Set gtmtypes("struct_jrec_tcom",2,"off")=4 + Set gtmtypes("struct_jrec_tcom",2,"len")=4 + Set gtmtypes("struct_jrec_tcom",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_tcom",3,"name")="struct_jrec_tcom.prefix.time" + Set gtmtypes("struct_jrec_tcom",3,"off")=8 + Set gtmtypes("struct_jrec_tcom",3,"len")=4 + Set gtmtypes("struct_jrec_tcom",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.time")=3 + Set gtmtypes("struct_jrec_tcom",4,"name")="struct_jrec_tcom.prefix.checksum" + Set gtmtypes("struct_jrec_tcom",4,"off")=12 + Set gtmtypes("struct_jrec_tcom",4,"len")=4 + Set gtmtypes("struct_jrec_tcom",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_tcom","prefix.checksum")=4 + Set gtmtypes("struct_jrec_tcom",5,"name")="struct_jrec_tcom.prefix.tn" + Set gtmtypes("struct_jrec_tcom",5,"off")=16 + Set gtmtypes("struct_jrec_tcom",5,"len")=8 + Set gtmtypes("struct_jrec_tcom",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","prefix.tn")=5 + Set gtmtypes("struct_jrec_tcom",6,"name")="struct_jrec_tcom.token_seq" + Set gtmtypes("struct_jrec_tcom",6,"off")=24 + Set gtmtypes("struct_jrec_tcom",6,"len")=8 + Set gtmtypes("struct_jrec_tcom",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq")=6 + Set gtmtypes("struct_jrec_tcom",7,"name")="struct_jrec_tcom.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_tcom",7,"off")=24 + Set gtmtypes("struct_jrec_tcom",7,"len")=8 + Set gtmtypes("struct_jrec_tcom",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_tcom",8,"name")="struct_jrec_tcom.token_seq.token" + Set gtmtypes("struct_jrec_tcom",8,"off")=24 + Set gtmtypes("struct_jrec_tcom",8,"len")=8 + Set gtmtypes("struct_jrec_tcom",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","token_seq.token")=8 + Set gtmtypes("struct_jrec_tcom",9,"name")="struct_jrec_tcom.strm_seqno" + Set gtmtypes("struct_jrec_tcom",9,"off")=32 + Set gtmtypes("struct_jrec_tcom",9,"len")=8 + Set gtmtypes("struct_jrec_tcom",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_tcom","strm_seqno")=9 + Set gtmtypes("struct_jrec_tcom",10,"name")="struct_jrec_tcom.filler_short" + Set gtmtypes("struct_jrec_tcom",10,"off")=40 + Set gtmtypes("struct_jrec_tcom",10,"len")=2 + Set gtmtypes("struct_jrec_tcom",10,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_tcom","filler_short")=10 + Set gtmtypes("struct_jrec_tcom",11,"name")="struct_jrec_tcom.num_participants" + Set gtmtypes("struct_jrec_tcom",11,"off")=42 + Set gtmtypes("struct_jrec_tcom",11,"len")=2 + Set gtmtypes("struct_jrec_tcom",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_tcom","num_participants")=11 + Set gtmtypes("struct_jrec_tcom",12,"name")="struct_jrec_tcom.jnl_tid" + Set gtmtypes("struct_jrec_tcom",12,"off")=44 + Set gtmtypes("struct_jrec_tcom",12,"len")=8 + Set gtmtypes("struct_jrec_tcom",12,"type")="char" + Set gtmtypfldindx("struct_jrec_tcom","jnl_tid")=12 + Set gtmtypes("struct_jrec_tcom",13,"name")="struct_jrec_tcom.suffix" + Set gtmtypes("struct_jrec_tcom",13,"off")=52 + Set gtmtypes("struct_jrec_tcom",13,"len")=4 + Set gtmtypes("struct_jrec_tcom",13,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_tcom","suffix")=13 + ; + Set gtmtypes("struct_jrec_trunc")="struct" + Set gtmtypes("struct_jrec_trunc",0)=9 + Set gtmtypes("struct_jrec_trunc","len")=40 + Set gtmtypes("struct_jrec_trunc",1,"name")="struct_jrec_trunc.prefix" + Set gtmtypes("struct_jrec_trunc",1,"off")=0 + Set gtmtypes("struct_jrec_trunc",1,"len")=24 + Set gtmtypes("struct_jrec_trunc",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_trunc","prefix")=1 + Set gtmtypes("struct_jrec_trunc",2,"name")="struct_jrec_trunc.prefix.pini_addr" + Set gtmtypes("struct_jrec_trunc",2,"off")=4 + Set gtmtypes("struct_jrec_trunc",2,"len")=4 + Set gtmtypes("struct_jrec_trunc",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_trunc",3,"name")="struct_jrec_trunc.prefix.time" + Set gtmtypes("struct_jrec_trunc",3,"off")=8 + Set gtmtypes("struct_jrec_trunc",3,"len")=4 + Set gtmtypes("struct_jrec_trunc",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.time")=3 + Set gtmtypes("struct_jrec_trunc",4,"name")="struct_jrec_trunc.prefix.checksum" + Set gtmtypes("struct_jrec_trunc",4,"off")=12 + Set gtmtypes("struct_jrec_trunc",4,"len")=4 + Set gtmtypes("struct_jrec_trunc",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","prefix.checksum")=4 + Set gtmtypes("struct_jrec_trunc",5,"name")="struct_jrec_trunc.prefix.tn" + Set gtmtypes("struct_jrec_trunc",5,"off")=16 + Set gtmtypes("struct_jrec_trunc",5,"len")=8 + Set gtmtypes("struct_jrec_trunc",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_trunc","prefix.tn")=5 + Set gtmtypes("struct_jrec_trunc",6,"name")="struct_jrec_trunc.orig_total_blks" + Set gtmtypes("struct_jrec_trunc",6,"off")=24 + Set gtmtypes("struct_jrec_trunc",6,"len")=4 + Set gtmtypes("struct_jrec_trunc",6,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","orig_total_blks")=6 + Set gtmtypes("struct_jrec_trunc",7,"name")="struct_jrec_trunc.orig_free_blocks" + Set gtmtypes("struct_jrec_trunc",7,"off")=28 + Set gtmtypes("struct_jrec_trunc",7,"len")=4 + Set gtmtypes("struct_jrec_trunc",7,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","orig_free_blocks")=7 + Set gtmtypes("struct_jrec_trunc",8,"name")="struct_jrec_trunc.total_blks_after_trunc" + Set gtmtypes("struct_jrec_trunc",8,"off")=32 + Set gtmtypes("struct_jrec_trunc",8,"len")=4 + Set gtmtypes("struct_jrec_trunc",8,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_trunc","total_blks_after_trunc")=8 + Set gtmtypes("struct_jrec_trunc",9,"name")="struct_jrec_trunc.suffix" + Set gtmtypes("struct_jrec_trunc",9,"off")=36 + Set gtmtypes("struct_jrec_trunc",9,"len")=4 + Set gtmtypes("struct_jrec_trunc",9,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_trunc","suffix")=9 + ; + Set gtmtypes("struct_jrec_upd")="struct" + Set gtmtypes("struct_jrec_upd",0)=14 + Set gtmtypes("struct_jrec_upd","len")=56 + Set gtmtypes("struct_jrec_upd",1,"name")="struct_jrec_upd.prefix" + Set gtmtypes("struct_jrec_upd",1,"off")=0 + Set gtmtypes("struct_jrec_upd",1,"len")=24 + Set gtmtypes("struct_jrec_upd",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_upd","prefix")=1 + Set gtmtypes("struct_jrec_upd",2,"name")="struct_jrec_upd.prefix.pini_addr" + Set gtmtypes("struct_jrec_upd",2,"off")=4 + Set gtmtypes("struct_jrec_upd",2,"len")=4 + Set gtmtypes("struct_jrec_upd",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_upd",3,"name")="struct_jrec_upd.prefix.time" + Set gtmtypes("struct_jrec_upd",3,"off")=8 + Set gtmtypes("struct_jrec_upd",3,"len")=4 + Set gtmtypes("struct_jrec_upd",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.time")=3 + Set gtmtypes("struct_jrec_upd",4,"name")="struct_jrec_upd.prefix.checksum" + Set gtmtypes("struct_jrec_upd",4,"off")=12 + Set gtmtypes("struct_jrec_upd",4,"len")=4 + Set gtmtypes("struct_jrec_upd",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","prefix.checksum")=4 + Set gtmtypes("struct_jrec_upd",5,"name")="struct_jrec_upd.prefix.tn" + Set gtmtypes("struct_jrec_upd",5,"off")=16 + Set gtmtypes("struct_jrec_upd",5,"len")=8 + Set gtmtypes("struct_jrec_upd",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","prefix.tn")=5 + Set gtmtypes("struct_jrec_upd",6,"name")="struct_jrec_upd.token_seq" + Set gtmtypes("struct_jrec_upd",6,"off")=24 + Set gtmtypes("struct_jrec_upd",6,"len")=8 + Set gtmtypes("struct_jrec_upd",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq")=6 + Set gtmtypes("struct_jrec_upd",7,"name")="struct_jrec_upd.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_upd",7,"off")=24 + Set gtmtypes("struct_jrec_upd",7,"len")=8 + Set gtmtypes("struct_jrec_upd",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_upd",8,"name")="struct_jrec_upd.token_seq.token" + Set gtmtypes("struct_jrec_upd",8,"off")=24 + Set gtmtypes("struct_jrec_upd",8,"len")=8 + Set gtmtypes("struct_jrec_upd",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","token_seq.token")=8 + Set gtmtypes("struct_jrec_upd",9,"name")="struct_jrec_upd.strm_seqno" + Set gtmtypes("struct_jrec_upd",9,"off")=32 + Set gtmtypes("struct_jrec_upd",9,"len")=8 + Set gtmtypes("struct_jrec_upd",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_upd","strm_seqno")=9 + Set gtmtypes("struct_jrec_upd",10,"name")="struct_jrec_upd.update_num" + Set gtmtypes("struct_jrec_upd",10,"off")=40 + Set gtmtypes("struct_jrec_upd",10,"len")=4 + Set gtmtypes("struct_jrec_upd",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_upd","update_num")=10 + Set gtmtypes("struct_jrec_upd",11,"name")="struct_jrec_upd.filler_short" + Set gtmtypes("struct_jrec_upd",11,"off")=44 + Set gtmtypes("struct_jrec_upd",11,"len")=2 + Set gtmtypes("struct_jrec_upd",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_upd","filler_short")=11 + Set gtmtypes("struct_jrec_upd",12,"name")="struct_jrec_upd.num_participants" + Set gtmtypes("struct_jrec_upd",12,"off")=46 + Set gtmtypes("struct_jrec_upd",12,"len")=2 + Set gtmtypes("struct_jrec_upd",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_upd","num_participants")=12 + Set gtmtypes("struct_jrec_upd",13,"name")="struct_jrec_upd.mumps_node" + Set gtmtypes("struct_jrec_upd",13,"off")=48 + Set gtmtypes("struct_jrec_upd",13,"len")=8 + Set gtmtypes("struct_jrec_upd",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_upd","mumps_node")=13 + Set gtmtypes("struct_jrec_upd",14,"name")="struct_jrec_upd.mumps_node.text" + Set gtmtypes("struct_jrec_upd",14,"off")=52 + Set gtmtypes("struct_jrec_upd",14,"len")=1 + Set gtmtypes("struct_jrec_upd",14,"type")="char" + Set gtmtypfldindx("struct_jrec_upd","mumps_node.text")=14 + ; + Set gtmtypes("struct_jrec_ztcom")="struct" + Set gtmtypes("struct_jrec_ztcom",0)=10 + Set gtmtypes("struct_jrec_ztcom","len")=48 + Set gtmtypes("struct_jrec_ztcom",1,"name")="struct_jrec_ztcom.prefix" + Set gtmtypes("struct_jrec_ztcom",1,"off")=0 + Set gtmtypes("struct_jrec_ztcom",1,"len")=24 + Set gtmtypes("struct_jrec_ztcom",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_ztcom","prefix")=1 + Set gtmtypes("struct_jrec_ztcom",2,"name")="struct_jrec_ztcom.prefix.pini_addr" + Set gtmtypes("struct_jrec_ztcom",2,"off")=4 + Set gtmtypes("struct_jrec_ztcom",2,"len")=4 + Set gtmtypes("struct_jrec_ztcom",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_ztcom",3,"name")="struct_jrec_ztcom.prefix.time" + Set gtmtypes("struct_jrec_ztcom",3,"off")=8 + Set gtmtypes("struct_jrec_ztcom",3,"len")=4 + Set gtmtypes("struct_jrec_ztcom",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.time")=3 + Set gtmtypes("struct_jrec_ztcom",4,"name")="struct_jrec_ztcom.prefix.checksum" + Set gtmtypes("struct_jrec_ztcom",4,"off")=12 + Set gtmtypes("struct_jrec_ztcom",4,"len")=4 + Set gtmtypes("struct_jrec_ztcom",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.checksum")=4 + Set gtmtypes("struct_jrec_ztcom",5,"name")="struct_jrec_ztcom.prefix.tn" + Set gtmtypes("struct_jrec_ztcom",5,"off")=16 + Set gtmtypes("struct_jrec_ztcom",5,"len")=8 + Set gtmtypes("struct_jrec_ztcom",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","prefix.tn")=5 + Set gtmtypes("struct_jrec_ztcom",6,"name")="struct_jrec_ztcom.token" + Set gtmtypes("struct_jrec_ztcom",6,"off")=24 + Set gtmtypes("struct_jrec_ztcom",6,"len")=8 + Set gtmtypes("struct_jrec_ztcom",6,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","token")=6 + Set gtmtypes("struct_jrec_ztcom",7,"name")="struct_jrec_ztcom.filler_8bytes" + Set gtmtypes("struct_jrec_ztcom",7,"off")=32 + Set gtmtypes("struct_jrec_ztcom",7,"len")=8 + Set gtmtypes("struct_jrec_ztcom",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztcom","filler_8bytes")=7 + Set gtmtypes("struct_jrec_ztcom",8,"name")="struct_jrec_ztcom.filler_short" + Set gtmtypes("struct_jrec_ztcom",8,"off")=40 + Set gtmtypes("struct_jrec_ztcom",8,"len")=2 + Set gtmtypes("struct_jrec_ztcom",8,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztcom","filler_short")=8 + Set gtmtypes("struct_jrec_ztcom",9,"name")="struct_jrec_ztcom.participants" + Set gtmtypes("struct_jrec_ztcom",9,"off")=42 + Set gtmtypes("struct_jrec_ztcom",9,"len")=2 + Set gtmtypes("struct_jrec_ztcom",9,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztcom","participants")=9 + Set gtmtypes("struct_jrec_ztcom",10,"name")="struct_jrec_ztcom.suffix" + Set gtmtypes("struct_jrec_ztcom",10,"off")=44 + Set gtmtypes("struct_jrec_ztcom",10,"len")=4 + Set gtmtypes("struct_jrec_ztcom",10,"type")="jrec_suffix" + Set gtmtypfldindx("struct_jrec_ztcom","suffix")=10 + ; + Set gtmtypes("struct_jrec_ztworm")="struct" + Set gtmtypes("struct_jrec_ztworm",0)=14 + Set gtmtypes("struct_jrec_ztworm","len")=56 + Set gtmtypes("struct_jrec_ztworm",1,"name")="struct_jrec_ztworm.prefix" + Set gtmtypes("struct_jrec_ztworm",1,"off")=0 + Set gtmtypes("struct_jrec_ztworm",1,"len")=24 + Set gtmtypes("struct_jrec_ztworm",1,"type")="jrec_prefix" + Set gtmtypfldindx("struct_jrec_ztworm","prefix")=1 + Set gtmtypes("struct_jrec_ztworm",2,"name")="struct_jrec_ztworm.prefix.pini_addr" + Set gtmtypes("struct_jrec_ztworm",2,"off")=4 + Set gtmtypes("struct_jrec_ztworm",2,"len")=4 + Set gtmtypes("struct_jrec_ztworm",2,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.pini_addr")=2 + Set gtmtypes("struct_jrec_ztworm",3,"name")="struct_jrec_ztworm.prefix.time" + Set gtmtypes("struct_jrec_ztworm",3,"off")=8 + Set gtmtypes("struct_jrec_ztworm",3,"len")=4 + Set gtmtypes("struct_jrec_ztworm",3,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.time")=3 + Set gtmtypes("struct_jrec_ztworm",4,"name")="struct_jrec_ztworm.prefix.checksum" + Set gtmtypes("struct_jrec_ztworm",4,"off")=12 + Set gtmtypes("struct_jrec_ztworm",4,"len")=4 + Set gtmtypes("struct_jrec_ztworm",4,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.checksum")=4 + Set gtmtypes("struct_jrec_ztworm",5,"name")="struct_jrec_ztworm.prefix.tn" + Set gtmtypes("struct_jrec_ztworm",5,"off")=16 + Set gtmtypes("struct_jrec_ztworm",5,"len")=8 + Set gtmtypes("struct_jrec_ztworm",5,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","prefix.tn")=5 + Set gtmtypes("struct_jrec_ztworm",6,"name")="struct_jrec_ztworm.token_seq" + Set gtmtypes("struct_jrec_ztworm",6,"off")=24 + Set gtmtypes("struct_jrec_ztworm",6,"len")=8 + Set gtmtypes("struct_jrec_ztworm",6,"type")="token_seq_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq")=6 + Set gtmtypes("struct_jrec_ztworm",7,"name")="struct_jrec_ztworm.token_seq.jnl_seqno" + Set gtmtypes("struct_jrec_ztworm",7,"off")=24 + Set gtmtypes("struct_jrec_ztworm",7,"len")=8 + Set gtmtypes("struct_jrec_ztworm",7,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq.jnl_seqno")=7 + Set gtmtypes("struct_jrec_ztworm",8,"name")="struct_jrec_ztworm.token_seq.token" + Set gtmtypes("struct_jrec_ztworm",8,"off")=24 + Set gtmtypes("struct_jrec_ztworm",8,"len")=8 + Set gtmtypes("struct_jrec_ztworm",8,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","token_seq.token")=8 + Set gtmtypes("struct_jrec_ztworm",9,"name")="struct_jrec_ztworm.strm_seqno" + Set gtmtypes("struct_jrec_ztworm",9,"off")=32 + Set gtmtypes("struct_jrec_ztworm",9,"len")=8 + Set gtmtypes("struct_jrec_ztworm",9,"type")="uint64_t" + Set gtmtypfldindx("struct_jrec_ztworm","strm_seqno")=9 + Set gtmtypes("struct_jrec_ztworm",10,"name")="struct_jrec_ztworm.update_num" + Set gtmtypes("struct_jrec_ztworm",10,"off")=40 + Set gtmtypes("struct_jrec_ztworm",10,"len")=4 + Set gtmtypes("struct_jrec_ztworm",10,"type")="unsigned-int" + Set gtmtypfldindx("struct_jrec_ztworm","update_num")=10 + Set gtmtypes("struct_jrec_ztworm",11,"name")="struct_jrec_ztworm.filler_short" + Set gtmtypes("struct_jrec_ztworm",11,"off")=44 + Set gtmtypes("struct_jrec_ztworm",11,"len")=2 + Set gtmtypes("struct_jrec_ztworm",11,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztworm","filler_short")=11 + Set gtmtypes("struct_jrec_ztworm",12,"name")="struct_jrec_ztworm.num_participants" + Set gtmtypes("struct_jrec_ztworm",12,"off")=46 + Set gtmtypes("struct_jrec_ztworm",12,"len")=2 + Set gtmtypes("struct_jrec_ztworm",12,"type")="unsigned-short" + Set gtmtypfldindx("struct_jrec_ztworm","num_participants")=12 + Set gtmtypes("struct_jrec_ztworm",13,"name")="struct_jrec_ztworm.ztworm_str" + Set gtmtypes("struct_jrec_ztworm",13,"off")=48 + Set gtmtypes("struct_jrec_ztworm",13,"len")=8 + Set gtmtypes("struct_jrec_ztworm",13,"type")="jnl_string" + Set gtmtypfldindx("struct_jrec_ztworm","ztworm_str")=13 + Set gtmtypes("struct_jrec_ztworm",14,"name")="struct_jrec_ztworm.ztworm_str.text" + Set gtmtypes("struct_jrec_ztworm",14,"off")=52 + Set gtmtypes("struct_jrec_ztworm",14,"len")=1 + Set gtmtypes("struct_jrec_ztworm",14,"type")="char" + Set gtmtypfldindx("struct_jrec_ztworm","ztworm_str.text")=14 + ; + Set gtmtypes("super_srch_hist")="struct" + Set gtmtypes("super_srch_hist",0)=18 + Set gtmtypes("super_srch_hist","len")=776 + Set gtmtypes("super_srch_hist",1,"name")="super_srch_hist.depth" + Set gtmtypes("super_srch_hist",1,"off")=0 + Set gtmtypes("super_srch_hist",1,"len")=4 + Set gtmtypes("super_srch_hist",1,"type")="int" + Set gtmtypfldindx("super_srch_hist","depth")=1 + Set gtmtypes("super_srch_hist",2,"name")="super_srch_hist.filler" + Set gtmtypes("super_srch_hist",2,"off")=4 + Set gtmtypes("super_srch_hist",2,"len")=4 + Set gtmtypes("super_srch_hist",2,"type")="int" + Set gtmtypfldindx("super_srch_hist","filler")=2 + Set gtmtypes("super_srch_hist",3,"name")="super_srch_hist.h" + Set gtmtypes("super_srch_hist",3,"off")=8 + Set gtmtypes("super_srch_hist",3,"len")=768 + Set gtmtypes("super_srch_hist",3,"type")="srch_blk_status" + Set gtmtypfldindx("super_srch_hist","h")=3 + Set gtmtypes("super_srch_hist",3,"dim")=16 + Set gtmtypes("super_srch_hist",4,"name")="super_srch_hist.h[0].cr" + Set gtmtypes("super_srch_hist",4,"off")=8 + Set gtmtypes("super_srch_hist",4,"len")=4 + Set gtmtypes("super_srch_hist",4,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].cr")=4 + Set gtmtypes("super_srch_hist",5,"name")="super_srch_hist.h[0].buffaddr" + Set gtmtypes("super_srch_hist",5,"off")=12 + Set gtmtypes("super_srch_hist",5,"len")=4 + Set gtmtypes("super_srch_hist",5,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].buffaddr")=5 + Set gtmtypes("super_srch_hist",6,"name")="super_srch_hist.h[0].blk_num" + Set gtmtypes("super_srch_hist",6,"off")=16 + Set gtmtypes("super_srch_hist",6,"len")=4 + Set gtmtypes("super_srch_hist",6,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].blk_num")=6 + Set gtmtypes("super_srch_hist",7,"name")="super_srch_hist.h[0].tn" + Set gtmtypes("super_srch_hist",7,"off")=20 + Set gtmtypes("super_srch_hist",7,"len")=8 + Set gtmtypes("super_srch_hist",7,"type")="uint64_t" + Set gtmtypfldindx("super_srch_hist","h[0].tn")=7 + Set gtmtypes("super_srch_hist",8,"name")="super_srch_hist.h[0].prev_rec" + Set gtmtypes("super_srch_hist",8,"off")=28 + Set gtmtypes("super_srch_hist",8,"len")=4 + Set gtmtypes("super_srch_hist",8,"type")="srch_rec_status" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec")=8 + Set gtmtypes("super_srch_hist",9,"name")="super_srch_hist.h[0].prev_rec.offset" + Set gtmtypes("super_srch_hist",9,"off")=28 + Set gtmtypes("super_srch_hist",9,"len")=2 + Set gtmtypes("super_srch_hist",9,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec.offset")=9 + Set gtmtypes("super_srch_hist",10,"name")="super_srch_hist.h[0].prev_rec.match" + Set gtmtypes("super_srch_hist",10,"off")=30 + Set gtmtypes("super_srch_hist",10,"len")=2 + Set gtmtypes("super_srch_hist",10,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].prev_rec.match")=10 + Set gtmtypes("super_srch_hist",11,"name")="super_srch_hist.h[0].curr_rec" + Set gtmtypes("super_srch_hist",11,"off")=32 + Set gtmtypes("super_srch_hist",11,"len")=4 + Set gtmtypes("super_srch_hist",11,"type")="srch_rec_status" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec")=11 + Set gtmtypes("super_srch_hist",12,"name")="super_srch_hist.h[0].curr_rec.offset" + Set gtmtypes("super_srch_hist",12,"off")=32 + Set gtmtypes("super_srch_hist",12,"len")=2 + Set gtmtypes("super_srch_hist",12,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec.offset")=12 + Set gtmtypes("super_srch_hist",13,"name")="super_srch_hist.h[0].curr_rec.match" + Set gtmtypes("super_srch_hist",13,"off")=34 + Set gtmtypes("super_srch_hist",13,"len")=2 + Set gtmtypes("super_srch_hist",13,"type")="unsigned-short" + Set gtmtypfldindx("super_srch_hist","h[0].curr_rec.match")=13 + Set gtmtypes("super_srch_hist",14,"name")="super_srch_hist.h[0].cycle" + Set gtmtypes("super_srch_hist",14,"off")=36 + Set gtmtypes("super_srch_hist",14,"len")=4 + Set gtmtypes("super_srch_hist",14,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].cycle")=14 + Set gtmtypes("super_srch_hist",15,"name")="super_srch_hist.h[0].level" + Set gtmtypes("super_srch_hist",15,"off")=40 + Set gtmtypes("super_srch_hist",15,"len")=4 + Set gtmtypes("super_srch_hist",15,"type")="int" + Set gtmtypfldindx("super_srch_hist","h[0].level")=15 + Set gtmtypes("super_srch_hist",16,"name")="super_srch_hist.h[0].cse" + Set gtmtypes("super_srch_hist",16,"off")=44 + Set gtmtypes("super_srch_hist",16,"len")=4 + Set gtmtypes("super_srch_hist",16,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].cse")=16 + Set gtmtypes("super_srch_hist",17,"name")="super_srch_hist.h[0].first_tp_srch_status" + Set gtmtypes("super_srch_hist",17,"off")=48 + Set gtmtypes("super_srch_hist",17,"len")=4 + Set gtmtypes("super_srch_hist",17,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].first_tp_srch_status")=17 + Set gtmtypes("super_srch_hist",18,"name")="super_srch_hist.h[0].blk_target" + Set gtmtypes("super_srch_hist",18,"off")=52 + Set gtmtypes("super_srch_hist",18,"len")=4 + Set gtmtypes("super_srch_hist",18,"type")="addr" + Set gtmtypfldindx("super_srch_hist","h[0].blk_target")=18 + ; + Set gtmtypes("svn_data_type")="struct" + Set gtmtypes("svn_data_type",0)=3 + Set gtmtypes("svn_data_type","len")=8 + Set gtmtypes("svn_data_type",1,"name")="svn_data_type.opcode" + Set gtmtypes("svn_data_type",1,"off")=0 + Set gtmtypes("svn_data_type",1,"len")=4 + Set gtmtypes("svn_data_type",1,"type")="unsigned-int" + Set gtmtypfldindx("svn_data_type","opcode")=1 + Set gtmtypes("svn_data_type",2,"name")="svn_data_type.can_set" + Set gtmtypes("svn_data_type",2,"off")=4 + Set gtmtypes("svn_data_type",2,"len")=1 + Set gtmtypes("svn_data_type",2,"type")="char" + Set gtmtypfldindx("svn_data_type","can_set")=2 + Set gtmtypes("svn_data_type",3,"name")="svn_data_type.os_syst" + Set gtmtypes("svn_data_type",3,"off")=5 + Set gtmtypes("svn_data_type",3,"len")=1 + Set gtmtypes("svn_data_type",3,"type")="char" + Set gtmtypfldindx("svn_data_type","os_syst")=3 + ; + Set gtmtypes("symval")="struct" + Set gtmtypes("symval",0)=30 + Set gtmtypes("symval","len")=112 + Set gtmtypes("symval",1,"name")="symval.ident" + Set gtmtypes("symval",1,"off")=0 + Set gtmtypes("symval",1,"len")=2 + Set gtmtypes("symval",1,"type")="unsigned-short" + Set gtmtypfldindx("symval","ident")=1 + Set gtmtypes("symval",2,"name")="symval.sbs_depth" + Set gtmtypes("symval",2,"off")=2 + Set gtmtypes("symval",2,"len")=2 + Set gtmtypes("symval",2,"type")="unsigned-short" + Set gtmtypfldindx("symval","sbs_depth")=2 + Set gtmtypes("symval",3,"name")="symval.tp_save_all" + Set gtmtypes("symval",3,"off")=4 + Set gtmtypes("symval",3,"len")=4 + Set gtmtypes("symval",3,"type")="boolean_t" + Set gtmtypfldindx("symval","tp_save_all")=3 + Set gtmtypes("symval",4,"name")="symval.xnew_var_list" + Set gtmtypes("symval",4,"off")=8 + Set gtmtypes("symval",4,"len")=4 + Set gtmtypes("symval",4,"type")="addr" + Set gtmtypfldindx("symval","xnew_var_list")=4 + Set gtmtypes("symval",5,"name")="symval.xnew_ref_list" + Set gtmtypes("symval",5,"off")=12 + Set gtmtypes("symval",5,"len")=4 + Set gtmtypes("symval",5,"type")="addr" + Set gtmtypfldindx("symval","xnew_ref_list")=5 + Set gtmtypes("symval",6,"name")="symval.h_symtab" + Set gtmtypes("symval",6,"off")=16 + Set gtmtypes("symval",6,"len")=56 + Set gtmtypes("symval",6,"type")="hash_table_mname" + Set gtmtypfldindx("symval","h_symtab")=6 + Set gtmtypes("symval",7,"name")="symval.h_symtab.base" + Set gtmtypes("symval",7,"off")=16 + Set gtmtypes("symval",7,"len")=4 + Set gtmtypes("symval",7,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.base")=7 + Set gtmtypes("symval",8,"name")="symval.h_symtab.top" + Set gtmtypes("symval",8,"off")=20 + Set gtmtypes("symval",8,"len")=4 + Set gtmtypes("symval",8,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.top")=8 + Set gtmtypes("symval",9,"name")="symval.h_symtab.size" + Set gtmtypes("symval",9,"off")=24 + Set gtmtypes("symval",9,"len")=4 + Set gtmtypes("symval",9,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.size")=9 + Set gtmtypes("symval",10,"name")="symval.h_symtab.initial_size" + Set gtmtypes("symval",10,"off")=28 + Set gtmtypes("symval",10,"len")=4 + Set gtmtypes("symval",10,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.initial_size")=10 + Set gtmtypes("symval",11,"name")="symval.h_symtab.spare_base" + Set gtmtypes("symval",11,"off")=32 + Set gtmtypes("symval",11,"len")=4 + Set gtmtypes("symval",11,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.spare_base")=11 + Set gtmtypes("symval",12,"name")="symval.h_symtab.spare_base_size" + Set gtmtypes("symval",12,"off")=36 + Set gtmtypes("symval",12,"len")=4 + Set gtmtypes("symval",12,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.spare_base_size")=12 + Set gtmtypes("symval",13,"name")="symval.h_symtab.dont_compact" + Set gtmtypes("symval",13,"off")=40 + Set gtmtypes("symval",13,"len")=4 + Set gtmtypes("symval",13,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.dont_compact")=13 + Set gtmtypes("symval",14,"name")="symval.h_symtab.dont_keep_spare_table" + Set gtmtypes("symval",14,"off")=44 + Set gtmtypes("symval",14,"len")=4 + Set gtmtypes("symval",14,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.dont_keep_spare_table")=14 + Set gtmtypes("symval",15,"name")="symval.h_symtab.defer_base_release" + Set gtmtypes("symval",15,"off")=48 + Set gtmtypes("symval",15,"len")=4 + Set gtmtypes("symval",15,"type")="boolean_t" + Set gtmtypfldindx("symval","h_symtab.defer_base_release")=15 + Set gtmtypes("symval",16,"name")="symval.h_symtab.count" + Set gtmtypes("symval",16,"off")=52 + Set gtmtypes("symval",16,"len")=4 + Set gtmtypes("symval",16,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.count")=16 + Set gtmtypes("symval",17,"name")="symval.h_symtab.del_count" + Set gtmtypes("symval",17,"off")=56 + Set gtmtypes("symval",17,"len")=4 + Set gtmtypes("symval",17,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.del_count")=17 + Set gtmtypes("symval",18,"name")="symval.h_symtab.exp_trigger_size" + Set gtmtypes("symval",18,"off")=60 + Set gtmtypes("symval",18,"len")=4 + Set gtmtypes("symval",18,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.exp_trigger_size")=18 + Set gtmtypes("symval",19,"name")="symval.h_symtab.cmp_trigger_size" + Set gtmtypes("symval",19,"off")=64 + Set gtmtypes("symval",19,"len")=4 + Set gtmtypes("symval",19,"type")="unsigned-int" + Set gtmtypfldindx("symval","h_symtab.cmp_trigger_size")=19 + Set gtmtypes("symval",20,"name")="symval.h_symtab.entry_passed_thru" + Set gtmtypes("symval",20,"off")=68 + Set gtmtypes("symval",20,"len")=4 + Set gtmtypes("symval",20,"type")="addr" + Set gtmtypfldindx("symval","h_symtab.entry_passed_thru")=20 + Set gtmtypes("symval",21,"name")="symval.lv_first_block" + Set gtmtypes("symval",21,"off")=72 + Set gtmtypes("symval",21,"len")=4 + Set gtmtypes("symval",21,"type")="addr" + Set gtmtypfldindx("symval","lv_first_block")=21 + Set gtmtypes("symval",22,"name")="symval.lvtree_first_block" + Set gtmtypes("symval",22,"off")=76 + Set gtmtypes("symval",22,"len")=4 + Set gtmtypes("symval",22,"type")="addr" + Set gtmtypfldindx("symval","lvtree_first_block")=22 + Set gtmtypes("symval",23,"name")="symval.lvtreenode_first_block" + Set gtmtypes("symval",23,"off")=80 + Set gtmtypes("symval",23,"len")=4 + Set gtmtypes("symval",23,"type")="addr" + Set gtmtypfldindx("symval","lvtreenode_first_block")=23 + Set gtmtypes("symval",24,"name")="symval.lv_flist" + Set gtmtypes("symval",24,"off")=84 + Set gtmtypes("symval",24,"len")=4 + Set gtmtypes("symval",24,"type")="addr" + Set gtmtypfldindx("symval","lv_flist")=24 + Set gtmtypes("symval",25,"name")="symval.lvtree_flist" + Set gtmtypes("symval",25,"off")=88 + Set gtmtypes("symval",25,"len")=4 + Set gtmtypes("symval",25,"type")="addr" + Set gtmtypfldindx("symval","lvtree_flist")=25 + Set gtmtypes("symval",26,"name")="symval.lvtreenode_flist" + Set gtmtypes("symval",26,"off")=92 + Set gtmtypes("symval",26,"len")=4 + Set gtmtypes("symval",26,"type")="addr" + Set gtmtypfldindx("symval","lvtreenode_flist")=26 + Set gtmtypes("symval",27,"name")="symval.last_tab" + Set gtmtypes("symval",27,"off")=96 + Set gtmtypes("symval",27,"len")=4 + Set gtmtypes("symval",27,"type")="addr" + Set gtmtypfldindx("symval","last_tab")=27 + Set gtmtypes("symval",28,"name")="symval.symvlvl" + Set gtmtypes("symval",28,"off")=100 + Set gtmtypes("symval",28,"len")=4 + Set gtmtypes("symval",28,"type")="int" + Set gtmtypfldindx("symval","symvlvl")=28 + Set gtmtypes("symval",29,"name")="symval.trigr_symval" + Set gtmtypes("symval",29,"off")=104 + Set gtmtypes("symval",29,"len")=4 + Set gtmtypes("symval",29,"type")="boolean_t" + Set gtmtypfldindx("symval","trigr_symval")=29 + Set gtmtypes("symval",30,"name")="symval.alias_activity" + Set gtmtypes("symval",30,"off")=108 + Set gtmtypes("symval",30,"len")=4 + Set gtmtypes("symval",30,"type")="boolean_t" + Set gtmtypfldindx("symval","alias_activity")=30 + ; + Set gtmtypes("tbp")="struct" + Set gtmtypes("tbp",0)=4 + Set gtmtypes("tbp","len")=12 + Set gtmtypes("tbp",1,"name")="tbp.que" + Set gtmtypes("tbp",1,"off")=0 + Set gtmtypes("tbp",1,"len")=8 + Set gtmtypes("tbp",1,"type")="struct" + Set gtmtypfldindx("tbp","que")=1 + Set gtmtypes("tbp",2,"name")="tbp.que.fl" + Set gtmtypes("tbp",2,"off")=0 + Set gtmtypes("tbp",2,"len")=4 + Set gtmtypes("tbp",2,"type")="addr" + Set gtmtypfldindx("tbp","que.fl")=2 + Set gtmtypes("tbp",3,"name")="tbp.que.bl" + Set gtmtypes("tbp",3,"off")=4 + Set gtmtypes("tbp",3,"len")=4 + Set gtmtypes("tbp",3,"type")="addr" + Set gtmtypfldindx("tbp","que.bl")=3 + Set gtmtypes("tbp",4,"name")="tbp.bpt" + Set gtmtypes("tbp",4,"off")=8 + Set gtmtypes("tbp",4,"len")=4 + Set gtmtypes("tbp",4,"type")="addr" + Set gtmtypfldindx("tbp","bpt")=4 + ; + Set gtmtypes("template_struct")="struct" + Set gtmtypes("template_struct",0)=5 + Set gtmtypes("template_struct","len")=3076 + Set gtmtypes("template_struct",1,"name")="template_struct.n_subs" + Set gtmtypes("template_struct",1,"off")=0 + Set gtmtypes("template_struct",1,"len")=2 + Set gtmtypes("template_struct",1,"type")="unsigned-short" + Set gtmtypfldindx("template_struct","n_subs")=1 + Set gtmtypes("template_struct",2,"name")="template_struct.sub" + Set gtmtypes("template_struct",2,"off")=4 + Set gtmtypes("template_struct",2,"len")=3072 + Set gtmtypes("template_struct",2,"type")="mstr" + Set gtmtypfldindx("template_struct","sub")=2 + Set gtmtypes("template_struct",2,"dim")=256 + Set gtmtypes("template_struct",3,"name")="template_struct.sub[0].char_len" + Set gtmtypes("template_struct",3,"off")=4 + Set gtmtypes("template_struct",3,"len")=4 + Set gtmtypes("template_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("template_struct","sub[0].char_len")=3 + Set gtmtypes("template_struct",4,"name")="template_struct.sub[0].len" + Set gtmtypes("template_struct",4,"off")=8 + Set gtmtypes("template_struct",4,"len")=4 + Set gtmtypes("template_struct",4,"type")="int" + Set gtmtypfldindx("template_struct","sub[0].len")=4 + Set gtmtypes("template_struct",5,"name")="template_struct.sub[0].addr" + Set gtmtypes("template_struct",5,"off")=12 + Set gtmtypes("template_struct",5,"len")=4 + Set gtmtypes("template_struct",5,"type")="addr" + Set gtmtypfldindx("template_struct","sub[0].addr")=5 + ; + Set gtmtypes("testpt_struct")="struct" + Set gtmtypes("testpt_struct",0)=1 + Set gtmtypes("testpt_struct","len")=1 + Set gtmtypes("testpt_struct",1,"name")="testpt_struct.wc_recover" + Set gtmtypes("testpt_struct",1,"off")=0 + Set gtmtypes("testpt_struct",1,"len")=1 + Set gtmtypes("testpt_struct",1,"type")="char" + Set gtmtypfldindx("testpt_struct","wc_recover")=1 + ; + Set gtmtypes("textElem")="struct" + Set gtmtypes("textElem",0)=9 + Set gtmtypes("textElem","len")=24 + Set gtmtypes("textElem",1,"name")="textElem.queueIndex" + Set gtmtypes("textElem",1,"off")=0 + Set gtmtypes("textElem",1,"len")=4 + Set gtmtypes("textElem",1,"type")="int" + Set gtmtypfldindx("textElem","queueIndex")=1 + Set gtmtypes("textElem",2,"name")="textElem.state" + Set gtmtypes("textElem",2,"off")=4 + Set gtmtypes("textElem",2,"len")=4 + Set gtmtypes("textElem",2,"type")="int" + Set gtmtypfldindx("textElem","state")=2 + Set gtmtypes("textElem",3,"name")="textElem.realLen" + Set gtmtypes("textElem",3,"off")=8 + Set gtmtypes("textElem",3,"len")=4 + Set gtmtypes("textElem",3,"type")="unsigned-int" + Set gtmtypfldindx("textElem","realLen")=3 + Set gtmtypes("textElem",4,"name")="textElem.filler" + Set gtmtypes("textElem",4,"off")=12 + Set gtmtypes("textElem",4,"len")=4 + Set gtmtypes("textElem",4,"type")="int" + Set gtmtypfldindx("textElem","filler")=4 + Set gtmtypes("textElem",5,"name")="textElem.userStorage" + Set gtmtypes("textElem",5,"off")=16 + Set gtmtypes("textElem",5,"len")=8 + Set gtmtypes("textElem",5,"type")="union" + Set gtmtypfldindx("textElem","userStorage")=5 + Set gtmtypes("textElem",6,"name")="textElem.userStorage.links" + Set gtmtypes("textElem",6,"off")=16 + Set gtmtypes("textElem",6,"len")=8 + Set gtmtypes("textElem",6,"type")="struct" + Set gtmtypfldindx("textElem","userStorage.links")=6 + Set gtmtypes("textElem",7,"name")="textElem.userStorage.links.fPtr" + Set gtmtypes("textElem",7,"off")=16 + Set gtmtypes("textElem",7,"len")=4 + Set gtmtypes("textElem",7,"type")="addr" + Set gtmtypfldindx("textElem","userStorage.links.fPtr")=7 + Set gtmtypes("textElem",8,"name")="textElem.userStorage.links.bPtr" + Set gtmtypes("textElem",8,"off")=20 + Set gtmtypes("textElem",8,"len")=4 + Set gtmtypes("textElem",8,"type")="addr" + Set gtmtypfldindx("textElem","userStorage.links.bPtr")=8 + Set gtmtypes("textElem",9,"name")="textElem.userStorage.userStart" + Set gtmtypes("textElem",9,"off")=16 + Set gtmtypes("textElem",9,"len")=1 + Set gtmtypes("textElem",9,"type")="unsigned-char" + Set gtmtypfldindx("textElem","userStorage.userStart")=9 + ; + Set gtmtypes("th_index")="struct" + Set gtmtypes("th_index",0)=9 + Set gtmtypes("th_index","len")=56 + Set gtmtypes("th_index",1,"name")="th_index.curr_tn" + Set gtmtypes("th_index",1,"off")=0 + Set gtmtypes("th_index",1,"len")=8 + Set gtmtypes("th_index",1,"type")="uint64_t" + Set gtmtypfldindx("th_index","curr_tn")=1 + Set gtmtypes("th_index",2,"name")="th_index.early_tn" + Set gtmtypes("th_index",2,"off")=8 + Set gtmtypes("th_index",2,"len")=8 + Set gtmtypes("th_index",2,"type")="uint64_t" + Set gtmtypfldindx("th_index","early_tn")=2 + Set gtmtypes("th_index",3,"name")="th_index.last_mm_sync" + Set gtmtypes("th_index",3,"off")=16 + Set gtmtypes("th_index",3,"len")=8 + Set gtmtypes("th_index",3,"type")="uint64_t" + Set gtmtypfldindx("th_index","last_mm_sync")=3 + Set gtmtypes("th_index",4,"name")="th_index.filler_8byte" + Set gtmtypes("th_index",4,"off")=24 + Set gtmtypes("th_index",4,"len")=8 + Set gtmtypes("th_index",4,"type")="char" + Set gtmtypfldindx("th_index","filler_8byte")=4 + Set gtmtypes("th_index",5,"name")="th_index.mm_tn" + Set gtmtypes("th_index",5,"off")=32 + Set gtmtypes("th_index",5,"len")=8 + Set gtmtypes("th_index",5,"type")="uint64_t" + Set gtmtypfldindx("th_index","mm_tn")=5 + Set gtmtypes("th_index",6,"name")="th_index.lock_sequence" + Set gtmtypes("th_index",6,"off")=40 + Set gtmtypes("th_index",6,"len")=4 + Set gtmtypes("th_index",6,"type")="unsigned-int" + Set gtmtypfldindx("th_index","lock_sequence")=6 + Set gtmtypes("th_index",7,"name")="th_index.ccp_jnl_filesize" + Set gtmtypes("th_index",7,"off")=44 + Set gtmtypes("th_index",7,"len")=4 + Set gtmtypes("th_index",7,"type")="unsigned-int" + Set gtmtypfldindx("th_index","ccp_jnl_filesize")=7 + Set gtmtypes("th_index",8,"name")="th_index.total_blks" + Set gtmtypes("th_index",8,"off")=48 + Set gtmtypes("th_index",8,"len")=4 + Set gtmtypes("th_index",8,"type")="unsigned-int" + Set gtmtypfldindx("th_index","total_blks")=8 + Set gtmtypes("th_index",9,"name")="th_index.free_blocks" + Set gtmtypes("th_index",9,"off")=52 + Set gtmtypes("th_index",9,"len")=4 + Set gtmtypes("th_index",9,"type")="unsigned-int" + Set gtmtypfldindx("th_index","free_blocks")=9 + ; + Set gtmtypes("th_rec")="struct" + Set gtmtypes("th_rec",0)=10 + Set gtmtypes("th_rec","len")=40 + Set gtmtypes("th_rec",1,"name")="th_rec.tnque" + Set gtmtypes("th_rec",1,"off")=0 + Set gtmtypes("th_rec",1,"len")=8 + Set gtmtypes("th_rec",1,"type")="struct" + Set gtmtypfldindx("th_rec","tnque")=1 + Set gtmtypes("th_rec",2,"name")="th_rec.tnque.fl" + Set gtmtypes("th_rec",2,"off")=0 + Set gtmtypes("th_rec",2,"len")=4 + Set gtmtypes("th_rec",2,"type")="intptr_t" + Set gtmtypfldindx("th_rec","tnque.fl")=2 + Set gtmtypes("th_rec",3,"name")="th_rec.tnque.bl" + Set gtmtypes("th_rec",3,"off")=4 + Set gtmtypes("th_rec",3,"len")=4 + Set gtmtypes("th_rec",3,"type")="intptr_t" + Set gtmtypfldindx("th_rec","tnque.bl")=3 + Set gtmtypes("th_rec",4,"name")="th_rec.tn" + Set gtmtypes("th_rec",4,"off")=8 + Set gtmtypes("th_rec",4,"len")=8 + Set gtmtypes("th_rec",4,"type")="uint64_t" + Set gtmtypfldindx("th_rec","tn")=4 + Set gtmtypes("th_rec",5,"name")="th_rec.killtn" + Set gtmtypes("th_rec",5,"off")=16 + Set gtmtypes("th_rec",5,"len")=8 + Set gtmtypes("th_rec",5,"type")="uint64_t" + Set gtmtypfldindx("th_rec","killtn")=5 + Set gtmtypes("th_rec",6,"name")="th_rec.blk" + Set gtmtypes("th_rec",6,"off")=24 + Set gtmtypes("th_rec",6,"len")=4 + Set gtmtypes("th_rec",6,"type")="int" + Set gtmtypfldindx("th_rec","blk")=6 + Set gtmtypes("th_rec",7,"name")="th_rec.cache_index" + Set gtmtypes("th_rec",7,"off")=28 + Set gtmtypes("th_rec",7,"len")=4 + Set gtmtypes("th_rec",7,"type")="int" + Set gtmtypfldindx("th_rec","cache_index")=7 + Set gtmtypes("th_rec",8,"name")="th_rec.flushing" + Set gtmtypes("th_rec",8,"off")=32 + Set gtmtypes("th_rec",8,"len")=1 + Set gtmtypes("th_rec",8,"type")="char" + Set gtmtypfldindx("th_rec","flushing")=8 + Set gtmtypes("th_rec",9,"name")="th_rec.filler" + Set gtmtypes("th_rec",9,"off")=33 + Set gtmtypes("th_rec",9,"len")=3 + Set gtmtypes("th_rec",9,"type")="char" + Set gtmtypfldindx("th_rec","filler")=9 + Set gtmtypes("th_rec",10,"name")="th_rec.filler_int4" + Set gtmtypes("th_rec",10,"off")=36 + Set gtmtypes("th_rec",10,"len")=4 + Set gtmtypes("th_rec",10,"type")="int" + Set gtmtypfldindx("th_rec","filler_int4")=10 + ; + Set gtmtypes("thread_parm_t")="struct" + Set gtmtypes("thread_parm_t",0)=5 + Set gtmtypes("thread_parm_t","len")=20 + Set gtmtypes("thread_parm_t",1,"name")="thread_parm_t.ntasks" + Set gtmtypes("thread_parm_t",1,"off")=0 + Set gtmtypes("thread_parm_t",1,"len")=4 + Set gtmtypes("thread_parm_t",1,"type")="int" + Set gtmtypfldindx("thread_parm_t","ntasks")=1 + Set gtmtypes("thread_parm_t",2,"name")="thread_parm_t.fnptr" + Set gtmtypes("thread_parm_t",2,"off")=4 + Set gtmtypes("thread_parm_t",2,"len")=4 + Set gtmtypes("thread_parm_t",2,"type")="gtm_pthread_fnptr_t" + Set gtmtypfldindx("thread_parm_t","fnptr")=2 + Set gtmtypes("thread_parm_t",3,"name")="thread_parm_t.ret_array" + Set gtmtypes("thread_parm_t",3,"off")=8 + Set gtmtypes("thread_parm_t",3,"len")=4 + Set gtmtypes("thread_parm_t",3,"type")="addr" + Set gtmtypfldindx("thread_parm_t","ret_array")=3 + Set gtmtypes("thread_parm_t",4,"name")="thread_parm_t.parm_array" + Set gtmtypes("thread_parm_t",4,"off")=12 + Set gtmtypes("thread_parm_t",4,"len")=4 + Set gtmtypes("thread_parm_t",4,"type")="addr" + Set gtmtypfldindx("thread_parm_t","parm_array")=4 + Set gtmtypes("thread_parm_t",5,"name")="thread_parm_t.parmElemSize" + Set gtmtypes("thread_parm_t",5,"off")=16 + Set gtmtypes("thread_parm_t",5,"len")=4 + Set gtmtypes("thread_parm_t",5,"type")="int" + Set gtmtypfldindx("thread_parm_t","parmElemSize")=5 + ; + Set gtmtypes("tlevel_info")="struct" + Set gtmtypes("tlevel_info",0)=12 + Set gtmtypes("tlevel_info","len")=44 + Set gtmtypes("tlevel_info",1,"name")="tlevel_info.free_que" + Set gtmtypes("tlevel_info",1,"off")=0 + Set gtmtypes("tlevel_info",1,"len")=8 + Set gtmtypes("tlevel_info",1,"type")="que_ent" + Set gtmtypfldindx("tlevel_info","free_que")=1 + Set gtmtypes("tlevel_info",2,"name")="tlevel_info.free_que.fl" + Set gtmtypes("tlevel_info",2,"off")=0 + Set gtmtypes("tlevel_info",2,"len")=4 + Set gtmtypes("tlevel_info",2,"type")="intptr_t" + Set gtmtypfldindx("tlevel_info","free_que.fl")=2 + Set gtmtypes("tlevel_info",3,"name")="tlevel_info.free_que.bl" + Set gtmtypes("tlevel_info",3,"off")=4 + Set gtmtypes("tlevel_info",3,"len")=4 + Set gtmtypes("tlevel_info",3,"type")="intptr_t" + Set gtmtypfldindx("tlevel_info","free_que.bl")=3 + Set gtmtypes("tlevel_info",4,"name")="tlevel_info.next_tlevel_info" + Set gtmtypes("tlevel_info",4,"off")=8 + Set gtmtypes("tlevel_info",4,"len")=4 + Set gtmtypes("tlevel_info",4,"type")="addr" + Set gtmtypfldindx("tlevel_info","next_tlevel_info")=4 + Set gtmtypes("tlevel_info",5,"name")="tlevel_info.tlvl_kill_set" + Set gtmtypes("tlevel_info",5,"off")=12 + Set gtmtypes("tlevel_info",5,"len")=4 + Set gtmtypes("tlevel_info",5,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_kill_set")=5 + Set gtmtypes("tlevel_info",6,"name")="tlevel_info.tlvl_kill_used" + Set gtmtypes("tlevel_info",6,"off")=16 + Set gtmtypes("tlevel_info",6,"len")=4 + Set gtmtypes("tlevel_info",6,"type")="int" + Set gtmtypfldindx("tlevel_info","tlvl_kill_used")=6 + Set gtmtypes("tlevel_info",7,"name")="tlevel_info.tlvl_jfb_info" + Set gtmtypes("tlevel_info",7,"off")=20 + Set gtmtypes("tlevel_info",7,"len")=4 + Set gtmtypes("tlevel_info",7,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_jfb_info")=7 + Set gtmtypes("tlevel_info",8,"name")="tlevel_info.tlvl_tp_hist_info" + Set gtmtypes("tlevel_info",8,"off")=24 + Set gtmtypes("tlevel_info",8,"len")=4 + Set gtmtypes("tlevel_info",8,"type")="addr" + Set gtmtypfldindx("tlevel_info","tlvl_tp_hist_info")=8 + Set gtmtypes("tlevel_info",9,"name")="tlevel_info.t_level" + Set gtmtypes("tlevel_info",9,"off")=28 + Set gtmtypes("tlevel_info",9,"len")=4 + Set gtmtypes("tlevel_info",9,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","t_level")=9 + Set gtmtypes("tlevel_info",10,"name")="tlevel_info.update_trans" + Set gtmtypes("tlevel_info",10,"off")=32 + Set gtmtypes("tlevel_info",10,"len")=4 + Set gtmtypes("tlevel_info",10,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","update_trans")=10 + Set gtmtypes("tlevel_info",11,"name")="tlevel_info.jnl_list_elems" + Set gtmtypes("tlevel_info",11,"off")=36 + Set gtmtypes("tlevel_info",11,"len")=4 + Set gtmtypes("tlevel_info",11,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","jnl_list_elems")=11 + Set gtmtypes("tlevel_info",12,"name")="tlevel_info.jfb_list_elems" + Set gtmtypes("tlevel_info",12,"off")=40 + Set gtmtypes("tlevel_info",12,"len")=4 + Set gtmtypes("tlevel_info",12,"type")="unsigned-int" + Set gtmtypfldindx("tlevel_info","jfb_list_elems")=12 + ; + Set gtmtypes("token_build")="union" + Set gtmtypes("token_build",0)=4 + Set gtmtypes("token_build","len")=8 + Set gtmtypes("token_build",1,"name")="token_build.t_piece" + Set gtmtypes("token_build",1,"off")=0 + Set gtmtypes("token_build",1,"len")=8 + Set gtmtypes("token_build",1,"type")="token_split_t" + Set gtmtypfldindx("token_build","t_piece")=1 + Set gtmtypes("token_build",2,"name")="token_build.t_piece.local_tn" + Set gtmtypes("token_build",2,"off")=0 + Set gtmtypes("token_build",2,"len")=4 + Set gtmtypes("token_build",2,"type")="unsigned-int" + Set gtmtypfldindx("token_build","t_piece.local_tn")=2 + Set gtmtypes("token_build",3,"name")="token_build.t_piece.process_id" + Set gtmtypes("token_build",3,"off")=4 + Set gtmtypes("token_build",3,"len")=4 + Set gtmtypes("token_build",3,"type")="unsigned-int" + Set gtmtypfldindx("token_build","t_piece.process_id")=3 + Set gtmtypes("token_build",4,"name")="token_build.token" + Set gtmtypes("token_build",4,"off")=0 + Set gtmtypes("token_build",4,"len")=8 + Set gtmtypes("token_build",4,"type")="uint64_t" + Set gtmtypfldindx("token_build","token")=4 + ; + Set gtmtypes("token_seq_t")="union" + Set gtmtypes("token_seq_t",0)=2 + Set gtmtypes("token_seq_t","len")=8 + Set gtmtypes("token_seq_t",1,"name")="token_seq_t.jnl_seqno" + Set gtmtypes("token_seq_t",1,"off")=0 + Set gtmtypes("token_seq_t",1,"len")=8 + Set gtmtypes("token_seq_t",1,"type")="uint64_t" + Set gtmtypfldindx("token_seq_t","jnl_seqno")=1 + Set gtmtypes("token_seq_t",2,"name")="token_seq_t.token" + Set gtmtypes("token_seq_t",2,"off")=0 + Set gtmtypes("token_seq_t",2,"len")=8 + Set gtmtypes("token_seq_t",2,"type")="uint64_t" + Set gtmtypfldindx("token_seq_t","token")=2 + ; + Set gtmtypes("token_split_t")="struct" + Set gtmtypes("token_split_t",0)=2 + Set gtmtypes("token_split_t","len")=8 + Set gtmtypes("token_split_t",1,"name")="token_split_t.local_tn" + Set gtmtypes("token_split_t",1,"off")=0 + Set gtmtypes("token_split_t",1,"len")=4 + Set gtmtypes("token_split_t",1,"type")="unsigned-int" + Set gtmtypfldindx("token_split_t","local_tn")=1 + Set gtmtypes("token_split_t",2,"name")="token_split_t.process_id" + Set gtmtypes("token_split_t",2,"off")=4 + Set gtmtypes("token_split_t",2,"len")=4 + Set gtmtypes("token_split_t",2,"type")="unsigned-int" + Set gtmtypfldindx("token_split_t","process_id")=2 + ; + Set gtmtypes("toktabtype")="struct" + Set gtmtypes("toktabtype",0)=4 + Set gtmtypes("toktabtype","len")=28 + Set gtmtypes("toktabtype",1,"name")="toktabtype.name" + Set gtmtypes("toktabtype",1,"off")=0 + Set gtmtypes("toktabtype",1,"len")=20 + Set gtmtypes("toktabtype",1,"type")="char" + Set gtmtypfldindx("toktabtype","name")=1 + Set gtmtypes("toktabtype",2,"name")="toktabtype.bo_type" + Set gtmtypes("toktabtype",2,"off")=20 + Set gtmtypes("toktabtype",2,"len")=4 + Set gtmtypes("toktabtype",2,"type")="unsigned-int" + Set gtmtypfldindx("toktabtype","bo_type")=2 + Set gtmtypes("toktabtype",3,"name")="toktabtype.uo_type" + Set gtmtypes("toktabtype",3,"off")=24 + Set gtmtypes("toktabtype",3,"len")=1 + Set gtmtypes("toktabtype",3,"type")="char" + Set gtmtypfldindx("toktabtype","uo_type")=3 + Set gtmtypes("toktabtype",4,"name")="toktabtype.opr_type" + Set gtmtypes("toktabtype",4,"off")=26 + Set gtmtypes("toktabtype",4,"len")=2 + Set gtmtypes("toktabtype",4,"type")="unsigned-short" + Set gtmtypfldindx("toktabtype","opr_type")=4 + ; + Set gtmtypes("tp_frame")="struct" + Set gtmtypes("tp_frame",0)=36 + Set gtmtypes("tp_frame","len")=128 + Set gtmtypes("tp_frame",1,"name")="tp_frame.restart_pc" + Set gtmtypes("tp_frame",1,"off")=4 + Set gtmtypes("tp_frame",1,"len")=4 + Set gtmtypes("tp_frame",1,"type")="addr" + Set gtmtypfldindx("tp_frame","restart_pc")=1 + Set gtmtypes("tp_frame",2,"name")="tp_frame.fp" + Set gtmtypes("tp_frame",2,"off")=8 + Set gtmtypes("tp_frame",2,"len")=4 + Set gtmtypes("tp_frame",2,"type")="addr" + Set gtmtypfldindx("tp_frame","fp")=2 + Set gtmtypes("tp_frame",3,"name")="tp_frame.mvc" + Set gtmtypes("tp_frame",3,"off")=12 + Set gtmtypes("tp_frame",3,"len")=4 + Set gtmtypes("tp_frame",3,"type")="addr" + Set gtmtypfldindx("tp_frame","mvc")=3 + Set gtmtypes("tp_frame",4,"name")="tp_frame.orig_gv_target" + Set gtmtypes("tp_frame",4,"off")=16 + Set gtmtypes("tp_frame",4,"len")=4 + Set gtmtypes("tp_frame",4,"type")="addr" + Set gtmtypfldindx("tp_frame","orig_gv_target")=4 + Set gtmtypes("tp_frame",5,"name")="tp_frame.orig_key" + Set gtmtypes("tp_frame",5,"off")=20 + Set gtmtypes("tp_frame",5,"len")=4 + Set gtmtypes("tp_frame",5,"type")="addr" + Set gtmtypfldindx("tp_frame","orig_key")=5 + Set gtmtypes("tp_frame",6,"name")="tp_frame.gd_header" + Set gtmtypes("tp_frame",6,"off")=24 + Set gtmtypes("tp_frame",6,"len")=4 + Set gtmtypes("tp_frame",6,"type")="addr" + Set gtmtypfldindx("tp_frame","gd_header")=6 + Set gtmtypes("tp_frame",7,"name")="tp_frame.gd_reg" + Set gtmtypes("tp_frame",7,"off")=28 + Set gtmtypes("tp_frame",7,"len")=4 + Set gtmtypes("tp_frame",7,"type")="addr" + Set gtmtypfldindx("tp_frame","gd_reg")=7 + Set gtmtypes("tp_frame",8,"name")="tp_frame.sym" + Set gtmtypes("tp_frame",8,"off")=32 + Set gtmtypes("tp_frame",8,"len")=4 + Set gtmtypes("tp_frame",8,"type")="addr" + Set gtmtypfldindx("tp_frame","sym")=8 + Set gtmtypes("tp_frame",9,"name")="tp_frame.vars" + Set gtmtypes("tp_frame",9,"off")=36 + Set gtmtypes("tp_frame",9,"len")=4 + Set gtmtypes("tp_frame",9,"type")="addr" + Set gtmtypfldindx("tp_frame","vars")=9 + Set gtmtypes("tp_frame",10,"name")="tp_frame.zgbldir" + Set gtmtypes("tp_frame",10,"off")=40 + Set gtmtypes("tp_frame",10,"len")=32 + Set gtmtypes("tp_frame",10,"type")="mval" + Set gtmtypfldindx("tp_frame","zgbldir")=10 + Set gtmtypes("tp_frame",11,"name")="tp_frame.zgbldir.mvtype" + Set gtmtypes("tp_frame",11,"off")=40 + Set gtmtypes("tp_frame",11,"len")=2 + Set gtmtypes("tp_frame",11,"type")="unsigned-short" + Set gtmtypfldindx("tp_frame","zgbldir.mvtype")=11 + Set gtmtypes("tp_frame",12,"name")="tp_frame.zgbldir.fnpc_indx" + Set gtmtypes("tp_frame",12,"off")=43 + Set gtmtypes("tp_frame",12,"len")=1 + Set gtmtypes("tp_frame",12,"type")="unsigned-char" + Set gtmtypfldindx("tp_frame","zgbldir.fnpc_indx")=12 + Set gtmtypes("tp_frame",13,"name")="tp_frame.zgbldir.utfcgr_indx" + Set gtmtypes("tp_frame",13,"off")=44 + Set gtmtypes("tp_frame",13,"len")=4 + Set gtmtypes("tp_frame",13,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.utfcgr_indx")=13 + Set gtmtypes("tp_frame",14,"name")="tp_frame.zgbldir.filler2" + Set gtmtypes("tp_frame",14,"off")=48 + Set gtmtypes("tp_frame",14,"len")=4 + Set gtmtypes("tp_frame",14,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.filler2")=14 + Set gtmtypes("tp_frame",15,"name")="tp_frame.zgbldir.m" + Set gtmtypes("tp_frame",15,"off")=52 + Set gtmtypes("tp_frame",15,"len")=8 + Set gtmtypes("tp_frame",15,"type")="int" + Set gtmtypfldindx("tp_frame","zgbldir.m")=15 + Set gtmtypes("tp_frame",15,"dim")=2 + Set gtmtypes("tp_frame",16,"name")="tp_frame.zgbldir.str" + Set gtmtypes("tp_frame",16,"off")=60 + Set gtmtypes("tp_frame",16,"len")=12 + Set gtmtypes("tp_frame",16,"type")="mstr" + Set gtmtypfldindx("tp_frame","zgbldir.str")=16 + Set gtmtypes("tp_frame",17,"name")="tp_frame.zgbldir.str.char_len" + Set gtmtypes("tp_frame",17,"off")=60 + Set gtmtypes("tp_frame",17,"len")=4 + Set gtmtypes("tp_frame",17,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","zgbldir.str.char_len")=17 + Set gtmtypes("tp_frame",18,"name")="tp_frame.zgbldir.str.len" + Set gtmtypes("tp_frame",18,"off")=64 + Set gtmtypes("tp_frame",18,"len")=4 + Set gtmtypes("tp_frame",18,"type")="int" + Set gtmtypfldindx("tp_frame","zgbldir.str.len")=18 + Set gtmtypes("tp_frame",19,"name")="tp_frame.zgbldir.str.addr" + Set gtmtypes("tp_frame",19,"off")=68 + Set gtmtypes("tp_frame",19,"len")=4 + Set gtmtypes("tp_frame",19,"type")="addr" + Set gtmtypfldindx("tp_frame","zgbldir.str.addr")=19 + Set gtmtypes("tp_frame",20,"name")="tp_frame.trans_id" + Set gtmtypes("tp_frame",20,"off")=72 + Set gtmtypes("tp_frame",20,"len")=32 + Set gtmtypes("tp_frame",20,"type")="mval" + Set gtmtypfldindx("tp_frame","trans_id")=20 + Set gtmtypes("tp_frame",21,"name")="tp_frame.trans_id.mvtype" + Set gtmtypes("tp_frame",21,"off")=72 + Set gtmtypes("tp_frame",21,"len")=2 + Set gtmtypes("tp_frame",21,"type")="unsigned-short" + Set gtmtypfldindx("tp_frame","trans_id.mvtype")=21 + Set gtmtypes("tp_frame",22,"name")="tp_frame.trans_id.fnpc_indx" + Set gtmtypes("tp_frame",22,"off")=75 + Set gtmtypes("tp_frame",22,"len")=1 + Set gtmtypes("tp_frame",22,"type")="unsigned-char" + Set gtmtypfldindx("tp_frame","trans_id.fnpc_indx")=22 + Set gtmtypes("tp_frame",23,"name")="tp_frame.trans_id.utfcgr_indx" + Set gtmtypes("tp_frame",23,"off")=76 + Set gtmtypes("tp_frame",23,"len")=4 + Set gtmtypes("tp_frame",23,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.utfcgr_indx")=23 + Set gtmtypes("tp_frame",24,"name")="tp_frame.trans_id.filler2" + Set gtmtypes("tp_frame",24,"off")=80 + Set gtmtypes("tp_frame",24,"len")=4 + Set gtmtypes("tp_frame",24,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.filler2")=24 + Set gtmtypes("tp_frame",25,"name")="tp_frame.trans_id.m" + Set gtmtypes("tp_frame",25,"off")=84 + Set gtmtypes("tp_frame",25,"len")=8 + Set gtmtypes("tp_frame",25,"type")="int" + Set gtmtypfldindx("tp_frame","trans_id.m")=25 + Set gtmtypes("tp_frame",25,"dim")=2 + Set gtmtypes("tp_frame",26,"name")="tp_frame.trans_id.str" + Set gtmtypes("tp_frame",26,"off")=92 + Set gtmtypes("tp_frame",26,"len")=12 + Set gtmtypes("tp_frame",26,"type")="mstr" + Set gtmtypfldindx("tp_frame","trans_id.str")=26 + Set gtmtypes("tp_frame",27,"name")="tp_frame.trans_id.str.char_len" + Set gtmtypes("tp_frame",27,"off")=92 + Set gtmtypes("tp_frame",27,"len")=4 + Set gtmtypes("tp_frame",27,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","trans_id.str.char_len")=27 + Set gtmtypes("tp_frame",28,"name")="tp_frame.trans_id.str.len" + Set gtmtypes("tp_frame",28,"off")=96 + Set gtmtypes("tp_frame",28,"len")=4 + Set gtmtypes("tp_frame",28,"type")="int" + Set gtmtypfldindx("tp_frame","trans_id.str.len")=28 + Set gtmtypes("tp_frame",29,"name")="tp_frame.trans_id.str.addr" + Set gtmtypes("tp_frame",29,"off")=100 + Set gtmtypes("tp_frame",29,"len")=4 + Set gtmtypes("tp_frame",29,"type")="addr" + Set gtmtypfldindx("tp_frame","trans_id.str.addr")=29 + Set gtmtypes("tp_frame",30,"name")="tp_frame.extnam_str" + Set gtmtypes("tp_frame",30,"off")=104 + Set gtmtypes("tp_frame",30,"len")=12 + Set gtmtypes("tp_frame",30,"type")="mstr" + Set gtmtypfldindx("tp_frame","extnam_str")=30 + Set gtmtypes("tp_frame",31,"name")="tp_frame.extnam_str.char_len" + Set gtmtypes("tp_frame",31,"off")=104 + Set gtmtypes("tp_frame",31,"len")=4 + Set gtmtypes("tp_frame",31,"type")="unsigned-int" + Set gtmtypfldindx("tp_frame","extnam_str.char_len")=31 + Set gtmtypes("tp_frame",32,"name")="tp_frame.extnam_str.len" + Set gtmtypes("tp_frame",32,"off")=108 + Set gtmtypes("tp_frame",32,"len")=4 + Set gtmtypes("tp_frame",32,"type")="int" + Set gtmtypfldindx("tp_frame","extnam_str.len")=32 + Set gtmtypes("tp_frame",33,"name")="tp_frame.extnam_str.addr" + Set gtmtypes("tp_frame",33,"off")=112 + Set gtmtypes("tp_frame",33,"len")=4 + Set gtmtypes("tp_frame",33,"type")="addr" + Set gtmtypfldindx("tp_frame","extnam_str.addr")=33 + Set gtmtypes("tp_frame",34,"name")="tp_frame.old_tp_frame" + Set gtmtypes("tp_frame",34,"off")=116 + Set gtmtypes("tp_frame",34,"len")=4 + Set gtmtypes("tp_frame",34,"type")="addr" + Set gtmtypfldindx("tp_frame","old_tp_frame")=34 + Set gtmtypes("tp_frame",35,"name")="tp_frame.restart_ctxt" + Set gtmtypes("tp_frame",35,"off")=120 + Set gtmtypes("tp_frame",35,"len")=4 + Set gtmtypes("tp_frame",35,"type")="addr" + Set gtmtypfldindx("tp_frame","restart_ctxt")=35 + Set gtmtypes("tp_frame",36,"name")="tp_frame.active_lv" + Set gtmtypes("tp_frame",36,"off")=124 + Set gtmtypes("tp_frame",36,"len")=4 + Set gtmtypes("tp_frame",36,"type")="addr" + Set gtmtypfldindx("tp_frame","active_lv")=36 + ; + Set gtmtypes("tp_region")="struct" + Set gtmtypes("tp_region",0)=8 + Set gtmtypes("tp_region","len")=28 + Set gtmtypes("tp_region",1,"name")="tp_region.fPtr" + Set gtmtypes("tp_region",1,"off")=0 + Set gtmtypes("tp_region",1,"len")=4 + Set gtmtypes("tp_region",1,"type")="addr" + Set gtmtypfldindx("tp_region","fPtr")=1 + Set gtmtypes("tp_region",2,"name")="tp_region.reg" + Set gtmtypes("tp_region",2,"off")=4 + Set gtmtypes("tp_region",2,"len")=4 + Set gtmtypes("tp_region",2,"type")="addr" + Set gtmtypfldindx("tp_region","reg")=2 + Set gtmtypes("tp_region",3,"name")="tp_region.file" + Set gtmtypes("tp_region",3,"off")=8 + Set gtmtypes("tp_region",3,"len")=20 + Set gtmtypes("tp_region",3,"type")="union" + Set gtmtypfldindx("tp_region","file")=3 + Set gtmtypes("tp_region",4,"name")="tp_region.file.file_id" + Set gtmtypes("tp_region",4,"off")=8 + Set gtmtypes("tp_region",4,"len")=20 + Set gtmtypes("tp_region",4,"type")="unix_file_id" + Set gtmtypfldindx("tp_region","file.file_id")=4 + Set gtmtypes("tp_region",5,"name")="tp_region.file.file_id.inode" + Set gtmtypes("tp_region",5,"off")=8 + Set gtmtypes("tp_region",5,"len")=8 + Set gtmtypes("tp_region",5,"type")="ino_t" + Set gtmtypfldindx("tp_region","file.file_id.inode")=5 + Set gtmtypes("tp_region",6,"name")="tp_region.file.file_id.device" + Set gtmtypes("tp_region",6,"off")=16 + Set gtmtypes("tp_region",6,"len")=8 + Set gtmtypes("tp_region",6,"type")="dev_t" + Set gtmtypfldindx("tp_region","file.file_id.device")=6 + Set gtmtypes("tp_region",7,"name")="tp_region.file.file_id.st_gen" + Set gtmtypes("tp_region",7,"off")=24 + Set gtmtypes("tp_region",7,"len")=4 + Set gtmtypes("tp_region",7,"type")="unsigned-int" + Set gtmtypfldindx("tp_region","file.file_id.st_gen")=7 + Set gtmtypes("tp_region",8,"name")="tp_region.file.fid_index" + Set gtmtypes("tp_region",8,"off")=8 + Set gtmtypes("tp_region",8,"len")=4 + Set gtmtypes("tp_region",8,"type")="int" + Set gtmtypfldindx("tp_region","file.fid_index")=8 + ; + Set gtmtypes("tp_var")="struct" + Set gtmtypes("tp_var",0)=11 + Set gtmtypes("tp_var","len")=36 + Set gtmtypes("tp_var",1,"name")="tp_var.next" + Set gtmtypes("tp_var",1,"off")=0 + Set gtmtypes("tp_var",1,"len")=4 + Set gtmtypes("tp_var",1,"type")="addr" + Set gtmtypfldindx("tp_var","next")=1 + Set gtmtypes("tp_var",2,"name")="tp_var.current_value" + Set gtmtypes("tp_var",2,"off")=4 + Set gtmtypes("tp_var",2,"len")=4 + Set gtmtypes("tp_var",2,"type")="addr" + Set gtmtypfldindx("tp_var","current_value")=2 + Set gtmtypes("tp_var",3,"name")="tp_var.save_value" + Set gtmtypes("tp_var",3,"off")=8 + Set gtmtypes("tp_var",3,"len")=4 + Set gtmtypes("tp_var",3,"type")="addr" + Set gtmtypfldindx("tp_var","save_value")=3 + Set gtmtypes("tp_var",4,"name")="tp_var.key" + Set gtmtypes("tp_var",4,"off")=12 + Set gtmtypes("tp_var",4,"len")=20 + Set gtmtypes("tp_var",4,"type")="mname_entry" + Set gtmtypfldindx("tp_var","key")=4 + Set gtmtypes("tp_var",5,"name")="tp_var.key.var_name" + Set gtmtypes("tp_var",5,"off")=12 + Set gtmtypes("tp_var",5,"len")=12 + Set gtmtypes("tp_var",5,"type")="mstr" + Set gtmtypfldindx("tp_var","key.var_name")=5 + Set gtmtypes("tp_var",6,"name")="tp_var.key.var_name.char_len" + Set gtmtypes("tp_var",6,"off")=12 + Set gtmtypes("tp_var",6,"len")=4 + Set gtmtypes("tp_var",6,"type")="unsigned-int" + Set gtmtypfldindx("tp_var","key.var_name.char_len")=6 + Set gtmtypes("tp_var",7,"name")="tp_var.key.var_name.len" + Set gtmtypes("tp_var",7,"off")=16 + Set gtmtypes("tp_var",7,"len")=4 + Set gtmtypes("tp_var",7,"type")="int" + Set gtmtypfldindx("tp_var","key.var_name.len")=7 + Set gtmtypes("tp_var",8,"name")="tp_var.key.var_name.addr" + Set gtmtypes("tp_var",8,"off")=20 + Set gtmtypes("tp_var",8,"len")=4 + Set gtmtypes("tp_var",8,"type")="addr" + Set gtmtypfldindx("tp_var","key.var_name.addr")=8 + Set gtmtypes("tp_var",9,"name")="tp_var.key.hash_code" + Set gtmtypes("tp_var",9,"off")=24 + Set gtmtypes("tp_var",9,"len")=4 + Set gtmtypes("tp_var",9,"type")="unsigned-int" + Set gtmtypfldindx("tp_var","key.hash_code")=9 + Set gtmtypes("tp_var",10,"name")="tp_var.key.marked" + Set gtmtypes("tp_var",10,"off")=28 + Set gtmtypes("tp_var",10,"len")=4 + Set gtmtypes("tp_var",10,"type")="boolean_t" + Set gtmtypfldindx("tp_var","key.marked")=10 + Set gtmtypes("tp_var",11,"name")="tp_var.var_cloned" + Set gtmtypes("tp_var",11,"off")=32 + Set gtmtypes("tp_var",11,"len")=4 + Set gtmtypes("tp_var",11,"type")="boolean_t" + Set gtmtypfldindx("tp_var","var_cloned")=11 + ; + Set gtmtypes("tr_search_status_t")="struct" + Set gtmtypes("tr_search_status_t",0)=2 + Set gtmtypes("tr_search_status_t","len")=16 + Set gtmtypes("tr_search_status_t",1,"name")="tr_search_status_t.seqno" + Set gtmtypes("tr_search_status_t",1,"off")=0 + Set gtmtypes("tr_search_status_t",1,"len")=8 + Set gtmtypes("tr_search_status_t",1,"type")="uint64_t" + Set gtmtypfldindx("tr_search_status_t","seqno")=1 + Set gtmtypes("tr_search_status_t",2,"name")="tr_search_status_t.prev_seqno" + Set gtmtypes("tr_search_status_t",2,"off")=8 + Set gtmtypes("tr_search_status_t",2,"len")=8 + Set gtmtypes("tr_search_status_t",2,"type")="uint64_t" + Set gtmtypfldindx("tr_search_status_t","prev_seqno")=2 + ; + Set gtmtypes("trace_entry")="struct" + Set gtmtypes("trace_entry",0)=9 + Set gtmtypes("trace_entry","len")=48 + Set gtmtypes("trace_entry",1,"name")="trace_entry.rout_name" + Set gtmtypes("trace_entry",1,"off")=0 + Set gtmtypes("trace_entry",1,"len")=4 + Set gtmtypes("trace_entry",1,"type")="addr" + Set gtmtypfldindx("trace_entry","rout_name")=1 + Set gtmtypes("trace_entry",2,"name")="trace_entry.label_name" + Set gtmtypes("trace_entry",2,"off")=4 + Set gtmtypes("trace_entry",2,"len")=4 + Set gtmtypes("trace_entry",2,"type")="addr" + Set gtmtypfldindx("trace_entry","label_name")=2 + Set gtmtypes("trace_entry",3,"name")="trace_entry.line_num" + Set gtmtypes("trace_entry",3,"off")=8 + Set gtmtypes("trace_entry",3,"len")=4 + Set gtmtypes("trace_entry",3,"type")="int" + Set gtmtypfldindx("trace_entry","line_num")=3 + Set gtmtypes("trace_entry",4,"name")="trace_entry.count" + Set gtmtypes("trace_entry",4,"off")=12 + Set gtmtypes("trace_entry",4,"len")=4 + Set gtmtypes("trace_entry",4,"type")="unsigned" + Set gtmtypfldindx("trace_entry","count")=4 + Set gtmtypes("trace_entry",5,"name")="trace_entry.sys_time" + Set gtmtypes("trace_entry",5,"off")=16 + Set gtmtypes("trace_entry",5,"len")=8 + Set gtmtypes("trace_entry",5,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","sys_time")=5 + Set gtmtypes("trace_entry",6,"name")="trace_entry.usr_time" + Set gtmtypes("trace_entry",6,"off")=24 + Set gtmtypes("trace_entry",6,"len")=8 + Set gtmtypes("trace_entry",6,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","usr_time")=6 + Set gtmtypes("trace_entry",7,"name")="trace_entry.elp_time" + Set gtmtypes("trace_entry",7,"off")=32 + Set gtmtypes("trace_entry",7,"len")=8 + Set gtmtypes("trace_entry",7,"type")="uint64_t" + Set gtmtypfldindx("trace_entry","elp_time")=7 + Set gtmtypes("trace_entry",8,"name")="trace_entry.loop_level" + Set gtmtypes("trace_entry",8,"off")=40 + Set gtmtypes("trace_entry",8,"len")=4 + Set gtmtypes("trace_entry",8,"type")="int" + Set gtmtypfldindx("trace_entry","loop_level")=8 + Set gtmtypes("trace_entry",9,"name")="trace_entry.raddr" + Set gtmtypes("trace_entry",9,"off")=44 + Set gtmtypes("trace_entry",9,"len")=4 + Set gtmtypes("trace_entry",9,"type")="addr" + Set gtmtypfldindx("trace_entry","raddr")=9 + ; + Set gtmtypes("trctbl_entry")="struct" + Set gtmtypes("trctbl_entry",0)=5 + Set gtmtypes("trctbl_entry","len")=20 + Set gtmtypes("trctbl_entry",1,"name")="trctbl_entry.type" + Set gtmtypes("trctbl_entry",1,"off")=0 + Set gtmtypes("trctbl_entry",1,"len")=4 + Set gtmtypes("trctbl_entry",1,"type")="int" + Set gtmtypfldindx("trctbl_entry","type")=1 + Set gtmtypes("trctbl_entry",2,"name")="trctbl_entry.intfld" + Set gtmtypes("trctbl_entry",2,"off")=4 + Set gtmtypes("trctbl_entry",2,"len")=4 + Set gtmtypes("trctbl_entry",2,"type")="int" + Set gtmtypfldindx("trctbl_entry","intfld")=2 + Set gtmtypes("trctbl_entry",3,"name")="trctbl_entry.addrfld1" + Set gtmtypes("trctbl_entry",3,"off")=8 + Set gtmtypes("trctbl_entry",3,"len")=4 + Set gtmtypes("trctbl_entry",3,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld1")=3 + Set gtmtypes("trctbl_entry",4,"name")="trctbl_entry.addrfld2" + Set gtmtypes("trctbl_entry",4,"off")=12 + Set gtmtypes("trctbl_entry",4,"len")=4 + Set gtmtypes("trctbl_entry",4,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld2")=4 + Set gtmtypes("trctbl_entry",5,"name")="trctbl_entry.addrfld3" + Set gtmtypes("trctbl_entry",5,"off")=16 + Set gtmtypes("trctbl_entry",5,"len")=4 + Set gtmtypes("trctbl_entry",5,"type")="addr" + Set gtmtypfldindx("trctbl_entry","addrfld3")=5 + ; + Set gtmtypes("treeSrchStatus")="struct" + Set gtmtypes("treeSrchStatus",0)=3 + Set gtmtypes("treeSrchStatus","len")=12 + Set gtmtypes("treeSrchStatus",1,"name")="treeSrchStatus.lastNodeLookedUp" + Set gtmtypes("treeSrchStatus",1,"off")=0 + Set gtmtypes("treeSrchStatus",1,"len")=4 + Set gtmtypes("treeSrchStatus",1,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeLookedUp")=1 + Set gtmtypes("treeSrchStatus",2,"name")="treeSrchStatus.lastNodeMin" + Set gtmtypes("treeSrchStatus",2,"off")=4 + Set gtmtypes("treeSrchStatus",2,"len")=4 + Set gtmtypes("treeSrchStatus",2,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeMin")=2 + Set gtmtypes("treeSrchStatus",3,"name")="treeSrchStatus.lastNodeMax" + Set gtmtypes("treeSrchStatus",3,"off")=8 + Set gtmtypes("treeSrchStatus",3,"len")=4 + Set gtmtypes("treeSrchStatus",3,"type")="addr" + Set gtmtypfldindx("treeSrchStatus","lastNodeMax")=3 + ; + Set gtmtypes("triple")="struct" + Set gtmtypes("triple",0)=50 + Set gtmtypes("triple","len")=72 + Set gtmtypes("triple",1,"name")="triple.opcode" + Set gtmtypes("triple",1,"off")=0 + Set gtmtypes("triple",1,"len")=4 + Set gtmtypes("triple",1,"type")="unsigned-int" + Set gtmtypfldindx("triple","opcode")=1 + Set gtmtypes("triple",2,"name")="triple.exorder" + Set gtmtypes("triple",2,"off")=4 + Set gtmtypes("triple",2,"len")=8 + Set gtmtypes("triple",2,"type")="struct" + Set gtmtypfldindx("triple","exorder")=2 + Set gtmtypes("triple",3,"name")="triple.exorder.fl" + Set gtmtypes("triple",3,"off")=4 + Set gtmtypes("triple",3,"len")=4 + Set gtmtypes("triple",3,"type")="addr" + Set gtmtypfldindx("triple","exorder.fl")=3 + Set gtmtypes("triple",4,"name")="triple.exorder.bl" + Set gtmtypes("triple",4,"off")=8 + Set gtmtypes("triple",4,"len")=4 + Set gtmtypes("triple",4,"type")="addr" + Set gtmtypfldindx("triple","exorder.bl")=4 + Set gtmtypes("triple",5,"name")="triple.backptr" + Set gtmtypes("triple",5,"off")=12 + Set gtmtypes("triple",5,"len")=12 + Set gtmtypes("triple",5,"type")="tbp" + Set gtmtypfldindx("triple","backptr")=5 + Set gtmtypes("triple",6,"name")="triple.backptr.que" + Set gtmtypes("triple",6,"off")=12 + Set gtmtypes("triple",6,"len")=8 + Set gtmtypes("triple",6,"type")="struct" + Set gtmtypfldindx("triple","backptr.que")=6 + Set gtmtypes("triple",7,"name")="triple.backptr.que.fl" + Set gtmtypes("triple",7,"off")=12 + Set gtmtypes("triple",7,"len")=4 + Set gtmtypes("triple",7,"type")="addr" + Set gtmtypfldindx("triple","backptr.que.fl")=7 + Set gtmtypes("triple",8,"name")="triple.backptr.que.bl" + Set gtmtypes("triple",8,"off")=16 + Set gtmtypes("triple",8,"len")=4 + Set gtmtypes("triple",8,"type")="addr" + Set gtmtypfldindx("triple","backptr.que.bl")=8 + Set gtmtypes("triple",9,"name")="triple.backptr.bpt" + Set gtmtypes("triple",9,"off")=20 + Set gtmtypes("triple",9,"len")=4 + Set gtmtypes("triple",9,"type")="addr" + Set gtmtypfldindx("triple","backptr.bpt")=9 + Set gtmtypes("triple",10,"name")="triple.jmplist" + Set gtmtypes("triple",10,"off")=24 + Set gtmtypes("triple",10,"len")=12 + Set gtmtypes("triple",10,"type")="tbp" + Set gtmtypfldindx("triple","jmplist")=10 + Set gtmtypes("triple",11,"name")="triple.jmplist.que" + Set gtmtypes("triple",11,"off")=24 + Set gtmtypes("triple",11,"len")=8 + Set gtmtypes("triple",11,"type")="struct" + Set gtmtypfldindx("triple","jmplist.que")=11 + Set gtmtypes("triple",12,"name")="triple.jmplist.que.fl" + Set gtmtypes("triple",12,"off")=24 + Set gtmtypes("triple",12,"len")=4 + Set gtmtypes("triple",12,"type")="addr" + Set gtmtypfldindx("triple","jmplist.que.fl")=12 + Set gtmtypes("triple",13,"name")="triple.jmplist.que.bl" + Set gtmtypes("triple",13,"off")=28 + Set gtmtypes("triple",13,"len")=4 + Set gtmtypes("triple",13,"type")="addr" + Set gtmtypfldindx("triple","jmplist.que.bl")=13 + Set gtmtypes("triple",14,"name")="triple.jmplist.bpt" + Set gtmtypes("triple",14,"off")=32 + Set gtmtypes("triple",14,"len")=4 + Set gtmtypes("triple",14,"type")="addr" + Set gtmtypfldindx("triple","jmplist.bpt")=14 + Set gtmtypes("triple",15,"name")="triple.src" + Set gtmtypes("triple",15,"off")=36 + Set gtmtypes("triple",15,"len")=8 + Set gtmtypes("triple",15,"type")="source_address" + Set gtmtypfldindx("triple","src")=15 + Set gtmtypes("triple",16,"name")="triple.src.line" + Set gtmtypes("triple",16,"off")=36 + Set gtmtypes("triple",16,"len")=4 + Set gtmtypes("triple",16,"type")="unsigned-int" + Set gtmtypfldindx("triple","src.line")=16 + Set gtmtypes("triple",17,"name")="triple.src.column" + Set gtmtypes("triple",17,"off")=40 + Set gtmtypes("triple",17,"len")=4 + Set gtmtypes("triple",17,"type")="unsigned-int" + Set gtmtypfldindx("triple","src.column")=17 + Set gtmtypes("triple",18,"name")="triple.rtaddr" + Set gtmtypes("triple",18,"off")=44 + Set gtmtypes("triple",18,"len")=4 + Set gtmtypes("triple",18,"type")="int" + Set gtmtypfldindx("triple","rtaddr")=18 + Set gtmtypes("triple",19,"name")="triple.operand" + Set gtmtypes("triple",19,"off")=48 + Set gtmtypes("triple",19,"len")=16 + Set gtmtypes("triple",19,"type")="oprtype" + Set gtmtypfldindx("triple","operand")=19 + Set gtmtypes("triple",19,"dim")=2 + Set gtmtypes("triple",20,"name")="triple.operand[0].oprclass" + Set gtmtypes("triple",20,"off")=48 + Set gtmtypes("triple",20,"len")=4 + Set gtmtypes("triple",20,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprclass")=20 + Set gtmtypes("triple",21,"name")="triple.operand[0].oprval" + Set gtmtypes("triple",21,"off")=52 + Set gtmtypes("triple",21,"len")=4 + Set gtmtypes("triple",21,"type")="union" + Set gtmtypfldindx("triple","operand[0].oprval")=21 + Set gtmtypes("triple",22,"name")="triple.operand[0].oprval.indr" + Set gtmtypes("triple",22,"off")=52 + Set gtmtypes("triple",22,"len")=4 + Set gtmtypes("triple",22,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.indr")=22 + Set gtmtypes("triple",23,"name")="triple.operand[0].oprval.tref" + Set gtmtypes("triple",23,"off")=52 + Set gtmtypes("triple",23,"len")=4 + Set gtmtypes("triple",23,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.tref")=23 + Set gtmtypes("triple",24,"name")="triple.operand[0].oprval.tsize" + Set gtmtypes("triple",24,"off")=52 + Set gtmtypes("triple",24,"len")=4 + Set gtmtypes("triple",24,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.tsize")=24 + Set gtmtypes("triple",25,"name")="triple.operand[0].oprval.lab" + Set gtmtypes("triple",25,"off")=52 + Set gtmtypes("triple",25,"len")=4 + Set gtmtypes("triple",25,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.lab")=25 + Set gtmtypes("triple",26,"name")="triple.operand[0].oprval.mlin" + Set gtmtypes("triple",26,"off")=52 + Set gtmtypes("triple",26,"len")=4 + Set gtmtypes("triple",26,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.mlin")=26 + Set gtmtypes("triple",27,"name")="triple.operand[0].oprval.mlit" + Set gtmtypes("triple",27,"off")=52 + Set gtmtypes("triple",27,"len")=4 + Set gtmtypes("triple",27,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.mlit")=27 + Set gtmtypes("triple",28,"name")="triple.operand[0].oprval.cdlt" + Set gtmtypes("triple",28,"off")=52 + Set gtmtypes("triple",28,"len")=4 + Set gtmtypes("triple",28,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.cdlt")=28 + Set gtmtypes("triple",29,"name")="triple.operand[0].oprval.cdidx" + Set gtmtypes("triple",29,"off")=52 + Set gtmtypes("triple",29,"len")=4 + Set gtmtypes("triple",29,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.cdidx")=29 + Set gtmtypes("triple",30,"name")="triple.operand[0].oprval.vref" + Set gtmtypes("triple",30,"off")=52 + Set gtmtypes("triple",30,"len")=4 + Set gtmtypes("triple",30,"type")="addr" + Set gtmtypfldindx("triple","operand[0].oprval.vref")=30 + Set gtmtypes("triple",31,"name")="triple.operand[0].oprval.temp" + Set gtmtypes("triple",31,"off")=52 + Set gtmtypes("triple",31,"len")=4 + Set gtmtypes("triple",31,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.temp")=31 + Set gtmtypes("triple",32,"name")="triple.operand[0].oprval.ilit" + Set gtmtypes("triple",32,"off")=52 + Set gtmtypes("triple",32,"len")=4 + Set gtmtypes("triple",32,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.ilit")=32 + Set gtmtypes("triple",33,"name")="triple.operand[0].oprval.offset" + Set gtmtypes("triple",33,"off")=52 + Set gtmtypes("triple",33,"len")=4 + Set gtmtypes("triple",33,"type")="int" + Set gtmtypfldindx("triple","operand[0].oprval.offset")=33 + Set gtmtypes("triple",34,"name")="triple.operand[0].oprval.vreg" + Set gtmtypes("triple",34,"off")=52 + Set gtmtypes("triple",34,"len")=1 + Set gtmtypes("triple",34,"type")="unsigned-char" + Set gtmtypfldindx("triple","operand[0].oprval.vreg")=34 + Set gtmtypes("triple",35,"name")="triple.destination" + Set gtmtypes("triple",35,"off")=64 + Set gtmtypes("triple",35,"len")=8 + Set gtmtypes("triple",35,"type")="oprtype" + Set gtmtypfldindx("triple","destination")=35 + Set gtmtypes("triple",36,"name")="triple.destination.oprclass" + Set gtmtypes("triple",36,"off")=64 + Set gtmtypes("triple",36,"len")=4 + Set gtmtypes("triple",36,"type")="int" + Set gtmtypfldindx("triple","destination.oprclass")=36 + Set gtmtypes("triple",37,"name")="triple.destination.oprval" + Set gtmtypes("triple",37,"off")=68 + Set gtmtypes("triple",37,"len")=4 + Set gtmtypes("triple",37,"type")="union" + Set gtmtypfldindx("triple","destination.oprval")=37 + Set gtmtypes("triple",38,"name")="triple.destination.oprval.indr" + Set gtmtypes("triple",38,"off")=68 + Set gtmtypes("triple",38,"len")=4 + Set gtmtypes("triple",38,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.indr")=38 + Set gtmtypes("triple",39,"name")="triple.destination.oprval.tref" + Set gtmtypes("triple",39,"off")=68 + Set gtmtypes("triple",39,"len")=4 + Set gtmtypes("triple",39,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.tref")=39 + Set gtmtypes("triple",40,"name")="triple.destination.oprval.tsize" + Set gtmtypes("triple",40,"off")=68 + Set gtmtypes("triple",40,"len")=4 + Set gtmtypes("triple",40,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.tsize")=40 + Set gtmtypes("triple",41,"name")="triple.destination.oprval.lab" + Set gtmtypes("triple",41,"off")=68 + Set gtmtypes("triple",41,"len")=4 + Set gtmtypes("triple",41,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.lab")=41 + Set gtmtypes("triple",42,"name")="triple.destination.oprval.mlin" + Set gtmtypes("triple",42,"off")=68 + Set gtmtypes("triple",42,"len")=4 + Set gtmtypes("triple",42,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.mlin")=42 + Set gtmtypes("triple",43,"name")="triple.destination.oprval.mlit" + Set gtmtypes("triple",43,"off")=68 + Set gtmtypes("triple",43,"len")=4 + Set gtmtypes("triple",43,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.mlit")=43 + Set gtmtypes("triple",44,"name")="triple.destination.oprval.cdlt" + Set gtmtypes("triple",44,"off")=68 + Set gtmtypes("triple",44,"len")=4 + Set gtmtypes("triple",44,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.cdlt")=44 + Set gtmtypes("triple",45,"name")="triple.destination.oprval.cdidx" + Set gtmtypes("triple",45,"off")=68 + Set gtmtypes("triple",45,"len")=4 + Set gtmtypes("triple",45,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.cdidx")=45 + Set gtmtypes("triple",46,"name")="triple.destination.oprval.vref" + Set gtmtypes("triple",46,"off")=68 + Set gtmtypes("triple",46,"len")=4 + Set gtmtypes("triple",46,"type")="addr" + Set gtmtypfldindx("triple","destination.oprval.vref")=46 + Set gtmtypes("triple",47,"name")="triple.destination.oprval.temp" + Set gtmtypes("triple",47,"off")=68 + Set gtmtypes("triple",47,"len")=4 + Set gtmtypes("triple",47,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.temp")=47 + Set gtmtypes("triple",48,"name")="triple.destination.oprval.ilit" + Set gtmtypes("triple",48,"off")=68 + Set gtmtypes("triple",48,"len")=4 + Set gtmtypes("triple",48,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.ilit")=48 + Set gtmtypes("triple",49,"name")="triple.destination.oprval.offset" + Set gtmtypes("triple",49,"off")=68 + Set gtmtypes("triple",49,"len")=4 + Set gtmtypes("triple",49,"type")="int" + Set gtmtypfldindx("triple","destination.oprval.offset")=49 + Set gtmtypes("triple",50,"name")="triple.destination.oprval.vreg" + Set gtmtypes("triple",50,"off")=68 + Set gtmtypes("triple",50,"len")=1 + Set gtmtypes("triple",50,"type")="unsigned-char" + Set gtmtypfldindx("triple","destination.oprval.vreg")=50 + ; + Set gtmtypes("tripsize")="struct" + Set gtmtypes("tripsize",0)=2 + Set gtmtypes("tripsize","len")=8 + Set gtmtypes("tripsize",1,"name")="tripsize.ct" + Set gtmtypes("tripsize",1,"off")=0 + Set gtmtypes("tripsize",1,"len")=4 + Set gtmtypes("tripsize",1,"type")="addr" + Set gtmtypfldindx("tripsize","ct")=1 + Set gtmtypes("tripsize",2,"name")="tripsize.size" + Set gtmtypes("tripsize",2,"off")=4 + Set gtmtypes("tripsize",2,"len")=4 + Set gtmtypes("tripsize",2,"type")="int" + Set gtmtypfldindx("tripsize","size")=2 + ; + Set gtmtypes("trunc_region")="struct" + Set gtmtypes("trunc_region",0)=2 + Set gtmtypes("trunc_region","len")=8 + Set gtmtypes("trunc_region",1,"name")="trunc_region.reg" + Set gtmtypes("trunc_region",1,"off")=0 + Set gtmtypes("trunc_region",1,"len")=4 + Set gtmtypes("trunc_region",1,"type")="addr" + Set gtmtypfldindx("trunc_region","reg")=1 + Set gtmtypes("trunc_region",2,"name")="trunc_region.next" + Set gtmtypes("trunc_region",2,"off")=4 + Set gtmtypes("trunc_region",2,"len")=4 + Set gtmtypes("trunc_region",2,"type")="addr" + Set gtmtypfldindx("trunc_region","next")=2 + ; + Set gtmtypes("tt_interrupt")="struct" + Set gtmtypes("tt_interrupt",0)=24 + Set gtmtypes("tt_interrupt","len")=104 + Set gtmtypes("tt_interrupt",1,"name")="tt_interrupt.who_saved" + Set gtmtypes("tt_interrupt",1,"off")=0 + Set gtmtypes("tt_interrupt",1,"len")=4 + Set gtmtypes("tt_interrupt",1,"type")="int" + Set gtmtypfldindx("tt_interrupt","who_saved")=1 + Set gtmtypes("tt_interrupt",2,"name")="tt_interrupt.buffer_start" + Set gtmtypes("tt_interrupt",2,"off")=4 + Set gtmtypes("tt_interrupt",2,"len")=4 + Set gtmtypes("tt_interrupt",2,"type")="addr" + Set gtmtypfldindx("tt_interrupt","buffer_start")=2 + Set gtmtypes("tt_interrupt",3,"name")="tt_interrupt.buffer_32_start" + Set gtmtypes("tt_interrupt",3,"off")=8 + Set gtmtypes("tt_interrupt",3,"len")=4 + Set gtmtypes("tt_interrupt",3,"type")="addr" + Set gtmtypfldindx("tt_interrupt","buffer_32_start")=3 + Set gtmtypes("tt_interrupt",4,"name")="tt_interrupt.utf8_more" + Set gtmtypes("tt_interrupt",4,"off")=12 + Set gtmtypes("tt_interrupt",4,"len")=4 + Set gtmtypes("tt_interrupt",4,"type")="int" + Set gtmtypfldindx("tt_interrupt","utf8_more")=4 + Set gtmtypes("tt_interrupt",5,"name")="tt_interrupt.dx" + Set gtmtypes("tt_interrupt",5,"off")=16 + Set gtmtypes("tt_interrupt",5,"len")=4 + Set gtmtypes("tt_interrupt",5,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx")=5 + Set gtmtypes("tt_interrupt",6,"name")="tt_interrupt.dx_start" + Set gtmtypes("tt_interrupt",6,"off")=20 + Set gtmtypes("tt_interrupt",6,"len")=4 + Set gtmtypes("tt_interrupt",6,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_start")=6 + Set gtmtypes("tt_interrupt",7,"name")="tt_interrupt.dx_instr" + Set gtmtypes("tt_interrupt",7,"off")=24 + Set gtmtypes("tt_interrupt",7,"len")=4 + Set gtmtypes("tt_interrupt",7,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_instr")=7 + Set gtmtypes("tt_interrupt",8,"name")="tt_interrupt.dx_outlen" + Set gtmtypes("tt_interrupt",8,"off")=28 + Set gtmtypes("tt_interrupt",8,"len")=4 + Set gtmtypes("tt_interrupt",8,"type")="int" + Set gtmtypfldindx("tt_interrupt","dx_outlen")=8 + Set gtmtypes("tt_interrupt",9,"name")="tt_interrupt.instr" + Set gtmtypes("tt_interrupt",9,"off")=32 + Set gtmtypes("tt_interrupt",9,"len")=4 + Set gtmtypes("tt_interrupt",9,"type")="int" + Set gtmtypfldindx("tt_interrupt","instr")=9 + Set gtmtypes("tt_interrupt",10,"name")="tt_interrupt.outlen" + Set gtmtypes("tt_interrupt",10,"off")=36 + Set gtmtypes("tt_interrupt",10,"len")=4 + Set gtmtypes("tt_interrupt",10,"type")="int" + Set gtmtypfldindx("tt_interrupt","outlen")=10 + Set gtmtypes("tt_interrupt",11,"name")="tt_interrupt.index" + Set gtmtypes("tt_interrupt",11,"off")=40 + Set gtmtypes("tt_interrupt",11,"len")=4 + Set gtmtypes("tt_interrupt",11,"type")="int" + Set gtmtypfldindx("tt_interrupt","index")=11 + Set gtmtypes("tt_interrupt",12,"name")="tt_interrupt.cl" + Set gtmtypes("tt_interrupt",12,"off")=44 + Set gtmtypes("tt_interrupt",12,"len")=4 + Set gtmtypes("tt_interrupt",12,"type")="int" + Set gtmtypfldindx("tt_interrupt","cl")=12 + Set gtmtypes("tt_interrupt",13,"name")="tt_interrupt.length" + Set gtmtypes("tt_interrupt",13,"off")=48 + Set gtmtypes("tt_interrupt",13,"len")=4 + Set gtmtypes("tt_interrupt",13,"type")="int" + Set gtmtypfldindx("tt_interrupt","length")=13 + Set gtmtypes("tt_interrupt",14,"name")="tt_interrupt.exp_length" + Set gtmtypes("tt_interrupt",14,"off")=52 + Set gtmtypes("tt_interrupt",14,"len")=4 + Set gtmtypes("tt_interrupt",14,"type")="int" + Set gtmtypfldindx("tt_interrupt","exp_length")=14 + Set gtmtypes("tt_interrupt",15,"name")="tt_interrupt.insert_mode" + Set gtmtypes("tt_interrupt",15,"off")=56 + Set gtmtypes("tt_interrupt",15,"len")=4 + Set gtmtypes("tt_interrupt",15,"type")="boolean_t" + Set gtmtypfldindx("tt_interrupt","insert_mode")=15 + Set gtmtypes("tt_interrupt",16,"name")="tt_interrupt.end_time" + Set gtmtypes("tt_interrupt",16,"off")=60 + Set gtmtypes("tt_interrupt",16,"len")=8 + Set gtmtypes("tt_interrupt",16,"type")="ABS_TIME" + Set gtmtypfldindx("tt_interrupt","end_time")=16 + Set gtmtypes("tt_interrupt",17,"name")="tt_interrupt.end_time.at_sec" + Set gtmtypes("tt_interrupt",17,"off")=60 + Set gtmtypes("tt_interrupt",17,"len")=4 + Set gtmtypes("tt_interrupt",17,"type")="long" + Set gtmtypfldindx("tt_interrupt","end_time.at_sec")=17 + Set gtmtypes("tt_interrupt",18,"name")="tt_interrupt.end_time.at_usec" + Set gtmtypes("tt_interrupt",18,"off")=64 + Set gtmtypes("tt_interrupt",18,"len")=4 + Set gtmtypes("tt_interrupt",18,"type")="long" + Set gtmtypfldindx("tt_interrupt","end_time.at_usec")=18 + Set gtmtypes("tt_interrupt",19,"name")="tt_interrupt.more_ptr" + Set gtmtypes("tt_interrupt",19,"off")=68 + Set gtmtypes("tt_interrupt",19,"len")=4 + Set gtmtypes("tt_interrupt",19,"type")="addr" + Set gtmtypfldindx("tt_interrupt","more_ptr")=19 + Set gtmtypes("tt_interrupt",20,"name")="tt_interrupt.zb_ptr" + Set gtmtypes("tt_interrupt",20,"off")=72 + Set gtmtypes("tt_interrupt",20,"len")=4 + Set gtmtypes("tt_interrupt",20,"type")="addr" + Set gtmtypfldindx("tt_interrupt","zb_ptr")=20 + Set gtmtypes("tt_interrupt",21,"name")="tt_interrupt.zb_top" + Set gtmtypes("tt_interrupt",21,"off")=76 + Set gtmtypes("tt_interrupt",21,"len")=4 + Set gtmtypes("tt_interrupt",21,"type")="addr" + Set gtmtypfldindx("tt_interrupt","zb_top")=21 + Set gtmtypes("tt_interrupt",22,"name")="tt_interrupt.escape_length" + Set gtmtypes("tt_interrupt",22,"off")=80 + Set gtmtypes("tt_interrupt",22,"len")=2 + Set gtmtypes("tt_interrupt",22,"type")="unsigned-short" + Set gtmtypfldindx("tt_interrupt","escape_length")=22 + Set gtmtypes("tt_interrupt",23,"name")="tt_interrupt.escape_sequence" + Set gtmtypes("tt_interrupt",23,"off")=82 + Set gtmtypes("tt_interrupt",23,"len")=16 + Set gtmtypes("tt_interrupt",23,"type")="unsigned-char" + Set gtmtypfldindx("tt_interrupt","escape_sequence")=23 + Set gtmtypes("tt_interrupt",24,"name")="tt_interrupt.more_buf" + Set gtmtypes("tt_interrupt",24,"off")=98 + Set gtmtypes("tt_interrupt",24,"len")=5 + Set gtmtypes("tt_interrupt",24,"type")="unsigned-char" + Set gtmtypfldindx("tt_interrupt","more_buf")=24 + ; + Set gtmtypes("ua_list")="struct" + Set gtmtypes("ua_list",0)=3 + Set gtmtypes("ua_list","len")=12 + Set gtmtypes("ua_list",1,"name")="ua_list.next_ua" + Set gtmtypes("ua_list",1,"off")=0 + Set gtmtypes("ua_list",1,"len")=4 + Set gtmtypes("ua_list",1,"type")="addr" + Set gtmtypfldindx("ua_list","next_ua")=1 + Set gtmtypes("ua_list",2,"name")="ua_list.update_array" + Set gtmtypes("ua_list",2,"off")=4 + Set gtmtypes("ua_list",2,"len")=4 + Set gtmtypes("ua_list",2,"type")="addr" + Set gtmtypfldindx("ua_list","update_array")=2 + Set gtmtypes("ua_list",3,"name")="ua_list.update_array_size" + Set gtmtypes("ua_list",3,"off")=8 + Set gtmtypes("ua_list",3,"len")=4 + Set gtmtypes("ua_list",3,"type")="unsigned-int" + Set gtmtypfldindx("ua_list","update_array_size")=3 + ; + Set gtmtypes("uic_struct_int")="struct" + Set gtmtypes("uic_struct_int",0)=2 + Set gtmtypes("uic_struct_int","len")=8 + Set gtmtypes("uic_struct_int",1,"name")="uic_struct_int.mem" + Set gtmtypes("uic_struct_int",1,"off")=0 + Set gtmtypes("uic_struct_int",1,"len")=4 + Set gtmtypes("uic_struct_int",1,"type")="uid_t" + Set gtmtypfldindx("uic_struct_int","mem")=1 + Set gtmtypes("uic_struct_int",2,"name")="uic_struct_int.grp" + Set gtmtypes("uic_struct_int",2,"off")=4 + Set gtmtypes("uic_struct_int",2,"len")=4 + Set gtmtypes("uic_struct_int",2,"type")="gid_t" + Set gtmtypfldindx("uic_struct_int","grp")=2 + ; + Set gtmtypes("unique_file_id")="union" + Set gtmtypes("unique_file_id",0)=5 + Set gtmtypes("unique_file_id","len")=20 + Set gtmtypes("unique_file_id",1,"name")="unique_file_id.uid" + Set gtmtypes("unique_file_id",1,"off")=0 + Set gtmtypes("unique_file_id",1,"len")=20 + Set gtmtypes("unique_file_id",1,"type")="unix_file_id" + Set gtmtypfldindx("unique_file_id","uid")=1 + Set gtmtypes("unique_file_id",2,"name")="unique_file_id.uid.inode" + Set gtmtypes("unique_file_id",2,"off")=0 + Set gtmtypes("unique_file_id",2,"len")=8 + Set gtmtypes("unique_file_id",2,"type")="ino_t" + Set gtmtypfldindx("unique_file_id","uid.inode")=2 + Set gtmtypes("unique_file_id",3,"name")="unique_file_id.uid.device" + Set gtmtypes("unique_file_id",3,"off")=8 + Set gtmtypes("unique_file_id",3,"len")=8 + Set gtmtypes("unique_file_id",3,"type")="dev_t" + Set gtmtypfldindx("unique_file_id","uid.device")=3 + Set gtmtypes("unique_file_id",4,"name")="unique_file_id.uid.st_gen" + Set gtmtypes("unique_file_id",4,"off")=16 + Set gtmtypes("unique_file_id",4,"len")=4 + Set gtmtypes("unique_file_id",4,"type")="unsigned-int" + Set gtmtypfldindx("unique_file_id","uid.st_gen")=4 + Set gtmtypes("unique_file_id",5,"name")="unique_file_id.file_id" + Set gtmtypes("unique_file_id",5,"off")=0 + Set gtmtypes("unique_file_id",5,"len")=20 + Set gtmtypes("unique_file_id",5,"type")="char" + Set gtmtypfldindx("unique_file_id","file_id")=5 + ; + Set gtmtypes("unix_db_info")="struct" + Set gtmtypes("unix_db_info",0)=163 + Set gtmtypes("unix_db_info","len")=900 + Set gtmtypes("unix_db_info",1,"name")="unix_db_info.s_addrs" + Set gtmtypes("unix_db_info",1,"off")=0 + Set gtmtypes("unix_db_info",1,"len")=820 + Set gtmtypes("unix_db_info",1,"type")="sgmnt_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs")=1 + Set gtmtypes("unix_db_info",2,"name")="unix_db_info.s_addrs.hdr" + Set gtmtypes("unix_db_info",2,"off")=0 + Set gtmtypes("unix_db_info",2,"len")=4 + Set gtmtypes("unix_db_info",2,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.hdr")=2 + Set gtmtypes("unix_db_info",3,"name")="unix_db_info.s_addrs.bmm" + Set gtmtypes("unix_db_info",3,"off")=4 + Set gtmtypes("unix_db_info",3,"len")=4 + Set gtmtypes("unix_db_info",3,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bmm")=3 + Set gtmtypes("unix_db_info",4,"name")="unix_db_info.s_addrs.wc" + Set gtmtypes("unix_db_info",4,"off")=8 + Set gtmtypes("unix_db_info",4,"len")=4 + Set gtmtypes("unix_db_info",4,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.wc")=4 + Set gtmtypes("unix_db_info",5,"name")="unix_db_info.s_addrs.bt_header" + Set gtmtypes("unix_db_info",5,"off")=12 + Set gtmtypes("unix_db_info",5,"len")=4 + Set gtmtypes("unix_db_info",5,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bt_header")=5 + Set gtmtypes("unix_db_info",6,"name")="unix_db_info.s_addrs.bt_base" + Set gtmtypes("unix_db_info",6,"off")=16 + Set gtmtypes("unix_db_info",6,"len")=4 + Set gtmtypes("unix_db_info",6,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.bt_base")=6 + Set gtmtypes("unix_db_info",7,"name")="unix_db_info.s_addrs.th_base" + Set gtmtypes("unix_db_info",7,"off")=20 + Set gtmtypes("unix_db_info",7,"len")=4 + Set gtmtypes("unix_db_info",7,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.th_base")=7 + Set gtmtypes("unix_db_info",8,"name")="unix_db_info.s_addrs.ti" + Set gtmtypes("unix_db_info",8,"off")=24 + Set gtmtypes("unix_db_info",8,"len")=4 + Set gtmtypes("unix_db_info",8,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.ti")=8 + Set gtmtypes("unix_db_info",9,"name")="unix_db_info.s_addrs.nl" + Set gtmtypes("unix_db_info",9,"off")=28 + Set gtmtypes("unix_db_info",9,"len")=4 + Set gtmtypes("unix_db_info",9,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.nl")=9 + Set gtmtypes("unix_db_info",10,"name")="unix_db_info.s_addrs.critical" + Set gtmtypes("unix_db_info",10,"off")=32 + Set gtmtypes("unix_db_info",10,"len")=4 + Set gtmtypes("unix_db_info",10,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.critical")=10 + Set gtmtypes("unix_db_info",11,"name")="unix_db_info.s_addrs.shmpool_buffer" + Set gtmtypes("unix_db_info",11,"off")=36 + Set gtmtypes("unix_db_info",11,"len")=4 + Set gtmtypes("unix_db_info",11,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.shmpool_buffer")=11 + Set gtmtypes("unix_db_info",12,"name")="unix_db_info.s_addrs.db_addrs" + Set gtmtypes("unix_db_info",12,"off")=40 + Set gtmtypes("unix_db_info",12,"len")=8 + Set gtmtypes("unix_db_info",12,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.db_addrs")=12 + Set gtmtypes("unix_db_info",12,"dim")=2 + Set gtmtypes("unix_db_info",13,"name")="unix_db_info.s_addrs.lock_addrs" + Set gtmtypes("unix_db_info",13,"off")=48 + Set gtmtypes("unix_db_info",13,"len")=8 + Set gtmtypes("unix_db_info",13,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.lock_addrs")=13 + Set gtmtypes("unix_db_info",13,"dim")=2 + Set gtmtypes("unix_db_info",14,"name")="unix_db_info.s_addrs.dir_tree" + Set gtmtypes("unix_db_info",14,"off")=56 + Set gtmtypes("unix_db_info",14,"len")=4 + Set gtmtypes("unix_db_info",14,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.dir_tree")=14 + Set gtmtypes("unix_db_info",15,"name")="unix_db_info.s_addrs.hasht_tree" + Set gtmtypes("unix_db_info",15,"off")=60 + Set gtmtypes("unix_db_info",15,"len")=4 + Set gtmtypes("unix_db_info",15,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.hasht_tree")=15 + Set gtmtypes("unix_db_info",16,"name")="unix_db_info.s_addrs.next_fenced" + Set gtmtypes("unix_db_info",16,"off")=64 + Set gtmtypes("unix_db_info",16,"len")=4 + Set gtmtypes("unix_db_info",16,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.next_fenced")=16 + Set gtmtypes("unix_db_info",17,"name")="unix_db_info.s_addrs.jnl" + Set gtmtypes("unix_db_info",17,"off")=68 + Set gtmtypes("unix_db_info",17,"len")=4 + Set gtmtypes("unix_db_info",17,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl")=17 + Set gtmtypes("unix_db_info",18,"name")="unix_db_info.s_addrs.sgm_info_ptr" + Set gtmtypes("unix_db_info",18,"off")=72 + Set gtmtypes("unix_db_info",18,"len")=4 + Set gtmtypes("unix_db_info",18,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.sgm_info_ptr")=18 + Set gtmtypes("unix_db_info",19,"name")="unix_db_info.s_addrs.region" + Set gtmtypes("unix_db_info",19,"off")=76 + Set gtmtypes("unix_db_info",19,"len")=4 + Set gtmtypes("unix_db_info",19,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.region")=19 + Set gtmtypes("unix_db_info",20,"name")="unix_db_info.s_addrs.gvt_hashtab" + Set gtmtypes("unix_db_info",20,"off")=80 + Set gtmtypes("unix_db_info",20,"len")=4 + Set gtmtypes("unix_db_info",20,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.gvt_hashtab")=20 + Set gtmtypes("unix_db_info",21,"name")="unix_db_info.s_addrs.miscptr" + Set gtmtypes("unix_db_info",21,"off")=84 + Set gtmtypes("unix_db_info",21,"len")=4 + Set gtmtypes("unix_db_info",21,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.miscptr")=21 + Set gtmtypes("unix_db_info",22,"name")="unix_db_info.s_addrs.next_csa" + Set gtmtypes("unix_db_info",22,"off")=88 + Set gtmtypes("unix_db_info",22,"len")=4 + Set gtmtypes("unix_db_info",22,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.next_csa")=22 + Set gtmtypes("unix_db_info",23,"name")="unix_db_info.s_addrs.encr_key_handle" + Set gtmtypes("unix_db_info",23,"off")=92 + Set gtmtypes("unix_db_info",23,"len")=4 + Set gtmtypes("unix_db_info",23,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_key_handle")=23 + Set gtmtypes("unix_db_info",24,"name")="unix_db_info.s_addrs.encr_key_handle2" + Set gtmtypes("unix_db_info",24,"off")=96 + Set gtmtypes("unix_db_info",24,"len")=4 + Set gtmtypes("unix_db_info",24,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_key_handle2")=24 + Set gtmtypes("unix_db_info",25,"name")="unix_db_info.s_addrs.encr_ptr" + Set gtmtypes("unix_db_info",25,"off")=100 + Set gtmtypes("unix_db_info",25,"len")=4 + Set gtmtypes("unix_db_info",25,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.encr_ptr")=25 + Set gtmtypes("unix_db_info",26,"name")="unix_db_info.s_addrs.ss_ctx" + Set gtmtypes("unix_db_info",26,"off")=104 + Set gtmtypes("unix_db_info",26,"len")=4 + Set gtmtypes("unix_db_info",26,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.ss_ctx")=26 + Set gtmtypes("unix_db_info",27,"name")="unix_db_info.s_addrs.acc_meth" + Set gtmtypes("unix_db_info",27,"off")=108 + Set gtmtypes("unix_db_info",27,"len")=8 + Set gtmtypes("unix_db_info",27,"type")="union" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth")=27 + Set gtmtypes("unix_db_info",28,"name")="unix_db_info.s_addrs.acc_meth.mm" + Set gtmtypes("unix_db_info",28,"off")=108 + Set gtmtypes("unix_db_info",28,"len")=4 + Set gtmtypes("unix_db_info",28,"type")="sgmm_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.mm")=28 + Set gtmtypes("unix_db_info",29,"name")="unix_db_info.s_addrs.acc_meth.mm.filler" + Set gtmtypes("unix_db_info",29,"off")=108 + Set gtmtypes("unix_db_info",29,"len")=4 + Set gtmtypes("unix_db_info",29,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.mm.filler")=29 + Set gtmtypes("unix_db_info",30,"name")="unix_db_info.s_addrs.acc_meth.bg" + Set gtmtypes("unix_db_info",30,"off")=108 + Set gtmtypes("unix_db_info",30,"len")=8 + Set gtmtypes("unix_db_info",30,"type")="sgbg_addrs" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg")=30 + Set gtmtypes("unix_db_info",31,"name")="unix_db_info.s_addrs.acc_meth.bg.cache_state" + Set gtmtypes("unix_db_info",31,"off")=108 + Set gtmtypes("unix_db_info",31,"len")=4 + Set gtmtypes("unix_db_info",31,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg.cache_state")=31 + Set gtmtypes("unix_db_info",32,"name")="unix_db_info.s_addrs.acc_meth.bg.fill1" + Set gtmtypes("unix_db_info",32,"off")=112 + Set gtmtypes("unix_db_info",32,"len")=4 + Set gtmtypes("unix_db_info",32,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.acc_meth.bg.fill1")=32 + Set gtmtypes("unix_db_info",33,"name")="unix_db_info.s_addrs.gvstats_rec" + Set gtmtypes("unix_db_info",33,"off")=116 + Set gtmtypes("unix_db_info",33,"len")=464 + Set gtmtypes("unix_db_info",33,"type")="gvstats_rec_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec")=33 + Set gtmtypes("unix_db_info",34,"name")="unix_db_info.s_addrs.gvstats_rec.n_set" + Set gtmtypes("unix_db_info",34,"off")=116 + Set gtmtypes("unix_db_info",34,"len")=8 + Set gtmtypes("unix_db_info",34,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_set")=34 + Set gtmtypes("unix_db_info",35,"name")="unix_db_info.s_addrs.gvstats_rec.n_kill" + Set gtmtypes("unix_db_info",35,"off")=124 + Set gtmtypes("unix_db_info",35,"len")=8 + Set gtmtypes("unix_db_info",35,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_kill")=35 + Set gtmtypes("unix_db_info",36,"name")="unix_db_info.s_addrs.gvstats_rec.n_get" + Set gtmtypes("unix_db_info",36,"off")=132 + Set gtmtypes("unix_db_info",36,"len")=8 + Set gtmtypes("unix_db_info",36,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_get")=36 + Set gtmtypes("unix_db_info",37,"name")="unix_db_info.s_addrs.gvstats_rec.n_data" + Set gtmtypes("unix_db_info",37,"off")=140 + Set gtmtypes("unix_db_info",37,"len")=8 + Set gtmtypes("unix_db_info",37,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_data")=37 + Set gtmtypes("unix_db_info",38,"name")="unix_db_info.s_addrs.gvstats_rec.n_order" + Set gtmtypes("unix_db_info",38,"off")=148 + Set gtmtypes("unix_db_info",38,"len")=8 + Set gtmtypes("unix_db_info",38,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_order")=38 + Set gtmtypes("unix_db_info",39,"name")="unix_db_info.s_addrs.gvstats_rec.n_zprev" + Set gtmtypes("unix_db_info",39,"off")=156 + Set gtmtypes("unix_db_info",39,"len")=8 + Set gtmtypes("unix_db_info",39,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_zprev")=39 + Set gtmtypes("unix_db_info",40,"name")="unix_db_info.s_addrs.gvstats_rec.n_query" + Set gtmtypes("unix_db_info",40,"off")=164 + Set gtmtypes("unix_db_info",40,"len")=8 + Set gtmtypes("unix_db_info",40,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_query")=40 + Set gtmtypes("unix_db_info",41,"name")="unix_db_info.s_addrs.gvstats_rec.n_lock_success" + Set gtmtypes("unix_db_info",41,"off")=172 + Set gtmtypes("unix_db_info",41,"len")=8 + Set gtmtypes("unix_db_info",41,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_lock_success")=41 + Set gtmtypes("unix_db_info",42,"name")="unix_db_info.s_addrs.gvstats_rec.n_lock_fail" + Set gtmtypes("unix_db_info",42,"off")=180 + Set gtmtypes("unix_db_info",42,"len")=8 + Set gtmtypes("unix_db_info",42,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_lock_fail")=42 + Set gtmtypes("unix_db_info",43,"name")="unix_db_info.s_addrs.gvstats_rec.db_curr_tn" + Set gtmtypes("unix_db_info",43,"off")=188 + Set gtmtypes("unix_db_info",43,"len")=8 + Set gtmtypes("unix_db_info",43,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.db_curr_tn")=43 + Set gtmtypes("unix_db_info",44,"name")="unix_db_info.s_addrs.gvstats_rec.n_dsk_read" + Set gtmtypes("unix_db_info",44,"off")=196 + Set gtmtypes("unix_db_info",44,"len")=8 + Set gtmtypes("unix_db_info",44,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_dsk_read")=44 + Set gtmtypes("unix_db_info",45,"name")="unix_db_info.s_addrs.gvstats_rec.n_dsk_write" + Set gtmtypes("unix_db_info",45,"off")=204 + Set gtmtypes("unix_db_info",45,"len")=8 + Set gtmtypes("unix_db_info",45,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_dsk_write")=45 + Set gtmtypes("unix_db_info",46,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_readwrite" + Set gtmtypes("unix_db_info",46,"off")=212 + Set gtmtypes("unix_db_info",46,"len")=8 + Set gtmtypes("unix_db_info",46,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_readwrite")=46 + Set gtmtypes("unix_db_info",47,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_readonly" + Set gtmtypes("unix_db_info",47,"off")=220 + Set gtmtypes("unix_db_info",47,"len")=8 + Set gtmtypes("unix_db_info",47,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_readonly")=47 + Set gtmtypes("unix_db_info",48,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_blkwrite" + Set gtmtypes("unix_db_info",48,"off")=228 + Set gtmtypes("unix_db_info",48,"len")=8 + Set gtmtypes("unix_db_info",48,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_blkwrite")=48 + Set gtmtypes("unix_db_info",49,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_blkread" + Set gtmtypes("unix_db_info",49,"off")=236 + Set gtmtypes("unix_db_info",49,"len")=8 + Set gtmtypes("unix_db_info",49,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_blkread")=49 + Set gtmtypes("unix_db_info",50,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_0" + Set gtmtypes("unix_db_info",50,"off")=244 + Set gtmtypes("unix_db_info",50,"len")=8 + Set gtmtypes("unix_db_info",50,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_0")=50 + Set gtmtypes("unix_db_info",51,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_1" + Set gtmtypes("unix_db_info",51,"off")=252 + Set gtmtypes("unix_db_info",51,"len")=8 + Set gtmtypes("unix_db_info",51,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_1")=51 + Set gtmtypes("unix_db_info",52,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_2" + Set gtmtypes("unix_db_info",52,"off")=260 + Set gtmtypes("unix_db_info",52,"len")=8 + Set gtmtypes("unix_db_info",52,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_2")=52 + Set gtmtypes("unix_db_info",53,"name")="unix_db_info.s_addrs.gvstats_rec.n_nontp_retries_3" + Set gtmtypes("unix_db_info",53,"off")=268 + Set gtmtypes("unix_db_info",53,"len")=8 + Set gtmtypes("unix_db_info",53,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_nontp_retries_3")=53 + Set gtmtypes("unix_db_info",54,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_readwrite" + Set gtmtypes("unix_db_info",54,"off")=276 + Set gtmtypes("unix_db_info",54,"len")=8 + Set gtmtypes("unix_db_info",54,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_readwrite")=54 + Set gtmtypes("unix_db_info",55,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_readonly" + Set gtmtypes("unix_db_info",55,"off")=284 + Set gtmtypes("unix_db_info",55,"len")=8 + Set gtmtypes("unix_db_info",55,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_readonly")=55 + Set gtmtypes("unix_db_info",56,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_rolledback" + Set gtmtypes("unix_db_info",56,"off")=292 + Set gtmtypes("unix_db_info",56,"len")=8 + Set gtmtypes("unix_db_info",56,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_rolledback")=56 + Set gtmtypes("unix_db_info",57,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_blkwrite" + Set gtmtypes("unix_db_info",57,"off")=300 + Set gtmtypes("unix_db_info",57,"len")=8 + Set gtmtypes("unix_db_info",57,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_blkwrite")=57 + Set gtmtypes("unix_db_info",58,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_blkread" + Set gtmtypes("unix_db_info",58,"off")=308 + Set gtmtypes("unix_db_info",58,"len")=8 + Set gtmtypes("unix_db_info",58,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_blkread")=58 + Set gtmtypes("unix_db_info",59,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_0" + Set gtmtypes("unix_db_info",59,"off")=316 + Set gtmtypes("unix_db_info",59,"len")=8 + Set gtmtypes("unix_db_info",59,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_0")=59 + Set gtmtypes("unix_db_info",60,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_1" + Set gtmtypes("unix_db_info",60,"off")=324 + Set gtmtypes("unix_db_info",60,"len")=8 + Set gtmtypes("unix_db_info",60,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_1")=60 + Set gtmtypes("unix_db_info",61,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_2" + Set gtmtypes("unix_db_info",61,"off")=332 + Set gtmtypes("unix_db_info",61,"len")=8 + Set gtmtypes("unix_db_info",61,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_2")=61 + Set gtmtypes("unix_db_info",62,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_3" + Set gtmtypes("unix_db_info",62,"off")=340 + Set gtmtypes("unix_db_info",62,"len")=8 + Set gtmtypes("unix_db_info",62,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_3")=62 + Set gtmtypes("unix_db_info",63,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_tot_retries_4" + Set gtmtypes("unix_db_info",63,"off")=348 + Set gtmtypes("unix_db_info",63,"len")=8 + Set gtmtypes("unix_db_info",63,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_tot_retries_4")=63 + Set gtmtypes("unix_db_info",64,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_0" + Set gtmtypes("unix_db_info",64,"off")=356 + Set gtmtypes("unix_db_info",64,"len")=8 + Set gtmtypes("unix_db_info",64,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_0")=64 + Set gtmtypes("unix_db_info",65,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_1" + Set gtmtypes("unix_db_info",65,"off")=364 + Set gtmtypes("unix_db_info",65,"len")=8 + Set gtmtypes("unix_db_info",65,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_1")=65 + Set gtmtypes("unix_db_info",66,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_2" + Set gtmtypes("unix_db_info",66,"off")=372 + Set gtmtypes("unix_db_info",66,"len")=8 + Set gtmtypes("unix_db_info",66,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_2")=66 + Set gtmtypes("unix_db_info",67,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_3" + Set gtmtypes("unix_db_info",67,"off")=380 + Set gtmtypes("unix_db_info",67,"len")=8 + Set gtmtypes("unix_db_info",67,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_3")=67 + Set gtmtypes("unix_db_info",68,"name")="unix_db_info.s_addrs.gvstats_rec.n_tp_cnflct_retries_4" + Set gtmtypes("unix_db_info",68,"off")=388 + Set gtmtypes("unix_db_info",68,"len")=8 + Set gtmtypes("unix_db_info",68,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_tp_cnflct_retries_4")=68 + Set gtmtypes("unix_db_info",69,"name")="unix_db_info.s_addrs.gvstats_rec.n_ztrigger" + Set gtmtypes("unix_db_info",69,"off")=396 + Set gtmtypes("unix_db_info",69,"len")=8 + Set gtmtypes("unix_db_info",69,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_ztrigger")=69 + Set gtmtypes("unix_db_info",70,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_flush" + Set gtmtypes("unix_db_info",70,"off")=404 + Set gtmtypes("unix_db_info",70,"len")=8 + Set gtmtypes("unix_db_info",70,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_flush")=70 + Set gtmtypes("unix_db_info",71,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_fsync" + Set gtmtypes("unix_db_info",71,"off")=412 + Set gtmtypes("unix_db_info",71,"len")=8 + Set gtmtypes("unix_db_info",71,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_fsync")=71 + Set gtmtypes("unix_db_info",72,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_flush" + Set gtmtypes("unix_db_info",72,"off")=420 + Set gtmtypes("unix_db_info",72,"len")=8 + Set gtmtypes("unix_db_info",72,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_flush")=72 + Set gtmtypes("unix_db_info",73,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_fsync" + Set gtmtypes("unix_db_info",73,"off")=428 + Set gtmtypes("unix_db_info",73,"len")=8 + Set gtmtypes("unix_db_info",73,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_fsync")=73 + Set gtmtypes("unix_db_info",74,"name")="unix_db_info.s_addrs.gvstats_rec.n_jbuff_bytes" + Set gtmtypes("unix_db_info",74,"off")=436 + Set gtmtypes("unix_db_info",74,"len")=8 + Set gtmtypes("unix_db_info",74,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jbuff_bytes")=74 + Set gtmtypes("unix_db_info",75,"name")="unix_db_info.s_addrs.gvstats_rec.n_jfile_bytes" + Set gtmtypes("unix_db_info",75,"off")=444 + Set gtmtypes("unix_db_info",75,"len")=8 + Set gtmtypes("unix_db_info",75,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jfile_bytes")=75 + Set gtmtypes("unix_db_info",76,"name")="unix_db_info.s_addrs.gvstats_rec.n_jfile_writes" + Set gtmtypes("unix_db_info",76,"off")=452 + Set gtmtypes("unix_db_info",76,"len")=8 + Set gtmtypes("unix_db_info",76,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jfile_writes")=76 + Set gtmtypes("unix_db_info",77,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_logical" + Set gtmtypes("unix_db_info",77,"off")=460 + Set gtmtypes("unix_db_info",77,"len")=8 + Set gtmtypes("unix_db_info",77,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_logical")=77 + Set gtmtypes("unix_db_info",78,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_pblk" + Set gtmtypes("unix_db_info",78,"off")=468 + Set gtmtypes("unix_db_info",78,"len")=8 + Set gtmtypes("unix_db_info",78,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_pblk")=78 + Set gtmtypes("unix_db_info",79,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_epoch_regular" + Set gtmtypes("unix_db_info",79,"off")=476 + Set gtmtypes("unix_db_info",79,"len")=8 + Set gtmtypes("unix_db_info",79,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_epoch_regular")=79 + Set gtmtypes("unix_db_info",80,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_epoch_idle" + Set gtmtypes("unix_db_info",80,"off")=484 + Set gtmtypes("unix_db_info",80,"len")=8 + Set gtmtypes("unix_db_info",80,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_epoch_idle")=80 + Set gtmtypes("unix_db_info",81,"name")="unix_db_info.s_addrs.gvstats_rec.n_jrec_other" + Set gtmtypes("unix_db_info",81,"off")=492 + Set gtmtypes("unix_db_info",81,"len")=8 + Set gtmtypes("unix_db_info",81,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jrec_other")=81 + Set gtmtypes("unix_db_info",82,"name")="unix_db_info.s_addrs.gvstats_rec.n_jnl_extends" + Set gtmtypes("unix_db_info",82,"off")=500 + Set gtmtypes("unix_db_info",82,"len")=8 + Set gtmtypes("unix_db_info",82,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_jnl_extends")=82 + Set gtmtypes("unix_db_info",83,"name")="unix_db_info.s_addrs.gvstats_rec.n_db_extends" + Set gtmtypes("unix_db_info",83,"off")=508 + Set gtmtypes("unix_db_info",83,"len")=8 + Set gtmtypes("unix_db_info",83,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_db_extends")=83 + Set gtmtypes("unix_db_info",84,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_success" + Set gtmtypes("unix_db_info",84,"off")=516 + Set gtmtypes("unix_db_info",84,"len")=8 + Set gtmtypes("unix_db_info",84,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_success")=84 + Set gtmtypes("unix_db_info",85,"name")="unix_db_info.s_addrs.gvstats_rec.n_crits_in_epch" + Set gtmtypes("unix_db_info",85,"off")=524 + Set gtmtypes("unix_db_info",85,"len")=8 + Set gtmtypes("unix_db_info",85,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crits_in_epch")=85 + Set gtmtypes("unix_db_info",86,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_failed" + Set gtmtypes("unix_db_info",86,"off")=532 + Set gtmtypes("unix_db_info",86,"len")=8 + Set gtmtypes("unix_db_info",86,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_failed")=86 + Set gtmtypes("unix_db_info",87,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_failed" + Set gtmtypes("unix_db_info",87,"off")=540 + Set gtmtypes("unix_db_info",87,"len")=8 + Set gtmtypes("unix_db_info",87,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_failed")=87 + Set gtmtypes("unix_db_info",88,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_que_slps" + Set gtmtypes("unix_db_info",88,"off")=548 + Set gtmtypes("unix_db_info",88,"len")=8 + Set gtmtypes("unix_db_info",88,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_que_slps")=88 + Set gtmtypes("unix_db_info",89,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_que_slps" + Set gtmtypes("unix_db_info",89,"off")=556 + Set gtmtypes("unix_db_info",89,"len")=8 + Set gtmtypes("unix_db_info",89,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_que_slps")=89 + Set gtmtypes("unix_db_info",90,"name")="unix_db_info.s_addrs.gvstats_rec.sq_crit_yields" + Set gtmtypes("unix_db_info",90,"off")=564 + Set gtmtypes("unix_db_info",90,"len")=8 + Set gtmtypes("unix_db_info",90,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.sq_crit_yields")=90 + Set gtmtypes("unix_db_info",91,"name")="unix_db_info.s_addrs.gvstats_rec.n_crit_yields" + Set gtmtypes("unix_db_info",91,"off")=572 + Set gtmtypes("unix_db_info",91,"len")=8 + Set gtmtypes("unix_db_info",91,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.gvstats_rec.n_crit_yields")=91 + Set gtmtypes("unix_db_info",92,"name")="unix_db_info.s_addrs.dbsync_timer_tn" + Set gtmtypes("unix_db_info",92,"off")=580 + Set gtmtypes("unix_db_info",92,"len")=8 + Set gtmtypes("unix_db_info",92,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbsync_timer_tn")=92 + Set gtmtypes("unix_db_info",93,"name")="unix_db_info.s_addrs.fullblockwrite_len" + Set gtmtypes("unix_db_info",93,"off")=588 + Set gtmtypes("unix_db_info",93,"len")=4 + Set gtmtypes("unix_db_info",93,"type")="size_t" + Set gtmtypfldindx("unix_db_info","s_addrs.fullblockwrite_len")=93 + Set gtmtypes("unix_db_info",94,"name")="unix_db_info.s_addrs.total_blks" + Set gtmtypes("unix_db_info",94,"off")=592 + Set gtmtypes("unix_db_info",94,"len")=4 + Set gtmtypes("unix_db_info",94,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.total_blks")=94 + Set gtmtypes("unix_db_info",95,"name")="unix_db_info.s_addrs.prev_free_blks" + Set gtmtypes("unix_db_info",95,"off")=596 + Set gtmtypes("unix_db_info",95,"len")=4 + Set gtmtypes("unix_db_info",95,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.prev_free_blks")=95 + Set gtmtypes("unix_db_info",96,"name")="unix_db_info.s_addrs.timer" + Set gtmtypes("unix_db_info",96,"off")=600 + Set gtmtypes("unix_db_info",96,"len")=4 + Set gtmtypes("unix_db_info",96,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.timer")=96 + Set gtmtypes("unix_db_info",97,"name")="unix_db_info.s_addrs.in_wtstart" + Set gtmtypes("unix_db_info",97,"off")=604 + Set gtmtypes("unix_db_info",97,"len")=4 + Set gtmtypes("unix_db_info",97,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.in_wtstart")=97 + Set gtmtypes("unix_db_info",98,"name")="unix_db_info.s_addrs.now_crit" + Set gtmtypes("unix_db_info",98,"off")=608 + Set gtmtypes("unix_db_info",98,"len")=4 + Set gtmtypes("unix_db_info",98,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.now_crit")=98 + Set gtmtypes("unix_db_info",99,"name")="unix_db_info.s_addrs.wbuf_dqd" + Set gtmtypes("unix_db_info",99,"off")=612 + Set gtmtypes("unix_db_info",99,"len")=4 + Set gtmtypes("unix_db_info",99,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.wbuf_dqd")=99 + Set gtmtypes("unix_db_info",100,"name")="unix_db_info.s_addrs.stale_defer" + Set gtmtypes("unix_db_info",100,"off")=616 + Set gtmtypes("unix_db_info",100,"len")=4 + Set gtmtypes("unix_db_info",100,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.stale_defer")=100 + Set gtmtypes("unix_db_info",101,"name")="unix_db_info.s_addrs.freeze" + Set gtmtypes("unix_db_info",101,"off")=620 + Set gtmtypes("unix_db_info",101,"len")=4 + Set gtmtypes("unix_db_info",101,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.freeze")=101 + Set gtmtypes("unix_db_info",102,"name")="unix_db_info.s_addrs.dbsync_timer" + Set gtmtypes("unix_db_info",102,"off")=624 + Set gtmtypes("unix_db_info",102,"len")=4 + Set gtmtypes("unix_db_info",102,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbsync_timer")=102 + Set gtmtypes("unix_db_info",103,"name")="unix_db_info.s_addrs.reorg_last_dest" + Set gtmtypes("unix_db_info",103,"off")=628 + Set gtmtypes("unix_db_info",103,"len")=4 + Set gtmtypes("unix_db_info",103,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.reorg_last_dest")=103 + Set gtmtypes("unix_db_info",104,"name")="unix_db_info.s_addrs.jnl_before_image" + Set gtmtypes("unix_db_info",104,"off")=632 + Set gtmtypes("unix_db_info",104,"len")=4 + Set gtmtypes("unix_db_info",104,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl_before_image")=104 + Set gtmtypes("unix_db_info",105,"name")="unix_db_info.s_addrs.read_write" + Set gtmtypes("unix_db_info",105,"off")=636 + Set gtmtypes("unix_db_info",105,"len")=4 + Set gtmtypes("unix_db_info",105,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.read_write")=105 + Set gtmtypes("unix_db_info",106,"name")="unix_db_info.s_addrs.persistent_freeze" + Set gtmtypes("unix_db_info",106,"off")=640 + Set gtmtypes("unix_db_info",106,"len")=4 + Set gtmtypes("unix_db_info",106,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.persistent_freeze")=106 + Set gtmtypes("unix_db_info",107,"name")="unix_db_info.s_addrs.pblk_align_jrecsize" + Set gtmtypes("unix_db_info",107,"off")=644 + Set gtmtypes("unix_db_info",107,"len")=4 + Set gtmtypes("unix_db_info",107,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.pblk_align_jrecsize")=107 + Set gtmtypes("unix_db_info",108,"name")="unix_db_info.s_addrs.min_total_tpjnl_rec_size" + Set gtmtypes("unix_db_info",108,"off")=648 + Set gtmtypes("unix_db_info",108,"len")=4 + Set gtmtypes("unix_db_info",108,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.min_total_tpjnl_rec_size")=108 + Set gtmtypes("unix_db_info",109,"name")="unix_db_info.s_addrs.min_total_nontpjnl_rec_size" + Set gtmtypes("unix_db_info",109,"off")=652 + Set gtmtypes("unix_db_info",109,"len")=4 + Set gtmtypes("unix_db_info",109,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.min_total_nontpjnl_rec_size")=109 + Set gtmtypes("unix_db_info",110,"name")="unix_db_info.s_addrs.jnl_state" + Set gtmtypes("unix_db_info",110,"off")=656 + Set gtmtypes("unix_db_info",110,"len")=4 + Set gtmtypes("unix_db_info",110,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.jnl_state")=110 + Set gtmtypes("unix_db_info",111,"name")="unix_db_info.s_addrs.repl_state" + Set gtmtypes("unix_db_info",111,"off")=660 + Set gtmtypes("unix_db_info",111,"len")=4 + Set gtmtypes("unix_db_info",111,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.repl_state")=111 + Set gtmtypes("unix_db_info",112,"name")="unix_db_info.s_addrs.crit_check_cycle" + Set gtmtypes("unix_db_info",112,"off")=664 + Set gtmtypes("unix_db_info",112,"len")=4 + Set gtmtypes("unix_db_info",112,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.crit_check_cycle")=112 + Set gtmtypes("unix_db_info",113,"name")="unix_db_info.s_addrs.backup_in_prog" + Set gtmtypes("unix_db_info",113,"off")=668 + Set gtmtypes("unix_db_info",113,"len")=4 + Set gtmtypes("unix_db_info",113,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.backup_in_prog")=113 + Set gtmtypes("unix_db_info",114,"name")="unix_db_info.s_addrs.snapshot_in_prog" + Set gtmtypes("unix_db_info",114,"off")=672 + Set gtmtypes("unix_db_info",114,"len")=4 + Set gtmtypes("unix_db_info",114,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.snapshot_in_prog")=114 + Set gtmtypes("unix_db_info",115,"name")="unix_db_info.s_addrs.ref_cnt" + Set gtmtypes("unix_db_info",115,"off")=676 + Set gtmtypes("unix_db_info",115,"len")=4 + Set gtmtypes("unix_db_info",115,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.ref_cnt")=115 + Set gtmtypes("unix_db_info",116,"name")="unix_db_info.s_addrs.fid_index" + Set gtmtypes("unix_db_info",116,"off")=680 + Set gtmtypes("unix_db_info",116,"len")=4 + Set gtmtypes("unix_db_info",116,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.fid_index")=116 + Set gtmtypes("unix_db_info",117,"name")="unix_db_info.s_addrs.do_fullblockwrites" + Set gtmtypes("unix_db_info",117,"off")=684 + Set gtmtypes("unix_db_info",117,"len")=4 + Set gtmtypes("unix_db_info",117,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.do_fullblockwrites")=117 + Set gtmtypes("unix_db_info",118,"name")="unix_db_info.s_addrs.regnum" + Set gtmtypes("unix_db_info",118,"off")=688 + Set gtmtypes("unix_db_info",118,"len")=4 + Set gtmtypes("unix_db_info",118,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.regnum")=118 + Set gtmtypes("unix_db_info",119,"name")="unix_db_info.s_addrs.n_pre_read_trigger" + Set gtmtypes("unix_db_info",119,"off")=692 + Set gtmtypes("unix_db_info",119,"len")=4 + Set gtmtypes("unix_db_info",119,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.n_pre_read_trigger")=119 + Set gtmtypes("unix_db_info",120,"name")="unix_db_info.s_addrs.jnlpool_validate_check" + Set gtmtypes("unix_db_info",120,"off")=696 + Set gtmtypes("unix_db_info",120,"len")=4 + Set gtmtypes("unix_db_info",120,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.jnlpool_validate_check")=120 + Set gtmtypes("unix_db_info",121,"name")="unix_db_info.s_addrs.regcnt" + Set gtmtypes("unix_db_info",121,"off")=700 + Set gtmtypes("unix_db_info",121,"len")=4 + Set gtmtypes("unix_db_info",121,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.regcnt")=121 + Set gtmtypes("unix_db_info",122,"name")="unix_db_info.s_addrs.t_commit_crit" + Set gtmtypes("unix_db_info",122,"off")=704 + Set gtmtypes("unix_db_info",122,"len")=4 + Set gtmtypes("unix_db_info",122,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.t_commit_crit")=122 + Set gtmtypes("unix_db_info",123,"name")="unix_db_info.s_addrs.wcs_pidcnt_incremented" + Set gtmtypes("unix_db_info",123,"off")=708 + Set gtmtypes("unix_db_info",123,"len")=4 + Set gtmtypes("unix_db_info",123,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.wcs_pidcnt_incremented")=123 + Set gtmtypes("unix_db_info",124,"name")="unix_db_info.s_addrs.incr_db_trigger_cycle" + Set gtmtypes("unix_db_info",124,"off")=712 + Set gtmtypes("unix_db_info",124,"len")=4 + Set gtmtypes("unix_db_info",124,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.incr_db_trigger_cycle")=124 + Set gtmtypes("unix_db_info",125,"name")="unix_db_info.s_addrs.db_trigger_cycle" + Set gtmtypes("unix_db_info",125,"off")=716 + Set gtmtypes("unix_db_info",125,"len")=4 + Set gtmtypes("unix_db_info",125,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_trigger_cycle")=125 + Set gtmtypes("unix_db_info",126,"name")="unix_db_info.s_addrs.db_dztrigger_cycle" + Set gtmtypes("unix_db_info",126,"off")=720 + Set gtmtypes("unix_db_info",126,"len")=4 + Set gtmtypes("unix_db_info",126,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_dztrigger_cycle")=126 + Set gtmtypes("unix_db_info",127,"name")="unix_db_info.s_addrs.hold_onto_crit" + Set gtmtypes("unix_db_info",127,"off")=724 + Set gtmtypes("unix_db_info",127,"len")=4 + Set gtmtypes("unix_db_info",127,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.hold_onto_crit")=127 + Set gtmtypes("unix_db_info",128,"name")="unix_db_info.s_addrs.dse_crit_seize_done" + Set gtmtypes("unix_db_info",128,"off")=728 + Set gtmtypes("unix_db_info",128,"len")=4 + Set gtmtypes("unix_db_info",128,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dse_crit_seize_done")=128 + Set gtmtypes("unix_db_info",129,"name")="unix_db_info.s_addrs.gbuff_limit" + Set gtmtypes("unix_db_info",129,"off")=732 + Set gtmtypes("unix_db_info",129,"len")=4 + Set gtmtypes("unix_db_info",129,"type")="int" + Set gtmtypfldindx("unix_db_info","s_addrs.gbuff_limit")=129 + Set gtmtypes("unix_db_info",130,"name")="unix_db_info.s_addrs.our_midnite" + Set gtmtypes("unix_db_info",130,"off")=736 + Set gtmtypes("unix_db_info",130,"len")=4 + Set gtmtypes("unix_db_info",130,"type")="addr" + Set gtmtypfldindx("unix_db_info","s_addrs.our_midnite")=130 + Set gtmtypes("unix_db_info",131,"name")="unix_db_info.s_addrs.root_search_cycle" + Set gtmtypes("unix_db_info",131,"off")=740 + Set gtmtypes("unix_db_info",131,"len")=4 + Set gtmtypes("unix_db_info",131,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.root_search_cycle")=131 + Set gtmtypes("unix_db_info",132,"name")="unix_db_info.s_addrs.onln_rlbk_cycle" + Set gtmtypes("unix_db_info",132,"off")=744 + Set gtmtypes("unix_db_info",132,"len")=4 + Set gtmtypes("unix_db_info",132,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.onln_rlbk_cycle")=132 + Set gtmtypes("unix_db_info",133,"name")="unix_db_info.s_addrs.db_onln_rlbkd_cycle" + Set gtmtypes("unix_db_info",133,"off")=748 + Set gtmtypes("unix_db_info",133,"len")=4 + Set gtmtypes("unix_db_info",133,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","s_addrs.db_onln_rlbkd_cycle")=133 + Set gtmtypes("unix_db_info",134,"name")="unix_db_info.s_addrs.dbinit_shm_created" + Set gtmtypes("unix_db_info",134,"off")=752 + Set gtmtypes("unix_db_info",134,"len")=4 + Set gtmtypes("unix_db_info",134,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.dbinit_shm_created")=134 + Set gtmtypes("unix_db_info",135,"name")="unix_db_info.s_addrs.read_only_fs" + Set gtmtypes("unix_db_info",135,"off")=756 + Set gtmtypes("unix_db_info",135,"len")=4 + Set gtmtypes("unix_db_info",135,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.read_only_fs")=135 + Set gtmtypes("unix_db_info",136,"name")="unix_db_info.s_addrs.crit_probe" + Set gtmtypes("unix_db_info",136,"off")=760 + Set gtmtypes("unix_db_info",136,"len")=4 + Set gtmtypes("unix_db_info",136,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","s_addrs.crit_probe")=136 + Set gtmtypes("unix_db_info",137,"name")="unix_db_info.s_addrs.probecrit_rec" + Set gtmtypes("unix_db_info",137,"off")=764 + Set gtmtypes("unix_db_info",137,"len")=56 + Set gtmtypes("unix_db_info",137,"type")="probecrit_rec_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec")=137 + Set gtmtypes("unix_db_info",138,"name")="unix_db_info.s_addrs.probecrit_rec.t_get_crit" + Set gtmtypes("unix_db_info",138,"off")=764 + Set gtmtypes("unix_db_info",138,"len")=8 + Set gtmtypes("unix_db_info",138,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.t_get_crit")=138 + Set gtmtypes("unix_db_info",139,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_failed" + Set gtmtypes("unix_db_info",139,"off")=772 + Set gtmtypes("unix_db_info",139,"len")=8 + Set gtmtypes("unix_db_info",139,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_failed")=139 + Set gtmtypes("unix_db_info",140,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_slps" + Set gtmtypes("unix_db_info",140,"off")=780 + Set gtmtypes("unix_db_info",140,"len")=8 + Set gtmtypes("unix_db_info",140,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_slps")=140 + Set gtmtypes("unix_db_info",141,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_yields" + Set gtmtypes("unix_db_info",141,"off")=788 + Set gtmtypes("unix_db_info",141,"len")=8 + Set gtmtypes("unix_db_info",141,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_yields")=141 + Set gtmtypes("unix_db_info",142,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_full" + Set gtmtypes("unix_db_info",142,"off")=796 + Set gtmtypes("unix_db_info",142,"len")=8 + Set gtmtypes("unix_db_info",142,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_full")=142 + Set gtmtypes("unix_db_info",143,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_que_slots" + Set gtmtypes("unix_db_info",143,"off")=804 + Set gtmtypes("unix_db_info",143,"len")=8 + Set gtmtypes("unix_db_info",143,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_que_slots")=143 + Set gtmtypes("unix_db_info",144,"name")="unix_db_info.s_addrs.probecrit_rec.p_crit_success" + Set gtmtypes("unix_db_info",144,"off")=812 + Set gtmtypes("unix_db_info",144,"len")=8 + Set gtmtypes("unix_db_info",144,"type")="uint64_t" + Set gtmtypfldindx("unix_db_info","s_addrs.probecrit_rec.p_crit_success")=144 + Set gtmtypes("unix_db_info",145,"name")="unix_db_info.fn" + Set gtmtypes("unix_db_info",145,"off")=820 + Set gtmtypes("unix_db_info",145,"len")=4 + Set gtmtypes("unix_db_info",145,"type")="addr" + Set gtmtypfldindx("unix_db_info","fn")=145 + Set gtmtypes("unix_db_info",146,"name")="unix_db_info.fd" + Set gtmtypes("unix_db_info",146,"off")=824 + Set gtmtypes("unix_db_info",146,"len")=4 + Set gtmtypes("unix_db_info",146,"type")="int" + Set gtmtypfldindx("unix_db_info","fd")=146 + Set gtmtypes("unix_db_info",147,"name")="unix_db_info.fileid" + Set gtmtypes("unix_db_info",147,"off")=828 + Set gtmtypes("unix_db_info",147,"len")=20 + Set gtmtypes("unix_db_info",147,"type")="unix_file_id" + Set gtmtypfldindx("unix_db_info","fileid")=147 + Set gtmtypes("unix_db_info",148,"name")="unix_db_info.fileid.inode" + Set gtmtypes("unix_db_info",148,"off")=828 + Set gtmtypes("unix_db_info",148,"len")=8 + Set gtmtypes("unix_db_info",148,"type")="ino_t" + Set gtmtypfldindx("unix_db_info","fileid.inode")=148 + Set gtmtypes("unix_db_info",149,"name")="unix_db_info.fileid.device" + Set gtmtypes("unix_db_info",149,"off")=836 + Set gtmtypes("unix_db_info",149,"len")=8 + Set gtmtypes("unix_db_info",149,"type")="dev_t" + Set gtmtypfldindx("unix_db_info","fileid.device")=149 + Set gtmtypes("unix_db_info",150,"name")="unix_db_info.fileid.st_gen" + Set gtmtypes("unix_db_info",150,"off")=844 + Set gtmtypes("unix_db_info",150,"len")=4 + Set gtmtypes("unix_db_info",150,"type")="unsigned-int" + Set gtmtypfldindx("unix_db_info","fileid.st_gen")=150 + Set gtmtypes("unix_db_info",151,"name")="unix_db_info.semid" + Set gtmtypes("unix_db_info",151,"off")=848 + Set gtmtypes("unix_db_info",151,"len")=4 + Set gtmtypes("unix_db_info",151,"type")="int" + Set gtmtypfldindx("unix_db_info","semid")=151 + Set gtmtypes("unix_db_info",152,"name")="unix_db_info.gt_sem_ctime" + Set gtmtypes("unix_db_info",152,"off")=852 + Set gtmtypes("unix_db_info",152,"len")=4 + Set gtmtypes("unix_db_info",152,"type")="time_t" + Set gtmtypfldindx("unix_db_info","gt_sem_ctime")=152 + Set gtmtypes("unix_db_info",153,"name")="unix_db_info.shmid" + Set gtmtypes("unix_db_info",153,"off")=856 + Set gtmtypes("unix_db_info",153,"len")=4 + Set gtmtypes("unix_db_info",153,"type")="int" + Set gtmtypfldindx("unix_db_info","shmid")=153 + Set gtmtypes("unix_db_info",154,"name")="unix_db_info.gt_shm_ctime" + Set gtmtypes("unix_db_info",154,"off")=860 + Set gtmtypes("unix_db_info",154,"len")=4 + Set gtmtypes("unix_db_info",154,"type")="time_t" + Set gtmtypfldindx("unix_db_info","gt_shm_ctime")=154 + Set gtmtypes("unix_db_info",155,"name")="unix_db_info.ftok_semid" + Set gtmtypes("unix_db_info",155,"off")=864 + Set gtmtypes("unix_db_info",155,"len")=4 + Set gtmtypes("unix_db_info",155,"type")="int" + Set gtmtypfldindx("unix_db_info","ftok_semid")=155 + Set gtmtypes("unix_db_info",156,"name")="unix_db_info.new_shm" + Set gtmtypes("unix_db_info",156,"off")=868 + Set gtmtypes("unix_db_info",156,"len")=4 + Set gtmtypes("unix_db_info",156,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","new_shm")=156 + Set gtmtypes("unix_db_info",157,"name")="unix_db_info.new_sem" + Set gtmtypes("unix_db_info",157,"off")=872 + Set gtmtypes("unix_db_info",157,"len")=4 + Set gtmtypes("unix_db_info",157,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","new_sem")=157 + Set gtmtypes("unix_db_info",158,"name")="unix_db_info.grabbed_ftok_sem" + Set gtmtypes("unix_db_info",158,"off")=876 + Set gtmtypes("unix_db_info",158,"len")=4 + Set gtmtypes("unix_db_info",158,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","grabbed_ftok_sem")=158 + Set gtmtypes("unix_db_info",159,"name")="unix_db_info.grabbed_access_sem" + Set gtmtypes("unix_db_info",159,"off")=880 + Set gtmtypes("unix_db_info",159,"len")=4 + Set gtmtypes("unix_db_info",159,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","grabbed_access_sem")=159 + Set gtmtypes("unix_db_info",160,"name")="unix_db_info.counter_acc_incremented" + Set gtmtypes("unix_db_info",160,"off")=884 + Set gtmtypes("unix_db_info",160,"len")=4 + Set gtmtypes("unix_db_info",160,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","counter_acc_incremented")=160 + Set gtmtypes("unix_db_info",161,"name")="unix_db_info.counter_ftok_incremented" + Set gtmtypes("unix_db_info",161,"off")=888 + Set gtmtypes("unix_db_info",161,"len")=4 + Set gtmtypes("unix_db_info",161,"type")="boolean_t" + Set gtmtypfldindx("unix_db_info","counter_ftok_incremented")=161 + Set gtmtypes("unix_db_info",162,"name")="unix_db_info.key" + Set gtmtypes("unix_db_info",162,"off")=892 + Set gtmtypes("unix_db_info",162,"len")=4 + Set gtmtypes("unix_db_info",162,"type")="key_t" + Set gtmtypfldindx("unix_db_info","key")=162 + Set gtmtypes("unix_db_info",163,"name")="unix_db_info.raw" + Set gtmtypes("unix_db_info",163,"off")=896 + Set gtmtypes("unix_db_info",163,"len")=1 + Set gtmtypes("unix_db_info",163,"type")="char" + Set gtmtypfldindx("unix_db_info","raw")=163 + ; + Set gtmtypes("unix_file_id")="struct" + Set gtmtypes("unix_file_id",0)=3 + Set gtmtypes("unix_file_id","len")=20 + Set gtmtypes("unix_file_id",1,"name")="unix_file_id.inode" + Set gtmtypes("unix_file_id",1,"off")=0 + Set gtmtypes("unix_file_id",1,"len")=8 + Set gtmtypes("unix_file_id",1,"type")="ino_t" + Set gtmtypfldindx("unix_file_id","inode")=1 + Set gtmtypes("unix_file_id",2,"name")="unix_file_id.device" + Set gtmtypes("unix_file_id",2,"off")=8 + Set gtmtypes("unix_file_id",2,"len")=8 + Set gtmtypes("unix_file_id",2,"type")="dev_t" + Set gtmtypfldindx("unix_file_id","device")=2 + Set gtmtypes("unix_file_id",3,"name")="unix_file_id.st_gen" + Set gtmtypes("unix_file_id",3,"off")=16 + Set gtmtypes("unix_file_id",3,"len")=4 + Set gtmtypes("unix_file_id",3,"type")="unsigned-int" + Set gtmtypfldindx("unix_file_id","st_gen")=3 + ; + Set gtmtypes("unix_file_info")="struct" + Set gtmtypes("unix_file_info",0)=3 + Set gtmtypes("unix_file_info","len")=12 + Set gtmtypes("unix_file_info",1,"name")="unix_file_info.file" + Set gtmtypes("unix_file_info",1,"off")=0 + Set gtmtypes("unix_file_info",1,"len")=4 + Set gtmtypes("unix_file_info",1,"type")="int" + Set gtmtypfldindx("unix_file_info","file")=1 + Set gtmtypes("unix_file_info",2,"name")="unix_file_info.fn_len" + Set gtmtypes("unix_file_info",2,"off")=4 + Set gtmtypes("unix_file_info",2,"len")=4 + Set gtmtypes("unix_file_info",2,"type")="int" + Set gtmtypfldindx("unix_file_info","fn_len")=2 + Set gtmtypes("unix_file_info",3,"name")="unix_file_info.fn" + Set gtmtypes("unix_file_info",3,"off")=8 + Set gtmtypes("unix_file_info",3,"len")=4 + Set gtmtypes("unix_file_info",3,"type")="addr" + Set gtmtypfldindx("unix_file_info","fn")=3 + ; + Set gtmtypes("upd_helper_ctl_struct")="struct" + Set gtmtypes("upd_helper_ctl_struct",0)=18 + Set gtmtypes("upd_helper_ctl_struct","len")=2084 + Set gtmtypes("upd_helper_ctl_struct",1,"name")="upd_helper_ctl_struct.pre_read_lock" + Set gtmtypes("upd_helper_ctl_struct",1,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",1,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",1,"type")="global_latch_t" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock")=1 + Set gtmtypes("upd_helper_ctl_struct",2,"name")="upd_helper_ctl_struct.pre_read_lock.u" + Set gtmtypes("upd_helper_ctl_struct",2,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",2,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",2,"type")="union" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u")=2 + Set gtmtypes("upd_helper_ctl_struct",3,"name")="upd_helper_ctl_struct.pre_read_lock.u.pid_imgcnt" + Set gtmtypes("upd_helper_ctl_struct",3,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",3,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",3,"type")="uint64_t" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.pid_imgcnt")=3 + Set gtmtypes("upd_helper_ctl_struct",4,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts" + Set gtmtypes("upd_helper_ctl_struct",4,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",4,"len")=8 + Set gtmtypes("upd_helper_ctl_struct",4,"type")="struct" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts")=4 + Set gtmtypes("upd_helper_ctl_struct",5,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts.latch_pid" + Set gtmtypes("upd_helper_ctl_struct",5,"off")=0 + Set gtmtypes("upd_helper_ctl_struct",5,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",5,"type")="int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts.latch_pid")=5 + Set gtmtypes("upd_helper_ctl_struct",6,"name")="upd_helper_ctl_struct.pre_read_lock.u.parts.latch_word" + Set gtmtypes("upd_helper_ctl_struct",6,"off")=4 + Set gtmtypes("upd_helper_ctl_struct",6,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",6,"type")="int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_lock.u.parts.latch_word")=6 + Set gtmtypes("upd_helper_ctl_struct",7,"name")="upd_helper_ctl_struct.pre_read_offset" + Set gtmtypes("upd_helper_ctl_struct",7,"off")=8 + Set gtmtypes("upd_helper_ctl_struct",7,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","pre_read_offset")=7 + Set gtmtypes("upd_helper_ctl_struct",8,"name")="upd_helper_ctl_struct.first_done" + Set gtmtypes("upd_helper_ctl_struct",8,"off")=12 + Set gtmtypes("upd_helper_ctl_struct",8,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",8,"type")="boolean_t" + Set gtmtypfldindx("upd_helper_ctl_struct","first_done")=8 + Set gtmtypes("upd_helper_ctl_struct",9,"name")="upd_helper_ctl_struct.next_read_offset" + Set gtmtypes("upd_helper_ctl_struct",9,"off")=16 + Set gtmtypes("upd_helper_ctl_struct",9,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",9,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","next_read_offset")=9 + Set gtmtypes("upd_helper_ctl_struct",10,"name")="upd_helper_ctl_struct.start_helpers" + Set gtmtypes("upd_helper_ctl_struct",10,"off")=20 + Set gtmtypes("upd_helper_ctl_struct",10,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",10,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_helpers")=10 + Set gtmtypes("upd_helper_ctl_struct",11,"name")="upd_helper_ctl_struct.start_n_readers" + Set gtmtypes("upd_helper_ctl_struct",11,"off")=24 + Set gtmtypes("upd_helper_ctl_struct",11,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",11,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_n_readers")=11 + Set gtmtypes("upd_helper_ctl_struct",12,"name")="upd_helper_ctl_struct.start_n_writers" + Set gtmtypes("upd_helper_ctl_struct",12,"off")=28 + Set gtmtypes("upd_helper_ctl_struct",12,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","start_n_writers")=12 + Set gtmtypes("upd_helper_ctl_struct",13,"name")="upd_helper_ctl_struct.reap_helpers" + Set gtmtypes("upd_helper_ctl_struct",13,"off")=32 + Set gtmtypes("upd_helper_ctl_struct",13,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",13,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","reap_helpers")=13 + Set gtmtypes("upd_helper_ctl_struct",14,"name")="upd_helper_ctl_struct.helper_list" + Set gtmtypes("upd_helper_ctl_struct",14,"off")=36 + Set gtmtypes("upd_helper_ctl_struct",14,"len")=2048 + Set gtmtypes("upd_helper_ctl_struct",14,"type")="upd_helper_entry_struct" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list")=14 + Set gtmtypes("upd_helper_ctl_struct",14,"dim")=128 + Set gtmtypes("upd_helper_ctl_struct",15,"name")="upd_helper_ctl_struct.helper_list[0].helper_pid" + Set gtmtypes("upd_helper_ctl_struct",15,"off")=36 + Set gtmtypes("upd_helper_ctl_struct",15,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",15,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_pid")=15 + Set gtmtypes("upd_helper_ctl_struct",16,"name")="upd_helper_ctl_struct.helper_list[0].helper_pid_prev" + Set gtmtypes("upd_helper_ctl_struct",16,"off")=40 + Set gtmtypes("upd_helper_ctl_struct",16,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",16,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_pid_prev")=16 + Set gtmtypes("upd_helper_ctl_struct",17,"name")="upd_helper_ctl_struct.helper_list[0].helper_type" + Set gtmtypes("upd_helper_ctl_struct",17,"off")=44 + Set gtmtypes("upd_helper_ctl_struct",17,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",17,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_type")=17 + Set gtmtypes("upd_helper_ctl_struct",18,"name")="upd_helper_ctl_struct.helper_list[0].helper_shutdown" + Set gtmtypes("upd_helper_ctl_struct",18,"off")=48 + Set gtmtypes("upd_helper_ctl_struct",18,"len")=4 + Set gtmtypes("upd_helper_ctl_struct",18,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_ctl_struct","helper_list[0].helper_shutdown")=18 + ; + Set gtmtypes("upd_helper_entry_struct")="struct" + Set gtmtypes("upd_helper_entry_struct",0)=4 + Set gtmtypes("upd_helper_entry_struct","len")=16 + Set gtmtypes("upd_helper_entry_struct",1,"name")="upd_helper_entry_struct.helper_pid" + Set gtmtypes("upd_helper_entry_struct",1,"off")=0 + Set gtmtypes("upd_helper_entry_struct",1,"len")=4 + Set gtmtypes("upd_helper_entry_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_pid")=1 + Set gtmtypes("upd_helper_entry_struct",2,"name")="upd_helper_entry_struct.helper_pid_prev" + Set gtmtypes("upd_helper_entry_struct",2,"off")=4 + Set gtmtypes("upd_helper_entry_struct",2,"len")=4 + Set gtmtypes("upd_helper_entry_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_pid_prev")=2 + Set gtmtypes("upd_helper_entry_struct",3,"name")="upd_helper_entry_struct.helper_type" + Set gtmtypes("upd_helper_entry_struct",3,"off")=8 + Set gtmtypes("upd_helper_entry_struct",3,"len")=4 + Set gtmtypes("upd_helper_entry_struct",3,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_type")=3 + Set gtmtypes("upd_helper_entry_struct",4,"name")="upd_helper_entry_struct.helper_shutdown" + Set gtmtypes("upd_helper_entry_struct",4,"off")=12 + Set gtmtypes("upd_helper_entry_struct",4,"len")=4 + Set gtmtypes("upd_helper_entry_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("upd_helper_entry_struct","helper_shutdown")=4 + ; + Set gtmtypes("upd_proc_local_struct")="struct" + Set gtmtypes("upd_proc_local_struct",0)=12 + Set gtmtypes("upd_proc_local_struct","len")=304 + Set gtmtypes("upd_proc_local_struct",1,"name")="upd_proc_local_struct.upd_proc_pid" + Set gtmtypes("upd_proc_local_struct",1,"off")=0 + Set gtmtypes("upd_proc_local_struct",1,"len")=4 + Set gtmtypes("upd_proc_local_struct",1,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_pid")=1 + Set gtmtypes("upd_proc_local_struct",2,"name")="upd_proc_local_struct.upd_proc_pid_prev" + Set gtmtypes("upd_proc_local_struct",2,"off")=4 + Set gtmtypes("upd_proc_local_struct",2,"len")=4 + Set gtmtypes("upd_proc_local_struct",2,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_pid_prev")=2 + Set gtmtypes("upd_proc_local_struct",3,"name")="upd_proc_local_struct.read_jnl_seqno" + Set gtmtypes("upd_proc_local_struct",3,"off")=8 + Set gtmtypes("upd_proc_local_struct",3,"len")=8 + Set gtmtypes("upd_proc_local_struct",3,"type")="uint64_t" + Set gtmtypfldindx("upd_proc_local_struct","read_jnl_seqno")=3 + Set gtmtypes("upd_proc_local_struct",4,"name")="upd_proc_local_struct.read" + Set gtmtypes("upd_proc_local_struct",4,"off")=16 + Set gtmtypes("upd_proc_local_struct",4,"len")=4 + Set gtmtypes("upd_proc_local_struct",4,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","read")=4 + Set gtmtypes("upd_proc_local_struct",5,"name")="upd_proc_local_struct.upd_proc_shutdown" + Set gtmtypes("upd_proc_local_struct",5,"off")=20 + Set gtmtypes("upd_proc_local_struct",5,"len")=4 + Set gtmtypes("upd_proc_local_struct",5,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_shutdown")=5 + Set gtmtypes("upd_proc_local_struct",6,"name")="upd_proc_local_struct.upd_proc_shutdown_time" + Set gtmtypes("upd_proc_local_struct",6,"off")=24 + Set gtmtypes("upd_proc_local_struct",6,"len")=4 + Set gtmtypes("upd_proc_local_struct",6,"type")="int" + Set gtmtypfldindx("upd_proc_local_struct","upd_proc_shutdown_time")=6 + Set gtmtypes("upd_proc_local_struct",7,"name")="upd_proc_local_struct.bad_trans" + Set gtmtypes("upd_proc_local_struct",7,"off")=28 + Set gtmtypes("upd_proc_local_struct",7,"len")=4 + Set gtmtypes("upd_proc_local_struct",7,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","bad_trans")=7 + Set gtmtypes("upd_proc_local_struct",8,"name")="upd_proc_local_struct.changelog" + Set gtmtypes("upd_proc_local_struct",8,"off")=32 + Set gtmtypes("upd_proc_local_struct",8,"len")=4 + Set gtmtypes("upd_proc_local_struct",8,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","changelog")=8 + Set gtmtypes("upd_proc_local_struct",9,"name")="upd_proc_local_struct.start_upd" + Set gtmtypes("upd_proc_local_struct",9,"off")=36 + Set gtmtypes("upd_proc_local_struct",9,"len")=4 + Set gtmtypes("upd_proc_local_struct",9,"type")="int" + Set gtmtypfldindx("upd_proc_local_struct","start_upd")=9 + Set gtmtypes("upd_proc_local_struct",10,"name")="upd_proc_local_struct.log_interval" + Set gtmtypes("upd_proc_local_struct",10,"off")=40 + Set gtmtypes("upd_proc_local_struct",10,"len")=4 + Set gtmtypes("upd_proc_local_struct",10,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","log_interval")=10 + Set gtmtypes("upd_proc_local_struct",11,"name")="upd_proc_local_struct.log_file" + Set gtmtypes("upd_proc_local_struct",11,"off")=44 + Set gtmtypes("upd_proc_local_struct",11,"len")=256 + Set gtmtypes("upd_proc_local_struct",11,"type")="char" + Set gtmtypfldindx("upd_proc_local_struct","log_file")=11 + Set gtmtypes("upd_proc_local_struct",12,"name")="upd_proc_local_struct.onln_rlbk_flg" + Set gtmtypes("upd_proc_local_struct",12,"off")=300 + Set gtmtypes("upd_proc_local_struct",12,"len")=4 + Set gtmtypes("upd_proc_local_struct",12,"type")="unsigned-int" + Set gtmtypfldindx("upd_proc_local_struct","onln_rlbk_flg")=12 + ; + Set gtmtypes("urx_addr")="struct" + Set gtmtypes("urx_addr",0)=2 + Set gtmtypes("urx_addr","len")=8 + Set gtmtypes("urx_addr",1,"name")="urx_addr.addr" + Set gtmtypes("urx_addr",1,"off")=0 + Set gtmtypes("urx_addr",1,"len")=4 + Set gtmtypes("urx_addr",1,"type")="addr" + Set gtmtypfldindx("urx_addr","addr")=1 + Set gtmtypes("urx_addr",2,"name")="urx_addr.next" + Set gtmtypes("urx_addr",2,"off")=4 + Set gtmtypes("urx_addr",2,"len")=4 + Set gtmtypes("urx_addr",2,"type")="addr" + Set gtmtypfldindx("urx_addr","next")=2 + ; + Set gtmtypes("urx_labref")="struct" + Set gtmtypes("urx_labref",0)=4 + Set gtmtypes("urx_labref","len")=16 + Set gtmtypes("urx_labref",1,"name")="urx_labref.addr" + Set gtmtypes("urx_labref",1,"off")=0 + Set gtmtypes("urx_labref",1,"len")=4 + Set gtmtypes("urx_labref",1,"type")="addr" + Set gtmtypfldindx("urx_labref","addr")=1 + Set gtmtypes("urx_labref",2,"name")="urx_labref.next" + Set gtmtypes("urx_labref",2,"off")=4 + Set gtmtypes("urx_labref",2,"len")=4 + Set gtmtypes("urx_labref",2,"type")="addr" + Set gtmtypfldindx("urx_labref","next")=2 + Set gtmtypes("urx_labref",3,"name")="urx_labref.len" + Set gtmtypes("urx_labref",3,"off")=8 + Set gtmtypes("urx_labref",3,"len")=4 + Set gtmtypes("urx_labref",3,"type")="unsigned-int" + Set gtmtypfldindx("urx_labref","len")=3 + Set gtmtypes("urx_labref",4,"name")="urx_labref.name" + Set gtmtypes("urx_labref",4,"off")=12 + Set gtmtypes("urx_labref",4,"len")=1 + Set gtmtypes("urx_labref",4,"type")="unsigned-char" + Set gtmtypfldindx("urx_labref","name")=4 + ; + Set gtmtypes("urx_rtnref")="struct" + Set gtmtypes("urx_rtnref",0)=5 + Set gtmtypes("urx_rtnref","len")=20 + Set gtmtypes("urx_rtnref",1,"name")="urx_rtnref.addr" + Set gtmtypes("urx_rtnref",1,"off")=0 + Set gtmtypes("urx_rtnref",1,"len")=4 + Set gtmtypes("urx_rtnref",1,"type")="addr" + Set gtmtypfldindx("urx_rtnref","addr")=1 + Set gtmtypes("urx_rtnref",2,"name")="urx_rtnref.lab" + Set gtmtypes("urx_rtnref",2,"off")=4 + Set gtmtypes("urx_rtnref",2,"len")=4 + Set gtmtypes("urx_rtnref",2,"type")="addr" + Set gtmtypfldindx("urx_rtnref","lab")=2 + Set gtmtypes("urx_rtnref",3,"name")="urx_rtnref.next" + Set gtmtypes("urx_rtnref",3,"off")=8 + Set gtmtypes("urx_rtnref",3,"len")=4 + Set gtmtypes("urx_rtnref",3,"type")="addr" + Set gtmtypfldindx("urx_rtnref","next")=3 + Set gtmtypes("urx_rtnref",4,"name")="urx_rtnref.len" + Set gtmtypes("urx_rtnref",4,"off")=12 + Set gtmtypes("urx_rtnref",4,"len")=4 + Set gtmtypes("urx_rtnref",4,"type")="unsigned-int" + Set gtmtypfldindx("urx_rtnref","len")=4 + Set gtmtypes("urx_rtnref",5,"name")="urx_rtnref.name" + Set gtmtypes("urx_rtnref",5,"off")=16 + Set gtmtypes("urx_rtnref",5,"len")=1 + Set gtmtypes("urx_rtnref",5,"type")="unsigned-char" + Set gtmtypfldindx("urx_rtnref","name")=5 + ; + Set gtmtypes("utfcgr")="struct" + Set gtmtypes("utfcgr",0)=9 + Set gtmtypes("utfcgr","len")=28 + Set gtmtypes("utfcgr",1,"name")="utfcgr.last_str" + Set gtmtypes("utfcgr",1,"off")=0 + Set gtmtypes("utfcgr",1,"len")=12 + Set gtmtypes("utfcgr",1,"type")="mstr" + Set gtmtypfldindx("utfcgr","last_str")=1 + Set gtmtypes("utfcgr",2,"name")="utfcgr.last_str.char_len" + Set gtmtypes("utfcgr",2,"off")=0 + Set gtmtypes("utfcgr",2,"len")=4 + Set gtmtypes("utfcgr",2,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr","last_str.char_len")=2 + Set gtmtypes("utfcgr",3,"name")="utfcgr.last_str.len" + Set gtmtypes("utfcgr",3,"off")=4 + Set gtmtypes("utfcgr",3,"len")=4 + Set gtmtypes("utfcgr",3,"type")="int" + Set gtmtypfldindx("utfcgr","last_str.len")=3 + Set gtmtypes("utfcgr",4,"name")="utfcgr.last_str.addr" + Set gtmtypes("utfcgr",4,"off")=8 + Set gtmtypes("utfcgr",4,"len")=4 + Set gtmtypes("utfcgr",4,"type")="addr" + Set gtmtypfldindx("utfcgr","last_str.addr")=4 + Set gtmtypes("utfcgr",5,"name")="utfcgr.ngrps" + Set gtmtypes("utfcgr",5,"off")=12 + Set gtmtypes("utfcgr",5,"len")=2 + Set gtmtypes("utfcgr",5,"type")="unsigned-short" + Set gtmtypfldindx("utfcgr","ngrps")=5 + Set gtmtypes("utfcgr",6,"name")="utfcgr.idx" + Set gtmtypes("utfcgr",6,"off")=14 + Set gtmtypes("utfcgr",6,"len")=2 + Set gtmtypes("utfcgr",6,"type")="unsigned-short" + Set gtmtypfldindx("utfcgr","idx")=6 + Set gtmtypes("utfcgr",7,"name")="utfcgr.reference" + Set gtmtypes("utfcgr",7,"off")=16 + Set gtmtypes("utfcgr",7,"len")=4 + Set gtmtypes("utfcgr",7,"type")="boolean_t" + Set gtmtypfldindx("utfcgr","reference")=7 + Set gtmtypes("utfcgr",8,"name")="utfcgr.entry" + Set gtmtypes("utfcgr",8,"off")=20 + Set gtmtypes("utfcgr",8,"len")=8 + Set gtmtypes("utfcgr",8,"type")="utfcgr_entry" + Set gtmtypfldindx("utfcgr","entry")=8 + Set gtmtypes("utfcgr",9,"name")="utfcgr.entry[0].byteidx" + Set gtmtypes("utfcgr",9,"off")=24 + Set gtmtypes("utfcgr",9,"len")=4 + Set gtmtypes("utfcgr",9,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr","entry[0].byteidx")=9 + ; + Set gtmtypes("utfcgr_area")="struct" + Set gtmtypes("utfcgr_area",0)=4 + Set gtmtypes("utfcgr_area","len")=16 + Set gtmtypes("utfcgr_area",1,"name")="utfcgr_area.utfcgrsteal" + Set gtmtypes("utfcgr_area",1,"off")=0 + Set gtmtypes("utfcgr_area",1,"len")=4 + Set gtmtypes("utfcgr_area",1,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrsteal")=1 + Set gtmtypes("utfcgr_area",2,"name")="utfcgr_area.utfcgrmax" + Set gtmtypes("utfcgr_area",2,"off")=4 + Set gtmtypes("utfcgr_area",2,"len")=4 + Set gtmtypes("utfcgr_area",2,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrmax")=2 + Set gtmtypes("utfcgr_area",3,"name")="utfcgr_area.utfcgrs" + Set gtmtypes("utfcgr_area",3,"off")=8 + Set gtmtypes("utfcgr_area",3,"len")=4 + Set gtmtypes("utfcgr_area",3,"type")="addr" + Set gtmtypfldindx("utfcgr_area","utfcgrs")=3 + Set gtmtypes("utfcgr_area",4,"name")="utfcgr_area.utfcgrsize" + Set gtmtypes("utfcgr_area",4,"off")=12 + Set gtmtypes("utfcgr_area",4,"len")=4 + Set gtmtypes("utfcgr_area",4,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr_area","utfcgrsize")=4 + ; + Set gtmtypes("utfcgr_entry")="struct" + Set gtmtypes("utfcgr_entry",0)=1 + Set gtmtypes("utfcgr_entry","len")=8 + Set gtmtypes("utfcgr_entry",1,"name")="utfcgr_entry.byteidx" + Set gtmtypes("utfcgr_entry",1,"off")=4 + Set gtmtypes("utfcgr_entry",1,"len")=4 + Set gtmtypes("utfcgr_entry",1,"type")="unsigned-int" + Set gtmtypfldindx("utfcgr_entry","byteidx")=1 + ; + Set gtmtypes("utfscan_parseblk")="struct" + Set gtmtypes("utfscan_parseblk",0)=9 + Set gtmtypes("utfscan_parseblk","len")=36 + Set gtmtypes("utfscan_parseblk",1,"name")="utfscan_parseblk.mv" + Set gtmtypes("utfscan_parseblk",1,"off")=0 + Set gtmtypes("utfscan_parseblk",1,"len")=4 + Set gtmtypes("utfscan_parseblk",1,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","mv")=1 + Set gtmtypes("utfscan_parseblk",2,"name")="utfscan_parseblk.stoponbadchar" + Set gtmtypes("utfscan_parseblk",2,"off")=4 + Set gtmtypes("utfscan_parseblk",2,"len")=4 + Set gtmtypes("utfscan_parseblk",2,"type")="boolean_t" + Set gtmtypfldindx("utfscan_parseblk","stoponbadchar")=2 + Set gtmtypes("utfscan_parseblk",3,"name")="utfscan_parseblk.scan_byte_offset" + Set gtmtypes("utfscan_parseblk",3,"off")=8 + Set gtmtypes("utfscan_parseblk",3,"len")=4 + Set gtmtypes("utfscan_parseblk",3,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_byte_offset")=3 + Set gtmtypes("utfscan_parseblk",4,"name")="utfscan_parseblk.scan_char_count" + Set gtmtypes("utfscan_parseblk",4,"off")=12 + Set gtmtypes("utfscan_parseblk",4,"len")=4 + Set gtmtypes("utfscan_parseblk",4,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_count")=4 + Set gtmtypes("utfscan_parseblk",5,"name")="utfscan_parseblk.utfcgr_indx" + Set gtmtypes("utfscan_parseblk",5,"off")=16 + Set gtmtypes("utfscan_parseblk",5,"len")=4 + Set gtmtypes("utfscan_parseblk",5,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","utfcgr_indx")=5 + Set gtmtypes("utfscan_parseblk",6,"name")="utfscan_parseblk.scan_char_len" + Set gtmtypes("utfscan_parseblk",6,"off")=20 + Set gtmtypes("utfscan_parseblk",6,"len")=4 + Set gtmtypes("utfscan_parseblk",6,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_len")=6 + Set gtmtypes("utfscan_parseblk",7,"name")="utfscan_parseblk.scan_char_type" + Set gtmtypes("utfscan_parseblk",7,"off")=24 + Set gtmtypes("utfscan_parseblk",7,"len")=4 + Set gtmtypes("utfscan_parseblk",7,"type")="int" + Set gtmtypfldindx("utfscan_parseblk","scan_char_type")=7 + Set gtmtypes("utfscan_parseblk",8,"name")="utfscan_parseblk.badcharstr" + Set gtmtypes("utfscan_parseblk",8,"off")=28 + Set gtmtypes("utfscan_parseblk",8,"len")=4 + Set gtmtypes("utfscan_parseblk",8,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","badcharstr")=8 + Set gtmtypes("utfscan_parseblk",9,"name")="utfscan_parseblk.badchartop" + Set gtmtypes("utfscan_parseblk",9,"off")=32 + Set gtmtypes("utfscan_parseblk",9,"len")=4 + Set gtmtypes("utfscan_parseblk",9,"type")="addr" + Set gtmtypfldindx("utfscan_parseblk","badchartop")=9 + ; + Set gtmtypes("util_snapshot_t")="struct" + Set gtmtypes("util_snapshot_t",0)=3 + Set gtmtypes("util_snapshot_t","len")=16 + Set gtmtypes("util_snapshot_t",1,"name")="util_snapshot_t.master_map" + Set gtmtypes("util_snapshot_t",1,"off")=0 + Set gtmtypes("util_snapshot_t",1,"len")=4 + Set gtmtypes("util_snapshot_t",1,"type")="addr" + Set gtmtypfldindx("util_snapshot_t","master_map")=1 + Set gtmtypes("util_snapshot_t",2,"name")="util_snapshot_t.header" + Set gtmtypes("util_snapshot_t",2,"off")=4 + Set gtmtypes("util_snapshot_t",2,"len")=4 + Set gtmtypes("util_snapshot_t",2,"type")="addr" + Set gtmtypfldindx("util_snapshot_t","header")=2 + Set gtmtypes("util_snapshot_t",3,"name")="util_snapshot_t.native_size" + Set gtmtypes("util_snapshot_t",3,"off")=8 + Set gtmtypes("util_snapshot_t",3,"len")=8 + Set gtmtypes("util_snapshot_t",3,"type")="uint64_t" + Set gtmtypfldindx("util_snapshot_t","native_size")=3 + ; + Set gtmtypes("viewparm")="union" + Set gtmtypes("viewparm",0)=11 + Set gtmtypes("viewparm","len")=32 + Set gtmtypes("viewparm",1,"name")="viewparm.ident" + Set gtmtypes("viewparm",1,"off")=0 + Set gtmtypes("viewparm",1,"len")=32 + Set gtmtypes("viewparm",1,"type")="mident_fixed" + Set gtmtypfldindx("viewparm","ident")=1 + Set gtmtypes("viewparm",2,"name")="viewparm.ident.c" + Set gtmtypes("viewparm",2,"off")=0 + Set gtmtypes("viewparm",2,"len")=32 + Set gtmtypes("viewparm",2,"type")="char" + Set gtmtypfldindx("viewparm","ident.c")=2 + Set gtmtypes("viewparm",3,"name")="viewparm.value" + Set gtmtypes("viewparm",3,"off")=0 + Set gtmtypes("viewparm",3,"len")=4 + Set gtmtypes("viewparm",3,"type")="addr" + Set gtmtypfldindx("viewparm","value")=3 + Set gtmtypes("viewparm",4,"name")="viewparm.gv_ptr" + Set gtmtypes("viewparm",4,"off")=0 + Set gtmtypes("viewparm",4,"len")=4 + Set gtmtypes("viewparm",4,"type")="addr" + Set gtmtypfldindx("viewparm","gv_ptr")=4 + Set gtmtypes("viewparm",5,"name")="viewparm.ni_list" + Set gtmtypes("viewparm",5,"off")=0 + Set gtmtypes("viewparm",5,"len")=8 + Set gtmtypes("viewparm",5,"type")="noisolation_list" + Set gtmtypfldindx("viewparm","ni_list")=5 + Set gtmtypes("viewparm",6,"name")="viewparm.ni_list.type" + Set gtmtypes("viewparm",6,"off")=0 + Set gtmtypes("viewparm",6,"len")=4 + Set gtmtypes("viewparm",6,"type")="int" + Set gtmtypfldindx("viewparm","ni_list.type")=6 + Set gtmtypes("viewparm",7,"name")="viewparm.ni_list.gvnh_list" + Set gtmtypes("viewparm",7,"off")=4 + Set gtmtypes("viewparm",7,"len")=4 + Set gtmtypes("viewparm",7,"type")="addr" + Set gtmtypfldindx("viewparm","ni_list.gvnh_list")=7 + Set gtmtypes("viewparm",8,"name")="viewparm.str" + Set gtmtypes("viewparm",8,"off")=0 + Set gtmtypes("viewparm",8,"len")=12 + Set gtmtypes("viewparm",8,"type")="mstr" + Set gtmtypfldindx("viewparm","str")=8 + Set gtmtypes("viewparm",9,"name")="viewparm.str.char_len" + Set gtmtypes("viewparm",9,"off")=0 + Set gtmtypes("viewparm",9,"len")=4 + Set gtmtypes("viewparm",9,"type")="unsigned-int" + Set gtmtypfldindx("viewparm","str.char_len")=9 + Set gtmtypes("viewparm",10,"name")="viewparm.str.len" + Set gtmtypes("viewparm",10,"off")=4 + Set gtmtypes("viewparm",10,"len")=4 + Set gtmtypes("viewparm",10,"type")="int" + Set gtmtypfldindx("viewparm","str.len")=10 + Set gtmtypes("viewparm",11,"name")="viewparm.str.addr" + Set gtmtypes("viewparm",11,"off")=8 + Set gtmtypes("viewparm",11,"len")=4 + Set gtmtypes("viewparm",11,"type")="addr" + Set gtmtypfldindx("viewparm","str.addr")=11 + ; + Set gtmtypes("viewtab_entry")="struct" + Set gtmtypes("viewtab_entry",0)=4 + Set gtmtypes("viewtab_entry","len")=19 + Set gtmtypes("viewtab_entry",1,"name")="viewtab_entry.keyword" + Set gtmtypes("viewtab_entry",1,"off")=0 + Set gtmtypes("viewtab_entry",1,"len")=16 + Set gtmtypes("viewtab_entry",1,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","keyword")=1 + Set gtmtypes("viewtab_entry",2,"name")="viewtab_entry.parm" + Set gtmtypes("viewtab_entry",2,"off")=16 + Set gtmtypes("viewtab_entry",2,"len")=1 + Set gtmtypes("viewtab_entry",2,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","parm")=2 + Set gtmtypes("viewtab_entry",3,"name")="viewtab_entry.keycode" + Set gtmtypes("viewtab_entry",3,"off")=17 + Set gtmtypes("viewtab_entry",3,"len")=1 + Set gtmtypes("viewtab_entry",3,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","keycode")=3 + Set gtmtypes("viewtab_entry",4,"name")="viewtab_entry.restype" + Set gtmtypes("viewtab_entry",4,"off")=18 + Set gtmtypes("viewtab_entry",4,"len")=1 + Set gtmtypes("viewtab_entry",4,"type")="unsigned-char" + Set gtmtypfldindx("viewtab_entry","restype")=4 + ; + Set gtmtypes("vms_lock_sb")="struct" + Set gtmtypes("vms_lock_sb",0)=4 + Set gtmtypes("vms_lock_sb","len")=24 + Set gtmtypes("vms_lock_sb",1,"name")="vms_lock_sb.cond" + Set gtmtypes("vms_lock_sb",1,"off")=0 + Set gtmtypes("vms_lock_sb",1,"len")=2 + Set gtmtypes("vms_lock_sb",1,"type")="short" + Set gtmtypfldindx("vms_lock_sb","cond")=1 + Set gtmtypes("vms_lock_sb",2,"name")="vms_lock_sb.reserved" + Set gtmtypes("vms_lock_sb",2,"off")=2 + Set gtmtypes("vms_lock_sb",2,"len")=2 + Set gtmtypes("vms_lock_sb",2,"type")="short" + Set gtmtypfldindx("vms_lock_sb","reserved")=2 + Set gtmtypes("vms_lock_sb",3,"name")="vms_lock_sb.lockid" + Set gtmtypes("vms_lock_sb",3,"off")=4 + Set gtmtypes("vms_lock_sb",3,"len")=4 + Set gtmtypes("vms_lock_sb",3,"type")="int" + Set gtmtypfldindx("vms_lock_sb","lockid")=3 + Set gtmtypes("vms_lock_sb",4,"name")="vms_lock_sb.valblk" + Set gtmtypes("vms_lock_sb",4,"off")=8 + Set gtmtypes("vms_lock_sb",4,"len")=16 + Set gtmtypes("vms_lock_sb",4,"type")="int" + Set gtmtypfldindx("vms_lock_sb","valblk")=4 + Set gtmtypes("vms_lock_sb",4,"dim")=4 + ; + Set gtmtypes("wcs_conflict_trace_t")="struct" + Set gtmtypes("wcs_conflict_trace_t",0)=3 + Set gtmtypes("wcs_conflict_trace_t","len")=12 + Set gtmtypes("wcs_conflict_trace_t",1,"name")="wcs_conflict_trace_t.wcs_active_lvl" + Set gtmtypes("wcs_conflict_trace_t",1,"off")=0 + Set gtmtypes("wcs_conflict_trace_t",1,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",1,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","wcs_active_lvl")=1 + Set gtmtypes("wcs_conflict_trace_t",2,"name")="wcs_conflict_trace_t.io_in_prog_pid" + Set gtmtypes("wcs_conflict_trace_t",2,"off")=4 + Set gtmtypes("wcs_conflict_trace_t",2,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",2,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","io_in_prog_pid")=2 + Set gtmtypes("wcs_conflict_trace_t",3,"name")="wcs_conflict_trace_t.fsync_in_prog_pid" + Set gtmtypes("wcs_conflict_trace_t",3,"off")=8 + Set gtmtypes("wcs_conflict_trace_t",3,"len")=4 + Set gtmtypes("wcs_conflict_trace_t",3,"type")="int" + Set gtmtypfldindx("wcs_conflict_trace_t","fsync_in_prog_pid")=3 + ; + Set gtmtypes("z_records")="struct" + Set gtmtypes("z_records",0)=3 + Set gtmtypes("z_records","len")=12 + Set gtmtypes("z_records",1,"name")="z_records.beg" + Set gtmtypes("z_records",1,"off")=0 + Set gtmtypes("z_records",1,"len")=4 + Set gtmtypes("z_records",1,"type")="addr" + Set gtmtypfldindx("z_records","beg")=1 + Set gtmtypes("z_records",2,"name")="z_records.gtm_free" + Set gtmtypes("z_records",2,"off")=4 + Set gtmtypes("z_records",2,"len")=4 + Set gtmtypes("z_records",2,"type")="addr" + Set gtmtypfldindx("z_records","gtm_free")=2 + Set gtmtypes("z_records",3,"name")="z_records.end" + Set gtmtypes("z_records",3,"off")=8 + Set gtmtypes("z_records",3,"len")=4 + Set gtmtypes("z_records",3,"type")="addr" + Set gtmtypfldindx("z_records","end")=3 + ; + Set gtmtypes("zbrk_struct")="struct" + Set gtmtypes("zbrk_struct",0)=9 + Set gtmtypes("zbrk_struct","len")=32 + Set gtmtypes("zbrk_struct",1,"name")="zbrk_struct.mpc" + Set gtmtypes("zbrk_struct",1,"off")=0 + Set gtmtypes("zbrk_struct",1,"len")=4 + Set gtmtypes("zbrk_struct",1,"type")="addr" + Set gtmtypfldindx("zbrk_struct","mpc")=1 + Set gtmtypes("zbrk_struct",2,"name")="zbrk_struct.rtn" + Set gtmtypes("zbrk_struct",2,"off")=4 + Set gtmtypes("zbrk_struct",2,"len")=4 + Set gtmtypes("zbrk_struct",2,"type")="addr" + Set gtmtypfldindx("zbrk_struct","rtn")=2 + Set gtmtypes("zbrk_struct",3,"name")="zbrk_struct.lab" + Set gtmtypes("zbrk_struct",3,"off")=8 + Set gtmtypes("zbrk_struct",3,"len")=4 + Set gtmtypes("zbrk_struct",3,"type")="addr" + Set gtmtypfldindx("zbrk_struct","lab")=3 + Set gtmtypes("zbrk_struct",4,"name")="zbrk_struct.offset" + Set gtmtypes("zbrk_struct",4,"off")=12 + Set gtmtypes("zbrk_struct",4,"len")=4 + Set gtmtypes("zbrk_struct",4,"type")="int" + Set gtmtypfldindx("zbrk_struct","offset")=4 + Set gtmtypes("zbrk_struct",5,"name")="zbrk_struct.count" + Set gtmtypes("zbrk_struct",5,"off")=16 + Set gtmtypes("zbrk_struct",5,"len")=4 + Set gtmtypes("zbrk_struct",5,"type")="int" + Set gtmtypfldindx("zbrk_struct","count")=5 + Set gtmtypes("zbrk_struct",6,"name")="zbrk_struct.action" + Set gtmtypes("zbrk_struct",6,"off")=20 + Set gtmtypes("zbrk_struct",6,"len")=4 + Set gtmtypes("zbrk_struct",6,"type")="addr" + Set gtmtypfldindx("zbrk_struct","action")=6 + Set gtmtypes("zbrk_struct",7,"name")="zbrk_struct.rtnhdr" + Set gtmtypes("zbrk_struct",7,"off")=24 + Set gtmtypes("zbrk_struct",7,"len")=4 + Set gtmtypes("zbrk_struct",7,"type")="addr" + Set gtmtypfldindx("zbrk_struct","rtnhdr")=7 + Set gtmtypes("zbrk_struct",8,"name")="zbrk_struct.m_opcode" + Set gtmtypes("zbrk_struct",8,"off")=28 + Set gtmtypes("zbrk_struct",8,"len")=1 + Set gtmtypes("zbrk_struct",8,"type")="unsigned-char" + Set gtmtypfldindx("zbrk_struct","m_opcode")=8 + Set gtmtypes("zbrk_struct",9,"name")="zbrk_struct.filler" + Set gtmtypes("zbrk_struct",9,"off")=29 + Set gtmtypes("zbrk_struct",9,"len")=3 + Set gtmtypes("zbrk_struct",9,"type")="char" + Set gtmtypfldindx("zbrk_struct","filler")=9 + ; + Set gtmtypes("zintcmd_active_info")="struct" + Set gtmtypes("zintcmd_active_info",0)=3 + Set gtmtypes("zintcmd_active_info","len")=12 + Set gtmtypes("zintcmd_active_info",1,"name")="zintcmd_active_info.count" + Set gtmtypes("zintcmd_active_info",1,"off")=0 + Set gtmtypes("zintcmd_active_info",1,"len")=4 + Set gtmtypes("zintcmd_active_info",1,"type")="int" + Set gtmtypfldindx("zintcmd_active_info","count")=1 + Set gtmtypes("zintcmd_active_info",2,"name")="zintcmd_active_info.restart_pc_last" + Set gtmtypes("zintcmd_active_info",2,"off")=4 + Set gtmtypes("zintcmd_active_info",2,"len")=4 + Set gtmtypes("zintcmd_active_info",2,"type")="addr" + Set gtmtypfldindx("zintcmd_active_info","restart_pc_last")=2 + Set gtmtypes("zintcmd_active_info",3,"name")="zintcmd_active_info.restart_ctxt_last" + Set gtmtypes("zintcmd_active_info",3,"off")=8 + Set gtmtypes("zintcmd_active_info",3,"len")=4 + Set gtmtypes("zintcmd_active_info",3,"type")="addr" + Set gtmtypfldindx("zintcmd_active_info","restart_ctxt_last")=3 + ; + Set gtmtypes("zro_ent")="struct" + Set gtmtypes("zro_ent",0)=9 + Set gtmtypes("zro_ent","len")=32 + Set gtmtypes("zro_ent",1,"name")="zro_ent.type" + Set gtmtypes("zro_ent",1,"off")=0 + Set gtmtypes("zro_ent",1,"len")=4 + Set gtmtypes("zro_ent",1,"type")="unsigned-int" + Set gtmtypfldindx("zro_ent","type")=1 + Set gtmtypes("zro_ent",2,"name")="zro_ent.count" + Set gtmtypes("zro_ent",2,"off")=4 + Set gtmtypes("zro_ent",2,"len")=4 + Set gtmtypes("zro_ent",2,"type")="int" + Set gtmtypfldindx("zro_ent","count")=2 + Set gtmtypes("zro_ent",3,"name")="zro_ent.str" + Set gtmtypes("zro_ent",3,"off")=8 + Set gtmtypes("zro_ent",3,"len")=12 + Set gtmtypes("zro_ent",3,"type")="mstr" + Set gtmtypfldindx("zro_ent","str")=3 + Set gtmtypes("zro_ent",4,"name")="zro_ent.str.char_len" + Set gtmtypes("zro_ent",4,"off")=8 + Set gtmtypes("zro_ent",4,"len")=4 + Set gtmtypes("zro_ent",4,"type")="unsigned-int" + Set gtmtypfldindx("zro_ent","str.char_len")=4 + Set gtmtypes("zro_ent",5,"name")="zro_ent.str.len" + Set gtmtypes("zro_ent",5,"off")=12 + Set gtmtypes("zro_ent",5,"len")=4 + Set gtmtypes("zro_ent",5,"type")="int" + Set gtmtypfldindx("zro_ent","str.len")=5 + Set gtmtypes("zro_ent",6,"name")="zro_ent.str.addr" + Set gtmtypes("zro_ent",6,"off")=16 + Set gtmtypes("zro_ent",6,"len")=4 + Set gtmtypes("zro_ent",6,"type")="addr" + Set gtmtypfldindx("zro_ent","str.addr")=6 + Set gtmtypes("zro_ent",7,"name")="zro_ent.shrlib" + Set gtmtypes("zro_ent",7,"off")=20 + Set gtmtypes("zro_ent",7,"len")=4 + Set gtmtypes("zro_ent",7,"type")="addr" + Set gtmtypfldindx("zro_ent","shrlib")=7 + Set gtmtypes("zro_ent",8,"name")="zro_ent.shrsym" + Set gtmtypes("zro_ent",8,"off")=24 + Set gtmtypes("zro_ent",8,"len")=4 + Set gtmtypes("zro_ent",8,"type")="addr" + Set gtmtypfldindx("zro_ent","shrsym")=8 + Set gtmtypes("zro_ent",9,"name")="zro_ent.relinkctl_sgmaddr" + Set gtmtypes("zro_ent",9,"off")=28 + Set gtmtypes("zro_ent",9,"len")=4 + Set gtmtypes("zro_ent",9,"type")="addr" + Set gtmtypfldindx("zro_ent","relinkctl_sgmaddr")=9 + ; + Set gtmtypes("zs_gv_struct")="struct" + Set gtmtypes("zs_gv_struct",0)=2 + Set gtmtypes("zs_gv_struct","len")=8 + Set gtmtypes("zs_gv_struct",1,"name")="zs_gv_struct.end" + Set gtmtypes("zs_gv_struct",1,"off")=0 + Set gtmtypes("zs_gv_struct",1,"len")=4 + Set gtmtypes("zs_gv_struct",1,"type")="int" + Set gtmtypfldindx("zs_gv_struct","end")=1 + Set gtmtypes("zs_gv_struct",2,"name")="zs_gv_struct.prev" + Set gtmtypes("zs_gv_struct",2,"off")=4 + Set gtmtypes("zs_gv_struct",2,"len")=4 + Set gtmtypes("zs_gv_struct",2,"type")="int" + Set gtmtypfldindx("zs_gv_struct","prev")=2 + ; + Set gtmtypes("zs_lv_struct")="struct" + Set gtmtypes("zs_lv_struct",0)=2 + Set gtmtypes("zs_lv_struct","len")=8 + Set gtmtypes("zs_lv_struct",1,"name")="zs_lv_struct.lvar" + Set gtmtypes("zs_lv_struct",1,"off")=0 + Set gtmtypes("zs_lv_struct",1,"len")=4 + Set gtmtypes("zs_lv_struct",1,"type")="addr" + Set gtmtypfldindx("zs_lv_struct","lvar")=1 + Set gtmtypes("zs_lv_struct",2,"name")="zs_lv_struct.child" + Set gtmtypes("zs_lv_struct",2,"off")=4 + Set gtmtypes("zs_lv_struct",2,"len")=4 + Set gtmtypes("zs_lv_struct",2,"type")="addr" + Set gtmtypfldindx("zs_lv_struct","child")=2 + ; + Set gtmtypes("zshow_index")="struct" + Set gtmtypes("zshow_index",0)=2 + Set gtmtypes("zshow_index","len")=2 + Set gtmtypes("zshow_index",1,"name")="zshow_index.offset" + Set gtmtypes("zshow_index",1,"off")=0 + Set gtmtypes("zshow_index",1,"len")=1 + Set gtmtypes("zshow_index",1,"type")="char" + Set gtmtypfldindx("zshow_index","offset")=1 + Set gtmtypes("zshow_index",2,"name")="zshow_index.letter" + Set gtmtypes("zshow_index",2,"off")=1 + Set gtmtypes("zshow_index",2,"len")=1 + Set gtmtypes("zshow_index",2,"type")="char" + Set gtmtypfldindx("zshow_index","letter")=2 + ; + Set gtmtypes("zshow_out")="struct" + Set gtmtypes("zshow_out",0)=18 + Set gtmtypes("zshow_out","len")=44 + Set gtmtypes("zshow_out",1,"name")="zshow_out.type" + Set gtmtypes("zshow_out",1,"off")=0 + Set gtmtypes("zshow_out",1,"len")=1 + Set gtmtypes("zshow_out",1,"type")="char" + Set gtmtypfldindx("zshow_out","type")=1 + Set gtmtypes("zshow_out",2,"name")="zshow_out.code" + Set gtmtypes("zshow_out",2,"off")=1 + Set gtmtypes("zshow_out",2,"len")=1 + Set gtmtypes("zshow_out",2,"type")="char" + Set gtmtypfldindx("zshow_out","code")=2 + Set gtmtypes("zshow_out",3,"name")="zshow_out.curr_code" + Set gtmtypes("zshow_out",3,"off")=2 + Set gtmtypes("zshow_out",3,"len")=1 + Set gtmtypes("zshow_out",3,"type")="char" + Set gtmtypfldindx("zshow_out","curr_code")=3 + Set gtmtypes("zshow_out",4,"name")="zshow_out.size" + Set gtmtypes("zshow_out",4,"off")=4 + Set gtmtypes("zshow_out",4,"len")=4 + Set gtmtypes("zshow_out",4,"type")="int" + Set gtmtypfldindx("zshow_out","size")=4 + Set gtmtypes("zshow_out",5,"name")="zshow_out.buff" + Set gtmtypes("zshow_out",5,"off")=8 + Set gtmtypes("zshow_out",5,"len")=4 + Set gtmtypes("zshow_out",5,"type")="addr" + Set gtmtypfldindx("zshow_out","buff")=5 + Set gtmtypes("zshow_out",6,"name")="zshow_out.ptr" + Set gtmtypes("zshow_out",6,"off")=12 + Set gtmtypes("zshow_out",6,"len")=4 + Set gtmtypes("zshow_out",6,"type")="addr" + Set gtmtypfldindx("zshow_out","ptr")=6 + Set gtmtypes("zshow_out",7,"name")="zshow_out.len" + Set gtmtypes("zshow_out",7,"off")=16 + Set gtmtypes("zshow_out",7,"len")=4 + Set gtmtypes("zshow_out",7,"type")="int" + Set gtmtypfldindx("zshow_out","len")=7 + Set gtmtypes("zshow_out",8,"name")="zshow_out.displen" + Set gtmtypes("zshow_out",8,"off")=20 + Set gtmtypes("zshow_out",8,"len")=4 + Set gtmtypes("zshow_out",8,"type")="int" + Set gtmtypfldindx("zshow_out","displen")=8 + Set gtmtypes("zshow_out",9,"name")="zshow_out.line_num" + Set gtmtypes("zshow_out",9,"off")=24 + Set gtmtypes("zshow_out",9,"len")=4 + Set gtmtypes("zshow_out",9,"type")="int" + Set gtmtypfldindx("zshow_out","line_num")=9 + Set gtmtypes("zshow_out",10,"name")="zshow_out.line_cont" + Set gtmtypes("zshow_out",10,"off")=28 + Set gtmtypes("zshow_out",10,"len")=4 + Set gtmtypes("zshow_out",10,"type")="int" + Set gtmtypfldindx("zshow_out","line_cont")=10 + Set gtmtypes("zshow_out",11,"name")="zshow_out.flush" + Set gtmtypes("zshow_out",11,"off")=32 + Set gtmtypes("zshow_out",11,"len")=4 + Set gtmtypes("zshow_out",11,"type")="boolean_t" + Set gtmtypfldindx("zshow_out","flush")=11 + Set gtmtypes("zshow_out",12,"name")="zshow_out.out_var" + Set gtmtypes("zshow_out",12,"off")=36 + Set gtmtypes("zshow_out",12,"len")=8 + Set gtmtypes("zshow_out",12,"type")="union" + Set gtmtypfldindx("zshow_out","out_var")=12 + Set gtmtypes("zshow_out",13,"name")="zshow_out.out_var.lv" + Set gtmtypes("zshow_out",13,"off")=36 + Set gtmtypes("zshow_out",13,"len")=8 + Set gtmtypes("zshow_out",13,"type")="zs_lv_struct" + Set gtmtypfldindx("zshow_out","out_var.lv")=13 + Set gtmtypes("zshow_out",14,"name")="zshow_out.out_var.lv.lvar" + Set gtmtypes("zshow_out",14,"off")=36 + Set gtmtypes("zshow_out",14,"len")=4 + Set gtmtypes("zshow_out",14,"type")="addr" + Set gtmtypfldindx("zshow_out","out_var.lv.lvar")=14 + Set gtmtypes("zshow_out",15,"name")="zshow_out.out_var.lv.child" + Set gtmtypes("zshow_out",15,"off")=40 + Set gtmtypes("zshow_out",15,"len")=4 + Set gtmtypes("zshow_out",15,"type")="addr" + Set gtmtypfldindx("zshow_out","out_var.lv.child")=15 + Set gtmtypes("zshow_out",16,"name")="zshow_out.out_var.gv" + Set gtmtypes("zshow_out",16,"off")=36 + Set gtmtypes("zshow_out",16,"len")=8 + Set gtmtypes("zshow_out",16,"type")="zs_gv_struct" + Set gtmtypfldindx("zshow_out","out_var.gv")=16 + Set gtmtypes("zshow_out",17,"name")="zshow_out.out_var.gv.end" + Set gtmtypes("zshow_out",17,"off")=36 + Set gtmtypes("zshow_out",17,"len")=4 + Set gtmtypes("zshow_out",17,"type")="int" + Set gtmtypfldindx("zshow_out","out_var.gv.end")=17 + Set gtmtypes("zshow_out",18,"name")="zshow_out.out_var.gv.prev" + Set gtmtypes("zshow_out",18,"off")=40 + Set gtmtypes("zshow_out",18,"len")=4 + Set gtmtypes("zshow_out",18,"type")="int" + Set gtmtypfldindx("zshow_out","out_var.gv.prev")=18 + ; + Set gtmtypes("zwr_alias_var")="struct" + Set gtmtypes("zwr_alias_var",0)=5 + Set gtmtypes("zwr_alias_var","len")=16 + Set gtmtypes("zwr_alias_var",1,"name")="zwr_alias_var.value_printed" + Set gtmtypes("zwr_alias_var",1,"off")=0 + Set gtmtypes("zwr_alias_var",1,"len")=4 + Set gtmtypes("zwr_alias_var",1,"type")="boolean_t" + Set gtmtypfldindx("zwr_alias_var","value_printed")=1 + Set gtmtypes("zwr_alias_var",2,"name")="zwr_alias_var.zwr_var" + Set gtmtypes("zwr_alias_var",2,"off")=4 + Set gtmtypes("zwr_alias_var",2,"len")=12 + Set gtmtypes("zwr_alias_var",2,"type")="mstr" + Set gtmtypfldindx("zwr_alias_var","zwr_var")=2 + Set gtmtypes("zwr_alias_var",3,"name")="zwr_alias_var.zwr_var.char_len" + Set gtmtypes("zwr_alias_var",3,"off")=4 + Set gtmtypes("zwr_alias_var",3,"len")=4 + Set gtmtypes("zwr_alias_var",3,"type")="unsigned-int" + Set gtmtypfldindx("zwr_alias_var","zwr_var.char_len")=3 + Set gtmtypes("zwr_alias_var",4,"name")="zwr_alias_var.zwr_var.len" + Set gtmtypes("zwr_alias_var",4,"off")=8 + Set gtmtypes("zwr_alias_var",4,"len")=4 + Set gtmtypes("zwr_alias_var",4,"type")="int" + Set gtmtypfldindx("zwr_alias_var","zwr_var.len")=4 + Set gtmtypes("zwr_alias_var",5,"name")="zwr_alias_var.zwr_var.addr" + Set gtmtypes("zwr_alias_var",5,"off")=12 + Set gtmtypes("zwr_alias_var",5,"len")=4 + Set gtmtypes("zwr_alias_var",5,"type")="addr" + Set gtmtypfldindx("zwr_alias_var","zwr_var.addr")=5 + ; + Set gtmtypes("zwr_hash_table")="struct" + Set gtmtypes("zwr_hash_table",0)=18 + Set gtmtypes("zwr_hash_table","len")=68 + Set gtmtypes("zwr_hash_table",1,"name")="zwr_hash_table.cleaned" + Set gtmtypes("zwr_hash_table",1,"off")=0 + Set gtmtypes("zwr_hash_table",1,"len")=4 + Set gtmtypes("zwr_hash_table",1,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","cleaned")=1 + Set gtmtypes("zwr_hash_table",2,"name")="zwr_hash_table.h_zwrtab" + Set gtmtypes("zwr_hash_table",2,"off")=4 + Set gtmtypes("zwr_hash_table",2,"len")=56 + Set gtmtypes("zwr_hash_table",2,"type")="hash_table_addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab")=2 + Set gtmtypes("zwr_hash_table",3,"name")="zwr_hash_table.h_zwrtab.base" + Set gtmtypes("zwr_hash_table",3,"off")=4 + Set gtmtypes("zwr_hash_table",3,"len")=4 + Set gtmtypes("zwr_hash_table",3,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.base")=3 + Set gtmtypes("zwr_hash_table",4,"name")="zwr_hash_table.h_zwrtab.top" + Set gtmtypes("zwr_hash_table",4,"off")=8 + Set gtmtypes("zwr_hash_table",4,"len")=4 + Set gtmtypes("zwr_hash_table",4,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.top")=4 + Set gtmtypes("zwr_hash_table",5,"name")="zwr_hash_table.h_zwrtab.size" + Set gtmtypes("zwr_hash_table",5,"off")=12 + Set gtmtypes("zwr_hash_table",5,"len")=4 + Set gtmtypes("zwr_hash_table",5,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.size")=5 + Set gtmtypes("zwr_hash_table",6,"name")="zwr_hash_table.h_zwrtab.initial_size" + Set gtmtypes("zwr_hash_table",6,"off")=16 + Set gtmtypes("zwr_hash_table",6,"len")=4 + Set gtmtypes("zwr_hash_table",6,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.initial_size")=6 + Set gtmtypes("zwr_hash_table",7,"name")="zwr_hash_table.h_zwrtab.spare_base" + Set gtmtypes("zwr_hash_table",7,"off")=20 + Set gtmtypes("zwr_hash_table",7,"len")=4 + Set gtmtypes("zwr_hash_table",7,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.spare_base")=7 + Set gtmtypes("zwr_hash_table",8,"name")="zwr_hash_table.h_zwrtab.spare_base_size" + Set gtmtypes("zwr_hash_table",8,"off")=24 + Set gtmtypes("zwr_hash_table",8,"len")=4 + Set gtmtypes("zwr_hash_table",8,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.spare_base_size")=8 + Set gtmtypes("zwr_hash_table",9,"name")="zwr_hash_table.h_zwrtab.dont_compact" + Set gtmtypes("zwr_hash_table",9,"off")=28 + Set gtmtypes("zwr_hash_table",9,"len")=4 + Set gtmtypes("zwr_hash_table",9,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.dont_compact")=9 + Set gtmtypes("zwr_hash_table",10,"name")="zwr_hash_table.h_zwrtab.dont_keep_spare_table" + Set gtmtypes("zwr_hash_table",10,"off")=32 + Set gtmtypes("zwr_hash_table",10,"len")=4 + Set gtmtypes("zwr_hash_table",10,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.dont_keep_spare_table")=10 + Set gtmtypes("zwr_hash_table",11,"name")="zwr_hash_table.h_zwrtab.defer_base_release" + Set gtmtypes("zwr_hash_table",11,"off")=36 + Set gtmtypes("zwr_hash_table",11,"len")=4 + Set gtmtypes("zwr_hash_table",11,"type")="boolean_t" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.defer_base_release")=11 + Set gtmtypes("zwr_hash_table",12,"name")="zwr_hash_table.h_zwrtab.count" + Set gtmtypes("zwr_hash_table",12,"off")=40 + Set gtmtypes("zwr_hash_table",12,"len")=4 + Set gtmtypes("zwr_hash_table",12,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.count")=12 + Set gtmtypes("zwr_hash_table",13,"name")="zwr_hash_table.h_zwrtab.del_count" + Set gtmtypes("zwr_hash_table",13,"off")=44 + Set gtmtypes("zwr_hash_table",13,"len")=4 + Set gtmtypes("zwr_hash_table",13,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.del_count")=13 + Set gtmtypes("zwr_hash_table",14,"name")="zwr_hash_table.h_zwrtab.exp_trigger_size" + Set gtmtypes("zwr_hash_table",14,"off")=48 + Set gtmtypes("zwr_hash_table",14,"len")=4 + Set gtmtypes("zwr_hash_table",14,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.exp_trigger_size")=14 + Set gtmtypes("zwr_hash_table",15,"name")="zwr_hash_table.h_zwrtab.cmp_trigger_size" + Set gtmtypes("zwr_hash_table",15,"off")=52 + Set gtmtypes("zwr_hash_table",15,"len")=4 + Set gtmtypes("zwr_hash_table",15,"type")="unsigned-int" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.cmp_trigger_size")=15 + Set gtmtypes("zwr_hash_table",16,"name")="zwr_hash_table.h_zwrtab.entry_passed_thru" + Set gtmtypes("zwr_hash_table",16,"off")=56 + Set gtmtypes("zwr_hash_table",16,"len")=4 + Set gtmtypes("zwr_hash_table",16,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","h_zwrtab.entry_passed_thru")=16 + Set gtmtypes("zwr_hash_table",17,"name")="zwr_hash_table.first_zwrzavb" + Set gtmtypes("zwr_hash_table",17,"off")=60 + Set gtmtypes("zwr_hash_table",17,"len")=4 + Set gtmtypes("zwr_hash_table",17,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","first_zwrzavb")=17 + Set gtmtypes("zwr_hash_table",18,"name")="zwr_hash_table.zav_flist" + Set gtmtypes("zwr_hash_table",18,"off")=64 + Set gtmtypes("zwr_hash_table",18,"len")=4 + Set gtmtypes("zwr_hash_table",18,"type")="addr" + Set gtmtypfldindx("zwr_hash_table","zav_flist")=18 + ; + Set gtmtypes("zwr_sub_lst")="struct" + Set gtmtypes("zwr_sub_lst",0)=5 + Set gtmtypes("zwr_sub_lst","len")=16 + Set gtmtypes("zwr_sub_lst",1,"name")="zwr_sub_lst.subsc_list" + Set gtmtypes("zwr_sub_lst",1,"off")=0 + Set gtmtypes("zwr_sub_lst",1,"len")=16 + Set gtmtypes("zwr_sub_lst",1,"type")="struct" + Set gtmtypfldindx("zwr_sub_lst","subsc_list")=1 + Set gtmtypes("zwr_sub_lst",2,"name")="zwr_sub_lst.subsc_list[0].subsc_type" + Set gtmtypes("zwr_sub_lst",2,"off")=0 + Set gtmtypes("zwr_sub_lst",2,"len")=1 + Set gtmtypes("zwr_sub_lst",2,"type")="unsigned-char" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].subsc_type")=2 + Set gtmtypes("zwr_sub_lst",3,"name")="zwr_sub_lst.subsc_list[0].actual" + Set gtmtypes("zwr_sub_lst",3,"off")=4 + Set gtmtypes("zwr_sub_lst",3,"len")=4 + Set gtmtypes("zwr_sub_lst",3,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].actual")=3 + Set gtmtypes("zwr_sub_lst",4,"name")="zwr_sub_lst.subsc_list[0].first" + Set gtmtypes("zwr_sub_lst",4,"off")=8 + Set gtmtypes("zwr_sub_lst",4,"len")=4 + Set gtmtypes("zwr_sub_lst",4,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].first")=4 + Set gtmtypes("zwr_sub_lst",5,"name")="zwr_sub_lst.subsc_list[0].second" + Set gtmtypes("zwr_sub_lst",5,"off")=12 + Set gtmtypes("zwr_sub_lst",5,"len")=4 + Set gtmtypes("zwr_sub_lst",5,"type")="addr" + Set gtmtypfldindx("zwr_sub_lst","subsc_list[0].second")=5 + ; + Set gtmtypes("zwr_zav_blk")="struct" + Set gtmtypes("zwr_zav_blk",0)=4 + Set gtmtypes("zwr_zav_blk","len")=16 + Set gtmtypes("zwr_zav_blk",1,"name")="zwr_zav_blk.zav_base" + Set gtmtypes("zwr_zav_blk",1,"off")=0 + Set gtmtypes("zwr_zav_blk",1,"len")=4 + Set gtmtypes("zwr_zav_blk",1,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_base")=1 + Set gtmtypes("zwr_zav_blk",2,"name")="zwr_zav_blk.zav_free" + Set gtmtypes("zwr_zav_blk",2,"off")=4 + Set gtmtypes("zwr_zav_blk",2,"len")=4 + Set gtmtypes("zwr_zav_blk",2,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_free")=2 + Set gtmtypes("zwr_zav_blk",3,"name")="zwr_zav_blk.zav_top" + Set gtmtypes("zwr_zav_blk",3,"off")=8 + Set gtmtypes("zwr_zav_blk",3,"len")=4 + Set gtmtypes("zwr_zav_blk",3,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","zav_top")=3 + Set gtmtypes("zwr_zav_blk",4,"name")="zwr_zav_blk.next" + Set gtmtypes("zwr_zav_blk",4,"off")=12 + Set gtmtypes("zwr_zav_blk",4,"len")=4 + Set gtmtypes("zwr_zav_blk",4,"type")="addr" + Set gtmtypfldindx("zwr_zav_blk","next")=4 + ; + ; Structure cross reference (struct topname key to retrieve type + ; + Set gtmstructs("activelv_dbg_struct")="activelv_dbg_t" + Set gtmstructs("backup_reg_list_struct")="backup_reg_list" + Set gtmstructs("block_info_struct")="block_info" + Set gtmstructs("buddy_list_struct")="buddy_list" + Set gtmstructs("cache_ent")="cache_entry" + Set gtmstructs("cache_rec_struct")="cache_rec" + Set gtmstructs("callin_entry_list")="callin_entry_list" + Set gtmstructs("clb_stat_struct")="clb_stat" + Set gtmstructs("cm_lckblklck_struct")="cm_lckblklck" + Set gtmstructs("cm_lckblkprc_struct")="cm_lckblkprc" + Set gtmstructs("cm_lckblkreg_struct")="cm_lckblkreg" + Set gtmstructs("cm_lk_response_struct")="cm_lk_response" + Set gtmstructs("cm_region_head_struct")="cm_region_head" + Set gtmstructs("cm_region_list_struct")="cm_region_list" + Set gtmstructs("cmd_parm_struct")="CLI_PARM" + Set gtmstructs("cmd_parm_tag")="CLI_ENTRY" + Set gtmstructs("coll_hdr_struct")="coll_hdr" + Set gtmstructs("collseq_struct")="collseq" + Set gtmstructs("compswap_time_field_struct")="compswap_time_field" + Set gtmstructs("condition_handler_struct")="condition_handler" + Set gtmstructs("cs_struct")="connection_struct" + Set gtmstructs("cvs_MD5Context")="cvs_MD5_CTX" + Set gtmstructs("cw_set_element_struct")="cw_set_element" + Set gtmstructs("d_socket_struct_type")="d_socket_struct" + Set gtmstructs("dev_dispatch_struct")="dev_dispatch_struct" + Set gtmstructs("dev_pairs")="Dev_param_pairs" + Set gtmstructs("dev_param_pair")="Dev_param_pair" + Set gtmstructs("dollar_ecode")="dollar_ecode_struct" + Set gtmstructs("dollar_stack")="dollar_stack_struct" + Set gtmstructs("enc_handles_struct")="enc_handles" + Set gtmstructs("err_ctl_struct")="err_ctl" + Set gtmstructs("err_msg_struct")="err_msg" + Set gtmstructs("ext_tms_struct")="ext_tms" + Set gtmstructs("file_control_struct")="file_control" + Set gtmstructs("fnpc_struct")="fnpc" + Set gtmstructs("forw_multi_element_struct")="forw_multi_struct" + Set gtmstructs("gcall_args_struct")="gcall_args" + Set gtmstructs("gd_addr_struct")="gd_addr" + Set gtmstructs("gd_binding_struct")="gd_binding" + Set gtmstructs("gd_gblname_struct")="gd_gblname" + Set gtmstructs("gd_id_struct")="unix_file_id" + Set gtmstructs("gd_region_struct")="gd_region" + Set gtmstructs("gd_segment_struct")="gd_segment" + Set gtmstructs("gdr_name_struct")="gdr_name" + Set gtmstructs("gld_dbname_list_struct")="gld_dbname_list" + Set gtmstructs("glist_struct")="glist" + Set gtmstructs("global_dir_path_struct")="global_dir_path" + Set gtmstructs("global_list_struct")="global_list" + Set gtmstructs("global_root_list_struct")="global_root_list" + Set gtmstructs("global_tlvl_info_struct")="global_tlvl_info" + Set gtmstructs("gparam_list_struct")="gparam_list" + Set gtmstructs("gtm_num_range_struct")="gtm_num_range_t" + Set gtmstructs("gtm_tls_conn_info_struct")="gtm_tls_conn_info" + Set gtmstructs("gtm_tls_ctx_struct")="gtm_tls_ctx_t" + Set gtmstructs("gtm_tls_session_struct")="gtm_tls_socket_t" + Set gtmstructs("gtmsecshr_mesg_struct")="gtmsecshr_mesg" + Set gtmstructs("gtmsrc_lcl_struct")="gtmsrc_lcl" + Set gtmstructs("gv_key_struct")="gv_key" + Set gtmstructs("gv_namehead_struct")="gv_namehead" + Set gtmstructs("gv_trigger_struct")="gv_trigger_t" + Set gtmstructs("gvname_info_struct")="gvname_info" + Set gtmstructs("gvnh_reg_struct")="gvnh_reg_t" + Set gtmstructs("gvnh_spanreg_struct")="gvnh_spanreg_t" + Set gtmstructs("gvsavtarg_struct")="gvsavtarg_t" + Set gtmstructs("gvstats_rec_struct")="gvstats_rec_t" + Set gtmstructs("gvt_container_struct")="gvt_container" + Set gtmstructs("gvt_trigger_struct")="gvt_trigger_t" + Set gtmstructs("gvtr_invoke_parms_struct")="gvtr_invoke_parms_t" + Set gtmstructs("gvtr_subs_pattern_struct")="gvtr_subs_pattern_t" + Set gtmstructs("gvtr_subs_point_struct")="gvtr_subs_point_t" + Set gtmstructs("gvtr_subs_range_struct")="gvtr_subs_range_t" + Set gtmstructs("gvtr_subs_star_struct")="gvtr_subs_star_t" + Set gtmstructs("gvzwrite_datablk_struct")="gvzwrite_datablk" + Set gtmstructs("hash_table_addr_struct")="hash_table_addr" + Set gtmstructs("hash_table_int4_struct")="hash_table_int4" + Set gtmstructs("hash_table_int8_struct")="hash_table_int8" + Set gtmstructs("hash_table_mname_struct")="hash_table_mname" + Set gtmstructs("hash_table_objcode_struct")="hash_table_objcode" + Set gtmstructs("hash_table_str_struct")="hash_table_str" + Set gtmstructs("header_struct_struct")="header_struct" + Set gtmstructs("i_hdr")="inc_header" + Set gtmstructs("ihead_struct")="ihdtyp" + Set gtmstructs("inc_list")="inc_list_struct" + Set gtmstructs("integ_error_blk_list_struct")="integ_error_blk_list" + Set gtmstructs("io_desc_struct")="io_desc" + Set gtmstructs("io_log_name_struct")="io_log_name" + Set gtmstructs("ipcs_mesg_struct")="ipcs_mesg" + Set gtmstructs("jnl_ctl_list_struct")="jnl_ctl_list" + Set gtmstructs("jnl_format_buff_struct")="jnl_format_buffer" + Set gtmstructs("jnl_private_control_struct")="jnl_private_control" + Set gtmstructs("jnl_process_vector_struct")="jnl_process_vector" + Set gtmstructs("jnlext_multi_struct")="jnlext_multi_t" + Set gtmstructs("job_parm_struct")="job_parm" + Set gtmstructs("joberr_msg_struct")="joberr_msg" + Set gtmstructs("key_value_struct")="key_cum_value" + Set gtmstructs("kill_set_struct")="kill_set" + Set gtmstructs("link_info_struct")="link_info" + Set gtmstructs("long_list_struct")="long_list" + Set gtmstructs("lvTreeNodeNumStruct")="lvTreeNodeNum" + Set gtmstructs("lvTreeStruct")="lvTree" + Set gtmstructs("lv_blk_struct")="lv_blk" + Set gtmstructs("lv_val_struct")="lv_val" + Set gtmstructs("lv_xnew_var_struct")="lv_xnew_var" + Set gtmstructs("lv_xnewref_struct")="lv_xnew_ref" + Set gtmstructs("lvname_info_struct")="lvname_info" + Set gtmstructs("lvzwrite_datablk_struct")="lvzwrite_datablk" + Set gtmstructs("mcalloc_hdr_struct")="mcalloc_hdr" + Set gtmstructs("mem_list_struct")="mem_list" + Set gtmstructs("merge_glvn_struct_type")="merge_glvn_struct" + Set gtmstructs("mlabstruct")="mlabel" + Set gtmstructs("mlinestruct")="mline" + Set gtmstructs("mliteralstruct")="mliteral" + Set gtmstructs("mlk_ctldata_struct")="mlk_ctldata" + Set gtmstructs("mlk_pvtblk_struct")="mlk_pvtblk" + Set gtmstructs("mlk_stats_struct")="mlk_stats_t" + Set gtmstructs("mlk_tp_struct")="mlk_tp" + Set gtmstructs("mmseg_struct")="mmseg" + Set gtmstructs("mprof_stack_frame_struct")="mprof_stack_frame" + Set gtmstructs("mprof_tree_struct")="mprof_tree" + Set gtmstructs("mprof_wrapper_struct")="mprof_wrapper" + Set gtmstructs("mu_set_reglist")="mu_set_rlist" + Set gtmstructs("muinc_blk_hdr_struct")="muinc_blk_hdr" + Set gtmstructs("multi_element_struct")="multi_struct" + Set gtmstructs("mv_stent_struct")="mv_stent" + Set gtmstructs("mvarstruct")="mvar" + Set gtmstructs("mvaxstruct")="mvax" + Set gtmstructs("node_local_struct")="node_local" + Set gtmstructs("noisolation_element_struct")="noisolation_element" + Set gtmstructs("noisolation_list_struct")="noisolation_list" + Set gtmstructs("omi_cl_stat")="omi_cl_stat" + Set gtmstructs("omi_cn_stat")="omi_cn_stat" + Set gtmstructs("omi_conn_ll")="omi_conn_ll" + Set gtmstructs("omi_err_hdr")="omi_err_hdr" + Set gtmstructs("omi_hist_rec_t")="omi_hist_rec" + Set gtmstructs("omi_req_hdr")="omi_req_hdr" + Set gtmstructs("onln_rlbk_reg_list_struct")="onln_rlbk_reg_list" + Set gtmstructs("open_relinkctl_struct")="open_relinkctl_sgm" + Set gtmstructs("open_shlib_struct")="open_shlib" + Set gtmstructs("oprtypestruct")="oprtype" + Set gtmstructs("parmblk_struct")="parmblk_struct" + Set gtmstructs("parse_blk_struct")="parse_blk" + Set gtmstructs("patstrlit_struct")="pat_strlit" + Set gtmstructs("pattern_struct")="pattern" + Set gtmstructs("phase2_wait_trace_struct")="phase2_wait_trace_t" + Set gtmstructs("pini_list")="pini_list_struct" + Set gtmstructs("pipe_interrupt_type")="pipe_interrupt" + Set gtmstructs("plength_struct")="plength" + Set gtmstructs("probecrit_rec_struct")="probecrit_rec_t" + Set gtmstructs("pte_csh_struct")="pte_csh" + Set gtmstructs("ptstr_struct")="ptstr" + Set gtmstructs("rc_aq_hdr")="rc_aq_hdr" + Set gtmstructs("rc_dsid_list_struct")="rc_dsid_list" + Set gtmstructs("rc_hist_rec_t")="rc_hist_rec" + Set gtmstructs("rc_lknam")="rc_lknam" + Set gtmstructs("rc_rq_hdr")="rc_rq_hdr" + Set gtmstructs("rc_sbkey")="rc_sbkey" + Set gtmstructs("rc_swstr")="rc_swstr" + Set gtmstructs("rc_xblk_hdr")="rc_xblk_hdr" + Set gtmstructs("rc_xdsid")="rc_xdsid" + Set gtmstructs("rc_xnsid")="rc_xnsid" + Set gtmstructs("redirect_list_struct")="redirect_list" + Set gtmstructs("redo_root_search_context_struct")="redo_root_search_context" + Set gtmstructs("reg_ctl_list_struct")="reg_ctl_list" + Set gtmstructs("relinkctl_data_struct")="relinkctl_data" + Set gtmstructs("relinkrec_struct")="relinkrec_t" + Set gtmstructs("relinkshm_hdr")="relinkshm_hdr_t" + Set gtmstructs("repl_conn_info_struct")="repl_conn_info_t" + Set gtmstructs("repl_ctl_struct")="repl_ctl_element" + Set gtmstructs("repl_histinfo_struct")="repl_histinfo" + Set gtmstructs("repl_inst_hdr_struct")="repl_inst_hdr" + Set gtmstructs("repl_inst_uuid_struct")="repl_inst_uuid" + Set gtmstructs("repl_rctl_elem_struct")="repl_rctl_elem_t" + Set gtmstructs("repl_tls_info_struct")="repl_tls_info_t" + Set gtmstructs("rhead_struct")="rhdtyp" + Set gtmstructs("rtnobj_hdr_struct")="rtnobj_hdr_t" + Set gtmstructs("rtnobjshm_hdr_struct")="rtnobjshm_hdr_t" + Set gtmstructs("select_list_struct")="select_list" + Set gtmstructs("semid_queue_elem_t")="semid_queue_elem" + Set gtmstructs("semwait_status_struct")="semwait_status_t" + Set gtmstructs("set_jnl_options_struct")="set_jnl_options" + Set gtmstructs("sgm_info_struct")="sgm_info" + Set gtmstructs("sgmnt_addrs_struct")="sgmnt_addrs" + Set gtmstructs("sgmnt_data_struct")="sgmnt_data" + Set gtmstructs("shm_forw_multi_struct")="shm_forw_multi_t" + Set gtmstructs("shm_parms_struct")="shm_parms" + Set gtmstructs("shm_snapshot_struct")="shm_snapshot_t" + Set gtmstructs("shmpool_blk_hdr_struct")="shmpool_blk_hdr" + Set gtmstructs("shmpool_buff_hdr_struct")="shmpool_buff_hdr" + Set gtmstructs("snapshot_context_struct")="snapshot_context_t" + Set gtmstructs("snapshot_filehdr_struct")="snapshot_filhdr_t" + Set gtmstructs("snapshot_info_struct")="snapshot_info_t" + Set gtmstructs("socket_address_type")="socket_address" + Set gtmstructs("socket_interrupt_type")="socket_interrupt" + Set gtmstructs("socket_struct_type")="socket_struct" + Set gtmstructs("span_subs_struct")="span_subs" + Set gtmstructs("src_line_type")="src_line_struct" + Set gtmstructs("srch_blk_status_struct")="srch_blk_status" + Set gtmstructs("st_timer_alloc")="st_timer_alloc" + Set gtmstructs("stack_frame_struct")="stack_frame" + Set gtmstructs("storElemStruct")="storElem" + Set gtmstructs("struct_spanode_integ")="span_node_integ" + Set gtmstructs("symval_struct")="symval" + Set gtmstructs("tag_abs_time")="ABS_TIME" + Set gtmstructs("tag_ts")="GT_TIMER" + Set gtmstructs("tbptype")="tbp" + Set gtmstructs("textElemStruct")="textElem" + Set gtmstructs("tlevel_info_struct")="tlevel_info" + Set gtmstructs("token_split_t_struct")="token_split_t" + Set gtmstructs("tp_frame_struct")="tp_frame" + Set gtmstructs("tp_region_struct")="tp_region" + Set gtmstructs("tp_var_struct")="tp_var" + Set gtmstructs("trctbl_entry_struct")="trctbl_entry" + Set gtmstructs("treeNodeStruct")="lvTreeNode" + Set gtmstructs("triplesize")="tripsize" + Set gtmstructs("tripletype")="triple" + Set gtmstructs("trunc_reg_struct")="trunc_region" + Set gtmstructs("ua_list_struct")="ua_list" + Set gtmstructs("unix_db_info_struct")="unix_db_info" + Set gtmstructs("unix_file_info_struct")="unix_file_info" + Set gtmstructs("urx_addr_type")="urx_addr" + Set gtmstructs("urx_labref_type")="urx_labref" + Set gtmstructs("urx_rtnref_type")="urx_rtnref" + Set gtmstructs("utfcgr_entry_struct")="utfcgr_entry" + Set gtmstructs("utfcgr_struct")="utfcgr" + Set gtmstructs("util_snapshot_struct")="util_snapshot_t" + Set gtmstructs("vms_lock_sb_struct")="vms_lock_sb" + Set gtmstructs("wcs_conflict_trace_struct")="wcs_conflict_trace_t" + Set gtmstructs("zro_ent_type")="zro_ent" + Set gtmstructs("zshow_out_struct")="zshow_out" + Set gtmstructs("zwr_alias_var_struct")="zwr_alias_var" + Set gtmstructs("zwr_hash_table_struct")="zwr_hash_table" + Set gtmstructs("zwr_sub_lst_struct")="zwr_sub_lst" + Set gtmstructs("zwr_zav_blk_struct")="zwr_zav_blk" + ; + ; Union cross reference (union topname key to retrieve type + ; + Set gtmunions("gtm_time8_struct")="gtm_time8" + Set gtmunions("gvtr_subs_struct")="gvtr_subs_t" + Set gtmunions("omi_li")="omi_li" + Set gtmunions("omi_si")="omi_si" + Set gtmunions("omi_vi")="omi_vi" + Set gtmunions("rc_byte")="rc_byte" + Set gtmunions("rc_lword")="rc_lword" + Set gtmunions("rc_q_hdr")="rc_q_hdr" + Set gtmunions("rc_word")="rc_word" + ; + Quit diff --git a/sr_i386/aswp.s b/sr_i386/aswp.s old mode 100644 new mode 100755 diff --git a/sr_i386/auto_zlink.h b/sr_i386/auto_zlink.h old mode 100644 new mode 100755 diff --git a/sr_i386/call_dm.s b/sr_i386/call_dm.s old mode 100644 new mode 100755 diff --git a/sr_i386/caller_id.s b/sr_i386/caller_id.s old mode 100644 new mode 100755 diff --git a/sr_i386/callg.s b/sr_i386/callg.s old mode 100644 new mode 100755 diff --git a/sr_i386/ci_restart.s b/sr_i386/ci_restart.s old mode 100644 new mode 100755 diff --git a/sr_i386/cmerrors_ctl.c b/sr_i386/cmerrors_ctl.c index a06b948e..c878c301 100644 --- a/sr_i386/cmerrors_ctl.c +++ b/sr_i386/cmerrors_ctl.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * diff --git a/sr_i386/cmierrors_ctl.c b/sr_i386/cmierrors_ctl.c index d83e1d56..f76581d7 100644 --- a/sr_i386/cmierrors_ctl.c +++ b/sr_i386/cmierrors_ctl.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * diff --git a/sr_i386/compswap.s b/sr_i386/compswap.s old mode 100644 new mode 100755 diff --git a/sr_i386/dm_start.s b/sr_i386/dm_start.s old mode 100644 new mode 100755 diff --git a/sr_i386/emit_code.h b/sr_i386/emit_code.h old mode 100644 new mode 100755 diff --git a/sr_i386/error.si b/sr_i386/error.si old mode 100644 new mode 100755 index 3a47b7b5..4f2852aa --- a/sr_i386/error.si +++ b/sr_i386/error.si @@ -16,9 +16,9 @@ #----------------------------------------------- .ifdef cygwin # will need another 8 to save sigmasks -chnd_size = 224 +chnd_size = 228 .else -chnd_size = 172 +chnd_size = 176 .endif chnd_save_active = 0 chnd_ch_active = 4 diff --git a/sr_i386/follow.s b/sr_i386/follow.s old mode 100644 new mode 100755 diff --git a/sr_i386/g_msf.si b/sr_i386/g_msf.si old mode 100644 new mode 100755 diff --git a/sr_i386/gdeerrors_ctl.c b/sr_i386/gdeerrors_ctl.c index a2b0e4fd..494654ee 100644 --- a/sr_i386/gdeerrors_ctl.c +++ b/sr_i386/gdeerrors_ctl.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * diff --git a/sr_i386/gtm_threadgbl_deftypes.h b/sr_i386/gtm_threadgbl_deftypes.h deleted file mode 100644 index 88eced21..00000000 --- a/sr_i386/gtm_threadgbl_deftypes.h +++ /dev/null @@ -1,886 +0,0 @@ -/**************************************************************** - * * - * Copyright (c) 2010-2015 Fidelity National Information * - * Services, Inc. and/or its subsidiaries. All rights reserved. * - * * - * This source code contains the intellectual property * - * of its copyright holder(s), and is made available * - * under a license. If you do not know the terms of * - * the license, please stop and do not read further. * - * * - ****************************************************************/ - -/* Generated by /usr/library/V62002A/tools/gen_gtm_threadgbl_deftypes.csh */ - -#ifndef GTM_THREADGBL_DEFTYPES_INCLUDED -#define GTM_THREADGBL_DEFTYPES_INCLUDED -/* Output selection criteria for PRO build */ -#if !defined(DEBUG) || defined(PRO_BUILD) -# define ggo_grabbing_crit 0 -# define ggt_grabbing_crit gd_region * -# define ggo_boolchain 4 -# define ggt_boolchain triple -# define ggo_boolchain_ptr 76 -# define ggt_boolchain_ptr triple * -# define ggo_bool_targ_anchor 80 -# define ggt_bool_targ_anchor tbp -# define ggo_bool_targ_ptr 92 -# define ggt_bool_targ_ptr tbp * -# define ggo_code_generated 96 -# define ggt_code_generated boolean_t -# define ggo_codegen_padlen 100 -# define ggt_codegen_padlen int4 -# define ggo_compile_time 104 -# define ggt_compile_time boolean_t -# define ggo_curtchain 108 -# define ggt_curtchain triple * -# define ggo_director_ident 112 -# define ggt_director_ident mstr -# define ggo_director_mval 124 -# define ggt_director_mval mval -# define ggo_director_token 148 -# define ggt_director_token char -# define ggo_dollar_zcstatus 152 -# define ggt_dollar_zcstatus int4 -# define ggo_expr_depth 156 -# define ggt_expr_depth unsigned int -# define ggo_expr_start 160 -# define ggt_expr_start triple * -# define ggo_expr_start_orig 164 -# define ggt_expr_start_orig triple * -# define ggo_defined_symbols 168 -# define ggt_defined_symbols struct sym_table * -# define ggo_for_stack_ptr 172 -# define ggt_for_stack_ptr oprtype ** -# define ggo_gtm_fullbool 176 -# define ggt_gtm_fullbool unsigned int -# define ggo_ind_result 180 -# define ggt_ind_result mval * -# define ggo_ind_source 184 -# define ggt_ind_source mval * -# define ggo_indirection_mval 188 -# define ggt_indirection_mval mval -# define ggo_last_source_column 212 -# define ggt_last_source_column int -# define ggo_max_advancewindow_line 216 -# define ggt_max_advancewindow_line int4 -# define ggo_linkage_first 220 -# define ggt_linkage_first struct linkage_entry * -# define ggo_linkage_last 224 -# define ggt_linkage_last struct linkage_entry * -# define ggo_pos_in_chain 228 -# define ggt_pos_in_chain triple -# define ggo_s2n_intlit 300 -# define ggt_s2n_intlit boolean_t -# define ggo_routine_source_offset 304 -# define ggt_routine_source_offset uint4 -# define ggo_saw_side_effect 308 -# define ggt_saw_side_effect boolean_t -# define ggo_shift_side_effects 312 -# define ggt_shift_side_effects int -# define ggo_side_effect_base 316 -# define ggt_side_effect_base boolean_t * -# define ggo_side_effect_depth 320 -# define ggt_side_effect_depth uint4 -# define ggo_side_effect_handling 324 -# define ggt_side_effect_handling int -# define ggo_source_error_found 328 -# define ggt_source_error_found int4 -# define ggo_temp_subs 332 -# define ggt_temp_subs boolean_t -# define ggo_trigger_compile_and_link 336 -# define ggt_trigger_compile_and_link boolean_t -# define ggo_window_ident 340 -# define ggt_window_ident mstr -# define ggo_window_mval 352 -# define ggt_window_mval mval -# define ggo_window_token 376 -# define ggt_window_token char -# define ggo_dbinit_max_hrtbt_delta 380 -# define ggt_dbinit_max_hrtbt_delta uint4 -# define ggo_dollar_zmaxtptime 384 -# define ggt_dollar_zmaxtptime int4 -# define ggo_donot_commit 388 -# define ggt_donot_commit boolean_t -# define ggo_donot_write_inctn_in_wcs_recover 392 -# define ggt_donot_write_inctn_in_wcs_recover boolean_t -# define ggo_gbuff_limit 396 -# define ggt_gbuff_limit mval -# define ggo_gd_targ_tn 420 -# define ggt_gd_targ_tn trans_num -# define ggo_gd_targ_reg_array 428 -# define ggt_gd_targ_reg_array trans_num * -# define ggo_gd_targ_reg_array_size 432 -# define ggt_gd_targ_reg_array_size uint4 -# define ggo_gd_targ_addr 436 -# define ggt_gd_targ_addr gd_addr * -# define ggo_gd_targ_gvnh_reg 440 -# define ggt_gd_targ_gvnh_reg gvnh_reg_t * -# define ggo_gd_targ_map 444 -# define ggt_gd_targ_map gd_binding * -# define ggo_gtm_custom_errors 448 -# define ggt_gtm_custom_errors mstr -# define ggo_gv_extname_size 460 -# define ggt_gv_extname_size int4 -# define ggo_gv_last_subsc_null 464 -# define ggt_gv_last_subsc_null boolean_t -# define ggo_gv_mergekey2 468 -# define ggt_gv_mergekey2 gv_key * -# define ggo_gv_reorgkey 472 -# define ggt_gv_reorgkey gv_key * -# define ggo_gv_some_subsc_null 476 -# define ggt_gv_some_subsc_null boolean_t -# define ggo_gv_sparekey 480 -# define ggt_gv_sparekey gv_key * -# define ggo_gv_sparekey_mval 484 -# define ggt_gv_sparekey_mval mval -# define ggo_gv_sparekey_size 508 -# define ggt_gv_sparekey_size int4 -# define ggo_gv_tporigkey_ptr 512 -# define ggt_gv_tporigkey_ptr gv_orig_key_array * -# define ggo_gv_tporig_extnam_str 516 -# define ggt_gv_tporig_extnam_str mstr -# define ggo_in_gvcst_redo_root_search 528 -# define ggt_in_gvcst_redo_root_search boolean_t -# define ggo_in_op_gvget 532 -# define ggt_in_op_gvget boolean_t -# define ggo_issue_DBROLLEDBACK_anyways 536 -# define ggt_issue_DBROLLEDBACK_anyways boolean_t -# define ggo_last_fnquery_return_subcnt 540 -# define ggt_last_fnquery_return_subcnt int -# define ggo_last_fnquery_return_varname 544 -# define ggt_last_fnquery_return_varname mval -# define ggo_ok_to_call_wcs_recover 568 -# define ggt_ok_to_call_wcs_recover boolean_t -# define ggo_in_gvcst_bmp_mark_free 572 -# define ggt_in_gvcst_bmp_mark_free boolean_t -# define ggo_prev_gv_target 576 -# define ggt_prev_gv_target gv_namehead * -# define ggo_ready2signal_gvundef 580 -# define ggt_ready2signal_gvundef boolean_t -# define ggo_redo_rootsrch_ctxt 584 -# define ggt_redo_rootsrch_ctxt redo_root_search_context -# define ggo_semwait2long 1692 -# define ggt_semwait2long volatile boolean_t -# define ggo_skip_file_corrupt_check 1696 -# define ggt_skip_file_corrupt_check boolean_t -# define ggo_tpnotacidtime 1700 -# define ggt_tpnotacidtime int4 -# define ggo_tp_restart_count 1704 -# define ggt_tp_restart_count uint4 -# define ggo_tp_restart_dont_counts 1708 -# define ggt_tp_restart_dont_counts int4 -# define ggo_tp_restart_entryref 1712 -# define ggt_tp_restart_entryref mval -# define ggo_tp_restart_failhist_indx 1736 -# define ggt_tp_restart_failhist_indx int4 -# define ggo_tprestart_syslog_delta 1740 -# define ggt_tprestart_syslog_delta int4 -# define ggo_tprestart_syslog_limit 1744 -# define ggt_tprestart_syslog_limit int4 -# define ggo_transform 1748 -# define ggt_transform boolean_t -# define ggo_wcs_recover_done 1752 -# define ggt_wcs_recover_done boolean_t -# define ggo_in_op_fnnext 1756 -# define ggt_in_op_fnnext boolean_t -# define ggo_local_collseq 1760 -# define ggt_local_collseq collseq * -# define ggo_local_collseq_stdnull 1764 -# define ggt_local_collseq_stdnull boolean_t -# define ggo_local_coll_nums_as_strings 1768 -# define ggt_local_coll_nums_as_strings boolean_t -# define ggo_lv_null_subs 1772 -# define ggt_lv_null_subs int -# define ggo_max_lcl_coll_xform_bufsiz 1776 -# define ggt_max_lcl_coll_xform_bufsiz int -# define ggo_replgbl 1780 -# define ggt_replgbl replgbl_t -# define ggo_tqread_nowait 1796 -# define ggt_tqread_nowait boolean_t -# define ggo_arlink_enabled 1800 -# define ggt_arlink_enabled boolean_t -# define ggo_arlink_loaded 1804 -# define ggt_arlink_loaded uint4 -# define ggo_collseq_list 1808 -# define ggt_collseq_list collseq * -# define ggo_create_fatal_error_zshow_dmp_fptr 1812 -# define ggt_create_fatal_error_zshow_dmp_fptr void -# define gga_create_fatal_error_zshow_dmp_fptr (void) -typedef void (*ggf_create_fatal_error_zshow_dmp_fptr)(void); -# define ggo_disable_sigcont 1816 -# define ggt_disable_sigcont boolean_t -# define ggo_dollar_zcompile 1820 -# define ggt_dollar_zcompile mstr -# define ggo_dollar_zmode 1832 -# define ggt_dollar_zmode mval -# define ggo_dollar_zonlnrlbk 1856 -# define ggt_dollar_zonlnrlbk int -# define ggo_dollar_zclose 1860 -# define ggt_dollar_zclose int -# define ggo_dollar_zroutines 1864 -# define ggt_dollar_zroutines mstr -# define ggo_error_on_jnl_file_lost 1876 -# define ggt_error_on_jnl_file_lost unsigned int -# define ggo_fnzsearch_lv_vars 1880 -# define ggt_fnzsearch_lv_vars lv_val * -# define ggo_fnzsearch_sub_mval 1884 -# define ggt_fnzsearch_sub_mval mval -# define ggo_fnzsearch_nullsubs_sav 1908 -# define ggt_fnzsearch_nullsubs_sav int -# define ggo_fnzsearch_globbuf_ptr 1912 -# define ggt_fnzsearch_globbuf_ptr glob_t * -# define ggo_glvn_pool_ptr 1916 -# define ggt_glvn_pool_ptr glvn_pool * -# define ggo_gtm_env_init_started 1920 -# define ggt_gtm_env_init_started boolean_t -# define ggo_gtm_env_xlate_entry 1924 -# define ggt_gtm_env_xlate_entry int -# define gga_gtm_env_xlate_entry () -typedef int (*ggf_gtm_env_xlate_entry)(); -# define ggo_gtm_environment_init 1928 -# define ggt_gtm_environment_init boolean_t -# define ggo_gtm_sigusr1_handler 1932 -# define ggt_gtm_sigusr1_handler void -# define gga_gtm_sigusr1_handler (void) -typedef void (*ggf_gtm_sigusr1_handler)(void); -# define ggo_gtm_linktmpdir 1936 -# define ggt_gtm_linktmpdir mstr -# define ggo_gtm_trctbl_cur 1948 -# define ggt_gtm_trctbl_cur trctbl_entry * -# define ggo_gtm_trctbl_end 1952 -# define ggt_gtm_trctbl_end trctbl_entry * -# define ggo_gtm_trctbl_groups 1956 -# define ggt_gtm_trctbl_groups unsigned int -# define ggo_gtm_trctbl_start 1960 -# define ggt_gtm_trctbl_start trctbl_entry * -# define ggo_gtm_waitstuck_script 1964 -# define ggt_gtm_waitstuck_script mstr -# define ggo_gtmprompt 1976 -# define ggt_gtmprompt mstr -# define ggo_gtmsecshr_comkey 1988 -# define ggt_gtmsecshr_comkey unsigned int -# define ggo_in_zwrite 1992 -# define ggt_in_zwrite boolean_t -# define ggo_lab_lnr 1996 -# define ggt_lab_lnr lnr_tabent ** -# define ggo_jobexam_counter 2000 -# define ggt_jobexam_counter unsigned int -# define ggo_lab_proxy 2004 -# define ggt_lab_proxy lab_tabent_proxy -# define ggo_mprof_alloc_reclaim 2012 -# define ggt_mprof_alloc_reclaim boolean_t -# define ggo_mprof_chunk_avail_size 2016 -# define ggt_mprof_chunk_avail_size int -# define ggo_mprof_env_gbl_name 2020 -# define ggt_mprof_env_gbl_name mval -# define ggo_mprof_ptr 2044 -# define ggt_mprof_ptr mprof_wrapper * -# define ggo_mprof_reclaim_addr 2048 -# define ggt_mprof_reclaim_addr char * -# define ggo_mprof_reclaim_cnt 2052 -# define ggt_mprof_reclaim_cnt int -# define ggo_mprof_stack_curr_frame 2056 -# define ggt_mprof_stack_curr_frame mprof_stack_frame * -# define ggo_mprof_stack_next_frame 2060 -# define ggt_mprof_stack_next_frame mprof_stack_frame * -# define ggo_open_shlib_root 2064 -# define ggt_open_shlib_root open_shlib * -# define ggo_parm_pool_ptr 2068 -# define ggt_parm_pool_ptr parm_pool * -# define ggo_parms_cnt 2072 -# define ggt_parms_cnt unsigned int -# define ggo_zpeek_regname 2076 -# define ggt_zpeek_regname char -# define ggl_zpeek_regname 31 -# define ggo_zpeek_regname_len 2108 -# define ggt_zpeek_regname_len int -# define ggo_zpeek_reg_ptr 2112 -# define ggt_zpeek_reg_ptr gd_region * -# define ggo_pipefifo_interrupt 2116 -# define ggt_pipefifo_interrupt int -# define ggo_prof_fp 2120 -# define ggt_prof_fp mprof_stack_frame * -# define ggo_relink_allowed 2124 -# define ggt_relink_allowed int -# define ggo_set_zroutines_cycle 2128 -# define ggt_set_zroutines_cycle uint4 -# define ggo_trans_code_pop 2132 -# define ggt_trans_code_pop mval * -# define ggo_view_ydirt_str 2136 -# define ggt_view_ydirt_str char * -# define ggo_view_ydirt_str_len 2140 -# define ggt_view_ydirt_str_len int4 -# define ggo_zdate_form 2144 -# define ggt_zdate_form int4 -# define ggo_zintcmd_active 2148 -# define ggt_zintcmd_active zintcmd_active_info -# define ggl_zintcmd_active 36 -# define ggo_zro_root 2184 -# define ggt_zro_root zro_ent * -# define ggo_zsearch_var 2188 -# define ggt_zsearch_var lv_val * -# define ggo_poll_fds_buffer 2192 -# define ggt_poll_fds_buffer char * -# define ggo_poll_fds_buffer_size 2196 -# define ggt_poll_fds_buffer_size size_t -# define ggo_socket_handle_counter 2200 -# define ggt_socket_handle_counter int -# define ggo_director_string 2204 -# define ggt_director_string char -# define ggl_director_string 32 -# define ggo_fnpca 2236 -# define ggt_fnpca fnpc_area -# define ggo_for_stack 20044 -# define ggt_for_stack oprtype * -# define ggl_for_stack 128 -# define ggo_for_temps 20172 -# define ggt_for_temps boolean_t -# define ggl_for_temps 128 -# define ggo_last_fnquery_return_sub 20300 -# define ggt_last_fnquery_return_sub mval -# define ggl_last_fnquery_return_sub 768 -# define ggo_lcl_coll_xform_buff 21068 -# define ggt_lcl_coll_xform_buff char * -# define ggo_protmem_ba 21072 -# define ggt_protmem_ba mstr -# define ggo_parm_ary 21084 -# define ggt_parm_ary char * -# define ggl_parm_ary 4096 -# define ggo_parm_ary_len 25180 -# define ggt_parm_ary_len int -# define ggl_parm_ary_len 4096 -# define ggo_parm_str_len 29276 -# define ggt_parm_str_len int -# define ggl_parm_str_len 4096 -# define ggo_prombuf 33372 -# define ggt_prombuf char -# define ggl_prombuf 32 -# define ggo_tp_restart_failhist_arry 33404 -# define ggt_tp_restart_failhist_arry char -# define ggl_tp_restart_failhist_arry 32 -# define ggo_window_string 33436 -# define ggt_window_string char -# define ggl_window_string 32 -# define ggo_tmp_object_file_name 33468 -# define ggt_tmp_object_file_name char -# define ggl_tmp_object_file_name 4097 -# define ggo_last_va_list_ptr 37568 -# define ggt_last_va_list_ptr va_list -# define ggo_util_outbuff 37572 -# define ggt_util_outbuff char -# define ggl_util_outbuff 6144 -# define ggo_util_outbuff_ptr 43716 -# define ggt_util_outbuff_ptr char * -# define ggo_util_outptr 43720 -# define ggt_util_outptr char * -# define ggo_callin_hashtab 43724 -# define ggt_callin_hashtab hash_table_str * -# define ggo_ci_table 43728 -# define ggt_ci_table callin_entry_list * -# define ggo_extcall_package_root 43732 -# define ggt_extcall_package_root struct extcall_package_list * -# define ggo_gtmci_nested_level 43736 -# define ggt_gtmci_nested_level unsigned int -# define ggo_temp_fgncal_stack 43740 -# define ggt_temp_fgncal_stack unsigned char * -# define ggo_midchild_send_locals 43744 -# define ggt_midchild_send_locals boolean_t -# define ggo_want_empty_gvts 43748 -# define ggt_want_empty_gvts boolean_t -# define ggo_in_mu_swap_root_state 43752 -# define ggt_in_mu_swap_root_state unsigned int -# define ggo_prev_t_tries 43756 -# define ggt_prev_t_tries unsigned int -# define ggo_rlbk_during_redo_root 43760 -# define ggt_rlbk_during_redo_root boolean_t -# define ggo_mlk_yield_pid 43764 -# define ggt_mlk_yield_pid uint4 -# define ggo_jnl_extract_nocol 43768 -# define ggt_jnl_extract_nocol uint4 -# define ggo_skip_gtm_putmsg 43772 -# define ggt_skip_gtm_putmsg boolean_t -# define ggo_spangbl_seen 43776 -# define ggt_spangbl_seen boolean_t -# define ggo_no_spangbls 43780 -# define ggt_no_spangbls boolean_t -# define ggo_max_fid_index 43784 -# define ggt_max_fid_index int -# define ggo_is_mu_rndwn_rlnkctl 43788 -# define ggt_is_mu_rndwn_rlnkctl int -# define ggo_expand_prev_key 43792 -# define ggt_expand_prev_key boolean_t -# define ggo_gtm_autorelink_ctlmax 43796 -# define ggt_gtm_autorelink_ctlmax uint4 -# define ggo_gvt_triggers_read_this_tn 43800 -# define ggt_gvt_triggers_read_this_tn boolean_t -# define ggo_op_fntext_tlevel 43804 -# define ggt_op_fntext_tlevel uint4 -# define ggo_in_op_fntext 43808 -# define ggt_in_op_fntext boolean_t -# define ggo_ztrigbuff 43812 -# define ggt_ztrigbuff char * -# define ggo_ztrigbuffAllocLen 43816 -# define ggt_ztrigbuffAllocLen int -# define ggo_ztrigbuffLen 43820 -# define ggt_ztrigbuffLen int -# define ggo_ztrig_use_io_curr_device 43824 -# define ggt_ztrig_use_io_curr_device boolean_t -# define size_gtm_threadgbl_struct 43828 -#else -# define ggo_grabbing_crit 0 -# define ggt_grabbing_crit gd_region * -# define ggo_boolchain 4 -# define ggt_boolchain triple -# define ggo_boolchain_ptr 76 -# define ggt_boolchain_ptr triple * -# define ggo_bool_targ_anchor 80 -# define ggt_bool_targ_anchor tbp -# define ggo_bool_targ_ptr 92 -# define ggt_bool_targ_ptr tbp * -# define ggo_code_generated 96 -# define ggt_code_generated boolean_t -# define ggo_codegen_padlen 100 -# define ggt_codegen_padlen int4 -# define ggo_compile_time 104 -# define ggt_compile_time boolean_t -# define ggo_curtchain 108 -# define ggt_curtchain triple * -# define ggo_director_ident 112 -# define ggt_director_ident mstr -# define ggo_director_mval 124 -# define ggt_director_mval mval -# define ggo_director_token 148 -# define ggt_director_token char -# define ggo_dollar_zcstatus 152 -# define ggt_dollar_zcstatus int4 -# define ggo_expr_depth 156 -# define ggt_expr_depth unsigned int -# define ggo_expr_start 160 -# define ggt_expr_start triple * -# define ggo_expr_start_orig 164 -# define ggt_expr_start_orig triple * -# define ggo_defined_symbols 168 -# define ggt_defined_symbols struct sym_table * -# define ggo_for_stack_ptr 172 -# define ggt_for_stack_ptr oprtype ** -# define ggo_gtm_fullbool 176 -# define ggt_gtm_fullbool unsigned int -# define ggo_ind_result 180 -# define ggt_ind_result mval * -# define ggo_ind_source 184 -# define ggt_ind_source mval * -# define ggo_indirection_mval 188 -# define ggt_indirection_mval mval -# define ggo_last_source_column 212 -# define ggt_last_source_column int -# define ggo_max_advancewindow_line 216 -# define ggt_max_advancewindow_line int4 -# define ggo_linkage_first 220 -# define ggt_linkage_first struct linkage_entry * -# define ggo_linkage_last 224 -# define ggt_linkage_last struct linkage_entry * -# define ggo_pos_in_chain 228 -# define ggt_pos_in_chain triple -# define ggo_s2n_intlit 300 -# define ggt_s2n_intlit boolean_t -# define ggo_routine_source_offset 304 -# define ggt_routine_source_offset uint4 -# define ggo_saw_side_effect 308 -# define ggt_saw_side_effect boolean_t -# define ggo_shift_side_effects 312 -# define ggt_shift_side_effects int -# define ggo_side_effect_base 316 -# define ggt_side_effect_base boolean_t * -# define ggo_side_effect_depth 320 -# define ggt_side_effect_depth uint4 -# define ggo_side_effect_handling 324 -# define ggt_side_effect_handling int -# define ggo_source_error_found 328 -# define ggt_source_error_found int4 -# define ggo_temp_subs 332 -# define ggt_temp_subs boolean_t -# define ggo_trigger_compile_and_link 336 -# define ggt_trigger_compile_and_link boolean_t -# define ggo_window_ident 340 -# define ggt_window_ident mstr -# define ggo_window_mval 352 -# define ggt_window_mval mval -# define ggo_window_token 376 -# define ggt_window_token char -# define ggo_dbinit_max_hrtbt_delta 380 -# define ggt_dbinit_max_hrtbt_delta uint4 -# define ggo_dollar_zmaxtptime 384 -# define ggt_dollar_zmaxtptime int4 -# define ggo_donot_commit 388 -# define ggt_donot_commit boolean_t -# define ggo_donot_write_inctn_in_wcs_recover 392 -# define ggt_donot_write_inctn_in_wcs_recover boolean_t -# define ggo_gbuff_limit 396 -# define ggt_gbuff_limit mval -# define ggo_gd_targ_tn 420 -# define ggt_gd_targ_tn trans_num -# define ggo_gd_targ_reg_array 428 -# define ggt_gd_targ_reg_array trans_num * -# define ggo_gd_targ_reg_array_size 432 -# define ggt_gd_targ_reg_array_size uint4 -# define ggo_gd_targ_addr 436 -# define ggt_gd_targ_addr gd_addr * -# define ggo_gd_targ_gvnh_reg 440 -# define ggt_gd_targ_gvnh_reg gvnh_reg_t * -# define ggo_gd_targ_map 444 -# define ggt_gd_targ_map gd_binding * -# define ggo_gtm_custom_errors 448 -# define ggt_gtm_custom_errors mstr -# define ggo_gv_extname_size 460 -# define ggt_gv_extname_size int4 -# define ggo_gv_last_subsc_null 464 -# define ggt_gv_last_subsc_null boolean_t -# define ggo_gv_mergekey2 468 -# define ggt_gv_mergekey2 gv_key * -# define ggo_gv_reorgkey 472 -# define ggt_gv_reorgkey gv_key * -# define ggo_gv_some_subsc_null 476 -# define ggt_gv_some_subsc_null boolean_t -# define ggo_gv_sparekey 480 -# define ggt_gv_sparekey gv_key * -# define ggo_gv_sparekey_mval 484 -# define ggt_gv_sparekey_mval mval -# define ggo_gv_sparekey_size 508 -# define ggt_gv_sparekey_size int4 -# define ggo_gv_tporigkey_ptr 512 -# define ggt_gv_tporigkey_ptr gv_orig_key_array * -# define ggo_gv_tporig_extnam_str 516 -# define ggt_gv_tporig_extnam_str mstr -# define ggo_in_gvcst_redo_root_search 528 -# define ggt_in_gvcst_redo_root_search boolean_t -# define ggo_in_op_gvget 532 -# define ggt_in_op_gvget boolean_t -# define ggo_issue_DBROLLEDBACK_anyways 536 -# define ggt_issue_DBROLLEDBACK_anyways boolean_t -# define ggo_last_fnquery_return_subcnt 540 -# define ggt_last_fnquery_return_subcnt int -# define ggo_last_fnquery_return_varname 544 -# define ggt_last_fnquery_return_varname mval -# define ggo_ok_to_call_wcs_recover 568 -# define ggt_ok_to_call_wcs_recover boolean_t -# define ggo_in_gvcst_bmp_mark_free 572 -# define ggt_in_gvcst_bmp_mark_free boolean_t -# define ggo_prev_gv_target 576 -# define ggt_prev_gv_target gv_namehead * -# define ggo_ready2signal_gvundef 580 -# define ggt_ready2signal_gvundef boolean_t -# define ggo_redo_rootsrch_ctxt 584 -# define ggt_redo_rootsrch_ctxt redo_root_search_context -# define ggo_semwait2long 1728 -# define ggt_semwait2long volatile boolean_t -# define ggo_skip_file_corrupt_check 1732 -# define ggt_skip_file_corrupt_check boolean_t -# define ggo_tpnotacidtime 1736 -# define ggt_tpnotacidtime int4 -# define ggo_tp_restart_count 1740 -# define ggt_tp_restart_count uint4 -# define ggo_tp_restart_dont_counts 1744 -# define ggt_tp_restart_dont_counts int4 -# define ggo_tp_restart_entryref 1748 -# define ggt_tp_restart_entryref mval -# define ggo_tp_restart_failhist_indx 1772 -# define ggt_tp_restart_failhist_indx int4 -# define ggo_tprestart_syslog_delta 1776 -# define ggt_tprestart_syslog_delta int4 -# define ggo_tprestart_syslog_limit 1780 -# define ggt_tprestart_syslog_limit int4 -# define ggo_transform 1784 -# define ggt_transform boolean_t -# define ggo_wcs_recover_done 1788 -# define ggt_wcs_recover_done boolean_t -# define ggo_in_op_fnnext 1792 -# define ggt_in_op_fnnext boolean_t -# define ggo_local_collseq 1796 -# define ggt_local_collseq collseq * -# define ggo_local_collseq_stdnull 1800 -# define ggt_local_collseq_stdnull boolean_t -# define ggo_local_coll_nums_as_strings 1804 -# define ggt_local_coll_nums_as_strings boolean_t -# define ggo_lv_null_subs 1808 -# define ggt_lv_null_subs int -# define ggo_max_lcl_coll_xform_bufsiz 1812 -# define ggt_max_lcl_coll_xform_bufsiz int -# define ggo_replgbl 1816 -# define ggt_replgbl replgbl_t -# define ggo_tqread_nowait 1832 -# define ggt_tqread_nowait boolean_t -# define ggo_arlink_enabled 1836 -# define ggt_arlink_enabled boolean_t -# define ggo_arlink_loaded 1840 -# define ggt_arlink_loaded uint4 -# define ggo_collseq_list 1844 -# define ggt_collseq_list collseq * -# define ggo_create_fatal_error_zshow_dmp_fptr 1848 -# define ggt_create_fatal_error_zshow_dmp_fptr void -# define gga_create_fatal_error_zshow_dmp_fptr (void) -typedef void (*ggf_create_fatal_error_zshow_dmp_fptr)(void); -# define ggo_disable_sigcont 1852 -# define ggt_disable_sigcont boolean_t -# define ggo_dollar_zcompile 1856 -# define ggt_dollar_zcompile mstr -# define ggo_dollar_zmode 1868 -# define ggt_dollar_zmode mval -# define ggo_dollar_zonlnrlbk 1892 -# define ggt_dollar_zonlnrlbk int -# define ggo_dollar_zclose 1896 -# define ggt_dollar_zclose int -# define ggo_dollar_zroutines 1900 -# define ggt_dollar_zroutines mstr -# define ggo_error_on_jnl_file_lost 1912 -# define ggt_error_on_jnl_file_lost unsigned int -# define ggo_fnzsearch_lv_vars 1916 -# define ggt_fnzsearch_lv_vars lv_val * -# define ggo_fnzsearch_sub_mval 1920 -# define ggt_fnzsearch_sub_mval mval -# define ggo_fnzsearch_nullsubs_sav 1944 -# define ggt_fnzsearch_nullsubs_sav int -# define ggo_fnzsearch_globbuf_ptr 1948 -# define ggt_fnzsearch_globbuf_ptr glob_t * -# define ggo_glvn_pool_ptr 1952 -# define ggt_glvn_pool_ptr glvn_pool * -# define ggo_gtmdbgflags 1956 -# define ggt_gtmdbgflags int -# define ggo_gtmdbgflags_freq 1960 -# define ggt_gtmdbgflags_freq int -# define ggo_gtmdbgflags_freq_cntr 1964 -# define ggt_gtmdbgflags_freq_cntr int -# define ggo_gtm_env_init_started 1968 -# define ggt_gtm_env_init_started boolean_t -# define ggo_gtm_env_xlate_entry 1972 -# define ggt_gtm_env_xlate_entry int -# define gga_gtm_env_xlate_entry () -typedef int (*ggf_gtm_env_xlate_entry)(); -# define ggo_gtm_environment_init 1976 -# define ggt_gtm_environment_init boolean_t -# define ggo_gtm_sigusr1_handler 1980 -# define ggt_gtm_sigusr1_handler void -# define gga_gtm_sigusr1_handler (void) -typedef void (*ggf_gtm_sigusr1_handler)(void); -# define ggo_gtm_linktmpdir 1984 -# define ggt_gtm_linktmpdir mstr -# define ggo_gtm_trctbl_cur 1996 -# define ggt_gtm_trctbl_cur trctbl_entry * -# define ggo_gtm_trctbl_end 2000 -# define ggt_gtm_trctbl_end trctbl_entry * -# define ggo_gtm_trctbl_groups 2004 -# define ggt_gtm_trctbl_groups unsigned int -# define ggo_gtm_trctbl_start 2008 -# define ggt_gtm_trctbl_start trctbl_entry * -# define ggo_gtm_waitstuck_script 2012 -# define ggt_gtm_waitstuck_script mstr -# define ggo_gtmprompt 2024 -# define ggt_gtmprompt mstr -# define ggo_gtmsecshr_comkey 2036 -# define ggt_gtmsecshr_comkey unsigned int -# define ggo_in_zwrite 2040 -# define ggt_in_zwrite boolean_t -# define ggo_lab_lnr 2044 -# define ggt_lab_lnr lnr_tabent ** -# define ggo_jobexam_counter 2048 -# define ggt_jobexam_counter unsigned int -# define ggo_lab_proxy 2052 -# define ggt_lab_proxy lab_tabent_proxy -# define ggo_mprof_alloc_reclaim 2060 -# define ggt_mprof_alloc_reclaim boolean_t -# define ggo_mprof_chunk_avail_size 2064 -# define ggt_mprof_chunk_avail_size int -# define ggo_mprof_env_gbl_name 2068 -# define ggt_mprof_env_gbl_name mval -# define ggo_mprof_ptr 2092 -# define ggt_mprof_ptr mprof_wrapper * -# define ggo_mprof_reclaim_addr 2096 -# define ggt_mprof_reclaim_addr char * -# define ggo_mprof_reclaim_cnt 2100 -# define ggt_mprof_reclaim_cnt int -# define ggo_mprof_stack_curr_frame 2104 -# define ggt_mprof_stack_curr_frame mprof_stack_frame * -# define ggo_mprof_stack_next_frame 2108 -# define ggt_mprof_stack_next_frame mprof_stack_frame * -# define ggo_open_shlib_root 2112 -# define ggt_open_shlib_root open_shlib * -# define ggo_parm_pool_ptr 2116 -# define ggt_parm_pool_ptr parm_pool * -# define ggo_parms_cnt 2120 -# define ggt_parms_cnt unsigned int -# define ggo_zpeek_regname 2124 -# define ggt_zpeek_regname char -# define ggl_zpeek_regname 31 -# define ggo_zpeek_regname_len 2156 -# define ggt_zpeek_regname_len int -# define ggo_zpeek_reg_ptr 2160 -# define ggt_zpeek_reg_ptr gd_region * -# define ggo_pipefifo_interrupt 2164 -# define ggt_pipefifo_interrupt int -# define ggo_prof_fp 2168 -# define ggt_prof_fp mprof_stack_frame * -# define ggo_relink_allowed 2172 -# define ggt_relink_allowed int -# define ggo_set_zroutines_cycle 2176 -# define ggt_set_zroutines_cycle uint4 -# define ggo_trans_code_pop 2180 -# define ggt_trans_code_pop mval * -# define ggo_view_ydirt_str 2184 -# define ggt_view_ydirt_str char * -# define ggo_view_ydirt_str_len 2188 -# define ggt_view_ydirt_str_len int4 -# define ggo_zdate_form 2192 -# define ggt_zdate_form int4 -# define ggo_zintcmd_active 2196 -# define ggt_zintcmd_active zintcmd_active_info -# define ggl_zintcmd_active 36 -# define ggo_zro_root 2232 -# define ggt_zro_root zro_ent * -# define ggo_zsearch_var 2236 -# define ggt_zsearch_var lv_val * -# define ggo_poll_fds_buffer 2240 -# define ggt_poll_fds_buffer char * -# define ggo_poll_fds_buffer_size 2244 -# define ggt_poll_fds_buffer_size size_t -# define ggo_socket_handle_counter 2248 -# define ggt_socket_handle_counter int -# define ggo_director_string 2252 -# define ggt_director_string char -# define ggl_director_string 32 -# define ggo_fnpca 2284 -# define ggt_fnpca fnpc_area -# define ggo_for_stack 20092 -# define ggt_for_stack oprtype * -# define ggl_for_stack 128 -# define ggo_for_temps 20220 -# define ggt_for_temps boolean_t -# define ggl_for_temps 128 -# define ggo_last_fnquery_return_sub 20348 -# define ggt_last_fnquery_return_sub mval -# define ggl_last_fnquery_return_sub 768 -# define ggo_lcl_coll_xform_buff 21116 -# define ggt_lcl_coll_xform_buff char * -# define ggo_protmem_ba 21120 -# define ggt_protmem_ba mstr -# define ggo_parm_ary 21132 -# define ggt_parm_ary char * -# define ggl_parm_ary 4096 -# define ggo_parm_ary_len 25228 -# define ggt_parm_ary_len int -# define ggl_parm_ary_len 4096 -# define ggo_parm_str_len 29324 -# define ggt_parm_str_len int -# define ggl_parm_str_len 4096 -# define ggo_prombuf 33420 -# define ggt_prombuf char -# define ggl_prombuf 32 -# define ggo_tp_restart_failhist_arry 33452 -# define ggt_tp_restart_failhist_arry char -# define ggl_tp_restart_failhist_arry 32 -# define ggo_window_string 33484 -# define ggt_window_string char -# define ggl_window_string 32 -# define ggo_tmp_object_file_name 33516 -# define ggt_tmp_object_file_name char -# define ggl_tmp_object_file_name 4097 -# define ggo_last_va_list_ptr 37616 -# define ggt_last_va_list_ptr va_list -# define ggo_util_outbuff 37620 -# define ggt_util_outbuff char -# define ggl_util_outbuff 6144 -# define ggo_util_outbuff_ptr 43764 -# define ggt_util_outbuff_ptr char * -# define ggo_util_outptr 43768 -# define ggt_util_outptr char * -# define ggo_callin_hashtab 43772 -# define ggt_callin_hashtab hash_table_str * -# define ggo_ci_table 43776 -# define ggt_ci_table callin_entry_list * -# define ggo_extcall_package_root 43780 -# define ggt_extcall_package_root struct extcall_package_list * -# define ggo_gtmci_nested_level 43784 -# define ggt_gtmci_nested_level unsigned int -# define ggo_temp_fgncal_stack 43788 -# define ggt_temp_fgncal_stack unsigned char * -# define ggo_midchild_send_locals 43792 -# define ggt_midchild_send_locals boolean_t -# define ggo_want_empty_gvts 43796 -# define ggt_want_empty_gvts boolean_t -# define ggo_in_mu_swap_root_state 43800 -# define ggt_in_mu_swap_root_state unsigned int -# define ggo_prev_t_tries 43804 -# define ggt_prev_t_tries unsigned int -# define ggo_rlbk_during_redo_root 43808 -# define ggt_rlbk_during_redo_root boolean_t -# define ggo_mlk_yield_pid 43812 -# define ggt_mlk_yield_pid uint4 -# define ggo_jnl_extract_nocol 43816 -# define ggt_jnl_extract_nocol uint4 -# define ggo_skip_gtm_putmsg 43820 -# define ggt_skip_gtm_putmsg boolean_t -# define ggo_spangbl_seen 43824 -# define ggt_spangbl_seen boolean_t -# define ggo_no_spangbls 43828 -# define ggt_no_spangbls boolean_t -# define ggo_max_fid_index 43832 -# define ggt_max_fid_index int -# define ggo_is_mu_rndwn_rlnkctl 43836 -# define ggt_is_mu_rndwn_rlnkctl int -# define ggo_expand_prev_key 43840 -# define ggt_expand_prev_key boolean_t -# define ggo_gtm_autorelink_ctlmax 43844 -# define ggt_gtm_autorelink_ctlmax uint4 -# define ggo_gvt_triggers_read_this_tn 43848 -# define ggt_gvt_triggers_read_this_tn boolean_t -# define ggo_op_fntext_tlevel 43852 -# define ggt_op_fntext_tlevel uint4 -# define ggo_in_op_fntext 43856 -# define ggt_in_op_fntext boolean_t -# define ggo_ztrigbuff 43860 -# define ggt_ztrigbuff char * -# define ggo_ztrigbuffAllocLen 43864 -# define ggt_ztrigbuffAllocLen int -# define ggo_ztrigbuffLen 43868 -# define ggt_ztrigbuffLen int -# define ggo_ztrig_use_io_curr_device 43872 -# define ggt_ztrig_use_io_curr_device boolean_t -# define ggo_continue_proc_cnt 43876 -# define ggt_continue_proc_cnt int -# define ggo_gtm_test_fake_enospc 43880 -# define ggt_gtm_test_fake_enospc boolean_t -# define ggo_gtm_usesecshr 43884 -# define ggt_gtm_usesecshr boolean_t -# define ggo_rts_error_unusable 43888 -# define ggt_rts_error_unusable boolean_t -# define ggo_rts_error_unusable_seen 43892 -# define ggt_rts_error_unusable_seen boolean_t -# define ggo_trans_restart_hist_array 43896 -# define ggt_trans_restart_hist_array trans_restart_hist_t -# define ggl_trans_restart_hist_array 14336 -# define ggo_trans_restart_hist_index 58232 -# define ggt_trans_restart_hist_index uint4 -# define ggo_skip_mv_num_approx_assert 58236 -# define ggt_skip_mv_num_approx_assert boolean_t -# define ggo_gtm_gvundef_fatal 58240 -# define ggt_gtm_gvundef_fatal boolean_t -# define ggo_gtm_dirtree_collhdr_always 58244 -# define ggt_gtm_dirtree_collhdr_always boolean_t -# define ggo_activelv_cycle 58248 -# define ggt_activelv_cycle int -# define ggo_activelv_index 58252 -# define ggt_activelv_index int -# define ggo_activelv_dbg_array 58256 -# define ggt_activelv_dbg_array activelv_dbg_t * -# define ggo_cli_get_str_max_len 58260 -# define ggt_cli_get_str_max_len uint4 -# define ggo_gtmio_skip_tlevel_assert 58264 -# define ggt_gtmio_skip_tlevel_assert boolean_t -# define ggo_in_trigger_upgrade 58268 -# define ggt_in_trigger_upgrade boolean_t -# define ggo_gtm_test_autorelink_always 58272 -# define ggt_gtm_test_autorelink_always boolean_t -# define ggo_fork_without_child_wait 58276 -# define ggt_fork_without_child_wait boolean_t -# define size_gtm_threadgbl_struct 58280 -#endif -#endif diff --git a/sr_i386/gtm_threadgbl_deftypes_asm_dbg.si b/sr_i386/gtm_threadgbl_deftypes_asm_dbg.si deleted file mode 100644 index 3ab66f67..00000000 --- a/sr_i386/gtm_threadgbl_deftypes_asm_dbg.si +++ /dev/null @@ -1,3 +0,0 @@ -# -# Created by gtmthreadgblasm for version V6.0-003 on Linux x86 (gtm_threadgbl_deftypes_asm_dbg.si) -# diff --git a/sr_i386/gtm_threadgbl_deftypes_asm_pro.si b/sr_i386/gtm_threadgbl_deftypes_asm_pro.si deleted file mode 100644 index b7f5f088..00000000 --- a/sr_i386/gtm_threadgbl_deftypes_asm_pro.si +++ /dev/null @@ -1,3 +0,0 @@ -# -# Created by gtmthreadgblasm for version V6.0-003 on Linux x86 (gtm_threadgbl_deftypes_asm_pro.si) -# diff --git a/sr_i386/linkage.si b/sr_i386/linkage.si old mode 100644 new mode 100755 diff --git a/sr_i386/masscomp.h b/sr_i386/masscomp.h old mode 100644 new mode 100755 diff --git a/sr_i386/merrors_ansi.h b/sr_i386/merrors_ansi.h index 558ea24a..5fb54b5b 100644 --- a/sr_i386/merrors_ansi.h +++ b/sr_i386/merrors_ansi.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -402,7 +402,7 @@ const static readonly int error_ansi[] = { 0, /* CCECLSTPRCS */ 0, /* ZSHOWBADFUNC */ 0, /* NOTALLJNLEN */ - 0, /* ZSHOWGLOSMALL */ + 0, /* UNUSEDMSG570 */ 0, /* NOLBRSRC */ 0, /* INVZSTEP */ 0, /* ZSTEPARG */ @@ -502,7 +502,7 @@ const static readonly int error_ansi[] = { 0, /* CETOOLONG */ 0, /* CENOINDIR */ 0, /* COLLATIONUNDEF */ - 0, /* RBWRNNOTCHG */ + 0, /* UNUSEDMSG670 */ 0, /* GTMSECSHRSRVF */ 0, /* FREEZECTRL */ 0, /* JNLFLUSH */ @@ -510,8 +510,8 @@ const static readonly int error_ansi[] = { 0, /* NOPRINCIO */ 0, /* INVPORTSPEC */ 0, /* INVADDRSPEC */ - 78, /* UNUSEDMSG678 */ - 0, /* UNUSEDMSG679 */ + 0, /* MUREENCRYPTEND */ + 0, /* CRYPTJNLMISMATCH */ 80, /* SOCKWAIT */ 81, /* SOCKACPT */ 80, /* SOCKINIT */ @@ -732,7 +732,7 @@ const static readonly int error_ansi[] = { 0, /* MUINFOUINT4 */ 0, /* NLMISMATCHCALC */ 0, /* RELINKCTLFULL */ - 0, /* UNUSEDMSG900 */ + 0, /* MUPIPSET2BIG */ 0, /* DBBADNSUB */ 0, /* DBBADKYNM */ 0, /* DBBADPNTR */ @@ -783,7 +783,7 @@ const static readonly int error_ansi[] = { 0, /* DBMBPFRINT */ 0, /* DBMAXKEYEXC */ 0, /* DBMXRSEXCMIN */ - 0, /* UNUSEDMSG951 */ + 0, /* MUPIPSET2SML */ 0, /* DBREADBM */ 0, /* DBCOMPTOOLRG */ 0, /* DBVERPERFWARN2 */ @@ -1148,11 +1148,11 @@ const static readonly int error_ansi[] = { 0, /* CRYPTDLNOOPEN */ 0, /* CRYPTNOV4 */ 0, /* CRYPTNOMM */ - 0, /* CRYPTJNLWRONGHASH */ + 0, /* UNUSEDMSG1316 */ 0, /* CRYPTKEYFETCHFAILED */ 0, /* CRYPTKEYFETCHFAILEDNF */ 0, /* CRYPTHASHGENFAILED */ - 0, /* UNUSEDMSG1320 */ + 0, /* CRYPTNOKEY */ 0, /* BADTAG */ 0, /* ICUVERLT36 */ 0, /* ICUSYMNOTFOUND */ @@ -1422,7 +1422,7 @@ const static readonly int error_ansi[] = { 0, /* RLNKRECLATCH */ 0, /* RLNKSHMLATCH */ 0, /* JOBLVN2LONG */ - 0, /* JOBLVNDETAIL */ + 0, /* NLRESTORE */ 0, /* PREALLOCATEFAIL */ 0, /* NODFRALLOCSUPP */ 0, /* LASTWRITERBYPAS */ @@ -1433,4 +1433,21 @@ const static readonly int error_ansi[] = { 0, /* INVTMPDIR */ 0, /* ARCTLMAXHIGH */ 0, /* ARCTLMAXLOW */ + 0, /* NONTPRESTART */ + 0, /* PBNPARMREQ */ + 0, /* PBNNOPARM */ + 0, /* PBNUNSUPSTRUCT */ + 0, /* PBNINVALID */ + 0, /* PBNNOFIELD */ + 0, /* JNLDBSEQNOMATCH */ + 0, /* MULTIPROCLATCH */ + 0, /* INVLOCALE */ + 0, /* NOMORESEMCNT */ + 0, /* SETQUALPROB */ + 0, /* EXTRINTEGRITY */ + 0, /* CRYPTKEYRELEASEFAILED */ + 0, /* MUREENCRYPTSTART */ + 0, /* MUREENCRYPTV4NOALLOW */ + 0, /* ENCRYPTCONFLT */ + 0, /* JNLPOOLRECOVERY */ }; diff --git a/sr_i386/merrors_ctl.c b/sr_i386/merrors_ctl.c index 94822126..71fe7883 100644 --- a/sr_i386/merrors_ctl.c +++ b/sr_i386/merrors_ctl.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -53,7 +53,7 @@ LITDEF err_msg merrors[] = { "DEVPARMNEG", "Deviceparameter must be a positive value", 0, "DSEBLKRDFAIL", "Failed attempt to read block", 0, "DSEFAIL", "DSE failed. Failure code: !AD.", 2, - "NOTALLREPLON", "Replication state is not on for all regions", 0, + "NOTALLREPLON", "Replication off for !AD regions", 2, "BADLKIPARAM", "!AD is not a legal parameter for $ZGETLKI()", 2, "JNLREADBOF", "Beginning of journal file encountered for !AD", 2, "DVIKEYBAD", "$ZGETDVI(\"!AD\",\"!AD\") contains an illegal keyword", 4, @@ -403,8 +403,8 @@ LITDEF err_msg merrors[] = { "CCECCPPID", "The cluster control program has PID 0x!XL", 1, "CCECLSTPRCS", "!UL processes are accessing clustered database files", 1, "ZSHOWBADFUNC", "An illegal function was specified for ZSHOW", 0, - "NOTALLJNLEN", "Journaling not enabled and on for all regions", 0, - "ZSHOWGLOSMALL", "Global output variable is too small for ZSHOW output", 0, + "NOTALLJNLEN", "Journaling disabled/off for !AD regions", 2, + "UNUSEDMSG570", "ZSHOWGLOSMALL last used in V6.2-002A", 0, "NOLBRSRC", "Object libraries cannot have SRC paths associated", 0, "INVZSTEP", "Invalid ZSTEP qualifier", 0, "ZSTEPARG", "ZSTEP argument expected", 0, @@ -504,7 +504,7 @@ LITDEF err_msg merrors[] = { "CETOOLONG", "Compiler escape substitution exceeds maximum line size", 0, "CENOINDIR", "Indirection type information not available for compiler escape feature", 0, "COLLATIONUNDEF", "Collation type !UL is not defined", 1, - "RBWRNNOTCHG", "Not all specified database files were changed", 0, + "UNUSEDMSG670", "RBWRNNOTCHG last used in V6.2-002A", 0, "GTMSECSHRSRVF", "!AD - !UL : Attempt to service request failed (retry = !UL)", 4, "FREEZECTRL", "Control Y or control C encountered during attempt to freeze the database. Aborting freeze.", 0, "JNLFLUSH", "Error flushing journal buffers to journal file !AD", 2, @@ -512,8 +512,8 @@ LITDEF err_msg merrors[] = { "NOPRINCIO", "Unable to write to principal device", 0, "INVPORTSPEC", "Invalid port specification", 0, "INVADDRSPEC", "Invalid IP address specification", 0, - "UNUSEDMSG678", "SOCKPARMREQ last used in V6.0-002", 0, - "UNUSEDMSG679", "IPADDRREQ last used in V6.0-002", 0, + "MUREENCRYPTEND", "Database !AD : MUPIP REORG ENCRYPT finished by pid !UL at transaction number [0x!16@XQ]", 4, + "CRYPTJNLMISMATCH", "Encryption settings mismatch between journal file !AD and corresponding database file !AD", 4, "SOCKWAIT", "Error waiting for socket connection", 0, "SOCKACPT", "Error accepting socket connection", 0, "SOCKINIT", "Error initializing socket: (errno == !UL) !AD", 3, @@ -734,7 +734,7 @@ LITDEF err_msg merrors[] = { "MUINFOUINT4", "!AD : !UL [0x!XL]", 4, "NLMISMATCHCALC", "Location of !AD expected at 0x!XL, but found at 0x!XL", 4, "RELINKCTLFULL", "Relinkctl file for directory !AD is full (maximum entries !UL)", 3, - "UNUSEDMSG900", "GTMSECSHRDEFLOG last used in V5.5-000", 0, + "MUPIPSET2BIG", "!UL too large, maximum !AD allowed is !UL", 4, "DBBADNSUB", "!AD Bad numeric subscript", 2, "DBBADKYNM", "!AD Bad key name", 2, "DBBADPNTR", "!AD Bad pointer value in directory", 2, @@ -785,7 +785,7 @@ LITDEF err_msg merrors[] = { "DBMBPFRINT", "!AD Master bit map shows this map has space, agreeing with MUPIP INTEG", 2, "DBMAXKEYEXC", "!AD Maximum key size for database exceeds design maximum", 2, "DBMXRSEXCMIN", "!AD Maximum record size for database is less than the design minimum", 2, - "UNUSEDMSG951", "DBMAXRSEXBL : Last used in V5.5-000", 0, + "MUPIPSET2SML", "!UL too small, minimum !AD allowed is !UL", 4, "DBREADBM", "!AD Read error on bitmap", 2, "DBCOMPTOOLRG", "!AD Record has too large compression count", 2, "DBVERPERFWARN2", "Peformance warning: Database !AD is not fully upgraded. Run MUPIP REORG UPGRADE for best overall performance", 2, @@ -1020,9 +1020,9 @@ LITDEF err_msg merrors[] = { "JNLALIGNTOOSM", "Alignsize !UL (bytes) is too small for a block size of !UL (bytes) for !AD !AD. Using alignsize of !UL (bytes) instead.", 7, "JNLFILEOPNERR", "Error opening journal file !AD", 2, "JNLFILECLOSERR", "Error closing journal file !AD", 2, - "REPLSTATEOFF", "ROLLBACK cannot proceed as database !AD does not have replication ON", 2, + "REPLSTATEOFF", "MUPIP JOURNAL -ROLLBACK -BACKWARD cannot proceed as database !AD does not have replication ON", 2, "MUJNLPREVGEN", "Previous generation journal file !AD included for database file !AD", 4, - "MUPJNLINTERRUPT", "Database file !AD indicates interrupted MUPIP JOURNAL command. Restore from backup for forward recovery.", 2, + "MUPJNLINTERRUPT", "Database file !AD indicates interrupted MUPIP JOURNAL command. Restore from backup for forward recover/rollback.", 2, "ROLLBKINTERRUPT", "Database file !AD indicates interrupted ROLLBACK. Reissue the MUPIP JOURNAL ROLLBACK command.", 2, "RLBKJNSEQ", "Journal seqno of the instance after rollback is !@ZQ [0x!16@XQ]", 2, "REPLRECFMT", "Replication journal record format error encountered", 0, @@ -1150,11 +1150,11 @@ LITDEF err_msg merrors[] = { "CRYPTDLNOOPEN", "Could not load encryption library while opening encrypted file !AD. !AD", 4, "CRYPTNOV4", "!AD is an encrypted database. Cannot downgrade(to V4) with Encryption option enabled.", 2, "CRYPTNOMM", "!AD is an encrypted database. Cannot support MM access method.", 2, - "CRYPTJNLWRONGHASH", "Encryption key hash mismatch between journal file !AD and corresponding database file !AD", 4, + "UNUSEDMSG1316", "Last used in V6.2-002A", 0, "CRYPTKEYFETCHFAILED", "Could not retrieve encryption key corresponding to file !AD. !AD", 4, "CRYPTKEYFETCHFAILEDNF", "Could not retrieve encryption key during !AD operation key. !AD", 4, "CRYPTHASHGENFAILED", "Could not generate cryptographic hash for symmetric key corresponding to file !AD. !AD", 4, - "UNUSEDMSG1320", "CRYPTNOPSWDINTP : Last used in V6.0-003", 0, + "CRYPTNOKEY", "No encryption key specified", 0, "BADTAG", "Unable to use file !AD (CCSID !UL) with CCSID !UL", 4, "ICUVERLT36", "!AD !UL.!UL. ICU version greater than or equal to 3.6 should be used", 4, "ICUSYMNOTFOUND", "Symbol !AD not found in the ICU libraries. ICU needs to be built with symbol-renaming disabled or gtm_icu_version environment variable needs to be properly specified", 2, @@ -1423,8 +1423,8 @@ LITDEF err_msg merrors[] = { "TLSPARAM", "TLS parameter !AD !AD", 4, "RLNKRECLATCH", "Failed to get latch on relinkctl record for routine name !AZ in $ZROUTINES directory !AD", 3, "RLNKSHMLATCH", "Failed to get latch on relinkctl shared memory for $ZROUTINES directory !AD", 2, - "JOBLVN2LONG", "The zwrite representation of a local variable transferred to a JOB'd process is too long. Please check the output of the JOB'd process for more details", 0, - "JOBLVNDETAIL", "The zwrite representation of a local variable transferred to a JOB'd process is too long. The zwrite representation cannot exceed !UL. Encountered size: !UL", 2, + "JOBLVN2LONG", "The zwrite representation of a local variable transferred to a JOB'd process is too long. The zwrite representation cannot exceed !UL. Encountered size: !UL", 2, + "NLRESTORE", "DB file header field !AD: !UL does not match the value used in original mapping - restoring to: !UL", 4, "PREALLOCATEFAIL", "Disk space reservation for !AD segment has failed", 2, "NODFRALLOCSUPP", "The NODEFER_ALLOCATE qualifier is not allowed on this operating system. Not changing the defer allocation flag", 0, "LASTWRITERBYPAS", "The last writer for database file !AD bypassed the rundown", 2, @@ -1435,6 +1435,23 @@ LITDEF err_msg merrors[] = { "INVTMPDIR", "Value or default for $gtm_tmp is either not found or not a directory (!AD) - Reverting to default value", 2, "ARCTLMAXHIGH", "The environment variable !AD = !UL is too high. Assuming the maximum acceptable value of !UL", 4, "ARCTLMAXLOW", "The environment variable !AD = !UL is too low. Assuming the minimum acceptable value of !UL", 4, + "NONTPRESTART", "Database !AD; code: !AD; blk: 0x!XL in glbl: ^!AD; blklvl: !UL, type: !UL, zpos: !AD", 11, + "PBNPARMREQ", "A first parameter value !AD requires a second parameter specified containing !AD", 4, + "PBNNOPARM", "First parameter !AD does not support a second parameter", 2, + "PBNUNSUPSTRUCT", "$ZPEEK() does not support structure !AD", 2, + "PBNINVALID", "!AD does not have a field named !AD", 4, + "PBNNOFIELD", "%ZPEEKBYNAME() requires a field.item as its first parameter", 0, + "JNLDBSEQNOMATCH", "Journal file !AD has beginning region sequence number [0x!16@XQ], but database !AD has region sequence number [0x!16@XQ]", 6, + "MULTIPROCLATCH", "Failed to get multi-process latch at !AD", 2, + "INVLOCALE", "Attempt to reset locale to supplied value of $gtm_locale (!AD) failed", 2, + "NOMORESEMCNT", "!AD counter semaphore has reached its maximum and stopped counting for !AZ !AD. Run MUPIP JOURNAL -ROLLBACK -BACKWARD, MUPIP JOURNAL -RECOVER -BACKWARD or MUPIP RUNDOWN to restore the database files and shared resources to a clean state", 5, + "SETQUALPROB", "Error getting !AD qualifier value", 2, + "EXTRINTEGRITY", "Database !AD potentially contains spanning nodes or data encrypted with two different keys", 2, + "CRYPTKEYRELEASEFAILED", "Could not safely release encryption key corresponding to file !AD. !AD", 4, + "MUREENCRYPTSTART", "Database !AD : MUPIP REORG ENCRYPT started by pid !UL at transaction number [0x!16@XQ]", 4, + "MUREENCRYPTV4NOALLOW", "Database (re)encryption supported only on fully upgraded V5 databases. !AD has V4 format blocks", 2, + "ENCRYPTCONFLT", "MUPIP REORG -ENCRYPT and MUPIP EXTRACT -FORMAT=BIN cannot run concurrently - skipping !AD on region: !AD, file: !AD", 6, + "JNLPOOLRECOVERY", "The size of the data written to the journal pool (!UL) does not match the size of the data in the journal record (!UL) for the replication instance file !AZ. The journal pool has been recovered.", 3, }; LITDEF int ERR_ACK = 150372361; @@ -1828,7 +1845,7 @@ LITDEF int ERR_CCECCPPID = 150375459; LITDEF int ERR_CCECLSTPRCS = 150375467; LITDEF int ERR_ZSHOWBADFUNC = 150375474; LITDEF int ERR_NOTALLJNLEN = 150375480; -LITDEF int ERR_ZSHOWGLOSMALL = 150375490; +LITDEF int ERR_UNUSEDMSG570 = 150375490; LITDEF int ERR_NOLBRSRC = 150375498; LITDEF int ERR_INVZSTEP = 150375506; LITDEF int ERR_ZSTEPARG = 150375514; @@ -1928,7 +1945,7 @@ LITDEF int ERR_CEBIGSKIP = 150376258; LITDEF int ERR_CETOOLONG = 150376266; LITDEF int ERR_CENOINDIR = 150376274; LITDEF int ERR_COLLATIONUNDEF = 150376282; -LITDEF int ERR_RBWRNNOTCHG = 150376288; +LITDEF int ERR_UNUSEDMSG670 = 150376290; LITDEF int ERR_GTMSECSHRSRVF = 150376298; LITDEF int ERR_FREEZECTRL = 150376307; LITDEF int ERR_JNLFLUSH = 150376315; @@ -1936,8 +1953,8 @@ LITDEF int ERR_CCPSIGDMP = 150376323; LITDEF int ERR_NOPRINCIO = 150376332; LITDEF int ERR_INVPORTSPEC = 150376338; LITDEF int ERR_INVADDRSPEC = 150376346; -LITDEF int ERR_UNUSEDMSG678 = 150376354; -LITDEF int ERR_UNUSEDMSG679 = 150376362; +LITDEF int ERR_MUREENCRYPTEND = 150376355; +LITDEF int ERR_CRYPTJNLMISMATCH = 150376362; LITDEF int ERR_SOCKWAIT = 150376370; LITDEF int ERR_SOCKACPT = 150376378; LITDEF int ERR_SOCKINIT = 150376386; @@ -2158,7 +2175,7 @@ LITDEF int ERR_SCNDDBNOUPD = 150378098; LITDEF int ERR_MUINFOUINT4 = 150378107; LITDEF int ERR_NLMISMATCHCALC = 150378114; LITDEF int ERR_RELINKCTLFULL = 150378122; -LITDEF int ERR_UNUSEDMSG900 = 150378131; +LITDEF int ERR_MUPIPSET2BIG = 150378128; LITDEF int ERR_DBBADNSUB = 150378138; LITDEF int ERR_DBBADKYNM = 150378146; LITDEF int ERR_DBBADPNTR = 150378154; @@ -2209,7 +2226,7 @@ LITDEF int ERR_DBMBPFRDLBM = 150378504; LITDEF int ERR_DBMBPFRINT = 150378512; LITDEF int ERR_DBMAXKEYEXC = 150378522; LITDEF int ERR_DBMXRSEXCMIN = 150378530; -LITDEF int ERR_UNUSEDMSG951 = 150378538; +LITDEF int ERR_MUPIPSET2SML = 150378536; LITDEF int ERR_DBREADBM = 150378546; LITDEF int ERR_DBCOMPTOOLRG = 150378554; LITDEF int ERR_DBVERPERFWARN2 = 150378560; @@ -2574,11 +2591,11 @@ LITDEF int ERR_CRYPTOPFAILED = 150381426; LITDEF int ERR_CRYPTDLNOOPEN = 150381434; LITDEF int ERR_CRYPTNOV4 = 150381442; LITDEF int ERR_CRYPTNOMM = 150381450; -LITDEF int ERR_CRYPTJNLWRONGHASH = 150381458; +LITDEF int ERR_UNUSEDMSG1316 = 150381458; LITDEF int ERR_CRYPTKEYFETCHFAILED = 150381466; LITDEF int ERR_CRYPTKEYFETCHFAILEDNF = 150381474; LITDEF int ERR_CRYPTHASHGENFAILED = 150381482; -LITDEF int ERR_UNUSEDMSG1320 = 150381490; +LITDEF int ERR_CRYPTNOKEY = 150381490; LITDEF int ERR_BADTAG = 150381498; LITDEF int ERR_ICUVERLT36 = 150381506; LITDEF int ERR_ICUSYMNOTFOUND = 150381514; @@ -2848,7 +2865,7 @@ LITDEF int ERR_TLSPARAM = 150383618; LITDEF int ERR_RLNKRECLATCH = 150383626; LITDEF int ERR_RLNKSHMLATCH = 150383634; LITDEF int ERR_JOBLVN2LONG = 150383642; -LITDEF int ERR_JOBLVNDETAIL = 150383650; +LITDEF int ERR_NLRESTORE = 150383648; LITDEF int ERR_PREALLOCATEFAIL = 150383658; LITDEF int ERR_NODFRALLOCSUPP = 150383664; LITDEF int ERR_LASTWRITERBYPAS = 150383672; @@ -2859,9 +2876,26 @@ LITDEF int ERR_INVZBREAK = 150383706; LITDEF int ERR_INVTMPDIR = 150383714; LITDEF int ERR_ARCTLMAXHIGH = 150383720; LITDEF int ERR_ARCTLMAXLOW = 150383728; +LITDEF int ERR_NONTPRESTART = 150383739; +LITDEF int ERR_PBNPARMREQ = 150383746; +LITDEF int ERR_PBNNOPARM = 150383754; +LITDEF int ERR_PBNUNSUPSTRUCT = 150383762; +LITDEF int ERR_PBNINVALID = 150383770; +LITDEF int ERR_PBNNOFIELD = 150383778; +LITDEF int ERR_JNLDBSEQNOMATCH = 150383786; +LITDEF int ERR_MULTIPROCLATCH = 150383794; +LITDEF int ERR_INVLOCALE = 150383802; +LITDEF int ERR_NOMORESEMCNT = 150383811; +LITDEF int ERR_SETQUALPROB = 150383818; +LITDEF int ERR_EXTRINTEGRITY = 150383826; +LITDEF int ERR_CRYPTKEYRELEASEFAILED = 150383834; +LITDEF int ERR_MUREENCRYPTSTART = 150383843; +LITDEF int ERR_MUREENCRYPTV4NOALLOW = 150383850; +LITDEF int ERR_ENCRYPTCONFLT = 150383858; +LITDEF int ERR_JNLPOOLRECOVERY = 150383866; GBLDEF err_ctl merrors_ctl = { 246, "GTM", &merrors[0], - 1422}; + 1439}; diff --git a/sr_i386/mint2mval.s b/sr_i386/mint2mval.s old mode 100644 new mode 100755 diff --git a/sr_i386/mum_tstart.s b/sr_i386/mum_tstart.s old mode 100644 new mode 100755 diff --git a/sr_i386/mval2bool.s b/sr_i386/mval2bool.s old mode 100644 new mode 100755 diff --git a/sr_i386/mval2mint.s b/sr_i386/mval2mint.s old mode 100644 new mode 100755 diff --git a/sr_i386/mval2num.s b/sr_i386/mval2num.s old mode 100644 new mode 100755 diff --git a/sr_i386/mval_def.si b/sr_i386/mval_def.si old mode 100644 new mode 100755 index df6ce60c..9ae3458d --- a/sr_i386/mval_def.si +++ b/sr_i386/mval_def.si @@ -1,6 +1,7 @@ ################################################################# # # -# Copyright 2001, 2012 Fidelity Information Services, Inc # +# Copyright (c) 2001-2015 Fidelity National Information # +# Services, Inc. and/or its subsidiaries. All rights reserved. # # # # This source code contains the intellectual property # # of its copyright holder(s), and is made available # @@ -41,34 +42,23 @@ mval_m_sublit = 0x040 mval_m_retarg = 0x080 mval_m_utflen = 0x100 mval_m_aliascont = 0x200 - -#smw 99/7/12 Now using MS VC 5.0 so the following paragraph should -# be replaced. -# NOTE: The SCO C compiler pads out bit fields to the length of -# the underlying type. For example, a series of "unsigned int" -# bit fields will be padded out to a multiple of 4 bytes, even if -# they require less than one byte total, because the underlying -# type is "int". Similarly, a series of "unsigned short" bit -# fields will be padded out to a multiple of 2 bytes, and a -# series of "unsigned char" will be padded out to a byte boundary. -# Also note the padding is not related to alignment, only to -# total length. -# -#smw 99/10/19 gcc on Linux doesn't do the above # # Length of mval in bytes -mval_byte_len = 24 - +# +mval_byte_len = 32 +# # Offsets of type, exp, strlen, stradd, num in mval structure +# mval_w_mvtype = 0 mval_b_exp = 2 -mval_l_strlen = 16 -mval_a_straddr = 20 - +mval_l_strlen = 24 +mval_a_straddr = 28 +# # Address offset of number in mval -mvalnm_offs = 4 -mval_l_m0 = 4 -mval_l_m1 = 8 +# +mvalnm_offs = 12 +mval_l_m0 = 12 +mval_l_m1 = 16 mval_esign_mask = 0x080 MV_BIAS = 1000 # 10**3 diff --git a/sr_i386/op_bkpt.s b/sr_i386/op_bkpt.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_call.s b/sr_i386/op_call.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_callsp.s b/sr_i386/op_callsp.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_contain.s b/sr_i386/op_contain.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_currtn.s b/sr_i386/op_currtn.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_equ.s b/sr_i386/op_equ.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_equnul.s b/sr_i386/op_equnul.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_exfun.s b/sr_i386/op_exfun.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_extcall.s b/sr_i386/op_extcall.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_extexfun.s b/sr_i386/op_extexfun.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_extjmp.s b/sr_i386/op_extjmp.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_fetchintrrpt.s b/sr_i386/op_fetchintrrpt.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_fnget.s b/sr_i386/op_fnget.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_fnzextract.s b/sr_i386/op_fnzextract.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_follow.s b/sr_i386/op_follow.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forcenum.s b/sr_i386/op_forcenum.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forchk1.s b/sr_i386/op_forchk1.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forinit.s b/sr_i386/op_forinit.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forintrrpt.s b/sr_i386/op_forintrrpt.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forlcldo.s b/sr_i386/op_forlcldo.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_forloop.s b/sr_i386/op_forloop.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_gettruth.s b/sr_i386/op_gettruth.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_iretmvad.s b/sr_i386/op_iretmvad.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_linefetch.s b/sr_i386/op_linefetch.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_linestart.s b/sr_i386/op_linestart.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofcall.s b/sr_i386/op_mprofcall.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofcallsp.s b/sr_i386/op_mprofcallsp.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofexfun.s b/sr_i386/op_mprofexfun.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofextcall.s b/sr_i386/op_mprofextcall.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofextexfun.s b/sr_i386/op_mprofextexfun.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mprofforlcldo.s b/sr_i386/op_mprofforlcldo.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mproflinefetch.s b/sr_i386/op_mproflinefetch.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_mproflinestart.s b/sr_i386/op_mproflinestart.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_neg.s b/sr_i386/op_neg.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_numcmp.s b/sr_i386/op_numcmp.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_pattern.s b/sr_i386/op_pattern.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_restartpc.s b/sr_i386/op_restartpc.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_retarg.s b/sr_i386/op_retarg.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_sorts_after.s b/sr_i386/op_sorts_after.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_startintrrpt.s b/sr_i386/op_startintrrpt.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_sto.s b/sr_i386/op_sto.s old mode 100644 new mode 100755 diff --git a/sr_i386/op_zhelp.s b/sr_i386/op_zhelp.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_break.s b/sr_i386/opp_break.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_commarg.s b/sr_i386/opp_commarg.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_dmode.s b/sr_i386/opp_dmode.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_hardret.s b/sr_i386/opp_hardret.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_inddevparms.s b/sr_i386/opp_inddevparms.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indfnname.s b/sr_i386/opp_indfnname.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indfun.s b/sr_i386/opp_indfun.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indglvn.s b/sr_i386/opp_indglvn.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indincr.s b/sr_i386/opp_indincr.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indlvadr.s b/sr_i386/opp_indlvadr.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indlvarg.s b/sr_i386/opp_indlvarg.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indlvnamadr.s b/sr_i386/opp_indlvnamadr.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indmerge.s b/sr_i386/opp_indmerge.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indpat.s b/sr_i386/opp_indpat.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indrzshow.s b/sr_i386/opp_indrzshow.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indset.s b/sr_i386/opp_indset.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_indtext.s b/sr_i386/opp_indtext.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_iretmval.s b/sr_i386/opp_iretmval.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_newintrinsic.s b/sr_i386/opp_newintrinsic.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_newvar.s b/sr_i386/opp_newvar.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_ret.s b/sr_i386/opp_ret.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_rterror.s b/sr_i386/opp_rterror.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_svput.s b/sr_i386/opp_svput.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_tcommit.s b/sr_i386/opp_tcommit.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_trestart.s b/sr_i386/opp_trestart.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_trollback.s b/sr_i386/opp_trollback.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_tstart.s b/sr_i386/opp_tstart.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_xnew.s b/sr_i386/opp_xnew.s old mode 100644 new mode 100755 diff --git a/sr_i386/opp_zcont.s b/sr_i386/opp_zcont.s old mode 100644 new mode 100755 diff --git a/sr_i386/pseudo_ret.s b/sr_i386/pseudo_ret.s old mode 100644 new mode 100755 diff --git a/sr_i386/ttt.c b/sr_i386/ttt.c index 5900dcbd..d9b731e1 100644 --- a/sr_i386/ttt.c +++ b/sr_i386/ttt.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -14,7 +14,7 @@ #include "vxi.h" #include "vxt.h" #include "xfer_enum.h" -LITDEF short ttt[4272] = { +LITDEF short ttt[4275] = { /* 0 */ 0,0,0,0,326,3427,2868,550, /* 8 */ 2246,2853,2883,1927,404,3377,2039,3001, @@ -31,20 +31,20 @@ LITDEF short ttt[4272] = { /* 96 */ 0,2936,3067,3030,3015,3045,3391,3243, /* 104 */ 3309,3522,3534,3549,3573,3582,3567,3558, /* 112 */ 3342,3643,3656,3678,3715,3727,3748,3772, -/* 120 */ 3838,0,0,2841,2206,3119,4221,638, -/* 128 */ 4224,692,2702,3085,520,526,4227,2309, +/* 120 */ 3838,0,0,2841,2206,3119,4224,638, +/* 128 */ 4227,692,2702,3085,520,526,4230,2309, /* 136 */ 2396,2296,473,2332,2416,2071,2354,2426, -/* 144 */ 4230,2191,2182,4234,1388,1406,4235,354, -/* 152 */ 350,3333,428,4239,4242,4245,2922,4248, -/* 160 */ 4251,4254,4257,4260,4263,3413,0,2817, +/* 144 */ 4233,2191,2182,4237,1388,1406,4238,354, +/* 152 */ 350,3333,428,4242,4245,4248,2922,4251, +/* 160 */ 4254,4257,4260,4263,4266,3413,0,2817, /* 168 */ 2485,2463,1625,2454,2242,2053,2768,1948, /* 176 */ 717,2758,0,0,2261,3591,3619,1601, /* 184 */ 3543,2344,1941,535,3739,1793,2173,1304, /* 192 */ 341,3071,604,670,588,648,3703,1199, /* 200 */ 1238,3671,2897,2200,2832,2911,620,1091, -/* 208 */ 2772,4266,2406,3790,3808,3823,497,2787, +/* 208 */ 2772,4269,2406,3790,3808,3823,497,2787, /* 216 */ 3063,1886,3859,3850,1442,3405,579,1691, -/* 224 */ 1733,2369,4269,3476,2442,726,864,3102, +/* 224 */ 1733,2369,4272,3476,2442,726,864,3102, /* 232 */ 3631,3500,3486,3493,3482,702,959,2319, /* 240 */ 1133,2283,1121,2143,1106,1166,2381,1571, /* 248 */ 1514,1499,1553,1469,1481,1526,1454,1538, @@ -54,9 +54,9 @@ LITDEF short ttt[4272] = { /* 280 */ 1859,3919,3934,3970,3997,3952,3129,3141, /* 288 */ 3153,3165,2681,2696,1613,437,792,1424, /* 296 */ 629,3177,3189,3982,3988,0,0,0, -/* 304 */ 0,3694,4009,4020,4032,4041,4055,4068, -/* 312 */ 4078,4095,4107,4116,4128,4140,4152,4167, -/* 320 */ 4179,0,0,4188,4209,1874,VXI_PUSHAB,VXT_VAL, +/* 304 */ 0,3694,4012,4023,4035,4044,4058,4071, +/* 312 */ 4081,4098,4110,4119,4131,4143,4155,4170, +/* 320 */ 4182,0,0,4191,4212,1874,VXI_PUSHAB,VXT_VAL, /* 328 */ 0,VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS, /* 336 */ VXT_LIT,3,VXT_XFER,SIZEOF(char *) * (short int)xf_add,VXT_END, /* 341 */ VXT_IREPL,VXT_VAL,2,VXI_CALLS,VXT_VAL,1,VXT_XFER,SIZEOF(char *) * (short int)xf_bindparm, @@ -652,48 +652,48 @@ LITDEF short ttt[4272] = { /* 3982 */ VXI_CALLS,VXT_LIT,0,VXT_XFER,SIZEOF(char *) * (short int)xf_ztrigger,VXT_END, /* 3988 */ VXI_PUSHL,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_zwritesvn, /* 3996 */ VXT_END, -/* 3997 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4005 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzwrite,VXT_END, -/* 4009 */ VXI_CALLS,VXT_LIT,0,VXT_XFER,SIZEOF(char *) * (short int)xf_igetdst,VXI_MOVL,VXT_REG,0x50, -/* 4017 */ VXT_ADDR,0,VXT_END, -/* 4020 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4028 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_indget1,VXT_END, -/* 4032 */ VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_glvnpop, -/* 4040 */ VXT_END, -/* 4041 */ VXI_PUSHL,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_glvnslot, -/* 4049 */ VXI_MOVL,VXT_REG,0x50,VXT_ADDR,0,VXT_END, -/* 4055 */ VXI_PUSHL,VXT_VAL,3,VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL, -/* 4063 */ 1,VXI_JSB,VXT_XFER,SIZEOF(char *) * (short int)xf_indsavglvn,VXT_END, -/* 4068 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_JSB,VXT_XFER, -/* 4076 */ SIZEOF(char *) * (short int)xf_indsavlvn,VXT_END, -/* 4078 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4086 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_rfrshlvn,VXI_MOVL,VXT_REG,0x50,VXT_ADDR,0, -/* 4094 */ VXT_END, -/* 4095 */ VXT_IREPAB,VXT_VAL,3,VXI_PUSHL,VXT_VAL,2,VXI_CALLS,VXT_VAL, -/* 4103 */ 1,VXT_XFER,SIZEOF(char *) * (short int)xf_savgvn,VXT_END, -/* 4107 */ VXT_IREPAB,VXT_VAL,2,VXI_CALLS,VXT_VAL,1,VXT_XFER,SIZEOF(char *) * (short int)xf_savlvn, -/* 4115 */ VXT_END, -/* 4116 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4124 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_shareslot,VXT_END, -/* 4128 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4136 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_stoglvn,VXT_END, -/* 4140 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4148 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_rfrshgvn,VXT_END, -/* 4152 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_PUSHAB,VXT_VAL, -/* 4160 */ 0,VXI_CALLS,VXT_LIT,3,VXT_XFER,SIZEOF(char *) * (short int)xf_indfnname2,VXT_END, -/* 4167 */ VXI_PUSHAB,VXT_VAL,1,VXI_PUSHAB,VXT_VAL,0,VXI_CALLS,VXT_LIT, -/* 4175 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_indget2,VXT_END, -/* 4179 */ VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_indmerge2, -/* 4187 */ VXT_END, -/* 4188 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,4,VXI_PUSHL,VXT_VAL, -/* 4196 */ 3,VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS, -/* 4204 */ VXT_LIT,5,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzpeek,VXT_END, -/* 4209 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, -/* 4217 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzsyslog,VXT_END, -/* 4221 */ 362,376,369,2473,2481,2477,2740,2752, -/* 4229 */ 2746,0,0,0,483,459,450,0, -/* 4237 */ 0,446,1982,2020,2001,2621,2636,2627, -/* 4245 */ 2597,2612,2603,2489,2500,2493,2579,2590, -/* 4253 */ 2583,2525,2536,2529,2543,2554,2547,2561, -/* 4261 */ 2572,2565,2507,2518,2511,1961,1975,1968, -/* 4269 */ 383,397,390}; +/* 3997 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_PUSHL,VXT_VAL, +/* 4005 */ 2,VXI_CALLS,VXT_LIT,3,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzwrite,VXT_END, +/* 4012 */ VXI_CALLS,VXT_LIT,0,VXT_XFER,SIZEOF(char *) * (short int)xf_igetdst,VXI_MOVL,VXT_REG,0x50, +/* 4020 */ VXT_ADDR,0,VXT_END, +/* 4023 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4031 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_indget1,VXT_END, +/* 4035 */ VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_glvnpop, +/* 4043 */ VXT_END, +/* 4044 */ VXI_PUSHL,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_glvnslot, +/* 4052 */ VXI_MOVL,VXT_REG,0x50,VXT_ADDR,0,VXT_END, +/* 4058 */ VXI_PUSHL,VXT_VAL,3,VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL, +/* 4066 */ 1,VXI_JSB,VXT_XFER,SIZEOF(char *) * (short int)xf_indsavglvn,VXT_END, +/* 4071 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_JSB,VXT_XFER, +/* 4079 */ SIZEOF(char *) * (short int)xf_indsavlvn,VXT_END, +/* 4081 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4089 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_rfrshlvn,VXI_MOVL,VXT_REG,0x50,VXT_ADDR,0, +/* 4097 */ VXT_END, +/* 4098 */ VXT_IREPAB,VXT_VAL,3,VXI_PUSHL,VXT_VAL,2,VXI_CALLS,VXT_VAL, +/* 4106 */ 1,VXT_XFER,SIZEOF(char *) * (short int)xf_savgvn,VXT_END, +/* 4110 */ VXT_IREPAB,VXT_VAL,2,VXI_CALLS,VXT_VAL,1,VXT_XFER,SIZEOF(char *) * (short int)xf_savlvn, +/* 4118 */ VXT_END, +/* 4119 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4127 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_shareslot,VXT_END, +/* 4131 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4139 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_stoglvn,VXT_END, +/* 4143 */ VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4151 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_rfrshgvn,VXT_END, +/* 4155 */ VXI_PUSHAB,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_PUSHAB,VXT_VAL, +/* 4163 */ 0,VXI_CALLS,VXT_LIT,3,VXT_XFER,SIZEOF(char *) * (short int)xf_indfnname2,VXT_END, +/* 4170 */ VXI_PUSHAB,VXT_VAL,1,VXI_PUSHAB,VXT_VAL,0,VXI_CALLS,VXT_LIT, +/* 4178 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_indget2,VXT_END, +/* 4182 */ VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT,1,VXT_XFER,SIZEOF(char *) * (short int)xf_indmerge2, +/* 4190 */ VXT_END, +/* 4191 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,4,VXI_PUSHL,VXT_VAL, +/* 4199 */ 3,VXI_PUSHL,VXT_VAL,2,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS, +/* 4207 */ VXT_LIT,5,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzpeek,VXT_END, +/* 4212 */ VXI_PUSHAB,VXT_VAL,0,VXI_PUSHAB,VXT_VAL,1,VXI_CALLS,VXT_LIT, +/* 4220 */ 2,VXT_XFER,SIZEOF(char *) * (short int)xf_fnzsyslog,VXT_END, +/* 4224 */ 362,376,369,2473,2481,2477,2740,2752, +/* 4232 */ 2746,0,0,0,483,459,450,0, +/* 4240 */ 0,446,1982,2020,2001,2621,2636,2627, +/* 4248 */ 2597,2612,2603,2489,2500,2493,2579,2590, +/* 4256 */ 2583,2525,2536,2529,2543,2554,2547,2561, +/* 4264 */ 2572,2565,2507,2518,2511,1961,1975,1968, +/* 4272 */ 383,397,390}; diff --git a/sr_i386/zbreaksp.h b/sr_i386/zbreaksp.h old mode 100644 new mode 100755 diff --git a/sr_linux/arch.gtc b/sr_linux/arch.gtc old mode 100644 new mode 100755 diff --git a/sr_linux/caller_id.c b/sr_linux/caller_id.c index e418fca4..2c81c544 100644 --- a/sr_linux/caller_id.c +++ b/sr_linux/caller_id.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2008, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2008-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -26,15 +27,17 @@ #include "mdef.h" +#include "gtm_stdlib.h" +#include "gtm_signal.h" +#ifndef __CYGWIN__ #include -#include +#endif -#include "gtm_stdlib.h" #include "gt_timer.h" #include "caller_id.h" #define MAX_TRACE_DEPTH 3 -/*We need the callers caller of caller_id */ +/* We need the callers caller of caller_id */ #define RETURN_ADDRESS_DEPTH 2 GBLREF boolean_t blocksig_initialized; @@ -46,8 +49,8 @@ static boolean_t caller_id_reent = FALSE; /* If ever true, our helper gets a lob caddr_t caller_id(void) { - void *trace[MAX_TRACE_DEPTH]; - int trace_size; + void *trace[MAX_TRACE_DEPTH]; + int rc, trace_size; sigset_t savemask; /* We cannot let this routine nest itself due to the impolite things that @@ -69,14 +72,19 @@ caddr_t caller_id(void) * that similar code in other places (e.g. dollarh.c) has. */ if (blocksig_initialized) - sigprocmask(SIG_BLOCK, &block_sigsent, &savemask); + SIGPROCMASK(SIG_BLOCK, &block_sigsent, &savemask, rc); caller_id_reent = TRUE; + #ifndef __CYGWIN__ trace_size = backtrace(trace, MAX_TRACE_DEPTH); + #else + /* Cygwin does not support backtrace() */ + trace_size = 0; + #endif caller_id_reent = FALSE; if (blocksig_initialized) - sigprocmask(SIG_SETMASK, &savemask, NULL); + SIGPROCMASK(SIG_SETMASK, &savemask, NULL, rc); /* backtrace will return call stack with address.*/ - if (trace_size >= RETURN_ADDRESS_DEPTH) + if (RETURN_ADDRESS_DEPTH <= trace_size) return (caddr_t)trace[RETURN_ADDRESS_DEPTH]; else return NULL; diff --git a/sr_linux/gen_threadgbl_asm.cmake b/sr_linux/gen_threadgbl_asm.cmake new file mode 100644 index 00000000..181fadb3 --- /dev/null +++ b/sr_linux/gen_threadgbl_asm.cmake @@ -0,0 +1,8 @@ + +file(STRINGS ${gtmthreadgblasmaccess} asmaccesstypes REGEX "^[A-Za-z_]+") +foreach(asmaccess ${asmaccesstypes}) + string(REGEX REPLACE "^([A-Za-z_]+)[^A-Za-z_].*$" "ggo_\\1" asm "${asmaccess}") + file(STRINGS ${gtmthreadgblasmhdr} asmdef REGEX ${asm}) + string(REGEX REPLACE "# +define +([A-Za-z_]+) +([0-9]+)" "\\1 = \\2" asmsign "${asmdef}") + file(WRITE ${gtmthreadgblasmfile} "${asmsign}\n") +endforeach() diff --git a/sr_linux/genexport.csh b/sr_linux/genexport.csh old mode 100644 new mode 100755 diff --git a/sr_linux/gtm_env_sp.csh b/sr_linux/gtm_env_sp.csh old mode 100644 new mode 100755 index 30e1003c..07cc0cd7 --- a/sr_linux/gtm_env_sp.csh +++ b/sr_linux/gtm_env_sp.csh @@ -1,6 +1,6 @@ ################################################################# # # -# Copyright (c) 2001-2015 Fidelity National Information # +# Copyright (c) 2001-2016 Fidelity National Information # # Services, Inc. and/or its subsidiaries. All rights reserved. # # # # This source code contains the intellectual property # @@ -167,15 +167,20 @@ if ( $?gtm_version_change == "1" ) then setenv gt_cc_options_common "$gt_cc_options_common -DNeedInAddrPort" endif if ( "x86_64" == $mach_type ) then - # see if the compiler supports unused-result warnings - # Note: Compilers that dont support --help=warnings will not output unused-result. - # Currently, only compilers that support --help=warnings need to have unused-result - # turned off. Trying to turn it off on compilers that dont support it causes errors. - cc --help=warnings | & grep unused-result >/dev/null - if (! $status ) then - # if it does, turn them off - setenv gt_cc_options_common "$gt_cc_options_common -Wno-unused-result" + # Add uninitialized variable checking on 64bit platforms (GCC on our 32bits platforms don't support it + # correctly). Do not enable on SUSE or 4.4.7 on 64-bit because both platforms either cannot disable + # maybe-unitialized or require -O to be defined to disable maybe-unitialized. + cc --version |& grep -q -E '4.4.7|4.7.2|4.6.3|SUSE' + if (0 != $status) then + setenv gt_cc_options_common "$gt_cc_options_common -Wuninitialized " endif + # Disable unused-result or maybe-uninitialized warnings if supported by the compiler as we don't care about + # them. Blindly adding disable flags causes errors. Note: Compilers that don't support --help=warnings will + # not output anything useful. + + set disableflags = `cc --help=warnings | & awk '{if ($1~/maybe-uninitialized/) \ + print "-Wno-maybe-uninitialized "; if ($1~/unused-result/) print "-Wno-unused-result ";}'` + setenv gt_cc_options_common "$gt_cc_options_common $disableflags" endif endif diff --git a/sr_linux/gtm_getenv.c b/sr_linux/gtm_getenv.c index 689b0579..a2a93cbf 100644 --- a/sr_linux/gtm_getenv.c +++ b/sr_linux/gtm_getenv.c @@ -16,6 +16,7 @@ * only sees the Windows variables. * */ +#include "gtm_common_defs.h" #include "gtm_unistd.h" #include "gtm_stdlib.h" #include "gtm_string.h" diff --git a/sr_linux/gtm_threadgbl_deftypes_asm.si b/sr_linux/gtm_threadgbl_deftypes_asm.si new file mode 100644 index 00000000..4d672083 --- /dev/null +++ b/sr_linux/gtm_threadgbl_deftypes_asm.si @@ -0,0 +1,16 @@ +################################################################# +# # +# Copyright (c) 2015 Fidelity National Information # +# Services, Inc. and/or its subsidiaries. All rights reserved. # +# # +# This source code contains the intellectual property # +# of its copyright holder(s), and is made available # +# under a license. If you do not know the terms of # +# the license, please stop and do not read further. # +# # +################################################################# + .ifdef DEBUG + .include "gtm_threadgbl_deftypes_asm_dbg.si" + .else + .include "gtm_threadgbl_deftypes_asm_pro.si" + .endif diff --git a/sr_linux/inst_flush.c b/sr_linux/inst_flush.c old mode 100644 new mode 100755 diff --git a/sr_linux/platform.cmake b/sr_linux/platform.cmake index 60538a5f..e989ae06 100644 --- a/sr_linux/platform.cmake +++ b/sr_linux/platform.cmake @@ -9,6 +9,7 @@ # # ################################################################# +set(srdir "sr_linux") if("${CMAKE_SIZEOF_VOID_P}" EQUAL 4) set(arch "x86") set(bits 32) @@ -16,6 +17,14 @@ if("${CMAKE_SIZEOF_VOID_P}" EQUAL 4) # Set arch to i586 in order to compile for Galileo set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=i586") set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -Wa,-march=i586") +# (Sam): I am not really sure if we need this at all. The Linker has +# no issues finding the symbols. If we add _, it now has trouble. +# For Cygwin, we need to change the assembly symbols to start with _. +# See http://www.drpaulcarter.com/pcasm/faq.php, esp. the examples in the zip files. +# UPDATE: Now I figure out that this is needed for 32 bit CYGWIN ONLY. 64 bit keeps the same symbols! + if(CYGWIN) + list(APPEND CMAKE_ASM_COMPILE_OBJECT "objcopy --prefix-symbols=_ ") + endif() else() set(arch "x86_64") set(bits 64) @@ -34,11 +43,17 @@ endif() set(CMAKE_INCLUDE_FLAG_ASM "-Wa,-I") # gcc -I does not make it to "as" # Compiler -set(CMAKE_C_FLAGS - "${CMAKE_C_FLAGS} -ansi -fsigned-char -fPIC -Wmissing-prototypes -Wreturn-type -Wpointer-sign -fno-omit-frame-pointer") - -set(CMAKE_C_FLAGS_RELEASE - "${CMAKE_C_FLAGS_RELEASE} -fno-defer-pop -fno-strict-aliasing -ffloat-store") +if(${CYGWIN}) + # (VEN/SMH): Looks like we need to add the defsym to tell the assembler to define 'cygwin' + set(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -Wa,--defsym,cygwin=1") +else() + # Cygwin must have -ansi undefined (it adds __STRICT_ANSI__ which undefines some important prototypes like fdopen()) + # See http://stackoverflow.com/questions/21689124/mkstemp-and-fdopen-in-cygwin-1-7-28 + # Cygwin warns if you add -fPIC that the compiled code is already position + # independent. So don't add -fPIC + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ansi -fPIC ") +endif() +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsigned-char -Wmissing-prototypes -Wreturn-type -Wpointer-sign -fno-omit-frame-pointer") add_definitions( #-DNOLIBGTMSHR #gt_cc_option_DBTABLD=-DNOLIBGTMSHR diff --git a/sr_linux/release_name.h b/sr_linux/release_name.h index 6977231e..672c74d7 100644 --- a/sr_linux/release_name.h +++ b/sr_linux/release_name.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2007 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -10,15 +11,15 @@ ****************************************************************/ #ifdef __CYGWIN__ -#define GTM_RELEASE_NAME "GT.M V6.2-002A CYGWIN x86" +#define GTM_RELEASE_NAME "GT.M V6.3-000 CYGWIN x86" #elif defined(__ia64) -#define GTM_RELEASE_NAME "GT.M V6.2-002A Linux IA64" +#define GTM_RELEASE_NAME "GT.M V6.3-000 Linux IA64" #elif defined(__x86_64__) -#define GTM_RELEASE_NAME "GT.M V6.2-002A Linux x86_64" +#define GTM_RELEASE_NAME "GT.M V6.3-000 Linux x86_64" #elif defined(__s390__) -#define GTM_RELEASE_NAME "GT.M V6.2-002A Linux S390X" +#define GTM_RELEASE_NAME "GT.M V6.3-000 Linux S390X" #else -#define GTM_RELEASE_NAME "GT.M V6.2-002A Linux x86" +#define GTM_RELEASE_NAME "GT.M V6.3-000 Linux x86" #endif #define GTM_PRODUCT "GT.M" -#define GTM_VERSION "V6.2" +#define GTM_VERSION "V6.3" diff --git a/sr_port/actuallist.c b/sr_port/actuallist.c old mode 100644 new mode 100755 diff --git a/sr_port/add_atom.c b/sr_port/add_atom.c old mode 100644 new mode 100755 diff --git a/sr_port/add_inter.h b/sr_port/add_inter.h old mode 100644 new mode 100755 diff --git a/sr_port/advancewindow.c b/sr_port/advancewindow.c old mode 100644 new mode 100755 index 0582b1af..bbc39e71 --- a/sr_port/advancewindow.c +++ b/sr_port/advancewindow.c @@ -28,7 +28,6 @@ GBLREF unsigned char *source_buffer; GBLREF int source_column; -GBLREF char *lexical_ptr; GBLREF spdesc stringpool; GBLREF boolean_t gtm_utf8_mode; GBLREF boolean_t run_time; @@ -63,14 +62,14 @@ void advancewindow(void) SETUP_THREADGBL_ACCESS; TREF(last_source_column) = source_column; - source_column = (unsigned char *)lexical_ptr - source_buffer + 1; + source_column = (unsigned char *)TREF(lexical_ptr) - source_buffer + 1; TREF(window_token) = TREF(director_token); TREF(window_mval) = TREF(director_mval); (TREF(director_mval)).mvtype = 0; /* keeps mval from being GC'd since it is not useful until re-used */ tmp = (TREF(window_ident)).addr; /* More efficient to swap pointers between window_ident.addr & director_ident.addr */ TREF(window_ident) = TREF(director_ident); /* than to copy text from director_ident to window_ident */ (TREF(director_ident)).addr = tmp; - x = *lexical_ptr; + x = *TREF(lexical_ptr); switch (y = ctypetab[x]) { case TK_EOL: @@ -78,7 +77,7 @@ void advancewindow(void) return; /* if next character is terminator, avoid incrementing past it */ case TK_QUOTE: ENSURE_STP_FREE_SPACE(TREF(max_advancewindow_line)); - cp1 = (unsigned char *)lexical_ptr + 1; + cp1 = (unsigned char *)TREF(lexical_ptr) + 1; cp2 = cp3 = stringpool.free; for (;;) { @@ -136,7 +135,7 @@ void advancewindow(void) # endif assert(cp2 <= stringpool.top); } - lexical_ptr = (char *)cp1; + TREF(lexical_ptr) = (char *)cp1; TREF(director_token) = TK_STRLIT; (TREF(director_mval)).mvtype = MV_STR; (TREF(director_mval)).str.addr = (char *)cp3; @@ -149,7 +148,7 @@ void advancewindow(void) { /* UTF8 mode and not compiling an indirect gets an optimization to set the * (true) length of the string into the mval */ - charlen = utf8_len_stx(&(TREF(director_mval)).str); + charlen = utf8_len_dec(&(TREF(director_mval)).str); if (0 > charlen) /* got a BADCHAR error */ TREF(director_token) = TK_ERROR; else @@ -169,7 +168,7 @@ void advancewindow(void) { if (cp2 < cp3) *cp2++ = x; - y = ctypetab[x = *++lexical_ptr]; /* note assignment */ + y = ctypetab[x = *++(TREF(lexical_ptr))]; /* note assignment */ if ((TK_UPPER != y) && (TK_DIGIT != y) && (TK_LOWER != y)) break; } @@ -177,14 +176,14 @@ void advancewindow(void) TREF(director_token) = TK_IDENT; return; case TK_PERIOD: - if (ctypetab[x = *(lexical_ptr + 1)] != TK_DIGIT) /* note assignment */ + if (ctypetab[x = *(TREF(lexical_ptr) + 1)] != TK_DIGIT) /* note assignment */ break; case TK_DIGIT: - (TREF(director_mval)).str.addr = lexical_ptr; + (TREF(director_mval)).str.addr = TREF(lexical_ptr); (TREF(director_mval)).str.len = TREF(max_advancewindow_line); (TREF(director_mval)).mvtype = MV_STR; CLEAR_MVAL_BITS(TADR(director_mval)); - lexical_ptr = (char *)s2n(&(TREF(director_mval))); + TREF(lexical_ptr) = (char *)s2n(&(TREF(director_mval))); if (!((TREF(director_mval)).mvtype &= MV_NUM_MASK)) { stx_error(ERR_NUMOFLOW); @@ -198,28 +197,28 @@ void advancewindow(void) } else { TREF(director_token) = TK_INTLIT ; - (TREF(director_mval)).str.len = INTCAST(lexical_ptr - (TREF(director_mval)).str.addr); + (TREF(director_mval)).str.len = INTCAST(TREF(lexical_ptr) - (TREF(director_mval)).str.addr); ENSURE_STP_FREE_SPACE((TREF(director_mval)).str.len); memcpy(stringpool.free, (TREF(director_mval)).str.addr, (TREF(director_mval)).str.len); assert (stringpool.free <= stringpool.top) ; } return; case TK_APOSTROPHE: - if (32 <= (x = *++lexical_ptr)) /* note assignment */ + if (32 <= (x = *++(TREF(lexical_ptr)))) /* note assignment */ { x -= 32; if (x < ARRAYSIZE(apos_ok)) { if (y = apos_ok[x]) { - if (DEL < (x = *++lexical_ptr)) /* note assignment */ + if (DEL < (x = *++(TREF(lexical_ptr)))) /* note assignment */ { TREF(director_token) = TK_ERROR; return; } if (TK_RBRACKET == ctypetab[x]) { - lexical_ptr++; + (TREF(lexical_ptr))++; y = TK_NSORTS_AFTER; } TREF(director_token) = y; @@ -231,57 +230,57 @@ void advancewindow(void) return; case TK_GREATER: case TK_LESS: - if (TK_EQUAL == ctypetab[*(lexical_ptr + 1)]) + if (TK_EQUAL == ctypetab[*(TREF(lexical_ptr) + 1)]) { - ++lexical_ptr; + ++(TREF(lexical_ptr)); y = ((TK_LESS == y) ? TK_NGREATER : TK_NLESS); } break; case TK_SEMICOLON: - while (*++lexical_ptr) + while (*++(TREF(lexical_ptr))) ; - assert(TK_EOL == ctypetab[*lexical_ptr]); + assert(TK_EOL == ctypetab[*TREF(lexical_ptr)]); TREF(director_token) = TK_EOL; return; /* if next character is terminator, avoid incrementing past it */ case TK_ASTERISK: - if (DEL < (x = *(lexical_ptr + 1))) /* note assignment */ + if (DEL < (x = *(TREF(lexical_ptr) + 1))) /* note assignment */ { TREF(director_token) = TK_ERROR; return; } if (TK_ASTERISK == ctypetab[x]) { - lexical_ptr++; + (TREF(lexical_ptr))++; y = TK_EXPONENT; } break; case TK_RBRACKET: - if ((x = *(lexical_ptr + 1)) > DEL) /* note assignment */ + if ((x = *(TREF(lexical_ptr) + 1)) > DEL) /* note assignment */ { TREF(director_token) = TK_ERROR; return; } if (TK_RBRACKET == ctypetab[x]) { - lexical_ptr++; + (TREF(lexical_ptr))++; y = TK_SORTS_AFTER; } break; case TK_ATSIGN: - if (DEL < (x = *(lexical_ptr + 1))) /* note assignment */ + if (DEL < (x = *(TREF(lexical_ptr) + 1))) /* note assignment */ { TREF(director_token) = TK_ERROR; return; } if (TK_HASH == ctypetab[x]) { - lexical_ptr++; + (TREF(lexical_ptr))++; y = TK_ATHASH; } default: ; } - lexical_ptr++; + (TREF(lexical_ptr))++; TREF(director_token) = y; return; } @@ -298,8 +297,8 @@ void advancewindow(void) * All other uses still prohibit '#' from being in an MNAME. Routines that need to allow # in a name can call this routine to * recombine the existing token and the look-ahead (director) token such that '#' is considered part of an mident. * - * Update: Like '#', we need to allow '/' as well to allow for an overriding region name to be specified (where the - * trigger needs to be searched. So handle that as well in this same function. + * Update: Like '#', we need to allow '/' as well to allow for an overriding region name of up to 31 characters to be + * specified (where the trigger needs to be searched. So handle that as well in this same function. */ void advwindw_hash_in_mname_allowed(void) { @@ -320,9 +319,9 @@ void advwindw_hash_in_mname_allowed(void) cp2--; *cp2++ = '#'; /* We are only called if director token is '#' so put that char in buffer now */ /* Start processing with the token following the '#'. Allow '#' and/or '/' in addition to usual stuff. */ - for (x = *lexical_ptr, ch = ctypetab[x]; + for (x = *TREF(lexical_ptr), ch = ctypetab[x]; ((TK_UPPER == ch) || (TK_DIGIT == ch) || (TK_LOWER == ch) || (TK_HASH == ch) || (TK_SLASH == ch)); - x = *++lexical_ptr, ch = ctypetab[x]) + x = *++(TREF(lexical_ptr)), ch = ctypetab[x]) { if (cp2 < cp3) *cp2++ = x; diff --git a/sr_port/advancewindow.h b/sr_port/advancewindow.h old mode 100644 new mode 100755 diff --git a/sr_port/alloc_reg.c b/sr_port/alloc_reg.c old mode 100644 new mode 100755 index d25d2b41..232376dc --- a/sr_port/alloc_reg.c +++ b/sr_port/alloc_reg.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -80,7 +81,7 @@ void alloc_reg(void) opx = x->exorder.fl->opcode; if ((OC_LINESTART == opx) || (OC_LINEFETCH == opx)) { - opc = x->opcode = OC_NOOP; + x->opcode = OC_NOOP; COMPDBG(PRINTF(" ** Converting triple to NOOP (rsn 1) **\n");); continue; /* continue, because 'normal' NOOP continues from this switch */ } @@ -92,7 +93,7 @@ void alloc_reg(void) if (!(cmd_qlf.qlf & CQ_LINE_ENTRY) && (OC_ILIT == opx) && (NULL != x->exorder.fl->exorder.fl) && (OC_LINEFETCH == x->exorder.fl->exorder.fl->opcode)) { - opc = x->opcode = OC_NOOP; + x->opcode = OC_NOOP; COMPDBG(PRINTF(" ** Converting triple to NOOP (rsn 2) **\n");); continue; /* continue, because 'normal' NOOP continues from this switch */ } diff --git a/sr_port/alloc_reg.h b/sr_port/alloc_reg.h old mode 100644 new mode 100755 diff --git a/sr_port/anticipatory_freeze.h b/sr_port/anticipatory_freeze.h index 97e545d9..8e961fde 100644 --- a/sr_port/anticipatory_freeze.h +++ b/sr_port/anticipatory_freeze.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2012, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2012-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -39,7 +40,7 @@ GBLREF set_anticipatory_freeze_t set_anticipatory_freeze_fnptr; GBLREF boolean_t pool_init; GBLREF boolean_t mupip_jnl_recover; #ifdef DEBUG -GBLREF uint4 lseekwrite_target; +GBLREF uint4 lseekwrite_target; #endif error_def(ERR_DSKNOSPCAVAIL); @@ -116,8 +117,8 @@ error_def(ERR_TEXT); #define INSTANCE_FREEZE_HONORED(CSA) (DBG_ASSERT(NULL != CSA) \ ((NULL != jnlpool.jnlpool_ctl) \ && ((REPL_ALLOWED(((sgmnt_addrs *)CSA)->hdr)) \ - || mupip_jnl_recover /* recover or rollback */ \ - || ((sgmnt_addrs *)CSA)->nl->onln_rlbk_pid ))) + || mupip_jnl_recover /* recover or rollback */ \ + || ((sgmnt_addrs *)CSA)->nl->onln_rlbk_pid))) #define INST_FREEZE_ON_ERROR_ENABLED(CSA) (INSTANCE_FREEZE_HONORED(CSA) \ && CUSTOM_ERRORS_LOADED \ && (((sgmnt_addrs *)CSA)->hdr->freeze_on_fail)) @@ -155,11 +156,11 @@ error_def(ERR_TEXT); * Note: Do not use "hiber_start" as that uses timers and if we are already in a timer handler now, nested timers * wont work. Since SHORT_SLEEP allows a max of 1000, we use 500 (half a second) for now. */ +/* #GTM_THREAD_SAFE : The below macro (WAIT_FOR_REPL_INST_UNFREEZE) is thread-safe */ #define WAIT_FOR_REPL_INST_UNFREEZE(CSA) \ { \ gd_region *reg; \ - char *time_ptr, time_str[CTIME_BEFORE_NL + 2]; /* for GET_CUR_TIME macro */ \ - now_t now; \ + char time_str[CTIME_BEFORE_NL + 2]; /* for GET_CUR_TIME macro */ \ DCL_THREADGBL_ACCESS; \ \ SETUP_THREADGBL_ACCESS; \ @@ -169,15 +170,15 @@ error_def(ERR_TEXT); reg = ((sgmnt_addrs *)CSA)->region; \ if (!IS_GTM_IMAGE) \ { \ - GET_CUR_TIME; \ - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_MUINSTFROZEN, 5, CTIME_BEFORE_NL, time_ptr, \ + GET_CUR_TIME(time_str); \ + gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_MUINSTFROZEN, 5, CTIME_BEFORE_NL, &time_str[0], \ jnlpool.repl_inst_filehdr->inst_info.this_instname, DB_LEN_STR(reg)); \ } \ WAIT_FOR_REPL_INST_UNFREEZE_NOCSA; \ if (!IS_GTM_IMAGE) \ { \ - GET_CUR_TIME; \ - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_MUINSTUNFROZEN, 5, CTIME_BEFORE_NL, time_ptr, \ + GET_CUR_TIME(time_str); \ + gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_MUINSTUNFROZEN, 5, CTIME_BEFORE_NL, &time_str[0], \ jnlpool.repl_inst_filehdr->inst_info.this_instname, DB_LEN_STR(reg)); \ } \ } \ @@ -186,6 +187,7 @@ error_def(ERR_TEXT); * to be lifted off but is not sure if the process has access to the journal pool yet. * If it does not, then it assumes the instance is not frozen. */ +/* #GTM_THREAD_SAFE : The below macro (WAIT_FOR_REPL_INST_UNFREEZE_SAFE) is thread-safe */ #define WAIT_FOR_REPL_INST_UNFREEZE_SAFE(CSA) \ { \ GBLREF jnlpool_addrs jnlpool; \ @@ -196,6 +198,7 @@ error_def(ERR_TEXT); } /* Below are similar macros like the above but with no CSA to specifically check for */ +/* #GTM_THREAD_SAFE : The below macro (WAIT_FOR_REPL_INST_UNFREEZE_NOCSA) is thread-safe */ #define WAIT_FOR_REPL_INST_UNFREEZE_NOCSA \ { \ GBLREF jnlpool_addrs jnlpool; \ @@ -211,7 +214,7 @@ error_def(ERR_TEXT); { \ send_msg_csa(CSA_ARG(NULL) VARLSTCNT(1) forced_exit_err); \ gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) forced_exit_err); \ - exit(-exi_condition); \ + EXIT(-exi_condition); \ } \ SHORT_SLEEP(SLEEP_INSTFREEZEWAIT); \ DEBUG_ONLY(CLEAR_FAKE_ENOSPC_IF_MASTER_DEAD); \ @@ -270,30 +273,32 @@ error_def(ERR_TEXT); #define LSEEKWRITE_IS_TO_JNL 2 #ifdef DEBUG -#define FAKE_ENOSPC(CSA, FAKE_WHICH_ENOSPC, LSEEKWRITE_TARGET, LCL_STATUS) \ -{ \ - GBLREF jnlpool_addrs jnlpool; \ - if (NULL != CSA) \ - { \ - if (WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC)) \ - { /* This test case is only used by mupip */ \ - gtm_wbox_input_test_case_count++; \ - if ((0 != gtm_white_box_test_case_count) \ - && (gtm_white_box_test_case_count <= gtm_wbox_input_test_case_count)) \ - { \ - LCL_STATUS = ENOSPC; \ - if (gtm_white_box_test_case_count == gtm_wbox_input_test_case_count) \ - send_msg_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_TEXT, 2, \ - LEN_AND_LIT("Turning on fake ENOSPC for exit status test")); \ - } \ - } else if (!IS_DSE_IMAGE /*DSE does not freeze so let it work as normal */ \ - && ((NULL != jnlpool.jnlpool_ctl) && (NULL != ((sgmnt_addrs *)CSA)->nl)) \ - && ((sgmnt_addrs *)CSA)->nl->FAKE_WHICH_ENOSPC) \ - { \ - LCL_STATUS = ENOSPC; \ - lseekwrite_target = LSEEKWRITE_TARGET; \ - } \ - } \ +#define FAKE_ENOSPC(CSA, FAKE_WHICH_ENOSPC, LSEEKWRITE_TARGET, LCL_STATUS) \ +{ \ + GBLREF jnlpool_addrs jnlpool; \ + GBLREF boolean_t multi_thread_in_use; \ + \ + if ((NULL != CSA) && !multi_thread_in_use) /* Do not manipulate fake-enospc (global variable) while in threaded code */ \ + { \ + if (WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC)) \ + { /* This test case is only used by mupip */ \ + gtm_wbox_input_test_case_count++; \ + if ((0 != gtm_white_box_test_case_count) \ + && (gtm_white_box_test_case_count <= gtm_wbox_input_test_case_count)) \ + { \ + LCL_STATUS = ENOSPC; \ + if (gtm_white_box_test_case_count == gtm_wbox_input_test_case_count) \ + send_msg_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_TEXT, 2, \ + LEN_AND_LIT("Turning on fake ENOSPC for exit status test")); \ + } \ + } else if (!IS_DSE_IMAGE /*DSE does not freeze so let it work as normal */ \ + && ((NULL != jnlpool.jnlpool_ctl) && (NULL != ((sgmnt_addrs *)CSA)->nl)) \ + && ((sgmnt_addrs *)CSA)->nl->FAKE_WHICH_ENOSPC) \ + { \ + LCL_STATUS = ENOSPC; \ + lseekwrite_target = LSEEKWRITE_TARGET; \ + } \ + } \ } void clear_fake_enospc_if_master_dead(void); @@ -301,16 +306,17 @@ void clear_fake_enospc_if_master_dead(void); #define CLEAR_FAKE_ENOSPC_IF_MASTER_DEAD clear_fake_enospc_if_master_dead() #else -#define FAKE_ENOSPC(CSA, FAKE_ENOSPC, LSEEKWRITE_TARGET, LCL_STATUS) {} +#define FAKE_ENOSPC(CSA, FAKE_ENOSPC, LSEEKWRITE_TARGET, LCL_STATUS) #endif - +/* #GTM_THREAD_SAFE : The below macro (DB_LSEEKWRITE) is thread-safe */ #define DB_LSEEKWRITE(csa, db_fn, fd, new_eof, buff, size, status) \ DO_LSEEKWRITE(csa, db_fn, fd, new_eof, buff, size, status, fake_db_enospc, LSEEKWRITE_IS_TO_DB) #define JNL_LSEEKWRITE(csa, jnl_fn, fd, new_eof, buff, size, status) \ DO_LSEEKWRITE(csa, jnl_fn, fd, new_eof, buff, size, status, fake_jnl_enospc, LSEEKWRITE_IS_TO_JNL) +/* #GTM_THREAD_SAFE : The below macro (DO_LSEEKWRITE) is thread-safe */ #define DO_LSEEKWRITE(csa, fnptr, fd, new_eof, buff, size, status, FAKE_WHICH_ENOSPC, LSEEKWRITE_TARGET) \ { \ int lcl_status; \ diff --git a/sr_port/arit.h b/sr_port/arit.h old mode 100644 new mode 100755 diff --git a/sr_port/asc2i.c b/sr_port/asc2i.c old mode 100644 new mode 100755 diff --git a/sr_port/asc_hex2i.c b/sr_port/asc_hex2i.c old mode 100644 new mode 100755 diff --git a/sr_port/aswp.h b/sr_port/aswp.h old mode 100644 new mode 100755 diff --git a/sr_port/azl_geturxlab.c b/sr_port/azl_geturxlab.c old mode 100644 new mode 100755 diff --git a/sr_port/azl_geturxrtn.c b/sr_port/azl_geturxrtn.c old mode 100644 new mode 100755 diff --git a/sr_port/backup_block.c b/sr_port/backup_block.c old mode 100644 new mode 100755 index d838f99c..62f8dfa9 --- a/sr_port/backup_block.c +++ b/sr_port/backup_block.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2010 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -25,7 +26,7 @@ #include "memcoherency.h" #include "mupipbckup.h" -GBLREF uint4 process_id; +GBLREF uint4 process_id; boolean_t backup_block(sgmnt_addrs *csa, block_id blk, cache_rec_ptr_t backup_cr, sm_uc_ptr_t backup_blk_p) { @@ -33,10 +34,15 @@ boolean_t backup_block(sgmnt_addrs *csa, block_id blk, cache_rec_ptr_t backup_cr int4 required; shmpool_buff_hdr_ptr_t sbufh_p; shmpool_blk_hdr_ptr_t sblkh_p; - boolean_t ret = TRUE, is_bg; + boolean_t is_bg; sgmnt_data_ptr_t csd; sm_uc_ptr_t bkp_src_blk; - + trans_num bkp_tn; +# ifdef DEBUG + char *backup_encrypt_hash_ptr, *db_encrypt_hash_ptr; + boolean_t backup_uses_new_key, db_uses_new_key, backup_was_encrypted, db_was_encrypted; + sgmnt_data_ptr_t backup_csd; +# endif csd = csa->hdr; is_bg = (dba_bg == csd->acc_meth); @@ -69,24 +75,54 @@ boolean_t backup_block(sgmnt_addrs *csa, block_id blk, cache_rec_ptr_t backup_cr } else /* For MM version, no dynamic conversions take place so just record block as we know it is */ sblkh_p->use.bkup.ondsk_blkver = csd->desired_db_format; bkp_src_blk = backup_blk_p; -# ifdef GTM_CRYPT - /* If the database is encrypted, the old_block will be in the encrypted twin buffer. Fetch it from the encrypted - * twin counter part and write that to the backup buffer instead. + /* Adjust bsiz to be within database block size range. Asserts above will ensure this IS the case for DBG. */ + if (bsiz < SIZEOF(blk_hdr)) + bsiz = SIZEOF(blk_hdr); + else if (bsiz > sbufh_p->blk_size) + bsiz = sbufh_p->blk_size; + /* If the data in the backup needs to be encrypted, fetch it from the encrypted twin buffer. It should be safe to look + * directly at the file header for encryption settings because a concurrent MUPIP REORG -ENCRYPT cannot update the + * encryption cycle until phase 2 of the commit is complete. Even though the encryption settings in the file header + * might be different from those in the backup file header, as far as the current block is concerned, it should be + * encrypted with the same key in both file headers (that is, it is not possible that the the encryption cycle has changed + * multiple times since the backup has started and that is because the first reorg encrypt that changed the cycle would + * have to reencrypt every block in the database and would have to invoke backup_block for each block so the cycle + * difference could be at most only one and not more). So, no need to reencrypt. Assert accordingly. */ - if (csd->is_encrypted) + bkp_tn = ((blk_hdr *)bkp_src_blk)->tn; + if (NEEDS_ANY_KEY(csd, bkp_tn)) { +# ifdef DEBUG DBG_ENSURE_PTR_IS_VALID_GLOBUFF(csa, csd, backup_blk_p); + backup_csd = &sbufh_p->shadow_file_header; + backup_uses_new_key = NEEDS_NEW_KEY(backup_csd, bkp_tn); + db_uses_new_key = NEEDS_NEW_KEY(csd, bkp_tn); + backup_was_encrypted = IS_ENCRYPTED(backup_csd->is_encrypted); + db_was_encrypted = IS_ENCRYPTED(csd->is_encrypted); + if (backup_uses_new_key) + backup_encrypt_hash_ptr = backup_csd->encryption_hash2; + else if (backup_was_encrypted) + backup_encrypt_hash_ptr = backup_csd->encryption_hash; + else + assert(FALSE); /* If db was unencrypted and unencryptable at start of backup, we should never be here */ + if (db_uses_new_key) + db_encrypt_hash_ptr = csd->encryption_hash2; + else if (db_was_encrypted) + db_encrypt_hash_ptr = csd->encryption_hash; + else + assert(FALSE); + assert(memcmp(db_encrypt_hash_ptr, EMPTY_GTMCRYPT_HASH, GTMCRYPT_HASH_LEN)); + /* The below assert implies we can safely copy the encrypted global buffer to the backup file */ + assert(!memcmp(backup_encrypt_hash_ptr, db_encrypt_hash_ptr, GTMCRYPT_HASH_LEN)); +# endif bkp_src_blk = GDS_ANY_ENCRYPTGLOBUF(backup_blk_p, csa); DBG_ENSURE_PTR_IS_VALID_ENCTWINGLOBUFF(csa, csd, bkp_src_blk); + /* Copy block information to data portion of shmpool block just following header. No reencryption needed. */ + memcpy((sblkh_p + 1), bkp_src_blk, bsiz); + } else + { /* Copy block information to data portion of shmpool block just following header. */ + memcpy((sblkh_p + 1), bkp_src_blk, bsiz); } -# endif - /* Adjust bsiz to be within database block size range. Asserts above will ensure this IS the case for DBG. */ - if (bsiz < SIZEOF(blk_hdr)) - bsiz = SIZEOF(blk_hdr); - else if (bsiz > sbufh_p->blk_size) - bsiz = sbufh_p->blk_size; - /* Copy block information to data portion of shmpool block just following header */ - memcpy((sblkh_p + 1), bkp_src_blk, bsiz); /* Need a write coherency fence here as we want to make sure the above info is stored and * reflected to other processors before we mark the block valid. */ diff --git a/sr_port/bg_update.h b/sr_port/bg_update.h old mode 100644 new mode 100755 diff --git a/sr_port/bit_clear.c b/sr_port/bit_clear.c old mode 100644 new mode 100755 diff --git a/sr_port/bit_clear.h b/sr_port/bit_clear.h old mode 100644 new mode 100755 diff --git a/sr_port/bit_set.c b/sr_port/bit_set.c old mode 100644 new mode 100755 diff --git a/sr_port/bit_set.h b/sr_port/bit_set.h old mode 100644 new mode 100755 diff --git a/sr_port/bm_find_blk.c b/sr_port/bm_find_blk.c old mode 100644 new mode 100755 diff --git a/sr_port/bm_getfree.c b/sr_port/bm_getfree.c old mode 100644 new mode 100755 diff --git a/sr_port/bm_getfree.h b/sr_port/bm_getfree.h old mode 100644 new mode 100755 diff --git a/sr_port/bm_setmap.c b/sr_port/bm_setmap.c old mode 100644 new mode 100755 diff --git a/sr_port/bm_update.h b/sr_port/bm_update.h old mode 100644 new mode 100755 diff --git a/sr_port/bml_busy.c b/sr_port/bml_busy.c old mode 100644 new mode 100755 diff --git a/sr_port/bml_find_busy.c b/sr_port/bml_find_busy.c old mode 100644 new mode 100755 diff --git a/sr_port/bml_find_busy.h b/sr_port/bml_find_busy.h old mode 100644 new mode 100755 diff --git a/sr_port/bml_find_free.c b/sr_port/bml_find_free.c old mode 100644 new mode 100755 diff --git a/sr_port/bml_free.c b/sr_port/bml_free.c old mode 100644 new mode 100755 diff --git a/sr_port/bml_init.c b/sr_port/bml_init.c old mode 100644 new mode 100755 diff --git a/sr_port/bml_newmap.c b/sr_port/bml_newmap.c old mode 100644 new mode 100755 index 1c403017..c22577a3 --- a/sr_port/bml_newmap.c +++ b/sr_port/bml_newmap.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2009 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -18,7 +19,9 @@ #include "gdsblk.h" #include "gdsbml.h" #include "gdsdbver.h" +#include "gtm_multi_thread.h" +/* #GTM_THREAD_SAFE : The below function (bml_newmap) is thread-safe */ void bml_newmap(blk_hdr_ptr_t ptr, uint4 size, trans_num curr_tn) { sm_uc_ptr_t bptr; diff --git a/sr_port/bmm_find_free.c b/sr_port/bmm_find_free.c old mode 100644 new mode 100755 diff --git a/sr_port/bmm_find_free.h b/sr_port/bmm_find_free.h old mode 100644 new mode 100755 diff --git a/sr_port/bmm_init.c b/sr_port/bmm_init.c old mode 100644 new mode 100755 diff --git a/sr_port/bool_expr.c b/sr_port/bool_expr.c old mode 100644 new mode 100755 diff --git a/sr_port/break.h b/sr_port/break.h old mode 100644 new mode 100755 diff --git a/sr_port/bt_get.c b/sr_port/bt_get.c old mode 100644 new mode 100755 diff --git a/sr_port/bt_init.c b/sr_port/bt_init.c old mode 100644 new mode 100755 diff --git a/sr_port/bt_malloc.c b/sr_port/bt_malloc.c old mode 100644 new mode 100755 diff --git a/sr_port/bt_put.c b/sr_port/bt_put.c old mode 100644 new mode 100755 diff --git a/sr_port/bt_refresh.c b/sr_port/bt_refresh.c old mode 100644 new mode 100755 diff --git a/sr_port/buddy_list.c b/sr_port/buddy_list.c old mode 100644 new mode 100755 index 6eb3d233..103f3a69 --- a/sr_port/buddy_list.c +++ b/sr_port/buddy_list.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -57,6 +58,7 @@ void initialize_list(buddy_list *list, int4 elemSize, int4 initAlloc) list->free_que = NULL; /* initialize the list to have no free element queue */ DEBUG_ONLY(list->used_free_last_n_elements = FALSE;) DEBUG_ONLY(list->used_free_element = FALSE;) + DEBUG_ONLY(list->nElems_greater_than_one = FALSE;) } /* Any changes to this routine need corresponding changes to the VERIFY_LIST_IS_REINITIALIZED macro (defined in buddy_list.h) */ @@ -70,6 +72,7 @@ void reinitialize_list(buddy_list *list) list->free_que = NULL; /* reset the list to have no free element queue */ DEBUG_ONLY(list->used_free_last_n_elements = FALSE;) DEBUG_ONLY(list->used_free_element = FALSE;) + DEBUG_ONLY(list->nElems_greater_than_one = FALSE;) } boolean_t free_last_n_elements(buddy_list *list, int4 num) @@ -118,6 +121,7 @@ char *get_new_element(buddy_list *list, int4 nElements) assert(FALSE); return NULL; } + DEBUG_ONLY(if (1 < nElements) list->nElems_greater_than_one = TRUE;) nElems = list->nElems; cumulMaxElems = list->cumulMaxElems; elemSize = list->elemSize; @@ -149,6 +153,7 @@ char *get_new_free_element(buddy_list *list) char *elem; assert(!list->used_free_last_n_elements); + assert(!list->nElems_greater_than_one); DEBUG_ONLY(list->used_free_element = TRUE;) /* Assert that each element has enough space to store a pointer. This will be used to maintain the singly linked list * of freed up elements in the buddy list. The head of this list will be list->free_que. @@ -167,6 +172,7 @@ char *get_new_free_element(buddy_list *list) void free_element(buddy_list *list, char *elem) { assert(!list->used_free_last_n_elements); + assert(!list->nElems_greater_than_one); DEBUG_ONLY(list->used_free_element = TRUE;) assert(elem); assert(elem != list->free_que); @@ -177,10 +183,10 @@ void free_element(buddy_list *list, char *elem) char *find_element(buddy_list *list, int4 index) { - char **ptrArrayCurr; int4 i, initAllocBits; - if (index > list->nElems) + assert(!list->nElems_greater_than_one); + if (index >= list->nElems) return NULL; initAllocBits = list->initAllocBits; for (i = initAllocBits; index >> i; i++) /* not sure if "ceil_log2_32bit" would be faster here */ @@ -203,3 +209,46 @@ void cleanup_list(buddy_list *list) } free(list->ptrArray); } + +/* Copy the first "numElems" elements of a buddy_list into a contiguous buffer pointed to by "dst". + * This function assumes caller has allocated "dst" as appropriate. + * Returns : The # of bytes copied onto "dst". + */ +size_t copy_list_to_buf(buddy_list *list, int4 numElems, char *dst) +{ + int4 cumulMaxElems, curElems, copyElems, elemSize; + size_t copysize, totalsize; + char **ptrArrayCurr; + + assert(numElems); + assert(list->nElems >= numElems); + assert(!list->used_free_element); + assert(!list->nElems_greater_than_one); + cumulMaxElems = list->initAlloc; + curElems = cumulMaxElems; + elemSize = list->elemSize; + ptrArrayCurr = list->ptrArray; + totalsize = 0; + do + { + if (numElems < curElems) + { + copyElems = numElems; + numElems = 0; + } else + { + copyElems = curElems; + numElems = numElems - copyElems; + } + copysize = (size_t)copyElems * elemSize; + memcpy(dst, *ptrArrayCurr, copysize); + totalsize += copysize; + if (!numElems) + break; + dst += copysize; + curElems = cumulMaxElems; + cumulMaxElems *= 2; + ptrArrayCurr++; + } while (TRUE); + return totalsize; +} diff --git a/sr_port/buddy_list.h b/sr_port/buddy_list.h old mode 100644 new mode 100755 index a99a8b47..7c9c02bf --- a/sr_port/buddy_list.h +++ b/sr_port/buddy_list.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -40,6 +41,7 @@ typedef struct buddy_list_struct */ boolean_t used_free_last_n_elements; /* TRUE if "free_last_n_elements" was called in this buddy_list */ boolean_t used_free_element; /* TRUE if "get_new_free_element" or "free_element" was called */ + boolean_t nElems_greater_than_one; /* TRUE if "get_new_element" was ever called with "nElements" > 1 */ # endif } buddy_list; @@ -51,6 +53,7 @@ void reinitialize_list(buddy_list *list); /* used for reusing already allocated boolean_t free_last_n_elements(buddy_list *list, int4 num); /* to free up the last contiguous "num" elements */ void free_element(buddy_list *list, char *elem); /* to free up an element and reuse it later */ char *get_new_free_element(buddy_list *list); /* gets a freed-up element if available otherwise gets a new one */ +size_t copy_list_to_buf(buddy_list *list, int4 numElems, char *dst); #define PROBE_FREEUP_BUDDY_LIST(list) \ { \ diff --git a/sr_port/bx_relop.c b/sr_port/bx_relop.c old mode 100644 new mode 100755 diff --git a/sr_port/bx_tail.c b/sr_port/bx_tail.c old mode 100644 new mode 100755 diff --git a/sr_port/cache.h b/sr_port/cache.h old mode 100644 new mode 100755 diff --git a/sr_port/cache_cleanup.h b/sr_port/cache_cleanup.h old mode 100644 new mode 100755 diff --git a/sr_port/cache_get.c b/sr_port/cache_get.c old mode 100644 new mode 100755 diff --git a/sr_port/cache_init.c b/sr_port/cache_init.c old mode 100644 new mode 100755 diff --git a/sr_port/cache_stats.c b/sr_port/cache_stats.c old mode 100644 new mode 100755 diff --git a/sr_port/cache_table_rebuild.c b/sr_port/cache_table_rebuild.c old mode 100644 new mode 100755 diff --git a/sr_port/cachectl.h b/sr_port/cachectl.h old mode 100644 new mode 100755 diff --git a/sr_port/cacheflush.c b/sr_port/cacheflush.c old mode 100644 new mode 100755 diff --git a/sr_port/cacheflush.h b/sr_port/cacheflush.h old mode 100644 new mode 100755 diff --git a/sr_port/caller_id.c b/sr_port/caller_id.c old mode 100644 new mode 100755 diff --git a/sr_port/caller_id.h b/sr_port/caller_id.h old mode 100644 new mode 100755 diff --git a/sr_port/callg.h b/sr_port/callg.h old mode 100644 new mode 100755 diff --git a/sr_port/callg_signal.c b/sr_port/callg_signal.c old mode 100644 new mode 100755 diff --git a/sr_port/ccp.h b/sr_port/ccp.h old mode 100644 new mode 100755 diff --git a/sr_port/ccp_cluster_lock_wake.h b/sr_port/ccp_cluster_lock_wake.h old mode 100644 new mode 100755 diff --git a/sr_port/ccpact.h b/sr_port/ccpact.h old mode 100644 new mode 100755 diff --git a/sr_port/ccpact_tab.h b/sr_port/ccpact_tab.h old mode 100644 new mode 100755 diff --git a/sr_port/cdb_sc.h b/sr_port/cdb_sc.h old mode 100644 new mode 100755 index bf05b39e..5eba2da1 --- a/sr_port/cdb_sc.h +++ b/sr_port/cdb_sc.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2003 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -20,15 +21,64 @@ enum cdb_sc { -#define CDB_SC_NUM_ENTRY(code, value) code = value, -#define CDB_SC_UCHAR_ENTRY(code, is_wcs_code, value) code = value, -#define CDB_SC_LCHAR_ENTRY(code, is_wcs_code, value) code = value, +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) code = value, +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) code = value, +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) code = value, #include "cdb_sc_table.h" #undef CDB_SC_NUM_ENTRY #undef CDB_SC_UCHAR_ENTRY #undef CDB_SC_LCHAR_ENTRY }; -#define FUTURE_READ 0 /* used by dsk_read and t_qread */ +GBLREF boolean_t is_final_retry_code_num[]; +GBLREF boolean_t is_final_retry_code_uchar[]; +GBLREF boolean_t is_final_retry_code_lchar[]; + +#define IS_FINAL_RETRY_CODE(STATUS) \ + (DBG_ASSERT(STATUS <= 'z') \ + ((STATUS < 'A') \ + ? is_final_retry_code_num[STATUS] /* numeric */ \ + : ((STATUS <= 'Z') \ + ? is_final_retry_code_uchar[STATUS - 'A'] /* upper case */ \ + : is_final_retry_code_lchar[STATUS - 'a']))) /* lower case */ + +#define TP_TRACE_HIST_MOD(BLK_NUM, BLK_TARGET, N, CSD, HISTTN, BTTN, LEVEL) \ +{ \ + GBLREF block_id t_fail_hist_blk[]; \ + GBLREF gd_region *tp_fail_hist_reg[]; \ + GBLREF gv_namehead *tp_fail_hist[]; \ + GBLREF int4 blkmod_fail_type; \ + GBLREF int4 blkmod_fail_level; \ + GBLREF trans_num tp_fail_histtn[], tp_fail_bttn[]; \ + DEBUG_ONLY(GBLREF uint4 dollar_tlevel;) \ + DCL_THREADGBL_ACCESS; \ + \ + SETUP_THREADGBL_ACCESS; \ + assert(dollar_tlevel); \ + if (TREF(tprestart_syslog_delta)) \ + { \ + tp_fail_hist_reg[t_tries] = gv_cur_region; \ + t_fail_hist_blk[t_tries] = ((block_id)BLK_NUM); \ + tp_fail_hist[t_tries] = (gv_namehead *)(((int)BLK_NUM & ~(-BLKS_PER_LMAP)) ? BLK_TARGET : NULL); \ + (CSD)->tp_cdb_sc_blkmod[(N)]++; \ + blkmod_fail_type = (N); \ + blkmod_fail_level = (LEVEL); \ + tp_fail_histtn[t_tries] = (HISTTN); \ + tp_fail_bttn[t_tries] = (BTTN); \ + } \ +} + +#define NONTP_TRACE_HIST_MOD(BLK_SRCH_STAT, N) \ +{ \ + GBLREF int4 blkmod_fail_type; \ + GBLREF int4 blkmod_fail_level; \ + GBLREF block_id t_fail_hist_blk[]; \ + DEBUG_ONLY(GBLREF uint4 dollar_tlevel;) \ + \ + assert(!dollar_tlevel); \ + t_fail_hist_blk[t_tries] = (BLK_SRCH_STAT)->blk_num; \ + blkmod_fail_type = (N); \ + blkmod_fail_level = (BLK_SRCH_STAT)->level; \ +} #endif diff --git a/sr_port/cdb_sc_table.h b/sr_port/cdb_sc_table.h old mode 100644 new mode 100755 index fe040c18..3975f626 --- a/sr_port/cdb_sc_table.h +++ b/sr_port/cdb_sc_table.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2003-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -13,11 +14,12 @@ /* Note: This is an exception where we have 132+ characters in a line */ /* - * CDB_SC_NUM_ENTRY(code, value) - * CDB_SC_UCHAR_ENTRY(code, is_wcs_code, value) - * CDB_SC_LCHAR_ENTRY(code, is_wcs_code, value) + * CDB_SC_NUM_ENTRY(code, final_retry_ok, value) + * CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) + * CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) * * is_wcs_code is TRUE if the cdb_sc code is a cache-related failure code. + * final_retry_ok is TRUE If the cdb_sc code is possible in the final retry. * * cdb_sc codes with numeric values are internally generated codes which is never displayed to the user and hence * can never imply a database cache related problem. hence the macro CDB_SC_NUM_ENTRY has no is_wcs_code parameter. @@ -36,85 +38,99 @@ * the block with the BLKTNTOOLG integrity error in which case we do not want to set wc_blocked and cause indefinite * cache-recoveries. But to do that we need to do a wcs_verify() after setting wc_blocked and if no problems are * detected, we should unset wc_blocked. that is a little tricky and is deferred until it is considered worthy. + * + * Currently the failure codes considered as final_retry_ok codes are as follows. + * An explanation for why these are possible in the final retry is in t_retry, tp_restart & op_trestart (for cdb_sc_optrestart). + * cdb_sc_jnlstatemod + * cdb_sc_jnlclose + * cdb_sc_helpedout + * cdb_sc_needcrit + * cdb_sc_onln_rlbk1 + * cdb_sc_onln_rlbk2 + * cdb_sc_instancefreeze + * cdb_sc_gvtrootmod2 + * cdb_sc_reorg_encrypt + * cdb_sc_optrestart */ -CDB_SC_NUM_ENTRY( cdb_sc_normal, 0) /* 0 success */ -CDB_SC_NUM_ENTRY( cdb_sc_endtree, 1) /* 1 gvcst_lftsib or gvcst_rtsib searched past end of tree */ -CDB_SC_NUM_ENTRY( cdb_sc_delete_parent, 2) /* 2 gvcst_kill_blk succeeded, but signals gvcst_kill - * that block was completely deleted */ -CDB_SC_NUM_ENTRY( cdb_sc_nolock, 3) /* 3 mutex_lockwim was unable to obtain a lock */ -CDB_SC_NUM_ENTRY( cdb_sc_needcrit, 4) /* 4 on 4th attempt and need crit for this region -- restart transaction - * no penalty */ -CDB_SC_NUM_ENTRY( cdb_sc_helpedout, 5) /* 5 wcs_blocked when t_tries >= CDB_STAGNATE */ -CDB_SC_NUM_ENTRY( cdb_sc_gbloflow, 6) /* 6 t_end or tp_tend found database full and could not be extended */ -CDB_SC_NUM_ENTRY( cdb_sc_oprnotneeded, 7) /* 7 reorg operation was not required */ -CDB_SC_NUM_ENTRY( cdb_sc_starrecord, 8) /* 8 star record was found while reading the block */ -CDB_SC_NUM_ENTRY( cdb_sc_extend, 9) /* 9 extend requested when none seemed needed - from gdsfilext */ -CDB_SC_NUM_ENTRY( cdb_sc_jnlclose, 10) /* 10 journal file has been closed */ +CDB_SC_NUM_ENTRY( cdb_sc_normal, FALSE, 0) /* 0 success */ +CDB_SC_NUM_ENTRY( cdb_sc_endtree, FALSE, 1) /* 1 gvcst_lftsib or gvcst_rtsib searched past end of tree */ +CDB_SC_NUM_ENTRY( cdb_sc_delete_parent, FALSE, 2) /* 2 gvcst_kill_blk succeeded, but signals gvcst_kill + * that block was completely deleted */ +CDB_SC_NUM_ENTRY( cdb_sc_nolock, FALSE, 3) /* 3 mutex_lockwim was unable to obtain a lock */ +CDB_SC_NUM_ENTRY( cdb_sc_needcrit, TRUE, 4) /* 4 on 4th attempt and need crit for this region -- restart transaction + * no penalty */ +CDB_SC_NUM_ENTRY( cdb_sc_helpedout, TRUE, 5) /* 5 wcs_blocked when t_tries >= CDB_STAGNATE */ +CDB_SC_NUM_ENTRY( cdb_sc_gbloflow, FALSE, 6) /* 6 t_end or tp_tend found database full and could not be extended */ +CDB_SC_NUM_ENTRY( cdb_sc_oprnotneeded, FALSE, 7) /* 7 reorg operation was not required */ +CDB_SC_NUM_ENTRY( cdb_sc_starrecord, FALSE, 8) /* 8 star record was found while reading the block */ +CDB_SC_NUM_ENTRY( cdb_sc_extend, FALSE, 9) /* 9 extend requested when none seemed needed - from gdsfilext */ +CDB_SC_NUM_ENTRY( cdb_sc_jnlclose, TRUE, 10) /* 10 journal file has been closed */ -CDB_SC_UCHAR_ENTRY(cdb_sc_rmisalign1, FALSE, 'A') /* 'A' gvcst_get found record misaligned */ -CDB_SC_UCHAR_ENTRY(cdb_sc_keyoflow, FALSE, 'B') /* 'B' gvcst_expand_key or gvcst_search (3) found key overflow */ -CDB_SC_UCHAR_ENTRY(cdb_sc_rmisalign, FALSE, 'C') /* 'C' Record misaligned from nearly everyone */ -CDB_SC_UCHAR_ENTRY(cdb_sc_r2small, FALSE, 'D') /* 'D' gvcst_expand_key found record too small */ -CDB_SC_UCHAR_ENTRY(cdb_sc_losthist, TRUE, 'E') /* 'E' t_end/tp_tend (mm/bg) - tn could not be verified from history */ -CDB_SC_UCHAR_ENTRY(cdb_sc_mapfail, FALSE, 'F') /* 'F' t_end or op_tcommit (from bm_getfree) failed to acquire new block */ -CDB_SC_UCHAR_ENTRY(cdb_sc_lostcr, TRUE, 'G') /* 'G' gvcst_...sib, t_end/tp_tend/tp_hist - found cache buffer modified */ -CDB_SC_UCHAR_ENTRY(cdb_sc_mkblk, FALSE, 'H') /* 'H' Composing a local block failed, from gvcst_kill(3) gvcst_put(14) */ -CDB_SC_UCHAR_ENTRY(cdb_sc_rdfail, FALSE, 'I') /* 'I' t_qread found block number requested is outside size of file - * as described by fileheader */ -CDB_SC_UCHAR_ENTRY(cdb_sc_badlvl, FALSE, 'J') /* 'J' gvcst_search found a child block didn't have the next block level - * below its parent */ -CDB_SC_UCHAR_ENTRY(cdb_sc_cacheprob, TRUE, 'K') /* 'K' db_csh_get, ... found a cache control problem */ -CDB_SC_UCHAR_ENTRY(cdb_sc_blkmod, FALSE, 'L') /* 'L' t_end, or tp_tend found block modified */ -CDB_SC_UCHAR_ENTRY(cdb_sc_uperr, FALSE, 'M') /* 'M' t_ch received an unpredicatable error */ -CDB_SC_UCHAR_ENTRY(cdb_sc_comfail, FALSE, 'N') /* 'N' Commit failed used in t_end_sysops (8) by (?) */ -CDB_SC_UCHAR_ENTRY(cdb_sc_lostbefor, TRUE, 'O') /* 'O' t_end or tp_tend found the before image needed for journaling was - * removed from the cache */ -CDB_SC_UCHAR_ENTRY(cdb_sc_committfail, FALSE, 'P') /* 'P' t_commit_cleanup found a partially committed block split */ -CDB_SC_UCHAR_ENTRY(cdb_sc_dbccerr, FALSE, 'Q') /* 'Q' mutex found (in 1 of 3 places) an interlock instruction failure - * in critical mechanism */ -CDB_SC_UCHAR_ENTRY(cdb_sc_critreset, FALSE, 'R') /* 'R' mutex found (in 1 of 6 places) that the segment crit crash count - * has been incremented */ -CDB_SC_UCHAR_ENTRY(cdb_sc_maxlvl, FALSE, 'S') /* 'S' t_write_root or gvcst_search found maximum legal block level for - * database exceeded */ -CDB_SC_UCHAR_ENTRY(cdb_sc_blockflush, FALSE, 'T') /* 'T' t_end (hist, or bitmap) found an to update a buffer that is being - * flushed (GT.CX) */ -CDB_SC_UCHAR_ENTRY(cdb_sc_cyclefail, TRUE, 'U') /* 'U' t_end or tp_tend found a buffer in read(only) set was overwritten - * though tn static */ -CDB_SC_UCHAR_ENTRY(cdb_sc_optrestart, FALSE, 'V') /* 'V' TP restart explicitly signaled by the TRESTART command */ -CDB_SC_UCHAR_ENTRY(cdb_sc_future_read, FALSE, 'W') /* 'W' dsk_read return to t_qread indicated block transaction exceeds - * curr_tn (GT.CX) */ -CDB_SC_UCHAR_ENTRY(cdb_sc_badbitmap, FALSE, 'X') /* 'X' bm_getfree found bitmap had bad size or level */ -CDB_SC_UCHAR_ENTRY(cdb_sc_badoffset, FALSE, 'Y') /* 'Y' gvcst_blk_search (in gvcst_search_blk or gvcst_search_tail) found - * a bad record offset */ -CDB_SC_UCHAR_ENTRY(cdb_sc_blklenerr, FALSE, 'Z') /* 'Z' gvcst_blk_search (in gvcst_search_blk or gvcst_search_tail) reached - * the end with no match */ +CDB_SC_UCHAR_ENTRY(cdb_sc_rmisalign1, FALSE, FALSE, 'A') /* 'A' gvcst_get found record misaligned */ +CDB_SC_UCHAR_ENTRY(cdb_sc_keyoflow, FALSE, FALSE, 'B') /* 'B' gvcst_expand_key or gvcst_search (3) found key overflow */ +CDB_SC_UCHAR_ENTRY(cdb_sc_rmisalign, FALSE, FALSE, 'C') /* 'C' Record misaligned from nearly everyone */ +CDB_SC_UCHAR_ENTRY(cdb_sc_r2small, FALSE, FALSE, 'D') /* 'D' gvcst_expand_key found record too small */ +CDB_SC_UCHAR_ENTRY(cdb_sc_losthist, FALSE, TRUE, 'E') /* 'E' t_end/tp_tend (mm/bg) - tn could not be verified from history */ +CDB_SC_UCHAR_ENTRY(cdb_sc_mapfail, FALSE, FALSE, 'F') /* 'F' t_end or op_tcommit (from bm_getfree) failed to acquire new block */ +CDB_SC_UCHAR_ENTRY(cdb_sc_lostcr, FALSE, TRUE, 'G') /* 'G' gvcst_...sib, t_end/tp_tend/tp_hist - found cache buffer modified */ +CDB_SC_UCHAR_ENTRY(cdb_sc_mkblk, FALSE, FALSE, 'H') /* 'H' Composing a local block failed, from gvcst_kill(3) gvcst_put(14) */ +CDB_SC_UCHAR_ENTRY(cdb_sc_rdfail, FALSE, FALSE, 'I') /* 'I' t_qread found block number requested is outside size of file + * as described by fileheader */ +CDB_SC_UCHAR_ENTRY(cdb_sc_badlvl, FALSE, FALSE, 'J') /* 'J' gvcst_search found a child block didn't have the next block level + * below its parent */ +CDB_SC_UCHAR_ENTRY(cdb_sc_cacheprob, FALSE, TRUE, 'K') /* 'K' db_csh_get, ... found a cache control problem */ +CDB_SC_UCHAR_ENTRY(cdb_sc_blkmod, FALSE, FALSE, 'L') /* 'L' t_end, or tp_tend found block modified */ +CDB_SC_UCHAR_ENTRY(cdb_sc_uperr, FALSE, FALSE, 'M') /* 'M' t_ch received an unpredicatable error */ +CDB_SC_UCHAR_ENTRY(cdb_sc_comfail, FALSE, FALSE, 'N') /* 'N' Commit failed used in t_end_sysops (8) by (?) */ +CDB_SC_UCHAR_ENTRY(cdb_sc_lostbefor, FALSE, TRUE, 'O') /* 'O' t_end or tp_tend found the before image needed for journaling was + * removed from the cache */ +CDB_SC_UCHAR_ENTRY(cdb_sc_committfail, FALSE, FALSE, 'P') /* 'P' t_commit_cleanup found a partially committed block split */ +CDB_SC_UCHAR_ENTRY(cdb_sc_dbccerr, FALSE, FALSE, 'Q') /* 'Q' mutex found (in 1 of 3 places) an interlock instruction failure + * in critical mechanism */ +CDB_SC_UCHAR_ENTRY(cdb_sc_critreset, FALSE, FALSE, 'R') /* 'R' mutex found (in 1 of 6 places) that the segment crit crash count + * has been incremented */ +CDB_SC_UCHAR_ENTRY(cdb_sc_maxlvl, FALSE, FALSE, 'S') /* 'S' t_write_root or gvcst_search found maximum legal block level for + * database exceeded */ +CDB_SC_UCHAR_ENTRY(cdb_sc_blockflush, FALSE, FALSE, 'T') /* 'T' t_end (hist, or bitmap) found an to update a buffer that is being + * flushed (GT.CX) */ +CDB_SC_UCHAR_ENTRY(cdb_sc_cyclefail, FALSE, TRUE, 'U') /* 'U' t_end or tp_tend found a buffer in read(only) set was overwritten + * though tn static */ +CDB_SC_UCHAR_ENTRY(cdb_sc_optrestart, TRUE, FALSE, 'V') /* 'V' TP restart explicitly signaled by the TRESTART command */ +CDB_SC_UCHAR_ENTRY(cdb_sc_future_read, FALSE, FALSE, 'W') /* 'W' dsk_read return to t_qread indicated block transaction exceeds + * curr_tn (GT.CX) */ +CDB_SC_UCHAR_ENTRY(cdb_sc_badbitmap, FALSE, FALSE, 'X') /* 'X' bm_getfree found bitmap had bad size or level */ +CDB_SC_UCHAR_ENTRY(cdb_sc_badoffset, FALSE, FALSE, 'Y') /* 'Y' gvcst_blk_search (in gvcst_search_blk or gvcst_search_tail) found + * a bad record offset */ +CDB_SC_UCHAR_ENTRY(cdb_sc_blklenerr, FALSE, FALSE, 'Z') /* 'Z' gvcst_blk_search (in gvcst_search_blk or gvcst_search_tail) reached + * the end with no match */ -CDB_SC_LCHAR_ENTRY(cdb_sc_bmlmod, FALSE, 'a') /* 'a' t_end or tp_tend (mm or bg) found bit_map modified */ -CDB_SC_LCHAR_ENTRY(cdb_sc_lostbmlhist, TRUE, 'b') /* 'b' t_end or tp_tend (bg) - tn could not be verified from history */ -CDB_SC_LCHAR_ENTRY(cdb_sc_lostbmlcr, TRUE, 'c') /* 'c' t_end or tp_tend (bg) - found cache buffer modified */ -CDB_SC_LCHAR_ENTRY(cdb_sc_lostoldblk, FALSE, 'd') /* 'd' t_qread or op_tcommit (tp and before image) - old_block of a used - * block is NULL */ -CDB_SC_LCHAR_ENTRY(cdb_sc_blknumerr, FALSE, 'e') /* 'e' t_qread or op_tcommit - block number is impossible */ -CDB_SC_LCHAR_ENTRY(cdb_sc_blksplit, FALSE, 'f') /* 'f' recompute_upd_array recognized that the block needs to be split */ -CDB_SC_LCHAR_ENTRY(cdb_sc_toomanyrecompute, FALSE, 'g') /* 'g' more than 25% of the blocks in read-set need to be recomputed */ -CDB_SC_LCHAR_ENTRY(cdb_sc_jnlstatemod, FALSE, 'h') /* 'h' csd->jnl_state changed or csd->jnl_before_image changed since start - * of the transaction */ -CDB_SC_LCHAR_ENTRY(cdb_sc_needlock, FALSE, 'i') /* 'i' on final retry and need to wait for M-lock - restart transaction - * - allow for max of 16 such restarts */ -CDB_SC_LCHAR_ENTRY(cdb_sc_bkupss_statemod, FALSE, 'j') /* 'j' t_end/tp_tend found that either online-backup-in-progress or - * snapshot state changed since start of transaction */ -CDB_SC_LCHAR_ENTRY(cdb_sc_crbtmismatch, TRUE, 'k') /* 'k' cr->blk and bt->blk does not match */ -CDB_SC_LCHAR_ENTRY(cdb_sc_phase2waitfail, TRUE, 'l') /* 'l' wcs_phase2_commit_wait timed out when called from t_qread */ -CDB_SC_LCHAR_ENTRY(cdb_sc_inhibitkills, FALSE, 'm') /* 'm' t_end/tp_tend found inhibit_kills counter greater than zero */ -CDB_SC_LCHAR_ENTRY(cdb_sc_triggermod, FALSE, 'n') /* 'n' csd->db_trigger_cycle changed since start of of transaction */ -CDB_SC_LCHAR_ENTRY(cdb_sc_onln_rlbk1, FALSE, 'o') /* 'o' csa->onln_rlbk_cycle changed since start of transaction */ -CDB_SC_LCHAR_ENTRY(cdb_sc_onln_rlbk2, FALSE, 'p') /* 'p' csa->db_onln_rlbkd_cycle changed since start of transaction */ -CDB_SC_LCHAR_ENTRY(cdb_sc_truncate, FALSE, 'q') /* 'q' t_qread tried to read a block beyond the end of a database - * that has been concurrently truncated */ -CDB_SC_LCHAR_ENTRY(cdb_sc_gvtrootmod, FALSE, 'r') /* 'r' gvcst_kill found a need to redo the gvcst_root_search */ -CDB_SC_LCHAR_ENTRY(cdb_sc_instancefreeze, FALSE, 's') /* 's' instance freeze detected in t_end/tp_tend, requires retry */ -CDB_SC_LCHAR_ENTRY(cdb_sc_gvtrootmod2, FALSE, 't') /* 't' t_end/tp_tend detected root blocks moved by reorg */ -CDB_SC_LCHAR_ENTRY(cdb_sc_spansize, FALSE, 'u') /* 'u' chunks of spanning node don't add up */ -CDB_SC_LCHAR_ENTRY(cdb_sc_restarted, FALSE, 'v') /* 'v' return value indicating t_retry has already happened */ -CDB_SC_LCHAR_ENTRY(cdb_sc_tqreadnowait, FALSE, 'w') /* 'w' update helper returning from t_qread instead of sleeping */ +CDB_SC_LCHAR_ENTRY(cdb_sc_bmlmod, FALSE, FALSE, 'a') /* 'a' t_end or tp_tend (mm or bg) found bit_map modified */ +CDB_SC_LCHAR_ENTRY(cdb_sc_lostbmlhist, FALSE, TRUE, 'b') /* 'b' t_end or tp_tend (bg) - tn could not be verified from history */ +CDB_SC_LCHAR_ENTRY(cdb_sc_lostbmlcr, FALSE, TRUE, 'c') /* 'c' t_end or tp_tend (bg) - found cache buffer modified */ +CDB_SC_LCHAR_ENTRY(cdb_sc_lostoldblk, FALSE, FALSE, 'd') /* 'd' t_qread or op_tcommit (tp and before image) - old_block of a used + * block is NULL */ +CDB_SC_LCHAR_ENTRY(cdb_sc_blknumerr, FALSE, FALSE, 'e') /* 'e' t_qread or op_tcommit - block number is impossible */ +CDB_SC_LCHAR_ENTRY(cdb_sc_blksplit, FALSE, FALSE, 'f') /* 'f' recompute_upd_array recognized that the block needs to be split */ +CDB_SC_LCHAR_ENTRY(cdb_sc_toomanyrecompute, FALSE, FALSE, 'g') /* 'g' more than 25% of the blocks in read-set need to be recomputed */ +CDB_SC_LCHAR_ENTRY(cdb_sc_jnlstatemod, TRUE, FALSE, 'h') /* 'h' csd->jnl_state changed or csd->jnl_before_image changed since start + * of the transaction */ +CDB_SC_LCHAR_ENTRY(cdb_sc_needlock, FALSE, FALSE, 'i') /* 'i' on final retry and need to wait for M-lock - restart transaction + * - allow for max of 16 such restarts */ +CDB_SC_LCHAR_ENTRY(cdb_sc_bkupss_statemod, FALSE, FALSE, 'j') /* 'j' t_end/tp_tend found that either online-backup-in-progress or + * snapshot state changed since start of transaction */ +CDB_SC_LCHAR_ENTRY(cdb_sc_crbtmismatch, FALSE, TRUE, 'k') /* 'k' cr->blk and bt->blk does not match */ +CDB_SC_LCHAR_ENTRY(cdb_sc_phase2waitfail, FALSE, TRUE, 'l') /* 'l' wcs_phase2_commit_wait timed out when called from t_qread */ +CDB_SC_LCHAR_ENTRY(cdb_sc_inhibitkills, FALSE, FALSE, 'm') /* 'm' t_end/tp_tend found inhibit_kills counter greater than zero */ +CDB_SC_LCHAR_ENTRY(cdb_sc_triggermod, FALSE, FALSE, 'n') /* 'n' csd->db_trigger_cycle changed since start of of transaction */ +CDB_SC_LCHAR_ENTRY(cdb_sc_onln_rlbk1, TRUE, FALSE, 'o') /* 'o' csa->onln_rlbk_cycle changed since start of transaction */ +CDB_SC_LCHAR_ENTRY(cdb_sc_onln_rlbk2, TRUE, FALSE, 'p') /* 'p' csa->db_onln_rlbkd_cycle changed since start of transaction */ +CDB_SC_LCHAR_ENTRY(cdb_sc_truncate, FALSE, FALSE, 'q') /* 'q' t_qread tried to read a block beyond the end of a database + * that has been concurrently truncated */ +CDB_SC_LCHAR_ENTRY(cdb_sc_gvtrootmod, FALSE, FALSE, 'r') /* 'r' gvcst_kill found a need to redo the gvcst_root_search */ +CDB_SC_LCHAR_ENTRY(cdb_sc_instancefreeze, TRUE, FALSE, 's') /* 's' instance freeze detected in t_end/tp_tend, requires retry */ +CDB_SC_LCHAR_ENTRY(cdb_sc_gvtrootmod2, TRUE, FALSE, 't') /* 't' t_end/tp_tend detected root blocks moved by reorg */ +CDB_SC_LCHAR_ENTRY(cdb_sc_spansize, FALSE, FALSE, 'u') /* 'u' chunks of spanning node don't add up */ +CDB_SC_LCHAR_ENTRY(cdb_sc_restarted, FALSE, FALSE, 'v') /* 'v' return value indicating t_retry has already happened */ +CDB_SC_LCHAR_ENTRY(cdb_sc_tqreadnowait, FALSE, FALSE, 'w') /* 'w' update helper returning from t_qread instead of sleeping */ +CDB_SC_LCHAR_ENTRY(cdb_sc_reorg_encrypt, TRUE, FALSE, 'x') /* 'x' cnl->reorg_encrypt_cycle changed since start of transaction */ diff --git a/sr_port/cdbg_dump.c b/sr_port/cdbg_dump.c old mode 100644 new mode 100755 diff --git a/sr_port/cdbg_dump.h b/sr_port/cdbg_dump.h old mode 100644 new mode 100755 diff --git a/sr_port/ceprep_file.c b/sr_port/ceprep_file.c old mode 100644 new mode 100755 diff --git a/sr_port/cert_blk.c b/sr_port/cert_blk.c index a779c336..0b2db03d 100644 --- a/sr_port/cert_blk.c +++ b/sr_port/cert_blk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -42,6 +43,7 @@ GBLREF uint4 dollar_tlevel; GBLREF boolean_t dse_running; GBLREF boolean_t mu_reorg_upgrd_dwngrd_in_prog; +GBLREF uint4 mu_reorg_encrypt_in_prog; error_def(ERR_DBBLEVMX); error_def(ERR_DBBLEVMN); @@ -433,9 +435,9 @@ int cert_blk (gd_region *reg, block_id blk, blk_hdr_ptr_t bp, block_id root, boo RTS_ERROR_FUNC(csa, ERR_DBPTRNOTPOS, util_buff); return FALSE; } - if ((child > csa->ti->total_blks) && !mu_reorg_upgrd_dwngrd_in_prog) - { /* REORG -UPGRADE/DOWNGRADE can update recycled blocks, which may contain children beyond - * the total_blks if a truncate happened sometime after the block was killed. + if ((child > csa->ti->total_blks) && !mu_reorg_upgrd_dwngrd_in_prog && !mu_reorg_encrypt_in_prog) + { /* REORG -UPGRADE/DOWNGRADE/ENCRYPT can update recycled blocks, which may contain children + * beyond total_blks if a truncate happened sometime after the block was killed. */ RTS_ERROR_FUNC(csa, ERR_DBPTRMX, util_buff); return FALSE; diff --git a/sr_port/cert_blk.h b/sr_port/cert_blk.h old mode 100644 new mode 100755 diff --git a/sr_port/cg_var.h b/sr_port/cg_var.h old mode 100644 new mode 100755 diff --git a/sr_port/cgp.h b/sr_port/cgp.h old mode 100644 new mode 100755 diff --git a/sr_port/change_reg.c b/sr_port/change_reg.c old mode 100644 new mode 100755 diff --git a/sr_port/change_reg.h b/sr_port/change_reg.h old mode 100644 new mode 100755 diff --git a/sr_port/chk2lev.m b/sr_port/chk2lev.m old mode 100644 new mode 100755 diff --git a/sr_port/chkop.m b/sr_port/chkop.m old mode 100644 new mode 100755 diff --git a/sr_port/cli_get_str_ele.c b/sr_port/cli_get_str_ele.c old mode 100644 new mode 100755 diff --git a/sr_port/cli_port.c b/sr_port/cli_port.c old mode 100644 new mode 100755 diff --git a/sr_port/cliif.h b/sr_port/cliif.h old mode 100644 new mode 100755 diff --git a/sr_port/cmd.c b/sr_port/cmd.c old mode 100644 new mode 100755 diff --git a/sr_port/cmd.h b/sr_port/cmd.h old mode 100644 new mode 100755 diff --git a/sr_port/cmd_qlf.h b/sr_port/cmd_qlf.h old mode 100644 new mode 100755 diff --git a/sr_port/cmerrors.msg b/sr_port/cmerrors.msg old mode 100644 new mode 100755 diff --git a/sr_port/cmi.h b/sr_port/cmi.h old mode 100644 new mode 100755 diff --git a/sr_port/cmidef.h b/sr_port/cmidef.h old mode 100644 new mode 100755 diff --git a/sr_port/cmmdef.h b/sr_port/cmmdef.h old mode 100644 new mode 100755 diff --git a/sr_port/code_gen.c b/sr_port/code_gen.c index 59025888..5b8328b1 100644 --- a/sr_port/code_gen.c +++ b/sr_port/code_gen.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -27,6 +28,7 @@ LITREF octabstruct oc_tab[]; /* op-code table */ GBLREF triple t_orig; /* head of triples */ GBLREF char cg_phase; /* code generation phase */ +GBLREF command_qualifier cmd_qlf; GBLREF int4 curr_addr; /* current address */ GBLREF src_line_struct src_head; GBLREF short source_line; @@ -55,7 +57,7 @@ void code_gen(void) ct->rtaddr = curr_addr; else if (CGP_ASSEMBLY == cg_phase) { - if (ct->src.line != old_line) + if (ct->src.line != old_line && (cmd_qlf.qlf & (CQ_LIST | CQ_CROSS_REFERENCE | CQ_EMBED_SOURCE))) { list_line(""); dqloop(&src_head, que, sl) diff --git a/sr_port/coerce.c b/sr_port/coerce.c old mode 100644 new mode 100755 diff --git a/sr_port/collseq.c b/sr_port/collseq.c old mode 100644 new mode 100755 diff --git a/sr_port/collseq.h b/sr_port/collseq.h old mode 100644 new mode 100755 diff --git a/sr_port/comline.h b/sr_port/comline.h old mode 100644 new mode 100755 diff --git a/sr_port/common_startup_init.c b/sr_port/common_startup_init.c index 0d0c0d8c..d1487330 100644 --- a/sr_port/common_startup_init.c +++ b/sr_port/common_startup_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2014 Fidelity Information Services, Inc * + * Copyright (c) 2014-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -20,6 +21,7 @@ #include "getjobnum.h" #include "gtmimagename.h" #include "gtm_utf8.h" +#include "min_max.h" #include "common_startup_init.h" GBLREF boolean_t skip_dbtriggers; @@ -53,6 +55,7 @@ void common_startup_init(enum gtmImageTypes img_type) len = STRLEN(dist); len = (GTM_PATH_MAX < len) ? GTM_PATH_MAX : len; memcpy(gtm_dist, dist, len); + len = MIN(len, PATH_MAX); gtm_dist[len] = '\0'; } /* Setup global variables corresponding to signal blocks. */ diff --git a/sr_port/comp_esc.h b/sr_port/comp_esc.h old mode 100644 new mode 100755 diff --git a/sr_port/compile_pattern.c b/sr_port/compile_pattern.c old mode 100644 new mode 100755 index 2b6d9dce..de684f9e --- a/sr_port/compile_pattern.c +++ b/sr_port/compile_pattern.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -22,7 +23,6 @@ #include "fullbool.h" GBLREF spdesc stringpool; -GBLREF char *lexical_ptr; GBLREF unsigned char *source_buffer; GBLREF int source_column; @@ -78,7 +78,7 @@ int compile_pattern(oprtype *opr, boolean_t is_indirect) memcpy(stringpool.free, &retstr.buff[0], retmval.str.len); stringpool.free += retmval.str.len; *opr = put_lit(&retmval); - lexical_ptr = instr.addr; + TREF(lexical_ptr) = instr.addr; advancewindow(); advancewindow(); return TRUE; diff --git a/sr_port/compile_pattern.h b/sr_port/compile_pattern.h old mode 100644 new mode 100755 diff --git a/sr_port/compiler.h b/sr_port/compiler.h old mode 100644 new mode 100755 index 11872b03..2a4aa20f --- a/sr_port/compiler.h +++ b/sr_port/compiler.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -522,10 +522,11 @@ typedef struct * be (re)set by the s2n/n2s calls we do. If not, the mval could have random bits in it which, as far as the mval is concerned * is not a problem but interferes with getting a consistent object hash value when the same source is (re)compiled. */ -#define CLEAR_MVAL_BITS(mvalptr) \ -{ \ - ((mval_b *)(mvalptr))->sgne = 0; \ - (mvalptr)->fnpc_indx = 0xff; \ +#define CLEAR_MVAL_BITS(mvalptr) \ +{ \ + ((mval_b *)(mvalptr))->sgne = 0; \ + (mvalptr)->fnpc_indx = 0xff; \ + UNICODE_ONLY((mvalptr)->utfcgr_indx = 0xff); \ } /* Autorelink enabled platforms pass a different argument to glue code when calling a non-local M @@ -652,6 +653,7 @@ oprtype put_cdidx(mstr *x); oprtype put_ilit(mint x); oprtype put_indr(oprtype *x); oprtype put_lit(mval *x); +oprtype put_lit_s(mval *x, triple *dst); oprtype put_mfun(mident *l); oprtype put_mlab(mident *l); oprtype put_mnxl(void); diff --git a/sr_port/compiler_startup.c b/sr_port/compiler_startup.c index 73c9ba38..28d70947 100644 --- a/sr_port/compiler_startup.c +++ b/sr_port/compiler_startup.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -100,13 +101,9 @@ boolean_t compiler_startup(void) creating_list_file = (cmd_qlf.qlf & CQ_LIST) || (cmd_qlf.qlf & CQ_CROSS_REFERENCE); need_source_lines = (cmd_qlf.qlf & CQ_EMBED_SOURCE) || creating_list_file; use_src_queue = (cmd_qlf.qlf & CQ_EMBED_SOURCE) || (creating_list_file && (cmd_qlf.qlf & CQ_MACHINE_CODE)); - if (need_source_lines) - { - if (use_src_queue) - dqinit(&src_head, que); - if (creating_list_file) - open_list_file(); - } + dqinit(&src_head, que); + if (creating_list_file) + open_list_file(); if (cmd_qlf.qlf & CQ_CE_PREPROCESS) open_ceprep_file(); tripinit(); @@ -123,24 +120,20 @@ boolean_t compiler_startup(void) if (-1 == (n = read_source_file())) break; rtn_src_chksum_line(&checksum_ctx, source_buffer, n); - if (need_source_lines) - { - if (use_src_queue) - { /* Accumulate list of M source lines */ - sl = (src_line_struct *)mcalloc(SIZEOF(src_line_struct)); - dqrins(&src_head, que, sl); - sl->str.addr = mcalloc(n + 1); /* +1 for zero termination */ - sl->str.len = n; - sl->line = source_line; - memcpy(sl->str.addr, source_buffer, n + 1); - total_source_len += n; - } - if (creating_list_file && !(cmd_qlf.qlf & CQ_MACHINE_CODE)) - { /* list now. for machine_code we intersperse machine code and M code, thus can't list M code yet */ - NEWLINE_TO_NULL(source_buffer[n - 1]); - list_line_number(); - list_line((char *)source_buffer); - } + /* Save the source lines; a check later determines whether to include them in the object file */ + /* Accumulate list of M source lines */ + sl = (src_line_struct *)mcalloc(SIZEOF(src_line_struct)); + dqrins(&src_head, que, sl); + sl->str.addr = mcalloc(n + 1); /* +1 for zero termination */ + sl->str.len = n; + sl->line = source_line; + memcpy(sl->str.addr, source_buffer, n + 1); + total_source_len += n; + if (need_source_lines && creating_list_file && !(cmd_qlf.qlf & CQ_MACHINE_CODE)) + { /* list now. for machine_code we intersperse machine code and M code, thus can't list M code yet */ + NEWLINE_TO_NULL(source_buffer[n - 1]); + list_line_number(); + list_line((char *)source_buffer); } NEWLINE_TO_NULL(source_buffer[n - 1]); /* compiler doesn't like trailing newlines (gives SPOREOL errors) */ TREF(source_error_found) = 0; diff --git a/sr_port/compswap.h b/sr_port/compswap.h old mode 100644 new mode 100755 diff --git a/sr_port/copy.h b/sr_port/copy.h old mode 100644 new mode 100755 diff --git a/sr_port/cre_jnl_file.c b/sr_port/cre_jnl_file.c old mode 100644 new mode 100755 index c10de30b..be169f64 --- a/sr_port/cre_jnl_file.c +++ b/sr_port/cre_jnl_file.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2003-2015 Fidelity National Information * + * Copyright (c) 2003-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -14,7 +14,6 @@ #include "gtm_string.h" #include "gtm_stat.h" -#if defined(UNIX) #include "gtm_fcntl.h" #include "gtm_unistd.h" #include "eintr_wrappers.h" @@ -22,12 +21,6 @@ #if defined(__MVS__) #include "gtm_zos_io.h" #endif -#elif defined(VMS) -#include -#include -#include -#include "iosb_disk.h" -#endif #include "gtm_file_stat.h" #include "gtm_rename.h" @@ -91,11 +84,6 @@ if (SYSCALL_ERROR(info->status) || SYSCALL_ERROR(info->status2)) \ return EXIT_ERR; \ } -#if defined(VMS) -#define ZERO_SIZE_IN_BLOCKS 127 /* 127 is RMS maximum blocks / write */ -#define ZERO_SIZE (ZERO_SIZE_IN_BLOCKS * DISK_BLOCK_SIZE) -#endif - GBLREF jnl_gbls_t jgbl; GBLREF boolean_t mupip_jnl_recover; GBLREF jnl_process_vector *prc_vec; @@ -121,7 +109,7 @@ uint4 cre_jnl_file(jnl_create_info *info) boolean_t no_rename; assert(0 != jgbl.gbl_jrec_time); - if (!info->no_rename) /* ***MAY*** be rename is required */ + if (!info->no_rename) /* ***MAYBE*** rename is required */ { no_rename = FALSE; if (SS_NORMAL != (info->status = prepare_unique_name((char *)info->jnl, info->jnl_len, "", "", @@ -178,13 +166,6 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ fd_type channel; char *jrecbuf, *jrecbuf_base; gd_id jnlfile_id; -# ifdef VMS - struct FAB fab; - struct NAM nam; - char es_buffer[MAX_FN_LEN], name_buffer[MAX_FN_LEN]; - uint4 blk, block, zero_size; - io_status_block_disk iosb; -# else struct stat stat_buf; int fstat_res; ZOS_ONLY(int realfiletag;) @@ -193,7 +174,6 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ int group_id; struct stat sb; int perm; -# endif int idx; trans_num db_tn; uint4 temp_offset, temp_checksum, pfin_offset, eof_offset; @@ -226,8 +206,7 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ return EXIT_ERR; } } -# ifdef UNIX - OPENFILE3((char *)create_fn, O_CREAT | O_EXCL | O_RDWR, 0600, channel); + OPENFILE3_CLOEXEC((char *)create_fn, O_CREAT | O_EXCL | O_RDWR, 0600, channel); if (-1 == channel) { info->status = errno; @@ -287,54 +266,7 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ jrecbuf = (char *)ROUND_UP2((uintszofptr_t)jrecbuf_base, jnl_fs_block_size); memset(jrecbuf, 0, jnl_fs_block_size); set_gdid_from_stat(&jnlfile_id, &stat_buf); -# else - nam = cc$rms_nam; - nam.nam$l_rsa = name_buffer; - nam.nam$b_rss = SIZEOF(name_buffer); - nam.nam$l_esa = es_buffer; - nam.nam$b_ess = SIZEOF(es_buffer); - nam.nam$b_nop = NAM$M_NOCONCEAL; - fab = cc$rms_fab; - fab.fab$l_nam = &nam; - fab.fab$b_org = FAB$C_SEQ; - fab.fab$b_rfm = FAB$C_FIX; - fab.fab$l_fop = FAB$M_UFO | FAB$M_MXV | FAB$M_CBT; - fab.fab$b_fac = FAB$M_GET | FAB$M_PUT | FAB$M_BIO; - fab.fab$b_shr = FAB$M_SHRGET | FAB$M_SHRPUT | FAB$M_UPI | FAB$M_NIL; - fab.fab$w_mrs = DISK_BLOCK_SIZE; - fab.fab$l_alq = info->alloc; - fab.fab$w_deq = info->extend; - fab.fab$l_fna = create_fn; - fab.fab$b_fns = create_fn_len; - info->status = sys$create(&fab); - if (0 == (info->status & 1)) - { - info->status2 = fab.fab$l_stv; /* store secondary status information */ - STATUS_MSG(info); - return EXIT_ERR; - } - channel = fab.fab$l_stv; - jrecbufbase_size = ZERO_SIZE; - jrecbuf_base = jrecbuf = malloc(ZERO_SIZE); - memset(jrecbuf, 0, ZERO_SIZE); - block = (JNL_HDR_LEN >> LOG2_DISK_BLOCK_SIZE); - assert(block * DISK_BLOCK_SIZE == JNL_HDR_LEN); - for (blk = block; blk < info->alloc; blk += ZERO_SIZE_IN_BLOCKS) - { - zero_size = (blk + ZERO_SIZE_IN_BLOCKS <= info->alloc) ? - ZERO_SIZE : (info->alloc - blk) * DISK_BLOCK_SIZE; - JNL_DO_FILE_WRITE(NULL, NULL, channel, blk * DISK_BLOCK_SIZE, jrecbuf, zero_size, info->status, info->status2); - STATUS_MSG(info); - RETURN_ON_ERROR(info); - } - memcpy(jnlfile_id.dvi, &nam.nam$t_dvi, SIZEOF(jnlfile_id.dvi)); - memcpy(jnlfile_id.did, &nam.nam$w_did, SIZEOF(jnlfile_id.did)); - memcpy(jnlfile_id.fid, &nam.nam$w_fid, SIZEOF(jnlfile_id.fid)); - jnl_fs_block_size = get_fs_block_size(channel); -# endif - info->checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&jnlfile_id, SIZEOF(gd_id)); - /* Journal file header size relies on this assert */ - assert(256 == GTMCRYPT_RESERVED_HASH_LEN); + info->checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)&jnlfile_id, SIZEOF(gd_id)); header = (jnl_file_header *)(ROUND_UP2((uintszofptr_t)hdr_base, jnl_fs_block_size)); /* We have already saved previous journal file name in info */ jfh_from_jnl_info(info, header); @@ -366,11 +298,11 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ /* Already process_vector[ORIG_JPV] is memset 0 */ pini_record->filler = 0; pini_record->prefix.checksum = INIT_CHECKSUM_SEED; - temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)pini_record, SIZEOF(struct_jrec_pini)); + temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)pini_record, SIZEOF(struct_jrec_pini)); temp_offset = JNL_HDR_LEN; ADJUST_CHECKSUM(temp_checksum, temp_offset, temp_checksum); ADJUST_CHECKSUM(temp_checksum, info->checksum, pini_record->prefix.checksum); - /* EPOCHs are written unconditionally in Unix while they are written only for BEFORE_IMAGE in VMS */ + /* EPOCHs are written unconditionally in Unix */ if (JNL_HAS_EPOCH(info)) { epoch_record = (struct_jrec_epoch *)&jrecbuf[PINI_RECLEN]; @@ -385,22 +317,15 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ epoch_record->fully_upgraded = info->csd->fully_upgraded; epoch_record->suffix.suffix_code = JNL_REC_SUFFIX_CODE; epoch_record->jnl_seqno = info->reg_seqno; - UNIX_ONLY( - for (idx = 0; idx < MAX_SUPPL_STRMS; idx++) - epoch_record->strm_seqno[idx] = info->csd->strm_reg_seqno[idx]; - if (jgbl.forw_phase_recovery) - { /* If MUPIP JOURNAL -ROLLBACK, might need some adjustment. See macro definition for comments */ - MUR_ADJUST_STRM_REG_SEQNO_IF_NEEDED(info->csd, epoch_record->strm_seqno); - } - ) - VMS_ONLY( - for (idx = 0; idx < MAX_SUPPL_STRMS; idx++) - assert(0 == epoch_record->strm_seqno[idx]); /* should have been zeroed already by above memset */ - ) + for (idx = 0; idx < MAX_SUPPL_STRMS; idx++) + epoch_record->strm_seqno[idx] = info->csd->strm_reg_seqno[idx]; + if (jgbl.forw_phase_recovery) + { /* If MUPIP JOURNAL -ROLLBACK, might need some adjustment. See macro definition for comments */ + MUR_ADJUST_STRM_REG_SEQNO_IF_NEEDED(info->csd, epoch_record->strm_seqno); + } epoch_record->filler = 0; epoch_record->prefix.checksum = INIT_CHECKSUM_SEED; - temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, - (uint4 *)epoch_record, SIZEOF(struct_jrec_epoch)); + temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)epoch_record, SIZEOF(struct_jrec_epoch)); temp_offset = JNL_HDR_LEN + PINI_RECLEN; ADJUST_CHECKSUM(temp_checksum, temp_offset, temp_checksum); ADJUST_CHECKSUM(temp_checksum, info->checksum, epoch_record->prefix.checksum); @@ -425,7 +350,7 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ pfin_record->suffix.suffix_code = JNL_REC_SUFFIX_CODE; pfin_record->filler = 0; pfin_record->prefix.checksum = INIT_CHECKSUM_SEED; - temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)pfin_record, SIZEOF(struct_jrec_pfin)); + temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)pfin_record, SIZEOF(struct_jrec_pfin)); ADJUST_CHECKSUM(temp_checksum, pfin_offset, temp_checksum); ADJUST_CHECKSUM(temp_checksum, info->checksum, pfin_record->prefix.checksum); eof_record->prefix.jrec_type = JRT_EOF; @@ -437,7 +362,7 @@ uint4 cre_jnl_file_common(jnl_create_info *info, char *rename_fn, int rename_fn_ eof_record->suffix.suffix_code = JNL_REC_SUFFIX_CODE; eof_record->filler = 0; eof_record->prefix.checksum = INIT_CHECKSUM_SEED; - temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)eof_record, SIZEOF(struct_jrec_eof)); + temp_checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)eof_record, SIZEOF(struct_jrec_eof)); ADJUST_CHECKSUM(temp_checksum, eof_offset, temp_checksum); ADJUST_CHECKSUM(temp_checksum, info->checksum, eof_record->prefix.checksum); /* Assert that the journal file header and journal records are all in sync with respect to the db tn. */ diff --git a/sr_port/cre_jnl_file_intrpt_rename.c b/sr_port/cre_jnl_file_intrpt_rename.c old mode 100644 new mode 100755 diff --git a/sr_port/create_dummy_gbldir.c b/sr_port/create_dummy_gbldir.c old mode 100644 new mode 100755 diff --git a/sr_port/crit_wake.h b/sr_port/crit_wake.h old mode 100644 new mode 100755 diff --git a/sr_port/cryptdef.h b/sr_port/cryptdef.h old mode 100644 new mode 100755 index 3110f0e4..01d0bc0f --- a/sr_port/cryptdef.h +++ b/sr_port/cryptdef.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2009 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -25,20 +26,13 @@ typedef struct #define CRYPT_CHKSYSTEM { if (!licensed) \ { \ - if ((lkid & 4) == 4) \ - { \ - GTMASSERT; \ - } \ + assertpro((lkid & 4) != 4); \ lkid++; \ } \ } #if defined (DEBUG) || defined (NOLICENSE) -#define LP_LICENSED(a,b,c,d,e,f,g,h,i,j) 1 /* equivalent to SS$_NORMAL */ -#if defined (VMS) -#define LP_ACQUIRE(a,b,c,d) lp_id(d) -#else +#define LP_LICENSED(a,b,c,d,e,f,g,h,i,j) 1 #define LP_ACQUIRE(a,b,c,d) 1 -#endif #define LP_CONFIRM(a,b) 1 #else #define LP_LICENSED(a,b,c,d,e,f,g,h,i,j) lp_licensed(a,b,c,d,e,f,g,h,i,j) diff --git a/sr_port/ctrlc_handler_dummy.c b/sr_port/ctrlc_handler_dummy.c old mode 100644 new mode 100755 diff --git a/sr_port/ctrlc_handler_dummy.h b/sr_port/ctrlc_handler_dummy.h old mode 100644 new mode 100755 diff --git a/sr_port/cvtparm.c b/sr_port/cvtparm.c old mode 100644 new mode 100755 diff --git a/sr_port/cvtparm.h b/sr_port/cvtparm.h old mode 100644 new mode 100755 diff --git a/sr_port/cvtprot.h b/sr_port/cvtprot.h old mode 100644 new mode 100755 diff --git a/sr_port/cvttime.h b/sr_port/cvttime.h old mode 100644 new mode 100755 diff --git a/sr_port/cws_insert.h b/sr_port/cws_insert.h old mode 100644 new mode 100755 diff --git a/sr_port/d.mpt b/sr_port/d.mpt old mode 100644 new mode 100755 diff --git a/sr_port/date.mpt b/sr_port/date.mpt old mode 100644 new mode 100755 diff --git a/sr_port/db_auto_upgrade.c b/sr_port/db_auto_upgrade.c index 785c3efd..8700c2f6 100644 --- a/sr_port/db_auto_upgrade.c +++ b/sr_port/db_auto_upgrade.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -49,9 +49,9 @@ void db_auto_upgrade(gd_region *reg) if (NULL == csd) return; - if (0 == csd->mutex_spin_parms.mutex_hard_spin_count) + if (0 > csd->mutex_spin_parms.mutex_hard_spin_count) csd->mutex_spin_parms.mutex_hard_spin_count = MUTEX_HARD_SPIN_COUNT; - if (0 == csd->mutex_spin_parms.mutex_sleep_spin_count) + if (0 > csd->mutex_spin_parms.mutex_sleep_spin_count) csd->mutex_spin_parms.mutex_sleep_spin_count = MUTEX_SLEEP_SPIN_COUNT; /* zero is a legitimate value for csd->mutex_spin_parms.mutex_spin_sleep_mask; so can't detect if need re-initialization */ INIT_NUM_CRIT_ENTRY_IF_NEEDED(csd); @@ -104,7 +104,7 @@ void db_auto_upgrade(gd_region *reg) * d) Add a new case with the new minor version * e) Add assert(FALSE) and break (like it was before) */ - switch(csd->minor_dbver) + switch (csd->minor_dbver) { /* Note that handling for any fields introduced in a version will not go in the "switch-case" block * of code introduced for the new version but will go in the PREVIOUS "switch-case" block. */ @@ -115,26 +115,8 @@ void db_auto_upgrade(gd_region *reg) case GDSMV53000: /* M-Itanium release */ gvstats_rec_upgrade(csa); /* Move GVSTATS information to new place in file header */ case GDSMV53003: /* ZSHOW "G" release */ - /* The following two operations are commented out because they cause issues with backup-and-restore - * operations between versions that do not support encryption and encrypted databases created with - * versions that do. Consider the following example. - * - * Say, we first create a database using an old version that does not support encryption and write a - * few updates to it. Then we back up that database and create a new, encrypted database using the - * current version. Next, we restore the backup onto the new database. Because the file header of - * the new database indicates that it is encrypted, MUPIP RESTORE encrypts all blocks that it pulls - * from the backup and ensures that the is_encrypted field remains TRUE even after overwriting it - * with the backup's file header. So, now we have an encrypted database with encrypted data in it, - * which is how it should be. - * - * However, if we now attempt to write some updates, we would come here and, having noticed that the - * minor version predates encryption, unset the is_encrypted field. As a result, we would produce an - * unencrypted database (according to the file header) with encrypted data in it. That is the reason - * the following two lines are commented out. - * - * csd->is_encrypted = FALSE; - * memset(csd->encryption_hash, 0, GTMCRYPT_RESERVED_HASH_LEN); - */ + csd->is_encrypted = FALSE; + memset(csd->encryption_hash, 0, GTMCRYPT_RESERVED_HASH_LEN); case GDSMV53004: /* New encryption fields */ csd->db_trigger_cycle = 0; case GDSMV54000: /* First trigger version */ @@ -171,8 +153,15 @@ void db_auto_upgrade(gd_region *reg) csd->epoch_taper = TRUE; csd->epoch_taper_time_pct = EPOCH_TAPER_TIME_PCT_DEFAULT; csd->epoch_taper_jnl_pct = EPOCH_TAPER_JNL_PCT_DEFAULT; - break; case GDSMV62002: + /* GT.M V63000 introduced non-null IV encryption and encryption on-the-fly. */ + csd->non_null_iv = FALSE; + csd->encryption_hash_cutoff = UNSTARTED; + csd->encryption_hash2_start_tn = 0; + memset(csd->encryption_hash2, 0, GTMCRYPT_RESERVED_HASH_LEN); + SPIN_SLEEP_MASK(csd) = 0; /* previously unused, but was 7FF and it should now default to 0 */ + break; + case GDSMV63000: /* Nothing to do for this version since it is GDSMVCURR for now. */ assert(FALSE); /* When this assert fails, it means a new GDSMV* was created, */ break; /* so a new "case" needs to be added BEFORE the assert. */ diff --git a/sr_port/db_common_init.c b/sr_port/db_common_init.c old mode 100644 new mode 100755 index 3175c858..e02c0025 --- a/sr_port/db_common_init.c +++ b/sr_port/db_common_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2009 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -23,8 +24,11 @@ #include "filestruct.h" #include "iosp.h" #include "jnl.h" +#include "wcs_clean_dbsync.h" /* for setting wcs_clean_dbsync pointer */ GBLREF jnl_process_vector *prc_vec; +GBLREF void (*wcs_stale_fptr)(); +GBLREF void (*wcs_clean_dbsync_fptr)(); void db_common_init(gd_region *reg, sgmnt_addrs *csa, sgmnt_data_ptr_t csd) { @@ -49,4 +53,6 @@ void db_common_init(gd_region *reg, sgmnt_addrs *csa, sgmnt_data_ptr_t csd) prc_vec = (jnl_process_vector *)malloc(SIZEOF(jnl_process_vector)); jnl_prc_vector(prc_vec); } + wcs_stale_fptr = &wcs_stale; + wcs_clean_dbsync_fptr = &wcs_clean_dbsync; } diff --git a/sr_port/db_csh_get.c b/sr_port/db_csh_get.c old mode 100644 new mode 100755 diff --git a/sr_port/db_csh_getn.c b/sr_port/db_csh_getn.c index 3f37e7a2..66b5c2f9 100644 --- a/sr_port/db_csh_getn.c +++ b/sr_port/db_csh_getn.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -11,7 +12,7 @@ #include "mdef.h" -#include /* needed for VSIG_ATOMIC_T */ +#include "gtm_signal.h" /* needed for VSIG_ATOMIC_T */ #include "gdsroot.h" #include "gdsblk.h" @@ -39,7 +40,6 @@ #include "cws_insert.h" #include "wcs_sleep.h" #include "wcs_get_space.h" -#include "wcs_timer_start.h" #include "add_inter.h" #include "wbox_test_init.h" #include "have_crit.h" @@ -86,6 +86,7 @@ cache_rec_ptr_t db_csh_getn(block_id block) srch_blk_status *tp_srch_status; ht_ent_int4 *tabent; boolean_t dont_flush_buff; + intrpt_state_t prev_intrpt_state; DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -94,6 +95,11 @@ cache_rec_ptr_t db_csh_getn(block_id block) assert(dba_mm != csd->acc_meth); assert(csa->now_crit); assert(csa == &FILE_INFO(gv_cur_region)->s_addrs); + /* If this is an encrypted database, make sure our private cycle matches the shared cycle. Or else + * if we need to call "wcs_wtstart" below, it cannot flush dirty buffers and will create a wc_blocked + * situation (which is best avoided). + */ + assert((NULL == csa->encr_ptr) || (csa->nl->reorg_encrypt_cycle == csa->encr_ptr->reorg_encrypt_cycle)); max_ent = csd->n_bts; hdr = csa->acc_meth.bg.cache_state->cache_array + (block % csd->bt_buckets); start_cr = csa->acc_meth.bg.cache_state->cache_array + csd->bt_buckets; @@ -117,7 +123,7 @@ cache_rec_ptr_t db_csh_getn(block_id block) dont_flush_buff = gv_cur_region->read_only UNIX_ONLY(|| (!(dollar_tlevel ? sgm_info_ptr->update_trans : update_trans) && IS_REPL_INST_FROZEN)); INCR_DB_CSH_COUNTER(csa, n_db_csh_getns, 1); - DEFER_INTERRUPTS(INTRPT_IN_DB_CSH_GETN); + DEFER_INTERRUPTS(INTRPT_IN_DB_CSH_GETN, prev_intrpt_state); for (lcnt = 0; ; lcnt++) { if (lcnt > pass3) @@ -157,10 +163,6 @@ cache_rec_ptr_t db_csh_getn(block_id block) } } assert((start_cr <= cr) && ((start_cr + max_ent) > cr)); - VMS_ONLY( - if ((lcnt == pass1) || (lcnt == pass2)) - wcs_wtfini(gv_cur_region); - ) if (cr->refer && (lcnt < pass2)) { /* in passes 1 & 2, set refer to FALSE and skip; in the third pass attempt reuse even if TRUE == refer */ cr->refer = FALSE; @@ -232,11 +234,7 @@ cache_rec_ptr_t db_csh_getn(block_id block) if (dont_flush_buff) continue; if (lcnt < pass1) - { - if (!csa->timer && (csa->nl->wcs_timers < 1)) - wcs_timer_start(gv_cur_region, FALSE); continue; - } BG_TRACE_PRO(db_csh_getn_flush_dirty); if (FALSE == wcs_get_space(gv_cur_region, 0, cr)) { /* failed to flush it out - force a rebuild */ @@ -247,43 +245,40 @@ cache_rec_ptr_t db_csh_getn(block_id block) } assert(0 == cr->dirty); } - UNIX_ONLY( - /* the cache-record is not free for reuse until the write-latch value becomes LATCH_CLEAR. - * In VMS, resetting the write-latch value occurs in "wcs_wtfini" which is in CRIT, we are fine. - * In Unix, this resetting is done by "wcs_wtstart" which is out-of-crit. Therefore, we need to - * wait for this value to be LATCH_CLEAR before reusing this cache-record. - * Note that we are examining the write-latch-value without holding the interlock. It is ok to do - * this because the only two routines that modify the latch value are "bg_update" and - * "wcs_wtstart". The former cannot be concurrently executing because we are in crit. - * The latter will not update the latch value unless this cache-record is dirty. But in this - * case we would have most likely gone through the if (cr->dirty) check above. Most likely - * because there is one rare possibility where a concurrent "wcs_wtstart" has set cr->dirty - * to 0 but not yet cleared the latch. In that case we wait for the latch to be cleared. - * In all other cases, nobody is modifying the latch since when we got crit and therefore - * it is safe to observe the value of the latch without holding the interlock. + /* the cache-record is not free for reuse until the write-latch value becomes LATCH_CLEAR. + * This resetting is done by "wcs_wtstart" which is out-of-crit. Therefore, we need to + * wait for this value to be LATCH_CLEAR before reusing this cache-record. + * Note that we are examining the write-latch-value without holding the interlock. It is ok to do + * this because the only two routines that modify the latch value are "bg_update" and + * "wcs_wtstart". The former cannot be concurrently executing because we are in crit. + * The latter will not update the latch value unless this cache-record is dirty. But in this + * case we would have most likely gone through the if (cr->dirty) check above. Most likely + * because there is one rare possibility where a concurrent "wcs_wtstart" has set cr->dirty + * to 0 but not yet cleared the latch. In that case we wait for the latch to be cleared. + * In all other cases, nobody is modifying the latch since when we got crit and therefore + * it is safe to observe the value of the latch without holding the interlock. + */ + if (LATCH_CLEAR != WRITE_LATCH_VAL(cr)) + { /* possible if a concurrent "wcs_wtstart" has set cr->dirty to 0 but not yet + * cleared the latch. this should be very rare though. */ - if (LATCH_CLEAR != WRITE_LATCH_VAL(cr)) - { /* possible if a concurrent "wcs_wtstart" has set cr->dirty to 0 but not yet - * cleared the latch. this should be very rare though. - */ - if (lcnt < pass2) - continue; /* try to find some other cache-record to reuse until the 3rd pass */ - for (ocnt = 1; (MAXWRTLATCHWAIT >= ocnt) && (LATCH_CLEAR != WRITE_LATCH_VAL(cr)); ocnt++) - wcs_sleep(SLEEP_WRTLATCHWAIT); /* since it is a short lock, sleep the minimum */ - if (MAXWRTLATCHWAIT <= ocnt) - { - BG_TRACE_PRO(db_csh_getn_wrt_latch_stuck); - assert(FALSE); - continue; - } + if (lcnt < pass2) + continue; /* try to find some other cache-record to reuse until the 3rd pass */ + for (ocnt = 1; (MAXWRTLATCHWAIT >= ocnt) && (LATCH_CLEAR != WRITE_LATCH_VAL(cr)); ocnt++) + wcs_sleep(SLEEP_WRTLATCHWAIT); /* since it is a short lock, sleep the minimum */ + if (MAXWRTLATCHWAIT <= ocnt) + { + BG_TRACE_PRO(db_csh_getn_wrt_latch_stuck); + assert(FALSE); + continue; } - ) + } /* Note that before setting up a buffer for the requested block, we should make sure the cache-record's - * read_in_progress is set. This is so that noone else in t_qread gets access to this empty buffer. + * read_in_progress is set. This is so that no one else in t_qread gets access to this empty buffer. * By setting up a buffer, it is meant assigning cr->blk in addition to inserting the cr in the blkques * through "shuffqth" below. * Note that "t_qread" has special code to handle read_in_progress */ - LOCK_BUFF_FOR_READ(cr, rip); + LOCK_BUFF_FOR_READ(cr, rip); /* lock is too long for a general form spin lock but too granular for a mutex */ if (0 != rip) { if (lcnt < pass2) @@ -362,6 +357,8 @@ cache_rec_ptr_t db_csh_getn(block_id block) /* got a block - set it up */ assert(0 == cr->epid); assert(0 == cr->r_epid); + assert(NULL == TREF(block_now_locked)); + TREF(block_now_locked) = cr; cr->r_epid = process_id; /* establish ownership */ cr->image_count = image_count; cr->blk = block; @@ -399,12 +396,12 @@ cache_rec_ptr_t db_csh_getn(block_id block) csa->nl->cache_hits = 0; } INCR_DB_CSH_COUNTER(csa, n_db_csh_getn_lcnt, lcnt); - ENABLE_INTERRUPTS(INTRPT_IN_DB_CSH_GETN); + ENABLE_INTERRUPTS(INTRPT_IN_DB_CSH_GETN, prev_intrpt_state); return cr; } /* force a recover */ INCR_DB_CSH_COUNTER(csa, n_db_csh_getn_lcnt, lcnt); csa->nl->cur_lru_cache_rec_off = GDS_ABS2REL(cr); - ENABLE_INTERRUPTS(INTRPT_IN_DB_CSH_GETN); + ENABLE_INTERRUPTS(INTRPT_IN_DB_CSH_GETN, prev_intrpt_state); return (cache_rec_ptr_t)CR_NOTVALID; } diff --git a/sr_port/db_csh_ini.c b/sr_port/db_csh_ini.c old mode 100644 new mode 100755 diff --git a/sr_port/db_csh_ref.c b/sr_port/db_csh_ref.c old mode 100644 new mode 100755 index 89fd573f..ad9175b5 --- a/sr_port/db_csh_ref.c +++ b/sr_port/db_csh_ref.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -26,9 +27,10 @@ error_def(ERR_WCFAIL); GBLREF int4 process_id; -#if defined(UNIX) && defined(DEBUG) +#ifdef DEBUG GBLREF jnl_gbls_t jgbl; #endif + /* Refresh the database cache records in the shared memory. If init = TRUE, do the longset and initialize all the latches and * forward and backward links. If init = FALSE, just increment the cycle and set the blk to CR_BLKEMPTY. */ @@ -70,14 +72,11 @@ void db_csh_ref(sgmnt_addrs *csa, boolean_t init) } bp = (sm_uc_ptr_t)ROUND_UP((sm_ulong_t)cr_top, OS_PAGE_SIZE); bp_top = bp + (gtm_uint64_t)csd->n_bts * buffer_size; - GTMCRYPT_ONLY( - if (csd->is_encrypted) - { /* In case of an encrypted database, bp_top is actually the beginning of the encrypted global buffer - * array (an array maintained parallely with the regular unencrypted global buffer array. - */ - cnl->encrypt_glo_buff_off = (sm_off_t)((sm_uc_ptr_t)bp_top - (sm_uc_ptr_t)bp); - } - ) + /* In case of an encrypted database, bp_top is actually the beginning of the encrypted global buffer array (an array + * maintained parallely with the regular unencrypted global buffer array. + */ + if (USES_ENCRYPTION(csd->is_encrypted)) + cnl->encrypt_glo_buff_off = (sm_off_t)((sm_uc_ptr_t)bp_top - (sm_uc_ptr_t)bp); for (; cr < cr_top; cr = (cache_rec_ptr_t)((sm_uc_ptr_t)cr + rec_size), cr1 = (cache_rec_ptr_t)((sm_uc_ptr_t)cr1 + rec_size)) { diff --git a/sr_port/dbcertify.c b/sr_port/dbcertify.c old mode 100644 new mode 100755 diff --git a/sr_port/dbcertify.h b/sr_port/dbcertify.h old mode 100644 new mode 100755 diff --git a/sr_port/dbcertify_base_ch.c b/sr_port/dbcertify_base_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/dbcertify_certify_phase.c b/sr_port/dbcertify_certify_phase.c old mode 100644 new mode 100755 index 30dfbd8d..c9473529 --- a/sr_port/dbcertify_certify_phase.c +++ b/sr_port/dbcertify_certify_phase.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2005-2015 Fidelity National Information * + * Copyright (c) 2005-2015 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -130,7 +130,7 @@ void dbcertify_certify_phase(void) if (CLI_PRESENT == cli_present("BLOCKS")) { if (!cli_get_hex("BLOCKS", &psa->blocks_to_process)) - exit(EXIT_FAILURE); /* Error message already raised */ + EXIT(EXIT_FAILURE); /* Error message already raised */ } else psa->blocks_to_process = MAXTOTALBLKS_V4; if (CLI_PRESENT == cli_present("TEMPFILE_DIR")) @@ -414,8 +414,8 @@ void dbcertify_certify_phase(void) boolean_t dbc_split_blk(phase_static_area *psa, block_id blk_num, enum gdsblk_type blk_type, v15_trans_num tn, int blk_levl) { int blk_len, blk_size, restart_cnt, save_block_depth, tmp_blk_levl; - int gvtblk_index, dtblk_index, blk_index, bottom_tree_index, bottom_created_index; - int curr_blk_len, curr_blk_levl, curr_rec_len, ins_key_len, ins_rec_len; + int gvtblk_index, dtblk_index, blk_index, bottom_tree_index; + int curr_blk_len, curr_blk_levl, curr_rec_len, ins_rec_len; int curr_rec_shrink, curr_rec_offset, blks_this_lmap; int prev_rec_offset, new_blk_len, new_rec_len, remain_offset, remain_len, blk_seg_cnt; int new_lh_blk_len, new_rh_blk_len, created_blocks, extent_size; @@ -793,12 +793,10 @@ boolean_t dbc_split_blk(phase_static_area *psa, block_id blk_num, enum gdsblk_ty curr_blk_len = blk_set_p->blk_len; curr_blk_levl = blk_set_p->blk_levl; if (0 != blk_set_p->ins_rec.ins_key->end) - { - ins_key_len = blk_set_p->ins_rec.ins_key->end + 1; - ins_rec_len = ins_key_len + SIZEOF(block_id); /* We only ever insert index records */ + { /* We only ever insert index records */ + ins_rec_len = blk_set_p->ins_rec.ins_key->end + 1 + SIZEOF(block_id); } else - ins_key_len = ins_rec_len = 0; - blk_p = blk_set_p->old_buff; + ins_rec_len = 0; /* If ins_rec_len has a non-zero value, then we need to reset the values for prev_match and * key_match. These values were computed using the original scan key as their basis. Now we * are using these fields to insert a new key. The positioning is still correct but the @@ -1319,9 +1317,8 @@ boolean_t dbc_split_blk(phase_static_area *psa, block_id blk_num, enum gdsblk_ty return TRUE; } /* The update arrarys are complete, we know there are sufficient free blocks in the database to accomodate - * the splitting we have to do. + * the splitting we have to do. From here on out are bit map blocks: psa->block_depth */ - bottom_created_index = psa->block_depth; /* From here on out are bit map blocks */ bplmap = psa->dbc_cs_data->bplmap; if (0 != created_blocks) { /* Run through the created blocks assigning block numbers and filling the numbers into the buffers diff --git a/sr_port/dbcertify_funcs.c b/sr_port/dbcertify_funcs.c old mode 100644 new mode 100755 index b2bd685a..bc2d02fc --- a/sr_port/dbcertify_funcs.c +++ b/sr_port/dbcertify_funcs.c @@ -51,6 +51,7 @@ #include "error.h" #include "jnl.h" #include "trans_log_name.h" +#include "have_crit.h" #include "dbcertify.h" #define FILETAB "File " @@ -102,7 +103,7 @@ void dbc_open_command_file(phase_static_area *psa) rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_GTMDISTUNDEF); assert(0 < gtm_dist_path.len); VMS_ONLY(dbc_remove_command_file(psa)); /* If we don't do this, the command files versions pile up fast */ - psa->tcfp = Fopen((char_ptr_t)psa->tmpcmdfile, "w"); + Fopen(psa->tcfp, (char_ptr_t)psa->tmpcmdfile, "w"); if (NULL == psa->tcfp) { save_errno = errno; @@ -147,9 +148,11 @@ void dbc_write_command_file(phase_static_area *psa, char_ptr_t cmd) /* Close the temporary command file */ void dbc_close_command_file(phase_static_area *psa) { + int status; + assert(NULL != psa && NULL != psa->tcfp); assert(psa->tmp_file_names_gend); - fclose(psa->tcfp); + FCLOSE(psa->tcfp, status); psa->tcfp = NULL; } @@ -216,7 +219,7 @@ void dbc_open_result_file(phase_static_area *psa) assert(NULL != psa && NULL == psa->trfp); assert(psa->tmp_file_names_gend); - psa->trfp = Fopen((char_ptr_t)psa->tmprsltfile, "r"); + Fopen(psa->trfp, (char_ptr_t)psa->tmprsltfile, "r"); if (0 == psa->trfp) { save_errno = errno; @@ -257,7 +260,7 @@ uchar_ptr_t dbc_read_result_file(phase_static_area *psa, int rderrmsg, uchar_ptr RTS_ERROR_TEXT(emsg)); } } - exit(EXIT_FAILURE); /* We shouldn't come here but in case... */ + EXIT(EXIT_FAILURE); /* We shouldn't come here but in case... */ } return (uchar_ptr_t)fgs; } @@ -265,8 +268,10 @@ uchar_ptr_t dbc_read_result_file(phase_static_area *psa, int rderrmsg, uchar_ptr /* Close the temporary command file */ void dbc_close_result_file(phase_static_area *psa) { + int status; + assert(NULL != psa && NULL != psa->trfp); - fclose(psa->trfp); + FCLOSE(psa->trfp, status); psa->trfp = NULL; } diff --git a/sr_port/dbcertify_scan_phase.c b/sr_port/dbcertify_scan_phase.c old mode 100644 new mode 100755 index ef495f26..428732b2 --- a/sr_port/dbcertify_scan_phase.c +++ b/sr_port/dbcertify_scan_phase.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2005-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -232,14 +233,14 @@ void dbcertify_scan_phase(void) gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_DBMINRESBYTES, 2, VMS_ONLY(9) UNIX_ONLY(8), psa->dbc_cs_data->reserved_bytes); if (!psa->report_only) - exit(SS_NORMAL - 1); /* Gives -1 on UNIX (failure) and 0 on VMS (failure) */ + EXIT(SS_NORMAL - 1); /* Gives -1 on UNIX (failure) and 0 on VMS (failure) */ } if (psa->dbc_cs_data->max_rec_size > max_max_rec_size) { gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(5) ERR_DBMAXREC2BIG, 3, psa->dbc_cs_data->max_rec_size, psa->dbc_cs_data->blk_size, max_max_rec_size); if (!psa->report_only) - exit(SS_NORMAL - 1); + EXIT(SS_NORMAL - 1); } /* If not REPORT_ONLY, open the phase-1 output file and write header info. Note this will be * re-written at the completion of the process. @@ -621,11 +622,9 @@ void dbc_process_block(phase_static_area *psa, int blk_num, gtm_off_t dbptr) */ if (rec2_len) { /* There is a 2nd record */ - rec_ptr = rec2_ptr; key_pfx = "[2] "; } else { /* No 2nd record, format 1st record instead */ - rec_ptr = rec1_ptr; key_pfx = "[1] "; } key_ptr = dbc_format_key(psa, (rec2_len ? rec2_ptr : rec1_ptr)); diff --git a/sr_port/dbfilop.h b/sr_port/dbfilop.h old mode 100644 new mode 100755 diff --git a/sr_port/ddphdr.h b/sr_port/ddphdr.h old mode 100644 new mode 100755 index 86a7b1d5..42fe1518 --- a/sr_port/ddphdr.h +++ b/sr_port/ddphdr.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2003 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -110,15 +111,13 @@ typedef int4 condition_code; #define DDP_LOG_ERROR(err_len, err_string) \ { \ - now_t now; /* for GET_CUR_TIME macro */ \ char time_str[CTIME_BEFORE_NL + 2]; /* for GET_CUR_TIME macro*/ \ - char *time_ptr; /* for GET_CUR_TIME macro*/ \ bool save_dec_nofac; \ \ - GET_CUR_TIME; \ + GET_CUR_TIME(time_str); \ save_dec_nofac = dec_nofac; /* save for later restore */ \ dec_nofac = TRUE; /* don't need error mnemonic prefix, just print the message contents */ \ - dec_err(VARLSTCNT(6) ERR_DDPLOGERR, 4, CTIME_BEFORE_NL, time_ptr, (err_len), (err_string)); \ + dec_err(VARLSTCNT(6) ERR_DDPLOGERR, 4, CTIME_BEFORE_NL, &time_str[0], (err_len), (err_string)); \ dec_nofac = save_dec_nofac; /* back to what it was */ \ } diff --git a/sr_port/deferred_events.c b/sr_port/deferred_events.c old mode 100644 new mode 100755 diff --git a/sr_port/deferred_events.h b/sr_port/deferred_events.h old mode 100644 new mode 100755 diff --git a/sr_port/desired_db_format_set.c b/sr_port/desired_db_format_set.c old mode 100644 new mode 100755 index 7c9afd8c..75a07fb8 --- a/sr_port/desired_db_format_set.c +++ b/sr_port/desired_db_format_set.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2005-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -68,19 +69,18 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm assert(reg->open); csa = &FILE_INFO(reg)->s_addrs; csd = csa->hdr; - GTMCRYPT_ONLY( - /* We don't allow databases to be encrypted if the version is V4 */ - if (csd->is_encrypted && (GDSV4 == new_db_format)) - { - gtm_putmsg(VARLSTCNT(4) ERR_CRYPTNOV4, 2, DB_LEN_STR(reg)); - return ERR_CRYPTNOV4; - } - ) + /* We do not allow databases to be encrypted if the version is V4. */ + if (USES_ENCRYPTION(csd->is_encrypted) && (GDSV4 == new_db_format)) + { + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(4) ERR_CRYPTNOV4, 2, DB_LEN_STR(reg)); + return ERR_CRYPTNOV4; + } GTM_SNAPSHOT_ONLY( /* We don't allow databases to be downgraded when snapshots are in progress */ if (SNAPSHOTS_IN_PROG(csa->nl) && (GDSV4 == new_db_format)) { - gtm_putmsg(VARLSTCNT(5) ERR_SNAPSHOTNOV4, 3, csa->nl->num_snapshots_in_effect, DB_LEN_STR(reg)); + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(5) ERR_SNAPSHOTNOV4, + 3, csa->nl->num_snapshots_in_effect, DB_LEN_STR(reg)); return ERR_SNAPSHOTNOV4; } ) @@ -95,13 +95,10 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm assert(csd->trans_hist.curr_tn <= csd->max_tn); if ((GDSV4 == new_db_format) && (MAX_TN_V4 < csd->max_tn)) { /* reset max_tn to MAX_TN_V4 only if V4 format and the new value will still be greater than curr_tn */ - if (MAX_TN_V4 >= csd->trans_hist.curr_tn) - { - csd->max_tn = MAX_TN_V4; - /* since max_tn changed above, max_tn_warn might also need to correspondingly change */ - SET_TN_WARN(csd, csd->max_tn_warn); - } else - GTMASSERT; /* out-of-design state where curr_tn > MAX_TN_V4 in GDSV4 */ + assertpro(MAX_TN_V4 >= csd->trans_hist.curr_tn); + csd->max_tn = MAX_TN_V4; + /* since max_tn changed above, max_tn_warn might also need to correspondingly change */ + SET_TN_WARN(csd, csd->max_tn_warn); } if (FALSE == was_crit) rel_crit(reg); @@ -110,7 +107,7 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm if (dba_mm == csd->acc_meth) { status = ERR_MMNODYNDWNGRD; - gtm_putmsg(VARLSTCNT(4) status, 2, REG_LEN_STR(reg)); + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(4) status, 2, REG_LEN_STR(reg)); if (FALSE == was_crit) rel_crit(reg); return status; @@ -120,7 +117,7 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm if ((GDSV4 == new_db_format) && (MAX_TN_V4 <= curr_tn)) { status = ERR_MUDWNGRDTN; - gtm_putmsg(VARLSTCNT(5) status, 3, &curr_tn, DB_LEN_STR(reg)); + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(5) status, 3, &curr_tn, DB_LEN_STR(reg)); if (FALSE == was_crit) rel_crit(reg); return status; @@ -130,10 +127,11 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm { /* Set wc_blocked so next process to get crit will trigger cache-recovery */ SET_TRACEABLE_VAR(csa->nl->wc_blocked, TRUE); wcblocked_ptr = WCS_PHASE2_COMMIT_WAIT_LIT; - send_msg(VARLSTCNT(8) ERR_WCBLOCKED, 6, LEN_AND_STR(wcblocked_ptr), + send_msg_csa(CSA_ARG(csa) VARLSTCNT(8) ERR_WCBLOCKED, 6, LEN_AND_STR(wcblocked_ptr), process_id, &csd->trans_hist.curr_tn, DB_LEN_STR(reg)); status = ERR_COMMITWAITSTUCK; - gtm_putmsg(VARLSTCNT(7) status, 5, process_id, 1, csa->nl->wcs_phase2_commit_pidcnt, DB_LEN_STR(reg)); + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(7) status, 5, process_id, + 1, csa->nl->wcs_phase2_commit_pidcnt, DB_LEN_STR(reg)); if (FALSE == was_crit) rel_crit(reg); return status; @@ -159,12 +157,12 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm jnl_write_inctn_rec(csa); inctn_opcode = save_inctn_opcode; } else - gtm_putmsg(VARLSTCNT(6) jnl_status, 4, JNL_LEN_STR(csd), DB_LEN_STR(reg)); + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(6) jnl_status, 4, JNL_LEN_STR(csd), DB_LEN_STR(reg)); } csd->desired_db_format = new_db_format; csd->fully_upgraded = FALSE; csd->desired_db_format_tn = curr_tn; - switch(new_db_format) + switch (new_db_format) { case GDSV4: csd->max_tn = MAX_TN_V4; @@ -173,7 +171,7 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm csd->max_tn = MAX_TN_V6; break; default: - GTMASSERT; + assertpro((GDSV4 == new_db_format) || (GDSV6 == new_db_format)); } SET_TN_WARN(csd, csd->max_tn_warn); /* if max_tn changed above, max_tn_warn also needs a corresponding change */ assert(curr_tn < csd->max_tn); /* ensure CHECK_TN macro below will not issue TNTOOLARGE rts_error */ @@ -185,7 +183,7 @@ int4 desired_db_format_set(gd_region *reg, enum db_ver new_db_format, char *comm if (FALSE == was_crit) rel_crit(reg); status = SS_NORMAL; - send_msg(VARLSTCNT(11) ERR_DBDSRDFMTCHNG, 9, DB_LEN_STR(reg), LEN_AND_STR(gtm_dbversion_table[new_db_format]), - LEN_AND_STR(command_name), process_id, process_id, &curr_tn); + send_msg_csa(CSA_ARG(csa) VARLSTCNT(11) ERR_DBDSRDFMTCHNG, 9, DB_LEN_STR(reg), + LEN_AND_STR(gtm_dbversion_table[new_db_format]), LEN_AND_STR(command_name), process_id, process_id, &curr_tn); return status; } diff --git a/sr_port/desired_db_format_set.h b/sr_port/desired_db_format_set.h old mode 100644 new mode 100755 diff --git a/sr_port/deviceparameters.c b/sr_port/deviceparameters.c old mode 100644 new mode 100755 diff --git a/sr_port/deviceparameters.h b/sr_port/deviceparameters.h old mode 100644 new mode 100755 diff --git a/sr_port/dfa_calc.c b/sr_port/dfa_calc.c old mode 100644 new mode 100755 diff --git a/sr_port/dh.mpt b/sr_port/dh.mpt old mode 100644 new mode 100755 diff --git a/sr_port/dm_read.h b/sr_port/dm_read.h old mode 100644 new mode 100755 diff --git a/sr_port/dm_setup.h b/sr_port/dm_setup.h old mode 100644 new mode 100755 diff --git a/sr_port/do.mpt b/sr_port/do.mpt old mode 100644 new mode 100755 diff --git a/sr_port/do_indir_do.h b/sr_port/do_indir_do.h old mode 100644 new mode 100755 diff --git a/sr_port/do_patalt.c b/sr_port/do_patalt.c old mode 100644 new mode 100755 diff --git a/sr_port/do_patfixed.c b/sr_port/do_patfixed.c old mode 100644 new mode 100755 diff --git a/sr_port/do_patsplit.c b/sr_port/do_patsplit.c old mode 100644 new mode 100755 diff --git a/sr_port/do_pattern.c b/sr_port/do_pattern.c old mode 100644 new mode 100755 diff --git a/sr_port/do_xform.h b/sr_port/do_xform.h old mode 100644 new mode 100755 diff --git a/sr_port/dollar_system_init.c b/sr_port/dollar_system_init.c old mode 100644 new mode 100755 diff --git a/sr_port/dollar_system_init.h b/sr_port/dollar_system_init.h old mode 100644 new mode 100755 diff --git a/sr_port/dollar_zlevel.h b/sr_port/dollar_zlevel.h old mode 100644 new mode 100755 diff --git a/sr_port/dollarx.c b/sr_port/dollarx.c old mode 100644 new mode 100755 diff --git a/sr_port/dollarx.h b/sr_port/dollarx.h old mode 100644 new mode 100755 diff --git a/sr_port/dpgbldir.c b/sr_port/dpgbldir.c index 7240dff4..0e9a799a 100644 --- a/sr_port/dpgbldir.c +++ b/sr_port/dpgbldir.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -33,6 +34,7 @@ #include "dpgbldir_sysops.h" #include "targ_alloc.h" #include "gtm_logicals.h" +#include "zshow.h" GBLREF gd_addr *gd_header; GBLREF gv_namehead *gv_target_list; @@ -132,13 +134,13 @@ Notes: A) While checking may be done earlier for duplicate names, gd_addr *gd_load(mstr *v) { void *file_ptr; /* is a temporary structure as the file open and manipulations are currently stubs */ - header_struct *header, temp_head; + header_struct *header, temp_head, disp_head; gd_addr *table, *gd_addr_ptr; gd_binding *map, *map_top; gd_region *reg, *reg_top; uint4 t_offset, size; gd_gblname *gnam, *gnam_top; - int i, n_regions, arraysize; + int i, n_regions, arraysize, disp_len; trans_num *array; # ifdef DEBUG boolean_t prevMapIsSpanning, currMapIsSpanning, gdHasSpanGbls; @@ -165,8 +167,10 @@ gd_addr *gd_load(mstr *v) if (GDE_LABEL_NUM == i) { close_gd_file(file_ptr); + disp_len = SIZEOF(disp_head.label); + format2disp(temp_head.label, SIZEOF(temp_head.label), disp_head.label, &disp_len); rts_error_csa(CSA_ARG(NULL) VARLSTCNT(8) ERR_GDINVALID, 6, v->len, v->addr, LEN_AND_LIT(GDE_LABEL_LITERAL), - SIZEOF(temp_head.label), temp_head.label); + disp_len, disp_head.label); } size = LEGAL_IO_SIZE(temp_head.filesize); header = (header_struct *)malloc(size); diff --git a/sr_port/dpgbldir.h b/sr_port/dpgbldir.h old mode 100644 new mode 100755 diff --git a/sr_port/dse.h b/sr_port/dse.h index 63d54e84..5df50ba2 100644 --- a/sr_port/dse.h +++ b/sr_port/dse.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -75,7 +76,7 @@ enum dse_fmt if (NOCRIT_PRESENT) \ CS_ADDRS->now_crit = TRUE; \ else \ - grab_crit(GV_CUR_REGION); \ + grab_crit_encr_cycle_sync(GV_CUR_REGION); \ WAS_HOLD_ONTO_CRIT = CS_ADDRS->hold_onto_crit; \ CS_ADDRS->hold_onto_crit = TRUE; \ } \ @@ -138,36 +139,38 @@ enum dse_fmt } /* This macro is currently used only inside the BUILD_AIMG_IF_JNL_ENABLED_AND_T_END_WITH_EFFECTIVE_TN macro */ -#ifdef GTM_CRYPT #define BUILD_ENCRYPT_TWINBUFF_IF_NEEDED(CSA, CSD, TN) \ { \ blk_hdr_ptr_t bp, save_bp; \ gd_segment *seg; \ int gtmcrypt_errno, req_enc_blk_size; \ + boolean_t use_new_key; \ \ GBLREF gd_region *gv_cur_region; \ \ - if (CSD->is_encrypted && (TN < CSA->ti->curr_tn)) \ - { /* BG and db encryption is enabled and the DSE update caused the block-header to potentially have a tn \ - * that is LESS than what it had before. At this point, the global buffer (corresponding to blkhist.blk_num) \ - * reflects the contents of the block AFTER the dse update (bg_update would have touched this) whereas \ - * the corresponding encryption global buffer reflects the contents of the block BEFORE the update. \ - * Normally wcs_wtstart takes care of propagating the tn update from the regular global buffer to the \ - * corresponding encryption buffer. But if before it gets a chance, let us say a process goes to t_end \ - * as part of a subsequent transaction and updates this same block. Since the blk-hdr-tn potentially \ - * decreased, it is possible that the PBLK writing check (comparing blk-hdr-tn with the epoch_tn) decides \ - * to write a PBLK for this block (even though a PBLK was already written for this block as part of a \ - * previous DSE CHANGE -BL -TN in the same epoch). In this case, since the db is encrypted, the logic \ - * will assume there were no updates to this block since the last time wcs_wtstart updated the encryption \ - * buffer and therefore use that to write the pblk, which is incorrect since it does not yet contain the \ - * tn update. The consequence of this is would be writing an older before-image PBLK) record to the \ - * journal file. To prevent this situation, we update the encryption buffer here (before releasing crit) \ - * using logic like that in wcs_wtstart to ensure it is in sync with the regular global buffer. To ensure \ - * that t_end doesn't release crit, we set CSA->hold_onto_crit to TRUE \ - * Note: \ - * Although we use cw_set[0] to access the global buffer corresponding to the block number being updated, \ - * cw_set_depth at this point is 0 because t_end resets it. This is considered safe since cw_set is a \ - * static array (as opposed to malloc'ed memory) and hence is always available and valid until it gets \ + if (USES_ENCRYPTION(CSD->is_encrypted) && (TN < CSA->ti->curr_tn)) \ + { /* BG and db encryption are enabled and the DSE update caused the block-header to potentially have a tn LESS \ + * than before. At this point, the global buffer (corresponding to blkhist.blk_num) reflects the contents of \ + * the block AFTER the dse update (bg_update would have touched this), whereas the corresponding encryption \ + * global buffer reflects the contents of the block BEFORE the update. \ + * \ + * Normally, wcs_wtstart would take care of propagating the tn update from the regular global buffer to the \ + * corresponding encryption buffer. But if before it gets a chance, a process goes to t_end as a part of a \ + * subsequent transaction and updates this same block, then, since the blk-hdr-tn potentially decreased, it is \ + * possible that the PBLK writing check (that compares blk-hdr-tn with the epoch_tn) will decide to write a \ + * PBLK for this block, even though a PBLK was already written for this block as part of a previous \ + * DSE CHANGE -BL -TN in the same epoch. In this case, since the db is encrypted, the logic will assume that \ + * there were no updates to this block because the last time wcs_wtstart updated the encryption buffer and, \ + * therefore, use that to write the PBLK, which is incorrect, for it does not yet contain the tn update. \ + * \ + * The consequence of this is that we would be writing an older before-image PBLK record to the journal file. \ + * To prevent this situation, we update the encryption buffer here (before releasing crit) using logic similar \ + * to that in wcs_wtstart, to ensure it is in sync with the regular global buffer. To prevent t_end from \ + * releasing crit, we set CSA->hold_onto_crit to TRUE. \ + * \ + * Note that although we use cw_set[0] to access the global buffer corresponding to the block number being \ + * updated, cw_set_depth at this point is 0 because t_end resets it. This is considered safe since cw_set is a \ + * static array (as opposed to malloced memory) and hence is always available and valid until it gets \ * overwritten by subsequent updates. \ */ \ bp = (blk_hdr_ptr_t)GDS_ANY_REL2ABS(CSA, cw_set[0].cr->buffaddr); \ @@ -180,8 +183,11 @@ enum dse_fmt { \ ASSERT_ENCRYPTION_INITIALIZED; \ memcpy(save_bp, bp, SIZEOF(blk_hdr)); \ - GTMCRYPT_ENCRYPT(CSA, CSA->encr_key_handle, (char *)(bp + 1), req_enc_blk_size, \ - (char *)(save_bp + 1), gtmcrypt_errno); \ + use_new_key = USES_NEW_KEY(CSD); \ + GTMCRYPT_ENCRYPT(CSA, (use_new_key ? TRUE : CSD->non_null_iv), \ + (use_new_key ? CSA->encr_key_handle2 : CSA->encr_key_handle), \ + (char *)(bp + 1), req_enc_blk_size, (char *)(save_bp + 1), \ + bp, SIZEOF(blk_hdr), gtmcrypt_errno); \ if (0 != gtmcrypt_errno) \ { \ seg = gv_cur_region->dyn.addr; \ @@ -191,9 +197,6 @@ enum dse_fmt memcpy(save_bp, bp, bp->bsiz); \ } \ } -#else -#define BUILD_ENCRYPT_TWINBUFF_IF_NEEDED(CSA, CSD, TN) -#endif /* This macro is used whenever t_end needs to be invoked with a 3rd parameter != TN_NOT_SPECIFIED. * Currently the only two usages of this are from DSE and hence this macro is placed in dse.h. @@ -221,6 +224,14 @@ enum dse_fmt process_deferred_stale(); \ } +#define CLEAR_DSE_COMPRESS_KEY \ +MBSTART { \ + GBLREF char patch_comp_key[MAX_KEY_SZ + 1]; \ + GBLREF unsigned short patch_comp_count; \ + \ + patch_comp_count = patch_comp_key[0] = patch_comp_key[1] = 0; \ +} MBEND + void dse_adrec(void); void dse_adstar(void); void dse_all(void); diff --git a/sr_port/dse.hlp b/sr_port/dse.hlp old mode 100644 new mode 100755 index 7ab77786..e44b0b26 --- a/sr_port/dse.hlp +++ b/sr_port/dse.hlp @@ -285,8 +285,11 @@ The format of the ALL command is: - AL[L] -B[UFFER_FLUSH] + AL[L] + [ + -B[UFFER_FLUSH] -C[RITINIT] + -D[UMP] -A[LL] -[NO]F[REEZE] -O[VERRIDE]] -REF[ERENCE] @@ -294,6 +297,7 @@ -REN[EW] -S[EIZE] -W[CINIT] + ] o This is a very powerful command; use it with caution. o Be especially careful if you have an overlapping database structure @@ -306,6 +310,13 @@ 3 Qualifiers Qualifiers + -ALL + + Displays additional information on the database most of which is useful + for FIS in diagnosing issues. + + Meaningful only with: -D[UMP] + -BUFFER_FLUSH Flushes to disk the file header and all pooled buffers for all regions of @@ -324,6 +335,12 @@ Never use CRITINIT while concurrent updates are in progress as doing so may damage the database. + -[D]UMP + + Displays fileheader information. + + Compatible with: -A[LL] + -[NO]F[REEZE] Freezes or prevents updates all regions of the current global directory. @@ -480,7 +497,7 @@ Example: - DSE> WCINIT + DSE> ALL -WCINIT This command reinitializes the buffers for all regions of the current global directory. @@ -558,7 +575,8 @@ -REF[ERENCE_COUNT]=reference-count -REG[_SEQNO]=sequence-number -RESERVED_BYTES=reserved-bytes - -SLEEP_SPIN_COUNT=mutex-sleep-spin-count + -SLEE[P_SPIN_COUNT]=mutex-sleep-spin-count + -SPIN[_SLEEP_MASK]=mutex-spin-sleep-mask -STRM_NUM=stream-number STRM_REG_SEQNO=hexa -TIM[ERS_PENDING]=integer -TO[TAL_BLKS]=total-blocks @@ -964,6 +982,23 @@ In an LMS environment, this sets the "Resync transaction" field. + -SPIN_SLEEP_MASK]=hexadecimal-mask + + Changes the Spin sleep time mask that controls the maximum time in + nanoseconds the process sleeps on a sleep spin; zero (0), the default + causes the process to just yield to the OS scheduler. + + Use only with: -FILEHEADER; hexa + + -SLEE[P_SPIN_COUNT]=integer + + Changes the Mutex Sleep Spin Count that controls the number of times a + process waiting on a shared resource (usually a database) suspends its + activity after exhausting its Mutex Hard Spin Count and before enquing + itself to be awakened by a process releasing the resource + + Use only with: -FILEHEADER; hexa + -STRM_NUM=stream-number -STRM_R[EG_SEQNO]=str_num's_region_sequence_number Changes the Stream and its Reg Seqno. Use -STRM_NUM and -STRM_REG_SEQNO @@ -1164,10 +1199,13 @@ Operates on the cache of a database having BG access method. The format of the CACHE command is: - CA[CHE] -ALL + CA[CHE] + [ + -ALL -RE[COVER] -SH[OW] -VE[RIFY] + ] 3 Qualifiers Qualifiers @@ -1265,13 +1303,16 @@ Displays and/or modifies the status and contents of the critical section for the current region. The format of the CRITICAL command is: - CR[ITICAL] -A[LL] + CR[ITICAL] + [ + -A[LL] -I[NIT] -O[WNER] -REL[EASE] -REM[OVE] -RES[ET] -S[EIZE] + ] o The critical section field identifies, by its process identification number (PID), the process presently managing updates to database. @@ -1376,7 +1417,9 @@ The format of the DUMP command is: - D[UMP] -A[LL] + D[UMP] + [ + -A[LL] -B[LOCK]=block_number -C[OUNT]=count -F[ILEHEADER] @@ -1388,6 +1431,7 @@ -R[ECORD]=record-number -U[PDPROC] -Z[WR] + ] Use the error messages reported by MUPIP INTEG to determine what to DUMP and examine in the database. DUMP also can transfer records to a @@ -1403,9 +1447,9 @@ When used with -FILEHEADER, the -A[LL] qualifier displays additional information on the database most of which is useful for FIS in diagnosing issues. A complete description of all the elements that show up with the - DSE DUMP -FILEHEADER -ALL command are beyond the scope of this book. Use - only with -FILEHEADER or -UPDPROC (which is actually redundant as -ALL - displays the UPDPROC information). + DSE DUMP -FILEHEADER -ALL command are beyond the scope of this book. + + Meaningful only with: -FILEHEADER -B[LOCK]=block-number @@ -1560,9 +1604,12 @@ The format of the EVALUATE command is: - EV[ALUATE] -D[ECIMAL] + EV[ALUATE] + [ + -D[ECIMAL] -H[EXADECIMAL] -N[UMBER]=number + ] The -DECIMAL and -HEXADECIMAL qualifiers specify the input base for the number. The -NUMBER qualifier is mandatory. By default, EVALUATE treats @@ -1629,13 +1676,16 @@ Locates a given block or region. The format of the FIND command is: - F[IND] -B[LOCK]=block-number + F[IND] + [ + -B[LOCK]=block-number -E[XHAUSTIVE] - -F[REEBLOCK] /H[INT] + -F[REEBLOCK] -H[INT] -K[EY]=key -[NO]C[RIT] -R[EGION][=region] -S[IBLINGS] + ] o At the beginning of a DSE session, use the FIND -REGION command to select the target region. @@ -1855,11 +1905,14 @@ Examines or updates bitmaps. The format of the MAPS command is: - M[APS] -BL[OCK]=block-number + M[APS] + [ + -BL[OCK]=block-number -BU[SY] -F[REE] -M[ASTER] -R[ESTORE_ALL] + ] MAPS can flag blocks as being either -BUSY or -FREE. The -MASTER qualifier reflects the current status of a local bitmap back into the master map. @@ -2025,8 +2078,11 @@ The format of the OVERWRITE command is: - OV[ERWRITE] -D[ATA]=string + OV[ERWRITE] + [ + -D[ATA]=string -O[FFSET]=offset + ] 3 Qualifiers_for_OVERWRITE Qualifiers for OVERWRITE @@ -2081,7 +2137,9 @@ The format of the RANGE command is: - RA[NGE] -F[ROM]=block-number + RA[NGE] + [ + -F[ROM]=block-number -T[O]=block-number -I[NDEX] -LOS[T] @@ -2090,6 +2148,7 @@ -S[TAR] -LOW[ER]=key -U[PPER]=key + ] 3 Qualifiers Qualifiers @@ -2190,11 +2249,14 @@ The format of the REMOVE command is: - REM[OVE] -B[LOCK]=block-number + REM[OVE] + [ + -B[LOCK]=block-number -C[OUNT]=count -O[FFSET]=offset -R[ECORD]=record-number -V[ERSION]=version-number + ] The version number is specified in decimal. @@ -2255,10 +2317,13 @@ The RESTORE command restores saved versions of blocks. - RES[TORE] -B[LOCK]=block-number + RES[TORE] + [ + -B[LOCK]=block-number -F[ROM]=from -R[EGION]=region -V[ERSION]=version-number + ] The version number is specified in decimal. @@ -2314,10 +2379,13 @@ The format of the SAVE command is: - SA[VE] -B[LOCK]=block-number + SA[VE] + [ + -B[LOCK]=block-number -C[OMMENT]=string -L[IST] -[NO]C[RIT] + ] 3 Qualifiers Qualifiers @@ -2363,10 +2431,13 @@ Use the SHIFT command to shift data in a block, filling the block with zeros, or shortening the block. The format of the SHIFT command is: - SH[IFT] -B[ACKWARD]=b_shift + SH[IFT] + [ + -B[ACKWARD]=b_shift -BL[OCK]=block_number -F[ORWARD]=f_shift -O[FFSET]=offset + ] b_shift must always be less than or equal to offset. This means that DSE SHIFT in the backward direction is restricted to the maximum of OFFSET @@ -2465,381 +2536,404 @@ Summary +------------------------------------------------------------------------+ - | COMMAND | QUALIFIERS | COMMENTS | - |-------------+-----------------------------------+----------------------| - | AD[D] | -B[LOCK]=block number | - | - |-------------+-----------------------------------+----------------------| - | - | -D[ATA]=string | Incompatible with | - | | | -POINTER, -STAR | - |-------------+-----------------------------------+----------------------| - | - | -K[EY]=key | Incompatible with | - | | | -STAR | - |-------------+-----------------------------------+----------------------| - | - | -O[FFSET]=offset | Incompatible with | - | | | -RECORD, -STAR | - |-------------+-----------------------------------+----------------------| - | - | -P[OINTER]=pointer | Incompatible with | - | | | -DATA | - |-------------+-----------------------------------+----------------------| - | - | -R[ECORD]=record-number | Incompatible with | - | | | -OFFSET, -STAR | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -S[TAR] | -DATA,-KEY, -OFFSET, | - | | | -RECORD | - |-------------+-----------------------------------+----------------------| - | AL[L] | -B[UFFER_FLUSH] | Incompatible with | - | | | -RENEW | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -C[RITINIT] | -RENEW, -RELEASE, | - | | | -SEIZE | - |-------------+-----------------------------------+----------------------| - | - | -[NO]F[REEZE] | Incompatible with | - | | | -RENEW | - |-------------+-----------------------------------+----------------------| - | - | -O[VERRIDE] | Meaningful only with | - | | | -[NO]FREEZE | - |-------------+-----------------------------------+----------------------| - | - | -REF[ERENCE] | Incompatible with | - | | | -RENEW | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -REL[EASE] | -CRITINIT, | - | | | -RENEW,-SEIZE | - |-------------+-----------------------------------+----------------------| - | - | -REN[EW] | Use alone | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -S[EIZE] | -RENEW, -RELEASE, | - | | | -CRITINIT | - |-------------+-----------------------------------+----------------------| - | - | -W[CINIT] | Incompatible with | - | | | -RENEW | - |-------------+-----------------------------------+----------------------| - | B[UFFER | - | - | - | _FLUSH] | | | - |-------------+-----------------------------------+----------------------| - | CA[CHE] | -ALL | Used with -RECOVER, | - | | | -SHOW, and -VERIFY | - |-------------+-----------------------------------+----------------------| - | - | -RE[COVER] | Use only with -ALL. | - |-------------+-----------------------------------+----------------------| - | - | -SH[OW] | Use only with -ALL. | - |-------------+-----------------------------------+----------------------| - | - | -VE[RIFY] | Use only with -ALL. | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | CH[ANGE] | -BL[OCK]=block number | -FILEHEADER and | - | | | qualifiers used with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -BS[IZ]=block-size | Use only with | - | | | -BLOCK, -LEVEL, -TN | - |-------------+-----------------------------------+----------------------| - | - | -L[EVEL]=level | Use only with | - | | | -BLOCK, -BSIZ, -TN | - |-------------+-----------------------------------+----------------------| - | | | Use only with | - | - | -TN [=transaction number] | -BLOCK, -BSIZ, | - | | | -LEVEL | - |-------------+-----------------------------------+----------------------| - | - | -OF[FSET]=offset | Use only with | - | | | -BLOCK, -CMPC, -RSIZ | - |-------------+-----------------------------------+----------------------| - | - | -RE[CORD]=record number | Use only with | - | | | -BLOCK, -CMPC, -RSIZ | - |-------------+-----------------------------------+----------------------| - | | | Use only with | - | - | -CM[PC]= compression count | -BLOCK, -RECORD, | - | | | -OFFSET, -RSIZ | - |-------------+-----------------------------------+----------------------| - | | | Use only with -CMPC | - | - | -RS[IZ]=record size | -OFFSET, -RECORD, | - | | | -BLOCK | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -F[ILEHEADER] | -BSIZ, -CMPC, -TN, | - | | | -LEVEL, -OFFSET, | - | | | -RECORD, -RSIZ | - |-------------+-----------------------------------+----------------------| - | - | AVG_BLKS_READ=Average blocks read | - | - |-------------+-----------------------------------+----------------------| - | - | B_B[YTESTREAM]=transaction number | - | - |-------------+-----------------------------------+----------------------| - | - | -B_C[OMPREHENSIVE]=transaction | Use only with | - | | number | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | B_D[ATABASE] = transaction number | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -B_I[NCREMENTAL] = transaction | Use only with | - | | number | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -BLK[_SIZE]=block size | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -BLO[CKS_FREE]=free blocks | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -B_R[ECORD]=transaction number | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -CO[RRUPT_FILE]=value | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -CU[RRENT_TN]=transaction number | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | DECL[OCATION]=value | Use only with | - | | | -FILHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | DEF[_COLLATION]=value | Use only with | - | | | -FILEHEADER; | - |-------------+-----------------------------------+----------------------| - | - | -ENCRYPTION_HASH | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -FL[USH_TIME][=delta time] | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -FR[EEZE]=value | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -FU[LLY_UPGRADED]=boolean | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -GV[STATSRESET] | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -HARD_SPIN_CPUNT=Mutex hard spin | Use only with | - | | count | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | | -HEXL[OCATION]=value | Use only with | - | | | -FILEHEADER;hexa | - |-------------+-----------------------------------+----------------------| - | - | -INT[ERRUPTED_RECOV]=boolean | | - |-------------+-----------------------------------+----------------------| - | - | -JNL_YIELD_LIMIT=journal yeild | | - | | limit | | - |-------------+-----------------------------------+----------------------| - | - | -K[EY_MAX_SIZE]=key_max_size | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -M[ACHINE_NAM]=value | | - |-------------+-----------------------------------+----------------------| - | - | -N[ULL_SUBSCRIPTS]=value | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -NO[CRIT] | | - |-------------+-----------------------------------+----------------------| - | - | -OV[ERRIDE] | | - |-------------+-----------------------------------+----------------------| - | - | -RC_SRV_COUNT | | - |-------------+-----------------------------------+----------------------| - | - | -RE_READ_TRIGGER=read trigger | | - |-------------+-----------------------------------+----------------------| - | - | -Q[UANTUM_INTERVAL] [=delta time] | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -REC[ORD_MAX_SIZE]=maximum record | Use only with | - | | size | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -REF[ERENCE_COUNT]=reference | Use only with | - | | count | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -REG[_SEQNO]=sequence number | Use only with | - | | | -FILEHEADER; hexa | - |-------------+-----------------------------------+----------------------| - | - | -RESERVED_BYTES=reserved bytes | Use only with | - | | | -FILEHEADER;decimal | - |-------------+-----------------------------------+----------------------| - | - | -[NO] RES[PONSE_INTERVAL] [=delta | Use only with | - | | time] | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -SLEEP_SPIN_COUNT=mutex sleep | Use only with | - | | spin count | -FILEHEADER; | - |-------------+-----------------------------------+----------------------| - | - | -SPIN_SLEEP_TIME=mutex sleep time | | - |-------------+-----------------------------------+----------------------| - | - | -[NO]S[TALENESS_TIMER] [=delta | Use only with | - | | time] | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -TIC[K_INTERVAL] [=delta time] | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -TIM[ERS_PENDING]=timers pending | Use only with | - | | | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -TO[TAL_BLKS]=total_blocks | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -TR[IGGER_FLUSH]=trigger flush | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -W[RITES_PER_FLUSH]=writes per | Use only with | - | | flush | -FILEHEADER; decimal | - |-------------+-----------------------------------+----------------------| - | - | -WAIT_DISK=wait disk | - | - |-------------+-----------------------------------+----------------------| - | - | -Zqgblmod_S[EQNO] = sequence | Use only with | - | | number | -FILEHEADER;hexa | - |-------------+-----------------------------------+----------------------| - | - | -Zqgblmod_T[rans]=sequence_number | Use only with | - | | | -FILEHEADER;hexa | - |-------------+-----------------------------------+----------------------| - | CL[OSE] | - | - | - |-------------+-----------------------------------+----------------------| - | CR[ITICAL] | -I[NIT] | Use only with -RESET | - |-------------+-----------------------------------+----------------------| - | - | -O[WNER] | Use alone | - |-------------+-----------------------------------+----------------------| - | - | -REL[EASE] | Use alone | - |-------------+-----------------------------------+----------------------| - | - | -REM[OVE] | Use alone | - |-------------+-----------------------------------+----------------------| - | - | -RES[ET] | Use only with -INIT | - |-------------+-----------------------------------+----------------------| - | - | -S[EIZE] | Use alone | - |-------------+-----------------------------------+----------------------| - | D[UMP] | -B[LOCK]=block_number | Incompatible with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -C[OUNT]=count | Incompatible with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -F[ILEHEADER] | Use alone | - |-------------+-----------------------------------+----------------------| - | - | -G[LO] | Incompatible with | - | | | -FILEHEADER, -HEADER | - |-------------+-----------------------------------+----------------------| - | - | -G[VSTATS] | Use only with | - | | | -FILEHEADER | - |-------------+-----------------------------------+----------------------| - | - | -[NO]H[EADER] | Incompatible with | - | | | -FILEHEADER, -GLO | - |-------------+-----------------------------------+----------------------| - | - | -O[FFSET]=offset | Incompatible with | - | | | -FILEHEADER, -RECORD | - |-------------+-----------------------------------+----------------------| - | - | -R[ECORD]=record_number | Incompatible with | - | | | -FILEHEADER, -OFFSET | - |-------------+-----------------------------------+----------------------| - | EV[ALUATE] | -D[ECIMAL] | Incompatible with | - | | | -HEXADECIMAL | - |-------------+-----------------------------------+----------------------| - | - | -H[EXADECIMAL] | Incompatible with | - | | | -DECIMAL | - |-------------+-----------------------------------+----------------------| - | - | -N[UMBER]=number | Required | - |-------------+-----------------------------------+----------------------| - | EX[IT] | | - | - |-------------+-----------------------------------+----------------------| - | F[IND] | -B[LOCK]=block_number | Incompatible with | - | | | -KEY, -REGION | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -E[XHAUSTIVE] | -KEY, -REGION, | - | | | -FREEBLOCK | - |-------------+-----------------------------------+----------------------| - | | | Required with -HINT; | - | - | -F[REEBLOCK] | compatible with | - | | | -BLOCK | - |-------------+-----------------------------------+----------------------| - | - | -H[INT]=block_number | Required with | - | | | -FREEBLOCK | - |-------------+-----------------------------------+----------------------| - | - | -K[EY]=key | Use alone | - |-------------+-----------------------------------+----------------------| - | - | -R[EGION][=region] | Use alone | - |-------------+-----------------------------------+----------------------| - | | | Incompatible with | - | - | -S[BLINGS] | -FREEBLOCK, -HINT, | - | | | -KEY, -REGION | - |-------------+-----------------------------------+----------------------| - | H[ELP] | [help topic] | - | - |-------------+-----------------------------------+----------------------| - | I[NTEGRIT] | -B[LOCK]=block_number | - | - |-------------+-----------------------------------+----------------------| - | M[APS] | -BL[OCK]=block_number | Incompatible with | - | | | -RESTORE_ALL | - |-------------+-----------------------------------+----------------------| - | - | -BU[SY] | Compatible only with | - | | | -BLOCK | - |-------------+-----------------------------------+----------------------| - | - | -F[REE] | - | - |-------------+-----------------------------------+----------------------| - | - | -M[ASTER] | - | - |-------------+-----------------------------------+----------------------| - | - | -R[ESTORE_ALL] | Use alone | - |-------------+-----------------------------------+----------------------| - | OP[EN] | -F[ILE]=file | - | - |-------------+-----------------------------------+----------------------| - | | -B[LOCK]=block_number | | - | OV[ERWRITE] | | - | - | | -D[ATA]=string | | - |-------------+-----------------------------------+----------------------| - | - | -O[FFSET]=offset | - | - |-------------+-----------------------------------+----------------------| - | P[AGE] | - | - | - |-------------+-----------------------------------+----------------------| - | RA[NGE] | -F[ROM]=block_number | - | - |-------------+-----------------------------------+----------------------| - | - | -T[O]=block_number | - | - |-------------+-----------------------------------+----------------------| - | | -I[NDEX]=block_number | | - | | | | - | | -L[OST]=block_number | | - | | | | - | - | -[NOT]BUSY=busy/free | - | - | | | | - | | -S[TAR]=block_number | | - | | | | - | | -L[OWER]=key | | - |-------------+-----------------------------------+----------------------| - | - | -U[PPER]=key | - | - |-------------+-----------------------------------+----------------------| - | REM[OVE] | -B[LOCK]=block-number | - | - |-------------+-----------------------------------+----------------------| - | - | -C[OUNT]=count | Incompatible with | - | | | -VERSION | - |-------------+-----------------------------------+----------------------| - | - | -O[FFSET]=offset | Incompatible with | - | | | -VERSION, -RECORD | - |-------------+-----------------------------------+----------------------| - | - | -R[ECORD]=record-number | Incompatible with | - | | | -VERSION, -OFFSET | - |-------------+-----------------------------------+----------------------| - | - | -V[ERSION]=version-number | Use only with | - | | | -BLOCK; decimal | - |-------------+-----------------------------------+----------------------| - | RES[TORE] | -B[LOCK]=block-number | - | - |-------------+-----------------------------------+----------------------| - | - | -F[ROM]=block-number | - | - |-------------+-----------------------------------+----------------------| - | - | -R[EGION]=region | - | - |-------------+-----------------------------------+----------------------| - | - | -V[ERSION]=version-number | Required; decimal | - |-------------+-----------------------------------+----------------------| - | SA[VE] | -B[LOCK]=block-number | - | - |-------------+-----------------------------------+----------------------| - | - | -C[OMMENT]=string | Incompatible with | - | | | -LIST | - |-------------+-----------------------------------+----------------------| - | - | -L[IST] | Incompatible with | - | | | -COMMENT | - |-------------+-----------------------------------+----------------------| - | SH[IFT] | -B[ACKWARD]=shift | Incompatible with | - | | | -FORWARD | - |-------------+-----------------------------------+----------------------| - | - | -F[ORWARD]=shift | Incompatible with | - | | | -BACKWARD | - |-------------+-----------------------------------+----------------------| - | - | -O[FFSET]=offset | - | - |-------------+-----------------------------------+----------------------| - | SP[AWN] | [CLI command] | - | - |-------------+-----------------------------------+----------------------| - | W[CINIT] | - | - | + | COMMAND | QUALIFIERS | COMMENTS | + |-------------+------------------------------------+---------------------| + | AD[D] | -B[LOCK]=block number | - | + |-------------+------------------------------------+---------------------| + | - | -D[ATA]=string | Incompatible with | + | | | -POINTER, -STAR | + |-------------+------------------------------------+---------------------| + | - | -K[EY]=key | Incompatible with | + | | | -STAR | + |-------------+------------------------------------+---------------------| + | - | -O[FFSET]=offset | Incompatible with | + | | | -RECORD, -STAR | + |-------------+------------------------------------+---------------------| + | - | -P[OINTER]=pointer | Incompatible with | + | | | -DATA | + |-------------+------------------------------------+---------------------| + | - | -R[ECORD]=record-number | Incompatible with | + | | | -OFFSET, -STAR | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -S[TAR] | -DATA,-KEY, | + | | | -OFFSET, -RECORD | + |-------------+------------------------------------+---------------------| + | AL[L] | -A[LL] | Meaningful only | + | | | with -DUMP | + |-------------+------------------------------------+---------------------| + | - | -B[UFFER_FLUSH] | Incompatible with | + | | | -RENEW | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -C[RITINIT] | -RENEW, -RELEASE, | + | | | -SEIZE | + |-------------+------------------------------------+---------------------| + | - | -D[UMP] | Use with: -ALL | + |-------------+------------------------------------+---------------------| + | - | -[NO]F[REEZE] | Incompatible with | + | | | -RENEW | + |-------------+------------------------------------+---------------------| + | - | -O[VERRIDE] | Meaningful only | + | | | with -[NO]FREEZE | + |-------------+------------------------------------+---------------------| + | - | -REF[ERENCE] | Incompatible with | + | | | -RENEW | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -REL[EASE] | -CRITINIT, | + | | | -RENEW,-SEIZE | + |-------------+------------------------------------+---------------------| + | - | -REN[EW] | Use alone | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -S[EIZE] | -RENEW, -RELEASE, | + | | | -CRITINIT | + |-------------+------------------------------------+---------------------| + | - | -W[CINIT] | Incompatible with | + | | | -RENEW | + |-------------+------------------------------------+---------------------| + | CA[CHE] | -ALL | Used with -RECOVER, | + | | | -SHOW, and -VERIFY | + |-------------+------------------------------------+---------------------| + | - | -RE[COVER] | Use only with -ALL. | + |-------------+------------------------------------+---------------------| + | - | -SH[OW] | Use only with -ALL. | + |-------------+------------------------------------+---------------------| + | - | -VE[RIFY] | Use only with -ALL. | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | CH[ANGE] | -BL[OCK]=block number | -FILEHEADER and | + | | | qualifiers used | + | | | with -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -BS[IZ]=block-size | Use only with | + | | | -BLOCK, -LEVEL, -TN | + |-------------+------------------------------------+---------------------| + | - | -L[EVEL]=level | Use only with | + | | | -BLOCK, -BSIZ, -TN | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -TN [=transaction number] | -BLOCK, -BSIZ, | + | | | -LEVEL | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -OF[FSET]=offset | -BLOCK, -CMPC, | + | | | -RSIZ | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -RE[CORD]=record number | -BLOCK, -CMPC, | + | | | -RSIZ | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -CM[PC]= compression count | -BLOCK, -RECORD, | + | | | -OFFSET, -RSIZ | + |-------------+------------------------------------+---------------------| + | | | Use only with -CMPC | + | - | -RS[IZ]=record size | -OFFSET, -RECORD, | + | | | -BLOCK | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -F[ILEHEADER] | -BSIZ, -CMPC, -TN, | + | | | -LEVEL, -OFFSET, | + | | | -RECORD, -RSIZ | + |-------------+------------------------------------+---------------------| + | - | AVG_BLKS_READ=Average blocks read | - | + |-------------+------------------------------------+---------------------| + | - | B_B[YTESTREAM]=transaction number | - | + |-------------+------------------------------------+---------------------| + | | -B_C[OMPREHENSIVE]=transaction | Use only with | + | - | number | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | B_D[ATABASE] = transaction number | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | -B_I[NCREMENTAL] = transaction | Use only with | + | - | number | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -BLK[_SIZE]=block size | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -BLO[CKS_FREE]=free blocks | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -B_R[ECORD]=transaction number | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -CO[RRUPT_FILE]=value | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -CU[RRENT_TN]=transaction number | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | DECL[OCATION]=value | Use only with | + | | | -FILHEADER; decimal | + |-------------+------------------------------------+---------------------| + | - | DEF[_COLLATION]=value | Use only with | + | | | -FILEHEADER; | + |-------------+------------------------------------+---------------------| + | - | -ENCRYPTION_HASH | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -FL[USH_TIME][=delta time] | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -FR[EEZE]=value | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -FU[LLY_UPGRADED]=boolean | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -GV[STATSRESET] | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -HARD_SPIN_CPUNT=Mutex hard spin | Use only with | + | | count | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | | -HEXL[OCATION]=value | Use only with | + | | | -FILEHEADER;hexa | + |-------------+------------------------------------+---------------------| + | - | -INT[ERRUPTED_RECOV]=boolean | | + |-------------+------------------------------------+---------------------| + | - | -JNL_YIELD_LIMIT=journal yeild | | + | | limit | | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -K[EY_MAX_SIZE]=key_max_size | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -M[ACHINE_NAM]=value | | + |-------------+------------------------------------+---------------------| + | - | -N[ULL_SUBSCRIPTS]=value | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -NO[CRIT] | | + |-------------+------------------------------------+---------------------| + | - | -OV[ERRIDE] | | + |-------------+------------------------------------+---------------------| + | - | -RC_SRV_COUNT | | + |-------------+------------------------------------+---------------------| + | - | -RE_READ_TRIGGER=read trigger | | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -Q[UANTUM_INTERVAL] [=delta time] | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | -REC[ORD_MAX_SIZE]=maximum record | Use only with | + | - | size | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -REF[ERENCE_COUNT]=reference count | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -REG[_SEQNO]=sequence number | Use only with | + | | | -FILEHEADER; hexa | + |-------------+------------------------------------+---------------------| + | - | -RESERVED_BYTES=reserved bytes | Use only with | + | | | -FILEHEADER;decimal | + |-------------+------------------------------------+---------------------| + | | -[NO] RES[PONSE_INTERVAL] [=delta | Use only with | + | - | time] | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -SLEEP_SPIN_COUNT=mutex sleep spin | Use only with | + | | count | -FILEHEADER; | + |-------------+------------------------------------+---------------------| + | - | -SPIN_SLEEP_TIME=mutex sleep time | | + |-------------+------------------------------------+---------------------| + | | -[NO]S[TALENESS_TIMER] [=delta | Use only with | + | - | time] | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -TIC[K_INTERVAL] [=delta time] | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | | | Use only with | + | - | -TIM[ERS_PENDING]=timers pending | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -TO[TAL_BLKS]=total_blocks | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -TR[IGGER_FLUSH]=trigger flush | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | | -W[RITES_PER_FLUSH]=writes per | Use only with | + | - | flush | -FILEHEADER; | + | | | decimal | + |-------------+------------------------------------+---------------------| + | - | -WAIT_DISK=wait disk | - | + |-------------+------------------------------------+---------------------| + | - | -Zqgblmod_S[EQNO] = sequence | Use only with | + | | number | -FILEHEADER;hexa | + |-------------+------------------------------------+---------------------| + | - | -Zqgblmod_T[rans]=sequence_number | Use only with | + | | | -FILEHEADER;hexa | + |-------------+------------------------------------+---------------------| + | CL[OSE] | - | - | + |-------------+------------------------------------+---------------------| + | CR[ITICAL] | -I[NIT] | Use only with | + | | | -RESET | + |-------------+------------------------------------+---------------------| + | - | -O[WNER] | Use alone | + |-------------+------------------------------------+---------------------| + | - | -REL[EASE] | Use alone | + |-------------+------------------------------------+---------------------| + | - | -REM[OVE] | Use alone | + |-------------+------------------------------------+---------------------| + | - | -RES[ET] | Use only with -INIT | + |-------------+------------------------------------+---------------------| + | - | -S[EIZE] | Use alone | + |-------------+------------------------------------+---------------------| + | D[UMP] | -B[LOCK]=block_number | Incompatible with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -C[OUNT]=count | Incompatible with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -F[ILEHEADER] | Use alone | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -G[LO] | -FILEHEADER, | + | | | -HEADER | + |-------------+------------------------------------+---------------------| + | - | -G[VSTATS] | Use only with | + | | | -FILEHEADER | + |-------------+------------------------------------+---------------------| + | - | -[NO]H[EADER] | Incompatible with | + | | | -FILEHEADER, -GLO | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -O[FFSET]=offset | -FILEHEADER, | + | | | -RECORD | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -R[ECORD]=record_number | -FILEHEADER, | + | | | -OFFSET | + |-------------+------------------------------------+---------------------| + | EV[ALUATE] | -D[ECIMAL] | Incompatible with | + | | | -HEXADECIMAL | + |-------------+------------------------------------+---------------------| + | - | -H[EXADECIMAL] | Incompatible with | + | | | -DECIMAL | + |-------------+------------------------------------+---------------------| + | - | -N[UMBER]=number | Required | + |-------------+------------------------------------+---------------------| + | EX[IT] | | - | + |-------------+------------------------------------+---------------------| + | F[IND] | -B[LOCK]=block_number | Incompatible with | + | | | -KEY, -REGION | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -E[XHAUSTIVE] | -KEY, -REGION, | + | | | -FREEBLOCK | + |-------------+------------------------------------+---------------------| + | | | Required with | + | - | -F[REEBLOCK] | -HINT; compatible | + | | | with -BLOCK | + |-------------+------------------------------------+---------------------| + | - | -H[INT]=block_number | Required with | + | | | -FREEBLOCK | + |-------------+------------------------------------+---------------------| + | - | -K[EY]=key | Use alone | + |-------------+------------------------------------+---------------------| + | - | -R[EGION][=region] | Use alone | + |-------------+------------------------------------+---------------------| + | | | Incompatible with | + | - | -S[BLINGS] | -FREEBLOCK, -HINT, | + | | | -KEY, -REGION | + |-------------+------------------------------------+---------------------| + | H[ELP] | [help topic] | - | + |-------------+------------------------------------+---------------------| + | I[NTEGRIT] | -B[LOCK]=block_number | - | + |-------------+------------------------------------+---------------------| + | M[APS] | -BL[OCK]=block_number | Incompatible with | + | | | -RESTORE_ALL | + |-------------+------------------------------------+---------------------| + | - | -BU[SY] | Compatible only | + | | | with -BLOCK | + |-------------+------------------------------------+---------------------| + | - | -F[REE] | - | + |-------------+------------------------------------+---------------------| + | - | -M[ASTER] | - | + |-------------+------------------------------------+---------------------| + | - | -R[ESTORE_ALL] | Use alone | + |-------------+------------------------------------+---------------------| + | OP[EN] | -F[ILE]=file | - | + |-------------+------------------------------------+---------------------| + | | -B[LOCK]=block_number | | + | OV[ERWRITE] | | - | + | | -D[ATA]=string | | + |-------------+------------------------------------+---------------------| + | - | -O[FFSET]=offset | - | + |-------------+------------------------------------+---------------------| + | P[AGE] | - | - | + |-------------+------------------------------------+---------------------| + | RA[NGE] | -F[ROM]=block_number | - | + |-------------+------------------------------------+---------------------| + | - | -T[O]=block_number | - | + |-------------+------------------------------------+---------------------| + | | -I[NDEX]=block_number | | + | | | | + | | -L[OST]=block_number | | + | | | | + | - | -[NOT]BUSY=busy/free | - | + | | | | + | | -S[TAR]=block_number | | + | | | | + | | -L[OWER]=key | | + |-------------+------------------------------------+---------------------| + | - | -U[PPER]=key | - | + |-------------+------------------------------------+---------------------| + | REM[OVE] | -B[LOCK]=block-number | - | + |-------------+------------------------------------+---------------------| + | - | -C[OUNT]=count | Incompatible with | + | | | -VERSION | + |-------------+------------------------------------+---------------------| + | - | -O[FFSET]=offset | Incompatible with | + | | | -VERSION, -RECORD | + |-------------+------------------------------------+---------------------| + | - | -R[ECORD]=record-number | Incompatible with | + | | | -VERSION, -OFFSET | + |-------------+------------------------------------+---------------------| + | - | -V[ERSION]=version-number | Use only with | + | | | -BLOCK; decimal | + |-------------+------------------------------------+---------------------| + | RES[TORE] | -B[LOCK]=block-number | - | + |-------------+------------------------------------+---------------------| + | - | -F[ROM]=block-number | - | + |-------------+------------------------------------+---------------------| + | - | -R[EGION]=region | - | + |-------------+------------------------------------+---------------------| + | - | -V[ERSION]=version-number | Required; decimal | + |-------------+------------------------------------+---------------------| + | SA[VE] | -B[LOCK]=block-number | - | + |-------------+------------------------------------+---------------------| + | - | -C[OMMENT]=string | Incompatible with | + | | | -LIST | + |-------------+------------------------------------+---------------------| + | - | -L[IST] | Incompatible with | + | | | -COMMENT | + |-------------+------------------------------------+---------------------| + | SH[IFT] | -B[ACKWARD]=shift | Incompatible with | + | | | -FORWARD | + |-------------+------------------------------------+---------------------| + | - | -F[ORWARD]=shift | Incompatible with | + | | | -BACKWARD | + |-------------+------------------------------------+---------------------| + | - | -O[FFSET]=offset | - | + |-------------+------------------------------------+---------------------| + | SP[AWN] | [CLI command] | - | + |-------------+------------------------------------+---------------------| + | W[CINIT] | - | - | +------------------------------------------------------------------------+ * Use these qualifiers only with instructions from FIS. @@ -2847,7 +2941,7 @@ 1 Copyright Copyright - Copyright 2015 + Copyright 2016 Fidelity National Information Services, Inc. and/or its subsidiaries. All rights reserved. @@ -2869,7 +2963,7 @@ **Note** - This help file is a concise representation of revision V6.2-002 of the + This help file is a concise representation of revision V6.3-000 of the UNIX Administration and Operations Guide. To obtain a copy of the current revision, go to www.fis-gtm.com and then click on the User Documentation tab. diff --git a/sr_port/dse_adrec.c b/sr_port/dse_adrec.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_adstar.c b/sr_port/dse_adstar.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_all.c b/sr_port/dse_all.c old mode 100644 new mode 100755 index 336a57bf..ed650c82 --- a/sr_port/dse_all.c +++ b/sr_port/dse_all.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -41,7 +42,7 @@ # include "mutex.h" #endif #include "wcs_flu.h" -#include /* for VSIG_ATOMIC_T */ +#include "gtm_signal.h" GBLREF VSIG_ATOMIC_T util_interrupt; GBLREF block_id patch_curr_blk; @@ -63,6 +64,7 @@ void dse_all(void) tp_region *region_list, *rg, *rg_last, *rg_new; /* A handy structure for maintaining a list of regions */ int i; sgmnt_addrs *old_addrs, *csa; + sgmnt_data_ptr_t csd; gd_region *old_region; block_id old_block; int4 stat; @@ -77,6 +79,7 @@ void dse_all(void) boolean_t dump = FALSE; boolean_t override = FALSE; boolean_t was_crit; + boolean_t clear_corrupt = FALSE; UNIX_ONLY(char *fgets_res;) old_addrs = cs_addrs; @@ -115,6 +118,8 @@ void dse_all(void) override = TRUE; if (cli_present("DUMP") == CLI_PRESENT) dump = TRUE; + if (cli_present("CLEARCORRUPT") == CLI_PRESENT) + clear_corrupt = TRUE; } if (!dump && gv_cur_region->read_only) rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); @@ -151,11 +156,12 @@ void dse_all(void) gv_cur_region = rg->reg; assert((dba_bg == REG_ACC_METH(gv_cur_region)) || (dba_mm == REG_ACC_METH(gv_cur_region))); cs_addrs = &FILE_INFO(gv_cur_region)->s_addrs; + csd = cs_addrs->hdr; patch_curr_blk = get_dir_root(); if (crit) { - UNIX_ONLY(gtm_mutex_init(gv_cur_region, NUM_CRIT_ENTRY(cs_addrs->hdr), TRUE)); - VMS_ONLY(mutex_init(cs_addrs->critical, NUM_CRIT_ENTRY(cs_addrs->hdr), TRUE)); + UNIX_ONLY(gtm_mutex_init(gv_cur_region, NUM_CRIT_ENTRY(csd), TRUE)); + VMS_ONLY(mutex_init(cs_addrs->critical, NUM_CRIT_ENTRY(csd), TRUE)); cs_addrs->nl->in_crit = 0; cs_addrs->hold_onto_crit = FALSE; /* reset this just before cs_addrs->now_crit is reset */ cs_addrs->now_crit = FALSE; @@ -173,21 +179,21 @@ void dse_all(void) break; } } - if (freeze != !(cs_addrs->hdr->freeze)) + if (freeze != !(csd->freeze)) util_out_print("Region !AD is now FROZEN", TRUE, REG_LEN_STR(gv_cur_region)); } was_crit = cs_addrs->now_crit; if (seize) { - if (!was_crit) - grab_crit(gv_cur_region); /* no point seizing crit if WE already have it held */ - cs_addrs->hold_onto_crit = TRUE; /* need to do this AFTER grab_crit */ + if (!was_crit) /* No point seizing crit if WE already have it held */ + grab_crit_encr_cycle_sync(gv_cur_region); + cs_addrs->hold_onto_crit = TRUE; /* Need to do this AFTER grab_crit */ cs_addrs->dse_crit_seize_done = TRUE; } if (wc) { if (!was_crit && !seize) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); DSE_WCREINIT(cs_addrs); if (!was_crit && (!seize || release)) rel_crit(gv_cur_region); @@ -219,6 +225,8 @@ void dse_all(void) } if (ref) cs_addrs->nl->ref_cnt = 1; + if (clear_corrupt) + csd->file_corrupt = FALSE; } } cs_addrs = old_addrs; diff --git a/sr_port/dse_b_dmp.c b/sr_port/dse_b_dmp.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_cache.c b/sr_port/dse_cache.c old mode 100644 new mode 100755 index 31f326bd..5e26497f --- a/sr_port/dse_cache.c +++ b/sr_port/dse_cache.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2003-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -38,12 +39,12 @@ GBLREF gd_addr *original_header; error_def(ERR_SIZENOTVALID4); -#define DB_ABS2REL(X) (uintszofptr_t)((uintszofptr_t)(X) - (uintszofptr_t)csa->nl) -#define MAX_UTIL_LEN 40 -#define CLEAN_VERIFY "verification is clean" -#define UNCLEAN_VERIFY "verification is NOT clean (see operator log for details)" -#define RECOVER_DONE "recovery complete (see operator log for details)" -#define RECOVER_NOT_APPLIC "recovery not applicable with MM access method" +#define DB_ABS2REL(X) (uintszofptr_t)((uintszofptr_t)(X) - (uintszofptr_t)csa->nl) +#define MAX_UTIL_LEN 40 +#define CLEAN_VERIFY "verification is clean" +#define UNCLEAN_VERIFY "verification is NOT clean (see operator log for details)" +#define RECOVER_DONE "recovery complete (see operator log for details)" +#define RECOVER_NOT_APPLIC "recovery not applicable with MM access method" error_def(ERR_SIZENOTVALID4); @@ -216,18 +217,16 @@ void dse_cache(void) section_offset = ROUND_UP2(DB_ABS2REL(cr_que_lo + csd->bt_buckets + csd->n_bts), OS_PAGE_SIZE); util_out_print("Region !AD : global_buffer = 0x!XJ : Numelems = 0x!XL : Elemsize = 0x!XL", TRUE, REG_LEN_STR(reg), section_offset, csd->n_bts, csd->blk_size); -# ifdef GTM_CRYPT - if (csd->is_encrypted) + if (USES_ENCRYPTION(csd->is_encrypted)) { section_offset += (gtm_uint64_t)csd->n_bts * csd->blk_size; /* In case of an encrypted database, bp_top is actually the beginning of the encrypted - * global buffer array (an array maintained parallely with the regular unencrypted - * global buffer array). + * global buffer array (an array maintained parallely with the regular unencrypted global + * buffer array). */ util_out_print("Region !AD : encrypted_globuff = 0x!XJ : Numelems = 0x!XL : Elemsize = " "0x!XL", TRUE, REG_LEN_STR(reg), section_offset, csd->n_bts, csd->blk_size); } -# endif util_out_print("Region !AD : db_file_header = 0x!XJ", TRUE, REG_LEN_STR(reg), DB_ABS2REL(csd)); util_out_print("Region !AD : bt_que_header = 0x!XJ : Numelems = 0x!XL : Elemsize = 0x!XL", diff --git a/sr_port/dse_chng_bhead.c b/sr_port/dse_chng_bhead.c old mode 100644 new mode 100755 index 81edd599..b54362a4 --- a/sr_port/dse_chng_bhead.c +++ b/sr_port/dse_chng_bhead.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -43,9 +44,7 @@ #include "t_abort.h" #include "gvcst_blk_build.h" /* for the BUILD_AIMG_IF_JNL_ENABLED macro */ #include "gtmmsg.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif GBLREF cache_rec *cr_array[((MAX_BT_DEPTH * 2) - 1) * 2]; /* Maximum number of blocks that can be in transaction */ GBLREF char *update_array, *update_array_ptr; diff --git a/sr_port/dse_chng_fhead.c b/sr_port/dse_chng_fhead.c index d7ca5358..0fbd9d30 100644 --- a/sr_port/dse_chng_fhead.c +++ b/sr_port/dse_chng_fhead.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -46,9 +46,8 @@ #include "send_msg.h" #include "dse.h" #include "gtmmsg.h" -#ifdef GTM_CRYPT +#include "mutex.h" #include "gtmcrypt.h" -#endif GBLREF VSIG_ATOMIC_T util_interrupt; GBLREF sgmnt_addrs *cs_addrs; @@ -81,10 +80,8 @@ void dse_chng_fhead(void) int gethostname_res; sm_uc_ptr_t chng_ptr; const char *freeze_msg[] = { "UNFROZEN", "FROZEN" } ; -# ifdef GTM_CRYPT char hash_buff[GTMCRYPT_HASH_LEN]; int gtmcrypt_errno; -# endif DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -482,35 +479,22 @@ void dse_chng_fhead(void) UNIX_ONLY( || ((CLI_PRESENT == cli_present("MUTEX_SLEEP_SPIN_COUNT")) && cli_get_int("MUTEX_SLEEP_SPIN_COUNT", &x))) ) /* Unix should be backward compatible, accept MUTEX_ prefix qualifiers as well */ { - if (0 < x) - cs_data->mutex_spin_parms.mutex_sleep_spin_count = x; + if (0 <= x) + SLEEP_SPIN_CNT(cs_data) = x; else util_out_print("Error: SLEEP SPIN COUNT should be a non zero positive number", TRUE); } -# ifdef MUTEX_REAL_SLEEP - if (((CLI_PRESENT == cli_present("SPIN_SLEEP_TIME")) && cli_get_int("SPIN_SLEEP_TIME", &x)) - UNIX_ONLY( || ((CLI_PRESENT == cli_present("MUTEX_SPIN_SLEEP_TIME")) && cli_get_int("MUTEX_SPIN_SLEEP_TIME", &x))) + if (((CLI_PRESENT == cli_present("SPIN_SLEEP_MASK")) && cli_get_hex("SPIN_SLEEP_MASK", (uint4 *)&x)) + UNIX_ONLY( || ((CLI_PRESENT == cli_present("MUTEX_SPIN_SLEEP_MASK")) + && cli_get_hex("MUTEX_SPIN_SLEEP_MASK", (uint4 *)&x))) ) /* Unix should be backward compatible, accept MUTEX_ prefix qualifiers as well */ { if (x < 0) - util_out_print("Error: SPIN SLEEP TIME should be non negative", TRUE); + util_out_print("Error: SPIN SLEEP MASK should be less than 0x3FFFFFFF, permitting sleep just over a second", + TRUE); else - { - save_x = x; - for (index_x = 0; 0 != x; x >>= 1, index_x++); - if (index_x <= 1) - x = index_x; - else if ((1 << (index_x - 1)) == save_x) - x = save_x - 1; - else - x = (1 << index_x) - 1; - if (x > 999999) - util_out_print("Error: SPIN SLEEP TIME should be less than one million micro seconds", TRUE); - else - cs_data->mutex_spin_parms.mutex_spin_sleep_mask = x; - } + SPIN_SLEEP_MASK(cs_data) = x; } -# endif UNIX_ONLY( if ((CLI_PRESENT == cli_present("COMMITWAIT_SPIN_COUNT")) && cli_get_int("COMMITWAIT_SPIN_COUNT", &x)) { @@ -670,29 +654,26 @@ void dse_chng_fhead(void) util_out_print("Error: cannot get value for !AD.", TRUE, LEN_AND_LIT("MACHINE_NAME")); } -# ifdef GTM_CRYPT if (CLI_PRESENT == cli_present("ENCRYPTION_HASH")) { if (1 < cs_addrs->nl->ref_cnt) { util_out_print("Cannot reset encryption hash in file header while !XL other processes are " "accessing the database.", - TRUE, - cs_addrs->nl->ref_cnt - 1); + TRUE, cs_addrs->nl->ref_cnt - 1); return; } fname_ptr = (char *)gv_cur_region->dyn.addr->fname; fname_len = gv_cur_region->dyn.addr->fname_len; ASSERT_ENCRYPTION_INITIALIZED; /* Now generate the new hash to be placed in the database file header. */ - GTMCRYPT_HASH_GEN(cs_addrs, fname_ptr, fname_len, hash_buff, gtmcrypt_errno); + GTMCRYPT_HASH_GEN(cs_addrs, fname_len, fname_ptr, 0, NULL, hash_buff, gtmcrypt_errno); if (0 != gtmcrypt_errno) GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, fname_len, fname_ptr); memcpy(cs_data->encryption_hash, hash_buff, GTMCRYPT_HASH_LEN); - DEBUG_ONLY(GTMCRYPT_HASH_CHK(cs_addrs, cs_data->encryption_hash, gtmcrypt_errno)); + DEBUG_ONLY(GTMCRYPT_HASH_CHK(cs_addrs, cs_data->encryption_hash, fname_len, fname_ptr, gtmcrypt_errno)); assert(0 == gtmcrypt_errno); } -# endif # ifdef UNIX if (CLI_PRESENT == cli_present("JNL_YIELD_LIMIT") && cli_get_int("JNL_YIELD_LIMIT", &x)) diff --git a/sr_port/dse_chng_rhead.c b/sr_port/dse_chng_rhead.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_crit.c b/sr_port/dse_crit.c old mode 100644 new mode 100755 index 5010c562..d37f641a --- a/sr_port/dse_crit.c +++ b/sr_port/dse_crit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -51,14 +52,14 @@ void dse_crit(void) if (cli_present("SEIZE") == CLI_PRESENT || cycle) { if (gv_cur_region->read_only && !cycle) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); if (cs_addrs->now_crit) { util_out_print("!/Write critical section already seized.!/", TRUE); return; } crash_count = cs_addrs->critical->crashcnt; - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); cs_addrs->hold_onto_crit = TRUE; /* need to do this AFTER grab_crit */ cs_addrs->dse_crit_seize_done = TRUE; util_out_print("!/Seized write critical section.!/", TRUE); @@ -68,7 +69,7 @@ void dse_crit(void) if (cli_present("RELEASE") == CLI_PRESENT || cycle) { if (gv_cur_region->read_only && !cycle) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); if (!cs_addrs->now_crit) { util_out_print("!/Critical section already released.!/", TRUE); @@ -92,7 +93,7 @@ void dse_crit(void) if (cli_present("INIT") == CLI_PRESENT) { if (gv_cur_region->read_only) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); cs_addrs->hdr->image_count = 0; UNIX_ONLY(gtm_mutex_init(gv_cur_region, NUM_CRIT_ENTRY(cs_addrs->hdr), crash)); VMS_ONLY(mutex_init(cs_addrs->critical, NUM_CRIT_ENTRY(cs_addrs->hdr), crash)); @@ -104,7 +105,7 @@ void dse_crit(void) if (cli_present("REMOVE") == CLI_PRESENT) { if (gv_cur_region->read_only) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); if (cs_addrs->nl->in_crit == 0) { util_out_print("!/The write critical section is unowned!/", TRUE); diff --git a/sr_port/dse_data.c b/sr_port/dse_data.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_dmp.c b/sr_port/dse_dmp.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_dmp_fhead.c b/sr_port/dse_dmp_fhead.c old mode 100644 new mode 100755 index 58c24e0b..16fc2155 --- a/sr_port/dse_dmp_fhead.c +++ b/sr_port/dse_dmp_fhead.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -44,6 +44,7 @@ #include "stringpool.h" /* for GET_CURR_TIME_IN_DOLLARH_AND_ZDATE macro */ #include "op.h" #include "shmpool.h" /* Needed for the shmpool structures */ +#include "mutex.h" #ifdef GTM_SNAPSHOT #include "db_snapshot.h" #endif @@ -114,13 +115,7 @@ void dse_dmp_fhead (void) csd = csa->hdr; cnl = csa->nl; jnl_state = (enum jnl_state_codes)csd->jnl_state; - VMS_ONLY( - memset(&zero_fid, 0, SIZEOF(zero_fid)); - jnl_buff_open = (0 != memcmp(cnl->jnl_file.jnl_file_id.fid, zero_fid.fid, SIZEOF(zero_fid.fid))); - ) - UNIX_ONLY( - jnl_buff_open = (0 != cnl->jnl_file.u.inode); - ) + jnl_buff_open = (0 != cnl->jnl_file.u.inode); if (is_dse_all || (CLI_NEGATED != cli_present("BASIC"))) { util_out_print("!/File !AD", TRUE, gv_cur_region->dyn.addr->fname_len, @@ -160,7 +155,7 @@ void dse_dmp_fhead (void) else util_out_print(" Number of local maps ??", TRUE); util_out_print(" Last Bytestream Backup 0x!16@XQ", FALSE, &csd->last_inc_backup); - util_out_print(" Lock space 0x!XL", TRUE, csd->lock_space_size/OS_PAGELET_SIZE); + util_out_print(" Lock space 0x!XL", TRUE, csd->lock_space_size / OS_PAGELET_SIZE); util_out_print(" In critical section 0x!XL", FALSE, cnl->in_crit); util_out_print(" Timers pending !12UL", TRUE, cnl->wcs_timers + 1); if (FROZEN_BY_ROOT == csd->freeze) @@ -204,7 +199,7 @@ void dse_dmp_fhead (void) util_out_print(" Wait Disk !12UL", TRUE, csd->wait_disk_space); util_out_print(" Journal State !AD", (jnl_notallowed == jnl_state), 13, (jnl_notallowed != jnl_state) ? - ((jnl_state == jnl_closed) ? " OFF" + ((jnl_closed == jnl_state) ? " OFF" : (jnl_buff_open ? " ON" : "[inactive] ON")) : " DISABLED"); if (jnl_notallowed != jnl_state) { @@ -216,14 +211,9 @@ void dse_dmp_fhead (void) util_out_print(" Journal Alignsize !12UL", TRUE, csd->alignsize / DISK_BLOCK_SIZE); util_out_print(" Journal AutoSwitchLimit !17UL", FALSE, csd->autoswitchlimit); util_out_print(" Journal Epoch Interval!12UL", TRUE, EPOCH_SECOND2SECOND(csd->epoch_interval)); -# ifdef UNIX util_out_print(" Journal Yield Limit !19UL", FALSE, csd->yield_lmt); util_out_print(" Journal Sync IO !AD", TRUE, 5, (csd->jnl_sync_io ? " TRUE" : "FALSE")); -# elif VMS - util_out_print(" Journal NOCACHE IO !AD", TRUE, 12, - (csd->jnl_sync_io ? " TRUE" : " FALSE")); -# endif util_out_print(" Journal File: !AD", TRUE, JNL_LEN_STR(csd)); } if (BACKUP_NOT_IN_PROGRESS != cnl->nbb) @@ -237,30 +227,17 @@ void dse_dmp_fhead (void) (csd->repl_state == repl_closed ? " OFF" : (csd->repl_state == repl_open ? " ON" : " [WAS_ON] OFF"))); util_out_print(" Region Seqno 0x!16@XQ", TRUE, &csd->reg_seqno); - VMS_ONLY( - util_out_print(" Resync Seqno 0x!16@XQ", FALSE, &csd->resync_seqno); - util_out_print(" Resync trans 0x!16@XQ", TRUE, &csd->resync_tn); - ) - UNIX_ONLY( - util_out_print(" Zqgblmod Seqno 0x!16@XQ", FALSE, &csd->zqgblmod_seqno); - util_out_print(" Zqgblmod Trans 0x!16@XQ", TRUE, &csd->zqgblmod_tn); - ) - util_out_print(" Endian Format !6AZ", UNIX_ONLY(FALSE) VMS_ONLY(TRUE), ENDIANTHISJUSTIFY); - UNIX_ONLY( + util_out_print(" Zqgblmod Seqno 0x!16@XQ", FALSE, &csd->zqgblmod_seqno); + util_out_print(" Zqgblmod Trans 0x!16@XQ", TRUE, &csd->zqgblmod_tn); + util_out_print(" Endian Format !6AZ", FALSE, ENDIANTHISJUSTIFY); util_out_print(" Commit Wait Spin Count!12UL", TRUE, csd->wcs_phase2_commit_wait_spincnt); - ) - util_out_print(" Database file encrypted !AD", UNIX_ONLY(FALSE) VMS_ONLY(TRUE), 5, - csd->is_encrypted ? " TRUE" : "FALSE"); - UNIX_ONLY( + util_out_print(" Database file encrypted !AD", FALSE, 5, + IS_ENCRYPTED(csd->is_encrypted) ? " TRUE" : "FALSE"); util_out_print(" Inst Freeze on Error !AD", TRUE, 5, csd->freeze_on_fail ? " TRUE" : "FALSE"); - ) - UNIX_ONLY( util_out_print(" Spanning Node Absent !AD", FALSE, 5, csd->span_node_absent ? " TRUE" : "FALSE"); - ) - UNIX_ONLY( util_out_print(" Maximum Key Size Assured !AD", TRUE, 5, csd->maxkeysz_assured ? " TRUE" : "FALSE"); - ) - util_out_print(" Defer allocation !AD", TRUE, 5, csd->defer_allocate ? " TRUE" : "FALSE"); + util_out_print(" Defer allocation !AD", FALSE, 5, csd->defer_allocate ? " TRUE" : "FALSE"); + util_out_print(" Spin sleep time mask 0x!8XL", TRUE, SPIN_SLEEP_MASK(csd)); } if (CLI_PRESENT == cli_present("ALL")) { /* Only dump if -/ALL as if part of above display */ @@ -279,17 +256,27 @@ void dse_dmp_fhead (void) util_out_print(" Phase2 commit pid count 0x!XL", TRUE, cnl->wcs_phase2_commit_pidcnt); util_out_print(" Dirty Global Buffers 0x!XL", FALSE, cnl->wcs_active_lvl); util_out_print(" Write cache timer count 0x!XL", TRUE, cnl->wcs_timers); - util_out_print(" Free Global Buffers 0x!XL", FALSE, cnl->wc_in_free); + new_line = FALSE; + for (index = 0; MAX_WT_PID_SLOTS > index; index++) + { + pid = cnl->wt_pid_array[index]; + if (0 != pid) + { + util_out_print(" wcs_timer pid [!2UL] !AD !14UL", new_line, index, + new_line ? 0 : 7, new_line ? "" : " ", pid); + new_line = !new_line; + } + } + util_out_print(0, new_line); + util_out_print(" Free Global Buffers 0x!XL", FALSE, cnl->wc_in_free); util_out_print(" wcs_wtstart pid count 0x!XL", TRUE, cnl->in_wtstart); util_out_print(" Write Cache is Blocked !AD", FALSE, 5, (cnl->wc_blocked ? " TRUE" : "FALSE")); util_out_print(" wcs_wtstart intent cnt 0x!XL", TRUE, cnl->intent_wtstart); -# ifdef UNIX util_out_print(0, TRUE); util_out_print(" Quick database rundown is active !AD", TRUE, 5, (csd->mumps_can_bypass ? " TRUE" : "FALSE")); util_out_print(" Access control rundown bypasses !9UL", FALSE, cnl->dbrndwn_access_skip); util_out_print(" FTOK rundown bypasses !10UL", TRUE, cnl->dbrndwn_ftok_skip); util_out_print(" Epoch taper !AD", TRUE, 5, (csd->epoch_taper ? " TRUE" : "FALSE")); -# endif new_line = FALSE; for (index = 0; MAX_WTSTART_PID_SLOTS > index; index++) { @@ -311,11 +298,19 @@ void dse_dmp_fhead (void) util_out_print(" DB Trigger cycle of ^#t !12UL", TRUE, csd->db_trigger_cycle); util_out_print(0, TRUE); util_out_print(" MM defer_time !5SL", TRUE, csd->defer_time); - /* Print the database encryption hash information */ + /* Print various database encryption information */ + util_out_print(0, TRUE); + util_out_print(" DB is (re)encryptable !AD", TRUE, 5, + TO_BE_ENCRYPTED(csd->is_encrypted) ? " TRUE" : "FALSE"); + util_out_print(" DB encryption null IV mode !AD", TRUE, 5, + (csd->non_null_iv ? "FALSE" : " TRUE")); + util_out_print(" DB encryption hash cutoff !12SL", TRUE, csd->encryption_hash_cutoff); + util_out_print(" DB encr hash2 start TN 0x!16@XQ", TRUE, &csd->encryption_hash2_start_tn); GET_HASH_IN_HEX(csd->encryption_hash, outbuf, GTMCRYPT_HASH_HEX_LEN); - util_out_print(" Database file encryption hash !AD", TRUE, GTMCRYPT_HASH_HEX_LEN, outbuf); + util_out_print(" Database file encryption hash !AD", TRUE, GTMCRYPT_HASH_HEX_LEN, outbuf); + GET_HASH_IN_HEX(csd->encryption_hash2, outbuf, GTMCRYPT_HASH_HEX_LEN); + util_out_print(" Database file encryption hash2 !AD", TRUE, GTMCRYPT_HASH_HEX_LEN, outbuf); } -# ifdef UNIX if (NEED_TO_DUMP("SUPPLEMENTARY")) { util_out_print(0, TRUE); @@ -326,7 +321,6 @@ void dse_dmp_fhead (void) util_out_print(" Stream !2UL: Reg Seqno 0x!16@XQ", TRUE, index, &csd->strm_reg_seqno[index]); } } -# endif if (NEED_TO_DUMP("ENVIRONMENT")) { util_out_print(0, TRUE); @@ -407,11 +401,10 @@ void dse_dmp_fhead (void) util_out_print(" ", FALSE); util_out_print(" Epoch_tn 0x!16@XQ", TRUE, &jb->epoch_tn); util_out_print(" Io_in_progress !AD", FALSE, 5, - (jb->UNIX_ONLY(io_in_prog_latch.u.parts.latch_pid)VMS_ONLY(io_in_prog) ? " TRUE" : "FALSE")); + (jb->io_in_prog_latch.u.parts.latch_pid ? " TRUE" : "FALSE")); util_out_print(" ", FALSE); util_out_print(" Epoch_Interval !12UL", TRUE, EPOCH_SECOND2SECOND(jb->epoch_interval)); - util_out_print(" Now_writer !12UL", FALSE, - (jb->UNIX_ONLY(io_in_prog_latch.u.parts.latch_pid)VMS_ONLY(now_writer))); + util_out_print(" Now_writer !12UL", FALSE, jb->io_in_prog_latch.u.parts.latch_pid); util_out_print(" ", FALSE); util_out_print(" Image_count !12UL", TRUE, jb->image_count); util_out_print(" fsync_in_prog !AD", FALSE, 5, @@ -441,7 +434,6 @@ void dse_dmp_fhead (void) util_out_print(" ", FALSE); util_out_print(" INTRPT repl_state !12UL", TRUE, csd->intrpt_recov_repl_state); util_out_print(" INTRPT seqno 0x!16@XQ", TRUE, &csd->intrpt_recov_resync_seqno); - UNIX_ONLY( for (index = 0; index < MAX_SUPPL_STRMS; index++) { if (csd->intrpt_recov_resync_strm_seqno[index]) @@ -454,7 +446,6 @@ void dse_dmp_fhead (void) util_out_print(" SAVE strm_seqno : Stream # !2UL Region Seqno 0x!16@XQ", TRUE, index, &csd->save_strm_reg_seqno[index]); } - ) } if (NEED_TO_DUMP("BACKUP")) { @@ -473,9 +464,6 @@ void dse_dmp_fhead (void) util_out_print(" Shmpool crit holder !12UL", FALSE, bptr->shmpool_crit_latch.u.parts.latch_pid); util_out_print(" ", FALSE); util_out_print(" Backup_errno !12UL", TRUE, bptr->backup_errno); -# ifdef VMS - util_out_print(" Shmpool crit imgcnt !12UL", TRUE, bptr->shmpool_crit_latch.u.parts.latch_image_count); -# endif util_out_print(" Backup Process ID !12UL", FALSE, bptr->backup_pid); util_out_print(" ", FALSE); util_out_print(" Backup TN 0x!16@XQ", TRUE, &bptr->backup_tn); diff --git a/sr_port/dse_eval.c b/sr_port/dse_eval.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_exhaus.c b/sr_port/dse_exhaus.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_exit.c b/sr_port/dse_exit.c old mode 100644 new mode 100755 index 47d8a802..3538bc4a --- a/sr_port/dse_exit.c +++ b/sr_port/dse_exit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -11,7 +12,7 @@ #include "mdef.h" -#include "gtm_stdlib.h" /* for exit() */ +#include "gtm_stdlib.h" /* for EXIT() */ #ifdef DEBUG #include "gdsroot.h" diff --git a/sr_port/dse_exit.h b/sr_port/dse_exit.h old mode 100644 new mode 100755 diff --git a/sr_port/dse_f_blk.c b/sr_port/dse_f_blk.c old mode 100644 new mode 100755 index 958be722..7fa45f2d --- a/sr_port/dse_f_blk.c +++ b/sr_port/dse_f_blk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -13,7 +14,7 @@ #include "gtm_string.h" -#include +#include "gtm_signal.h" #include "error.h" #include "gdsroot.h" @@ -383,15 +384,13 @@ void dse_f_blk(void) { if (!(sp = t_qread(look, &dummy_int, &dummy_cr))) /* NOTE assignment */ rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_DSEBLKRDFAIL); - if (((blk_hdr_ptr_t)sp)->bsiz > cs_addrs->hdr->blk_size) - s_top = sp + cs_addrs->hdr->blk_size; - else if (SIZEOF(blk_hdr) > ((blk_hdr_ptr_t)sp)->bsiz) + if (!(((blk_hdr_ptr_t)sp)->bsiz > cs_addrs->hdr->blk_size) && + (SIZEOF(blk_hdr) > ((blk_hdr_ptr_t)sp)->bsiz)) { util_out_print("Error: sibling search hit problem blk 0x!XL", TRUE, look); look = 0; break; - } else - s_top = sp + ((blk_hdr_ptr_t)sp)->bsiz; + } if (0 >= (signed char)(((blk_hdr_ptr_t)sp)->levl)) { util_out_print("Error: sibling search reached level 0", TRUE); diff --git a/sr_port/dse_f_free.c b/sr_port/dse_f_free.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_f_key.c b/sr_port/dse_f_key.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_f_reg.c b/sr_port/dse_f_reg.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_fdmp.c b/sr_port/dse_fdmp.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_find_roots.c b/sr_port/dse_find_roots.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_flush.c b/sr_port/dse_flush.c old mode 100644 new mode 100755 index 3d801703..3dacd963 --- a/sr_port/dse_flush.c +++ b/sr_port/dse_flush.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2010 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -26,15 +27,15 @@ GBLREF gd_region *gv_cur_region; GBLREF short crash_count; GBLREF sgmnt_addrs *cs_addrs; +error_def(ERR_DBRDONLY); +error_def(ERR_DSEONLYBGMM); + void dse_flush(void) { boolean_t was_crit; - error_def(ERR_DSEONLYBGMM); - error_def(ERR_DBRDONLY); - if (gv_cur_region->read_only) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); switch (gv_cur_region->dyn.addr->acc_meth) { @@ -44,13 +45,13 @@ void dse_flush(void) crash_count = cs_addrs->critical->crashcnt; was_crit = cs_addrs->now_crit; if (!was_crit) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); wcs_flu(WCSFLU_FLUSH_HDR | WCSFLU_WRITE_EPOCH | WCSFLU_SYNC_EPOCH); if (!was_crit) rel_crit(gv_cur_region); break; default: - rts_error(VARLSTCNT(4) ERR_DSEONLYBGMM, 2, LEN_AND_LIT("BUFFER_FLUSH")); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DSEONLYBGMM, 2, LEN_AND_LIT("BUFFER_FLUSH")); break; } return; diff --git a/sr_port/dse_getblk.c b/sr_port/dse_getblk.c index bde94b9f..c4a05c8b 100644 --- a/sr_port/dse_getblk.c +++ b/sr_port/dse_getblk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -35,6 +36,8 @@ block_id dse_getblk(char *element, boolean_t nobml, boolean_t carry_curr) if (!cli_get_hex(element, (uint4 *)&blk)) blk = patch_curr_blk; + else + CLEAR_DSE_COMPRESS_KEY; if ((blk < 0) || (blk >= cs_addrs->ti->total_blks)) { gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(6) ERR_BLKINVALID, 4, blk, DB_LEN_STR(gv_cur_region), diff --git a/sr_port/dse_integ.c b/sr_port/dse_integ.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_is_blk_free.c b/sr_port/dse_is_blk_free.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_is_blk_in.c b/sr_port/dse_is_blk_in.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_ksrch.c b/sr_port/dse_ksrch.c index 029780a0..c5d248eb 100644 --- a/sr_port/dse_ksrch.c +++ b/sr_port/dse_ksrch.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -57,8 +58,7 @@ int dse_ksrch(block_id srch, b_top = bp + SIZEOF(blk_hdr); else b_top = bp + ((blk_hdr_ptr_t) bp)->bsiz; - patch_comp_count = 0; - patch_comp_key[0] = patch_comp_key[1] = 0; + CLEAR_DSE_COMPRESS_KEY; *off = 0; for (rp = bp + SIZEOF(blk_hdr); rp < b_top; rp = r_top) { diff --git a/sr_port/dse_lm_blk_free.c b/sr_port/dse_lm_blk_free.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_m_rest.c b/sr_port/dse_m_rest.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_maps.c b/sr_port/dse_maps.c old mode 100644 new mode 100755 index 607186e0..b6632841 --- a/sr_port/dse_maps.c +++ b/sr_port/dse_maps.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -112,7 +113,7 @@ void dse_maps(void) bml_newmap((blk_hdr_ptr_t)(bml_list + bml_index * bml_size), bml_size, csa->ti->curr_tn); if (!was_crit) { - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); csa->hold_onto_crit = TRUE; /* need to do this AFTER grab_crit */ } blk = get_dir_root(); @@ -181,7 +182,7 @@ void dse_maps(void) if (CLI_PRESENT == cli_present("MASTER")) { if (!was_crit) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); bml_blk = blk / bplmap * bplmap; if (dba_mm == csd->acc_meth) bp = MM_BASE_ADDR(csa) + (off_t)bml_blk * blk_size; @@ -213,7 +214,7 @@ void dse_maps(void) util_len += SIZEOF(" is marked !AD in its local bit map.!/") - 1; util_buff[util_len] = 0; if (!was_crit) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); util_out_print(util_buff, TRUE, 4, dse_is_blk_free(blk, &dummy_int, &dummy_cr) ? "free" : "busy"); if (!was_crit) rel_crit(gv_cur_region); diff --git a/sr_port/dse_order.c b/sr_port/dse_order.c index 4156f254..a18dd07a 100644 --- a/sr_port/dse_order.c +++ b/sr_port/dse_order.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -60,8 +61,7 @@ int dse_order(block_id srch, b_top = bp + SIZEOF(blk_hdr); else b_top = bp + ((blk_hdr_ptr_t)bp)->bsiz; - patch_comp_count = 0; - patch_comp_key[0] = patch_comp_key[1] = 0; + CLEAR_DSE_COMPRESS_KEY; for (rp = bp + SIZEOF(blk_hdr); rp < b_top ;rp = r_top, last = *pp) { GET_SHORT(rsize, &((rec_hdr_ptr_t)rp)->rsiz); diff --git a/sr_port/dse_over.c b/sr_port/dse_over.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_page.c b/sr_port/dse_page.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_puttime.h b/sr_port/dse_puttime.h old mode 100644 new mode 100755 diff --git a/sr_port/dse_r_dmp.c b/sr_port/dse_r_dmp.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_range.c b/sr_port/dse_range.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_rest.c b/sr_port/dse_rest.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_rmrec.c b/sr_port/dse_rmrec.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_rmsb.c b/sr_port/dse_rmsb.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_save.c b/sr_port/dse_save.c old mode 100644 new mode 100755 diff --git a/sr_port/dse_shift.c b/sr_port/dse_shift.c old mode 100644 new mode 100755 index 2cf29ccd..94acffe5 --- a/sr_port/dse_shift.c +++ b/sr_port/dse_shift.c @@ -128,7 +128,7 @@ void dse_shift(void) { if (shift + size >= cs_addrs->hdr->blk_size) { - util_out_print("Error: block not large enough to accomodate shift.", TRUE); + util_out_print("Error: block not large enough to accommodate shift.", TRUE); t_abort(gv_cur_region, cs_addrs); if (lbp) free(lbp); diff --git a/sr_port/dse_wcreinit.c b/sr_port/dse_wcreinit.c old mode 100644 new mode 100755 index 4b1e4b53..c468b99f --- a/sr_port/dse_wcreinit.c +++ b/sr_port/dse_wcreinit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -44,11 +45,11 @@ void dse_wcreinit (void) # endif if (gv_cur_region->read_only) - rts_error(VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DBRDONLY, 2, DB_LEN_STR(gv_cur_region)); if (cs_addrs->hdr->clustered) { - rts_error(VARLSTCNT(1) ERR_DSEINVLCLUSFN); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(1) ERR_DSEINVLCLUSFN); return; } if (cs_addrs->critical) @@ -56,12 +57,12 @@ void dse_wcreinit (void) GET_CONFIRM_AND_HANDLE_NEG_RESPONSE if (cs_addrs->hdr->acc_meth != dba_bg && cs_addrs->hdr->acc_meth != dba_mm) { - rts_error(VARLSTCNT(4) ERR_DSEONLYBGMM, 2, LEN_AND_LIT("WCINIT")); + rts_error_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_DSEONLYBGMM, 2, LEN_AND_LIT("WCINIT")); return; } was_crit = cs_addrs->now_crit; if (!was_crit) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); DSE_WCREINIT(cs_addrs); if (!was_crit) rel_crit (gv_cur_region); diff --git a/sr_port/dsefind.h b/sr_port/dsefind.h old mode 100644 new mode 100755 diff --git a/sr_port/dump_lockhist.c b/sr_port/dump_lockhist.c old mode 100644 new mode 100755 diff --git a/sr_port/dumptable.c b/sr_port/dumptable.c old mode 100644 new mode 100755 diff --git a/sr_port/dumptable.h b/sr_port/dumptable.h old mode 100644 new mode 100755 diff --git a/sr_port/eb_muldiv.c b/sr_port/eb_muldiv.c old mode 100644 new mode 100755 diff --git a/sr_port/eb_muldiv.h b/sr_port/eb_muldiv.h old mode 100644 new mode 100755 diff --git a/sr_port/ebc_xlat.c b/sr_port/ebc_xlat.c old mode 100644 new mode 100755 diff --git a/sr_port/ebc_xlat.h b/sr_port/ebc_xlat.h old mode 100644 new mode 100755 diff --git a/sr_port/ecode_get.c b/sr_port/ecode_get.c old mode 100644 new mode 100755 diff --git a/sr_port/ecode_set.c b/sr_port/ecode_set.c old mode 100644 new mode 100755 diff --git a/sr_port/eintr_wrappers.h b/sr_port/eintr_wrappers.h old mode 100644 new mode 100755 index 33b461cd..5b06c4e8 --- a/sr_port/eintr_wrappers.h +++ b/sr_port/eintr_wrappers.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001, 2015 Fidelity National Information * + * Copyright (c) 2001-2015 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -22,6 +22,7 @@ #include #include + #include "have_crit.h" #include "gt_timer.h" #if defined(DEBUG) && defined(UNIX) @@ -32,219 +33,227 @@ #include "wbox_test_init.h" #endif -#define ACCEPT_SOCKET(SOCKET, ADDR, LEN, RC) \ -{ \ - do \ - { \ - RC = ACCEPT(SOCKET, ADDR, LEN); \ - } while (-1 == RC && EINTR == errno); \ +#define ACCEPT_SOCKET(SOCKET, ADDR, LEN, RC) \ +{ \ + do \ + { \ + RC = ACCEPT(SOCKET, ADDR, LEN); \ + } while (-1 == RC && EINTR == errno); \ } -#define CHG_OWNER(PATH, OWNER, GRP, RC) \ -{ \ - do \ - { \ - RC = CHOWN(PATH, OWNER, GRP); \ - } while (-1 == RC && EINTR == errno); \ +#define CHG_OWNER(PATH, OWNER, GRP, RC) \ +{ \ + do \ + { \ + RC = CHOWN(PATH, OWNER, GRP); \ + } while (-1 == RC && EINTR == errno); \ } -#define CLOSE(FD, RC) \ -{ \ - do \ - { \ - RC = close(FD); \ - } while (-1 == RC && EINTR == errno); \ +#define CLOSE(FD, RC) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + do \ + { \ + DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + RC = close(FD); \ + ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + } while (-1 == RC && EINTR == errno); \ } -#define CLOSEDIR(DIR, RC) \ -{ \ - do \ - { \ - RC = closedir(DIR); \ - } while (-1 == RC && EINTR == errno); \ +#define CLOSEDIR(DIR, RC) \ +{ \ + do \ + { \ + RC = closedir(DIR); \ + } while (-1 == RC && EINTR == errno); \ } -#define CONNECT_SOCKET(SOCKET, ADDR, LEN, RC) \ +#define CONNECT_SOCKET(SOCKET, ADDR, LEN, RC) \ RC = gtm_connect(SOCKET, ADDR, LEN) -#define CREATE_FILE(PATHNAME, MODE, RC) \ -{ \ - do \ - { \ - RC = CREAT(PATHNAME, MODE); \ - } while (-1 == RC && EINTR == errno); \ +#define CREATE_FILE(PATHNAME, MODE, RC) \ +{ \ + do \ + { \ + RC = CREAT(PATHNAME, MODE); \ + } while (-1 == RC && EINTR == errno); \ } -#define DOREAD_A_NOINT(FD, BUF, SIZE, RC) \ -{ \ - do \ - { \ - RC = DOREAD_A(FD, BUF, SIZE); \ - } while (-1 == RC && EINTR == errno); \ +#define DOREAD_A_NOINT(FD, BUF, SIZE, RC) \ +{ \ + do \ + { \ + RC = DOREAD_A(FD, BUF, SIZE); \ + } while (-1 == RC && EINTR == errno); \ } -#define DUP2(FDESC1, FDESC2, RC) \ -{ \ - do \ - { \ - RC = dup2(FDESC1, FDESC2); \ - } while (-1 == RC && EINTR == errno); \ +#define DUP2(FDESC1, FDESC2, RC) \ +{ \ + do \ + { \ + RC = dup2(FDESC1, FDESC2); \ + } while (-1 == RC && EINTR == errno); \ } -#define FCLOSE(STREAM, RC) \ -{ \ - do \ - { \ - RC = fclose(STREAM); \ - } while (-1 == RC && EINTR == errno); \ +#define FCLOSE(STREAM, RC) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + do \ + { \ + DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + RC = fclose(STREAM); \ + ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + } while (-1 == RC && EINTR == errno); \ } -#define FCNTL2(FDESC, ACTION, RC) \ -{ \ - do \ - { \ - RC = fcntl(FDESC, ACTION); \ - } while (-1 == RC && EINTR == errno); \ +#define FCNTL2(FDESC, ACTION, RC) \ +{ \ + do \ + { \ + RC = fcntl(FDESC, ACTION); \ + } while (-1 == RC && EINTR == errno); \ } -#define FCNTL3(FDESC, ACTION, ARG, RC) \ -{ \ - do \ - { \ - RC = fcntl(FDESC, ACTION, ARG); \ - } while (-1 == RC && EINTR == errno); \ +#define FCNTL3(FDESC, ACTION, ARG, RC) \ +{ \ + do \ + { \ + RC = fcntl(FDESC, ACTION, ARG); \ + } while (-1 == RC && EINTR == errno); \ } -#define FGETS_FILE(BUF, LEN, FP, RC) \ -{ \ - do \ - { \ - FGETS(BUF, LEN, FP, RC); \ +#define FGETS_FILE(BUF, LEN, FP, RC) \ +{ \ + do \ + { \ + FGETS(BUF, LEN, FP, RC); \ } while (NULL == RC && !feof(FP) && ferror(FP) && EINTR == errno); \ } -#define FSTAT_FILE(FDESC, INFO, RC) \ -{ \ - do \ - { \ - DEFER_INTERRUPTS(INTRPT_IN_FSTAT); \ - RC = fstat(FDESC, INFO); \ - ENABLE_INTERRUPTS(INTRPT_IN_FSTAT); \ - } while (-1 == RC && EINTR == errno); \ +#define FSTAT_FILE(FDESC, INFO, RC) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + do \ + { \ + DEFER_INTERRUPTS(INTRPT_IN_FSTAT, prev_intrpt_state); \ + RC = fstat(FDESC, INFO); \ + ENABLE_INTERRUPTS(INTRPT_IN_FSTAT, prev_intrpt_state); \ + } while (-1 == RC && EINTR == errno); \ } - -#define FSTATVFS_FILE(FDESC, FSINFO, RC) \ -{ \ - do \ - { \ - FSTATVFS(FDESC, FSINFO, RC); \ - } while (-1 == RC && EINTR == errno); \ + +#define FSTATVFS_FILE(FDESC, FSINFO, RC) \ +{ \ + do \ + { \ + FSTATVFS(FDESC, FSINFO, RC); \ + } while (-1 == RC && EINTR == errno); \ } - -#define FTRUNCATE(FDESC, LENGTH, RC) \ -{ \ - do \ - { \ - RC = ftruncate(FDESC, LENGTH); \ - } while (-1 == RC && EINTR == errno); \ + +#define FTRUNCATE(FDESC, LENGTH, RC) \ +{ \ + do \ + { \ + RC = ftruncate(FDESC, LENGTH); \ + } while (-1 == RC && EINTR == errno); \ } -#define MSGSND(MSGID, MSGP, MSGSZ, FLG, RC) \ -{ \ - do \ - { \ - RC = msgsnd(MSGID, MSGP, MSGSZ, FLG); \ - } while (-1 == RC && EINTR == errno); \ +#define MSGSND(MSGID, MSGP, MSGSZ, FLG, RC) \ +{ \ + do \ + { \ + RC = msgsnd(MSGID, MSGP, MSGSZ, FLG); \ + } while (-1 == RC && EINTR == errno); \ } -#define OPEN_PIPE(FDESC, RC) \ -{ \ - do \ - { \ - RC = pipe(FDESC); \ - } while (-1 == RC && EINTR == errno); \ +#define OPEN_PIPE(FDESC, RC) \ +{ \ + do \ + { \ + RC = pipe(FDESC); \ + } while (-1 == RC && EINTR == errno); \ } -#define READ_FILE(FD, BUF, SIZE, RC) \ -{ \ - do \ - { \ - RC = read(FD, BUF, SIZE); \ - } while (-1 == RC && EINTR == errno); \ +#define READ_FILE(FD, BUF, SIZE, RC) \ +{ \ + do \ + { \ + RC = read(FD, BUF, SIZE); \ + } while (-1 == RC && EINTR == errno); \ } -#define RECV(SOCKET, BUF, LEN, FLAGS, RC) \ -{ \ - do \ - { \ - RC = (int)recv(SOCKET, BUF, (int)(LEN), \ - FLAGS); \ - } while (-1 == RC && EINTR == errno); \ +#define RECV(SOCKET, BUF, LEN, FLAGS, RC) \ +{ \ + do \ + { \ + RC = (int)recv(SOCKET, BUF, (int)(LEN), FLAGS); \ + } while (-1 == RC && EINTR == errno); \ } -#define RECVFROM_SOCK(SOCKET, BUF, LEN, FLAGS, \ - ADDR, ADDR_LEN, RC) \ -{ \ - do \ - { \ - RC = RECVFROM(SOCKET, BUF, LEN, \ - FLAGS, ADDR, ADDR_LEN); \ - } while (-1 == RC && EINTR == errno); \ +#define RECVFROM_SOCK(SOCKET, BUF, LEN, FLAGS, \ + ADDR, ADDR_LEN, RC) \ +{ \ + do \ + { \ + RC = RECVFROM(SOCKET, BUF, LEN, \ + FLAGS, ADDR, ADDR_LEN); \ + } while (-1 == RC && EINTR == errno); \ } -#define SELECT(FDS, INLIST, OUTLIST, XLIST, \ - TIMEOUT, RC) \ -{ \ - struct timeval eintr_select_timeval; \ - do \ - { \ - eintr_select_timeval = *(TIMEOUT); \ - RC = select(FDS, INLIST, OUTLIST, \ - XLIST, &eintr_select_timeval); \ - } while (-1 == RC && EINTR == errno); \ +#define SELECT(FDS, INLIST, OUTLIST, XLIST, TIMEOUT, RC) \ +{ \ + struct timeval eintr_select_timeval; \ + do \ + { \ + eintr_select_timeval = *(TIMEOUT); \ + RC = select(FDS, INLIST, OUTLIST, \ + XLIST, &eintr_select_timeval); \ + } while (-1 == RC && EINTR == errno); \ } -#define SEND(SOCKET, BUF, LEN, FLAGS, RC) \ -{ \ - do \ - { \ - RC = send(SOCKET, BUF, LEN, FLAGS); \ - } while (-1 == RC && EINTR == errno); \ +#define SEND(SOCKET, BUF, LEN, FLAGS, RC) \ +{ \ + do \ + { \ + RC = send(SOCKET, BUF, LEN, FLAGS); \ + } while (-1 == RC && EINTR == errno); \ } -#define SENDTO_SOCK(SOCKET, BUF, LEN, FLAGS, \ - ADDR, ADDR_LEN, RC) \ -{ \ - do \ - { \ - RC = SENDTO(SOCKET, BUF, LEN, FLAGS, \ - ADDR, ADDR_LEN); \ - } while(-1 == RC && EINTR == errno); \ +#define SENDTO_SOCK(SOCKET, BUF, LEN, FLAGS, \ + ADDR, ADDR_LEN, RC) \ +{ \ + do \ + { \ + RC = SENDTO(SOCKET, BUF, LEN, FLAGS, \ + ADDR, ADDR_LEN); \ + } while (-1 == RC && EINTR == errno); \ } - -#define STAT_FILE(PATH, INFO, RC) \ -{ \ - do \ - { \ - RC = Stat(PATH, INFO); \ - } while ((uint4)-1 == RC && EINTR == errno); \ + +#define STAT_FILE(PATH, INFO, RC) \ +{ \ + do \ + { \ + RC = Stat(PATH, INFO); \ + } while ((uint4)-1 == RC && EINTR == errno); \ } -#define LSTAT_FILE(PATH, INFO, RC) \ -{ \ - do \ - { \ - RC = LSTAT(PATH, INFO); \ - } while ((uint4)-1 == RC && EINTR == errno); \ +#define LSTAT_FILE(PATH, INFO, RC) \ +{ \ + do \ + { \ + RC = LSTAT(PATH, INFO); \ + } while ((uint4)-1 == RC && EINTR == errno); \ } -#define TCFLUSH(FDESC, REQUEST, RC) \ -{ \ - do \ - { \ - RC = tcflush(FDESC, REQUEST); \ - } while (-1 == RC && EINTR == errno); \ +#define TCFLUSH(FDESC, REQUEST, RC) \ +{ \ + do \ + { \ + RC = tcflush(FDESC, REQUEST); \ + } while (-1 == RC && EINTR == errno); \ } #if defined(UNIX) @@ -263,20 +272,20 @@ } #endif -#define TRUNCATE_FILE(PATH, LENGTH, RC) \ -{ \ - do \ - { \ - RC = TRUNCATE(PATH, LENGTH); \ - } while (-1 == RC && EINTR == errno); \ +#define TRUNCATE_FILE(PATH, LENGTH, RC) \ +{ \ + do \ + { \ + RC = TRUNCATE(PATH, LENGTH); \ + } while (-1 == RC && EINTR == errno); \ } -#define WAIT(STATUS, RC) \ -{ \ - do \ - { \ - RC = wait(STATUS); \ - } while (-1 == RC && EINTR == errno); \ +#define WAIT(STATUS, RC) \ +{ \ + do \ + { \ + RC = wait(STATUS); \ + } while (-1 == RC && EINTR == errno); \ } #define WAITPID(PID, STATUS, OPTS, RC) \ @@ -293,26 +302,20 @@ } while (-1 == RC && EINTR == errno); \ } -#define GTM_FSYNC(FD, RC) \ -{ \ - do \ - { \ - RC = fsync(FD); \ - } while (-1 == RC && EINTR == errno); \ -} - -#define SIGPROCMASK(FUNC, NEWSET, OLDSET, RC) \ -{ \ - do \ - { \ - RC = sigprocmask(FUNC, NEWSET, OLDSET); \ - } while (-1 == RC && EINTR == errno); \ +#define GTM_FSYNC(FD, RC) \ +{ \ + do \ + { \ + RC = fsync(FD); \ + } while (-1 == RC && EINTR == errno); \ } #if defined(DEBUG) && defined(UNIX) #define SYSCONF(PARM, RC) \ { \ - DEFER_INTERRUPTS(INTRPT_IN_SYSCONF); \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_SYSCONF, prev_intrpt_state); \ if (gtm_white_box_test_case_enabled \ && (WBTEST_SYSCONF_WRAPPER == gtm_white_box_test_case_number)) \ { \ @@ -321,15 +324,84 @@ LONG_SLEEP(60); \ } \ RC = sysconf(PARM); \ - ENABLE_INTERRUPTS(INTRPT_IN_SYSCONF); \ + ENABLE_INTERRUPTS(INTRPT_IN_SYSCONF, prev_intrpt_state); \ } #else #define SYSCONF(PARM, RC) \ { \ - DEFER_INTERRUPTS(INTRPT_IN_SYSCONF); \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_SYSCONF, prev_intrpt_state); \ RC = sysconf(PARM); \ - ENABLE_INTERRUPTS(INTRPT_IN_SYSCONF); \ + ENABLE_INTERRUPTS(INTRPT_IN_SYSCONF, prev_intrpt_state); \ } #endif +/* GTM_FREAD is an EINTR-safe versions of "fread". Retries on EINTR. Returns number of elements read in NREAD. + * If NREAD < NELEMS, if error then copies errno into RC, if eof then sets RC to 0. Note: RC is not initialized otherwise. + * Macro is named GTM_FREAD instead of FREAD because AIX defines a macro by the same name in fcntl.h. + */ +#define GTM_FREAD(BUFF, ELEMSIZE, NELEMS, FP, NREAD, RC) \ +{ \ + size_t elems_to_read, elems_read; \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_EINTR_WRAPPERS, prev_intrpt_state); \ + elems_to_read = NELEMS; \ + for (;;) \ + { \ + elems_read = fread(BUFF, ELEMSIZE, elems_to_read, FP); \ + assert(elems_read <= elems_to_read); \ + elems_to_read -= elems_read; \ + if (0 == elems_to_read) \ + break; \ + RC = feof(fp); \ + if (RC) \ + { /* Reached EOF. No error. */ \ + RC = 0; \ + break; \ + } \ + RC = ferror(fp); \ + assert(RC); \ + assert(errno == RC); \ + clearerr(fp); /* reset error set by the "fread" */ \ + /* In case of EINTR, retry "fread" */ \ + if (EINTR != RC) \ + break; \ + } \ + NREAD = NELEMS - elems_to_read; \ + ENABLE_INTERRUPTS(INTRPT_IN_EINTR_WRAPPERS, prev_intrpt_state); \ +} + +/* GTM_FWRITE is an EINTR-safe versions of "fwrite". Retries on EINTR. Returns number of elements written in NWRITTEN. + * If NWRITTEN < NELEMS, copies errno into RC. Note: RC is not initialized otherwise. + * Macro is named GTM_FWRITE instead of FWRITE because AIX defines a macro by the same name in fcntl.h. + */ +#define GTM_FWRITE(BUFF, ELEMSIZE, NELEMS, FP, NWRITTEN, RC) \ +{ \ + size_t elems_to_write, elems_written; \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_EINTR_WRAPPERS, prev_intrpt_state); \ + elems_to_write = NELEMS; \ + for (;;) \ + { \ + elems_written = fwrite(BUFF, ELEMSIZE, elems_to_write, FP); \ + assert(elems_written <= elems_to_write); \ + elems_to_write -= elems_written; \ + if (0 == elems_to_write) \ + break; \ + assert(!feof(fp)); \ + RC = ferror(fp); \ + assert(RC); \ + assert(errno == RC); \ + clearerr(fp); /* reset error set by the "fwrite" */ \ + /* In case of EINTR, retry "fwrite" */ \ + if (EINTR != RC) \ + break; \ + } \ + NWRITTEN = NELEMS - elems_to_write; \ + ENABLE_INTERRUPTS(INTRPT_IN_EINTR_WRAPPERS, prev_intrpt_state); \ +} + #endif diff --git a/sr_port/emit_code.c b/sr_port/emit_code.c index ee31299d..65623007 100644 --- a/sr_port/emit_code.c +++ b/sr_port/emit_code.c @@ -1614,7 +1614,7 @@ void emit_trip(oprtype *opr, boolean_t val_output, uint4 generic_inst, int trg_r */ int get_arg_reg(void) { - int arg_reg_i; + int arg_reg_i = GTM_REG_ACCUM; /* Default never used due to the assert in the switch below */ switch (cg_phase) { diff --git a/sr_port/emit_code.h b/sr_port/emit_code.h index 2828cddf..70b9fead 100644 --- a/sr_port/emit_code.h +++ b/sr_port/emit_code.h @@ -54,7 +54,8 @@ int gtm_reg(int vax_reg); #if defined(__vms) || defined(_AIX) || defined(__sparc) || defined(__hpux) || (defined(__linux__) && defined(__ia64)) \ || defined(__MVS__) # define TRUTH_IN_REG -#elif defined(__osf__) || (defined(__linux__) && defined(__x86_64__)) || defined(Linux390) +#elif defined(__osf__) || (defined(__linux__) && defined(__x86_64__)) || defined(Linux390) \ + || (defined(__CYGWIN__) && defined(__x86_64__)) # undef TRUTH_IN_REG #else # error UNSUPPORTED PLATFORM diff --git a/sr_port/err_check.c b/sr_port/err_check.c old mode 100644 new mode 100755 diff --git a/sr_port/error.h b/sr_port/error.h old mode 100644 new mode 100755 diff --git a/sr_port/error_trap.h b/sr_port/error_trap.h old mode 100644 new mode 100755 diff --git a/sr_port/eval_expr.c b/sr_port/eval_expr.c old mode 100644 new mode 100755 index 1ae54e75..0f4e6eea --- a/sr_port/eval_expr.c +++ b/sr_port/eval_expr.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2015 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -19,6 +19,9 @@ #include "compile_pattern.h" #include "fullbool.h" #include "show_source_line.h" +#include "stringpool.h" +#include "gtm_string.h" +#include "gtm_utf8.h" GBLREF boolean_t run_time; @@ -29,17 +32,33 @@ error_def(ERR_SIDEEFFECTEVAL); LITREF octabstruct oc_tab[]; LITREF toktabtype tokentable[]; +GBLREF spdesc stringpool; +GBLREF boolean_t gtm_utf8_mode; + +/** + * Given a start token that represents a non-unary operation, consumes tokens and constructs an appropriate triple tree. + * Adds the triple tree to the chain of execution. + * @input[out] a A pointer that will be set to the last token seen + * @returns An integer flag of; EXPR_INDR or EXPR_GOOD or EXPR_FAIL + * @par Side effects + * - Calls advance window multiple times, and consumes tokens accordingly + * - Calls expratom multiple times, which (most notably) adds literals to a hash table + * - Calls ins_triple, which adds triples to the execution chain + */ int eval_expr(oprtype *a) { - boolean_t ind_pat, saw_local, saw_se, se_warn; + boolean_t ind_pat, saw_local, saw_se, se_warn, replaced; int op_count, se_handling; opctype bin_opcode; oprtype optyp_1, optyp_2, *optyp_ptr; tbp *catbp, *tripbp; - triple *argtrip, *parm, *ref, *ref1, *t1, *t2; + triple *argtrip, *parm, *ref, *ref1, *t1, *t2; + mliteral *m1, *m2; + mval tmp_mval; + int i = 0; unsigned short type; - DCL_THREADGBL_ACCESS; + DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; if (!expratom(&optyp_1)) { /* If didn't already add an error of our own, do so now with catch all expression error */ @@ -80,12 +99,36 @@ int eval_expr(oprtype *a) catbp = &ref->backptr; /* borrow backptr to track args */ saw_se = saw_local = FALSE; for (op_count = 2; ; op_count++) /* op_count = first operand plus destination */ - { - parm = newtriple(OC_PARAMETER); - ref1->operand[1] = put_tref(parm); - ref1 = parm; - ref1->operand[0] = optyp_1; - if (se_handling) + { /* If we can, concat string literals at compile-time rather than runtime */ + replaced = FALSE; + if ((OC_PARAMETER == ref1->opcode) + && (TRIP_REF == ref1->operand[0].oprclass) + && (OC_LIT == ref1->operand[0].oprval.tref->opcode) + && (TRIP_REF == optyp_1.oprclass) + && (OC_LIT == optyp_1.oprval.tref->opcode)) + { /* Copy the string over */ + m1 = ref1->operand[0].oprval.tref->operand[0].oprval.mlit; + m2 = optyp_1.oprval.tref->operand[0].oprval.mlit; + tmp_mval.mvtype = MV_STR; + tmp_mval.str.char_len = m1->v.str.char_len + m2->v.str.char_len; + tmp_mval.str.len = m1->v.str.len + m2->v.str.len; + ENSURE_STP_FREE_SPACE(tmp_mval.str.len); + tmp_mval.str.addr = (char *)stringpool.free; + memcpy(tmp_mval.str.addr, m1->v.str.addr, m1->v.str.len); + memcpy(tmp_mval.str.addr + m1->v.str.len, m2->v.str.addr, m2->v.str.len); + stringpool.free = (unsigned char *)tmp_mval.str.addr + tmp_mval.str.len; + ref1->operand[0] = put_lit(&tmp_mval); + optyp_1 = ref1->operand[0]; + replaced = TRUE; + op_count--; + } else + { + parm = newtriple(OC_PARAMETER); + ref1->operand[1] = put_tref(parm); + ref1 = parm; + ref1->operand[0] = optyp_1; + } + if (se_handling && !replaced) { /* the following code deals with protecting lvn values from change by a following * side effect and thereby produces a standard evaluation order. It is similar to code in * expritem for function arguments, but has slightly different and easier circumstances @@ -114,6 +157,18 @@ int eval_expr(oprtype *a) { if (!saw_se) /* suppressed standard or lucked out on ordering */ saw_local = FALSE; /* just clear the backptrs - shut off other processing */ + /* This code checks to see if the only parameter for this OC_CAT is a string literal, + and if it is, then it simply returns the literal*/ + if ((2 == op_count) && (OC_PARAMETER == ref1->opcode) + && (TRIP_REF == ref1->operand[0].oprclass) + && (OC_LIT == ref1->operand[0].oprval.tref->opcode)) + { /* We need to copy some things from the original first */ + ref1->operand[0].oprval.tref->src = ref->src; + t1 = ref1->operand[0].oprval.tref; + ref = t1; + optyp_1 = put_tref(t1); + break; + } dqloop(catbp, que, tripbp) { /* work chained arguments which are in reverse order */ argtrip = tripbp->bpt; diff --git a/sr_port/ex_tail.c b/sr_port/ex_tail.c old mode 100644 new mode 100755 diff --git a/sr_port/exfunc.c b/sr_port/exfunc.c old mode 100644 new mode 100755 diff --git a/sr_port/exp.mpt b/sr_port/exp.mpt old mode 100644 new mode 100755 diff --git a/sr_port/expr.c b/sr_port/expr.c old mode 100644 new mode 100755 diff --git a/sr_port/expratom.c b/sr_port/expratom.c old mode 100644 new mode 100755 diff --git a/sr_port/expritem.c b/sr_port/expritem.c old mode 100644 new mode 100755 diff --git a/sr_port/ext2jnl.c b/sr_port/ext2jnl.c old mode 100644 new mode 100755 index ed96af7e..75347ace --- a/sr_port/ext2jnl.c +++ b/sr_port/ext2jnl.c @@ -121,7 +121,6 @@ char *ext2jnl(char *ptr, jnl_record *rec, seq_num saved_jnl_seqno, seq_num saved int keylength, keystate, len, i, reclen, temp_reclen, val_len; bool keepgoing; mstr src, des; - jnl_record *temp_rec; muextract_type exttype; enum jnl_record_type rectype; jrec_suffix *suffix; @@ -129,7 +128,6 @@ char *ext2jnl(char *ptr, jnl_record *rec, seq_num saved_jnl_seqno, seq_num saved DEBUG_ONLY(uint4 tcom_num = 0;) ext_stop = ptr + strlen(ptr) + 1; - temp_rec = rec; exttype = (muextract_type)MUEXTRACT_TYPE(ptr); assert((exttype >= 0) && (exttype < MUEXT_MAX_TYPES)); diff --git a/sr_port/extern_func.c b/sr_port/extern_func.c old mode 100644 new mode 100755 index e8a9d705..da1d3f3b --- a/sr_port/extern_func.c +++ b/sr_port/extern_func.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2011 Fidelity Information Services, Inc * + * Copyright (c) 2011-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -14,20 +15,13 @@ #include "opcode.h" #include "toktyp.h" #include "advancewindow.h" -#ifdef VMS -#include "vaxsym.h" -#include "mmemory.h" -#endif -GBLREF char *lexical_ptr; GBLREF unsigned char *source_buffer; error_def(ERR_RTNNAME); /* Maximum size of external routine reference of the form label^routine */ -#ifdef UNIX #define MAX_EXTREF (2 * MAX_MIDENT_LEN + STR_LIT_LEN("^")) -#endif /* compiler parse to AVT module for external functions ($&) */ int extern_func(oprtype *a) @@ -38,14 +32,10 @@ int extern_func(oprtype *a) mstr extentry, package; oprtype *nxtopr; triple *calltrip, *ref; -# ifdef VMS - char *extsym, *extern_symbol; - oprtype tabent; -# endif DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; - assert (TK_AMPERSAND == TREF(window_token)); + assert(TK_AMPERSAND == TREF(window_token)); advancewindow(); cnt = 0; extref = (char *)&source_buffer[TREF(last_source_column) - 1]; @@ -56,9 +46,8 @@ int extern_func(oprtype *a) if (TK_PERIOD == TREF(director_token)) { /* if ident is a package reference, then take it off */ package.addr = extref; - package.len = INTCAST(lexical_ptr - extref - 1); - VMS_ONLY(package.len = ((MAX_EXTREF < package.len) ? MAX_EXTREF : package.len)); - extref = lexical_ptr; + package.len = INTCAST(TREF(lexical_ptr) - extref - 1); + extref = TREF(lexical_ptr); advancewindow(); /* get to . */ advancewindow(); /* to next token */ if (have_ident = (TK_IDENT == TREF(window_token))) /* NOTE assignment */ @@ -83,53 +72,18 @@ int extern_func(oprtype *a) extentry.len = INTCAST((char *)&source_buffer[TREF(last_source_column) - 1] - extref); extentry.len = INTCAST(extentry.len > MAX_EXTREF ? MAX_EXTREF : extentry.len); extentry.addr = extref; -# ifdef VMS_CASE_SENSITIVE_MACROS - if (!run_time) - { /* this code is disabled because the - * external call table macros are not case sensitive - */ - extern_symbol = mcalloc(MAX_SYMREF); - extsym = extern_symbol; - MEMCPY_LIT(extsym, ZCSYM_PREFIX); - extsym += SIZEOF(ZCSYM_PREFIX) - 1; - memcpy(extsym, package.addr, package.len); - if ('%' == *extsym) - *extsym = '_'; - extsym += package.len; - *extsym++ = '.'; - memcpy(extsym, extentry.addr, extentry.len); - if ('%' == *extsym) - *extsym = '_'; - extsym += extentry.len; - extentry.addr = extern_symbol; - extentry.len = extsym - extern_symbol; - tabent = put_cdlt(&extentry); - } else - { -# endif -# ifdef VMS - ref = newtriple(OC_FGNLOOKUP); - ref->operand[0] = put_str(package.addr, package.len); - ref->operand[1] = put_str(extentry.addr, extentry.len); - tabent = put_tref(ref); -# endif -# ifdef VMS_CASE_SENSITIVE_MACROS - } -# endif calltrip = maketriple(a ? OC_FNFGNCAL : OC_FGNCAL); nxtopr = &calltrip->operand[1]; ref = newtriple(OC_PARAMETER); - ref->operand[0] = UNIX_ONLY(put_str(package.addr, package.len)) VMS_ONLY(tabent); + ref->operand[0] = put_str(package.addr, package.len); *nxtopr = put_tref(ref); nxtopr = &ref->operand[1]; cnt++; -# ifdef UNIX ref = newtriple(OC_PARAMETER); ref->operand[0] = put_str(extentry.addr, extentry.len); *nxtopr = put_tref(ref); nxtopr = &ref->operand[1]; cnt++; -# endif if (TK_LPAREN != TREF(window_token)) { ref = newtriple(OC_PARAMETER); diff --git a/sr_port/f_ascii.c b/sr_port/f_ascii.c old mode 100644 new mode 100755 index 0360ef0b..5c70cb21 --- a/sr_port/f_ascii.c +++ b/sr_port/f_ascii.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -13,10 +14,16 @@ #include "compiler.h" #include "toktyp.h" #include "advancewindow.h" +#include "op.h" +#include "opcode.h" +#include "gtm_utf8.h" + +GBLREF boolean_t gtm_utf8_mode; int f_ascii(oprtype *a, opctype op) { triple *r; + mval tmp_mval; DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -31,6 +38,23 @@ int f_ascii(oprtype *a, opctype op) if (EXPR_FAIL == expr(&(r->operand[1]), MUMPS_INT)) return FALSE; } + if ((OC_LIT == r->operand[0].oprval.tref->opcode) + && (OC_ILIT == r->operand[1].oprval.tref->opcode) + && (!gtm_utf8_mode || valid_utf_string(&r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str))) + { + if (OC_FNASCII == r->opcode) + { + op_fnascii(r->operand[1].oprval.tref->operand[0].oprval.ilit, + &r->operand[0].oprval.tref->operand[0].oprval.mlit->v, &tmp_mval); + } else + { + op_fnzascii(r->operand[1].oprval.tref->operand[0].oprval.ilit, + &r->operand[0].oprval.tref->operand[0].oprval.mlit->v, &tmp_mval); + } + *a = put_lit(&tmp_mval); + a->oprval.tref->src = r->src; + return TRUE; + } ins_triple(r); *a = put_tref(r); return TRUE; diff --git a/sr_port/f_data.c b/sr_port/f_data.c old mode 100644 new mode 100755 diff --git a/sr_port/f_extract.c b/sr_port/f_extract.c old mode 100644 new mode 100755 index e2b5dc67..eefaf69c --- a/sr_port/f_extract.c +++ b/sr_port/f_extract.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -10,15 +11,34 @@ ****************************************************************/ #include "mdef.h" + #include "compiler.h" +#include "mmemory.h" #include "opcode.h" #include "toktyp.h" #include "advancewindow.h" +#include "op.h" +#include "gtm_utf8.h" +#include "xfer_enum.h" +#include "stringpool.h" + +#if defined(__ia64) + #define OP_FNEXTRACT op_fnextract2 +#else + #define OP_FNEXTRACT op_fnextract +#endif + +GBLREF boolean_t gtm_utf8_mode; /* $EXTRACT, $ZEXTRACT, and $ZSUBSTR use this compiler routine as all have similar function and identical invocation signatures */ -int f_extract(oprtype *a, opctype op) +STATICDEF int f_extract(oprtype *a, opctype op) { - triple *first, *last, *r; + triple *first, *last, *r; + mval tmp_mval; + oprtype *newop; + + static mstr scratch_space = {0, 0, 0}; + DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -47,6 +67,40 @@ int f_extract(oprtype *a, opctype op) return FALSE; } } + /* This code tries to execute $EXTRACT at compile time if all parameters are literals */ + if ((OC_LIT == r->operand[0].oprval.tref->opcode) + && (OC_ILIT == first->operand[0].oprval.tref->opcode) + && (OC_ILIT == last->operand[0].oprval.tref->opcode) + && (!gtm_utf8_mode || valid_utf_string(&r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str))) + { /* We don't know how much space we will use; but we know it will be <= the size of the current string */ + if (scratch_space.len < r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str.len) + { + if (scratch_space.addr != 0) + free(scratch_space.addr); + scratch_space.addr = malloc(r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str.len); + scratch_space.len = r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str.len; + } + tmp_mval.str.addr = scratch_space.addr; + if ((OC_FNEXTRACT == op) || (OC_FNZEXTRACT == op)) + { + OP_FNEXTRACT(last->operand[0].oprval.tref->operand[0].oprval.ilit, + first->operand[0].oprval.tref->operand[0].oprval.ilit, + &r->operand[0].oprval.tref->operand[0].oprval.mlit->v, &tmp_mval); + } else + { + assert(OC_FNZSUBSTR == op); + op_fnzsubstr(&r->operand[0].oprval.tref->operand[0].oprval.mlit->v, + first->operand[0].oprval.tref->operand[0].oprval.ilit, + last->operand[0].oprval.tref->operand[0].oprval.ilit, &tmp_mval); + } + s2pool(&tmp_mval.str); + newop = (oprtype *)mcalloc(SIZEOF(oprtype)); + *newop = put_lit(&tmp_mval); /* Copies mval so stack var tmp_mval not an issue */ + assert(TRIP_REF == newop->oprclass); + newop->oprval.tref->src = r->src; + *a = put_tref(newop->oprval.tref); + return TRUE; + } ins_triple(r); *a = put_tref(r); return TRUE; diff --git a/sr_port/f_find.c b/sr_port/f_find.c old mode 100644 new mode 100755 diff --git a/sr_port/f_fnumber.c b/sr_port/f_fnumber.c old mode 100644 new mode 100755 diff --git a/sr_port/f_fnzbitfind.c b/sr_port/f_fnzbitfind.c old mode 100644 new mode 100755 diff --git a/sr_port/f_fnzbitget.c b/sr_port/f_fnzbitget.c old mode 100644 new mode 100755 diff --git a/sr_port/f_fnzbitset.c b/sr_port/f_fnzbitset.c old mode 100644 new mode 100755 diff --git a/sr_port/f_fnzbitstr.c b/sr_port/f_fnzbitstr.c old mode 100644 new mode 100755 diff --git a/sr_port/f_get.c b/sr_port/f_get.c old mode 100644 new mode 100755 diff --git a/sr_port/f_incr.c b/sr_port/f_incr.c old mode 100644 new mode 100755 diff --git a/sr_port/f_justify.c b/sr_port/f_justify.c old mode 100644 new mode 100755 diff --git a/sr_port/f_length.c b/sr_port/f_length.c old mode 100644 new mode 100755 diff --git a/sr_port/f_mint.c b/sr_port/f_mint.c old mode 100644 new mode 100755 diff --git a/sr_port/f_mint_mstr.c b/sr_port/f_mint_mstr.c old mode 100644 new mode 100755 diff --git a/sr_port/f_mstr.c b/sr_port/f_mstr.c old mode 100644 new mode 100755 diff --git a/sr_port/f_name.c b/sr_port/f_name.c old mode 100644 new mode 100755 diff --git a/sr_port/f_next.c b/sr_port/f_next.c old mode 100644 new mode 100755 diff --git a/sr_port/f_one_mval.c b/sr_port/f_one_mval.c old mode 100644 new mode 100755 diff --git a/sr_port/f_order.c b/sr_port/f_order.c old mode 100644 new mode 100755 diff --git a/sr_port/f_order1.c b/sr_port/f_order1.c old mode 100644 new mode 100755 diff --git a/sr_port/f_qlength.c b/sr_port/f_qlength.c old mode 100644 new mode 100755 diff --git a/sr_port/f_qsubscript.c b/sr_port/f_qsubscript.c old mode 100644 new mode 100755 diff --git a/sr_port/f_query.c b/sr_port/f_query.c old mode 100644 new mode 100755 diff --git a/sr_port/f_reverse.c b/sr_port/f_reverse.c old mode 100644 new mode 100755 diff --git a/sr_port/f_select.c b/sr_port/f_select.c old mode 100644 new mode 100755 diff --git a/sr_port/f_stack.c b/sr_port/f_stack.c old mode 100644 new mode 100755 diff --git a/sr_port/f_text.c b/sr_port/f_text.c old mode 100644 new mode 100755 index 8cc68b72..95b20bad --- a/sr_port/f_text.c +++ b/sr_port/f_text.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -17,19 +18,25 @@ #include "cmd_qlf.h" #include "advancewindow.h" #include "gtm_caseconv.h" +#include "gtm_string.h" +#include "gtm_common_defs.h" static readonly mstr zero_mstr; GBLREF boolean_t run_time; -GBLREF mident routine_name; GBLREF command_qualifier cmd_qlf; +GBLREF mident routine_name; + +STATICDEF char *suppressed_values[] = {"GTM$DMOD", "GTM$CI"}; +error_def(ERR_RPARENMISSING); error_def(ERR_RTNNAME); error_def(ERR_TEXTARG); int f_text(oprtype *a, opctype op) { - int implicit_offset = 0; + char *c; + int implicit_offset = 0, len; triple *label, *r; DCL_THREADGBL_ACCESS; @@ -106,7 +113,34 @@ int f_text(oprtype *a, opctype op) /* Coagulate tokens as necessary (and available) to allow '#' in the routine name */ advwindw_hash_in_mname_allowed(); # endif - label->operand[1] = put_str((TREF(window_ident)).addr, (TREF(window_ident)).len); + if (TK_DOLLAR == TREF(director_token)) /* the item has a $ in it */ + { /* violate information hiding to special case illegal names GT.M can return from $STACK() et al */ + c = TREF(lexical_ptr) - STR_LIT_LEN("GTM$"); + advancewindow(); /* parse to $ */ + if (0 == memcmp(c, "GTM$", STR_LIT_LEN("GTM$"))) + { /* parse past GTM$DMOD or GTM$CI to prevent RPARENMISSING error */ + advancewindow(); /* parse to end of ident */ + len = TREF(lexical_ptr) - c - (TK_EOL == TREF(director_token) ? 0 : 1); + for (implicit_offset = 0; ARRAYSIZE(suppressed_values) > implicit_offset; implicit_offset++) + { /* reuse of implicit_offset */ + if ((STRLEN(suppressed_values[implicit_offset]) == len) + && (0 == memcmp(c, suppressed_values[implicit_offset], len))) + { + label->operand[1] = put_str(suppressed_values[implicit_offset], len); + break; + } + } + if (ARRAYSIZE(suppressed_values) == implicit_offset) + (TREF(last_source_column))--; /* if no match (error) adjust for extra parse */ + } else + implicit_offset = ARRAYSIZE(suppressed_values); + if (ARRAYSIZE(suppressed_values) == implicit_offset) + { /* give the error that would arise had we just ignored the $ */ + stx_error(ERR_RPARENMISSING); + return FALSE; + } + } else + label->operand[1] = put_str((TREF(window_ident)).addr, (TREF(window_ident)).len); advancewindow(); break; case TK_ATSIGN: diff --git a/sr_port/f_translate.c b/sr_port/f_translate.c old mode 100644 new mode 100755 diff --git a/sr_port/f_two_mstrs.c b/sr_port/f_two_mstrs.c old mode 100644 new mode 100755 diff --git a/sr_port/f_two_mval.c b/sr_port/f_two_mval.c old mode 100644 new mode 100755 diff --git a/sr_port/f_view.c b/sr_port/f_view.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zcall.c b/sr_port/f_zcall.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zconvert.c b/sr_port/f_zconvert.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zdate.c b/sr_port/f_zdate.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zgetsyi.c b/sr_port/f_zgetsyi.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zjobexam.c b/sr_port/f_zjobexam.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zparse.c b/sr_port/f_zparse.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zprevious.c b/sr_port/f_zprevious.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zqgblmod.c b/sr_port/f_zqgblmod.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zsearch.c b/sr_port/f_zsearch.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zsigproc.c b/sr_port/f_zsigproc.c old mode 100644 new mode 100755 diff --git a/sr_port/f_ztrnlnm.c b/sr_port/f_ztrnlnm.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zwidth.c b/sr_port/f_zwidth.c old mode 100644 new mode 100755 diff --git a/sr_port/f_zwrite.c b/sr_port/f_zwrite.c index 429e736d..050b4dc8 100644 --- a/sr_port/f_zwrite.c +++ b/sr_port/f_zwrite.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2012 Fidelity Information Services, Inc * + * Copyright (c) 2012-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -11,50 +12,51 @@ #include "mdef.h" #include "compiler.h" +#include "mmemory.h" #include "opcode.h" #include "indir_enum.h" #include "toktyp.h" #include "mdq.h" #include "fullbool.h" - +#include "gtm_utf8.h" +#include "advancewindow.h" +#include "op.h" +#include "stringpool.h" /* $ZWRITE(): Single parameter - string expression */ int f_zwrite(oprtype *a, opctype op) { - triple *oldchain, *r; - save_se save_state; + mval tmp_mval; + oprtype *newop; + triple *r; DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; - if (TK_ATSIGN != TREF(window_token)) + r = maketriple(op); + if (EXPR_FAIL == expr(&(r->operand[0]), MUMPS_STR)) + return FALSE; + if (TK_COMMA != TREF(window_token)) + r->operand[1] = put_ilit(0); + else { - r = maketriple(op); - if (EXPR_FAIL == expr(&(r->operand[0]), MUMPS_STR)) + advancewindow(); + if (EXPR_FAIL == expr(&(r->operand[1]), MUMPS_INT)) return FALSE; - ins_triple(r); - } else - { - r = maketriple(OC_INDFUN); - if (SHIFT_SIDE_EFFECTS) - { - START_GVBIND_CHAIN(&save_state, oldchain); - if (!indirection(&(r->operand[0]))) - { - setcurtchain(oldchain); - return FALSE; - } - r->operand[1] = put_ilit((mint)indir_fnzwrite); - ins_triple(r); - PLACE_GVBIND_CHAIN(&save_state, oldchain); - } else - { - if (!indirection(&(r->operand[0]))) - return FALSE; - r->operand[1] = put_ilit((mint)indir_fnzwrite); - ins_triple(r); - } } + /* This code tries to execute $ZWRITE at compile time if all parameters are literals */ + if ((OC_LIT == r->operand[0].oprval.tref->opcode) && (ILIT_REF == r->operand[1].oprval.tref->operand->oprclass) + && (!gtm_utf8_mode || valid_utf_string(&r->operand[0].oprval.tref->operand[0].oprval.mlit->v.str))) + { /* We don't know how much space we will use; but we know it's based on the size of the current string */ + op_fnzwrite(r->operand[1].oprval.tref->operand[0].oprval.ilit, + &r->operand[0].oprval.tref->operand[0].oprval.mlit->v, &tmp_mval); + newop = (oprtype *)mcalloc(SIZEOF(oprtype)); + *newop = put_lit(&tmp_mval); /* Copies mval so stack var tmp_mval not an issue */ + assert(TRIP_REF == newop->oprclass); + newop->oprval.tref->src = r->src; + *a = put_tref(newop->oprval.tref); + return TRUE; + } + ins_triple(r); *a = put_tref(r); return TRUE; } - diff --git a/sr_port/fao_parm.h b/sr_port/fao_parm.h old mode 100644 new mode 100755 diff --git a/sr_port/fgncal.h b/sr_port/fgncal.h old mode 100644 new mode 100755 diff --git a/sr_port/file_head_read.h b/sr_port/file_head_read.h old mode 100644 new mode 100755 diff --git a/sr_port/file_head_write.h b/sr_port/file_head_write.h old mode 100644 new mode 100755 diff --git a/sr_port/fileinfo.h b/sr_port/fileinfo.h old mode 100644 new mode 100755 diff --git a/sr_port/five_2_ascii.c b/sr_port/five_2_ascii.c old mode 100644 new mode 100755 diff --git a/sr_port/five_2_ascii.h b/sr_port/five_2_ascii.h old mode 100644 new mode 100755 diff --git a/sr_port/five_bit.c b/sr_port/five_bit.c old mode 100644 new mode 100755 diff --git a/sr_port/five_bit.h b/sr_port/five_bit.h old mode 100644 new mode 100755 diff --git a/sr_port/fix_pages.h b/sr_port/fix_pages.h old mode 100644 new mode 100755 diff --git a/sr_port/fl.mpt b/sr_port/fl.mpt old mode 100644 new mode 100755 diff --git a/sr_port/flt_mod.c b/sr_port/flt_mod.c old mode 100644 new mode 100755 diff --git a/sr_port/flt_mod.h b/sr_port/flt_mod.h old mode 100644 new mode 100755 diff --git a/sr_port/flush_jmp.c b/sr_port/flush_jmp.c index 53497b90..b1943ef6 100644 --- a/sr_port/flush_jmp.c +++ b/sr_port/flush_jmp.c @@ -68,8 +68,8 @@ void flush_jmp (rhdtyp *rtn_base, unsigned char *context, unsigned char *transfe assert(!(frame_pointer->flags & SFF_ETRAP_ERR) || (NULL == error_frame) || (error_frame == frame_pointer)); assert(!(SFT_TRIGR & frame_pointer->type)); frame_pointer->flags &= SFF_ETRAP_ERR_OFF; /* clear SFF_ETRAP_ERR bit */ - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* clear SFF_IMPLTSTART_CALLD bit since this frame is being rewritten */ - GTMTRIG_ONLY(DBGTRIGR((stderr, "flush_jmp: Turrning off SFF_IMPLTSTART_CALLD_OFF in frame 0x"lvaddr"\n", frame_pointer))); + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* clear SSF_NORET_VIA_MUMTSTART since this frame is being rewritten */ + GTMTRIG_ONLY(DBGTRIGR((stderr, "flush_jmp: Disabling SSF_NORET_VIA_MUMTSTART_OFF in frame 0x"lvaddr"\n", frame_pointer))); USHBIN_ONLY(old_rtnhdr = frame_pointer->rvector); frame_pointer->rvector = rtn_base; /* Now that fp->rvector has been overwritten to new routine, check if the older routine had a "rtn_relinked" flag set diff --git a/sr_port/flush_jmp.h b/sr_port/flush_jmp.h old mode 100644 new mode 100755 diff --git a/sr_port/flush_pio.c b/sr_port/flush_pio.c old mode 100644 new mode 100755 diff --git a/sr_port/fnname.h b/sr_port/fnname.h old mode 100644 new mode 100755 diff --git a/sr_port/fnorder.h b/sr_port/fnorder.h old mode 100644 new mode 100755 diff --git a/sr_port/fnpc.h b/sr_port/fnpc.h old mode 100644 new mode 100755 index fbc71b25..bd0c6b2d --- a/sr_port/fnpc.h +++ b/sr_port/fnpc.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2007 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,13 +16,40 @@ /* Note, FNPC_MAX should never exceed 254 since the value 255 is used to flag "invalid entry" */ #define FNPC_STRLEN_MIN 15 #define FNPC_MAX 50 -#define FNPC_ELEM_MAX 80 +#define FNPC_ELEM_MAX 81 + +#ifdef DEBUG +GBLREF uint4 process_id; +/* $[Z]PIECE() statistics */ +GBLREF int c_miss; /* cache misses (debug) */ +GBLREF int c_hit; /* cache hits (debug) */ +GBLREF int c_small; /* scanned small string brute force */ +GBLREF int c_small_pcs; /* chars scanned by small scan */ +GBLREF int c_pskip; /* number of pieces "skipped" */ +GBLREF int c_pscan; /* number of pieces "scanned" */ +GBLREF int c_parscan; /* number of partial scans (partial cache hits) */ +/* Flag we are doing SET $[Z]PIECE() and its statistics fields */ +GBLREF boolean_t setp_work; /* The work we are doing is for set $piece */ +GBLREF int cs_miss; /* cache misses (debug) */ +GBLREF int cs_hit; /* cache hits (debug) */ +GBLREF int cs_small; /* scanned small string brute force */ +GBLREF int cs_small_pcs; /* chars scanned by small scan */ +GBLREF int cs_pskip; /* number of pieces "skipped" */ +GBLREF int cs_pscan; /* number of pieces "scanned" */ +GBLREF int cs_parscan; /* number of partial scans (partial cache hits) */ +GBLREF int c_clear; /* cleared due to (possible) value change */ +# define COUNT_EVENT(x) if (setp_work) ++cs_##x; else ++c_##x; +# define INCR_COUNT(x,y) if (setp_work) cs_##x += y; else c_##x += y; +#else +# define COUNT_EVENT(x) +# define INCR_COUNT(x,y) +#endif /* The delimiter argument to op_fnp1, opfnzp1, op_setp1, and op_setzp1 is - passed as an integer but contains 1-4 chars (zero filled). The unicode - versions are interested in all of them but the non-unicode versions are - only interested in the first char. -*/ + * passed as an integer but contains 1-4 chars (zero filled). The unicode + * versions are interested in all of them but the non-unicode versions are + * only interested in the first char. + */ typedef union { int unichar_val; @@ -31,7 +59,6 @@ typedef union typedef struct fnpc_struct { mstr last_str; /* The last string (addr/len) we used in cache */ - unsigned int *pcoffmax; /* Address of last element in pstart array */ int delim; /* delimiter used in $[z]piece */ int npcs; /* Number of pieces for which values are filled in */ int indx; /* The index of this piece */ diff --git a/sr_port/fnpc_stats.c b/sr_port/fnpc_stats.c index 9a3b9cc7..4771796c 100644 --- a/sr_port/fnpc_stats.c +++ b/sr_port/fnpc_stats.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2007 Fidelity Information Services, Inc * + * Copyright (c) 2007-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,22 +16,6 @@ #include "gtm_stdio.h" #ifdef DEBUG -GBLREF uint4 process_id; -GBLREF int c_miss; /* cache misses (debug) */ -GBLREF int c_hit; /* cache hits (debug) */ -GBLREF int c_small; /* scanned small string brute force */ -GBLREF int c_small_pcs; /* chars scanned by small scan */ -GBLREF int c_pskip; /* number of pieces "skipped" */ -GBLREF int c_pscan; /* number of pieces "scanned" */ -GBLREF int c_parscan; /* number of partial scans (partial cache hits) */ -GBLREF int cs_miss; /* cache misses (debug) */ -GBLREF int cs_hit; /* cache hits (debug) */ -GBLREF int cs_small; /* scanned small string brute force */ -GBLREF int cs_small_pcs; /* chars scanned by small scan */ -GBLREF int cs_pskip; /* number of pieces "skipped" */ -GBLREF int cs_pscan; /* number of pieces "scanned" */ -GBLREF int cs_parscan; /* number of partial scans (partial cache hits) */ -GBLREF int c_clear; /* cleared due to (possible) value change */ void fnpc_stats(void) { diff --git a/sr_port/fntext_ch.c b/sr_port/fntext_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/follow.h b/sr_port/follow.h old mode 100644 new mode 100755 diff --git a/sr_port/format2zwr.c b/sr_port/format2zwr.c old mode 100644 new mode 100755 diff --git a/sr_port/format_key_lv_val.c b/sr_port/format_key_lv_val.c old mode 100644 new mode 100755 diff --git a/sr_port/format_key_mvals.c b/sr_port/format_key_mvals.c old mode 100644 new mode 100755 diff --git a/sr_port/format_targ_key.c b/sr_port/format_targ_key.c old mode 100644 new mode 100755 diff --git a/sr_port/format_targ_key.h b/sr_port/format_targ_key.h old mode 100644 new mode 100755 diff --git a/sr_port/freecnt.mpt b/sr_port/freecnt.mpt old mode 100644 new mode 100755 diff --git a/sr_port/funsvn.h b/sr_port/funsvn.h old mode 100644 new mode 100755 diff --git a/sr_port/g.mpt b/sr_port/g.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gbldef.mpt b/sr_port/gbldef.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gbldefs.c b/sr_port/gbldefs.c index 258ebd91..412bf033 100644 --- a/sr_port/gbldefs.c +++ b/sr_port/gbldefs.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -29,19 +29,11 @@ #include "gtm_limits.h" #include "gtm_un.h" #include "gtm_pwd.h" +#include "gtm_signal.h" -#include #include -#ifdef VMS -# include /* Required for gtmsource.h */ -# include -# include -# include "desblk.h" -#endif -#ifdef GTM_PTHREAD -# include -#endif #include "cache.h" +#include "gtm_multi_thread.h" #include "hashtab_addr.h" #include "hashtab_int4.h" #include "hashtab_int8.h" @@ -82,9 +74,7 @@ #include "zwrite.h" #include "zbreak.h" #include "mmseg.h" -#ifndef VMS -# include "gtmsiginfo.h" -#endif +#include "gtmsiginfo.h" #include "gtmimagename.h" #include "gt_timer.h" #include "iosocketdef.h" /* needed for socket_pool and MAX_N_SOCKETS */ @@ -107,7 +97,6 @@ /* FOR MERGE RELATED GLOBALS */ #include "gvname_info.h" #include "op_merge.h" -#ifdef UNIX #include "cli.h" #include "invocation_mode.h" #include "fgncal.h" @@ -116,25 +105,22 @@ #include "gtm_zlib.h" #include "anticipatory_freeze.h" #include "mu_rndwn_all.h" -#endif #include "jnl_typedef.h" #include "repl_ctl.h" -#ifdef VMS -#include "gtm_logicals.h" /* for GTM_MEMORY_NOACCESS_COUNT */ -#endif #include "gds_blk_upgrade.h" /* for UPGRADE_IF_NEEDED flag */ #include "cws_insert.h" /* for CWS_REORG_ARRAYSIZE */ +#include "gtm_multi_proc.h" +#include "fnpc.h" #ifdef UNICODE_SUPPORTED #include "gtm_icu_api.h" #include "gtm_utf8.h" #include "gtm_conv.h" +#include "utfcgr.h" #endif -# ifdef GTM_CRYPT -# include "gtmcrypt.h" -# include "gdsblk.h" -# include "muextr.h" -# include "gtmxc_types.h" -# endif +#include "gtmcrypt.h" +#include "gdsblk.h" +#include "muextr.h" +#include "gtmxc_types.h" #ifdef GTM_TLS #include "gtm_tls_interface.h" #endif @@ -179,7 +165,6 @@ GBLDEF bool error_mupip, mupip_error_occurred, dec_nofac; GBLDEF boolean_t is_updproc, - is_updhelper, mupip_jnl_recover, suspend_lvgcol, run_time, @@ -191,6 +176,9 @@ GBLDEF boolean_t is_updproc, gtm_stdxkill, /* TRUE => Use M Standard X-KILL - FALSE use historical GTM X-KILL (default) */ in_timed_tn, /* TRUE => Timed TP transaction in progress */ tp_timeout_deferred; /* TRUE => A TP timeout has occurred but is deferred */ +GBLDEF uint4 is_updhelper; /* = UPD_HELPER_READER if reader helper, = UPD_HELPER_WRITER if writer helper, + * = 0 otherwise. + */ GBLDEF volatile boolean_t tp_timeout_set_xfer; /* TRUE => A timeout succeeded in setting xfer table intercepts. This flag stays * a true global unless each thread gets its own xfer table. */ @@ -288,13 +276,10 @@ GBLDEF boolean_t created_core; /* core file was created */ GBLDEF unsigned int core_in_progress; /* creating core NOW if > 0 */ GBLDEF boolean_t dont_want_core; /* Higher level flag overrides need_core set by lower level rtns */ GBLDEF boolean_t exit_handler_active; /* recursion prevention */ +GBLDEF boolean_t skip_exit_handler; /* set for processes that are usually forked off and so should not do gds_rundown */ GBLDEF boolean_t block_saved; -#if defined(KEEP_zOS_EBCDIC) || defined(VMS) -GBLDEF iconv_t dse_over_cvtcd = (iconv_t)0; -#endif GBLDEF gtm_chset_t dse_over_chset = CHSET_M; LITDEF MIDENT_DEF(zero_ident, 0, NULL); /* the null mident */ -GBLDEF char *lexical_ptr; GBLDEF int4 aligned_source_buffer[MAX_SRCLINE / SIZEOF(int4) + 1]; GBLDEF unsigned char *source_buffer = (unsigned char *)aligned_source_buffer; GBLDEF src_line_struct src_head; @@ -316,24 +301,12 @@ GBLDEF char **cmd_arg; #ifdef __osf__ #pragma pointer_size (restore) #endif -#ifdef UNIX GBLDEF volatile uint4 heartbeat_counter; GBLDEF boolean_t heartbeat_started; -#endif /* DEFERRED EVENTS */ GBLDEF bool licensed = TRUE; -#if defined(UNIX) GBLDEF volatile int4 num_deferred; -#elif defined(VMS) -GBLDEF volatile short num_deferred; -GBLDEF int4 lkid, lid; -GBLDEF desblk exi_blk; -GBLDEF struct chf$signal_array *tp_restart_fail_sig; -GBLDEF boolean_t tp_restart_fail_sig_used; -#else -# error "Unsupported Platform" -#endif GBLDEF volatile int4 fast_lock_count; /* Used in wcs_stale */ /* REPLICATION RELATED GLOBALS */ GBLDEF gtmsource_options_t gtmsource_options; @@ -355,11 +328,9 @@ GBLDEF boolean_t mu_reorg_in_swap_blk; /* set to TRUE for the duration of the GBLDEF boolean_t mu_rndwn_process; GBLDEF gv_key *gv_currkey_next_reorg; GBLDEF gv_namehead *reorg_gv_target; -#ifdef UNIX GBLDEF struct sockaddr_un gtmsecshr_sock_name; GBLDEF struct sockaddr_un gtmsecshr_cli_sock_name; GBLDEF key_t gtmsecshr_key; -#endif GBLDEF int gtmsecshr_sockpath_len; GBLDEF int gtmsecshr_cli_sockpath_len; GBLDEF mstr gtmsecshr_pathname; @@ -396,8 +367,6 @@ GBLDEF jnl_format_buffer *non_tp_jfb_ptr; GBLDEF boolean_t dse_running; GBLDEF jnlpool_addrs jnlpool; GBLDEF jnlpool_ctl_ptr_t jnlpool_ctl; -GBLDEF jnlpool_ctl_struct temp_jnlpool_ctl_struct; -GBLDEF jnlpool_ctl_ptr_t temp_jnlpool_ctl = &temp_jnlpool_ctl_struct; GBLDEF sm_uc_ptr_t jnldata_base; GBLDEF int4 jnlpool_shmid = INVALID_SHMID; GBLDEF recvpool_addrs recvpool; @@ -407,7 +376,6 @@ GBLDEF int gtmrecv_srv_count; /* The following _in_prog counters are needed to prevent deadlocks while doing jnl-qio (timer & non-timer). */ GBLDEF volatile int4 db_fsync_in_prog; GBLDEF volatile int4 jnl_qio_in_prog; -#ifdef UNIX GBLDEF gtmsiginfo_t signal_info; #ifndef MUTEX_MSEM_WAKE GBLDEF int mutex_sock_fd = FD_INVALID; @@ -417,24 +385,19 @@ GBLDEF int mutex_wake_this_proc_len; GBLDEF int mutex_wake_this_proc_prefix_len; GBLDEF fd_set mutex_wait_on_descs; #endif -#endif GBLDEF void (*call_on_signal)(); GBLDEF enum gtmImageTypes image_type; /* initialized at startup i.e. in dse.c, lke.c, gtm.c, mupip.c, gtmsecshr.c etc. */ -#ifdef UNIX GBLDEF parmblk_struct *param_list; /* call-in parameters block (defined in unix/fgncalsp.h)*/ GBLDEF unsigned int invocation_mode = MUMPS_COMPILE; /* how mumps has been invoked */ GBLDEF char cli_err_str[MAX_CLI_ERR_STR] = ""; /* Parse Error message buffer */ GBLDEF char *cli_err_str_ptr; GBLDEF boolean_t gtm_pipe_child; -#endif GBLDEF io_desc *gtm_err_dev; /* this array is indexed by file descriptor */ GBLDEF boolean_t *lseekIoInProgress_flags; -#if defined(UNIX) /* Latch variable for Unix implementations. Used in SUN and HP */ GBLDEF global_latch_t defer_latch; -#endif GBLDEF int num_additional_processors; GBLDEF int gtm_errno = -1; /* holds the errno (unix) in case of an rts_error */ GBLDEF int4 error_condition; @@ -445,9 +408,7 @@ GBLDEF volatile int4 gtmMallocDepth; /* Recursion indicator */ GBLDEF d_socket_struct *socket_pool; GBLDEF boolean_t mu_star_specified; GBLDEF backup_reg_list *mu_repl_inst_reg_list; -#ifndef VMS GBLDEF volatile int suspend_status = NO_SUSPEND; -#endif GBLDEF gv_namehead *reset_gv_target = INVALID_GV_TARGET; GBLDEF VSIG_ATOMIC_T util_interrupt; GBLDEF sgmnt_addrs *kip_csa; @@ -457,8 +418,8 @@ GBLDEF merge_glvn_ptr mglvnp; GBLDEF int ztrap_form; GBLDEF boolean_t ztrap_new; GBLDEF int4 wtfini_in_prog; -/* items for $piece stats */ #ifdef DEBUG +/* Items for $piece stats */ GBLDEF int c_miss; /* cache misses (debug) */ GBLDEF int c_hit; /* cache hits (debug) */ GBLDEF int c_small; /* scanned small string brute force */ @@ -475,20 +436,22 @@ GBLDEF int cs_pscan; /* number of pieces "scanned" */ GBLDEF int cs_parscan; /* number of partial scans (partial cache hits) */ GBLDEF int c_clear; /* cleared due to (possible) value change */ GBLDEF boolean_t setp_work; -#endif +#ifdef UNICODE_SUPPORTED +/* Items for UTF8 cache */ +GBLDEF int u_miss; /* UTF cache misses (debug) */ +GBLDEF int u_hit; /* UTF cache hits (debug) */ +GBLDEF int u_small; /* UTF scanned small string brute force (debug) */ +GBLDEF int u_pskip; /* Number of UTF groups "skipped" (debug) */ +GBLDEF int u_puscan; /* Number of groups "scanned" for located char (debug) */ +GBLDEF int u_pabscan; /* Number of non-UTF groups we scan for located char (debug) */ +GBLDEF int u_parscan; /* Number of partial scans (partial cache hits) (debug) */ +GBLDEF int u_parhscan; /* Number of partial scans after filled slots (debug) */ +#endif /* UNICODE_SUPPORTED */ +#endif /* DEBUG */ GBLDEF z_records zbrk_recs; -#ifdef UNIX GBLDEF ipcs_mesg db_ipcs; /* For requesting gtmsecshr to update ipc fields */ GBLDEF gd_region *ftok_sem_reg; /* Last region for which ftok semaphore is grabbed */ GBLDEF int gtm_non_blocked_write_retries; /* number of retries for non-blocked write to pipe */ -#endif -#ifdef VMS -/* Following global variables store the state of an erroring sys$qio just before a GTMASSERT BYPASSOK(GTMASSERT) - * in the CHECK_CHANNEL_STATUS macro. - */ -GBLDEF uint4 check_channel_status; /* stores the qio return status */ -GBLDEF uint4 check_channel_id; /* stores the qio channel id */ -#endif GBLDEF boolean_t write_after_image; /* true for after-image jnlrecord writing by recover/rollback */ GBLDEF int iott_write_error; GBLDEF int4 write_filter; @@ -697,9 +660,9 @@ GBLDEF uint4 update_trans; /* Bitmask indicating among other things whether thi GBLDEF boolean_t is_uchar_wcs_code[] = /* uppercase failure codes that imply database cache related problem */ { /* if any of the following failure codes are seen in the final retry, wc_blocked will be set to trigger cache recovery */ -#define CDB_SC_NUM_ENTRY(code, value) -#define CDB_SC_UCHAR_ENTRY(code, is_wcs_code, value) is_wcs_code, -#define CDB_SC_LCHAR_ENTRY(code, is_wcs_code, value) +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) is_wcs_code, +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) #include "cdb_sc_table.h" /* BYPASSOK */ #undef CDB_SC_NUM_ENTRY #undef CDB_SC_UCHAR_ENTRY @@ -707,9 +670,39 @@ GBLDEF boolean_t is_uchar_wcs_code[] = /* uppercase failure codes that imply da }; GBLDEF boolean_t is_lchar_wcs_code[] = /* lowercase failure codes that imply database cache related problem */ { /* if any of the following failure codes are seen in the final retry, wc_blocked will be set to trigger cache recovery */ -#define CDB_SC_NUM_ENTRY(code, value) -#define CDB_SC_UCHAR_ENTRY(code, is_wcs_code, value) -#define CDB_SC_LCHAR_ENTRY(code, is_wcs_code, value) is_wcs_code, +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) is_wcs_code, +#include "cdb_sc_table.h" /* BYPASSOK */ +#undef CDB_SC_NUM_ENTRY +#undef CDB_SC_UCHAR_ENTRY +#undef CDB_SC_LCHAR_ENTRY +}; +GBLDEF boolean_t is_final_retry_code_num[] = /* failure codes that are possible in final retry : numeric */ +{ +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) final_retry_ok, +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) +#include "cdb_sc_table.h" /* BYPASSOK */ +#undef CDB_SC_NUM_ENTRY +#undef CDB_SC_UCHAR_ENTRY +#undef CDB_SC_LCHAR_ENTRY +}; +GBLDEF boolean_t is_final_retry_code_uchar[] = /* failure codes that are possible in final retry : upper case */ +{ +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) final_retry_ok, +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) +#include "cdb_sc_table.h" /* BYPASSOK */ +#undef CDB_SC_NUM_ENTRY +#undef CDB_SC_UCHAR_ENTRY +#undef CDB_SC_LCHAR_ENTRY +}; +GBLDEF boolean_t is_final_retry_code_lchar[] = /* failure codes that are possible in final retry : lower case */ +{ +#define CDB_SC_NUM_ENTRY(code, final_retry_ok, value) +#define CDB_SC_UCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) +#define CDB_SC_LCHAR_ENTRY(code, final_retry_ok, is_wcs_code, value) final_retry_ok, #include "cdb_sc_table.h" /* BYPASSOK */ #undef CDB_SC_NUM_ENTRY #undef CDB_SC_UCHAR_ENTRY @@ -721,10 +714,6 @@ GBLDEF boolean_t gvdupsetnoop = TRUE; /* if TRUE, duplicate SETs do not change G * behavior is turned ON. GT.M has a way of turning it off with a VIEW command. */ GBLDEF boolean_t gtm_fullblockwrites; /* Do full (not partial) database block writes T/F */ -#ifdef VMS -GBLDEF uint4 gtm_memory_noaccess_defined; /* count of the number of GTM_MEMORY_NOACCESS_ADDR logicals which are defined */ -GBLDEF uint4 gtm_memory_noaccess[GTM_MEMORY_NOACCESS_COUNT]; /* see VMS gtm_env_init_sp.c */ -#endif GBLDEF volatile boolean_t in_wcs_recover; /* TRUE if in "wcs_recover", used by "bt_put" and "generic_exit_handler" */ GBLDEF boolean_t in_gvcst_incr; /* set to TRUE by gvcst_incr, set to FALSE by gvcst_put * distinguishes to gvcst_put, if the current db operation is a SET or $INCR */ @@ -756,16 +745,9 @@ GBLDEF MIDENT_DEF(int_module_name, 0, &int_module_name_buff[0]); GBLDEF char rev_time_buf[REV_TIME_BUFF_LEN]; GBLDEF unsigned short source_name_len; GBLDEF short object_name_len; -UNIX_ONLY( - GBLDEF unsigned char source_file_name[MAX_FBUFF + 1]; - GBLDEF unsigned char object_file_name[MAX_FBUFF + 1]; - GBLDEF int object_file_des; -) -VMS_ONLY( - GBLDEF char source_file_name[PATH_MAX]; - GBLDEF char object_file_name[256]; - GBLDEF struct FAB obj_fab; /* file access block for the object file */ -) +GBLDEF unsigned char source_file_name[MAX_FBUFF + 1]; +GBLDEF unsigned char object_file_name[MAX_FBUFF + 1]; +GBLDEF int object_file_des; GBLDEF int4 curr_addr, code_size; GBLDEF mident_fixed zlink_mname; GBLDEF sm_uc_ptr_t reformat_buffer; @@ -783,7 +765,6 @@ GBLDEF boolean_t gtm_dbfilext_syslog_disable; /* by default, log every file exte GBLDEF int4 cws_reorg_remove_index; /* see mu_swap_blk.c for comments on the need for these two */ GBLDEF block_id cws_reorg_remove_array[CWS_REORG_REMOVE_ARRAYSIZE]; GBLDEF uint4 log_interval; -#ifdef UNIX GBLDEF uint4 gtm_principal_editing_defaults; /* ext_cap flags if tt */ GBLDEF boolean_t in_repl_inst_edit; /* used by an assert in repl_inst_read/repl_inst_write */ GBLDEF boolean_t in_repl_inst_create; /* used by repl_inst_read/repl_inst_write */ @@ -794,7 +775,6 @@ GBLDEF boolean_t in_mupip_ftok; /* Used by an assert in repl_inst_read */ GBLDEF uint4 section_offset; /* Used by PRINT_OFFSET_PREFIX macro in repl_inst_dump.c */ GBLDEF uint4 mutex_per_process_init_pid; /* pid that invoked "mutex_per_process_init" */ GBLDEF boolean_t gtm_quiet_halt; /* Suppress FORCEDHALT message */ -#endif #ifdef UNICODE_SUPPORTED /* Unicode line terminators. In addition to the following * codepoints, the sequence CR LF is considered a single @@ -873,13 +853,10 @@ GBLDEF int mcavail; GBLDEF mcalloc_hdr *mcavailptr, *mcavailbase; GBLDEF uint4 max_cache_memsize; /* Maximum bytes used for indirect cache object code */ GBLDEF uint4 max_cache_entries; /* Maximum number of cached indirect compilations */ -GBLDEF void (*cache_table_relobjs)(void); /* Function pointer to call cache_table_rebuild() */ -UNIX_ONLY(GBLDEF ch_ret_type (*ht_rhash_ch)()); /* Function pointer to hashtab_rehash_ch */ -UNIX_ONLY(GBLDEF ch_ret_type (*jbxm_dump_ch)()); /* Function pointer to jobexam_dump_ch */ -UNIX_ONLY(GBLDEF ch_ret_type (*stpgc_ch)()); /* Function pointer to stp_gcol_ch */ -#ifdef VMS -GBLDEF boolean_t tp_has_kill_t_cse; /* cse->mode of kill_t_write or kill_t_create got created in this transaction */ -#endif +GBLDEF void (*cache_table_relobjs)(void); /* Function pointer to call cache_table_rebuild() */ +GBLDEF ch_ret_type (*ht_rhash_ch)(); /* Function pointer to hashtab_rehash_ch */ +GBLDEF ch_ret_type (*jbxm_dump_ch)(); /* Function pointer to jobexam_dump_ch */ +GBLDEF ch_ret_type (*stpgc_ch)(); /* Function pointer to stp_gcol_ch */ GBLDEF cache_rec_ptr_t pin_fail_cr; /* Pointer to the cache-record that we failed while pinning */ GBLDEF cache_rec pin_fail_cr_contents; /* Contents of the cache-record that we failed while pinning */ GBLDEF cache_rec_ptr_t pin_fail_twin_cr; /* Pointer to twin of the cache-record that we failed to pin */ @@ -909,7 +886,6 @@ GBLDEF mval *alias_retarg; /* Points to an alias return arg created by a "QUI GBLDEF boolean_t lvmon_enabled; /* Enable lv_val monitoring */ #endif GBLDEF block_id gtm_tp_allocation_clue; /* block# hint to start allocation for created blocks in TP */ -#ifdef UNIX GBLDEF int4 gtm_zlib_cmp_level; /* zlib compression level specified at process startup */ GBLDEF int4 repl_zlib_cmp_level; /* zlib compression level currently in use in replication pipe. * This is a source-server specific variable and is non-zero only @@ -917,31 +893,31 @@ GBLDEF int4 repl_zlib_cmp_level; /* zlib compression level currently in use in */ GBLDEF zlib_cmp_func_t zlib_compress_fnptr; GBLDEF zlib_uncmp_func_t zlib_uncompress_fnptr; -#endif GBLDEF mlk_stats_t mlk_stats; /* Process-private M-lock statistics */ -#ifdef UNIX /* Initialized blockalrm, block_ttinout and block_sigsent can be used by all threads */ GBLDEF boolean_t blocksig_initialized; /* set to TRUE when blockalrm and block_sigsent are initialized */ GBLDEF sigset_t blockalrm; -UNIX_ONLY(GBLDEF sigset_t block_ttinout;) +GBLDEF sigset_t block_ttinout; GBLDEF sigset_t block_sigsent; /* block all signals that can be sent externally (SIGINT, SIGQUIT, SIGTERM, SIGTSTP, SIGCONT) */ GBLDEF char *gtm_core_file; GBLDEF char *gtm_core_putenv; -#endif #ifdef __MVS__ GBLDEF char *gtm_utf8_locale_object; GBLDEF boolean_t gtm_tag_utf8_as_ascii = TRUE; #endif -#ifdef GTM_CRYPT + +/* Encryption-related fields. */ LITDEF char gtmcrypt_repeat_msg[] = "Please look at prior messages related to encryption for more details"; GBLDEF char *gtmcrypt_badhash_size_msg; -GBLDEF boolean_t gtmcrypt_initialized; /* Set to TRUE if gtmcrypt_init() completes successfully */ +GBLDEF boolean_t gtmcrypt_initialized; /* Set to TRUE if gtmcrypt_init() completes successfully */ GBLDEF char dl_err[MAX_ERRSTR_LEN]; -GBLDEF mstr pvt_crypt_buf; /* Temporary buffer needed where in-place encryption/decryption is not an option */ +GBLDEF mstr pvt_crypt_buf; /* Temporary buffer if in-place encryption / decryption is not an option */ LITDEF gtm_string_t null_iv = {0, ""}; -GBLDEF boolean_t err_same_as_out; -#endif /* GTM_CRYPT */ +GBLDEF uint4 mu_reorg_encrypt_in_prog; /* Reflects whether MUPIP REORG -ENCRYPT is in progress */ +GBLDEF sgmnt_addrs *reorg_encrypt_restart_csa; /* Pointer to the region which caused a transaction restart due to a + * concurrent MUPIP REORG -ENCRYPT */ + #ifdef DEBUG /* Following definitions are related to white_box testing */ GBLDEF boolean_t gtm_white_box_test_case_enabled; @@ -1038,7 +1014,6 @@ GBLDEF boolean_t skip_block_chain_tail_check; GBLDEF boolean_t in_mu_rndwn_file; /* TRUE if we are in mu_rndwn_file (holding standalone access) */ #endif GBLDEF char gvcst_search_clue; -#ifdef UNIX /* The following are replication related global variables. Ideally if we had a repl_gbls_t structure (like jnl_gbls_t) * this would be a member in that. But since we dont have one and since we need to initialize this specificially to a * non-zero value (whereas usually everything else accepts a 0 default value), this is better kept as a separate global @@ -1064,7 +1039,6 @@ GBLDEF repl_conn_info_t *this_side, *remote_side; /* Replication related global variables END */ GBLDEF seq_num gtmsource_save_read_jnl_seqno; GBLDEF gtmsource_state_t gtmsource_state = GTMSOURCE_DUMMY_STATE; -#endif GBLDEF boolean_t gv_play_duplicate_kills; /* A TRUE value implies KILLs of non-existent nodes will continue to * write jnl records and increment the db curr_tn even though they dont * touch any GDS blocks in the db (i.e. treat it as a duplicate kill). @@ -1074,7 +1048,6 @@ GBLDEF boolean_t gv_play_duplicate_kills; /* A TRUE value implies KILLs of non-e GBLDEF boolean_t donot_fflush_NULL; /* Set to TRUE whenever we dont want gtm_putmsg to fflush(NULL). BYPASSOK * As of Jan 2012, mu_rndwn_all is the only user of this functionality. */ -#ifdef UNIX GBLDEF boolean_t jnlpool_init_needed; /* TRUE if jnlpool_init should be done at database init time (eg., for * anticipatory freeze supported configurations). The variable is set * explicitly by interested commands (eg., MUPIP REORG). @@ -1089,7 +1062,6 @@ GBLDEF char gtm_dist[GTM_PATH_MAX]; /* Value of $gtm_dist env variable */ GBLDEF boolean_t gtm_dist_ok_to_use = FALSE; /* Whether or not we can use $gtm_dist */ GBLDEF semid_queue_elem *keep_semids; /* Access semaphores that should be kept because shared memory is up */ GBLDEF boolean_t dmterm_default; /* Retain default line terminators in the direct mode */ -#endif GBLDEF boolean_t in_jnl_file_autoswitch; /* Set to TRUE for a short window inside jnl_file_extend when we are about * to autoswitch; used by jnl_write. */ #ifdef GTM_PTHREAD @@ -1098,21 +1070,13 @@ GBLDEF boolean_t gtm_main_thread_id_set; /* Indicates whether the thread ID is GBLDEF boolean_t gtm_jvm_process; /* Indicates whether we are running with JVM or stand-alone. */ #endif GBLDEF size_t gtm_max_storalloc; /* Maximum that GTM allows to be allocated - used for testing */ -#ifdef VMS -GBLDEF sgmnt_addrs *vms_mutex_check_csa; /* On VMS, mutex_deadlock_check() is directly called from mutex.mar. In - * order to avoid passing csa parameter from the VMS assembly, we set this - * global from mutex_lock* callers. - */ -#endif GBLDEF boolean_t ipv4_only; /* If TRUE, only use AF_INET. Reflects the value of the gtm_ipv4_only * environment variable, so is process wide. */ -#ifdef UNIX GBLDEF void (*stx_error_fptr)(int in_error, ...); /* Function pointer for stx_error() so gtm_utf8.c can avoid pulling * stx_error() into gtmsecshr, and thus just about everything else as well. */ GBLDEF void (*show_source_line_fptr)(boolean_t warn); /* Func pointer for show_source_line() - same purpose as stx_error_fptr */ -#endif #ifdef GTM_TLS GBLDEF gtm_tls_ctx_t *tls_ctx; /* Process private pointer to SSL/TLS context. Any SSL/TLS connections that * the process needs to create will be created from this context. @@ -1121,5 +1085,57 @@ GBLDEF gtm_tls_ctx_t *tls_ctx; /* Process private pointer to SSL/TLS context. * Socket devices. */ #endif -GBLDEF lv_val *active_lv; -GBLDEF boolean_t in_prin_gtmio = FALSE; /* Flag to indicate whether we are processing a GT.M I/O function. */ +GBLDEF lv_val *active_lv; +GBLDEF boolean_t in_prin_gtmio = FALSE; /* Flag to indicate whether we are processing a GT.M I/O function. */ +GBLDEF boolean_t err_same_as_out; + +GBLDEF boolean_t multi_proc_in_use; /* TRUE => parallel processes active ("gtm_multi_proc"). False otherwise */ +GBLDEF multi_proc_shm_hdr_t *multi_proc_shm_hdr; /* Pointer to "multi_proc_shm_hdr_t" structure in shared memory + * created by "gtm_multi_proc". + */ +GBLDEF unsigned char *multi_proc_key; /* NULL for parent process; Non-NULL for child processes forked off + * in "gtm_multi_proc" (usually a null-terminated pointer to the + * region name) + */ +#ifdef DEBUG +GBLDEF boolean_t multi_proc_key_exception; /* If TRUE, multi_proc_key can be NULL even if multi_proc_use is TRUE. + * If FALSE, multi_proc_key shold be non-NULL if multi_proc_use is TRUE. + * else an assert in util_format will fail. + */ +#endif +GBLDEF boolean_t multi_thread_in_use; /* TRUE => threads are in use. FALSE => not in use */ +GBLDEF boolean_t thread_mutex_initialized; /* TRUE => "thread_mutex" variable is initialized */ +GBLDEF pthread_mutex_t thread_mutex; /* mutex structure used to ensure serialization in case we need + * to execute some code that is not thread-safe. Note that it is + * more typical to use different mutexes for different things that + * need concurrency protection, e.g., memory allocation, encryption, + * token hash table, message buffers, etc. If the single mutex becomes + * a bottleneck this needs to be revisited. + */ +GBLDEF pthread_t thread_mutex_holder; /* pid/tid of the thread that has "thread_mutex" currently locked */ +GBLDEF pthread_key_t thread_gtm_putmsg_rname_key; /* points to region name corresponding to each running thread */ +GBLDEF boolean_t thread_block_sigsent; /* TRUE => block external signals SIGINT/SIGQUIT/SIGTERM/SIGTSTP/SIGCONT */ +GBLDEF boolean_t in_nondeferrable_signal_handler; /* TRUE if we are inside "generic_signal_handler". Although this + * is a dbg-only variable, the GBLDEF needs to stay outside of + * a #ifdef DEBUG because this is used inside gtm_malloc_dbg + * which is even used by a non-debug mumps link. + */ +GBLDEF boolean_t forced_thread_exit; /* TRUE => signal threads to exit (likely because some thread already + * exited with an error or the main process got a SIGTERM etc.) + */ +GBLDEF int next_task_index; /* "next" task index waiting for a thread to be assigned */ +GBLDEF int gtm_mupjnl_parallel; /* Maximum # of concurrent threads or procs to use in "gtm_multi_thread" + * or in forward phase of mupip recover. + * 0 => Use one thread/proc per region. + * 1 => Serial execution (no threads) + * 2 => 2 threads concurrently run + * etc. + * Currently only mupip journal commands use this. + */ +GBLDEF boolean_t ctrlc_on; /* TRUE in cenable mode; FALSE in nocenable mode */ +#ifdef DEBUG +GBLDEF int gtm_db_counter_sem_incr; /* Value used to bump the counter semaphore by every process. + * Default is 1. Higher values exercise the ERANGE code better + * when the ftok/access/jnlpool counter semaphore overflows. + */ +#endif diff --git a/sr_port/gbldefs_usr_share.c b/sr_port/gbldefs_usr_share.c old mode 100644 new mode 100755 diff --git a/sr_port/gc.mpt b/sr_port/gc.mpt old mode 100644 new mode 100755 index 8d584353..852d18d1 --- a/sr_port/gc.mpt +++ b/sr_port/gc.mpt @@ -1,6 +1,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; -; Copyright 1989, 2006 Fidelity Information Services, Inc ; +; Copyright (c) 1989-2015 Fidelity National Information ; +; Services, Inc. and/or its subsidiaries. All rights reserved. ; ; ; ; This source code contains the intellectual property ; ; of its copyright holder(s), and is made available ; @@ -10,38 +11,57 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; %GC ;GT.M %GC utility - global copy ; - n %GI,%GO,%SC,$et s %ZL=$zl,$et="zg "_$ZL_":ERR^%GC" - u 0:(ctrap=$c(3):exc="zg "_$ZL_":RESTART^%GC") - w !,"Global copy",! -RESTART r !,"Show copied nodes ? ",%SC s %SC=($tr(%SC,"yes","YES")=$e("YES",1,$l(%SC))) - f r !,"From global ^",%GI q:%GI="" d COPY - u 0:(ctrap="":exc="") - q -COPY n c,ix - i $e(%GI)="?" s ix=%GI d help q - i $e(%GI)'="^" s %GI="^"_%GI - i '$d(@%GI) w !,"Global "_%GI_" does not exist." q - f r !,"To global ^",%GO q:$e(%GO)'="?" s ix=%GO d help - i %GO="" q - i $e(%GO)'="^" s %GO="^"_%GO - i $d(@%GO) w !,"Global "_%GO_" already exists." q - s c=0 - i '$d(%SC) n %SC s %SC=0 - i $d(@%GI)'[0 s @%GO=@%GI s c=c+1 i %SC w !,%GO,"=",@%GI - f s %GI=$q(@%GI) q:%GI="" s c=c+1,ix="("_$p(%GI,"(",2,999),@(%GO_ix)=@%GI i %SC w !,%GO_ix,"=",@%GI - w !,"Total ",c," nodes copied.",! - q -help i $l(ix)=2,"Dd"[$e(ix,2) d ^%GD u 0:flush q - W !!,"This routine copies a node and all its descendents" - w !,"from one global variable to another" - w !,"""From global"" requests the source for the copy," - w !,"""To global"" requests the destination" - w !,"Use standard MUMPS gvn syntax to specify the node names" - w !,"?D invokes %GD to get a global directory" - w !," drops you back to the prior prompt or out of %GC" - w ! - q -ERR w !,$p($zs,",",2,99),! - u 0:(ctrap="":exc="") - s $ec="" - q + new %GI,%GO,%SC,d,x ; $etrap set %ZL=$zlevel;,$etrap="zgoto "_$zlevel_":ERR^%GC" + set d("io")=$io + use $principal + write !,"Global copy",! + set $zstatus="" + if '$data(%zdebug) new $etrap set $etrap="zgoto "_$zlevel_":err^"_$text(+0) do + . zshow "d":d ; save original $p settings + . set x=$piece($piece(d("D",1),"CTRA=",2)," ") + . set:""=x x="""""" + . set d("use")="$principal:(ctrap="_x_":exception=",x=$piece(d("D",1),"EXCE=",2),x=$zwrite($extract(x,2,$length(x)-1)) + . set:""=x x="""""" + . set d("use")=d("use")_x_":"_$select($find(d("D",1),"NOCENE"):"nocenable",1:"cenable")_")" + . set x="set $ecode="""" zgoto "_$stack_":RESTART^%GC:$zstatus[""CTRAP"","_$stack_":err^"_$text(+0) + . use $principal:(ctrap=$char(3,4):exception=x:nocenable) +RESTART read !,"Show copied nodes ? ",%SC set %SC=($translate(%SC,"yes","YES")=$extract("YES",1,$length(%SC))) + for read !,"From global ^",%GI quit:%GI="" do COPY + use:$data(d("use")) @d("use") + use:$data(d("io")) d("io") + quit +COPY new c,ix + if $extract(%GI)="?" set ix=%GI do help quit + set:$extract(%GI)'="^" %GI="^"_%GI + do quit:""=%GI + . new $etrap + . set $etrap="write !,$piece($zstatus,"","",2,99),! set $ecode="""",%GI=""""",x=$qlength(%GI) + if '$data(@%GI) write !,"Global ",%GI," does not exist." quit + for read !,"To global ^",%GO,! quit:$extract(%GO)'="?" set ix=%GO do help + quit:%GO="" + set:$e(%GO)'="^" %GO="^"_%GO + do quit:""=%GO + . new $etrap + . set $etrap="write !,$piece($zstatus,"","",2,99),! set $ecode="""",(%GI,%GO)=""""",x=$qlength(%GO) + if $data(@%GO) write !,"Global ",%GO," already exists." quit + merge @%GO=@%GI + zwrite:$get(%SC) @%GO ; comment out the next 2 lines if you don't want to spend the time to get a count + if $data(@%GI)'[0,$increment(c) + for set %GI=$query(@%GI) quit:%GI="" if $increment(c) + write "Total ",c," nodes copied.",! + quit +help if $length(ix)=2,"Dd"[$extract(ix,2) do ^%GD use $principal:flush quit + write !!,"This routine copies a node and all its descendents" + write !,"from one global variable to another" + write !,"""From global"" requests the source for the copy," + write !,"""To global"" requests the destination" + write !,"Use standard MUMPS gvn syntax to specify the node names" + write !,"?D invokes %GD to get a global directory" + write !," drops you back to the prior prompt or out of %GC" + write ! + quit +err write !,$piece($zstatus,",",2,99),! + use:$data(d("use")) @d("use") + use:$data(d("io")) d("io") + set $ecode="" + quit diff --git a/sr_port/gce.mpt b/sr_port/gce.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gd.mpt b/sr_port/gd.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gde.hlp b/sr_port/gde.hlp old mode 100644 new mode 100755 index edd98e60..db4a78a2 --- a/sr_port/gde.hlp +++ b/sr_port/gde.hlp @@ -101,12 +101,12 @@ These components may be defined in any order, but the final result must be a complete logical path from name to file: - NAME(s) ---> REGION ---> SEGMENT ---> FILE + NAME(s) --> REGION --> SEGMENT --> FILE The default Global Directory contains one complete mapping that comprises these entries for name, region, segment, and file. - * ---> DEFAULT ---> DEFAULT ---> mumps.dat + * --> DEFAULT --> DEFAULT --> mumps.dat (NAME) (REGION) (SEGMENT) (FILE) The * wildcard identifies all possible global names. Subsequent edits @@ -1211,108 +1211,12 @@ (time-based or due to a journal file auto-switch) approaches. By default, EPOCHTAPER is enabled. - -K[EY_SIZE]=size in bytes - - Specifies the maximum size of keys, in bytes, which can be stored in the - region. The KEY_SIZE must be less than the RECORD_SIZE. GDE rejects the - command if the KEY_SIZE is inappropriate for the RECORD_SIZE. - - The minimum KEY_SIZE is three bytes. - - The maximum KEY_SIZE is 1,019 bytes. - - When determining the maximum key size, applications should consider the - following: - - * GT.M uses packed decimal representation for numeric subscripts which - may be larger or smaller than the original representation. - * GT.M substitutes an element terminator for the caret (^), any comma - (,), and any right parenthesis ()). - * GT.M adds an extra byte for every string element, including the global - name. - - For example, the key ^ACN ("Name", "Type") internally occupies 17 bytes. - - By default, GDE uses a KEY_SIZE of 64 bytes. - - -R[ECORD_SIZE]=size in bytes - - Specifies the maximum size (in bytes) of a global variable node's value - that can be stored in a region. - - If the size of a global exceeds one database block, GT.M implicitly spans - that global across multiple database blocks. In the event a global - variable node spans multiple blocks, and the process is not already within - a TP transaction, the GT.M run-time system automatically and transparently - performs the entire operation within an implicit TP transaction (as it - does for Triggers). - - The minimum RECORD_SIZE is zero. A RECORD_SIZE of zero only allows a - global variable node that does not have a value. A typical use of a global - variable node with RECORD_SIZE of zero is for creating indices (where the - presence of a node is all that is required). - - The maximum RECORD_SIZE is 1,048,576 bytes (1MiB). - - By default, GDE uses a RECORD_SIZE of 256 bytes. - - -[NO]N[ULL_SUBSCRIPTS]=[ALWAYS|NEVER|EXISTING] - - Indicates whether GT.M allows null subscripts for global variables stored - in the region (that is, whether GT.M permits references such as - ^aaa("",1)). - - ALWAYS indicates that the null subscripts for global variables are - allowed. - - NEVER indicates that null subscripts for global variables are not allowed. - - EXISTING indicates that null subscripts for global variable can be - accessed and updated, but not created anew. - - By default, regions have -NULL_SUBSCRIPTS=NEVER. - - -[NO]STDNULLCOLL - - Determines whether GT.M null subscripts collate in conformance to the M - standard. - - If STDNULLCOLL is specified, subscripts of globals in the database follow - the M standard where the null subscript collates before all other - subscripts. - - If NOSTDNULLCOLL is specified, null subscripts collate between numeric and - string subscripts. FIS strongly recommends that you use STDNULL and - against using this non-standard null collation, which is the default for - historical reasons. - -[NO]INST[_FREEZE_ON_ERROR] Controls whether custom errors in a region should automatically cause an Instance Freeze. This qualifier modifies the value of "Inst Freeze on Error" file header element. - -[NO]Q[DBRUNDOWN] - - Quickens normal process shutdown where a large number of processes - accessing a database file are required to shutdown almost simultaneously, - for example, in benchmarking scenarios. When a terminating GT.M process - observes that a large number of processes are attached to a database file - and QDBRUNDOWN is enabled, it bypasses checking whether it is the last - process accessing the database. Such a check occurs in a critical section - and bypassing it also bypasses the usual RUNDOWN actions which accelerates - process shutdown removing a possible impediment to process startup. By - default, QDBRUNDOWN is disabled. - - Note that with QDBRUNDOWN there is a possibility of race condition that - might leave the database fileheader and IPC resources in need of cleanup. - Although QDBRUNDOWN minimizes the probability of such a race condition, it - cannot eliminate it. FIS recommends restricting QDBRUNDOWN usage to - special circumstances such as benchmarking and recommends NOQDBRUNDOWN for - normal GT.M usage. When using QDBRUNDOWN, FIS recommends an explicit MUPIP - RUNDOWN of the database file after the last process exits, to ensure the - cleanup of database fileheader and IPC resources. - -[NO]J[OURNAL][=journal-option-list] This qualifier establishes characteristics for the journal file on newly @@ -1337,15 +1241,14 @@ The journal-option-list includes: - * [NO]BE[FORE_IMAGE] - * F[ILE_NAME]=file-specification-name + * A[LLOCATION]=blocks * AUTOSWITCHLIMIT=blocks - * A[LLOCATION]=blocks - - * E[XTENSION]=blocks + * [NO]BE[FORE_IMAGE] * BU[FFER_SIZE]=pages + * E[XTENSION]=blocks + * F[ILE_NAME]=file-specification-name The following section describes some -JOURNAL options. @@ -1391,6 +1294,113 @@ Summary + -K[EY_SIZE]=size in bytes + + Specifies the maximum size of keys, in bytes, which can be stored in the + region. The KEY_SIZE must be less than the RECORD_SIZE. GDE rejects the + command if the KEY_SIZE is inappropriate for the RECORD_SIZE. + + The minimum KEY_SIZE is three bytes. + + The maximum KEY_SIZE is 1,019 bytes. + + When determining the maximum key size, applications should consider the + following: + + * GT.M uses packed decimal representation for numeric subscripts which + may be larger or smaller than the original representation. + * GT.M substitutes an element terminator for the caret (^), any comma + (,), and any right parenthesis ()). + * GT.M adds an extra byte for every string element, including the global + name. + + For example, the key ^ACN ("Name", "Type") internally occupies 17 bytes. + + By default, GDE uses a KEY_SIZE of 64 bytes. + + -[NO]N[ULL_SUBSCRIPTS]=[ALWAYS|NEVER|EXISTING] + + Indicates whether GT.M allows null subscripts for global variables stored + in the region (that is, whether GT.M permits references such as + ^aaa("",1)). + + ALWAYS indicates that the null subscripts for global variables are + allowed. + + NEVER indicates that null subscripts for global variables are not allowed. + + EXISTING indicates that null subscripts for global variable can be + accessed and updated, but not created anew. + + By default, regions have -NULL_SUBSCRIPTS=NEVER. + + -[NO]Q[DBRUNDOWN] + + Shortens normal process shutdown when a large number of processes + accessing a database file need to shutdown almost simultaneously, for + example, in benchmarking scenarios or emergencies. + + When a terminating GT.M process observes that a large number of processes + are attached to a database file and QDBRUNDOWN is enabled, it bypasses + checking whether it is the last process accessing the database. Such a + check occurs in a critical section and bypassing it also bypasses the + usual RUNDOWN actions which accelerates process shutdown removing a + possible impediment to process startup. By default, QDBRUNDOWN is + disabled. + + Note that with QDBRUNDOWN there is a possibility that the last process to + exit might leave the database shared memory and IPC resources in need of + cleanup. Except after the number of concurrent processes exceeds 32Ki, + QDBRUNDOWN minimizes the prossibility of abandoned resources, but it + cannot eliminate it. When using QDBRUNDOWN, use an explicit MUPIP RUNDOWN + of the database file after the last process exits, to ensure the cleanup + of database shared memory and IPC resources; not doing so risk database + damage. + + When a database has QDBRUNDOWN enabled, if the number of attached + processes ever exceeds 32Ki, GT.M stops tracking the number of attached + processes, which means that it cannot recognize when the number reaches + zero (0) and the shared resources can be released. The process that + detects this event issues a NOMORESEMCNT in the system log. This means an + orderly, safe shutdown requires a MUPIP JOURNAL -ROLLBACK -BACKWARD for + replicated databases, a MUPIP JOURNAL -RECOVER -BACKWARD for unreplicated + journaled databases and a MUPIP RUNDOWN for journal-free databases. + + -R[ECORD_SIZE]=size in bytes + + Specifies the maximum size (in bytes) of a global variable node's value + that can be stored in a region. + + If the size of a global exceeds one database block, GT.M implicitly spans + that global across multiple database blocks. In the event a global + variable node spans multiple blocks, and the process is not already within + a TP transaction, the GT.M run-time system automatically and transparently + performs the entire operation within an implicit TP transaction (as it + does for Triggers). + + The minimum RECORD_SIZE is zero. A RECORD_SIZE of zero only allows a + global variable node that does not have a value. A typical use of a global + variable node with RECORD_SIZE of zero is for creating indices (where the + presence of a node is all that is required). + + The maximum RECORD_SIZE is 1,048,576 bytes (1MiB). + + By default, GDE uses a RECORD_SIZE of 256 bytes. + + -[NO]STDNULLCOLL + + Determines whether GT.M null subscripts collate in conformance to the M + standard. + + If STDNULLCOLL is specified, subscripts of globals in the database follow + the M standard where the null subscript collates before all other + subscripts. + + If NOSTDNULLCOLL is specified, null subscripts collate between numeric and + string subscripts. FIS strongly recommends that you use STDNULL and + against using this non-standard null collation, which is the default for + historical reasons. + The following table summarizes GDE region qualifiers. It provides their abbreviations, defaults (as provided by FIS), and allowable minimum and maximum values. @@ -1404,20 +1414,22 @@ |--------------------------------------------+----------+---------+-----------| |-D[YNAMIC_SEGMENT] =segment-name (char) |- |1 |16 | |--------------------------------------------+----------+---------+-----------| - |-K[EY_SIZE]=size in bytes (integer) |64 |3 |1,019 | + |-[NO]EPOCHTAPER |ENABLED |- |- | |--------------------------------------------+----------+---------+-----------| - |-R[ECORD_SIZE]=size in bytes (integer) |256 |7 |1,048,576 | - | | | |(1 MiB) | + |-[NO]INST[_FREEZE_ON_ERROR] |DISABLED |- |- | |--------------------------------------------+----------+---------+-----------| - |-N[ULL_SUBSCRIPTS]=[ALWAYS|NEVER|EXISTING] |NEVER |- |- | + |-[NO]J[OURNAL] [=journal-option-list] |-NOJ |- |- | |--------------------------------------------+----------+---------+-----------| - |-[NO]STDNULLCOLL |N |- |- | + |-K[EY_SIZE]=size in bytes (integer) |64 |3 |1,019 | |--------------------------------------------+----------+---------+-----------| - |-[NO]INST[_FREEZE_ON_ERROR] |DISABLED |- |- | + |-N[ULL_SUBSCRIPTS]=[ALWAYS|NEVER|EXISTING] |NEVER |- |- | + |--------------------------------------------+----------+---------+-----------| + |-R[ECORD_SIZE]=size in bytes (integer) |256 |7 |1,048,576 | + | | | |(1 MiB) | |--------------------------------------------+----------+---------+-----------| |-[NO]Q[DBRUNDOWN] |DISABLED |- |- | |--------------------------------------------+----------+---------+-----------| - |-[NO]J[OURNAL] [=journal-option-list] |-NOJ |- |- | + |-[NO]STDNULLCOLL |N |- |- | +-----------------------------------------------------------------------------+ 2 Segment_Qualifiers @@ -1449,9 +1461,9 @@ * MM supports NOBEFORE_IMAGE journaling only. GT.M issues an error if you use MM with BEFORE_IMAGE Journaling. MM also supports - MUPIP FORWARD RECOVER. MM does not support MUPIP JOURNAL RECOVER - -BACKWARD and only supports MUPIP JOURNAL ROLLBACK to generate - lost and broken transaction files. + MUPIP JOURNAL -RECOVER -FORWARD. MM does not support MUPIP + JOURNAL -RECOVER -BACKWARD and only supports MUPIP JOURNAL + -ROLLBACK to generate lost and broken transaction files. * Depending on your file system, MM may be an option when you need performance advantage in situations where the above restrictions are acceptable. @@ -1541,11 +1553,7 @@ file system when creating or extending a database file; by default UNIX file systems, and GT.M, use sparse (or lazy) allocation, which defers actual allocation until blocks are first written. Failures to preallocate - space produce a PREALLOCATEFAIL error. On platforms where GT.M does not - support preallocation (HP-UX and Solaris), although GDE accepts - -NODEFER_ALLOCATE, MUPIP CREATE ignores it and sets the database file to - DEFER_ALLOCATE. On those platforms, any attempt to change this flag with - MUPIP SET produces a NODFRALLOCSUPP error. + space produce a PREALLOCATEFAIL error. -[NO]ENcryption @@ -1969,7 +1977,7 @@ 1 Copyright Copyright - Copyright 2015 + Copyright 2016 Fidelity National Information Services, Inc. and/or its subsidiaries. All rights reserved. @@ -1991,7 +1999,7 @@ **Note** - This help file is a concise representation of revision V6.2-002 of the + This help file is a concise representation of revision V6.3-000 of the UNIX Administration and Operations Guide. To obtain a copy of the current revision, go to www.fis-gtm.com and then click on the User Documentation tab. diff --git a/sr_port/gde.m b/sr_port/gde.m old mode 100644 new mode 100755 diff --git a/sr_port/gdeadd.m b/sr_port/gdeadd.m old mode 100644 new mode 100755 diff --git a/sr_port/gdechang.m b/sr_port/gdechang.m old mode 100644 new mode 100755 diff --git a/sr_port/gdedelet.m b/sr_port/gdedelet.m old mode 100644 new mode 100755 diff --git a/sr_port/gdeerrors.msg b/sr_port/gdeerrors.msg old mode 100644 new mode 100755 diff --git a/sr_port/gdeexit.m b/sr_port/gdeexit.m old mode 100644 new mode 100755 diff --git a/sr_port/gdehelp.m b/sr_port/gdehelp.m old mode 100644 new mode 100755 diff --git a/sr_port/gdeinit.m b/sr_port/gdeinit.m old mode 100644 new mode 100755 diff --git a/sr_port/gdelocks.m b/sr_port/gdelocks.m old mode 100644 new mode 100755 diff --git a/sr_port/gdelog.m b/sr_port/gdelog.m old mode 100644 new mode 100755 diff --git a/sr_port/gdemap.m b/sr_port/gdemap.m old mode 100644 new mode 100755 diff --git a/sr_port/gdemsgin.m b/sr_port/gdemsgin.m old mode 100644 new mode 100755 diff --git a/sr_port/gdeparse.m b/sr_port/gdeparse.m old mode 100644 new mode 100755 diff --git a/sr_port/gdequit.m b/sr_port/gdequit.m old mode 100644 new mode 100755 diff --git a/sr_port/gderenam.m b/sr_port/gderenam.m old mode 100644 new mode 100755 diff --git a/sr_port/gdescan.m b/sr_port/gdescan.m old mode 100644 new mode 100755 diff --git a/sr_port/gdesetgd.m b/sr_port/gdesetgd.m old mode 100644 new mode 100755 diff --git a/sr_port/gdeshow.m b/sr_port/gdeshow.m old mode 100644 new mode 100755 diff --git a/sr_port/gdespawn.m b/sr_port/gdespawn.m old mode 100644 new mode 100755 diff --git a/sr_port/gdetempl.m b/sr_port/gdetempl.m old mode 100644 new mode 100755 diff --git a/sr_port/gds_blk_downgrade.c b/sr_port/gds_blk_downgrade.c old mode 100644 new mode 100755 diff --git a/sr_port/gds_blk_downgrade.h b/sr_port/gds_blk_downgrade.h old mode 100644 new mode 100755 diff --git a/sr_port/gds_blk_upgrade.c b/sr_port/gds_blk_upgrade.c old mode 100644 new mode 100755 diff --git a/sr_port/gds_blk_upgrade.h b/sr_port/gds_blk_upgrade.h old mode 100644 new mode 100755 diff --git a/sr_port/gds_map_moved.c b/sr_port/gds_map_moved.c old mode 100644 new mode 100755 index 46aba9e1..d93a362b --- a/sr_port/gds_map_moved.c +++ b/sr_port/gds_map_moved.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -38,6 +39,7 @@ void gds_map_moved(sm_uc_ptr_t new_base, sm_uc_ptr_t old_base, sm_uc_ptr_t old_t srch_hist *hist, *hist1, *hist2; gv_namehead *gvt; sgmnt_addrs *csa; + sm_uc_ptr_t buffaddr; csa = cs_addrs; assert(csa->now_crit); @@ -65,22 +67,14 @@ void gds_map_moved(sm_uc_ptr_t new_base, sm_uc_ptr_t old_base, sm_uc_ptr_t old_t for (hist_index = 0; HIST_TERMINATOR != hist->h[hist_index].blk_num; hist_index++) { assert(MAX_BT_DEPTH >= hist_index); - if ((old_base <= hist->h[hist_index].buffaddr) - && (old_top > hist->h[hist_index].buffaddr)) - { + buffaddr = hist->h[hist_index].buffaddr; + if ((old_base <= buffaddr) && (old_top > buffaddr)) hist->h[hist_index].buffaddr += adj; - assert(new_base <= hist->h[hist_index].buffaddr); - } else if ((hist == hist2) && (0 < gvt->clue.end)) + else if ((hist == hist2) && (0 < gvt->clue.end)) { /* alt_hist is not updated when clue is set so the buffaddr can - * point to a prior instance of the file's mapping. So, reset alt_hist. + * point to a prior instance of the file's mapping. So, reset alt_hist. */ hist->h[hist_index].blk_num = HIST_TERMINATOR; - } else - { /* It's already been adjusted or it has to be a private copy */ - assert(((new_base <= hist->h[hist_index].buffaddr) - && (hist->h[hist_index].buffaddr < new_base + (old_top - old_base))) - || (0 != hist->h[hist_index].first_tp_srch_status) - || (0 != ((off_chain *)&(hist->h[hist_index].blk_num))->flag)); } } } diff --git a/sr_port/gds_map_moved.h b/sr_port/gds_map_moved.h old mode 100644 new mode 100755 diff --git a/sr_port/gds_rundown.h b/sr_port/gds_rundown.h old mode 100644 new mode 100755 index 380fb0bc..f7553b32 --- a/sr_port/gds_rundown.h +++ b/sr_port/gds_rundown.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,9 +16,10 @@ #ifdef UNIX int4 gds_rundown(void); -#define CAN_BYPASS(SEMVAL, CANCELLED_TIMER, INST_IS_FROZEN) \ - (((IS_GTM_IMAGE && csd->mumps_can_bypass) && !CANCELLED_TIMER && (PROC_FACTOR * (num_additional_processors + 1) < SEMVAL)) \ - || ((2 < SEMVAL) && (IS_LKE_IMAGE || IS_DSE_IMAGE)) || INST_IS_FROZEN) +#define CAN_BYPASS(SEMVAL, CSD, INST_IS_FROZEN) \ + (INST_IS_FROZEN \ + || (IS_GTM_IMAGE && CSD->mumps_can_bypass && (PROC_FACTOR * (num_additional_processors + 1) < SEMVAL)) \ + || (((2 * DB_COUNTER_SEM_INCR) < SEMVAL) && (IS_LKE_IMAGE || IS_DSE_IMAGE))) #define CANCEL_DB_TIMERS(region, csa, cancelled_timer, cancelled_dbsync_timer) \ { \ @@ -25,7 +27,10 @@ int4 gds_rundown(void); { \ cancel_timer((TID)region); \ if (NULL != csa->nl) \ + { \ DECR_CNT(&csa->nl->wcs_timers, &csa->nl->wc_var_lock); \ + REMOVE_WT_PID(csa); \ + } \ cancelled_timer = TRUE; \ csa->timer = FALSE; \ } \ diff --git a/sr_port/gdsbgtr.h b/sr_port/gdsbgtr.h old mode 100644 new mode 100755 diff --git a/sr_port/gdsblk.h b/sr_port/gdsblk.h old mode 100644 new mode 100755 index 6f1ca21b..96613bef --- a/sr_port/gdsblk.h +++ b/sr_port/gdsblk.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -192,7 +193,7 @@ typedef rec_hdr *rec_hdr_ptr_t; # endif #endif -#define MAX_RESERVE_B(X) ((X)->blk_size - (X)->max_rec_size - SIZEOF(blk_hdr)) +#define MAX_RESERVE_B(X) ((X)->blk_size - (X)->max_key_size - SIZEOF(blk_hdr) - SIZEOF(rec_hdr)) /* anything past key can span */ #define CHKRECLEN(r,b,n) ((unsigned int)((n) + (uchar_ptr_t)(r) - (uchar_ptr_t)(b)) <= (unsigned int)((blk_hdr_ptr_t)(b))->bsiz) /********************************************************************* diff --git a/sr_port/gdsblkops.h b/sr_port/gdsblkops.h old mode 100644 new mode 100755 index 9ec760e6..6b908c41 --- a/sr_port/gdsblkops.h +++ b/sr_port/gdsblkops.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2010 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -84,9 +85,8 @@ typedef struct cumul_update_array_size += tmpua->update_array_size; \ if (NULL == curr_ua) /* in PRO, don't take chances, reset first_ua/curr_ua to newly created upd array */\ { \ - if (dollar_tlevel && (NULL != first_ua)) /* if already in TP, we will lose all updates until now\ - if we reset first_ua. do not proceed in this case */\ - GTMASSERT; \ + /* if already in TP, we will lose all updates until now if we reset first_ua. do not proceed */ \ + assertpro(!dollar_tlevel || (NULL == first_ua)); \ first_ua = curr_ua = tmpua; \ } else \ curr_ua = curr_ua->next_ua = tmpua; \ @@ -218,19 +218,17 @@ typedef struct #endif /* ******************************************************************************** - * REORG_BLK_SEG(BNUM, ADDR, LEN) is the same as the BLK_SEG macro - * except that it takes a private copy of the input memory and adds that - * to the update array. This is necessary in case of MUPIP REORG for two - * operations (Coalesce and Swap). In either cases, the contents of one block - * will rely on the contents of itself and another block. This is not currently - * supported by t_end where the assumption is that all contents needed to build - * a buffer are available in that buffer itself (this greatly simplifies the - * process of pinning of buffers in shared memory). To avoid cross-links to other - * buffers, we need to take a copy of the other buffer's contents from shared - * memory into private memory before adding it to the update array. This macro - * should be called only by MUPIP REORG. An assert has been added to that effect. + * + * REORG_BLK_SEG(BNUM, ADDR, LEN, BLK_SRCH_STAT) is the same as the BLK_SEG macro except that it takes a private copy of the + * input memory and adds that to the update array. This is necessary in case of MUPIP REORG for two operations (Coalesce and + * Swap). In either cases, the contents of one block will rely on the contents of itself and another block. This is not + * currently supported by t_end where the assumption is that all contents needed to build a buffer are available in that buffer + * itself (this greatly simplifies the process of pinning of buffers in shared memory). To avoid cross-links to other buffers, + * we need to take a copy of the other buffer's contents from shared memory into private memory before adding it to the update + * array. This macro should be called only by MUPIP REORG. An assert has been added to that effect. + * */ -#define REORG_BLK_SEG(BNUM, ADDR, LEN) \ +#define REORG_BLK_SEG(BNUM, ADDR, LEN, BLK_SRCH_STAT) \ { \ char *lcl_ptr; \ sm_ulong_t lcl_len; \ @@ -242,6 +240,7 @@ typedef struct if ((0 > (sm_long_t)lcl_len) || ((blk_seg_cnt + lcl_len) > blk_size)) \ { \ assert(CDB_STAGNATE > t_tries); \ + NONTP_TRACE_HIST_MOD(BLK_SRCH_STAT, t_blkmod_mu_clsce); \ return cdb_sc_blkmod; \ } \ BLK_ADDR(lcl_ptr, lcl_len, char); \ diff --git a/sr_port/gdsbml.h b/sr_port/gdsbml.h old mode 100644 new mode 100755 diff --git a/sr_port/gdsbt.h b/sr_port/gdsbt.h index 495a4f9e..08ea8cfa 100644 --- a/sr_port/gdsbt.h +++ b/sr_port/gdsbt.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -17,22 +17,15 @@ #include #ifdef MUTEX_MSEM_WAKE #ifdef POSIX_MSEM -# include +# include "gtm_semaphore.h" #else # include #endif #endif -#ifdef VMS -# include /* for SS$_WASSET */ -# include "ast.h" /* for ENABLE/DISABLE */ -#elif defined(UNIX) -# include /* for _POSIX_HOST_NAME_MAX */ -# if defined(__osf__) -# include /* for _POSIX_HOST_NAME_MAX */ -# elif defined(SUNOS) && !defined(_POSIX_HOST_NAME_MAX) -# include /* for MAXHOSTNAMELEN (Solaris 9) */ -# endif +#include /* for _POSIX_HOST_NAME_MAX */ +#if defined(SUNOS) && !defined(_POSIX_HOST_NAME_MAX) +# include /* for MAXHOSTNAMELEN (Solaris 9) */ #endif #include "gvstats_rec.h" @@ -50,18 +43,16 @@ #define MAX_REL_NAME 36 #define MAX_MCNAMELEN 256 /* We do not support hostname truncation */ -#if defined(UNIX) -# if defined(_POSIX_HOST_NAME_MAX) -# if MAX_MCNAMELEN <= _POSIX_HOST_NAME_MAX /* _POSIX_HOST_NAME_MAX excludes terminating NULL */ -# error MAX_MCNAMELEN is not greater than _POSIX_HOST_NAME_MAX. -# endif -# elif defined(MAXHOSTNAMELEN) -# if MAX_MCNAMELEN < MAXHOSTNAMELEN /* MAXHOSTNAMELEN includes terminating NULL */ -# error MAX_MCNAMELEN is less than MAXHOSTNAMELEN. -# endif -# else -# error _POSIX_HOST_NAME_MAX or MAXHOSTNAMELEN not defined. +#if defined(_POSIX_HOST_NAME_MAX) +# if MAX_MCNAMELEN <= _POSIX_HOST_NAME_MAX /* _POSIX_HOST_NAME_MAX excludes terminating NULL */ +# error MAX_MCNAMELEN is not greater than _POSIX_HOST_NAME_MAX. +# endif +#elif defined(MAXHOSTNAMELEN) +# if MAX_MCNAMELEN < MAXHOSTNAMELEN /* MAXHOSTNAMELEN includes terminating NULL */ +# error MAX_MCNAMELEN is less than MAXHOSTNAMELEN. # endif +#else +# error _POSIX_HOST_NAME_MAX or MAXHOSTNAMELEN not defined. #endif #define GDS_LABEL_SZ 12 @@ -69,6 +60,7 @@ #define MAX_DB_WTSTARTS 2 /* Max number of "flush-timer driven" simultaneous writers in wcs_wtstart */ #define MAX_WTSTART_PID_SLOTS 4 * MAX_DB_WTSTARTS /* Max number of PIDs for wcs_wtstart to save */ #define MAX_KIP_PID_SLOTS 8 +#define MAX_WT_PID_SLOTS 4 #define BT_FACTOR(X) (X) #define FLUSH_FACTOR(X) ((X)-(X)/16) @@ -148,23 +140,19 @@ typedef struct } que; int4 pid; void *super_crit; -#if defined(UNIX) /* - * If the following fields are to be made part of VMS too, change - * size of mutex_que_entry in mutex.mar (lines 118, 152). * Make sure that the size of mutex_que_entry is a multiple of 8 bytes * for quadword alignment requirements of remqhi and insqti. */ int4 mutex_wake_instance; int4 filler1; /* for dword alignment */ #ifdef MUTEX_MSEM_WAKE -#ifdef POSIX_MSEM +# ifdef POSIX_MSEM sem_t mutex_wake_msem; /* Not two ints .. somewhat larger */ -#else +# else msemaphore mutex_wake_msem; /* Two ints (incidentally two int4s) */ -#endif +# endif -#endif #endif } mutex_que_entry; @@ -180,7 +168,6 @@ typedef struct typedef struct { -#if defined(UNIX) FILL8DCL(uint4, crit_cycle, 1); global_latch_t semaphore; CACHELINE_PAD(8 + SIZEOF(global_latch_t), 2) /* 8 for the FILL8DCL */ @@ -195,31 +182,12 @@ typedef struct CACHELINE_PAD(SIZEOF(mutex_que_head), 8) mutex_que_head freehead; CACHELINE_PAD(SIZEOF(mutex_que_head), 9) - -#elif defined(VMS) - short semaphore; - unsigned short wrtpnd; - short crashcnt, - queslots; -#ifdef __alpha -/* use constant instead of defining CACHELINE_SIZE since we do not want to affect other structures - the 64 must match padding in mutex.mar and mutex_stoprel.mar */ - char filler1[64 - SIZEOF(short)*4]; -#endif - mutex_que_entry prochead; -#ifdef __alpha - char filler2[64 - SIZEOF(mutex_que_entry)]; -#endif - mutex_que_entry freehead; -#else -#error UNSUPPORTED PLATFORM -#endif } mutex_struct; typedef struct { /* keep this structure and member offsets defined in sr_avms/mutex.mar in sync */ int4 mutex_hard_spin_count; int4 mutex_sleep_spin_count; - int4 mutex_spin_sleep_mask; /* currently unused */ + int4 mutex_spin_sleep_mask; /* mask for maximum spin sleep time */ int4 mutex_que_entry_space_size; /* total number of entries */ } mutex_spin_parms_struct; @@ -288,6 +256,243 @@ typedef struct } \ } +/* + * Enable the GTM_CRYPT_UPDATES_REPORT define below to activate logging of encryption-related operations in shared memory. Those + * operations currently include a write and read of an encrypted block (wcs_wtstart and dsk_read, respectively), update retry or + * abort due to a concurrent change of encryption cycle (t_end and tp_tend, wcs_wtstart, respectively), update of encryption + * settings (mupip_reorg_encrypt), and receipt of new encryption settings (t_retry and tp_restart). Add more macros and macro + * callers as necessary. The final report is printed via the DBG_PRINT_BLOCK_INFOS macro (gtm_fork_n_core). + */ +#ifdef DEBUG +/* #define GTM_CRYPT_UPDATES_REPORT 1 */ +#endif + +#ifdef GTM_CRYPT_UPDATES_REPORT +# define BLK_INFO_ARRAY_SIZE 10000 /* Static array size for all encryption-related updates. */ + +typedef struct +{ + uint4 blk_num; + uint4 operation; + trans_num dbtn; + trans_num blktn; + boolean_t use_new_key; + uint4 subtype; + uint4 blk_size; + uint4 blk_encr_len; + char pre_block[32]; + char post_block[32]; +} block_update_t; + +typedef struct +{ + uint4 is_encrypted; + uint4 reorg_encrypt_cycle; + char hash[GTMCRYPT_HASH_LEN]; + char hash2[GTMCRYPT_HASH_LEN]; + block_id encryption_hash_cutoff; +} trans_update_t; + +typedef union +{ + block_update_t block_update; + trans_update_t trans_update; +} info_t; + +typedef struct blk_info_struct +{ + uint4 type; + uint4 pid; + uint4 is_encrypted; + int4 csa_reorg_encrypt_cycle; + uint4 cnl_reorg_encrypt_cycle; + block_id encryption_hash_cutoff; + trans_num encryption_hash2_start_tn; + char hash[GTMCRYPT_HASH_LEN]; + char hash2[GTMCRYPT_HASH_LEN]; + char region[100]; + char where[100]; + info_t info; +} blk_info; + +# define DBG_PRINT_BLOCK_INFOS(CNL) \ +{ \ + int i, j, block_index, start, end; \ + blk_info *blk_info_ptr; \ + \ + if ((CNL)->blk_info_cnt <= BLK_INFO_ARRAY_SIZE) \ + { \ + start = 0; \ + end = start + (CNL)->blk_info_cnt; \ + } else \ + { \ + end = (CNL)->blk_info_cnt; \ + start = end - BLK_INFO_ARRAY_SIZE; \ + } \ + for (i = start; i < end; i++) \ + { \ + block_index = i % BLK_INFO_ARRAY_SIZE; \ + blk_info_ptr = &((CNL)->blk_infos[block_index]); \ + if (0 == blk_info_ptr->type) \ + { \ + if (0 == blk_info_ptr->info.block_update.operation) \ + FPRINTF(stderr, "%d: BLOCK READ", block_index); \ + else if (1 == blk_info_ptr->info.block_update.operation) \ + FPRINTF(stderr, "%d: BLOCK WRITE", block_index); \ + } else if (1 == blk_info_ptr->type) \ + FPRINTF(stderr, "%d: BLOCK RETRY", block_index); \ + else if (2 == blk_info_ptr->type) \ + FPRINTF(stderr, "%d: BLOCK ABORT", block_index); \ + else if (3 == blk_info_ptr->type) \ + FPRINTF(stderr, "%d: CRYPT UPDATE", block_index); \ + else if (4 == blk_info_ptr->type) \ + FPRINTF(stderr, "%d: CRYPT RECEIVE", block_index); \ + FPRINTF(stderr, " on %s in %s:", blk_info_ptr->region, blk_info_ptr->where); \ + FPRINTF(stderr, \ + "\n\tpid: %u\n" \ + "\tis_encrypted: %u\n" \ + "\tcsa_reorg_encrypt_cycle: %d\n" \ + "\tcnl_reorg_encrypt_cycle: %u\n" \ + "\tencryption_hash_cutoff: %d\n" \ + "\tencryption_hash2_start_tn: %ld", \ + blk_info_ptr->pid, \ + blk_info_ptr->is_encrypted, \ + blk_info_ptr->csa_reorg_encrypt_cycle, \ + blk_info_ptr->cnl_reorg_encrypt_cycle, \ + blk_info_ptr->encryption_hash_cutoff, \ + blk_info_ptr->encryption_hash2_start_tn); \ + FPRINTF(stderr, "\n\tencryption_hash: "); \ + for (j = 0; j < GTMCRYPT_HASH_LEN; j += 2) \ + FPRINTF(stderr, "%02X", (unsigned char)blk_info_ptr->hash[j / 2]); \ + FPRINTF(stderr, "\n\tencryption_hash2: "); \ + for (j = 0; j < GTMCRYPT_HASH_LEN; j += 2) \ + FPRINTF(stderr, "%02X", (unsigned char)blk_info_ptr->hash2[j / 2]); \ + if (0 == blk_info_ptr->type) \ + { \ + FPRINTF(stderr, \ + "\n\tblk_num : %u\n" \ + "\toperation : %d\n" \ + "\tdbtn : 0x%llx\n" \ + "\tblktn : 0x%llx\n" \ + "\tuse_new_key : %d\n" \ + "\tsubtype : %d\n" \ + "\tblk_size : %d\n" \ + "\tblk_encr_len: %d\n", \ + blk_info_ptr->info.block_update.blk_num, \ + blk_info_ptr->info.block_update.operation, \ + blk_info_ptr->info.block_update.dbtn, \ + blk_info_ptr->info.block_update.blktn, \ + blk_info_ptr->info.block_update.use_new_key, \ + blk_info_ptr->info.block_update.subtype, \ + blk_info_ptr->info.block_update.blk_size, \ + blk_info_ptr->info.block_update.blk_encr_len); \ + } else if (4 == blk_info_ptr->type) \ + { \ + FPRINTF(stderr, \ + "\n\tis_encrypted: %u\n" \ + "\treorg_encrypt_cycle: %u\n" \ + "\tencryption_hash_cutoff: %d", \ + blk_info_ptr->info.trans_update.is_encrypted, \ + blk_info_ptr->info.trans_update.reorg_encrypt_cycle, \ + blk_info_ptr->info.trans_update.encryption_hash_cutoff); \ + FPRINTF(stderr, "\n\thash: "); \ + for (j = 0; j < GTMCRYPT_HASH_LEN; j += 2) \ + FPRINTF(stderr, "%02X", \ + (unsigned char)blk_info_ptr->info.trans_update.hash[j / 2]); \ + FPRINTF(stderr, "\n\thash2: "); \ + for (j = 0; j < GTMCRYPT_HASH_LEN; j += 2) \ + FPRINTF(stderr, "%02X", \ + (unsigned char)blk_info_ptr->info.trans_update.hash2[j / 2]); \ + FPRINTF(stderr, "\n"); \ + } else \ + FPRINTF(stderr, "\n"); \ + FFLUSH(stderr); \ + } \ +} + +# define DBG_RECORD_COMMON_STUFF(BLK_INFO_PTR, TYPE, CSD, CSA, CNL, PID) \ + blk_info *blk_info_ptr; \ + \ + BLK_INFO_PTR = &((CNL)->blk_infos[(CNL)->blk_info_cnt++ % BLK_INFO_ARRAY_SIZE]); \ + BLK_INFO_PTR->type = TYPE; \ + BLK_INFO_PTR->pid = PID; \ + BLK_INFO_PTR->is_encrypted = (CSD)->is_encrypted; \ + BLK_INFO_PTR->csa_reorg_encrypt_cycle = \ + (NULL == (CSA)->encr_ptr) ? -1 : (CSA)->encr_ptr->reorg_encrypt_cycle; \ + BLK_INFO_PTR->cnl_reorg_encrypt_cycle = (CNL)->reorg_encrypt_cycle; \ + BLK_INFO_PTR->encryption_hash_cutoff = (CSD)->encryption_hash_cutoff; \ + BLK_INFO_PTR->encryption_hash2_start_tn = (CSD)->encryption_hash2_start_tn; \ + memcpy(BLK_INFO_PTR->hash, (CSD)->encryption_hash, GTMCRYPT_HASH_LEN); \ + memcpy(BLK_INFO_PTR->hash2, (CSD)->encryption_hash2, GTMCRYPT_HASH_LEN); \ + strcpy(BLK_INFO_PTR->where, __FILE__); \ + if ((NULL != (CSA)->region) && (NULL != (CSA)->region->dyn.addr)) \ + { \ + memcpy(BLK_INFO_PTR->region, (char *)(CSA)->region->dyn.addr->fname, \ + (CSA)->region->dyn.addr->fname_len); \ + BLK_INFO_PTR->region[(CSA)->region->dyn.addr->fname_len] = '\0'; \ + } else \ + strcpy(BLK_INFO_PTR->region, "UNKNOWN"); \ + +# define DBG_RECORD_BLOCK_UPDATE(CSD, CSA, CNL, PID, BLK, OPER, BLKTN, SUBTYPE, NEW_KEY, PRE_BLK, POST_BLK, BLK_SIZE, BLK_ENC_LEN) \ +{ \ + DBG_RECORD_COMMON_STUFF(blk_info_ptr, 0, CSD, CSA, CNL, PID); \ + blk_info_ptr->info.block_update.blk_num = BLK; \ + blk_info_ptr->info.block_update.operation = OPER; \ + blk_info_ptr->info.block_update.dbtn = CSD->trans_hist.curr_tn; \ + blk_info_ptr->info.block_update.blktn = BLKTN; \ + blk_info_ptr->info.block_update.use_new_key = NEW_KEY; \ + blk_info_ptr->info.block_update.subtype = SUBTYPE; \ + memcpy(blk_info_ptr->info.block_update.pre_block, PRE_BLK, 32); \ + memcpy(blk_info_ptr->info.block_update.post_block, POST_BLK, 32); \ + blk_info_ptr->info.block_update.blk_size = BLK_SIZE; \ + blk_info_ptr->info.block_update.blk_encr_len = BLK_ENC_LEN; \ +} + +# define DBG_RECORD_BLOCK_READ(CSD, CSA, CNL, PID, BLK, BLKTN, SUBTYPE, NEW_KEY, PRE_BLK, POST_BLK, BLK_SIZE, BLK_ENCR_LEN) \ +{ \ + DBG_RECORD_BLOCK_UPDATE(CSD, CSA, CNL, PID, BLK, 0, BLKTN, SUBTYPE, NEW_KEY, PRE_BLK, POST_BLK, BLK_SIZE, BLK_ENCR_LEN);\ +} + +# define DBG_RECORD_BLOCK_WRITE(CSD, CSA, CNL, PID, BLK, BLKTN, SUBTYPE, NEW_KEY, PRE_BLK, POST_BLK, BLK_SIZE, BLK_ENCR_LEN) \ +{ \ + DBG_RECORD_BLOCK_UPDATE(CSD, CSA, CNL, PID, BLK, 1, BLKTN, SUBTYPE, NEW_KEY, PRE_BLK, POST_BLK, BLK_SIZE, BLK_ENCR_LEN);\ +} + +# define DBG_RECORD_BLOCK_RETRY(CSD, CSA, CNL, PID) \ +{ \ + DBG_RECORD_COMMON_STUFF(blk_info_ptr, 1, CSD, CSA, CNL, PID); \ +} + +# define DBG_RECORD_BLOCK_ABORT(CSD, CSA, CNL, PID) \ +{ \ + DBG_RECORD_COMMON_STUFF(blk_info_ptr, 2, CSD, CSA, CNL, PID); \ +} + +# define DBG_RECORD_CRYPT_UPDATE(CSD, CSA, CNL, PID) \ +{ \ + DBG_RECORD_COMMON_STUFF(blk_info_ptr, 3, CSD, CSA, CNL, PID); \ +} + +# define DBG_RECORD_CRYPT_RECEIVE(CSD, CSA, CNL, PID, TRANS_INFO) \ +{ \ + DBG_RECORD_COMMON_STUFF(blk_info_ptr, 4, CSD, CSA, CNL, PID); \ + blk_info_ptr->info.trans_update.is_encrypted = TRANS_INFO->is_encrypted; \ + blk_info_ptr->info.trans_update.reorg_encrypt_cycle = TRANS_INFO->reorg_encrypt_cycle; \ + blk_info_ptr->info.trans_update.encryption_hash_cutoff = TRANS_INFO->encryption_hash_cutoff; \ + memcpy(blk_info_ptr->info.trans_update.hash, TRANS_INFO->encryption_hash, GTMCRYPT_HASH_LEN); \ + memcpy(blk_info_ptr->info.trans_update.hash2, TRANS_INFO->encryption_hash2, GTMCRYPT_HASH_LEN); \ +} + +#else +# define DBG_PRINT_BLOCK_INFOS(CNL) +# define DBG_RECORD_BLOCK_READ(CSD, CSA, CNL, PID, BLK, BLKTN, SUBTYPE, USE_NEW_KEY, PRE_BLOCK, POST_BLOCK, BLK_SIZE, BLK_ENCR_LEN) +# define DBG_RECORD_BLOCK_WRITE(CSD, CSA, CNL, PID, BLK, BLKTN, SUBTYPE, USE_NEW_KEY, PRE_BLOCK, POST_BLOCK, BLK_SIZE, BLK_ENCR_LEN) +# define DBG_RECORD_BLOCK_RETRY(CSD, CSA, CNL, PID) +# define DBG_RECORD_BLOCK_ABORT(CSD, CSA, CNL, PID) +# define DBG_RECORD_CRYPT_UPDATE(CSD, CSA, CNL, PID) +# define DBG_RECORD_CRYPT_RECEIVE(CSD, CSA, CNL, PID, TRANS_INFO) +#endif + /* Mapped space local to each node on the cluster */ typedef struct node_local_struct { @@ -393,7 +598,7 @@ typedef struct node_local_struct uint4 num_snapshots_in_effect; /* how many snapshots are currently in place for this region */ uint4 wbox_test_seq_num; /* used to coordinate with sequential testing steps */ NON_GTM64_ONLY(int4 filler_8byte_align;) /* To align the following member at an 8-byte boundary on 32-bit platforms */ - UNIX_ONLY(pid_t kip_pid_array[MAX_KIP_PID_SLOTS];) /* Processes actively doing kill (0 denotes empty slots) */ + uint4 kip_pid_array[MAX_KIP_PID_SLOTS]; /* Processes actively doing kill (0 denotes empty slots) */ gtm_uint64_t sec_size; /* Upon going to larger shared memory sizes, we realized that this does not */ /* need to be in the file header but the node local since it can be calculated */ /* from info in the file header. */ @@ -409,7 +614,6 @@ typedef struct node_local_struct */ uint4 trunc_pid; /* Operating truncate. */ block_id highest_lbm_with_busy_blk; /* Furthest lmap block known to have had a busy block during truncate. */ -# if defined(UNIX) ftokhist ftok_ops_array[FTOK_OPS_ARRAY_SIZE]; volatile uint4 root_search_cycle; /* incremented online rollback ends and mu_swap_root */ volatile uint4 onln_rlbk_cycle; /* incremented everytime an online rollback ends */ @@ -429,8 +633,27 @@ typedef struct node_local_struct boolean_t doing_epoch; /* set when performing an epoch */ uint4 epoch_taper_start_dbuffs; /* wcs_active_lvl at start of taper */ boolean_t epoch_taper_need_fsync; - /* when needed (un)comment the line below to 8-byte align the structure on 32-bit platforms; 64s do it implicitly */ - NON_GTM64_ONLY(int4 filler_8byte_align1;) + uint4 wt_pid_array[MAX_WT_PID_SLOTS]; /* Processes with active wcs_timers (0 denotes empty slots) + * Note: Unreliable - For Diagnostic Purposes only + */ + uint4 reorg_encrypt_pid; /* indicates whether a MUPIP REORG -ENCRYPT is in progress */ + uint4 reorg_encrypt_cycle; /* reflects the cycle of database encryption status in a series of + MUPIP REORG -ENCRYPTs */ + uint4 mupip_extract_count; /* count of currently running MUPIP EXTRACTs; to be improved with GTM-8488 */ + /* Below 4 values are cached from the original DB file header that created the shared memory segment. Used by DSE only */ + enum db_acc_method saved_acc_meth; + int4 saved_blk_size; + uint4 saved_lock_space_size; + int4 saved_jnl_buffer_size; + /* Miscellaneous flag */ + boolean_t lastwriterbypas_msg_issued; /* whether a LASTWRITERBYPAS message has been once issued for this db */ + boolean_t first_writer_seen; /* Has a process with read-write access to the database opened it yet */ + boolean_t first_nonbypas_writer_seen; /* TRUE when first writer is seen that also does not bypass ftok/access */ + uint4 filler_8byte_align1; +# ifdef GTM_CRYPT_UPDATES_REPORT + blk_info blk_infos[BLK_INFO_ARRAY_SIZE]; + uint4 blk_info_cnt; + int4 filler_8byte_align2; # endif } node_local; @@ -468,16 +691,7 @@ typedef struct node_local_struct coidx = ++cnl->crit_ops_index; \ if (CRIT_OPS_ARRAY_SIZE <= coidx) \ coidx = cnl->crit_ops_index = 0; \ - VMS_ONLY( \ - in_ast = lib$ast_in_prog(); \ - if (!in_ast) \ - ast_status = sys$setast(DISABLE); \ - ) \ cnl->crit_ops_array[coidx].call_from = (caddr_t)caller_id(); \ - VMS_ONLY( \ - if ((!in_ast) && (SS$_WASSET == ast_status)) \ - sys$setast(ENABLE); \ - ) \ cnl->crit_ops_array[coidx].epid = process_id; \ cnl->crit_ops_array[coidx].crit_act = (X); \ cnl->crit_ops_array[coidx].curr_tn = (NULL != csa->hdr) ? \ @@ -598,6 +812,14 @@ typedef struct node_local_struct #define BT_NOT_ALIGNED(bt, bt_base) (!IS_PTR_ALIGNED((bt), (bt_base), SIZEOF(bt_rec))) #define BT_NOT_IN_RANGE(bt, bt_lo, bt_hi) (!IS_PTR_IN_RANGE((bt), (bt_lo), (bt_hi))) +#define MIN_SLEEP_CNT 0 /* keep this in sync with any minseg("SLEEP_CNT) in gdeinit.m */ +#define MAX_SLEEP_CNT E_6 /* keep this in sync with any maxseg("SLEEP_CNT") in gdeinit.m */ +#define DEFAULT_SLEEP_CNT 0 /* keep this in sync with any tmpseg("SLEEP_CNT") in gdeget.m */ +#define SLEEP_SPIN_CNT(CSD) (CSD)->mutex_spin_parms.mutex_sleep_spin_count +#define MIN_SPIN_SLEEP 0 /* keep this in sync with gdeinit.m minseg("SPIN_SLEEP_LIMIT") */ +#define MAX_SPIN_SLEEP E_9 /* keep this in sync with gdeinit.m maxseg("SPIN_SLEEP_LIMIT") */ +#define DEFAULT_SPIN_SLEEP 0 /* keep this in sync with gdeget.m tmpseg("SPIN_SLEEP_LIMIT") */ +#define SPIN_SLEEP_MASK(CSD) (CSD)->mutex_spin_parms.mutex_spin_sleep_mask #define MIN_CRIT_ENTRY 64 /* keep this in sync with gdeinit.m minseg("MUTEX_SLOTS") */ #define MAX_CRIT_ENTRY 32768 /* keep this in sync with gdeinit.m maxseg("MUTEX_SLOTS") */ #define DEFAULT_NUM_CRIT_ENTRY 1024 /* keep this in sync with gdeget.m tmpseg("MUTEX_SLOTS") */ @@ -629,7 +851,7 @@ typedef struct node_local_struct #define EPOCH_TAPER_JNL_PCT_DEFAULT 13 #define EPOCH_TAPER_IF_NEEDED(CSA, CSD, CNL, REG, DO_FSYNC, BUFFS_PER_FLUSH, FLUSH_TARGET) \ -{ \ +MBSTART { \ jnl_tm_t now; \ uint4 epoch_vector, jnl_autoswitchlimit, jnl_space_remaining, jnl_space_taper_interval; \ uint4 next_epoch_time, relative_overall_taper, relative_space_taper, relative_time_taper; \ @@ -646,7 +868,7 @@ typedef struct node_local_struct time_remaining = next_epoch_time - now; \ /* taper during last epoch_taper_time_pct of interval */ \ time_taper_interval = etjb->epoch_interval * CSD->epoch_taper_time_pct / 128; \ - if (time_remaining < time_taper_interval) \ + if ((0 <= time_remaining) && (time_remaining < time_taper_interval)) \ relative_time_taper = MAX(MIN(129 - ((time_remaining * 128) / time_taper_interval), 128), 0); \ } \ /* Determine if we are in the journal autoswitch (space-based) epoch taper) */ \ @@ -662,7 +884,7 @@ typedef struct node_local_struct /* This starting point only needs to be approximate so no locking is needed */ \ if (0 == CNL->epoch_taper_start_dbuffs) \ CNL->epoch_taper_start_dbuffs = CNL->wcs_active_lvl; \ - tmp_epoch_taper_start_dbuffs = CNL->epoch_taper_start_dbuffs; /* get same value for all calculations */ \ + tmp_epoch_taper_start_dbuffs = MAX(1,CNL->epoch_taper_start_dbuffs); /* stable value for all calculations */ \ if ((relative_overall_taper > 64) && (relative_overall_taper < 96)) \ CNL->epoch_taper_need_fsync = TRUE; \ if (DO_FSYNC && (relative_overall_taper > 75) && CNL->epoch_taper_need_fsync) \ @@ -672,14 +894,14 @@ typedef struct node_local_struct } \ FLUSH_TARGET = MIN(tmp_epoch_taper_start_dbuffs, MAX(1,(tmp_epoch_taper_start_dbuffs * \ (129 - relative_overall_taper)) / 128)); \ - if (CNL->wcs_active_lvl > flush_target) \ + if (CNL->wcs_active_lvl > FLUSH_TARGET) \ { \ if (relative_overall_taper > 96) \ epoch_vector = \ - (((CNL->wcs_active_lvl - flush_target) * 128 / flush_target) > 64) ? ETFAST : ETQUICK; \ + (((CNL->wcs_active_lvl - FLUSH_TARGET) * 128 / FLUSH_TARGET) > 64) ? ETFAST : ETQUICK; \ else if (relative_overall_taper > 64) \ epoch_vector = \ - (((CNL->wcs_active_lvl - flush_target) * 128 / flush_target) > 64) ? ETQUICK : ETSLOW; \ + (((CNL->wcs_active_lvl - FLUSH_TARGET) * 128 / FLUSH_TARGET) > 64) ? ETQUICK : ETSLOW; \ else \ epoch_vector = (relative_overall_taper > 32) ? ETSLOW : ETGENTLE; \ BUFFS_PER_FLUSH = CSD->n_wrt_per_flu * epoch_vector; \ @@ -690,7 +912,7 @@ typedef struct node_local_struct CNL->epoch_taper_start_dbuffs = 0; \ CNL->epoch_taper_need_fsync = FALSE; \ } \ -} +} MBEND /* Define pointer types for above structures that may be in shared memory and need 64 bit pointers. */ diff --git a/sr_port/gdscc.h b/sr_port/gdscc.h old mode 100644 new mode 100755 diff --git a/sr_port/gdsdbver.h b/sr_port/gdsdbver.h old mode 100644 new mode 100755 index b1fba138..b856a4bd --- a/sr_port/gdsdbver.h +++ b/sr_port/gdsdbver.h @@ -31,6 +31,8 @@ # define GDS_V50 "03" #endif #define GDS_CURR GDS_V50 +#define MAX_DB_VER_LEN 2 +#define GDSVCURR ((enum db_ver)(GDSVLAST - 1)) /* Database major version as an enum quantity. Used to index the dbversion table in mtables.c */ enum db_ver @@ -41,7 +43,8 @@ enum db_ver GDSV6 = 1, /*GDSV5 and GDSV6 have same value because block format is same for these two version*/ GDSVLAST }; -#define GDSVCURR ((enum db_ver)(GDSVLAST - 1)) + +#define GDSMVCURR ((enum mdb_ver)(GDSMVLAST - 1)) /* Database minor version as an enum quantity. This is an ever increasing number that may skip actual * releases as it is only added to when a file-header field is added or changed or if there is a @@ -49,31 +52,11 @@ enum db_ver * at the end, just before GDSMVLAST. Note these entries need corresponding updates in * db_auto_upgrade.c. */ +#define ENUM_ENTRY(ENUMNAME) ENUMNAME enum mdb_ver { - GDSMV4, /* Applies to all V4 versions (no minor versions defined) */ - GDSMV50000, - GDSMV51000, /* Multi-site available (for databases created by V51000 - see V51000ALT */ - GDSMV51000ALT, /* Upgrade from a previous version upgraded to this value for V51000 due to bug */ - GDSMV52000, /* Unicode .. no real header changes but db contents could be unusable by previous versions */ - GDSMV53000, /* M-Itanium release. secshr_ops_array and index is been copied from sgmnt_data to node_local. */ - GDSMV53003, /* ZSHOW "G" release: Db Statistics rearranged in file header */ - GDSMV53004, /* New fields(is_encrypted, encryption_hash) for encryption */ - GDSMV54000, /* New fields(db_trigger_cycle) for triggers */ - GDSMV54002, /* New statistical counter field for ZTRIGGER command */ - GDSMV54002B, /* New fields(turn_around_point, jnl_eovtn) for backward recovery */ - GDSMV55000, /* New fields(strm_reg_seqno, save_strm_reg_seqno, intrpt_recov_resync_strm_seqno) - * for supplementary instances. - * New fields(before_trunc_total_blks, after_trunc_total_blks, before_trunc_free_blocks - * before_trunc_file_size) for fixing interrupted MUPIP REORG -TRUNCATE. - */ - GDSMV60000, /* New freeze_on_fail field for anticipatory freeze; the wc_blocked field moved to shared memory */ - GDSMV60001, - GDSMV60002, /* New field mutex_spin_parms.mutex_que_entry_space_size for configurable mutex queue size */ - GDSMV62001, /* New field hasht_upgrade_needed for ^#t upgrade */ - GDSMV62002, /* New field defer_allocate needed for database file preallocation and ^#t upgrade */ - GDSMVLAST +#include "gdsdbver_sp.h" }; -#define GDSMVCURR ((enum mdb_ver)(GDSMVLAST - 1)) +#undef ENUM_ENTRY #endif diff --git a/sr_port/gdsdbver_sp.h b/sr_port/gdsdbver_sp.h new file mode 100644 index 00000000..83b325ab --- /dev/null +++ b/sr_port/gdsdbver_sp.h @@ -0,0 +1,34 @@ +/**************************************************************** + * * + * Copyright (c) 2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * + * * + * This source code contains the intellectual property * + * of its copyright holder(s), and is made available * + * under a license. If you do not know the terms of * + * the license, please stop and do not read further. * + * * + ****************************************************************/ +ENUM_ENTRY(GDSMV4), /* Applies to all V4 versions (no minor versions defined) */ +ENUM_ENTRY(GDSMV50000), +ENUM_ENTRY(GDSMV51000), /* Multi-site available (for databases created by V51000 - see V51000ALT */ +ENUM_ENTRY(GDSMV51000ALT), /* Upgrade from a previous version upgraded to this value for V51000 due to bug */ +ENUM_ENTRY(GDSMV52000), /* Unicode .. no real header changes but db contents could be unusable by previous versions */ +ENUM_ENTRY(GDSMV53000), /* M-Itanium release. secshr_ops_array and index is been copied from sgmnt_data to node_local. */ +ENUM_ENTRY(GDSMV53003), /* ZSHOW "G" release: Db Statistics rearranged in file header */ +ENUM_ENTRY(GDSMV53004), /* New fields(is_encrypted, encryption_hash) for encryption */ +ENUM_ENTRY(GDSMV54000), /* New fields(db_trigger_cycle) for triggers */ +ENUM_ENTRY(GDSMV54002), /* New statistical counter field for ZTRIGGER command */ +ENUM_ENTRY(GDSMV54002B), /* New fields(turn_around_point, jnl_eovtn) for backward recovery */ +ENUM_ENTRY(GDSMV55000), /* New fields(strm_reg_seqno, save_strm_reg_seqno, intrpt_recov_resync_strm_seqno) + * for supplementary instances. + * New fields(before_trunc_total_blks, after_trunc_total_blks, before_trunc_free_blocks + * before_trunc_file_size) for fixing interrupted MUPIP REORG -TRUNCATE. + */ +ENUM_ENTRY(GDSMV60000), /* New freeze_on_fail field for anticipatory freeze; the wc_blocked field moved to shared memory */ +ENUM_ENTRY(GDSMV60001), +ENUM_ENTRY(GDSMV60002), /* New field mutex_spin_parms.mutex_que_entry_space_size for configurable mutex queue size */ +ENUM_ENTRY(GDSMV62001), /* New field hasht_upgrade_needed for ^#t upgrade */ +ENUM_ENTRY(GDSMV62002), /* New field defer_allocate needed for database file preallocation and ^#t upgrade */ +ENUM_ENTRY(GDSMV63000), /* New field non_null_iv to indicate IV mode for encrypted blocks */ +ENUM_ENTRY(GDSMVLAST) diff --git a/sr_port/gdsfhead.h b/sr_port/gdsfhead.h index b433c64e..d76d47b8 100644 --- a/sr_port/gdsfhead.h +++ b/sr_port/gdsfhead.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -30,9 +30,7 @@ #ifdef VMS #include "iosb_disk.h" #endif -#ifdef GTM_CRYPT #include "gtmcrypt.h" /* for gtmcrypt_key_t */ -#endif #define CACHE_STATE_OFF SIZEOF(que_ent) @@ -88,13 +86,8 @@ typedef struct cache_rec_struct trans_num flushed_dirty_tn; /* value of dirty at the time of flushing */ trans_num tn; sm_off_t bt_index; /* offset to bt_rec */ - sm_off_t buffaddr; /* offset to buffer holding actual data*/ - sm_off_t twin; /* (VMS) offset to cache_rec of another copy of the same block from bg_update & wcs_wt_all - * (Unix & VMS) offset to cache_rec holding before-image for wcs_recover to backup */ -#ifdef VMS - sm_off_t shmpool_blk_off; /* Offset to shmpool block containing the reformat buffer for this CR */ - int4 backup_cr_off; /* Offset to backup_cr (set/used by bg_update_phase1/2 routines) */ -#endif + sm_off_t buffaddr; /* offset to buffer holding actual data */ + sm_off_t twin; /* (Unix & VMS) offset to cache_rec holding before-image for wcs_recover to backup */ off_jnl_t jnl_addr; /* offset from bg_update to prevent wcs_wtstart from writing a block ahead of the journal */ global_latch_t rip_latch; /* for read_in_progress - note contains extra 16 bytes for HPPA. Usage note: this latch is used on those platforms where read_in_progress is not directly updated @@ -109,9 +102,6 @@ typedef struct cache_rec_struct int4 r_epid; /* set by db_csh_getn, cleared by t_qread, bg_update, wcs_recover or secshr_db_clnup * used to check for process leaving without releasing the buffer * must be word aligned on the VAX */ -#ifdef VMS - io_status_block_disk iosb; /* used on VMS write */ -#endif CNTR4DCL(read_in_progress, 10); /* -1 for normal and 0 for rip used by t_qread and checked by others */ uint4 in_tend; /* non-zero pid from bg_update indicates secshr_db_clnup should finish update */ uint4 in_cw_set; /* non-zero pid from t_end, tp_tend or bg_update protects block from db_csh_getn; @@ -123,7 +113,7 @@ typedef struct cache_rec_struct } cache_rec; /* A note about cache line separation of the latches contained in these blocks. Because this block is duplicated - many (ptentially tens+ of) thousands of times in a running system, we have decided against providing cacheline + many (potentially tens+ of) thousands of times in a running system, we have decided against providing cacheline padding so as to force each cache record into a separate cacheline (due to it containing a latch and/or atomic counter field) to prevent processes from causing interference with each other. We decided that the probability of two processes working on adjacent cache records simultaneously was low enough that the interference was @@ -650,9 +640,7 @@ gtm_uint64_t verify_queue(que_head_ptr_t qhdr); #define GDS_ABS2REL(x) (sm_off_t)(((sm_uc_ptr_t)(x) - (sm_uc_ptr_t)cs_addrs->lock_addrs[0])) #define GDS_ANY_REL2ABS(w,x) (((sm_uc_ptr_t)(w->lock_addrs[0]) + (sm_off_t)(x))) #define GDS_ANY_ABS2REL(w,x) (sm_off_t)(((sm_uc_ptr_t)(x) - (sm_uc_ptr_t)w->lock_addrs[0])) -#ifdef GTM_CRYPT #define GDS_ANY_ENCRYPTGLOBUF(w,x) ((sm_uc_ptr_t)(w) + (sm_off_t)(x->nl->encrypt_glo_buff_off)) -#endif #define ASSERT_IS_WITHIN_SHM_BOUNDS(ptr, csa) \ assert((NULL == (ptr)) || (((ptr) >= csa->db_addrs[0]) && ((0 == csa->db_addrs[1]) || ((ptr) < csa->db_addrs[1])))) @@ -1518,11 +1506,12 @@ n_db_csh_acct_rec_types cnl->gvstats_rec.counter += increment; /* database stats */ \ } -/* clear everything from the end of the encryption_hash up to the ntrpt_recov_resync_strm_seqno array, which includes: - * all bg_trc_rec_tn, all bg_trc_rec_cntr, all db_csh_acct_rec, all gvstats as well as any intervening filler; - * also clear tp_cdb_sc_blkmod - * This means we MUST NOT insert anything in the file header between the encryption_hash and intrpt_recov_resync_strm_seqno - * nor move either of those end points without appropriately adjusting this macro +/* Clear everything from the end of the encryption section up to the ntrpt_recov_resync_strm_seqno array, which includes all + * bg_trc_rec_tn, all bg_trc_rec_cntr, all db_csh_acct_rec, all gvstats as well as any intervening filler; also clear + * tp_cdb_sc_blkmod. + * + * This means we MUST NOT insert anything in the file header between the encryption section and intrpt_recov_resync_strm_seqno + * nor move either of those end points without appropriately adjusting this macro. */ #define CLRGVSTATS(CSA) \ { \ @@ -1531,7 +1520,13 @@ n_db_csh_acct_rec_types sgmnt_data_ptr_t CSD; \ \ CSD = CSA->hdr; \ - CHPTR = (char *)&CSD->encryption_hash + GTMCRYPT_RESERVED_HASH_LEN; \ + assert((256 == GTMCRYPT_RESERVED_ENCR_SPACE) \ + && (GTMCRYPT_RESERVED_ENCR_SPACE == 2 * GTMCRYPT_RESERVED_HASH_LEN \ + + SIZEOF(CSD->non_null_iv) \ + + SIZEOF(CSD->encryption_hash_cutoff) \ + + SIZEOF(CSD->encryption_hash2_start_tn) \ + + SIZEOF(CSD->filler_encrypt))); \ + CHPTR = (char *)&CSD->encryption_hash + GTMCRYPT_RESERVED_ENCR_SPACE; \ CLRLEN = (char *)&CSD->intrpt_recov_resync_strm_seqno - CHPTR; \ memset(CHPTR, 0, CLRLEN); \ gvstats_rec_csd2cnl(CSA); /* we update gvstats in cnl */ \ @@ -1547,14 +1542,31 @@ n_db_csh_acct_rec_types # define INCR_DB_CSH_COUNTER(csa, counter, increment) #endif -enum tp_blkmod_type /* used for accounting in cs_data->tp_cdb_sc_blkmod[] */ +enum tp_ntp_blkmod_type /* used for accounting in cs_data->tp_cdb_sc_blkmod[] */ { + /* TP transactions */ tp_blkmod_nomod = 0, tp_blkmod_gvcst_srch, tp_blkmod_t_qread, tp_blkmod_tp_tend, tp_blkmod_tp_hist, - n_tp_blkmod_types + n_tp_blkmod_types, + /* NON-TP transactions */ + t_blkmod_nomod, + t_blkmod_gvcst_srch, + t_blkmod_gvcst_expand_key, + t_blkmod_t_qread, + t_blkmod_t_end1, + t_blkmod_t_end2, + t_blkmod_t_end3, + t_blkmod_t_end4, + /* MUPIP specific */ + t_blkmod_mu_clsce, + t_blkmod_mu_reduce_level, + t_blkmod_mu_split, + t_blkmod_mu_swap_blk, + t_blkmod_reorg_funcs, + n_nontp_blkmod_types }; /* Below is a list of macro bitmasks used to set the global variable "donot_commit". This variable should normally be 0. @@ -1576,6 +1588,7 @@ enum tp_blkmod_type /* used for accounting in cs_data->tp_cdb_sc_blkmod[] */ #define DONOTCOMMIT_T_WRITE_CSE_DONE (1 << 9) /* Restartable situation encountered in t_write */ #define DONOTCOMMIT_T_WRITE_CSE_MODE (1 << 10) /* Restartable situation encountered in t_write */ #define DONOTCOMMIT_TRIGGER_SELECT_XECUTE (1 << 11) /* Restartable situation encountered in trigger_select */ +#define DONOTCOMMIT_JNL_FORMAT (1 << 12) /* Restartable situation encountered in jnl_format */ #define TAB_BG_TRC_REC(A,B) B, enum bg_trc_rec_type @@ -1848,10 +1861,20 @@ typedef struct sgmnt_data_struct * Note: In mu_reorg we don't save keys longer than OLD_MAX_KEY_SZ */ char machine_name[MAX_MCNAMELEN]; - char encryption_hash[GTMCRYPT_RESERVED_HASH_LEN]; - /* char filler_2k[256] was here before adding the encryption_hash. Since the GTMCRYPT_RESERVED_HASH_LEN - * consumes 256 bytes, filler_2k has been removed. + /************* ENCRYPTION-RELATED FIELDS **************/ + /* Prior to the introduction of encryption_hash and, subsequently, other encryption fields, this space was occupied by a + * char filler_2k[256]. Now that the encryption fields consume a part of that space, the filler has been reduced in size. */ + char encryption_hash[GTMCRYPT_RESERVED_HASH_LEN]; + char encryption_hash2[GTMCRYPT_RESERVED_HASH_LEN]; + boolean_t non_null_iv; + block_id encryption_hash_cutoff; /* Points to the first block to be encrypted by MUPIP REORG -ENCRYPT with + * encryption_hash2. The value of -1 indicates that no (re)encryption is + * happening. */ + trans_num encryption_hash2_start_tn; /* Indicates the lowest transaction number at which a block is encrypted + * with encryption_hash2. */ + char filler_encrypt[80]; + /***************************************************/ /* The CLRGVSTATS macro wipes out everything from here through the GVSTATS fields up to intrpt_recov_resync_strm_seqno * starting from the end of the space reserved for the encryption_hash above - DO NOT insert anthing in this range or move * those two end points without appropriately adjusting that macro @@ -1894,7 +1917,8 @@ typedef struct sgmnt_data_struct int4 secshr_ops_array_filler[255]; /* taking up 1k */ /********************************************************/ compswap_time_field next_upgrd_warn; /* Time when we can send the next upgrade warning to the operator log */ - boolean_t is_encrypted; + uint4 is_encrypted; /* Encryption state of the database as a superimposition of IS_ENCRYPTED and + * TO_BE_ENCRYPTED flags. */ uint4 db_trigger_cycle; /* incremented every MUPIP TRIGGER command that changes ^#t global contents */ /************* SUPPLEMENTARY REPLICATION INSTANCE RELATED FIELDS ****************/ seq_num strm_reg_seqno[MAX_SUPPL_STRMS]; /* the jnl seqno of the last update to this region for a given @@ -1910,7 +1934,9 @@ typedef struct sgmnt_data_struct boolean_t maxkeysz_assured; /* All the keys in the database are less than MAX_KEY_SIZE */ boolean_t hasht_upgrade_needed; /* ^#t global needs to be upgraded from V62000 to post-V62000 format */ boolean_t defer_allocate; /* If FALSE: Use fallocate() preallocate space from the disk */ - char filler_7k[716]; + boolean_t ftok_counter_halted; /* Stop increasing/decreasing the ftok counter semaphore */ + boolean_t access_counter_halted; /* Stop increasing/decreasing the access counter semaphore */ + char filler_7k[708]; char filler_8k[1024]; /********************************************************/ /* Master bitmap immediately follows. Tells whether the local bitmaps have any free blocks or not. */ @@ -2018,6 +2044,107 @@ typedef struct #define REG2CSA(REG) (((REG) && (REG)->dyn.addr && (REG)->dyn.addr->file_cntl) ? (&FILE_INFO(REG)->s_addrs) : NULL) #define JCTL2CSA(JCTL) (((JCTL) && (JCTL->reg_ctl)) ? (JCTL->reg_ctl->csa) : NULL) +/* A structure to store the encryption settings when a reorg_encrypt_cycle change is detected in shared memory in the middle of a + * transaction. We updated the private copy of encryption settings and (re)initialize handles, if needed, based on this information + * before restarting the transaction. Note that this structure should be populated at a safe time, such as while holding crit or + * having otherwise ensured that MUPIP REORG -ENCRYPT cannot cross the boundary of another reorg_encrypt_cycle (such as in + * dsk_read.c and wcs_wtstart.c); however, read access does not require crit (such as in jnl_format.c). + */ +typedef struct +{ + uint4 reorg_encrypt_cycle; + uint4 is_encrypted; + boolean_t non_null_iv; + block_id encryption_hash_cutoff; + trans_num encryption_hash2_start_tn; + char encryption_hash[GTMCRYPT_HASH_LEN]; + char encryption_hash2[GTMCRYPT_HASH_LEN]; + boolean_t issued_db_init_crypt_warning; /* Indicates whether we issued a warning-severity encryption-setup-related + * message in db_init for a non-mumps process */ + uint4 filler; +} enc_info_t; + +/* Macro to copy the encryption information into an enc_info_t structure. */ +#define COPY_ENC_INFO_INT(SRC, DST, REORG_ENCRYPT_CYCLE) \ +{ \ + (DST)->reorg_encrypt_cycle = REORG_ENCRYPT_CYCLE; \ + (DST)->is_encrypted = (SRC)->is_encrypted; \ + (DST)->non_null_iv = (SRC)->non_null_iv; \ + (DST)->encryption_hash_cutoff = (SRC)->encryption_hash_cutoff; \ + (DST)->encryption_hash2_start_tn = (SRC)->encryption_hash2_start_tn; \ + memcpy((DST)->encryption_hash, (SRC)->encryption_hash, GTMCRYPT_HASH_LEN); \ + memcpy((DST)->encryption_hash2, (SRC)->encryption_hash2, GTMCRYPT_HASH_LEN); \ + DEBUG_ONLY((DST)->filler = 0;) \ +} \ + +/* Macro to copy the encryption information into an enc_info_t structure. */ +#define COPY_ENC_INFO(SRC, DST, REORG_ENCRYPT_CYCLE) \ +{ \ + DEBUG_ONLY(enc_info_t before); \ + \ + DEBUG_ONLY(COPY_ENC_INFO_INT(SRC, &before, REORG_ENCRYPT_CYCLE)); \ + /* This is to have the following memcmp succeed; normally, the issued_db_init_crypt_warning \ + * field is never updated once set. \ + */ \ + DEBUG_ONLY(before.issued_db_init_crypt_warning = (DST)->issued_db_init_crypt_warning); \ + COPY_ENC_INFO_INT(SRC, DST, REORG_ENCRYPT_CYCLE); \ + /* This macro is not necessarily invoked while holding crit, yet none of its usages should be \ + * subject to concurrent database file header changes of encrypted settings, so assert that. \ + * The only exception is "encryption_hash_cutoff" which could be concurrently changed (by a \ + * MUPIP REORG ENCRYPT) but is not critical encryption information so skip that part. \ + */ \ + DEBUG_ONLY(before.encryption_hash_cutoff = DST->encryption_hash_cutoff;) \ + DEBUG_ONLY(assert(!memcmp(&before, DST, SIZEOF(enc_info_t)))); \ +} \ + +#define INITIALIZE_CSA_ENCR_PTR(CSA, CSD, UDI, DO_CRYPT_INIT, CRYPT_WARNING) \ +{ \ + if (DO_CRYPT_INIT) \ + { \ + CSA->encr_ptr = (enc_info_t *)malloc(SIZEOF(enc_info_t)); \ + /* It should be safe to copy encryption key information from CSD to CSA because only a concurrent \ + * REORG -ENCRYPT may be changing these fields, and it takes the ftok access control semaphore on \ + * a live (non-standalone) database before changing things. But the caller of this macro is expected to \ + * hold either the ftok access control semaphore (udi->grabbed_fotk_sem) OR the database access control \ + * semaphore (udi->grabbed_access_sem) in case of standalone access. This ensures a safe copy. The only \ + * exception is if caller is "db_init" and we are DSE or LKE as they can bypass getting the ftok \ + * semaphore, but in those cases we do not rely much on the encryption settings and in the places where \ + * we do rely, we expect the users know what they are doing with these admin tools. Assert accordingly. \ + */ \ + assert(UDI->grabbed_ftok_sem || UDI->grabbed_access_sem || IS_DSE_IMAGE || IS_LKE_IMAGE); \ + COPY_ENC_INFO(CSD, CSA->encr_ptr, CSA->nl->reorg_encrypt_cycle); \ + CSA->encr_ptr->issued_db_init_crypt_warning = CRYPT_WARNING; \ + } else \ + CSA->encr_ptr = NULL; \ +} + +/* Encryption key reinitialization cannot be safely done if we are in the middle of a TP transaction that has already + * done some updates to a journaled database (old keys would have been used for prior calls to "jnl_format" in this + * transaction) as otherwise we would be a mix of journal records encrypted using old and new keys in the same TP + * transaction. Just to be safe, we do the same for read-only TP transaction ("dollar_tlevel" global variable covers + * both these cases) as well as a non-TP transaction that is read_write ("update_trans" global variable covers this case). + * In all these cases, we know the caller is capable of restarting the transaction which will sync up the cycles at a safe + * point (start of the retry). + * + * If both these global variables are zero, it is possible this is a non-TP transaction that is read-only OR a non-transaction. + * In the latter case, it is not just safe but essential to sync new keys since callers might be relying on this. + * In the former case, it is thankfully safe to sync so we do the sync if both these variables are zero. + * + * If it is unsafe to sync keys, the caller of this macro has to cause a restart of the ongoing transaction (caller "t_qread") + * OR skip doing encrypt/decrypt operations (caller "wcs_wtstart") + */ +#define IS_NOT_SAFE_TO_SYNC_NEW_KEYS(DOLLAR_TLEVEL, UPDATE_TRANS) (DOLLAR_TLEVEL || UPDATE_TRANS) + +#define SIGNAL_REORG_ENCRYPT_RESTART(REORG_ENCRYPT_IN_PROG, REORG_ENCRYPT_CSA, CNL, CSA, CSD, STATUS, PID) \ +{ \ + assert(!REORG_ENCRYPT_IN_PROG); \ + DBG_RECORD_BLOCK_RETRY(CSD, CSA, CNL, PID); \ + COPY_ENC_INFO(CSD, (CSA)->encr_ptr, (CNL)->reorg_encrypt_cycle); \ + assert(NULL == REORG_ENCRYPT_CSA); \ + REORG_ENCRYPT_CSA = CSA; \ + STATUS = cdb_sc_reorg_encrypt; \ +} + typedef struct file_control_struct { sm_uc_ptr_t op_buff; @@ -2089,7 +2216,7 @@ typedef struct gd_segment_struct enum db_acc_method acc_meth; file_control *file_cntl; struct gd_region_struct *repl_list; - UNIX_ONLY(boolean_t is_encrypted;) + uint4 is_encrypted; char filler[16]; /* filler to store runtime structures without changing gdeget/gdeput.m */ } gd_segment; @@ -2188,13 +2315,15 @@ typedef struct sgmnt_addrs_struct gd_region *region; /* the region corresponding to this csa */ struct hash_table_mname_struct *gvt_hashtab; /* NON-NULL only if regcnt > 1; * Maintains all gv_targets mapped to this db file */ - void *miscptr; /* pointer to rctl for this region (if jgbl.forw_phase_recovery - * or pointer to gvt_hashtab for this region if DSE_IMAGE. - * NULL in all other cases. */ - struct sgmnt_addrs_struct *next_csa; /* points to csa of NEXT database that has been opened by this process */ -# ifdef GTM_CRYPT + void *miscptr; /* pointer to rctl for this region (if jgbl.forw_phase_recovery) + * pointer to gvt_hashtab for this region (if DSE_IMAGE) + * pointer to repl_rctl for this region (if source server) + * NULL in all other cases. + */ + struct sgmnt_addrs_struct *next_csa; /* points to csa of NEXT database that has been opened by this process */ gtmcrypt_key_t encr_key_handle; -# endif + gtmcrypt_key_t encr_key_handle2; + enc_info_t *encr_ptr; /* Copy of encryption info from the database file header */ # ifdef GTM_SNAPSHOT struct snapshot_context_struct *ss_ctx; # endif @@ -2474,7 +2603,9 @@ typedef struct srch_blk_status_struct * at which point we are guaranteed local_tn is much higher than * gvt->read_local_tn which is an indication to complete this * deferred cleanup. - * In non-TP, this field is maintained but not used. + * In non-TP, this field is maintained in most but not all places + * (e.g. if gvcst_search uses the clue and does not go to t_qread, + * this field is not maintained) so do not rely on this in non-TP. */ struct gv_namehead_struct *blk_target; } srch_blk_status; @@ -3032,13 +3163,16 @@ GBLREF sgmnt_addrs *cs_addrs; #define ISSUE_GVSUBOFLOW_ERROR(GVKEY, IS_KEY_COMPLETE) \ { \ - unsigned char *endBuff, fmtBuff[MAX_ZWR_KEY_SZ]; \ + GBLREF gv_key *gv_currkey; \ + unsigned char *endBuff, fmtBuff[MAX_ZWR_KEY_SZ]; \ \ /* Assert that input key to format_targ_key is double null terminated */ \ assert(KEY_DELIMITER == GVKEY->base[GVKEY->end]); \ endBuff = format_targ_key(fmtBuff, ARRAYSIZE(fmtBuff), GVKEY, TRUE); \ if (!IS_KEY_COMPLETE) \ GV_SET_LAST_SUBSCRIPT_INCOMPLETE(fmtBuff, endBuff); /* Note: might update "endBuff" */ \ + if (GVKEY == gv_currkey) \ + gv_currkey->end = 0; /* to show the key is not valid */ \ rts_error_csa(CSA_ARG(NULL) VARLSTCNT(6) ERR_GVSUBOFLOW, 0, ERR_GVIS, 2, \ endBuff - fmtBuff, fmtBuff); \ } @@ -3310,6 +3444,7 @@ typedef enum */ inctn_blkdwngrd, /* 12 : similar to inctn_blkupgrd except that this is for DOWNGRADE */ inctn_blkdwngrd_fmtchng, /* 13 : similar to inctn_blkupgrd_fmtchng except that this is for DOWNGRADE */ + inctn_blkreencrypt, /* 14 : written whenever a GDS block is (re)encrypted using MUPIP REORG -ENCRYPT */ /* the following opcodes do NOT populate the global variable "inctn_detail" */ inctn_opcode_total /* 15 : MAX. All additions of inctn opcodes should be done BEFORE this line */ } inctn_opcode_t; @@ -3386,11 +3521,11 @@ typedef enum * of database blocks at all times, we can avoid allocating process private memory to store encrypted before-images * (to write to a journal file). Instead processes can use the encrypted global buffer directly for this purpose. * In user environments where process-private memory is very costly compared to database shared memory (e.g. where - * 1000s of GT.M processes run against the same database) the above approach is expected to use lesser total memory. + * 1000s of GT.M processes run against the same database) the above approach is expected to use less total memory. */ #define CACHE_CONTROL_SIZE(X) \ (ROUND_UP((ROUND_UP((X->bt_buckets + X->n_bts) * SIZEOF(cache_rec) + SIZEOF(cache_que_heads), OS_PAGE_SIZE) \ - + ((gtm_uint64_t)X->n_bts * X->blk_size * (X->is_encrypted ? 2 : 1))), OS_PAGE_SIZE)) + + ((gtm_uint64_t)X->n_bts * X->blk_size * (USES_ENCRYPTION(X->is_encrypted) ? 2 : 1))), OS_PAGE_SIZE)) OS_PAGE_SIZE_DECLARE @@ -3461,7 +3596,7 @@ typedef replpool_identifier *replpool_id_ptr_t; { \ int idx; \ uint4 pid; \ - pid_t *kip_pid_arr_ptr; \ + uint4 *kip_pid_arr_ptr; \ GBLREF uint4 process_id; \ \ kip_pid_arr_ptr = local_csa->nl->kip_pid_array; \ @@ -3480,7 +3615,7 @@ typedef replpool_identifier *replpool_id_ptr_t; #define REMOVE_KIP_PID(local_csa) \ { \ int idx; \ - pid_t *kip_pid_arr_ptr; \ + uint4 *kip_pid_arr_ptr; \ GBLREF uint4 process_id; \ \ kip_pid_arr_ptr = local_csa->nl->kip_pid_array; \ @@ -3493,6 +3628,44 @@ typedef replpool_identifier *replpool_id_ptr_t; } \ } \ } +/* Insert the process_id into the list of process ids with active wcs_timers + * Note: Unreliable - For Diagnostic Purposes Only + */ +#define INSERT_WT_PID(local_csa) \ +MBSTART { \ + int idx; \ + uint4 *wt_pid_arr_ptr; \ + GBLREF uint4 process_id; \ + \ + wt_pid_arr_ptr = local_csa->nl->wt_pid_array; \ + for (idx = 0; idx < MAX_WT_PID_SLOTS; idx++) \ + { \ + /* Unreliable, as there is a race for the empty slot. */ \ + if (0 == wt_pid_arr_ptr[idx]) \ + wt_pid_arr_ptr[idx] = process_id; \ + if (process_id == wt_pid_arr_ptr[idx]) \ + break; \ + } \ +} MBEND +/* Remove the process_id from the list of process ids with active wcs_timers + * Note: Unreliable - For Diagnostic Purposes Only + */ +#define REMOVE_WT_PID(local_csa) \ +MBSTART { \ + int idx; \ + uint4 *wt_pid_arr_ptr; \ + GBLREF uint4 process_id; \ + \ + wt_pid_arr_ptr = local_csa->nl->wt_pid_array; \ + for (idx = 0; idx < MAX_WT_PID_SLOTS; idx++) \ + { \ + if (process_id == wt_pid_arr_ptr[idx]) \ + { \ + wt_pid_arr_ptr[idx] = 0; \ + break; \ + } \ + } \ +} MBEND #else #define INSERT_KIP_PID(local_csa) #define REMOVE_KIP_PID(local_csa) @@ -3634,6 +3807,11 @@ typedef replpool_identifier *replpool_id_ptr_t; } \ } +/* Since this macro is called from "t_retry", we need to ensure encryption cycles are synced as part of + * the grab_crit, hence the "grab_crit_encr_cycle_sync" usage. Other callers of this macro like "mupip_extend" + * dont need that functionality but it does not hurt them so we leave it at that instead of forking this + * macro into two versions (one using "grab_crit" and another using "grab_crit_encr_cycle_sync"). + */ #define GRAB_UNFROZEN_CRIT(reg, csa, csd) \ { \ int lcnt; \ @@ -3646,7 +3824,7 @@ typedef replpool_identifier *replpool_id_ptr_t; break; \ rel_crit(reg); \ WAIT_FOR_REGION_TO_UNFREEZE(csa, csd); \ - grab_crit(reg); \ + grab_crit_encr_cycle_sync(reg); \ } \ assert(!csd->freeze && csa->now_crit); \ } @@ -3686,16 +3864,16 @@ typedef replpool_identifier *replpool_id_ptr_t; #define NEW_DBINIT_SEM_IPC_MASK (1 << 1) /* 1 if db_init created a new access control semaphore */ #endif -#define RESET_SHMID_CTIME(X) \ -{ \ - (X)->shmid = INVALID_SHMID; \ - (X)->gt_shm_ctime.ctime = 0; \ +#define RESET_SHMID_CTIME(X) \ +{ \ + (X)->shmid = INVALID_SHMID; \ + (X)->gt_shm_ctime.ctime = 0; \ } -#define RESET_SEMID_CTIME(X) \ -{ \ - (X)->semid = INVALID_SEMID; \ - (X)->gt_sem_ctime.ctime = 0; \ +#define RESET_SEMID_CTIME(X) \ +{ \ + (X)->semid = INVALID_SEMID; \ + (X)->gt_sem_ctime.ctime = 0; \ } #define RESET_IPC_FIELDS(X) \ @@ -3705,20 +3883,29 @@ typedef replpool_identifier *replpool_id_ptr_t; } #if defined(UNIX) -#define DB_FSYNC(reg, udi, csa, db_fsync_in_prog, save_errno) \ -{ \ - int rc; \ - \ - BG_TRACE_PRO_ANY(csa, n_db_fsyncs); \ - if (csa->now_crit) \ - BG_TRACE_PRO_ANY(csa, n_db_fsyncs_in_crit); \ - db_fsync_in_prog++; \ - save_errno = 0; \ - GTM_DB_FSYNC(csa, udi->fd, rc); \ - if (-1 == rc) \ - save_errno = errno; \ - db_fsync_in_prog--; \ - assert(0 <= db_fsync_in_prog); \ +GBLREF boolean_t multi_thread_in_use; /* TRUE => threads are in use. FALSE => not in use */ + +/* #GTM_THREAD_SAFE : The below macro (DB_FSYNC) is thread-safe */ +#define DB_FSYNC(reg, udi, csa, db_fsync_in_prog, save_errno) \ +{ \ + int rc; \ + \ + BG_TRACE_PRO_ANY(csa, n_db_fsyncs); \ + if (csa->now_crit) \ + BG_TRACE_PRO_ANY(csa, n_db_fsyncs_in_crit); \ + /* If inside thread, do not touch global variable "db_fsync_in_prog" due to concurrency issues. \ + * Besides, no need to maintain this variable inside thread since SIGALRMs are blocked and \ + * this is primarily used by "wcs_clean_dbsync" (the idle epoch timer code) anyways. \ + */ \ + if (!multi_thread_in_use) \ + db_fsync_in_prog++; \ + save_errno = 0; \ + GTM_DB_FSYNC(csa, udi->fd, rc); \ + if (-1 == rc) \ + save_errno = errno; \ + if (!multi_thread_in_use) \ + db_fsync_in_prog--; \ + assert(0 <= db_fsync_in_prog); \ } #define STANDALONE(x) mu_rndwn_file(x, TRUE) @@ -4028,6 +4215,7 @@ typedef replpool_identifier *replpool_id_ptr_t; #ifdef GTM_TRUNCATE /* Reduction in free blocks after truncating from a to b total blocks: a = old_total (larger), b = new_total */ # define DELTA_FREE_BLOCKS(a, b) ((a - b) - (DIVIDE_ROUND_UP(a, BLKS_PER_LMAP) - DIVIDE_ROUND_UP(b, BLKS_PER_LMAP))) +/* #GTM_THREAD_SAFE : The below macro (WRITE_EOF_BLOCK) is thread-safe */ # define WRITE_EOF_BLOCK(reg, csd, new_total, status) \ { \ off_t new_eof; \ @@ -4194,7 +4382,6 @@ typedef struct redo_root_search_context_struct SETUP_THREADGBL_ACCESS; \ assert(dollar_tlevel); \ ASSERT_BEGIN_OF_FRESH_TP_TRANS; \ - frame_pointer->flags |= SFF_IMPLTSTART_CALLD; \ if (est_first_pass && (cdb_sc_onln_rlbk2 == LAST_RESTART_CODE)) \ rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_DBROLLEDBACK); \ tp_set_sgm(); \ @@ -4484,7 +4671,7 @@ typedef struct redo_root_search_context_struct \ SETUP_THREADGBL_ACCESS; \ assert(0 < t_tries); \ - assert((CDB_STAGNATE == t_tries) || (lcl_t_tries == t_tries - 1)); \ + assert((CDB_STAGNATE == t_tries) || (LCL_T_TRIES == t_tries - 1)); \ DEBUG_ONLY(failure = LAST_RESTART_CODE); \ assert(NULL != gv_target); \ TN_ABORTED = FALSE; \ @@ -4798,6 +4985,7 @@ void bt_malloc(sgmnt_addrs *csa); void bt_refresh(sgmnt_addrs *csa, boolean_t init); void db_common_init(gd_region *reg, sgmnt_addrs *csa, sgmnt_data_ptr_t csd); void grab_crit(gd_region *reg); +boolean_t grab_crit_encr_cycle_sync(gd_region *reg); boolean_t grab_crit_immediate(gd_region *reg); boolean_t grab_lock(gd_region *reg, boolean_t is_blocking_wait, uint4 onln_rlbk_action); void gv_init_reg(gd_region *reg); @@ -4811,6 +4999,7 @@ void rel_crit(gd_region *reg); void rel_lock(gd_region *reg); boolean_t wcs_verify(gd_region *reg, boolean_t expect_damage, boolean_t caller_is_wcs_recover); bool wcs_wtfini(gd_region *reg); +void wcs_stale(TID tid, int4 hd_len, gd_region **region); #ifdef VMS int4 wcs_wtstart(gd_region *region); @@ -4852,7 +5041,6 @@ gtm_uint64_t gds_file_size(file_control *fc); uint4 jnl_flush(gd_region *reg); void jnl_fsync(gd_region *reg, uint4 fsync_addr); -void jnl_mm_timer(sgmnt_addrs *csa, gd_region *reg); void jnl_oper_user_ast(gd_region *reg); void jnl_wait(gd_region *reg); void view_jnlfile(mval *dst, gd_region *reg); @@ -4873,6 +5061,9 @@ void gvstats_rec_upgrade(sgmnt_addrs *csa); void act_in_gvt(gv_namehead *gvt); +#define FILE_TYPE_REPLINST "replication instance" +#define FILE_TYPE_DB "database" + #include "gdsfheadsp.h" /* End of gdsfhead.h */ diff --git a/sr_port/gdsfilext.h b/sr_port/gdsfilext.h old mode 100644 new mode 100755 diff --git a/sr_port/gdskill.h b/sr_port/gdskill.h old mode 100644 new mode 100755 diff --git a/sr_port/gdsroot.h b/sr_port/gdsroot.h old mode 100644 new mode 100755 diff --git a/sr_port/ged.mpt b/sr_port/ged.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gendash.m b/sr_port/gendash.m old mode 100644 new mode 100755 diff --git a/sr_port/genout.m b/sr_port/genout.m old mode 100644 new mode 100755 diff --git a/sr_port/get_cmd_qlf.c b/sr_port/get_cmd_qlf.c old mode 100644 new mode 100755 diff --git a/sr_port/get_command_line.h b/sr_port/get_command_line.h old mode 100644 new mode 100755 diff --git a/sr_port/get_dir_root.c b/sr_port/get_dir_root.c old mode 100644 new mode 100755 diff --git a/sr_port/get_dlr_device.c b/sr_port/get_dlr_device.c old mode 100644 new mode 100755 diff --git a/sr_port/get_dlr_key.c b/sr_port/get_dlr_key.c old mode 100644 new mode 100755 diff --git a/sr_port/get_dollar_stack_info.c b/sr_port/get_dollar_stack_info.c old mode 100644 new mode 100755 diff --git a/sr_port/get_lmap.c b/sr_port/get_lmap.c old mode 100644 new mode 100755 diff --git a/sr_port/get_log_name.c b/sr_port/get_log_name.c old mode 100644 new mode 100755 index c93ac57a..4952d2e1 --- a/sr_port/get_log_name.c +++ b/sr_port/get_log_name.c @@ -24,8 +24,7 @@ GBLREF io_log_name *io_root_log_name; io_log_name *get_log_name(mstr *v, bool insert) { io_log_name *l, *prev, *new; - int4 stat; - short index, v_len; + int4 index, stat, v_len; unsigned char buf[LOGNAME_LEN]; error_def (ERR_INVSTRLEN); diff --git a/sr_port/get_mladdr.c b/sr_port/get_mladdr.c old mode 100644 new mode 100755 diff --git a/sr_port/get_mmseg.c b/sr_port/get_mmseg.c old mode 100644 new mode 100755 diff --git a/sr_port/get_mumps_code.h b/sr_port/get_mumps_code.h old mode 100644 new mode 100755 diff --git a/sr_port/get_mvaddr.c b/sr_port/get_mvaddr.c old mode 100644 new mode 100755 diff --git a/sr_port/get_page_size.h b/sr_port/get_page_size.h old mode 100644 new mode 100755 diff --git a/sr_port/get_reference.c b/sr_port/get_reference.c old mode 100644 new mode 100755 diff --git a/sr_port/get_reference.h b/sr_port/get_reference.h old mode 100644 new mode 100755 diff --git a/sr_port/get_ret_targ.h b/sr_port/get_ret_targ.h old mode 100644 new mode 100755 diff --git a/sr_port/get_root.h b/sr_port/get_root.h old mode 100644 new mode 100755 diff --git a/sr_port/get_spec.c b/sr_port/get_spec.c old mode 100644 new mode 100755 diff --git a/sr_port/get_spec.h b/sr_port/get_spec.h old mode 100644 new mode 100755 diff --git a/sr_port/getjobname.c b/sr_port/getjobname.c old mode 100644 new mode 100755 diff --git a/sr_port/getjobname.h b/sr_port/getjobname.h old mode 100644 new mode 100755 diff --git a/sr_port/getjobnum.h b/sr_port/getjobnum.h old mode 100644 new mode 100755 diff --git a/sr_port/getprime.c b/sr_port/getprime.c old mode 100644 new mode 100755 diff --git a/sr_port/getstorage.h b/sr_port/getstorage.h old mode 100644 new mode 100755 diff --git a/sr_port/getzdir.c b/sr_port/getzdir.c old mode 100644 new mode 100755 diff --git a/sr_port/getzdir.h b/sr_port/getzdir.h old mode 100644 new mode 100755 diff --git a/sr_port/getzmode.h b/sr_port/getzmode.h old mode 100644 new mode 100755 diff --git a/sr_port/getzposition.h b/sr_port/getzposition.h old mode 100644 new mode 100755 diff --git a/sr_port/getzprocess.h b/sr_port/getzprocess.h old mode 100644 new mode 100755 diff --git a/sr_port/gi.mpt b/sr_port/gi.mpt old mode 100644 new mode 100755 index 4e5a3daa..83fdfce9 --- a/sr_port/gi.mpt +++ b/sr_port/gi.mpt @@ -1,6 +1,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; -; Copyright 1991, 2006 Fidelity Information Services, Inc ; +; Copyright (c) 1991-2015 Fidelity National Information ; +; Services, Inc. and/or its subsidiaries. All rights reserved. ; ; ; ; This source code contains the intellectual property ; ; of its copyright holder(s), and is made available ; @@ -15,55 +16,98 @@ ;optional confirmation by global name ;callable entry point ; - w !,"Global Input Utility",! - i '$d(%zdebug) n $et s $et="zg "_$zl_":ERR^%GI" u $p:(ctrap=$c(3):exc="zg "_$zl_":EXIT^%GI") - n d,g,n,sav,x,y,%ZD,fmt,ctls - s ctls="" f d=1:1:31,127 s ctls=ctls_$c(d) - f d q:$l(%ZD) - . r !,"Input device: : ",%ZD,! - . i '$l(%ZD) s %ZD=$p q - . i %ZD="^" q - . i %ZD="?" d q - . . w !!,"Select the device you want for input" - . . w !,"If you wish to exit enter a caret (^)",! - . . s %ZD="" - . i $zparse(%ZD)="" w " no such device" s %ZD="" q - . o %ZD:(readonly:block=2048:record=2044:exception="g noopen"):0 - . i '$t w !,%ZD," is not available" s %ZD="" q - . q -noopen . w !,$p($ZS,",",2,999),! c %ZD s %ZD="" - q:%ZD="^" - w !! - s sav="",(g,n)=0 - u %ZD:exception="g eof" - r x,y u $p w !,x,!,y,!! - u $p r !,"OK ? ",x,!! - i $l(x),$e("NO",1,$l(x))=$tr(x,"no","NO") c:%ZD'=$p %ZD u $p:(ctrap="":exc="") q - s fmt=y["ZWR" - i (fmt) f u %ZD r x q:x="" d - . s @x,n=n+1,x=$p($p(x,"="),"(") i x'=sav,x'="^" d - . . s g=g+1,sav=x - . . u $p w:$x>70 ! w x,?$x\10+1*10 - i ('fmt) f u %ZD r x,y i "*"'[$e(x) d - . i $tr(x,ctls,"")'=x d ;convert control chars to $C(x) exprs - . . n c,cp,nx s nx="" - . . f cp=1:1:$l(x) d - . . . s c=$e(x,cp),nx=nx_$s(ctls[c:"""_$c("_$a(c)_")_""",1:c) - . . s x=nx ;use fixed 'x' - . s @x=y - . s n=n+1,x=$p(x,"(") - . i x'=sav,x'="^" d - . . s g=g+1,sav=x - . . u $p w:$x>70 ! w x,?$x\10+1*10 -eof u $p - w !!,"Restored ",n," node",$s(n=1:"",1:"s") - w " in ",g," global",$s(g=1:".",1:"s.") - c:%ZD'=$p %ZD u $p:(ctrap="":exc="") - q - ; -ERR u $p w !,$p($zs,",",2,99),! - ; Warning - Fall-though - s $ec="" -EXIT i $d(%ZD),%ZD'=$p c %ZD - u $p:(ctrap="":exc="") - q + new c,chset,d,dos,fmt,g,i,n,q,sav,saveread,x,y,%ZD + set d("io")=$io + use $principal + write !,"Global Input Utility",! + set $zstatus="" + if '$data(%zdebug) new $etrap set $etrap="zgoto "_$zlevel_":err^"_$text(+0) do + . zshow "d":d ; save original $p settings + . set x=$piece($piece(d("D",1),"CTRA=",2)," ") + . set:""=x x="""""" + . set d("use")="$principal:(ctrap="_x_":exception=",x=$piece(d("D",1),"EXCE=",2),x=$zwrite($extract(x,2,$length(x)-1)) + . set:""=x x="""""" + . set d("use")=d("use")_x_":"_$select($find(d("D",1),"NOCENE"):"nocenable",1:"cenable")_")" + . use $principal:(ctrap=$char(3,4):exception="":nocenable) + for do quit:$length(%ZD) + . read !,"Input device: : ",%ZD + . if '$length(%ZD) set %ZD=$principal quit + . quit:"^"=%ZD + . if "?"=%ZD do quit + . . write !!,"Select the device you want for input" + . . write !,"If you wish to exit enter a caret (^)",! + . . set %ZD="" + . if $zparse(%ZD)="" write " no such device" set %ZD="" quit + . open:$principal'=%ZD %ZD:(readonly:rewind:stream:recordsize=2044:ichset="M":exception="goto noopen"):0 + . if '$test write !,%ZD," is not available" set %ZD="" + . quit +noopen . write !,$piece($ZS,",",2,999),! + . close %ZD + . set ($zstatus,%ZD)="" + if "^"=%ZD do err quit + write !! + set sav="",(g,n)=0 + if $principal'=%ZD use %ZD:(exception="zgoto "_$zlevel_":eof":ctrap=$C(3,4)) do quit:"^"=x + . read x,y + . use $principal + . set dos=($zchar(13)=$extract(x,$length(x))) ; the label selects dos/not for entire file + . set:dos x=$extract(x,1,$length(x)-1),y=$extract(y,1,$length(y)-1) + . write !,x,!,y,! + . set chset=$select(x["UTF-8":"UTF-8",1:"M") + . if $zchset'=chset write "Extract CHSET ",chset," doesn't match current $ZCHSET ",$zchset,! + . read !,"OK ? ",x,!! + . if "^"=x do err quit + . if $length(x),$extract("NO",1,$length(x))=$translate(x,"no","NO") set x="^" do err quit + . set fmt=$get(y)["ZWR" + else do if "^"=x do err quit ; if input is $p, no label + . set chset=$zchset,dos=0,fmt=1 + . read !,"Format ? ",x,!! + . quit:"^"=x + . if $length(x) set x=$translate($zconvert(x,"U"),"L") if $extract("GO",1,$length(x))=x set fmt=0 quit + set x=$$read + if 'fmt do + . if x?1"^"1(1"%",1A).30AN.1(1"("1.E1")")1"=".E set fmt=1 quit ; looks like ZWR + . set y=$$read + . do for set x=$$read,y=$$read if "*"'[$extract(x) do ; GLO + . . quit:(""=x)&(""=y) + . . set @x=y + . . set n=n+1,x=$piece(x,"(") + . . if x'=sav,x'="^" do + . . . set g=g+1,sav=x + . . . if $principal'=%ZD use $principal write:$x>70 ! write x,?$x\10+1*10 + if (fmt) do for set x=$$read do ; ZWR + . quit:""=x + . set (i,q)=1,y="" ; find first equal-sign not in quotes + . for set c=i,i=$find(x,"=",i) do:$extract(x,c,i-2)["""" quit:q + . . for c=c:1:i-2 set:""""=$extract(c) q='q + . set y=$extract(x,1,i-2) + . if 8193>$zlength(x) set @x + . else set:8192<$length(y) y=$zwrite(y,1) set @y=$zwrite($extract(x,i,$length(x)),1) + . set n=n+1,x=$piece(y,"(") + . if x'=sav,"^"'=x do + . . set g=g+1,sav=x + . . if $principal'=%ZD use $principal write:$x>70 ! write x,?$x\10+1*10 +eof ; +err set $ecode="" + if $data(%ZD),%ZD'=$principal close %ZD + use:$data(d("use")) @d("use") + use:$data(d("io")) d("io") + if ""'=$zstatus,($zstatus'["CTRAP")&($zstatus'["IOEOF") write !,"ERROR: ",$zstatus + quit:'$get(n) + write !!,"Restored ",n," node",$select(n=1:"",1:"s") + write " in ",g," global",$select(g=1:".",1:"s.") + quit +read() ; concatenate reads that fill the buffer; also centralize the USE and dos stripping + new i,e,x + use %ZD + set e=0,x=$get(saveread),i=1+(""'=x),saveread="" + for i=i:1 do quit:e + . if $principal=$io read "> ",x(i),! + . else read x(i) + . if $zeof,$increment(e) quit + . quit:""=x(i) + . if 0=i#2,$increment(e) set saveread=x(i) quit + . set x=x_x(i) + . if 2044'=$zlength(x(i)),$increment(e) quit + set:dos x=$extract(x,1,$length(x)-1) + quit x \ No newline at end of file diff --git a/sr_port/global_map.c b/sr_port/global_map.c old mode 100644 new mode 100755 diff --git a/sr_port/global_map.h b/sr_port/global_map.h old mode 100644 new mode 100755 diff --git a/sr_port/glvn.c b/sr_port/glvn.c old mode 100644 new mode 100755 diff --git a/sr_port/go.mpt b/sr_port/go.mpt old mode 100644 new mode 100755 diff --git a/sr_port/golevel.h b/sr_port/golevel.h old mode 100644 new mode 100755 diff --git a/sr_port/gsel.mpt b/sr_port/gsel.mpt old mode 100644 new mode 100755 diff --git a/sr_port/gtm_assert.c b/sr_port/gtm_assert.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_bintim.h b/sr_port/gtm_bintim.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_byteswap_64.c b/sr_port/gtm_byteswap_64.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_caseconv.h b/sr_port/gtm_caseconv.h old mode 100644 new mode 100755 index 1160e7e9..372f85c3 --- a/sr_port/gtm_caseconv.h +++ b/sr_port/gtm_caseconv.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -14,5 +15,6 @@ void lower_to_upper(uchar_ptr_t d, uchar_ptr_t s, int4 len); void upper_to_lower(uchar_ptr_t d, uchar_ptr_t s, int4 len); +void str_to_title(uchar_ptr_t d, uchar_ptr_t s, int4 len); #endif /*GTM_CASECONV_included*/ diff --git a/sr_port/gtm_connect.c b/sr_port/gtm_connect.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_ctype.h b/sr_port/gtm_ctype.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_dirent.h b/sr_port/gtm_dirent.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_env_init.c b/sr_port/gtm_env_init.c old mode 100644 new mode 100755 index 931e7069..4eb4f0bb --- a/sr_port/gtm_env_init.c +++ b/sr_port/gtm_env_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2004, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2004-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -13,9 +14,11 @@ #include "gtm_string.h" #include "gtm_stdlib.h" + #include /* For offsetof macro */ #include "gtm_logicals.h" +#include "gtm_multi_thread.h" #include "logical_truth_value.h" #include "trans_numeric.h" #include "trans_log_name.h" @@ -44,6 +47,7 @@ #include "jnl.h" #include "hashtab_int4.h" /* needed for tp.h */ #include "tp.h" +#include "cli.h" #ifdef DEBUG # define INITIAL_DEBUG_LEVEL GDL_Simple @@ -85,7 +89,9 @@ void gtm_env_init(void) mstr val, trans; boolean_t ret, is_defined; uint4 tdbglvl, tmsock, reservesize, memsize, cachent, trctblsize, trctblbytes; + uint4 max_threads, max_procs; int4 status; + int status2; char buf[MAX_TRANS_NAME_LEN]; DCL_THREADGBL_ACCESS; @@ -295,17 +301,29 @@ void gtm_env_init(void) && (TPNOTACID_MAX_TIME >= status) && is_defined) TREF(tpnotacidtime) = status; /* NOTE assignment above */ /* Initialize $gtm_tprestart_log_first */ - val.addr = GTM_TPRESTART_LOG_LIMIT; - val.len = STR_LIT_LEN(GTM_TPRESTART_LOG_LIMIT); - TREF(tprestart_syslog_limit) = trans_numeric(&val, &is_defined, TRUE); - if (0 > TREF(tprestart_syslog_limit)) - TREF(tprestart_syslog_limit) = 0; + val.addr = GTM_TPRESTART_LOG_FIRST; + val.len = STR_LIT_LEN(GTM_TPRESTART_LOG_FIRST); + TREF(tprestart_syslog_first) = trans_numeric(&val, &is_defined, TRUE); + if (0 > TREF(tprestart_syslog_first)) + TREF(tprestart_syslog_first) = 0; /* Initialize $gtm_tprestart_log_delta */ val.addr = GTM_TPRESTART_LOG_DELTA; val.len = STR_LIT_LEN(GTM_TPRESTART_LOG_DELTA); TREF(tprestart_syslog_delta) = trans_numeric(&val, &is_defined, TRUE); if (0 > TREF(tprestart_syslog_delta)) TREF(tprestart_syslog_delta) = 0; + /* Initialize $gtm_nontprestart_log_first */ + val.addr = GTM_NONTPRESTART_LOG_FIRST; + val.len = STR_LIT_LEN(GTM_NONTPRESTART_LOG_FIRST); + TREF(nontprestart_log_first) = trans_numeric(&val, &is_defined, TRUE); + if (0 > TREF(nontprestart_log_first)) + TREF(nontprestart_log_first) = 0; + /* Initialize $gtm_nontprestart_log_delta */ + val.addr = GTM_NONTPRESTART_LOG_DELTA; + val.len = STR_LIT_LEN(GTM_NONTPRESTART_LOG_DELTA); + TREF(nontprestart_log_delta) = trans_numeric(&val, &is_defined, TRUE); + if (0 > TREF(nontprestart_log_delta)) + TREF(nontprestart_log_delta) = 0; /* See if this is a GT.M Development environment, not a production environment */ if (GETENV("gtm_environment_init")) TREF(gtm_environment_init) = TRUE; /* in-house */ @@ -352,6 +370,12 @@ void gtm_env_init(void) val.addr = GTM_MAX_STORALLOC; val.len = SIZEOF(GTM_MAX_STORALLOC) - 1; gtm_max_storalloc = trans_numeric(&val, &is_defined, TRUE); + /* See if $gtm_mupjnl_parallel is set */ + val.addr = GTM_MUPJNL_PARALLEL; + val.len = SIZEOF(GTM_MUPJNL_PARALLEL) - 1; + gtm_mupjnl_parallel = trans_numeric(&val, &is_defined, TRUE); + if (!is_defined) + gtm_mupjnl_parallel = 1; /* Platform specific initializations */ gtm_env_init_sp(); } diff --git a/sr_port/gtm_env_init.h b/sr_port/gtm_env_init.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_env_xlate_init.c b/sr_port/gtm_env_xlate_init.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_env_xlate_init.h b/sr_port/gtm_env_xlate_init.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_event_log.h b/sr_port/gtm_event_log.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_facility.h b/sr_port/gtm_facility.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_fcntl.h b/sr_port/gtm_fcntl.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_ffs.c b/sr_port/gtm_ffs.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_ffs.h b/sr_port/gtm_ffs.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_file_remove.h b/sr_port/gtm_file_remove.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_file_stat.h b/sr_port/gtm_file_stat.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_iconv.h b/sr_port/gtm_iconv.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_inet.h b/sr_port/gtm_inet.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_limits.h b/sr_port/gtm_limits.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_malloc.c b/sr_port/gtm_malloc.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_malloc.h b/sr_port/gtm_malloc.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_malloc_dbg.c b/sr_port/gtm_malloc_dbg.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_malloc_src.h b/sr_port/gtm_malloc_src.h old mode 100644 new mode 100755 index d245a5d1..e2c217ef --- a/sr_port/gtm_malloc_src.h +++ b/sr_port/gtm_malloc_src.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001, 2015 Fidelity National Information * + * Copyright (c) 2001-2015 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -18,8 +18,7 @@ * See the headers of those modules for explanations of how the storage * manager build is actually accomplished. * - * Debugging is controlled via the "gtmdbglvl" environment variable in - * the Unix environment and the GTM$DBGLVL logical in the VMS environment. + * Debugging is controlled via the "gtmdbglvl" environment variable in the Unix environment. * If this variable is set to a non-zero value, the debugging environment * is enabled. The debugging features turned on will correspond to the bit * values defined gtmdbglvl.h. Note that this mechanism is versatile enough @@ -47,17 +46,17 @@ #include #include #include -#include #include #include -#if !defined(VMS) && !defined(__MVS__) +#if !defined(__MVS__) # include #endif #include "gtm_stdio.h" #include "gtm_stdlib.h" #include "gtm_string.h" +#include "gtm_signal.h" -#include "eintr_wrappers.h" +#include "gtm_multi_thread.h" #include "gtmdbglvl.h" #include "io.h" #include "iosp.h" @@ -73,10 +72,8 @@ #include "gtm_malloc.h" #include "have_crit.h" #include "gtm_env_init.h" -#ifdef UNIX -# include "gtmio.h" -# include "deferred_signal_handler.h" -#endif +#include "gtmio.h" +#include "deferred_signal_handler.h" /* This routine is compiled twice, once as debug and once as pro and put into the same pro build. The alternative * memory manager is selected with the debug flags (any non-zero gtmdbglvl setting invokes debug memory manager in @@ -111,49 +108,10 @@ # define gmaLine " " #endif -#ifdef VMS -/* These routines for VMS are AST-safe */ -# define MALLOC(size, addr) \ -{ \ - int msize, errnum; \ - void *maddr; \ - if ((0 < gtm_max_storalloc) && ((size + totalRmalloc + totalRallocGta) > gtm_max_storalloc)) \ - { /* Boundary check for $gtm_max_storalloc (if set) */ \ - gtmMallocErrorSize = size; \ - gtmMallocErrorCallerid = CALLERID; \ - gtmMallocErrorErrno = ERR_MALLOCMAXVMS; \ - raise_gtmmemory_error(); \ - } \ - msize = size; \ - errnum = lib$get_vm(&msize, &maddr); \ - if (SS$_NORMAL != errnum) \ - { \ - gtmMallocErrorSize = size; \ - gtmMallocErrorCallerid = CALLERID; \ - gtmMallocErrorErrno = errnum; \ - raise_gtmmemory_error(); \ - } \ - addr = (void *)maddr; \ -} -# define FREE(size, addr) \ -{ \ - int msize, errnum; \ - void *maddr; \ - msize = size; \ - maddr = addr; \ - errnum = lib$free_vm(&msize, &maddr); \ - if (SS$_NORMAL != errnum) \ - { \ - --gtmMallocDepth; \ - assert(FALSE); \ - rts_error_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_FREEMEMORY, 1, CALLERID, errnum); \ - } \ -} -# define GTM_MALLOC_REENT -#else -/* These routines for Unix are NOT thread-safe */ +/* #GTM_THREAD_SAFE : The below macro (MALLOC) is thread-safe because caller ensures serialization with locks */ # define MALLOC(size, addr) \ { \ + assert(IS_PTHREAD_LOCKED_AND_HOLDER); \ if ((0 < gtm_max_storalloc) && ((size + totalRmalloc + totalRallocGta) > gtm_max_storalloc)) \ { /* Boundary check for $gtm_max_storalloc (if set) */ \ gtmMallocErrorSize = size; \ @@ -171,14 +129,6 @@ } \ } # define FREE(size, addr) free(addr); -#endif -#ifdef GTM_MALLOC_REENT -# define GMR_ONLY(statement) statement -# define NON_GMR_ONLY(statement) -#else -# define GMR_ONLY(statement) -# define NON_GMR_ONLY(statement) statement -#endif #define MAXBACKFILL (16 * 1024) /* Maximum backfill of large structures */ #define MAXTWO 2048 /* Maximum size we allocate from queues */ /* How many "MAXTWO" elements to allocate at one time. This minimizes the waste since our subblocks must @@ -260,37 +210,44 @@ /* Define "routines" to enqueue and dequeue storage elements. Use define so we don't * have to depend on each implementation's compiler inlining to get efficient code here. */ +/* #GTM_THREAD_SAFE : The below macro (ENQUEUE_STOR_ELEM) is thread-safe because caller ensures serialization with locks */ #define ENQUEUE_STOR_ELEM(qtype, idx, elem) \ { \ - storElem *qHdr, *fElem; \ - qHdr = &qtype##StorElemQs[idx]; \ - STE_FP(elem) = fElem = STE_FP(qHdr); \ - STE_BP(elem) = qHdr; \ - STE_FP(qHdr) = STE_BP(fElem) = elem; \ - INCR_CNTR(qtype##ElemCnt[idx]); \ - SET_ELEM_MAX(qtype, idx); \ + storElem *qHdr, *fElem; \ + \ + assert(IS_PTHREAD_LOCKED_AND_HOLDER); \ + qHdr = &qtype##StorElemQs[idx]; \ + STE_FP(elem) = fElem = STE_FP(qHdr); \ + STE_BP(elem) = qHdr; \ + STE_FP(qHdr) = STE_BP(fElem) = elem; \ + INCR_CNTR(qtype##ElemCnt[idx]); \ + SET_ELEM_MAX(qtype, idx); \ } +/* #GTM_THREAD_SAFE : The below macro (DEQUEUE_STOR_ELEM) is thread-safe because caller ensures serialization with locks */ #define DEQUEUE_STOR_ELEM(qtype, elem) \ { \ - STE_FP(STE_BP(elem)) = STE_FP(elem); \ - STE_BP(STE_FP(elem)) = STE_BP(elem); \ - DECR_CNTR(qtype##ElemCnt[elem->queueIndex]); \ + assert(IS_PTHREAD_LOCKED_AND_HOLDER); \ + STE_FP(STE_BP(elem)) = STE_FP(elem); \ + STE_BP(STE_FP(elem)) = STE_BP(elem); \ + DECR_CNTR(qtype##ElemCnt[elem->queueIndex]); \ } -#define GET_QUEUED_ELEMENT(sizeIndex, uStor, qHdr, sEHdr) \ -{ \ - qHdr = &freeStorElemQs[sizeIndex]; \ - uStor = STE_FP(qHdr); /* First element on queue */ \ - if (QUEUE_ANCHOR != uStor->queueIndex) /* Does element exist? (Does queue point to itself?) */ \ - { \ - DEQUEUE_STOR_ELEM(free, uStor); /* It exists, dequeue it for use */ \ - if (MAXINDEX == sizeIndex) \ - { /* Allocating a MAXTWO block. Increment use counter for this subblock's block */ \ - sEHdr = (storExtHdr *)((char *)uStor + uStor->extHdrOffset); \ - ++sEHdr->elemsAllocd; \ - } \ - } else \ - uStor = findStorElem(sizeIndex); \ - assert(0 == ((unsigned long)uStor & (TwoTable[sizeIndex] - 1))); /* Verify alignment */ \ +/* #GTM_THREAD_SAFE : The below macro (GET_QUEUED_ELEMENT) is thread-safe because caller ensures serialization with locks */ +#define GET_QUEUED_ELEMENT(sizeIndex, uStor, qHdr, sEHdr) \ +{ \ + assert(IS_PTHREAD_LOCKED_AND_HOLDER); \ + qHdr = &freeStorElemQs[sizeIndex]; \ + uStor = STE_FP(qHdr); /* First element on queue */ \ + if (QUEUE_ANCHOR != uStor->queueIndex) /* Does element exist? (Does queue point to itself?) */ \ + { \ + DEQUEUE_STOR_ELEM(free, uStor); /* It exists, dequeue it for use */ \ + if (MAXINDEX == sizeIndex) \ + { /* Allocating a MAXTWO block. Increment use counter for this subblock's block */ \ + sEHdr = (storExtHdr *)((char *)uStor + uStor->extHdrOffset); \ + ++sEHdr->elemsAllocd; \ + } \ + } else \ + uStor = findStorElem(sizeIndex); \ + assert(0 == ((unsigned long)uStor & (TwoTable[sizeIndex] - 1))); /* Verify alignment */ \ } #ifdef INT8_SUPPORTED # define ChunkSize 8 @@ -357,9 +314,9 @@ GBLREF mcalloc_hdr *mcavailptr, *mcavailbase; GBLREF size_t totalRallocGta; /* Size allocated by gtm_text_alloc if at all */ GBLREF size_t gtm_max_storalloc; /* Max value for $ZREALSTOR or else memory error is raised */ GBLREF void (*cache_table_relobjs)(void); /* Function pointer to call cache_table_rebuild() */ -UNIX_ONLY(GBLREF ch_ret_type (*ht_rhash_ch)();) /* Function pointer to hashtab_rehash_ch */ -UNIX_ONLY(GBLREF ch_ret_type (*jbxm_dump_ch)();) /* Function pointer to jobexam_dump_ch */ -UNIX_ONLY(GBLREF ch_ret_type (*stpgc_ch)();) /* Function pointer to stp_gcol_ch */ +GBLREF ch_ret_type (*ht_rhash_ch)(); /* Function pointer to hashtab_rehash_ch */ +GBLREF ch_ret_type (*jbxm_dump_ch)(); /* Function pointer to jobexam_dump_ch */ +GBLREF ch_ret_type (*stpgc_ch)(); /* Function pointer to stp_gcol_ch */ /* This var allows us to call ourselves but still have callerid info */ GBLREF unsigned char *smCallerId; /* Caller of top level malloc/free */ GBLREF volatile int4 fast_lock_count; /* Stop stale/epoch processing while we have our parts exposed */ @@ -415,10 +372,6 @@ STATICD storElem freeStorElemQs[MAXINDEX + 1]; /* Need full element as queue anc */ STATICD storExtHdr storExtHdrQ; /* List of storage blocks we allocate here */ STATICD uint4 curExtents; /* Number of current extents */ -#ifdef GTM_MALLOC_REENT -STATICD storElem *deferFreeQueues[MAXDEFERQUEUES]; /* Where deferred (nested) frees are queued for later processing */ -STATICD boolean_t deferFreeExists; /* A deferred free is pending on a queue */ -#endif #ifdef DEBUG STATICD storElem allocStorElemQs[MAXINDEX + 2]; /* The extra element is for queueing "real" malloc'd entries */ # ifdef INT8_SUPPORTED @@ -446,18 +399,13 @@ STATICD uint4 freeElemCnt[MAXINDEX + 2]; /* Current count of elements on the fr STATICD uint4 allocElemCnt[MAXINDEX + 2]; /* Current count of elements on the allocated queue */ STATICD uint4 freeElemMax[MAXINDEX + 2]; /* Maximum number of blocks on the free queue */ STATICD uint4 allocElemMax[MAXINDEX + 2]; /* Maximum number of blocks on the allocated queue */ -GMR_ONLY(STATICD uint4 reentMallocs;) /* Total number of reentrant mallocs made */ -GMR_ONLY(STATICD uint4 deferFreePending;) /* Total number of frees that were deferred */ #endif error_def(ERR_INVMEMRESRV); error_def(ERR_MEMORYRECURSIVE); -UNIX_ONLY(error_def(ERR_MEMORY);) -UNIX_ONLY(error_def(ERR_SYSCALL);) -UNIX_ONLY(error_def(ERR_MALLOCMAXUNIX);) -VMS_ONLY(error_def(ERR_FREEMEMORY);) -VMS_ONLY(error_def(ERR_VMSMEMORY);) -VMS_ONLY(error_def(ERR_MALLOCMAXVMS);) +error_def(ERR_MEMORY); +error_def(ERR_SYSCALL); +error_def(ERR_MALLOCMAXUNIX); /* Internal prototypes */ void gtmSmInit(void); @@ -473,12 +421,10 @@ void raise_gtmmemory_error_dbg(void); size_t gtm_bestfitsize_dbg(size_t); #endif -VMS_ONLY(error_def(ERR_FREEMEMORY);) error_def(ERR_INVMEMRESRV); -UNIX_ONLY(error_def(ERR_MEMORY);) +error_def(ERR_MEMORY); error_def(ERR_MEMORYRECURSIVE); -VMS_ONLY(error_def(ERR_VMSMEMORY);) -UNIX_ONLY(error_def(ERR_SYSCALL);) +error_def(ERR_SYSCALL); /* Initialize the storage manangement system. Things to initialize: * @@ -491,6 +437,7 @@ UNIX_ONLY(error_def(ERR_SYSCALL);) * - Initialize debug mode. See if gtm_debug_level environment variable is set and * retrieve it's value if yes. */ +/* #GTM_THREAD_SAFE : The below function (gtmSmInit) is thread-safe because caller ensures serialization with locks */ void gtmSmInit(void) /* Note renamed to gtmSmInit_dbg when included in gtm_malloc_dbg.c */ { char *ascNum; @@ -499,6 +446,7 @@ void gtmSmInit(void) /* Note renamed to gtmSmInit_dbg when included in gtm_mallo DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); /* If this routine is entered and environment vars have not yet been processed with a call to gtm_env_init(), * then do this now. Since this will likely trigger a call to this routine *again*, verify if we still need * to do this and if not, just return. @@ -549,13 +497,13 @@ void gtmSmInit(void) /* Note renamed to gtmSmInit_dbg when included in gtm_mallo STE_FP(uStor) = STE_BP(uStor) = uStor; uStor->queueIndex = QUEUE_ANCHOR; } - DEBUG_ONLY( - for (uStor = &allocStorElemQs[0], i = 0; i <= (MAXINDEX + 1); ++i, ++uStor) - { - STE_FP(uStor) = STE_BP(uStor) = uStor; - uStor->queueIndex = QUEUE_ANCHOR; - } - ); +# ifdef DEBUG + for (uStor = &allocStorElemQs[0], i = 0; i <= (MAXINDEX + 1); ++i, ++uStor) + { + STE_FP(uStor) = STE_BP(uStor) = uStor; + uStor->queueIndex = QUEUE_ANCHOR; + } +# endif dqinit(&storExtHdrQ, links); /* One last task before we consider ourselves initialized. Allocate the out-of-memory mitigation storage * that we will hold onto but not use. If we get an out-of-memory error, this storage will be released back @@ -571,10 +519,9 @@ void gtmSmInit(void) /* Note renamed to gtmSmInit_dbg when included in gtm_mallo if (NULL == outOfMemoryMitigation) { save_errno = errno; - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(5) ERR_INVMEMRESRV, 2, - RTS_ERROR_LITERAL(UNIX_ONLY("$gtm_memory_reserve")VMS_ONLY("GTM_MEMORY_RESERVE")), + gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(5) ERR_INVMEMRESRV, 2, RTS_ERROR_LITERAL("$gtm_memory_reserve"), save_errno); - exit(save_errno); + EXIT(save_errno); } } gtmSmInitialized = TRUE; @@ -588,6 +535,7 @@ void gtmSmInit(void) /* Note renamed to gtmSmInit_dbg when included in gtm_mallo * storage, carve it up into the largest block size we handle and process as * before. */ +/* #GTM_THREAD_SAFE : The below function (findStorElem) is thread-safe because caller ensures serialization with locks */ storElem *findStorElem(int sizeIndex) /* Note renamed to findStorElem_dbg when included in gtm_malloc_dbg.c */ { unsigned char *uStorAlloc; @@ -596,27 +544,28 @@ storElem *findStorElem(int sizeIndex) /* Note renamed to findStorElem_dbg when i int hdrSize; unsigned int i; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); ++sizeIndex; DEBUG_ONLY(hdrSize = OFFSETOF(storElem, userStorage)); /* Size of storElem header */ if (MAXINDEX >= sizeIndex) { /* We have more queues to search */ - GET_QUEUED_ELEMENT(sizeIndex, uStor, qHdr, sEHdr); + GET_QUEUED_ELEMENT(sizeIndex, uStor, qHdr, sEHdr); /* We have a larger than necessary element now so break it in half and put * the second half on the queue one size smaller than us. */ INCR_CNTR(elemSplits[sizeIndex]); - --sizeIndex; /* Dealing now with smaller element queue */ - assert(sizeIndex >= 0 && sizeIndex < MAXINDEX); - uStor2 = (storElem *)((unsigned long)uStor + TwoTable[sizeIndex]); - uStor2->state = Free; - uStor2->queueIndex = sizeIndex; - assert(0 == ((unsigned long)uStor2 & (TwoTable[sizeIndex] - 1))); /* Verify alignment */ - DEBUG_ONLY( - memcpy(uStor2->headMarker, markerChar, SIZEOF(uStor2->headMarker)); /* Put header tag in place */ - /* Backfill entire block being freed so usage of it will cause problems */ - if (GDL_SmBackfill & gtmDebugLevel) - backfill((unsigned char *)uStor2 + hdrSize, TwoTable[sizeIndex] - hdrSize); - ); + --sizeIndex; /* Dealing now with smaller element queue */ + assert(sizeIndex >= 0 && sizeIndex < MAXINDEX); + uStor2 = (storElem *)((unsigned long)uStor + TwoTable[sizeIndex]); + uStor2->state = Free; + uStor2->queueIndex = sizeIndex; + assert(0 == ((unsigned long)uStor2 & (TwoTable[sizeIndex] - 1))); /* Verify alignment */ +# ifdef DEBUG + memcpy(uStor2->headMarker, markerChar, SIZEOF(uStor2->headMarker)); /* Put header tag in place */ + /* Backfill entire block being freed so usage of it will cause problems */ + if (GDL_SmBackfill & gtmDebugLevel) + backfill((unsigned char *)uStor2 + hdrSize, TwoTable[sizeIndex] - hdrSize); +# endif ENQUEUE_STOR_ELEM(free, sizeIndex, uStor2); /* Place on free queue */ } else { /* Nothing left to search, [real]malloc a new ALIGNED block of storage and put it on our queues */ @@ -654,14 +603,14 @@ storElem *findStorElem(int sizeIndex) /* Note renamed to findStorElem_dbg when i uStor2->queueIndex = MAXINDEX; uStor2->extHdrOffset = (char *)sEHdr - (char *)uStor2; assert(extent_used > uStor2->extHdrOffset); - DEBUG_ONLY( - memcpy(uStor2->headMarker, markerChar, SIZEOF(uStor2->headMarker)); - /* Backfill entire block on free queue so we can detect trouble - * with premature usage or overflow from something else - */ - if (GDL_SmBackfill & gtmDebugLevel) - backfill((unsigned char *)uStor2 + hdrSize, TwoTable[MAXINDEX] - hdrSize); - ); +# ifdef DEBUG + memcpy(uStor2->headMarker, markerChar, SIZEOF(uStor2->headMarker)); + /* Backfill entire block on free queue so we can detect trouble + * with premature usage or overflow from something else + */ + if (GDL_SmBackfill & gtmDebugLevel) + backfill((unsigned char *)uStor2 + hdrSize, TwoTable[MAXINDEX] - hdrSize); +# endif ENQUEUE_STOR_ELEM(free, MAXINDEX, uStor2); /* Place on free queue */ } uStor->extHdrOffset = (char *)sEHdr - (char *)uStor; @@ -678,44 +627,9 @@ storElem *findStorElem(int sizeIndex) /* Note renamed to findStorElem_dbg when i return uStor; } -#ifdef GTM_MALLOC_REENT -/* Routine to process deferred frees in the deferred free queues */ -void processDeferredFrees() /* Note renamed to processDeferredFrees_dbg when included in gtm_malloc_dbg.c */ -{ - int dqIndex; - storElem *uStor, *uStorNext; - - assert(0 == gtmMallocDepth); - do - { - deferFreeExists = FALSE; - /* Run queue in reverse order so we can process the highest index queues first freeing them - * up that much sooner. This eliminates the problem of index creep. - */ - for (dqIndex = MAXDEFERQUEUES - 1; 0 <= dqIndex; --dqIndex) - { - /* Check if queue is empty or not once outside of the gtmMallocDepth lock 'cause - * we don't want to get the lock unless we really need to. - */ - if (deferFreeQueues[dqIndex]) - { - gtmMallocDepth = dqIndex + 2; - uStor = deferFreeQueues[dqIndex]; /* Dequeue entire chain at this location */ - deferFreeQueues[dqIndex] = NULL; - gtmMallocDepth = 0; - for (; uStor; uStor = uStorNext) /* Release all elements on this queue */ - { - uStorNext = uStor->userStorage.deferFreeNext; - gtm_free(&uStor->userStorage.userStart); - } - } - } - } while (deferFreeExists); -} -#endif - /* Note, if the below declaration changes, corresponding changes in gtmxc_types.h needs to be done. */ /* Obtain free storage of the given size */ +/* #GTM_THREAD_SAFE : The below function (gtm_malloc) is thread-safe; serialization is ensured with locks */ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in gtm_malloc_dbg.c */ { unsigned char *retVal; @@ -724,7 +638,7 @@ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in gtm_msize_t tSize; int sizeIndex, i, hdrSize; unsigned char *trailerMarker; - boolean_t reentered; + boolean_t reentered, was_holder; # ifndef DEBUG /* If we are not expanding for DEBUG, check now if DEBUG has been turned on. @@ -740,52 +654,46 @@ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in */ if (gtmSmInitialized) { + PTHREAD_MUTEX_LOCK_IF_NEEDED(was_holder); /* get exclusive thread lock in case threads are in use */ hdrSize = OFFSETOF(storElem, userStorage); /* Size of storElem header */ NON_GTM64_ONLY(assertpro((size + hdrSize) >= size)); /* Check for wrap in 32 bit platforms */ assert((hdrSize + SIZEOF(markerChar)) < MINTWO); - NON_GMR_ONLY(fast_lock_count++); + fast_lock_count++; ++gtmMallocDepth; /* Nesting depth of memory calls */ reentered = (1 < gtmMallocDepth); - NON_GMR_ONLY( - if (reentered) - { - --gtmMallocDepth; - assert(FALSE); - rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_MEMORYRECURSIVE); - } - ); + if (reentered) + { + --gtmMallocDepth; + assert(FALSE); + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ + rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_MEMORYRECURSIVE); + } INCR_CNTR(totalMallocs); INCR_CNTR(smTn); /* Validate null string not overwritten */ assert(0 == memcmp(&NullStruct.nullHMark[0], markerChar, SIZEOF(NullStruct.nullHMark))); assert(0 == memcmp(&NullStruct.nullTMark[0], markerChar, SIZEOF(NullStruct.nullHMark))); - DEBUG_ONLY( - GMR_ONLY(if (!reentered)) - { /* Verify the storage chains before we play */ - VERIFY_STORAGE_CHAINS; - } - ); + DEBUG_ONLY(VERIFY_STORAGE_CHAINS); /* Verify the storage chains before we play */ if (0 != size) { - GMR_ONLY(size = MAX(SIZEOF(char *), size);) /* Need room for deferred free next pointer */ tSize = size + hdrSize; /* Add in header size */ - DEBUG_ONLY( - tSize += SIZEOF(markerChar); /* Add in room for trailer label */ - /* If being a storage hog, we want to make sure we have plenty of room for - * filler. For strings up to MAXTWO in length, we pad with an additional 50% - * of storage with a minimum of 32 bytes and a maximum of 256 bytes. For larger - * strings, we pad with 256 bytes. Since selecting GDL_SmStorHog also turns on - * GDL_SmBackfill and GDL_SmChkAllocBackfill, this padding will be backfilled and - * checked during allocate storage validation calls. - */ - if (GDL_SmStorHog & gtmDebugLevel) - { - if (MAXTWO >= size) - tSize += (MIN(MAX(size / 2, 32), 256)); - else - tSize += 256; - } - ); +# ifdef DEBUG + tSize += SIZEOF(markerChar); /* Add in room for trailer label */ + /* If being a storage hog, we want to make sure we have plenty of room for + * filler. For strings up to MAXTWO in length, we pad with an additional 50% + * of storage with a minimum of 32 bytes and a maximum of 256 bytes. For larger + * strings, we pad with 256 bytes. Since selecting GDL_SmStorHog also turns on + * GDL_SmBackfill and GDL_SmChkAllocBackfill, this padding will be backfilled and + * checked during allocate storage validation calls. + */ + if (GDL_SmStorHog & gtmDebugLevel) + { + if (MAXTWO >= size) + tSize += (MIN(MAX(size / 2, 32), 256)); + else + tSize += 256; + } +# endif /* The difference between $ZALLOCSTOR and $ZUSEDSTOR (totalAlloc and totalUsed global vars) is * that when you allocate, say 16 bytes, that comes out of a 32 byte chunk (with the pro storage * mgr) with the rest being unusable. In a debug build (or a pro build with $gtmdbglvl set to @@ -800,7 +708,7 @@ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in * debug build or a pro build with $gtmdbglvl engaged. The difference between them shows the * allocation overhead of gtm_malloc itself. */ - if (MAXTWO >= tSize GMR_ONLY(&& !reentered)) + if (MAXTWO >= tSize) { /* Use our memory manager for smaller pieces */ sizeIndex = GetSizeIndex(tSize); /* Get index to size we need */ assert(sizeIndex >= 0 && sizeIndex <= MAXINDEX); @@ -840,46 +748,33 @@ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in (uStor->realLen - size - hdrSize - SIZEOF(markerChar))); } uStor->smTn = smTn; /* Transaction number */ - GMR_ONLY(if (!reentered)) - { - ENQUEUE_STOR_ELEM(alloc, sizeIndex, uStor); - } -# ifdef GTM_MALLOC_REENT - else - { /* Reentrant allocates cannot be put on our allocated queue -- sorry too dangerous */ - uStor->fPtr = uStor->bPtr = NULL; - INCR_CNTR(allocElemCnt[sizeIndex]); - INCR_CNTR(reentMallocs); - } -# endif + ENQUEUE_STOR_ELEM(alloc, sizeIndex, uStor); # endif retVal = &uStor->userStorage.userStart; assert(((long)retVal & (long)-8) == (long)retVal); /* Assert we have an 8 byte boundary */ } else /* size was 0 */ retVal = &NullStruct.nullStr[0]; - DEBUG_ONLY( - /* Record this transaction in debugging history */ - ++smLastMallocIndex; - if (MAXSMTRACE <= smLastMallocIndex) - smLastMallocIndex = 0; - smMallocs[smLastMallocIndex].smAddr = retVal; - smMallocs[smLastMallocIndex].smSize = size; - smMallocs[smLastMallocIndex].smCaller = CALLERID; - smMallocs[smLastMallocIndex].smTn = smTn; - ); +# ifdef DEBUG + /* Record this transaction in debugging history */ + ++smLastMallocIndex; + if (MAXSMTRACE <= smLastMallocIndex) + smLastMallocIndex = 0; + smMallocs[smLastMallocIndex].smAddr = retVal; + smMallocs[smLastMallocIndex].smSize = size; + smMallocs[smLastMallocIndex].smCaller = CALLERID; + smMallocs[smLastMallocIndex].smTn = smTn; +# endif TRACE_MALLOC(retVal, size, smTn); --gtmMallocDepth; - GMR_ONLY( - /* Check on deferred frees */ - if (0 == gtmMallocDepth && deferFreeExists) - processDeferredFrees(); - ); - NON_GMR_ONLY(--fast_lock_count); + --fast_lock_count; DEFERRED_EXIT_HANDLING_CHECK; + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ return retVal; } else /* Storage mgmt has not been initialized */ { + PTHREAD_MUTEX_LOCK_IF_NEEDED(was_holder); /* get thread lock in case threads are in use */ gtmSmInit(); + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ /* Reinvoke gtm_malloc now that we are initialized. Note that this one time (the first * call to malloc), we will not record the proper caller id in the storage header or in * the traceback table. The caller will show up as gtm_malloc(). However, all subsequent @@ -903,6 +798,7 @@ void *gtm_malloc(size_t size) /* Note renamed to gtm_malloc_dbg when included in /* Note, if the below declaration changes, corresponding changes in gtmxc_types.h needs to be done. */ /* Release the free storage at the given address */ +/* #GTM_THREAD_SAFE : The below function (gtm_free) is thread-safe; serialization is ensured with locks */ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_malloc_dbg.c */ { storElem *uStor, *buddyElem; @@ -910,6 +806,7 @@ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_m unsigned char *trailerMarker; int sizeIndex, hdrSize, saveIndex, dqIndex, freedElemCnt; gtm_msize_t saveSize, allocSize; + boolean_t was_holder; # ifndef DEBUG /* If we are not expanding for DEBUG, check now if DEBUG has been turned on. @@ -924,39 +821,18 @@ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_m /* If we are exiting, don't bother with frees. Process destruction can do it *UNLESS* we are handling an * out of memory condition with the proviso that we can't return memory if we are already nested. */ - if (process_exiting && (0 != gtmMallocDepth || error_condition != UNIX_ONLY(ERR_MEMORY) VMS_ONLY(ERR_VMSMEMORY))) + if (process_exiting && (0 != gtmMallocDepth || (ERR_MEMORY != error_condition))) return; - NON_GMR_ONLY(++fast_lock_count); + PTHREAD_MUTEX_LOCK_IF_NEEDED(was_holder); /* get exclusive thread lock in case threads are in use */ + ++fast_lock_count; ++gtmMallocDepth; /* Recursion indicator */ -# ifdef GTM_MALLOC_REENT - /* If we are attempting to do a reentrant free, we will instead put the free on a queue to be released - * at a later time. Ironically, since we cannot be sure of any queues of available blocks, we have to - * malloc a small block to carry this info which we will free with the main storage. - */ - if (1 < gtmMallocDepth) - { - if ((unsigned char *)addr != &NullStruct.nullStr[0]) - { - dqIndex = gtmMallocDepth - 2; /* 0 origin index into defer queues */ - assertpro(MAXDEFERQUEUES > dqIndex); /* Can't run out of queues */ - hdrSize = offsetof(storElem, userStorage); - uStor = (storElem *)((unsigned long)addr - hdrSize); /* Backup ptr to element header */ - uStor->userStorage.deferFreeNext = deferFreeQueues[dqIndex]; - deferFreeQueues[dqIndex] = uStor; - deferFreeExists = TRUE; - INCR_CNTR(deferFreePending); - } - --gtmMallocDepth; - return; - } -# else if (1 < gtmMallocDepth) { --gtmMallocDepth; assert(FALSE); + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_MEMORYRECURSIVE); } -# endif INCR_CNTR(smTn); /* Bump the transaction number */ /* Validate null string not overwritten */ assert(0 == memcmp(&NullStruct.nullHMark[0], markerChar, SIZEOF(NullStruct.nullHMark))); @@ -1039,11 +915,11 @@ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_m INCR_CNTR(elemCombines[sizeIndex]); uStor->queueIndex = sizeIndex; } - DEBUG_ONLY( - /* Backfill entire block being freed so usage of it will cause problems */ - if (GDL_SmBackfill & gtmDebugLevel) - backfill((unsigned char *)uStor + hdrSize, TwoTable[sizeIndex] - hdrSize); - ); +# ifdef DEBUG + /* Backfill entire block being freed so usage of it will cause problems */ + if (GDL_SmBackfill & gtmDebugLevel) + backfill((unsigned char *)uStor + hdrSize, TwoTable[sizeIndex] - hdrSize); +# endif ENQUEUE_STOR_ELEM(free, sizeIndex, uStor); if (MAXINDEX == sizeIndex) { /* Freeing/Coagulating a MAXTWO block. Decrement use counter for this element's block */ @@ -1084,33 +960,29 @@ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_m assert(REAL_MALLOC == sizeIndex); /* Better be a real malloc type block */ INCR_CNTR(freeCnt[MAXINDEX + 1]); /* Count free of malloc */ allocSize = saveSize = uStor->realLen; - DEBUG_ONLY( - /* Backfill entire block being freed so usage of it will cause problems */ - if (GDL_SmBackfill & gtmDebugLevel) - backfill((unsigned char *)uStor, allocSize); - ); +# ifdef DEBUG + /* Backfill entire block being freed so usage of it will cause problems */ + if (GDL_SmBackfill & gtmDebugLevel) + backfill((unsigned char *)uStor, allocSize); +# endif FREE(allocSize, uStor); totalRmalloc -= allocSize; totalAlloc -= allocSize; } } - DEBUG_ONLY( - /* Make trace entry for this free */ - ++smLastFreeIndex; - if (MAXSMTRACE <= smLastFreeIndex) - smLastFreeIndex = 0; - smFrees[smLastFreeIndex].smAddr = addr; - smFrees[smLastFreeIndex].smSize = saveSize; - smFrees[smLastFreeIndex].smCaller = CALLERID; - smFrees[smLastFreeIndex].smTn = smTn; - ); +# ifdef DEBUG + /* Make trace entry for this free */ + ++smLastFreeIndex; + if (MAXSMTRACE <= smLastFreeIndex) + smLastFreeIndex = 0; + smFrees[smLastFreeIndex].smAddr = addr; + smFrees[smLastFreeIndex].smSize = saveSize; + smFrees[smLastFreeIndex].smCaller = CALLERID; + smFrees[smLastFreeIndex].smTn = smTn; +# endif --gtmMallocDepth; - GMR_ONLY( - /* Check on deferred frees */ - if (0 == gtmMallocDepth && deferFreeExists) - processDeferredFrees(); - ); - NON_GMR_ONLY(--fast_lock_count); + --fast_lock_count; + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ # ifndef DEBUG } else { /* If not a debug module and debugging is enabled, reroute call to @@ -1126,10 +998,12 @@ void gtm_free(void *addr) /* Note renamed to gtm_free_dbg when included in gtm_m /* When an out-of-storage type error is encountered, besides releasing our memory reserve, we also * want to release as much unused storage within various GTM queues that we can find. */ +/* #GTM_THREAD_SAFE : The below function (release_unused_storage) is thread-safe because caller ensures serialization with locks */ void release_unused_storage(void) /* Note renamed to release_unused_storage_dbg when included in gtm_malloc_dbg.c */ { mcalloc_hdr *curhdr, *nxthdr; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); /* Release compiler storage if we aren't in the compiling business currently */ if (NULL != mcavailbase && mcavailptr == mcavailbase && mcavail == mcavailptr->size) { /* Buffers are unused and subject to release */ @@ -1147,14 +1021,17 @@ void release_unused_storage(void) /* Note renamed to release_unused_storage_dbg (*cache_table_relobjs)(); /* Release object code in indirect cache */ } -/* Raise ERR_MEMORY or ERR_VMSMEMORY. Separate routine since is called from hashtable logic in place of the +/* Raise ERR_MEMORY. Separate routine since is called from hashtable logic in place of the * previous HTEXPFAIL error message. As such, it checks and properly deals with which flavor is running * (debug or non-debug). */ +/* #GTM_THREAD_SAFE : The below function (raise_gtmmemory_error) is thread-safe because caller ensures serialization with locks */ void raise_gtmmemory_error(void) /* Note renamed to raise_gtmmemory_error_dbg when included in gtm_malloc_dbg.c */ { - void *addr; + void *addr; + boolean_t was_holder; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); # ifndef DEBUG /* If we are not expanding for DEBUG, check now if DEBUG has been turned on. * If it has, we are in the wrong module Jack. This IF is structured so that @@ -1171,13 +1048,12 @@ void raise_gtmmemory_error(void) /* Note renamed to raise_gtmmemory_error_dbg wh { # endif if (NULL != (addr = (void *)outOfMemoryMitigation) /* Note assignment */ - UNIX_ONLY(&& !(ht_rhash_ch == active_ch->ch || jbxm_dump_ch == active_ch->ch || stpgc_ch == active_ch->ch))) + && !(ht_rhash_ch == active_ch->ch || jbxm_dump_ch == active_ch->ch || stpgc_ch == active_ch->ch)) { /* Free our reserve only if not in certain condition handlers (on UNIX) since it is - * going to unwind this error and ignore it. On VMS the error will not be trapped. + * going to unwind this error and ignore it. */ outOfMemoryMitigation = NULL; - UNIX_ONLY(free(addr)); - VMS_ONLY(lib$free_vm(addr)); + free(addr); DEBUG_ONLY(if (0 == outOfMemorySmTn) outOfMemorySmTn = smTn); /* Must decr gtmMallocDepth after release above but before the * call to release_unused_storage() below. @@ -1186,11 +1062,12 @@ void raise_gtmmemory_error(void) /* Note renamed to raise_gtmmemory_error_dbg wh release_unused_storage(); } else --gtmMallocDepth; - UNIX_ONLY(--fast_lock_count); + --fast_lock_count; DEFERRED_EXIT_HANDLING_CHECK; - UNIX_ONLY(rts_error_csa(CSA_ARG(NULL) VARLSTCNT(5) ERR_MEMORY, 2, gtmMallocErrorSize, gtmMallocErrorCallerid, - gtmMallocErrorErrno)); - VMS_ONLY(rts_error_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_VMSMEMORY, 2, gtmMallocErrorSize, gtmMallocErrorCallerid)); + was_holder = TRUE; /* caller (gtm_malloc/gtm_free) got the thread lock so release it before the rts_error */ + PTHREAD_MUTEX_UNLOCK_IF_NEEDED(was_holder); /* release exclusive thread lock if needed */ + rts_error_csa(CSA_ARG(NULL) VARLSTCNT(5) ERR_MEMORY, 2, gtmMallocErrorSize, gtmMallocErrorCallerid, + gtmMallocErrorErrno); # ifndef DEBUG } else /* If not a debug module and debugging is enabled, reroute call to the debugging version. */ @@ -1202,11 +1079,13 @@ void raise_gtmmemory_error(void) /* Note renamed to raise_gtmmemory_error_dbg wh * fit in one of the buddy list queue elems, it is returned unchanged. Otherwise, the size of the buddy list queue * element minus the overhead will be returned as the best fit size. */ +/* #GTM_THREAD_SAFE : The below function (gtm_bestfitsize) is thread-safe because caller ensures serialization with locks */ size_t gtm_bestfitsize(size_t size) { size_t tSize; int hdrSize, sizeIndex; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); # ifndef DEBUG /* If we are not expanding for DEBUG, check now if DEBUG has been turned on. * If it has, we are in the wrong module Jack. This IF is structured so that @@ -1251,12 +1130,14 @@ size_t gtm_bestfitsize(size_t size) * length. Then fill the area as much as possible and finish up potentially with * a few single byte unaligned bytes at the end. */ +/* #GTM_THREAD_SAFE : The below function (backfill) is thread-safe because caller ensures serialization with locks */ void backfill(unsigned char *ptr, gtm_msize_t len) { unsigned char *c; ChunkType *chunkPtr; gtm_msize_t unalgnLen, chunkCnt; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); if (0 != len) { len = MIN(len, MAXBACKFILL); /* Restrict backfill for performance */ @@ -1303,12 +1184,14 @@ void backfill(unsigned char *ptr, gtm_msize_t len) * unaligned single chars first, then aligned native length areas, * then any stragler unaligned chars. */ +/* #GTM_THREAD_SAFE : The below function (backfillChk) is thread-safe because caller ensures serialization with locks */ boolean_t backfillChk(unsigned char *ptr, gtm_msize_t len) { unsigned char *c; ChunkType *chunkPtr; gtm_msize_t unalgnLen, chunkCnt; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); if (0 != len) { len = MIN(len, MAXBACKFILL); /* Restrict backfill check for performance */ @@ -1358,12 +1241,14 @@ boolean_t backfillChk(unsigned char *ptr, gtm_msize_t len) /* ** still under ifdef DEBUG ** */ /* Routine to run the free storage chains to verify that everything is in the correct place */ +/* #GTM_THREAD_SAFE : The below function (verifyFreeStorage) is thread-safe because caller ensures serialization with locks */ void verifyFreeStorage(void) { storElem *eHdr, *uStor; uint4 i; int hdrSize; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); hdrSize = OFFSETOF(storElem, userStorage); /* Looping for each free queue */ for (eHdr = &freeStorElemQs[0], i = 0; i <= MAXINDEX; ++i, ++eHdr) @@ -1386,6 +1271,7 @@ void verifyFreeStorage(void) /* ** still under ifdef DEBUG ** */ /* Routine to run the allocated chains to verify that the markers are all still in place */ +/* #GTM_THREAD_SAFE : The below function (verifyAllocatedStorage) is thread-safe because caller ensures serialization with locks */ void verifyAllocatedStorage(void) { storElem *eHdr, *uStor; @@ -1393,6 +1279,7 @@ void verifyAllocatedStorage(void) uint4 i; int hdrSize; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); hdrSize = OFFSETOF(storElem, userStorage); /* Looping for MAXINDEX+1 will check the real-malloc'd chains too */ for (eHdr = &allocStorElemQs[0], i = 0; i <= (MAXINDEX + 1); ++i, ++eHdr) @@ -1423,10 +1310,12 @@ void verifyAllocatedStorage(void) * time going to stdout and util_out_print goes to stderr. If necessary or desired, these could easily * be changed to use util_out_print instead of FPRINTF. */ +/* #GTM_THREAD_SAFE : The below function (printMallocInfo) is thread-safe because caller ensures serialization with locks */ void printMallocInfo(void) { int i, j; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); if (GDL_SmStats & gtmDebugLevel) { FPRINTF(stderr, "\nMalloc small storage performance:\n"); @@ -1440,11 +1329,6 @@ void printMallocInfo(void) FPRINTF(stderr, "Maximum extents: %d, Current extents: %d, Released extents: %d\n", maxExtents, curExtents, (totalExtents - curExtents)); - GMR_ONLY( - FPRINTF(stderr, - "Total reentrant mallocs: %d, total deferred frees: %d\n", - reentMallocs, deferFreePending); - ) FPRINTF(stderr, "\nQueueSize Mallocs Frees Splits Combines CurCnt MaxCnt CurCnt MaxCnt\n"); FPRINTF(stderr, " Free Free Alloc Alloc\n"); FPRINTF(stderr, "-----------------------------------------------------------------------------------------\n"); @@ -1492,11 +1376,13 @@ void printMallocInfo(void) /* Routine to print storage dump. This is called as part of print_malloc_info but is also potentially separately called from * op_view so is a separate routine. */ +/* #GTM_THREAD_SAFE : The below function (printMallocDump) is thread-safe because caller ensures serialization with locks */ void printMallocDump(void) { storElem *eHdr, *uStor; int i; + assert(IS_PTHREAD_LOCKED_AND_HOLDER); if (GDL_SmDump & gtmDebugLevel) { FPRINTF(stderr, "\nMalloc Storage Dump: gtm_malloc() addr: 0x"gmaAdr"\n", >m_malloc); diff --git a/sr_port/gtm_maxstr.c b/sr_port/gtm_maxstr.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_maxstr.h b/sr_port/gtm_maxstr.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_memcmp.c b/sr_port/gtm_memcmp.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_netdb.h b/sr_port/gtm_netdb.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_newintrinsic.h b/sr_port/gtm_newintrinsic.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_putmsg_list.h b/sr_port/gtm_putmsg_list.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_pwd.h b/sr_port/gtm_pwd.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_rename.h b/sr_port/gtm_rename.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_savetraps.c b/sr_port/gtm_savetraps.c old mode 100644 new mode 100755 diff --git a/sr_port/gtm_savetraps.h b/sr_port/gtm_savetraps.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_select.h b/sr_port/gtm_select.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_socket.h b/sr_port/gtm_socket.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_stat.h b/sr_port/gtm_stat.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_stdlib.h b/sr_port/gtm_stdlib.h old mode 100644 new mode 100755 index 29c87480..0301f5b2 --- a/sr_port/gtm_stdlib.h +++ b/sr_port/gtm_stdlib.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -24,16 +25,19 @@ char *gtm_getenv(char *varname); #define ATOI atoi #define ATOL atol #define ATOF atof + #ifdef UNIX /* If interrupted, this function has previously caused hangs to do a subsequent syslog() invocation from generic_signal_handler(), * so just defer interrupts to be safe. UNIX is a GT.M-specific compiler switch, which we expect to be undefined for any non-GT.M * compilation that might include this file. */ -# define PUTENV(VAR, ARG) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC); \ - VAR = putenv(ARG); \ - ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC); \ +#define PUTENV(VAR, ARG) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + VAR = putenv(ARG); \ + ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ } #else # define PUTENV(VAR, ARG) \ @@ -44,23 +48,34 @@ char *gtm_getenv(char *varname); #define STRTOL strtol #define STRTOLL strtoll #define STRTOUL strtoul -#if INT_MAX < LONG_MAX /* like Tru64 */ +# if INT_MAX < LONG_MAX /* like Tru64 */ # define STRTO64L strtol # define STRTOU64L strtoul -#elif defined(__hpux) +# elif defined(__hpux) # include # define STRTO64L strtoimax # define STRTOU64L strtoumax -#else +# else # define STRTO64L strtoll # define STRTOU64L strtoull -#endif -#define MKSTEMP(template,mkstemp_res) (mkstemp_res = mkstemp(template)) -#if defined(VMS) || defined(STATIC_ANALYSIS) +# endif +#define MKSTEMP(template,mkstemp_res) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_MKSTEMP, prev_intrpt_state); \ + mkstemp_res = mkstemp(template); \ + ENABLE_INTERRUPTS(INTRPT_IN_MKSTEMP, prev_intrpt_state); \ +} +# if defined(VMS) || defined(STATIC_ANALYSIS) # define SYSTEM system -#else +# else # define SYSTEM gtm_system -int gtm_system(const char *cmdline); -#endif + int gtm_system(const char *cmdline); +# endif + +void gtm_image_exit(int status); + +#define EXIT(x) gtm_image_exit(x) #endif diff --git a/sr_port/gtm_string.h b/sr_port/gtm_string.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_strings.h b/sr_port/gtm_strings.h index da433c56..adb21337 100644 --- a/sr_port/gtm_strings.h +++ b/sr_port/gtm_strings.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2009 Fidelity Information Services, Inc * + * Copyright (c) 2009-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -14,7 +15,8 @@ #include -#define STRCASECMP strcasecmp -#define STRNCASECMP strncasecmp +#define STRCASECMP(SOURCE, DEST) strcasecmp((char *)(SOURCE), (char *)(DEST)) +#define STRNCASECMP(SOURCE, DEST, LEN) strncasecmp(SOURCE, DEST, LEN) +#define STRNCASECMP_LIT(SOURCE, LITERAL) strncasecmp(SOURCE, LITERAL, SIZEOF(LITERAL) - 1) /* BYPASSOK */ #endif diff --git a/sr_port/gtm_tempnam.c b/sr_port/gtm_tempnam.c old mode 100644 new mode 100755 index 02de4904..b411d2b4 --- a/sr_port/gtm_tempnam.c +++ b/sr_port/gtm_tempnam.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2009 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -43,12 +44,9 @@ void gtm_tempnam(char *dir, char *prefix, char *fullname) { prefix = def_prefix; len = SIZEOF(def_prefix) - 1; - memcpy(ptr, def_prefix, len); } else - { len = STRLEN(prefix); - memcpy(ptr, prefix, len); - } + memcpy(ptr, prefix, len); ptr += len; SPRINTF(ptr, "_%d.tmp", temp_file_counter++); } diff --git a/sr_port/gtm_tempnam.h b/sr_port/gtm_tempnam.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_threadgbl_defs.h b/sr_port/gtm_threadgbl_defs.h index a038a22f..7e0c782c 100644 --- a/sr_port/gtm_threadgbl_defs.h +++ b/sr_port/gtm_threadgbl_defs.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2010-2015 Fidelity National Information * + * Copyright (c) 2010-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -59,9 +59,10 @@ THREADGBLDEF(ind_result, mval *) /* pointer to indirection return location THREADGBLDEF(ind_source, mval *) /* pointer to indirection source location */ THREADGBLDEF(indirection_mval, mval) /* used for parsing subscripted indirection */ THREADGBLDEF(last_source_column, int) /* parser tracker */ -THREADGBLDEF(max_advancewindow_line, int4) /* the maximum source line length */ +THREADGBLDEF(lexical_ptr, char *) /* parser character position */ THREADGBLDEF(linkage_first, struct linkage_entry *) /* Start of linkage (extern) list this routine */ THREADGBLDEF(linkage_last, struct linkage_entry *) /* Last added entry */ +THREADGBLDEF(max_advancewindow_line, int4) /* the maximum source line length */ #ifdef USHBIN_SUPPORTED THREADGBLDEF(objhash_state, hash128_state_t) /* Seed value - progressive hash of object file */ #endif @@ -144,29 +145,28 @@ THREADGBLDEF(gv_sparekey_mval, mval) /* gv_xform_key working memory */ THREADGBLDEF(gv_sparekey_size, int4) /* part gv_xform_key working memory mechanism */ THREADGBLDEF(gv_tporigkey_ptr, gv_orig_key_array *) /* copy of gv_currkey at outermost TSTART */ THREADGBLDEF(gv_tporig_extnam_str, mstr) /* copy of extnam_str at outermost TSTART */ +THREADGBLDEF(in_gvcst_bmp_mark_free, boolean_t) /* May need to skip online rollback cleanup or + * gvcst_redo_root_search on a restart */ THREADGBLDEF(in_gvcst_redo_root_search, boolean_t) /* TRUE if gvcst_redo_root_search is in C-stack */ THREADGBLDEF(in_op_gvget, boolean_t) /* TRUE if op_gvget() is a C-stack call ancestor */ THREADGBLDEF(issue_DBROLLEDBACK_anyways, boolean_t) /* currently set by MUPIP LOAD */ THREADGBLDEF(last_fnquery_return_subcnt, int) /* count subscript in last_fnquery_return_sub */ THREADGBLDEF(last_fnquery_return_varname, mval) /* returned varname of last $QUERY() */ -#ifdef VMS -THREADGBLDEF(new_dbinit_ipc, int4) /* indicates whether shared memory/semaphore is - * created by db_init (also used by dbinit_ch) */ -#endif +THREADGBLDEF(nontprestart_count, uint4) /* non-tp restart counter */ +THREADGBLDEF(nontprestart_log_first, int4) /* # of non-tp restarts logged unconditionally */ +THREADGBLDEF(nontprestart_log_delta, int4) /* defines every n-th restart to be logged for + * non-tp */ +THREADGBLDEF(block_now_locked, cache_rec_ptr_t) /* db_csh_getn sets for secshr_sb_clnup exit */ THREADGBLDEF(ok_to_call_wcs_recover, boolean_t) /* Set to TRUE before a few wcs_recover callers. * Any call to wcs_recover in the final retry * assert to prevent cache recovery while in a * transaction and confuse things enough to cause * further restarts (which is out-of-design while * in the final retry). */ -THREADGBLDEF(in_gvcst_bmp_mark_free, boolean_t) /* May need to skip online rollback cleanup or - * gvcst_redo_root_search on a restart */ THREADGBLDEF(prev_gv_target, gv_namehead *) /* saves the last gv_target for debugging */ THREADGBLDEF(ready2signal_gvundef, boolean_t) /* TRUE if GET operation about to signal GVUNDEF */ -#ifdef UNIX THREADGBLDEF(redo_rootsrch_ctxt, redo_root_search_context) /* context to be saved and restored during * gvcst_redo_root_search */ -#endif THREADGBLDEF(semwait2long, volatile boolean_t) /* Waited too long for a semaphore */ THREADGBLDEF(skip_file_corrupt_check, boolean_t) /* skip file_corrupt check in grab_crit */ THREADGBLDEF(tpnotacidtime, int4) /* limit for long non-ACID ops in transactions */ @@ -174,8 +174,8 @@ THREADGBLDEF(tp_restart_count, uint4) /* tp_restart counter */ THREADGBLDEF(tp_restart_dont_counts, int4) /* tp_restart count adjustment; NOTE: DEBUG only */ THREADGBLDEF(tp_restart_entryref, mval) /* tp_restart position for reporting */ THREADGBLDEF(tp_restart_failhist_indx, int4) /* tp_restart dbg restart history index */ -THREADGBLDEF(tprestart_syslog_delta, int4) /* defines every n-th restart to be logged */ -THREADGBLDEF(tprestart_syslog_limit, int4) /* # of TP restarts logged unconditionally */ +THREADGBLDEF(tprestart_syslog_delta, int4) /* defines every n-th restart to be logged for tp */ +THREADGBLDEF(tprestart_syslog_first, int4) /* # of TP restarts logged unconditionally */ THREADGBLDEF(transform, boolean_t) /* flag collation transform eligible */ THREADGBLDEF(wcs_recover_done, boolean_t) /* TRUE if wcs_recover was ever invoked in this * process. */ @@ -190,8 +190,7 @@ THREADGBLDEF(local_coll_nums_as_strings, boolean_t) /* flag controlling whethe * evaluate to numbers are treated like numbers * (collating before strings) or like strings in * local collations */ -THREADGBLDEF(lv_null_subs, int) /* UNIX: set in gtm_env_init_sp(), - * VMS: set in gtm$startup() */ +THREADGBLDEF(lv_null_subs, int) /* set in gtm_env_init_sp() */ THREADGBLDEF(max_lcl_coll_xform_bufsiz, int) /* max size of local collation buffer,which extends * from 32K each time the buffer overflows */ @@ -216,17 +215,13 @@ THREADGBLDEF(dollar_zclose, int) /* ISV (set to close status for PIPE devic THREADGBLDEF(dollar_zroutines, mstr) /* routine search list */ THREADGBLDEF(error_on_jnl_file_lost, unsigned int) /* controls error handling done by jnl_file_lost. * 0 (default) : Turn off journaling and continue. - * 1 : Keep journaling on, throw rts_error. - * VMS does not supports this and requires it to - * be 0. */ -#ifdef UNIX + * 1 : Keep journaling on, throw rts_error */ THREADGBLDEF(fnzsearch_lv_vars, lv_val *) /* op_fnzsearch lv tree anchor */ THREADGBLDEF(fnzsearch_sub_mval, mval) /* op_fnzsearch subscript constuctor */ THREADGBLDEF(fnzsearch_nullsubs_sav, int) /* op_fnzsearch temp for null subs control */ THREADGBLDEF(fnzsearch_globbuf_ptr, glob_t *) /* op_fnzsearch temp for pointing to glob results */ -#endif THREADGBLDEF(glvn_pool_ptr, glvn_pool *) /* Pointer to the glvn pool */ -#if defined(UNIX) && defined(GTMDBGFLAGS_ENABLED) +#if defined(GTMDBGFLAGS_ENABLED) THREADGBLDEF(gtmdbgflags, int) THREADGBLDEF(gtmdbgflags_freq, int) THREADGBLDEF(gtmdbgflags_freq_cntr, int) @@ -259,10 +254,6 @@ THREADGBLDEF(lab_proxy, lab_tabent_proxy) /* Placeholder storing lab_ln_ptr * pointer and has_parms value, so they are * contiguous in memory */ #endif -#ifdef VMS -THREADGBLDEF(lbl_tbl_entry_index, int) /* Index of currently compiled label table entry */ -THREADGBLAR1DEF(login_time, int4, 2) /* */ -#endif THREADGBLDEF(mprof_alloc_reclaim, boolean_t) /* Flag indicating whether the temporarily allocated * memory should be reclaimed */ THREADGBLDEF(mprof_chunk_avail_size, int) /* Number of mprof stack frames that can fit in @@ -287,18 +278,14 @@ THREADGBLDEF(relinkctl_shm_min_index, int) /* Minimum size of rtnobj shared */ THREADGBLDEF(gtm_autorelink_keeprtn, boolean_t) /* do not let go of objects in rtnobj shm */ #endif -#ifdef UNIX THREADGBLDEF(open_shlib_root, open_shlib *) /* Anchor for open shared library list */ -#endif THREADGBLDEF(parm_pool_ptr, parm_pool *) /* Pointer to the parameter pool */ THREADGBLDEF(parms_cnt, unsigned int) /* Parameters count */ -#ifdef UNIX THREADGBLAR1DEF(zpeek_regname, char, NAME_ENTRY_SZ) /* Last $ZPEEK() region specified */ THREADGBLDEF(zpeek_regname_len, int) /* Length of zpeekop_regname */ THREADGBLDEF(zpeek_reg_ptr, gd_region *) /* Resolved pointer for zpeekop_regname */ THREADGBLDEF(pipefifo_interrupt, int) /* count of number of times a pipe or fifo device is * interrupted */ -#endif THREADGBLDEF(prof_fp, mprof_stack_frame *) /* Stack frame that mprof currently operates on */ THREADGBLDEF(relink_allowed, int) /* Non-zero if recursive relink permitted */ #ifdef AUTORELINK_SUPPORTED @@ -314,18 +301,18 @@ THREADGBLDEF(view_ydirt_str_len, int4) /* Part of op_view working storage fo THREADGBLDEF(zdate_form, int4) /* Control for default $zdate() format */ THREADGBLAR1DEF(zintcmd_active, zintcmd_active_info, ZINTCMD_LAST) /* Interrupted timed commands */ THREADGBLDEF(zro_root, zro_ent *) /* Anchor for zroutines structure entry array */ -#ifdef UNIX THREADGBLDEF(zsearch_var, lv_val *) /* UNIX $zsearch() lookup variable */ -#endif THREADGBLDEF(poll_fds_buffer, char *) /* Buffer for poll() argument */ THREADGBLDEF(poll_fds_buffer_size, size_t) /* Current allocated size of poll_fds_buffer */ THREADGBLDEF(socket_handle_counter, int) /* Counter for generated socket handles */ /* Larger structures and char strings */ -THREADGBLAR1DEF(director_string, char, SIZEOF(mident_fixed)) /* Buffer for director_ident */ +THREADGBLAR1DEF(director_string, char, SIZEOF(mident_fixed)*2) /* Buffer for director_ident */ THREADGBLDEF(fnpca, fnpc_area) /* $Piece cache structure area */ THREADGBLAR1DEF(for_stack, oprtype *, MAX_FOR_STACK) /* Stacks FOR scope complete (compilation) addrs */ THREADGBLAR1DEF(for_temps, boolean_t, MAX_FOR_STACK) /* Stacked flags of FOR control value temps */ +THREADGBLDEF(gtm_utfcgr_strings, int) /* Strings we can keep UTF8 parsing cache for */ +THREADGBLDEF(gtm_utfcgr_string_groups, int) /* Groups of chars we can keep for each string */ THREADGBLAR1DEF(last_fnquery_return_sub, mval, MAX_LVSUBSCRIPTS)/* Returned subscripts of last $QUERY() */ THREADGBLDEF(lcl_coll_xform_buff, char *) /* This buffer is for local collation * transformations, which must not nest - i.e. @@ -333,22 +320,21 @@ THREADGBLDEF(lcl_coll_xform_buff, char *) /* This buffer is for local collat * or itself. This kind of nesting would cause * overwriting of the buffer */ THREADGBLDEF(protmem_ba, mstr) /* Protected buffer */ -#ifdef UNIX THREADGBLAR1DEF(parm_ary, char *, MAX_PARMS) /* Parameter strings buffer */ THREADGBLAR1DEF(parm_ary_len, int, MAX_PARMS) /* Array element allocation length */ THREADGBLAR1DEF(parm_str_len, int, MAX_PARMS) /* Parameter strings lengths */ -#endif THREADGBLAR1DEF(prombuf, char, (MAX_MIDENT_LEN + 1)) /* The prompt buffer size (32) would allow at * least 8 Unicode characters, but since most * commonly used Unicode characters only occupy up * to 3 bytes, the buffer would at least * accommodate 10 Unicode characters in a prompt */ -#ifdef VMS -THREADGBLDEF(rt_name_tbl, hash_table_mname) /* Routine hash table for finding $TEXT() info */ -#endif +THREADGBLAR1DEF(tmp_object_file_name, char, GTM_PATH_MAX) /* Hold temporary object name across routines */ THREADGBLAR1DEF(tp_restart_failhist_arry, char, FAIL_HIST_ARRAY_SIZE) /* tp_restart dbg storage of restart history */ +#ifdef UNICODE_SUPPORTED +THREADGBLDEF(utfcgra, utfcgr_area) /* Lookaside cache for UTF8 parsing */ +#endif +THREADGBLDEF(utfcgr_string_lookmax, int) /* How many times to look for unreferenced slot */ THREADGBLAR1DEF(window_string, char, SIZEOF(mident_fixed)) /* Buffer for window_ident */ -THREADGBLAR1DEF(tmp_object_file_name, char, GTM_PATH_MAX) /* Hold temporary object name across routines */ /* Utility I/O */ THREADGBLDEF(last_va_list_ptr, va_list) /* Last variable-length argument list used for util @@ -359,18 +345,14 @@ THREADGBLDEF(util_outptr, char *) /* Pointer within util output buffer */ /* GTM Call-in related globals */ -#ifdef UNIX THREADGBLDEF(callin_hashtab, hash_table_str *) /* Callin hash table */ THREADGBLDEF(ci_table, callin_entry_list *) /* Callin table in the form of a linked list */ -#endif THREADGBLDEF(extcall_package_root, struct extcall_package_list *) /* External call table package list */ -#ifdef UNIX THREADGBLDEF(gtmci_nested_level, unsigned int) /* Current nested depth of callin environments */ THREADGBLDEF(temp_fgncal_stack, unsigned char *) /* Override for fgncal_stack when non-NULL */ THREADGBLDEF(midchild_send_locals, boolean_t) /* The middle child will send the locals to the * grandchild using ojmidchild_send_var() if TRUE. */ -#endif THREADGBLDEF(want_empty_gvts, boolean_t) /* set to TRUE by MUPIP REORG when it is selecting * globals to be reorged. Need to be able to select * killed globals for effective truncate. */ @@ -452,6 +434,9 @@ THREADGBLDEF(continue_proc_cnt, int) /* Used by whitebox secshr test to cou THREADGBLDEF(gtm_test_fake_enospc, boolean_t) /* DEBUG-only option to enable/disable anticipatory * freeze fake ENOSPC testing */ +THREADGBLDEF(gtm_test_jnlpool_sync, uint4) /* DEBUG-only option to force the journal pool + * accounting out of sync every n transactions. + */ THREADGBLDEF(gtm_usesecshr, boolean_t) /* Bypass easy methods of dealing with IPCs, files, * wakeups, etc and always use gtmsecshr (testing). */ diff --git a/sr_port/gtm_threadgbl_deftypes.c b/sr_port/gtm_threadgbl_deftypes.c index 279f2dd2..cd58129a 100644 --- a/sr_port/gtm_threadgbl_deftypes.c +++ b/sr_port/gtm_threadgbl_deftypes.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2010, 2015 Fidelity National Information * + * Copyright (c) 2010-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -20,21 +20,11 @@ #include "gtm_socket.h" #include "gtm_unistd.h" #include "gtm_limits.h" - -#include +#include "gtm_signal.h" #include -#ifdef UNIX -# include "gtm_un.h" -#endif -#ifdef VMS -# include /* Required for gtmsource.h */ -# include -# include -# include "desblk.h" -#endif -#ifdef UNIX -# include -#endif +#include "gtm_un.h" +#include + #include "cache.h" #include "hashtab_addr.h" #include "hashtab_int4.h" @@ -76,6 +66,7 @@ #include "zwrite.h" #include "zbreak.h" #include "fnpc.h" +#include "utfcgr.h" #include "mmseg.h" #ifndef VMS # include "gtmsiginfo.h" @@ -135,11 +126,9 @@ # include "gtm_utf8.h" #endif -#ifdef GTM_CRYPT -# include "gtmcrypt.h" -# include "gdsblk.h" -# include "muextr.h" -#endif +#include "gtmcrypt.h" +#include "gdsblk.h" +#include "muextr.h" #ifdef GTM_TRIGGER # include "gv_trigger.h" diff --git a/sr_port/gtm_threadgbl_init.c b/sr_port/gtm_threadgbl_init.c index ca68f316..2fc3fa59 100644 --- a/sr_port/gtm_threadgbl_init.c +++ b/sr_port/gtm_threadgbl_init.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2010, 2015 Fidelity National Information * + * Copyright (c) 2010-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -31,8 +31,8 @@ #include "gtm_unistd.h" #include "gtm_limits.h" #include "gtm_un.h" +#include "gtm_signal.h" -#include #include #ifdef VMS # include /* Required for gtmsource.h */ @@ -44,6 +44,7 @@ # include #endif #include "cache.h" +#include "gtm_multi_thread.h" #include "hashtab_addr.h" #include "hashtab_int4.h" #include "hashtab_int8.h" @@ -141,13 +142,12 @@ #ifdef UNICODE_SUPPORTED # include "gtm_icu_api.h" # include "gtm_utf8.h" +# include "utfcgr.h" #endif -#ifdef GTM_CRYPT -# include "gtmcrypt.h" -# include "gdsblk.h" -# include "muextr.h" -#endif +#include "gtmcrypt.h" +#include "gdsblk.h" +#include "muextr.h" #ifdef GTM_TRIGGER # include "gv_trigger.h" @@ -201,18 +201,18 @@ void gtm_threadgbl_init(void) * the best we can. */ FPRINTF(stderr, "GTM-F-GTMASSERT gtm_threadgbl_true_t and gtm_threadgbl_t are different sizes\n"); - exit(ERR_GTMASSERT); + EXIT(ERR_GTMASSERT); } if (NULL != gtm_threadgbl) { /* has already been initialized - don't re-init */ FPRINTF(stderr, "GTM-F-GTMASSERT gtm_threadgbl is already initialized\n"); - exit(ERR_GTMASSERT); + EXIT(ERR_GTMASSERT); } gtm_threadgbl = lcl_gtm_threadgbl = malloc(size_gtm_threadgbl_struct); if (NULL == gtm_threadgbl) { /* Storage was not allocated for some reason - no error handling yet still */ perror("GTM-F-MEMORY Unable to allocate startup thread structure"); - exit(UNIX_ONLY(ERR_MEMORY) VMS_ONLY(ERR_VMSMEMORY)); + EXIT(UNIX_ONLY(ERR_MEMORY) VMS_ONLY(ERR_VMSMEMORY)); } memset(gtm_threadgbl, 0, size_gtm_threadgbl_struct); gtm_threadgbl_true = (gtm_threadgbl_true_t *)gtm_threadgbl; @@ -228,6 +228,7 @@ void gtm_threadgbl_init(void) MEMCPY_LIT(TADR(prombuf), DEFAULT_PROMPT); (TREF(replgbl)).jnl_release_timeout = DEFAULT_JNL_RELEASE_TIMEOUT; (TREF(window_ident)).addr = TADR(window_string); + ASSERT_SAFE_TO_UPDATE_THREAD_GBLS; TREF(util_outbuff_ptr) = TADR(util_outbuff); /* Point util_outbuff_ptr to the beginning of util_outbuff at first. */ TREF(util_outptr) = TREF(util_outbuff_ptr); TREF(max_advancewindow_line) = MAX_SRCLINE; diff --git a/sr_port/gtm_time.h b/sr_port/gtm_time.h old mode 100644 new mode 100755 index b5294054..d7fe4c16 --- a/sr_port/gtm_time.h +++ b/sr_port/gtm_time.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,91 +16,91 @@ #include -#define STRFTIME(dest, maxsize, format, timeptr, res) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ - res = strftime(dest, maxsize, format, timeptr); \ - ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ +/* CTIME format also used by asctime: Fri Oct 23 13:58:14 2015 */ +#define CTIME_STRFMT "%a %b %d %H:%M:%S %Y\n" + +#define STRFTIME(dest, maxsize, format, timeptr, res) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + res = strftime(dest, maxsize, format, timeptr); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ } /* To use GET_CUR_TIME macro these definitions are required - * now_t now; char *time_ptr; char time_str[CTIME_BEFORE_NL + 2]; + * now_t now; char time_str[CTIME_BEFORE_NL + 2]; */ -#if defined(VMS) - -typedef struct { - unsigned int buff1; - unsigned int buff2; -} now_t; - -#define CTIME_BEFORE_NL 20 - -#define GET_CUR_TIME \ -{ \ - uint4 time_status; \ - $DESCRIPTOR(atimenow, time_str); \ - \ - time_status = sys$asctim(0, &atimenow, 0, 0); \ - if (0 != (time_status & 1)) \ - { \ - time_str[CTIME_BEFORE_NL] = '\n'; \ - time_str[CTIME_BEFORE_NL + 1] = '\0'; \ - time_ptr = time_str; \ - } else \ - time_ptr = "* sys$asctim failed*\n"; /* keep string len same as CTIME_BEFORE_NL */ \ -} - -#elif defined(UNIX) - typedef time_t now_t; #define CTIME_BEFORE_NL 24 -#define GET_CUR_TIME \ -{ \ - if ((time_t)-1 == (now = time(NULL))) \ - time_ptr = "****** time failed *****\n"; /* keep string len same as CTIME_BEFORE_NL */ \ - else \ - { \ - GTM_CTIME(time_ptr, &now); \ - if (NULL == time_ptr) \ - time_ptr = "***** ctime failed *****\n"; /* keep string len same as CTIME_BEFORE_NL */ \ - else \ - { \ - memcpy(time_str, time_ptr, CTIME_BEFORE_NL + 2); \ - time_ptr = time_str; \ - } \ - } \ +/* #GTM_THREAD_SAFE : The below macro (GET_CUR_TIME) is thread-safe */ +#define GET_CUR_TIME(time_str) \ +{ \ + char *time_ptr = &time_str[0]; \ + now_t now; \ + intrpt_state_t prev_intrpt_state; \ + \ + if ((time_t)-1 == (now = time(NULL))) \ + MEMCPY_LIT(time_ptr, "****** time failed *****\n"); /* keep string len same as CTIME_BEFORE_NL */ \ + else \ + { \ + /* Do not use GTM_CTIME as it uses "ctime" which is not thread-safe. Use "ctime_r" instead which is thread-safe \ + * We still need to disable interrupts (from external signals) to avoid hangs (e.g. SIG-15 taking us to \ + * generic_signal_handler -> send_msg_csa -> syslog which in turn could deadlock due to an in-progress \ + * "ctime_r" call. Note that the DEFER_INTERRUPTS and ENABLE_INTERRUPTS macro are a no-op in case \ + * "multi_thread_in_use" is TRUE but external signals are anyways disabled by "gtm_multi_thread" in that case. \ + */ \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + time_ptr = ctime_r(&now, time_ptr); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + if (NULL == time_ptr) \ + { \ + time_ptr = &time_str[0]; \ + MEMCPY_LIT(time_ptr, "***** ctime failed *****\n"); /* keep string len same as CTIME_BEFORE_NL */ \ + } \ + /* else time_str[] already contains the filled in time */ \ + } \ } -#define GTM_MKTIME(VAR, TIME) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ - VAR = mktime(TIME); \ - ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ +#define GTM_MKTIME(VAR, TIME) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + VAR = mktime(TIME); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ } -#define GTM_GMTIME(VAR, TIME) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ - VAR = gmtime(TIME); \ - ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ +#define GTM_GMTIME(VAR, TIME) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + VAR = gmtime(TIME); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ } -#endif /* UNIX, VMS */ - -#define GTM_LOCALTIME(VAR, TIME) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ - VAR = localtime(TIME); \ - ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ +#define GTM_LOCALTIME(VAR, TIME) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + VAR = localtime(TIME); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ } /* CTIME collides with linux define in termios */ -#define GTM_CTIME(VAR, TIME) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ - VAR = ctime(TIME); \ - ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION); \ +#define GTM_CTIME(VAR, TIME) \ +{ \ + GBLREF boolean_t multi_thread_in_use; \ + intrpt_state_t prev_intrpt_state; \ + \ + /* "ctime" is not thread-safe. Make sure threads are not in use by callers of GTM_CTIME */ \ + GTM_PTHREAD_ONLY(assert(!multi_thread_in_use)); \ + DEFER_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ + VAR = ctime(TIME); \ + ENABLE_INTERRUPTS(INTRPT_IN_X_TIME_FUNCTION, prev_intrpt_state); \ } #endif diff --git a/sr_port/gtm_unistd.h b/sr_port/gtm_unistd.h old mode 100644 new mode 100755 index 6240cf19..de19a280 --- a/sr_port/gtm_unistd.h +++ b/sr_port/gtm_unistd.h @@ -17,9 +17,21 @@ #include #define CHDIR chdir - #define CHOWN chown +/* Usual convention is to uppercase the system function in the GT.M macro wrapper. But in this case, we want to macro-wrap + * the _exit() function. _EXIT is ruled out because names starting with _ are reserved for system functions. + * Hence naming it UNDERSCORE_EXIT instead. + */ +#define UNDERSCORE_EXIT(x) \ +MBSTART { \ + char *rname; \ + \ + /* Currently we dont know of any caller of UNDERSCORE_EXIT inside threaded code. So add below assert */ \ + assert(!INSIDE_THREADED_CODE(rname)); /* Below code is not thread safe as it does exit() */ \ + _exit(x); \ +} MBEND + #define INVALID_UID (uid_t)-1 #define INVALID_GID (gid_t)-1 @@ -48,11 +60,13 @@ GBLREF gid_t group_id, effective_group_id; #define GTM_MAX_DIR_LEN (PATH_MAX + 1) /* DIRECTORY + terminating '\0' */ -#define GETCWD(buffer, size, getcwd_res) \ -{ \ - DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC); \ - getcwd_res = getcwd(buffer, size); \ - ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC); \ +#define GETCWD(buffer, size, getcwd_res) \ +{ \ + intrpt_state_t prev_intrpt_state; \ + \ + DEFER_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ + getcwd_res = getcwd(buffer, size); \ + ENABLE_INTERRUPTS(INTRPT_IN_FUNC_WITH_MALLOC, prev_intrpt_state); \ } #endif diff --git a/sr_port/gtm_utsname.h b/sr_port/gtm_utsname.h old mode 100644 new mode 100755 diff --git a/sr_port/gtm_wake.h b/sr_port/gtm_wake.h old mode 100644 new mode 100755 diff --git a/sr_port/gtmctype.h b/sr_port/gtmctype.h old mode 100644 new mode 100755 diff --git a/sr_port/gtmdbglvl.h b/sr_port/gtmdbglvl.h old mode 100644 new mode 100755 index cc978151..8562e72d --- a/sr_port/gtmdbglvl.h +++ b/sr_port/gtmdbglvl.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -33,7 +34,7 @@ #define GDL_DumpOnStackOFlow 0x00000400 /* (1024) When get a stack overflow, generate a core */ #define GDL_ZSHOWDumpOnSignal 0x00000800 /* (2048) Don't supress GTM_FATAL file creation when get a signal */ #define GDL_PrintIndCacheStats 0x00001000 /* (4096) Print indirect cacheing stats */ -#define GDL_PrintPieceStats 0x00002000 /* (8192) Print stats on $Piece cacheing (debug only) */ +#define GDL_PrintCacheStats 0x00002000 /* (8192) Print stats on $Piece and UTF8 cacheing (debug only) */ #define GDL_DebugCompiler 0x00004000 /* (16384) Turn on compiler debugging */ #define GDL_SmDump 0x00008000 /* (32768) Do full blown storage dump -- only useful in debug mode */ #define GDL_PrintEntryPoints 0x00010000 /* (65536) Print address of entry points when they are loaded/resolved */ @@ -41,4 +42,5 @@ #define GDL_SmInitAlloc 0x00040000 /* (262144) Initialize all storage allocated or deallocated with 0xdeadbeef */ #define GDL_PrintPipeIntStats 0x00080000 /* (524288) Print Pipe/Fifo(rm) interrupt stats on exit */ #define GDL_IgnoreAvailSpace 0x00100000 /* (1048576) Allow gdsfilext/mu_cre_file (UNIX) to ignore available space */ +#define GDL_PrintPMAPStats 0x00200000 /* (2097152) Print process memory map on exit (using pmap or procmap utility) */ #endif diff --git a/sr_port/gtmimagename.h b/sr_port/gtmimagename.h old mode 100644 new mode 100755 diff --git a/sr_port/gtmimagetable.h b/sr_port/gtmimagetable.h old mode 100644 new mode 100755 diff --git a/sr_port/gtmmsg.h b/sr_port/gtmmsg.h old mode 100644 new mode 100755 index d76ee3b9..cafcf245 --- a/sr_port/gtmmsg.h +++ b/sr_port/gtmmsg.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -23,6 +24,13 @@ void gtm_putmsg_csa(void *, int argcnt, ...); /* Use CSA_ARG(CSA) for portabili void gtm_putmsg_noflush(int argcnt, ...); void gtm_putmsg_noflush_csa(void *, int argcnt, ...); +GBLREF boolean_t multi_thread_in_use; /* TRUE => threads are in use. FALSE => not in use */ + +/* If threads are in use, then do not use "gv_cur_region" as the thread could be operating on a region completely different + * from the process-wide "gv_cur_region" variable. Assume a safe value of NULL as the csa. + */ +#define PTHREAD_CSA_FROM_GV_CUR_REGION ((CUSTOM_ERRORS_LOADED && !multi_thread_in_use) ? REG2CSA(gv_cur_region) : NULL) + # define GET_MSG_IDX(MSG_ID, CTL, IDX) \ { \ assert(NULL != CTL); \ diff --git a/sr_port/gtmrecv_ch.c b/sr_port/gtmrecv_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_changelog.c b/sr_port/gtmrecv_changelog.c old mode 100644 new mode 100755 index e225d2bc..86e36d10 --- a/sr_port/gtmrecv_changelog.c +++ b/sr_port/gtmrecv_changelog.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc.* + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -69,12 +70,13 @@ int gtmrecv_changelog(void) { #ifdef UNIX /*check if the new log file is writable*/ - OPENFILE3(gtmrecv_options.log_file, + OPENFILE3_CLOEXEC(gtmrecv_options.log_file, O_RDWR | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH, log_fd); - if (log_fd < 0) { + if (log_fd < 0) + { save_errno = ERRNO; err_code = STRERROR(save_errno); - gtm_putmsg(VARLSTCNT(8) ERR_REPLLOGOPN, 6, + gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(8) ERR_REPLLOGOPN, 6, LEN_AND_STR(gtmrecv_options.log_file), LEN_AND_STR(err_code), LEN_AND_STR(NULL_DEVICE)); diff --git a/sr_port/gtmrecv_checkhealth.c b/sr_port/gtmrecv_checkhealth.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_comm_init.c b/sr_port/gtmrecv_comm_init.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_end_helpers.c b/sr_port/gtmrecv_end_helpers.c old mode 100644 new mode 100755 index 80364b3f..b22cd873 --- a/sr_port/gtmrecv_end_helpers.c +++ b/sr_port/gtmrecv_end_helpers.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005 Fidelity Information Services, Inc. * + * Copyright (c) 2005-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -53,7 +54,10 @@ int gtmrecv_end_helpers(boolean_t is_rcvr_srvr) upd_helper_ctl->reap_helpers = HELPER_REAP_WAIT; while (HELPER_REAP_NONE != upd_helper_ctl->reap_helpers && SRV_ALIVE == is_recv_srv_alive()) SHORT_SLEEP(GTMRECV_WAIT_FOR_UPD_SHUTDOWN); - upd_helper_ctl->reap_helpers = HELPER_REAP_NONE; + if (HELPER_REAP_WAIT == upd_helper_ctl->reap_helpers) /* No receiver to clean things up for us */ + gtmrecv_reap_helpers(TRUE); /* waitpid will fail, but is_proc_alive() check will work */ + else + upd_helper_ctl->reap_helpers = HELPER_REAP_NONE; } return NORMAL_SHUTDOWN; } diff --git a/sr_port/gtmrecv_exit.c b/sr_port/gtmrecv_exit.c old mode 100644 new mode 100755 index 61b4c9ea..aee25c9c --- a/sr_port/gtmrecv_exit.c +++ b/sr_port/gtmrecv_exit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -11,12 +12,7 @@ #include "mdef.h" -#include "gtm_stdlib.h" /* for exit() */ - -#ifdef VMS -#include -#include -#endif +#include "gtm_stdlib.h" /* for EXIT() */ #include "gdsroot.h" #include "gdsblk.h" @@ -33,10 +29,5 @@ void gtmrecv_exit(int exit_status) { - error_def(ERR_REPLEXITERR); -#ifdef VMS - sys$exit((0 == exit_status) ? SS$_NORMAL : ERR_REPLEXITERR); -#else - exit(exit_status); -#endif + EXIT(exit_status); } diff --git a/sr_port/gtmrecv_get_opt.c b/sr_port/gtmrecv_get_opt.c old mode 100644 new mode 100755 index 8f8ec1f2..a1c775c7 --- a/sr_port/gtmrecv_get_opt.c +++ b/sr_port/gtmrecv_get_opt.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc.* + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -17,9 +18,6 @@ #include "gtm_ctype.h" #include "gtm_inet.h" #include -#ifdef VMS -#include /* Required for gtmrecv.h */ -#endif #include "gdsroot.h" #include "gdsblk.h" @@ -33,9 +31,7 @@ #include "gtm_stdio.h" #include "util.h" #include "repl_log.h" -#ifdef UNIX #include "gtm_zlib.h" -#endif #ifdef GTM_TLS #include "gtm_repl.h" #endif @@ -44,16 +40,12 @@ GBLREF gtmrecv_options_t gtmrecv_options; int gtmrecv_get_opt(void) { - - boolean_t log, log_interval_specified, plaintext_fallback; - unsigned short log_file_len, filter_cmd_len, instfilename_len, instname_len, tlsid_len; - boolean_t buffsize_status; - boolean_t filter; - int status; - unsigned short statslog_val_len; + boolean_t autorollback, cmplvl_status, filter, log, log_interval_specified, plaintext_fallback; char statslog_val[4]; /* "ON" or "OFF" */ + gtm_int64_t buffsize; + int status; uint4 n_readers, n_helpers; - boolean_t cmplvl_status, autorollback; + unsigned short filter_cmd_len, instfilename_len, instname_len, log_file_len, statslog_val_len, tlsid_len; gtmrecv_options.start = (CLI_PRESENT == cli_present("START")); gtmrecv_options.shut_down = (CLI_PRESENT == cli_present("SHUTDOWN")); @@ -63,11 +55,9 @@ int gtmrecv_get_opt(void) gtmrecv_options.changelog = (CLI_PRESENT == cli_present("CHANGELOG")); gtmrecv_options.updateonly = (CLI_PRESENT == cli_present("UPDATEONLY")); gtmrecv_options.updateresync = (CLI_PRESENT == cli_present("UPDATERESYNC")); -# ifdef UNIX gtmrecv_options.reuse_specified = (CLI_PRESENT == cli_present("REUSE")); gtmrecv_options.resume_specified = (CLI_PRESENT == cli_present("RESUME")); gtmrecv_options.initialize_specified = (CLI_PRESENT == cli_present("INITIALIZE")); - /* -UPDATERESYNC= and optional -REUSE= is supported only in Unix */ if (gtmrecv_options.updateresync) { instfilename_len = SIZEOF(gtmrecv_options.updresync_instfilename) - 1; /* keep 1 byte for trailing NULL */ @@ -111,7 +101,6 @@ int gtmrecv_get_opt(void) } } gtmrecv_options.noresync = (CLI_PRESENT == cli_present("NORESYNC")); -# endif gtmrecv_options.helpers = (CLI_PRESENT == cli_present("HELPERS")); gtmrecv_options.listen_port = 0; /* invalid port; indicates listenport not specified */ if (gtmrecv_options.start && CLI_PRESENT == cli_present("LISTENPORT")) @@ -121,18 +110,21 @@ int gtmrecv_get_opt(void) util_out_print("Error parsing LISTENPORT qualifier", TRUE); return (-1); } - if (buffsize_status = (CLI_PRESENT == cli_present("BUFFSIZE"))) - { - if (!cli_get_int("BUFFSIZE", >mrecv_options.buffsize)) + if (CLI_PRESENT == cli_present("BUFFSIZE")) + { /* use a big conversion so we have a signed number for comparison */ + if (!cli_get_int64("BUFFSIZE", &buffsize)) { util_out_print("Error parsing BUFFSIZE qualifier", TRUE); - return (-1); + return(-1); } - if (MIN_RECVPOOL_SIZE > gtmrecv_options.buffsize) + if (MIN_RECVPOOL_SIZE > buffsize) gtmrecv_options.buffsize = MIN_RECVPOOL_SIZE; + else if ((gtm_int64_t)MAX_RECVPOOL_SIZE < buffsize) + gtmrecv_options.buffsize = (uint4)MAX_RECVPOOL_SIZE; + else + gtmrecv_options.buffsize = (uint4)buffsize; } else gtmrecv_options.buffsize = DEFAULT_RECVPOOL_SIZE; -# ifdef UNIX /* Check if -autorollback is specified (default is -noautorollback) */ autorollback = cli_present("AUTOROLLBACK"); gtmrecv_options.autorollback = autorollback ? (CLI_NEGATED != autorollback) : FALSE; @@ -152,7 +144,6 @@ int gtmrecv_get_opt(void) gtm_zlib_cmp_level = gtmrecv_options.cmplvl; } else gtmrecv_options.cmplvl = ZLIB_CMPLVL_MIN; /* no compression in this case */ -# endif if (filter = (CLI_PRESENT == cli_present("FILTER"))) { filter_cmd_len = MAX_FILTER_CMD_LEN; @@ -184,7 +175,6 @@ int gtmrecv_get_opt(void) } # endif } - if ((gtmrecv_options.start && 0 != gtmrecv_options.listen_port) || gtmrecv_options.statslog || gtmrecv_options.changelog) { log = (CLI_PRESENT == cli_present("LOG")); @@ -213,7 +203,6 @@ int gtmrecv_get_opt(void) } /* For changelog, interval == 0 implies don't change log interval already established */ /* We ignore interval specification for statslog, Vinaya 2005/02/07 */ } - if (gtmrecv_options.shut_down) { if (CLI_PRESENT == (status = cli_present("TIMEOUT"))) @@ -233,7 +222,6 @@ int gtmrecv_get_opt(void) else /* TIMEOUT not specified */ gtmrecv_options.shutdown_time = DEFAULT_SHUTDOWN_TIMEOUT; } - if (gtmrecv_options.statslog) { statslog_val_len = 4; /* max(strlen("ON"), strlen("OFF")) + 1 */ @@ -242,9 +230,7 @@ int gtmrecv_get_opt(void) util_out_print("Error parsing STATSLOG qualifier", TRUE); return (-1); } -#ifdef UNIX cli_strupper(statslog_val); -#endif if (0 == STRCMP(statslog_val, "ON")) gtmrecv_options.statslog = TRUE; else if (0 == STRCMP(statslog_val, "OFF")) diff --git a/sr_port/gtmrecv_helpers_init.c b/sr_port/gtmrecv_helpers_init.c old mode 100644 new mode 100755 index d3097e71..da059fbb --- a/sr_port/gtmrecv_helpers_init.c +++ b/sr_port/gtmrecv_helpers_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2014 Fidelity Information Services, Inc.* + * Copyright (c) 2005-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -79,20 +80,10 @@ static int helper_init(upd_helper_entry_ptr_t helper, recvpool_user helper_type) int helper_cmd_len; int status; int4 i4status; - upd_helper_ctl_ptr_t upd_helper_ctl; -#ifdef UNIX pid_t helper_pid, waitpid_res; -#elif defined(VMS) - uint4 helper_pid, cmd_channel; - char mbx_suffix[2 + 1]; /* hex representation of numbers 0 through MAX_UPD_HELPERS-1, +1 for '\0' */ - $DESCRIPTOR(cmd_desc_reader, UPDHELPER_READER_CMD_STR); - $DESCRIPTOR(cmd_desc_writer, UPDHELPER_WRITER_CMD_STR); -#endif - upd_helper_ctl = recvpool.upd_helper_ctl; save_shutdown = helper->helper_shutdown; helper->helper_shutdown = NO_SHUTDOWN; -#ifdef UNIX if (!gtm_dist_ok_to_use) rts_error_csa(CSA_ARG(NULL) VARLSTCNT(6) ERR_GTMDISTUNVERIF, 4, STRLEN(gtm_dist), gtm_dist, gtmImageNames[image_type].imageNameLen, gtmImageNames[image_type].imageName); @@ -134,27 +125,9 @@ static int helper_init(upd_helper_entry_ptr_t helper, recvpool_user helper_type) gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_HLPPROC, 0, ERR_TEXT, 2, LEN_AND_LIT("Could not exec Helper Process"), save_errno); repl_errno = EREPL_UPDSTART_EXEC; - _exit(UPDPROC_START_ERR); + UNDERSCORE_EXIT(UPDPROC_START_ERR); } } -#elif defined(VMS) - /* Create detached server and write startup commands to it */ - i2hex(helper - upd_helper_ctl->helper_list, LIT_AND_LEN(mbx_suffix)); - mbx_suffix[SIZEOF(mbx_suffix) - 1] = '\0'; - /* A mailbox is created per helper, and the mailbox name is assigned to a logical. This logical will persist until the - * helper terminates. So, we need to assign a unique logical per helper. Hence the suffix. */ - if (SS_NORMAL != (status = repl_create_server((UPD_HELPER_READER == helper_type) ? &cmd_desc_reader : &cmd_desc_writer, - UPDHELPER_MBX_PREFIX, mbx_suffix, &cmd_channel, &helper->helper_pid_prev, - ERR_RECVPOOLSETUP))) - { - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_RECVPOOLSETUP, 0, - ERR_TEXT, 2, LEN_AND_LIT("Unable to spawn Helper process"), status); - helper->helper_shutdown = save_shutdown; - repl_errno = EREPL_UPDSTART_FORK; - return UPDPROC_START_ERR; - } - helper_pid = helper->helper_pid_prev; -#endif /* Wait for helper to startup */ while (helper_pid != helper->helper_pid && is_proc_alive(helper_pid, 0)) { @@ -162,17 +135,6 @@ static int helper_init(upd_helper_entry_ptr_t helper, recvpool_user helper_type) UNIX_ONLY(WAITPID(helper_pid, &status, WNOHANG, waitpid_res);) /* Release defunct helper process if dead */ } /* The helper has now gone far enough in the initialization, or died before initialization. Consider startup completed. */ -#if defined(VMS) - /* Deassign the send-cmd mailbox channel */ - if (SS_NORMAL != (status = sys$dassgn(cmd_channel))) - { - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_RECVPOOLSETUP, 0, ERR_TEXT, 2, - RTS_ERROR_LITERAL("Unable to close upd-send-cmd mbox channel"), status); - helper->helper_shutdown = save_shutdown; - repl_errno = EREPL_UPDSTART_BADPATH; /* Just to make an auto-shutdown */ - return UPDPROC_START_ERR; - } -#endif repl_log(gtmrecv_log_fp, TRUE, TRUE, "Helper %s started. PID %d [0x%X]\n", (UPD_HELPER_READER == helper_type) ? "reader" : "writer", helper_pid, helper_pid); return UPDPROC_STARTED; diff --git a/sr_port/gtmrecv_reap_helpers.c b/sr_port/gtmrecv_reap_helpers.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_reinit_logseqno.c b/sr_port/gtmrecv_reinit_logseqno.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_showbacklog.c b/sr_port/gtmrecv_showbacklog.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_start_helpers.c b/sr_port/gtmrecv_start_helpers.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_statslog.c b/sr_port/gtmrecv_statslog.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmrecv_upd_proc_init.c b/sr_port/gtmrecv_upd_proc_init.c old mode 100644 new mode 100755 index df50d662..95b2fcf4 --- a/sr_port/gtmrecv_upd_proc_init.c +++ b/sr_port/gtmrecv_upd_proc_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc.* + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -68,6 +69,7 @@ error_def(ERR_GTMDISTUNVERIF); error_def(ERR_LOGTOOLONG); error_def(ERR_RECVPOOLSETUP); error_def(ERR_REPLINFO); +error_def(ERR_SYSCALL); error_def(ERR_TEXT); error_def(ERR_UPDPROC); @@ -86,6 +88,7 @@ int gtmrecv_upd_proc_init(boolean_t fresh_start) uint4 cmd_channel; $DESCRIPTOR(cmd_desc, UPDPROC_CMD_STR); #endif + pthread_mutexattr_t write_updated_ctl_attr; /* Check if the update process is alive */ if ((upd_status = is_updproc_alive()) == SRV_ERR) @@ -128,6 +131,23 @@ int gtmrecv_upd_proc_init(boolean_t fresh_start) repl_errno = EREPL_UPDSTART_BADPATH; return(UPDPROC_START_ERR); } + /* Destroy/Reinitialize the mutex. + * Needed here in case the update process exited while holding the mutex, and the system didn't clean it up. + * Robust mutexes should handle this case, in theory, but they are unreliable, at least on Ubuntu 12.04. + */ + pthread_mutex_destroy(&recvpool.recvpool_ctl->write_updated_ctl); + status = pthread_mutexattr_init(&write_updated_ctl_attr); + if (0 != status) + rts_error_csa(CSA_ARG(NULL) VARLSTCNT(8) ERR_SYSCALL, 5, + LEN_AND_LIT("pthread_mutexattr_init"), CALLFROM, status, 0); + status = pthread_mutexattr_setpshared(&write_updated_ctl_attr, PTHREAD_PROCESS_SHARED); + if (0 != status) + rts_error_csa(CSA_ARG(NULL) VARLSTCNT(8) ERR_SYSCALL, 5, + LEN_AND_LIT("pthread_mutexattr_setpshared"), CALLFROM, status, 0); + status = pthread_mutex_init(&recvpool.recvpool_ctl->write_updated_ctl, &write_updated_ctl_attr); + if (0 != status) + rts_error_csa(CSA_ARG(NULL) VARLSTCNT(8) ERR_SYSCALL, 5, + LEN_AND_LIT("pthread_mutex_init"), CALLFROM, status, 0); FORK(upd_pid); if (0 > upd_pid) { @@ -147,7 +167,7 @@ int gtmrecv_upd_proc_init(boolean_t fresh_start) gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(7) ERR_UPDPROC, 0, ERR_TEXT, 2, RTS_ERROR_LITERAL("Could not exec Update Process"), errno); repl_errno = EREPL_UPDSTART_EXEC; - _exit(UPDPROC_START_ERR); + UNDERSCORE_EXIT(UPDPROC_START_ERR); } } #elif defined(VMS) diff --git a/sr_port/gtmsource_ch.c b/sr_port/gtmsource_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmsource_comm_init.c b/sr_port/gtmsource_comm_init.c old mode 100644 new mode 100755 diff --git a/sr_port/gtmsource_ctl_init.c b/sr_port/gtmsource_ctl_init.c index 28db11b6..33602fdb 100644 --- a/sr_port/gtmsource_ctl_init.c +++ b/sr_port/gtmsource_ctl_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -54,14 +55,13 @@ #include "tp_change_reg.h" #include "is_file_identical.h" #include "get_fs_block_size.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #ifdef __MVS__ #include "gtm_zos_io.h" #endif GBLDEF repl_ctl_element *repl_ctl_list = NULL; +GBLDEF repl_rctl_elem_t *repl_rctl_list = NULL; GBLREF jnlpool_addrs jnlpool; GBLREF seq_num seq_num_zero; @@ -125,10 +125,9 @@ int repl_open_jnl_file_by_name(repl_ctl_element *tmp_ctl, int jnl_fn_len, char * memcpy(tmp_ctl->jnl_fn, jnl_fn, jnl_fn_len); tmp_ctl->jnl_fn[jnl_fn_len] = '\0'; status = SS_NORMAL; - /* Open Journal File */ # ifdef UNIX - OPENFILE(tmp_ctl->jnl_fn, O_RDONLY, tmp_fd); + OPENFILE_CLOEXEC(tmp_ctl->jnl_fn, O_RDONLY, tmp_fd); if (0 > tmp_fd) { status = errno; @@ -279,7 +278,9 @@ int repl_ctl_create(repl_ctl_element **ctl, gd_region *reg, int jnl_fn_len, char rel_crit(reg); gv_cur_region = r_save; tp_change_reg(); - assert(NOJNL != tmp_fd); + assert((NOJNL != tmp_fd) + || ((status != SS_NORMAL) && gtm_white_box_test_case_enabled + && (WBTEST_JNL_FILE_LOST_DSKADDR == gtm_white_box_test_case_number))); } else status = repl_open_jnl_file_by_name(tmp_ctl, jnl_fn_len, jnl_fn, &tmp_fd, &stat_buf); if (status == SS_NORMAL) @@ -329,15 +330,13 @@ int repl_ctl_create(repl_ctl_element **ctl, gd_region *reg, int jnl_fn_len, char tmp_ctl->repl_buff->fc->jfh_base = tmp_jfh_base; tmp_ctl->repl_buff->fc->jfh = tmp_jfh; tmp_ctl->repl_buff->fc->fd = tmp_fd; -# ifdef GTM_CRYPT - if (tmp_jfh->is_encrypted) + if (USES_ANY_KEY(tmp_jfh)) { ASSERT_ENCRYPTION_INITIALIZED; /* should be done in db_init (gtmsource() -> gvcst_init() -> db_init()) */ - GTMCRYPT_INIT_BOTH_CIPHER_CONTEXTS(csa, tmp_jfh->encryption_hash, tmp_ctl->encr_key_handle, gtmcrypt_errno); + INIT_DB_OR_JNL_ENCRYPTION(tmp_ctl, tmp_jfh, reg->dyn.addr->fname_len, (char *)reg->dyn.addr->fname, gtmcrypt_errno); if (0 != gtmcrypt_errno) GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, tmp_ctl->jnl_fn_len, tmp_ctl->jnl_fn); } -# endif if (did_jnl_ensure_open) { F_COPY_GDID(tmp_ctl->repl_buff->fc->id, JNL_GDID_PVT(csa)); @@ -360,7 +359,6 @@ int repl_ctl_create(repl_ctl_element **ctl, gd_region *reg, int jnl_fn_len, char tmp_ctl->first_read_done = FALSE; tmp_ctl->eof_addr_final = FALSE; tmp_ctl->max_seqno_final = FALSE; - tmp_ctl->read_complete = FALSE; tmp_ctl->min_seqno_dskaddr = 0; tmp_ctl->max_seqno_dskaddr = 0; tmp_ctl->next = tmp_ctl->prev = NULL; @@ -369,22 +367,25 @@ int repl_ctl_create(repl_ctl_element **ctl, gd_region *reg, int jnl_fn_len, char return (SS_NORMAL); } +/* Setup ctl for reading from journal files */ int gtmsource_ctl_init(void) { - /* Setup ctl for reading from journal files */ - gd_region *region_top, *reg; sgmnt_addrs *csa; sgmnt_data_ptr_t csd; repl_ctl_element *tmp_ctl, *prev_ctl; + repl_rctl_elem_t *repl_rctl, *last_rctl; +# ifdef DEBUG + repl_rctl_elem_t *tmp_rctl; +# endif int jnl_file_len, status; repl_ctl_list = (repl_ctl_element *)malloc(SIZEOF(repl_ctl_element)); memset((char_ptr_t)repl_ctl_list, 0, SIZEOF(*repl_ctl_list)); prev_ctl = repl_ctl_list; - UNIX_ONLY(assert(GTMSOURCE_HANDLE_ONLN_RLBK != gtmsource_state)); /* can't come here without handling online rollback */ region_top = gd_header->regions + gd_header->n_regions; + last_rctl = NULL; for (reg = gd_header->regions; reg < region_top; reg++) { assert(reg->open); @@ -402,6 +403,28 @@ int gtmsource_ctl_init(void) tmp_ctl->prev = prev_ctl; tmp_ctl->next = NULL; prev_ctl = tmp_ctl; + repl_rctl = (repl_rctl_elem_t *)csa->miscptr; + if (NULL == repl_rctl) + { +# ifdef DEBUG + tmp_rctl = repl_rctl_list; + while ((NULL != tmp_rctl) && (NULL != tmp_rctl->next)) + tmp_rctl = tmp_rctl->next; + assert(last_rctl == tmp_rctl); +# endif + repl_rctl = (repl_rctl_elem_t *)malloc(SIZEOF(repl_rctl_elem_t)); + repl_rctl->next = NULL; + repl_rctl->prev = last_rctl; + if (NULL == repl_rctl_list) + repl_rctl_list = repl_rctl; + else + last_rctl->next = repl_rctl; + last_rctl = repl_rctl; + csa->miscptr = (void *)repl_rctl; + } + repl_rctl->ctl_start = tmp_ctl; + /* repl_rctl->read_complete is later initialized in function "read_and_merge" */ + tmp_ctl->repl_rctl = repl_rctl; } } /* This function should never be invoked unless there is at least one replicated region. */ @@ -416,6 +439,7 @@ int repl_ctl_close(repl_ctl_element *ctl) if (NULL != ctl) { + REPL_DPRINT2("CTL CLOSE : Close of file %s\n", ctl->jnl_fn); if (NULL != ctl->repl_buff) { for (index = REPL_MAINBUFF; REPL_NUMBUFF > index; index++) @@ -441,6 +465,7 @@ int gtmsource_ctl_close(void) repl_ctl_element *ctl; sgmnt_addrs *csa; int status; + repl_rctl_elem_t *repl_rctl; UNIX_ONLY(gtmsource_stop_jnl_release_timer();) if (repl_ctl_list) @@ -465,6 +490,8 @@ int gtmsource_ctl_close(void) repl_ctl_list = NULL; free(ctl); } + for (repl_rctl = repl_rctl_list; NULL != repl_rctl; repl_rctl = repl_rctl->next) + repl_rctl->ctl_start = NULL; return (SS_NORMAL); } diff --git a/sr_port/gtmsource_exit.c b/sr_port/gtmsource_exit.c old mode 100644 new mode 100755 index bebb2815..9dd6d6dd --- a/sr_port/gtmsource_exit.c +++ b/sr_port/gtmsource_exit.c @@ -13,12 +13,7 @@ #include "mdef.h" #include "gtm_stdio.h" /* for FILE * in repl_comm.h */ -#include "gtm_stdlib.h" /* for exit() */ - -#ifdef VMS -#include -#include -#endif +#include "gtm_stdlib.h" /* for EXIT() */ #include "gdsroot.h" #include "gdsblk.h" @@ -45,9 +40,5 @@ void gtmsource_exit(int exit_status) if ((0 != exit_status) && is_src_server) send_msg_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_REPLSRCEXITERR, 2, gtmsource_options.secondary_instname, gtmsource_options.log_file); -# ifdef VMS - sys$exit((0 == exit_status) ? SS$_NORMAL : ERR_REPLEXITERR); -# else - exit(exit_status); -# endif + EXIT(exit_status); } diff --git a/sr_port/gtmsource_heartbeat.h b/sr_port/gtmsource_heartbeat.h old mode 100644 new mode 100755 diff --git a/sr_port/gtmsource_poll_actions.c b/sr_port/gtmsource_poll_actions.c old mode 100644 new mode 100755 index 22055bfe..72f12a05 --- a/sr_port/gtmsource_poll_actions.c +++ b/sr_port/gtmsource_poll_actions.c @@ -53,6 +53,7 @@ GBLREF boolean_t gtmsource_logstats; GBLREF int gtmsource_log_fd; GBLREF FILE *gtmsource_log_fp; GBLREF int gtmsource_filter; +GBLREF time_t gtmsource_last_flush_time; GBLREF volatile time_t gtmsource_now; GBLREF gtmsource_options_t gtmsource_options; GBLREF uint4 log_interval; @@ -87,7 +88,6 @@ int gtmsource_poll_actions(boolean_t poll_secondary) repl_log(gtmsource_log_fp, TRUE, TRUE, "Shutdown signalled\n"); gtmsource_end(); /* Won't return */ } -# ifdef UNIX if (jnlpool.jnlpool_ctl->freeze != last_seen_freeze_flag) { last_seen_freeze_flag = jnlpool.jnlpool_ctl->freeze; @@ -106,7 +106,6 @@ int gtmsource_poll_actions(boolean_t poll_secondary) repl_log(gtmsource_log_fp, TRUE, TRUE, print_msg); } } -# endif if (GTMSOURCE_START == gtmsource_state) return (SS_NORMAL); if (GTMSOURCE_CHANGING_MODE != gtmsource_state && GTMSOURCE_MODE_PASSIVE_REQUESTED == gtmsource_local->mode) @@ -115,6 +114,7 @@ int gtmsource_poll_actions(boolean_t poll_secondary) gtmsource_state = GTMSOURCE_CHANGING_MODE; gtmsource_local->mode = GTMSOURCE_MODE_PASSIVE; UNIX_ONLY(gtmsource_local->gtmsource_state = gtmsource_state;) + gtmsource_flush_fh(gtmsource_local->read_jnl_seqno); /* Force the update on a transition */ return (SS_NORMAL); } if (poll_secondary && GTMSOURCE_CHANGING_MODE != gtmsource_state && GTMSOURCE_WAITING_FOR_CONNECTION != gtmsource_state) @@ -129,16 +129,9 @@ int gtmsource_poll_actions(boolean_t poll_secondary) GTM_CTIME(time_ptr, &temp_time); memcpy(time_str, time_ptr, CTIME_BEFORE_NL); time_str[CTIME_BEFORE_NL] = '\0'; - VMS_ONLY(SPRINTF(msg_str, "No response received for heartbeat sent at %s with SEQNO %llu in %0.f seconds. " - "Closing connection\n", time_str, *(seq_num *)&overdue_heartbeat.ack_seqno[0], - difftime(now, temp_time))); - NON_GTM64_ONLY(SPRINTF(msg_str, - "No response received for heartbeat sent at %s with SEQNO %llu in %0.f seconds. " - "Closing connection\n", time_str, *(seq_num *)&overdue_heartbeat.ack_seqno[0], - difftime(now, temp_time))); - GTM64_ONLY(SPRINTF(msg_str, "No response received for heartbeat sent at %s with SEQNO %lu in %0.f seconds. " - "Closing connection\n", time_str, *(seq_num *)&overdue_heartbeat.ack_seqno[0], - difftime(now, temp_time))); + SPRINTF(msg_str, "No response received for heartbeat sent at %s with SEQNO " + GTM64_ONLY("%lu") NON_GTM64_ONLY("%llu") " in %0.f seconds. Closing connection\n", + time_str, *(seq_num *)&overdue_heartbeat.ack_seqno[0], difftime(now, temp_time)); sgtm_putmsg(print_msg, VARLSTCNT(4) ERR_REPLWARN, 2, LEN_AND_STR(msg_str)); repl_log(gtmsource_log_fp, TRUE, TRUE, print_msg); repl_close(>msource_sock_fd); @@ -151,11 +144,18 @@ int gtmsource_poll_actions(boolean_t poll_secondary) if (GTMSOURCE_IS_HEARTBEAT_DUE(&now) && !heartbeat_stalled) { gtmsource_send_heartbeat(&now); - if (GTMSOURCE_WAITING_FOR_CONNECTION == gtmsource_state || - GTMSOURCE_CHANGING_MODE == gtmsource_state) + if ((GTMSOURCE_WAITING_FOR_CONNECTION == gtmsource_state) || (GTMSOURCE_CHANGING_MODE == gtmsource_state) + || (GTMSOURCE_HANDLE_ONLN_RLBK == gtmsource_state)) return (SS_NORMAL); } } + if ((GTMSOURCE_SENDING_JNLRECS == gtmsource_state) /* Flush the file header only with an active connection */ + && (GTMSOURCE_FH_FLUSH_INTERVAL <= difftime(gtmsource_now, gtmsource_last_flush_time))) + { + gtmsource_flush_fh(gtmsource_local->read_jnl_seqno); + if (GTMSOURCE_HANDLE_ONLN_RLBK == gtmsource_state) + return (SS_NORMAL); + } if (0 != gtmsource_local->changelog) { if (gtmsource_local->changelog & REPLIC_CHANGE_LOGINTERVAL) diff --git a/sr_port/gtmsource_reinit_logseqno.c b/sr_port/gtmsource_reinit_logseqno.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_bind_name.c b/sr_port/gv_bind_name.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_init_reg.c b/sr_port/gv_init_reg.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_match.c b/sr_port/gv_match.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_match.h b/sr_port/gv_match.h old mode 100644 new mode 100755 diff --git a/sr_port/gv_rundown.c b/sr_port/gv_rundown.c old mode 100644 new mode 100755 index c80e4ef3..d02e2a19 --- a/sr_port/gv_rundown.c +++ b/sr_port/gv_rundown.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -215,24 +216,30 @@ void gv_rundown(void) * ftok_sem_reg to NULL (as part of ftok_sem_release). But, jnlpool_dummy_reg is still non-null and the lingering ftok * should be released. So, even though a subset of the below conditions should be enough, we check for all there cases just * to be safe. + * Note that we use FALSE for the decr_cnt parameter (2nd parameter) to "ftok_sem_release". This is to avoid incorrect + * removal of the ftok semaphore in case the counter is down to 1 but there are processes which did not bump the counter + * (due to the counter overflowing) that are still accessing the semaphore. Even though we dont decrement the counter, + * the SEM_UNDO will take care of doing the actual decrement when this process terminates. The only consequence is + * we will not be removing the ftok semaphore when the last process to use it dies (requiring a mupip rundown to clean + * it up). But that is considered okay since these are abnormal exit conditions anyways and hopefully unlikely in practice. */ if (ftok_sem_reg) { udi = FILE_INFO(ftok_sem_reg); assert(udi->grabbed_ftok_sem); - ftok_sem_release(ftok_sem_reg, TRUE, TRUE); + ftok_sem_release(ftok_sem_reg, FALSE, TRUE); } if (NULL != jnlpool.jnlpool_dummy_reg) { udi = FILE_INFO(jnlpool.jnlpool_dummy_reg); if (udi->grabbed_ftok_sem) - ftok_sem_release(jnlpool.jnlpool_dummy_reg, TRUE, TRUE); + ftok_sem_release(jnlpool.jnlpool_dummy_reg, FALSE, TRUE); } if (NULL != recvpool.recvpool_dummy_reg) { udi = FILE_INFO(recvpool.recvpool_dummy_reg); if (udi->grabbed_ftok_sem) - ftok_sem_release(recvpool.recvpool_dummy_reg, TRUE, TRUE); + ftok_sem_release(recvpool.recvpool_dummy_reg, FALSE, TRUE); } # endif diff --git a/sr_port/gv_rundown.h b/sr_port/gv_rundown.h old mode 100644 new mode 100755 diff --git a/sr_port/gv_select.c b/sr_port/gv_select.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_select.h b/sr_port/gv_select.h old mode 100644 new mode 100755 diff --git a/sr_port/gv_xform_key.c b/sr_port/gv_xform_key.c old mode 100644 new mode 100755 diff --git a/sr_port/gv_xform_key.h b/sr_port/gv_xform_key.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcmx.h b/sr_port/gvcmx.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcmy_close.h b/sr_port/gvcmy_close.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcmy_rundown.h b/sr_port/gvcmy_rundown.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_blk_build.c b/sr_port/gvcst_blk_build.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_blk_build.h b/sr_port/gvcst_blk_build.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_blk_search.c b/sr_port/gvcst_blk_search.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_blk_search.h b/sr_port/gvcst_blk_search.h index e8fae96d..fe900bcb 100644 --- a/sr_port/gvcst_blk_search.h +++ b/sr_port/gvcst_blk_search.h @@ -22,6 +22,8 @@ */ GBLREF sgmnt_data_ptr_t cs_data; +GBLREF gv_namehead *gv_target; +GBLREF uint4 dollar_tlevel; #ifndef GVCST_SEARCH_EXPAND_PREVKEY # ifdef GVCST_SEARCH_BLK @@ -229,7 +231,15 @@ GBLREF sgmnt_data_ptr_t cs_data; if (nTmp > prevKeyCmpLen) { if (((prevKeyStart + nTmp) >= prevKeyTop) || (NULL == prevKeyUnCmp)) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, + cs_data, pStat->tn, ((blk_hdr_ptr_t)pBlkBase)->tn, + pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_srch) return cdb_sc_blkmod; + } # ifdef GVCST_SEARCH_TAIL assert((prevKeyUnCmp > pBlkBase) || ((prevKeyUnCmp == &prevKey->base[prevKeyCmpLen]) @@ -331,7 +341,14 @@ GBLREF sgmnt_data_ptr_t cs_data; do { if (tmpPtr >= pTop) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, cs_data, + pStat->tn, ((blk_hdr_ptr_t)pBlkBase)->tn, pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_srch) return cdb_sc_blkmod; + } /* It is now safe to do *tmpPtr and *++tmpPtr without worry about exceeding array bounds */ if ((KEY_DELIMITER == *tmpPtr++) && (KEY_DELIMITER == *tmpPtr)) break; @@ -340,7 +357,14 @@ GBLREF sgmnt_data_ptr_t cs_data; prevKeyUnCmpLen = tmpPtr - prevKeyUnCmp; prevKeyStart += prevKeyCmpLen; if (prevKeyStart + prevKeyUnCmpLen > prevKeyTop) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, cs_data, pStat->tn, + ((blk_hdr_ptr_t)pBlkBase)->tn, pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_srch) return cdb_sc_blkmod; + } memcpy(prevKeyStart, prevKeyUnCmp, prevKeyUnCmpLen); gv_altkey->end = prevKeyCmpLen + prevKeyUnCmpLen - 1; /* remove 2nd KEY_DELIMITER from "end" calculation */ } else diff --git a/sr_port/gvcst_bmp_mark_free.c b/sr_port/gvcst_bmp_mark_free.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_bmp_mark_free.h b/sr_port/gvcst_bmp_mark_free.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_data.c b/sr_port/gvcst_data.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_delete_blk.c b/sr_port/gvcst_delete_blk.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_delete_blk.h b/sr_port/gvcst_delete_blk.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_expand_any_key.c b/sr_port/gvcst_expand_any_key.c old mode 100644 new mode 100755 index 0e52c77a..3785f7f0 --- a/sr_port/gvcst_expand_any_key.c +++ b/sr_port/gvcst_expand_any_key.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -60,7 +61,7 @@ Output Parameter: cdb_sc_normal on success failure code on concurrency failure *******************************************************************************************/ -enum cdb_sc gvcst_expand_any_key (sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_top, sm_uc_ptr_t expanded_key, +enum cdb_sc gvcst_expand_any_key (srch_blk_status *blk_stat, sm_uc_ptr_t rec_top, sm_uc_ptr_t expanded_key, int *rec_size, int *keylen, int *keycmpc, srch_hist *hist_ptr) { enum cdb_sc status; @@ -73,9 +74,10 @@ enum cdb_sc gvcst_expand_any_key (sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_top, sm_ int tblk_size; block_id tblk_num; sm_uc_ptr_t rPtr1, rPtr2, curptr; + sm_uc_ptr_t blk_base; - - cur_level = ((blk_hdr_ptr_t)blk_base)->levl; + blk_base = blk_stat->buffaddr; + cur_level = blk_stat->level; curptr = blk_base + SIZEOF(blk_hdr); *rec_size = *keycmpc = *keylen = 0; while (curptr < rec_top) @@ -83,7 +85,7 @@ enum cdb_sc gvcst_expand_any_key (sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_top, sm_ GET_RSIZ(*rec_size, curptr); if (0 == cur_level || BSTAR_REC_SIZE != *rec_size) { - READ_RECORD(status, rec_size, keycmpc, keylen, expanded_key, cur_level, blk_base, curptr); + READ_RECORD(status, rec_size, keycmpc, keylen, expanded_key, cur_level, blk_stat, curptr); if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); @@ -135,7 +137,7 @@ enum cdb_sc gvcst_expand_any_key (sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_top, sm_ tblk_size = ((blk_hdr_ptr_t)blk_base)->bsiz; /* expand *-key from right most leaf level block of the sub-tree, of which, the original block is root */ - if (cdb_sc_normal != (status = (gvcst_expand_any_key(blk_base, blk_base + tblk_size, + if (cdb_sc_normal != (status = (gvcst_expand_any_key(&hist_ptr->h[cur_level], blk_base + tblk_size, expanded_star_key, &star_rec_size, &star_keylen, &star_keycmpc, hist_ptr)))) return status; if (*keylen + *keycmpc) /* Previous key exists */ @@ -158,5 +160,3 @@ enum cdb_sc gvcst_expand_any_key (sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_top, sm_ return cdb_sc_rmisalign; } } - - diff --git a/sr_port/gvcst_expand_free_subtree.c b/sr_port/gvcst_expand_free_subtree.c old mode 100644 new mode 100755 index 218f8358..3a144b45 --- a/sr_port/gvcst_expand_free_subtree.c +++ b/sr_port/gvcst_expand_free_subtree.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -41,8 +42,10 @@ GBLREF sgmnt_addrs *cs_addrs; GBLREF sgmnt_data_ptr_t cs_data; GBLREF sgm_info *sgm_info_ptr; GBLREF uint4 dollar_tlevel; +GBLREF uint4 bml_save_dollar_tlevel; GBLREF unsigned char rdfail_detail; GBLREF inctn_opcode_t inctn_opcode; +GBLREF uint4 update_trans; error_def(ERR_GVKILLFAIL); error_def(ERR_IGNBMPMRKFREE); @@ -59,7 +62,7 @@ void gvcst_expand_free_subtree(kill_set *ks_head) kill_set *ks; off_chain chain; rec_hdr_ptr_t rp, rp1, rtop; - uint4 save_dollar_tlevel; + uint4 save_update_trans; sm_uc_ptr_t temp_buff; sgmnt_addrs *csa; sgmnt_data_ptr_t csd; @@ -82,7 +85,7 @@ void gvcst_expand_free_subtree(kill_set *ks_head) if (0 != ksb->level) { if (!(was_crit = csa->now_crit)) - grab_crit(gv_cur_region); + grab_crit_encr_cycle_sync(gv_cur_region); /* needed so t_qread does not return NULL below */ # ifdef UNIX if (csa->onln_rlbk_cycle != csa->nl->onln_rlbk_cycle) { /* Concurrent online rollback. We don't want to continue with rest of the logic to add more @@ -148,12 +151,10 @@ void gvcst_expand_free_subtree(kill_set *ks_head) GET_LONG(temp_long, (block_id_ptr_t)((sm_uc_ptr_t)rp1 - SIZEOF(block_id))); if (dollar_tlevel) { + assert(sgm_info_ptr->tp_csa == cs_addrs); chain = *(off_chain *)&temp_long; - if ((1 == chain.flag) && ((int)chain.cw_index >= sgm_info_ptr->cw_set_depth)) - { - assert(sgm_info_ptr->tp_csa == cs_addrs); - GTMASSERT; - } + assertpro(!((1 == chain.flag) && + ((int)chain.cw_index >= sgm_info_ptr->cw_set_depth))); assert(chain.flag || temp_long < csa->ti->total_blks); } level = ((blk_hdr_ptr_t)temp_buff)->levl; @@ -169,11 +170,17 @@ void gvcst_expand_free_subtree(kill_set *ks_head) } } gvcst_kill_sort(ks); - save_dollar_tlevel = dollar_tlevel; + assert(!bml_save_dollar_tlevel); + bml_save_dollar_tlevel = dollar_tlevel; + /* Resetting and restoring of update_trans is necessary to avoid blowing an assert in t_begin that it is 0. */ + save_update_trans = update_trans; assert(1 >= dollar_tlevel); dollar_tlevel = 0; /* temporarily for gvcst_bmp_mark_free */ + update_trans = 0; GVCST_BMP_MARK_FREE(ks, ret_tn, inctn_invalid_op, inctn_bmp_mark_free_gtm, inctn_opcode, csa) - dollar_tlevel = save_dollar_tlevel; + update_trans = save_update_trans; + dollar_tlevel = bml_save_dollar_tlevel; + bml_save_dollar_tlevel = 0; } free(temp_buff); } diff --git a/sr_port/gvcst_expand_free_subtree.h b/sr_port/gvcst_expand_free_subtree.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_expand_key.c b/sr_port/gvcst_expand_key.c old mode 100644 new mode 100755 index 471adec0..6e9e1c17 --- a/sr_port/gvcst_expand_key.c +++ b/sr_port/gvcst_expand_key.c @@ -23,18 +23,21 @@ #include "min_max.h" #include "gvcst_expand_key.h" +GBLREF gd_region *gv_cur_region; GBLREF unsigned int t_tries; +GBLREF uint4 dollar_tlevel; /* Note: A lot of the code below is similar to that in gvcst_blk_search.h. * Any changes there need to be incorporated here and vice-versa. */ -enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) +enum cdb_sc gvcst_expand_key(srch_blk_status *pStat, int4 rec_top, gv_key *key) { int expKeyCmpLen; /* length of compressed portion of expKey stored in key->base */ int expKeyUnCmpLen;/* Length of uncompressed portion of expKey */ int nTmp; int r_offset; rec_hdr_ptr_t rp, rtop; + blk_hdr_ptr_t bp; sm_uc_ptr_t expKeyUnCmp; /* pointer to beginning of uncompressed portion of expKey */ sm_uc_ptr_t pTop; unsigned char *expKeyStart; /* pointer to &key->base[0] */ @@ -43,6 +46,7 @@ enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) unsigned short temp_ushort; assert(SIZEOF(rec_hdr) <= SIZEOF(blk_hdr)); + bp = (blk_hdr_ptr_t)pStat->buffaddr; rp = (rec_hdr_ptr_t)bp; rtop = (rec_hdr_ptr_t)((sm_uc_ptr_t)bp + rec_top); expKeyCmpLen = 0; @@ -67,7 +71,14 @@ enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) if (nTmp > expKeyCmpLen) { if (((expKeyStart + nTmp) >= expKeyTop) || (NULL == expKeyUnCmp)) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, cs_data, + pStat->tn, ((blk_hdr_ptr_t)bp)->tn, pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_expand_key) return cdb_sc_blkmod; + } assert(NULL != expKeyUnCmp); memcpy(expKeyStart + expKeyCmpLen, expKeyUnCmp, nTmp - expKeyCmpLen); } @@ -87,7 +98,14 @@ enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) do { if (tmpPtr >= pTop) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, cs_data, pStat->tn, + ((blk_hdr_ptr_t)bp)->tn, pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_expand_key) return cdb_sc_blkmod; + } /* It is now safe to do *tmpPtr and *++tmpPtr without worry about exceeding block bounds */ if ((KEY_DELIMITER == *tmpPtr++) && (KEY_DELIMITER == *tmpPtr)) break; @@ -96,7 +114,14 @@ enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) expKeyUnCmpLen = tmpPtr - expKeyUnCmp; tmpPtr = expKeyStart + expKeyCmpLen; if (tmpPtr + expKeyUnCmpLen > expKeyTop) + { + if (dollar_tlevel) + TP_TRACE_HIST_MOD(pStat->blk_num, pStat->blk_target, tp_blkmod_gvcst_srch, cs_data, pStat->tn, + ((blk_hdr_ptr_t)bp)->tn, pStat->level) + else + NONTP_TRACE_HIST_MOD(pStat, t_blkmod_gvcst_expand_key) return cdb_sc_blkmod; + } memcpy(tmpPtr, expKeyUnCmp, expKeyUnCmpLen); if (KEY_DELIMITER == *expKeyStart) { /* A valid key wouldn't start with a '\0' character. So the block must have been concurrently modified. */ @@ -134,4 +159,3 @@ enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key) #define GVCST_EXPAND_PREV_KEY #include "gvcst_expand_key.h" /* Defines the function "gvcst_expand_prev_key" */ /* BYPASSOK : intentional duplicate include. */ #undef GVCST_EXPAND_PREV_KEY - diff --git a/sr_port/gvcst_expand_key.h b/sr_port/gvcst_expand_key.h old mode 100644 new mode 100755 index e476e9fa..e7f0f459 --- a/sr_port/gvcst_expand_key.h +++ b/sr_port/gvcst_expand_key.h @@ -13,7 +13,7 @@ #ifndef GVCST_EXPAND_KEY_INCLUDED #define GVCST_EXPAND_KEY_INCLUDED -enum cdb_sc gvcst_expand_key(blk_hdr_ptr_t bp, int4 rec_top, gv_key *key); +enum cdb_sc gvcst_expand_key(srch_blk_status *pStat, int4 rec_top, gv_key *key); enum cdb_sc gvcst_expand_curr_key(srch_blk_status *pStat, gv_key *srch_key, gv_key *exp_key); enum cdb_sc gvcst_expand_prev_key(srch_blk_status *pStat, gv_key *srch_key, gv_key *exp_key); @@ -76,7 +76,7 @@ GBLREF sgmnt_data_ptr_t cs_data; /* We cannot determine the uncompressed prev_key based only on prev_rec.match and srch_key. * Need to go the full-blown route. */ - return gvcst_expand_key((blk_hdr_ptr_t)buffaddr, offset, exp_key); + return gvcst_expand_key(pStat, offset, exp_key); # endif # ifdef GVCST_EXPAND_CURR_KEY /* This means the block changed since we did the search. Return abnormal status so retry occurs. */ diff --git a/sr_port/gvcst_gblmod.c b/sr_port/gvcst_gblmod.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_get.c b/sr_port/gvcst_get.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_incr.c b/sr_port/gvcst_incr.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_init.c b/sr_port/gvcst_init.c old mode 100644 new mode 100755 index 5d723e9d..dd82708b --- a/sr_port/gvcst_init.c +++ b/sr_port/gvcst_init.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001, 2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -140,7 +140,7 @@ void assert_jrec_member_offsets(void) assert(JNL_HDR_LEN == JNL_FILE_FIRST_RECORD); assert(DISK_BLOCK_SIZE >= PINI_RECLEN + EPOCH_RECLEN + PFIN_RECLEN + EOF_RECLEN); assert((JNL_ALLOC_MIN * DISK_BLOCK_SIZE) > JNL_HDR_LEN); - /* Following assert is for JNL_FILE_TAIL_PRESERVE macro in tp.h */ + /* Following assert is for JNL_FILE_TAIL_PRESERVE macro in jnl.h */ assert(PINI_RECLEN >= EPOCH_RECLEN && PINI_RECLEN >= PFIN_RECLEN && PINI_RECLEN >= EOF_RECLEN); /* jnl_string structure has a 8-bit nodeflags field and a 24-bit length field. In some cases, this is * used as a 32-bit length field (e.g. in the value part of the SET record or ZTWORMHOLE or LGTRIG record). @@ -191,12 +191,6 @@ void assert_jrec_member_offsets(void) assert(NULL_RECLEN == (ROUND_UP(SIZEOF(struct_jrec_null), JNL_REC_START_BNDRY))); assert(EPOCH_RECLEN == (ROUND_UP(SIZEOF(struct_jrec_epoch), JNL_REC_START_BNDRY))); assert(EOF_RECLEN == (ROUND_UP(SIZEOF(struct_jrec_eof), JNL_REC_START_BNDRY))); - /* Assert following comment which is relied upon in JNL_FILE_TAIL_PRESERVE macro. - * "We know PINI_RECLEN is maximum of EPOCH_RECLEN, PFIN_RECLEN, EOF_RECLEN" - */ - assert(PINI_RECLEN > EPOCH_RECLEN); - assert(PINI_RECLEN > PFIN_RECLEN); - assert(PINI_RECLEN > EOF_RECLEN); /* Assumption about the structures in code */ assert(0 == MIN_ALIGN_RECLEN % JNL_REC_START_BNDRY); assert(SIZEOF(uint4) == SIZEOF(jrec_suffix)); @@ -242,11 +236,10 @@ void gvcst_init(gd_region *greg) enum db_acc_method greg_acc_meth; boolean_t onln_rlbk_cycle_mismatch = FALSE; intrpt_state_t save_intrpt_ok_state; -# ifdef UNIX replpool_identifier replpool_id; unsigned int full_len; int4 db_init_retry; -# endif + intrpt_state_t prev_intrpt_state; DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -438,7 +431,8 @@ void gvcst_init(gd_region *greg) * is NOT set to TRUE, will cause gds_rundown NOT to clean up the shared memory created by db_init and * thus would be left over in the system. */ - DEFER_INTERRUPTS(INTRPT_IN_GVCST_INIT); + DEFER_INTERRUPTS(INTRPT_IN_GVCST_INIT, prev_intrpt_state); + assert(INTRPT_OK_TO_INTERRUPT == prev_intrpt_state); /* relied upon by ENABLE_INTERRUPTS in dbinit_ch */ VMS_ONLY(db_init(greg, temp_cs_data)); # ifdef UNIX db_init_retry = 0; @@ -520,8 +514,8 @@ void gvcst_init(gd_region *greg) /* Now that reg->open is set to TRUE and directory tree is initialized, go ahead and set rts_error back to being usable */ UNIX_ONLY(DBG_MARK_RTS_ERROR_USABLE); /* gds_rundown if invoked from now on will take care of cleaning up the shared memory segment */ - /* The below code, until the ENABLE_INTERRUPTS(INTRPT_IN_GVCST_INIT), can do mallocs which in turn can issue a - * GTM-E-MEMORY error which would invoke rts_error. Hence these have to be done AFTER the + /* The below code, until the ENABLE_INTERRUPTS(INTRPT_IN_GVCST_INIT, prev_intrpt_state), can do mallocs which in turn + * can issue a GTM-E-MEMORY error which would invoke rts_error. Hence these have to be done AFTER the * UNIX_ONLY(DBG_MARK_RTS_ERROR_USABLE) call. Since these are only private memory initializations, it is safe to * do these after reg->open is set. Any rts_errors from now on still do the needful cleanup of shared memory in * gds_rundown since reg->open is already TRUE. @@ -572,29 +566,24 @@ void gvcst_init(gd_region *greg) non_tp_jfb_ptr->hi_water_bsize = bsize; non_tp_jfb_ptr->buff = (char *)malloc(MAX_NONTP_JNL_REC_SIZE(bsize)); non_tp_jfb_ptr->record_size = 0; /* initialize it to 0 since TOTAL_NONTPJNL_REC_SIZE macro uses it */ - GTMCRYPT_ONLY(non_tp_jfb_ptr->alt_buff = NULL); + non_tp_jfb_ptr->alt_buff = NULL; } else if (bsize > non_tp_jfb_ptr->hi_water_bsize) { /* Need a larger buffer to accommodate larger non-TP journal records */ non_tp_jfb_ptr->hi_water_bsize = bsize; free(non_tp_jfb_ptr->buff); non_tp_jfb_ptr->buff = (char *)malloc(MAX_NONTP_JNL_REC_SIZE(bsize)); -# ifdef GTM_CRYPT if (NULL != non_tp_jfb_ptr->alt_buff) { free(non_tp_jfb_ptr->alt_buff); realloc_alt_buff = TRUE; } -# endif } - /* If the journal records need to be encrypted in the journal file and if replication is in use, - * we will need access to both the encrypted (for the journal file) and unencrypted (for the - * journal pool) journal record contents. Allocate an alternative buffer if any open journaled region - * is encrypted. + /* If the journal records need to be encrypted in the journal file and if replication is in use, we will need access + * to both the encrypted (for the journal file) and unencrypted (for the journal pool) journal record contents. + * Allocate an alternative buffer if any open journaled region is encrypted. */ -# ifdef GTM_CRYPT - if (realloc_alt_buff || (csd->is_encrypted && (NULL == non_tp_jfb_ptr->alt_buff))) + if (realloc_alt_buff || (USES_ENCRYPTION(csd->is_encrypted) && (NULL == non_tp_jfb_ptr->alt_buff))) non_tp_jfb_ptr->alt_buff = (char *)malloc(MAX_NONTP_JNL_REC_SIZE(non_tp_jfb_ptr->hi_water_bsize)); -# endif /* csa->min_total_tpjnl_rec_size represents the minimum journal buffer space needed for a TP transaction. * It is a conservative estimate assuming that one ALIGN record and one PINI record will be written for * one set of fixed size jnl records written. @@ -619,7 +608,7 @@ void gvcst_init(gd_region *greg) global_tlvl_info_list = (buddy_list *)malloc(SIZEOF(buddy_list)); initialize_list(global_tlvl_info_list, SIZEOF(global_tlvl_info), GBL_TLVL_INFO_LIST_INIT_ALLOC); } - ENABLE_INTERRUPTS(INTRPT_IN_GVCST_INIT); + ENABLE_INTERRUPTS(INTRPT_IN_GVCST_INIT, prev_intrpt_state); if (dba_bg == greg_acc_meth) { /* Check if (a) this region has non-upgraded blocks and if so, (b) the reformat buffer exists and * (c) if it is big enough to deal with this region. If the region does not have any non-upgraded diff --git a/sr_port/gvcst_kill.c b/sr_port/gvcst_kill.c index f5d295f1..23465a42 100644 --- a/sr_port/gvcst_kill.c +++ b/sr_port/gvcst_kill.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -125,10 +125,10 @@ LITREF mval literal_batch; #define SKIP_ASSERT_TRUE TRUE #define SKIP_ASSERT_FALSE FALSE -#define GOTO_RETRY(SKIP_ASSERT) \ -{ \ - assert((CDB_STAGNATE > t_tries) || SKIP_ASSERT); \ - goto retry; \ +#define GOTO_RETRY(CDB_STATUS, SKIP_ASSERT) \ +{ \ + assert((CDB_STAGNATE > t_tries) || IS_FINAL_RETRY_CODE(CDB_STATUS) || SKIP_ASSERT); \ + goto retry; \ } DEFINE_NSB_CONDITION_HANDLER(gvcst_kill_ch) @@ -279,7 +279,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing trigparms.ztvalue_new = NULL; ) operation = (do_subtree ? JNL_KILL : JNL_ZKILL); - for (;;) + for ( ; ; ) { actual_update = 0; # ifdef GTM_TRIGGER @@ -307,11 +307,10 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing if (cdb_sc_normal != cdb_status) { /* gvcst_root_search invoked from REDO_ROOT_SEARCH_IF_NEEDED ended up with a restart situation but did not * actually invoke t_retry. Instead, it returned control back to us asking us to restart. + * Cannot enable assert (which has an assert about t_tries < CDB_STAGNATE) because it is possible for us + * to get cdb_sc_gvtrootmod2 restart when t_tries == CDB_STAGNATE. Pass GOTO_RETRY parameter accordingly. */ - GOTO_RETRY(SKIP_ASSERT_TRUE); /* cannot enable assert (which has an assert about t_tries < CDB_STAGNATE) - * because it is possible for us to get cdb_sc_gvtrootmod2 restart when - * t_tries == CDB_STAGNATE. - */ + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } # endif /* Need to reinitialize gvt_hist & alt_hist for each try as it might have got set to a value in the previous @@ -358,12 +357,12 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing * Needed as t_retry only resets clue of gv_target which is not the directory tree anymore. */ csa->dir_tree->clue.end = 0; - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } if ((gv_altkey->end + 1) == dir_hist->h[0].curr_rec.match) { /* Case (2b) : GVT now exists for this global */ cdb_status = cdb_sc_gvtrootmod; - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } else { /* Case (2a) : GVT does not exist for this global */ gvt_hist = dir_hist; /* validate directory tree history in t_end/tp_hist */ @@ -387,7 +386,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing dlr_data = DG_DATAGET; /* tell dataget we want full info regarding descendants */ cdb_status = gvcst_dataget(&dlr_data, ztold_mval); if (cdb_sc_normal != cdb_status) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); assert((11 >= dlr_data) && (1 >= (dlr_data % 10))); /* Invoke triggers for KILL as long as $data is nonzero (1 or 10 or 11). * Invoke triggers for ZKILL only if $data is 1 or 11 (for 10 case, ZKILL is a no-op). @@ -427,7 +426,9 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing assert(lcl_implicit_tstart || *span_status); cdb_status = cdb_sc_normal; /* signal "retry:" to avoid t_retry call */ assert(CDB_STAGNATE >= t_tries); - GOTO_RETRY(SKIP_ASSERT_TRUE);; /* Cannot check assert because above assert is >= t_tries */ + GOTO_RETRY(cdb_status, SKIP_ASSERT_TRUE); /* Need to skip assert because t_tries + * can be == CDB_STAGNATE. + */ } REMOVE_ZTWORM_JFB_IF_NEEDED(ztworm_jfb, jfb, sgm_info_ptr); } @@ -463,11 +464,11 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing /* Skip assert inside GOTO_RETRY macro as the WBTEST_ANTIFREEZE_GVKILLFAIL white-box testcase * intentionally triggers a GVKILLFAIL error. */ - GOTO_RETRY(SKIP_ASSERT_TRUE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_TRUE); } #endif if (cdb_sc_normal != (cdb_status = gvcst_search(gv_currkey, NULL))) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); assert(gv_altkey->top == gv_currkey->top); assert(gv_altkey->top == gv_keysize); end = gv_currkey->end; @@ -511,7 +512,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing { cdb_status = tp_hist(NULL); if (cdb_sc_normal != cdb_status) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); *span_status = TRUE; # ifdef GTM_TRIGGER if (lcl_implicit_tstart) @@ -542,11 +543,11 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing } gv_altkey->end = end; if (cdb_sc_normal != (cdb_status = gvcst_search(gv_altkey, alt_hist))) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); if (alt_hist->depth != gvt_hist->depth) { cdb_status = cdb_sc_badlvl; - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } right_extra = FALSE; left_extra = TRUE; @@ -574,7 +575,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing goto research; } if (cdb_sc_delete_parent != cdb_status) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); left_extra = right_extra = TRUE; } else @@ -601,7 +602,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing left_extra = TRUE; cdb_status = cdb_sc_normal; } else - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); local_srch_rec.offset = local_srch_rec.match = 0; cdb_status = gvcst_kill_blk(right, lev, gv_altkey, local_srch_rec, right->curr_rec, @@ -617,7 +618,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing right_extra = TRUE; cdb_status = cdb_sc_normal; } else - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } } } @@ -784,7 +785,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing { cdb_status = tp_hist(alt_hist); if (cdb_sc_normal != cdb_status) - GOTO_RETRY(SKIP_ASSERT_FALSE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } /* Note down $tlevel (used later) before it is potentially changed by op_tcommit below */ lcl_dollar_tlevel = dollar_tlevel; @@ -794,7 +795,7 @@ void gvcst_kill2(boolean_t do_subtree, boolean_t *span_status, boolean_t killing assert(gvt_root); GVTR_OP_TCOMMIT(cdb_status); if (cdb_sc_normal != cdb_status) - GOTO_RETRY(SKIP_ASSERT_TRUE); + GOTO_RETRY(cdb_status, SKIP_ASSERT_FALSE); } # endif if (!killing_chunks) diff --git a/sr_port/gvcst_kill_blk.c b/sr_port/gvcst_kill_blk.c old mode 100644 new mode 100755 index 291243a8..13dc5c17 --- a/sr_port/gvcst_kill_blk.c +++ b/sr_port/gvcst_kill_blk.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -142,11 +142,17 @@ enum cdb_sc gvcst_kill_blk(srch_blk_status *blkhist, * data block and NOT if a KILL happens. Usually this is done by a t_write(GDS_WRITE_KILLTN) * call but since in this case the entire block is being freed, "t_write" wont be invoked * so we need to explicitly set GDS_WRITE_KILLTN like t_write would have (GTM-8269). + * Note: blkhist->first_tp_srch_status is not reliable outside of TP. Thankfully the recompute + * list is also maintained only in case of TP so a check of dollar_tlevel is enough to + * dereference both "first_tp_srch_status" and "recompute_list_head". */ - t1 = blkhist->first_tp_srch_status ? blkhist->first_tp_srch_status : blkhist; - cse = t1->cse; - if ((NULL != cse) && cse->recompute_list_head) - cse->write_type |= GDS_WRITE_KILLTN; + if (dollar_tlevel) + { + t1 = blkhist->first_tp_srch_status ? blkhist->first_tp_srch_status : blkhist; + cse = t1->cse; + if ((NULL != cse) && cse->recompute_list_head) + cse->write_type |= GDS_WRITE_KILLTN; + } return cdb_sc_delete_parent; } } diff --git a/sr_port/gvcst_kill_blk.h b/sr_port/gvcst_kill_blk.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_kill_sort.c b/sr_port/gvcst_kill_sort.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_kill_sort.h b/sr_port/gvcst_kill_sort.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_lbm_check.c b/sr_port/gvcst_lbm_check.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_lbm_check.h b/sr_port/gvcst_lbm_check.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_lftsib.c b/sr_port/gvcst_lftsib.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_map_build.c b/sr_port/gvcst_map_build.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_map_build.h b/sr_port/gvcst_map_build.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_order.c b/sr_port/gvcst_order.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_protos.h b/sr_port/gvcst_protos.h old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_put.c b/sr_port/gvcst_put.c index 1b99f4fc..b30af633 100644 --- a/sr_port/gvcst_put.c +++ b/sr_port/gvcst_put.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -316,10 +316,10 @@ void gvcst_put(mval *val) * (see comment in errorsp.h), an attempt to invoke a restart returns us back to the mdb_condition_handler created * by the initial dm-start. Unwinding from there returns to the OS -- i.e., the process silently dies. * Also note that we need to ensure the retry logic at the bottom of gvcst_put2 is executed in case a restart - * happens within a trigger invocation. We want to return from gvtr_match_n_invoke so we can goto retry. + * happens within a trigger invocation. We want to return from gvtr_match_n_invoke, so we can goto retry. */ op_tstart((IMPLICIT_TSTART + IMPLICIT_TRIGGER_TSTART), TRUE, &literal_batch, 0); - frame_pointer->flags |= SFF_IMPLTSTART_CALLD; + frame_pointer->flags |= SSF_NORET_VIA_MUMTSTART; assert(!donot_INVOKE_MUMTSTART); DEBUG_ONLY(donot_INVOKE_MUMTSTART = TRUE); ESTABLISH_NORET(gvcst_put_ch, est_first_pass); diff --git a/sr_port/gvcst_query.c b/sr_port/gvcst_query.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_queryget.c b/sr_port/gvcst_queryget.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_root_search.c b/sr_port/gvcst_root_search.c old mode 100644 new mode 100755 index ca922cb8..fede4e1b --- a/sr_port/gvcst_root_search.c +++ b/sr_port/gvcst_root_search.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -124,6 +125,10 @@ static mstr global_collation_mstr; rootsrch_ctxt_ptr->start_tn = start_tn; \ rootsrch_ctxt_ptr->update_trans = update_trans; \ rootsrch_ctxt_ptr->inctn_opcode = inctn_opcode; \ + /* Resetting and restoring of update_trans is necessary to avoid blowing an assert in \ + * t_begin that it is 0. \ + */ \ + update_trans = 0; \ inctn_opcode = 0; \ rootsrch_ctxt_ptr->t_err = t_err; \ rootsrch_ctxt_ptr->hold_onto_crit = cs_addrs->hold_onto_crit; \ diff --git a/sr_port/gvcst_rtsib.c b/sr_port/gvcst_rtsib.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_search.c b/sr_port/gvcst_search.c old mode 100644 new mode 100755 index d651e2c2..94542570 --- a/sr_port/gvcst_search.c +++ b/sr_port/gvcst_search.c @@ -228,9 +228,11 @@ enum cdb_sc gvcst_search(gv_key *pKey, /* Key to search for */ if (TP_IS_CDB_SC_BLKMOD3(cr, tp_srch_status, blkhdrtn)) { assert(CDB_STAGNATE > t_tries); + assert(0 == leaf_blk_hist->level); + assert(0 == tp_srch_status->level); TP_TRACE_HIST_MOD(leaf_blk_hist->blk_num, gv_target, tp_blkmod_gvcst_srch, cs_data, tp_srch_status->tn, - blkhdrtn, ((blk_hdr_ptr_t)buffaddr)->levl); + blkhdrtn, leaf_blk_hist->level); return cdb_sc_blkmod; } if (!is_mm && ((tp_srch_status->cycle != cr->cycle) diff --git a/sr_port/gvcst_tp_init.c b/sr_port/gvcst_tp_init.c old mode 100644 new mode 100755 diff --git a/sr_port/gvcst_zprevious.c b/sr_port/gvcst_zprevious.c old mode 100644 new mode 100755 diff --git a/sr_port/gvincr_compute_post_incr.c b/sr_port/gvincr_compute_post_incr.c old mode 100644 new mode 100755 diff --git a/sr_port/gvincr_recompute_upd_array.c b/sr_port/gvincr_recompute_upd_array.c old mode 100644 new mode 100755 index fa94eea7..ea1b9fe8 --- a/sr_port/gvincr_recompute_upd_array.c +++ b/sr_port/gvincr_recompute_upd_array.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2004, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2004-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -64,6 +65,7 @@ enum cdb_sc gvincr_recompute_upd_array(srch_blk_status *bh, struct cw_set_elemen rec_hdr_ptr_t curr_rec_hdr, rp; sm_uc_ptr_t cp1, buffaddr; unsigned short rec_size; + unsigned int bsiz; jnl_format_buffer *jfb; blk_hdr_ptr_t old_block; sgmnt_addrs *csa; @@ -192,8 +194,22 @@ enum cdb_sc gvincr_recompute_upd_array(srch_blk_status *bh, struct cw_set_elemen { old_block = (blk_hdr_ptr_t)cse->old_block; if (old_block->tn < csa->jnl->jnl_buff->epoch_tn) - cse->blk_checksum = jnl_get_checksum((uint4 *)old_block, csa, old_block->bsiz); - else + { + bsiz = old_block->bsiz; + /* Note that at this point, validation is still not complete (in caller "t_end"). So it is + * possible we are looking at a block with garbage block-header (possible for example if this + * is a block marked FREE in the bitmap but was read from disk due to concurrency conflicts + * and was all zeroes but because this db is encrypted, the 0-block was decrypted before being + * placed in the global buffer which made the block-header contain garbage. So need edit-checks + * on "bsiz" field in block header. + */ + if (bsiz > csa->hdr->blk_size) + { /* This is a restartable condition. Restart */ + assert(CDB_STAGNATE > t_tries); + return cdb_sc_mkblk; + } + cse->blk_checksum = jnl_get_checksum(old_block, csa, bsiz); + } else cse->blk_checksum = 0; } } diff --git a/sr_port/gvinit.c b/sr_port/gvinit.c old mode 100644 new mode 100755 diff --git a/sr_port/gvn.c b/sr_port/gvn.c old mode 100644 new mode 100755 diff --git a/sr_port/gvname_env_restore.c b/sr_port/gvname_env_restore.c old mode 100644 new mode 100755 diff --git a/sr_port/gvname_env_save.c b/sr_port/gvname_env_save.c old mode 100644 new mode 100755 diff --git a/sr_port/gvname_info.h b/sr_port/gvname_info.h old mode 100644 new mode 100755 diff --git a/sr_port/gvstrsub.h b/sr_port/gvstrsub.h old mode 100644 new mode 100755 diff --git a/sr_port/gvsub2str.c b/sr_port/gvsub2str.c old mode 100644 new mode 100755 diff --git a/sr_port/gvsub2str.h b/sr_port/gvsub2str.h old mode 100644 new mode 100755 diff --git a/sr_port/gvusr.h b/sr_port/gvusr.h old mode 100644 new mode 100755 diff --git a/sr_port/gvusr_queryget.h b/sr_port/gvusr_queryget.h old mode 100644 new mode 100755 diff --git a/sr_port/gvzwr_arg.c b/sr_port/gvzwr_arg.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwr_fini.c b/sr_port/gvzwr_fini.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwr_init.c b/sr_port/gvzwr_init.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwr_out.c b/sr_port/gvzwr_out.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwr_var.c b/sr_port/gvzwr_var.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwrite_ch.c b/sr_port/gvzwrite_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwrite_clnup.c b/sr_port/gvzwrite_clnup.c old mode 100644 new mode 100755 diff --git a/sr_port/gvzwrite_clnup.h b/sr_port/gvzwrite_clnup.h old mode 100644 new mode 100755 diff --git a/sr_port/h.mpt b/sr_port/h.mpt old mode 100644 new mode 100755 diff --git a/sr_port/hashtab.h b/sr_port/hashtab.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_implementation.h b/sr_port/hashtab_implementation.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_int4.c b/sr_port/hashtab_int4.c old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_int4.h b/sr_port/hashtab_int4.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_int8.c b/sr_port/hashtab_int8.c old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_int8.h b/sr_port/hashtab_int8.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_mname.h b/sr_port/hashtab_mname.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_objcode.c b/sr_port/hashtab_objcode.c old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_objcode.h b/sr_port/hashtab_objcode.h old mode 100644 new mode 100755 diff --git a/sr_port/hashtab_rehash_ch.c b/sr_port/hashtab_rehash_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/have_crit.c b/sr_port/have_crit.c old mode 100644 new mode 100755 index d9d69cbc..a985de5e --- a/sr_port/have_crit.c +++ b/sr_port/have_crit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -44,10 +45,10 @@ error_def(ERR_MUTEXRELEASED); /* Return number of regions (including jnlpool dummy region) if have or are aquiring crit or in_wtstart * ** NOTE ** This routine is called from signal handlers and is thus called asynchronously. * If CRIT_IN_COMMIT bit is set, we check if in middle of commit (PHASE1 inside crit or PHASE2 outside crit) on some region. - * If CRIT_RELEASE bit is set, we release crit on region(s) that: - * 1) we hold crit on (neither CRIT_IN_COMMIT NOR CRIT_TRANS_NO_REG is specified) - * 2) are part of the current transactions except those regions that are marked as being valid - * to have crit in by virtue of their crit_check_cycle value is the same as crit_deadlock_check_cycle. + * If CRIT_RELEASE bit is set AND + * a) If CRIT_TRANS_NO_REG is not specified, we release crit on ALL regions that we hold crit on. + * b) If CRIT_TRANS_NO_REG is specified, we release crit on ONLY those regions that are not part of the current TP transaction + * (detected by their crit_check_cycle value being the same as crit_deadlock_check_cycle). * Note: CRIT_RELEASE implies CRIT_ALL_REGIONS * If CRIT_ALL_REGIONS bit is set, go through the entire list of regions */ @@ -62,6 +63,7 @@ uint4 have_crit(uint4 crit_state) if (crit_state & CRIT_RELEASE) { UNIX_ONLY(assert(!jgbl.onlnrlbk)); /* should not request crit to be released if online rollback */ + assert(0 == crit_count); /* Make sure we dont return right away in the next "if" block in case of release */ crit_state |= CRIT_ALL_REGIONS; } if ((0 != crit_count) && (crit_state & CRIT_HAVE_ANY_REG)) @@ -79,7 +81,7 @@ uint4 have_crit(uint4 crit_state) csa = &FILE_INFO(r_local)->s_addrs; if (NULL != csa) { - if ((csa->now_crit) && (crit_state & CRIT_HAVE_ANY_REG)) + if (csa->now_crit && (crit_state & CRIT_HAVE_ANY_REG)) { crit_reg_cnt++; /* It is possible that if DSE has done a CRIT REMOVE and stolen our crit, it @@ -88,15 +90,14 @@ uint4 have_crit(uint4 crit_state) * and it should die at the earliest opportunity, there being no way to know if * that is what happened anyway. */ - if (csa->nl->in_crit != process_id) - GTMASSERT; + assertpro(csa->nl->in_crit == process_id); /* If we are releasing (all) regions with critical section or if special * TP case, release if the cycle number doesn't match meaning this is a * region we should not hold crit in (even if it is part of tp_reg_list). */ - if ((0 != (crit_state & CRIT_RELEASE)) && - (0 == (crit_state & CRIT_NOT_TRANS_REG) || - crit_deadlock_check_cycle != csa->crit_check_cycle)) + if ((0 != (crit_state & CRIT_RELEASE)) + && (0 == (crit_state & CRIT_NOT_TRANS_REG) + || (crit_deadlock_check_cycle != csa->crit_check_cycle))) { assert(WBTEST_HOLD_CRIT_ENABLED); assert(!csa->hold_onto_crit); diff --git a/sr_port/have_crit.h b/sr_port/have_crit.h old mode 100644 new mode 100755 index 82a1a086..7d18a173 --- a/sr_port/have_crit.h +++ b/sr_port/have_crit.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -31,6 +31,8 @@ #endif #ifdef UNIX #include "gt_timer.h" +#include "gtm_multi_thread.h" +#include "gtm_multi_proc.h" #endif typedef enum @@ -45,17 +47,17 @@ typedef enum INTRPT_IN_GDS_RUNDOWN, INTRPT_IN_SS_INITIATE, INTRPT_IN_ZLIB_CMP_UNCMP, - INTRPT_IN_TRIGGER_NOMANS_LAND, /* State where have trigger base frame but no trigger (exec) frame */ + INTRPT_IN_TRIGGER_NOMANS_LAND, /* State where have trigger base frame but no trigger (exec) frame. */ INTRPT_IN_MUR_OPEN_FILES, INTRPT_IN_TRUNC, INTRPT_IN_SET_NUM_ADD_PROCS, INTRPT_IN_SYSCONF, - INTRPT_NO_TIMER_EVENTS, /* State where primary reason for deferral is to avoid timer pops */ - INTRPT_IN_FFLUSH, /* Deferring interrupts during fflush */ - INTRPT_IN_SHMDT, /* Deferring interrupts during SHMDT */ - INTRPT_IN_WAIT_FOR_DISK_SPACE, /* Deferring interrupts during wait_for_disk_space.c */ + INTRPT_NO_TIMER_EVENTS, /* State where primary reason for deferral is to avoid timer pops. */ + INTRPT_IN_FFLUSH, /* Deferring interrupts during fflush. */ + INTRPT_IN_SHMDT, /* Deferring interrupts during SHMDT. */ + INTRPT_IN_WAIT_FOR_DISK_SPACE, /* Deferring interrupts during wait_for_disk_space.c. */ INTRPT_IN_WCS_WTSTART, /* Deferring interrupts until cnl->intent_wtstart is decremented and dbsync timer is - * started */ + * started. */ INTRPT_IN_X_TIME_FUNCTION, /* Deferring interrupts in non-nesting functions, such as localtime, ctime, and mktime. */ INTRPT_IN_FUNC_WITH_MALLOC, /* Deferring interrupts while in libc- or system functions that do a malloc internally. */ INTRPT_IN_FDOPEN, /* Deferring interrupts in fdopen. */ @@ -63,8 +65,18 @@ typedef enum INTRPT_IN_FORK_OR_SYSTEM, /* Deferring interrupts in fork or system. */ INTRPT_IN_FSTAT, /* Deferring interrupts in fstat. */ INTRPT_IN_TLS_FUNCTION, /* Deferring interrupts in TLS functions. */ - INTRPT_IN_CONDSTK, /* Deferring interrupts during condition handler stack manipulations */ - INTRPT_NUM_STATES /* Should be the *last* one in the enum */ + INTRPT_IN_CONDSTK, /* Deferring interrupts during condition handler stack manipulations. */ + INTRPT_IN_GTMIO_CH_SET, /* Deferring interrupts during the setting of gtmio_ch condition handler. */ + INTRPT_IN_OBJECT_FILE_COMPILE, /* Deferring interrupts during the creation of an object file. */ + INTRPT_IN_IO_READ, /* Deferring interrupts for async signal unsafe calls in iorm_readfl.c. */ + INTRPT_IN_IO_WRITE, /* Deferring interrupts for async signal unsafe calls in iorm_write.c. */ + INTRPT_IN_PTHREAD_NB, /* Deferring interrupts for non-blocking async signal unsafe calls. */ + INTRPT_IN_GTM_MULTI_PROC, /* Deferring interrupts while inside "gtm_multi_proc" function */ + INTRPT_IN_EINTR_WRAPPERS, /* Deferring interrupts while inside "eintr_wrappers.h" macros */ + INTRPT_IN_MKSTEMP, /* Deferring interrupts while in mkstemp */ + INTRPT_IN_CRYPT_RECONFIG, /* Deferring interrupts during reconfiguration of the encryption state. */ + INTRPT_IN_UNLINK_AND_CLEAR, /* Deferring interrupts around unlink and clearing the filename being unlinked */ + INTRPT_NUM_STATES /* Should be the *last* one in the enum. */ } intrpt_state_t; GBLREF intrpt_state_t intrpt_ok_state; @@ -81,12 +93,17 @@ GBLREF boolean_t deferred_timers_check_needed; * the current deferred window. Since we do not want forced_exit state to ever regress, and there might be several signals delivered * within the same deferred window, assert that forced_exit is either 0 or 1 before setting it to 1. */ -#define SET_FORCED_EXIT_STATE \ -{ \ - GBLREF VSIG_ATOMIC_T forced_exit; \ - \ - assert((0 == forced_exit) || (1 == forced_exit)); \ - forced_exit = 1; \ +#define SET_FORCED_EXIT_STATE \ +{ \ + char *rname; \ + GBLREF VSIG_ATOMIC_T forced_exit; \ + \ + /* Below code is not thread safe as it modifies global variable "forced_exit" */ \ + assert(!INSIDE_THREADED_CODE(rname)); \ + assert((0 == forced_exit) || (1 == forced_exit)); \ + forced_exit = 1; \ + SET_FORCED_THREAD_EXIT; /* Signal any running threads to stop */ \ + SET_FORCED_MULTI_PROC_EXIT; /* Signal any parallel processes to stop */ \ } /* Set the value of forced_exit to 2. This should indicate that we are already in the exit processing, and do not want to handle any @@ -97,12 +114,17 @@ GBLREF boolean_t deferred_timers_check_needed; * flag servs the same purpose (and is also checked by DEFERRED_EXIT_HANDLING_CHECK), so it is not necessary for either * generic_signal_handler or dbcertify_signal_handler to set forced_exit to 2. */ -#define SET_FORCED_EXIT_STATE_ALREADY_EXITING \ -{ \ - GBLREF VSIG_ATOMIC_T forced_exit; \ - \ - assert(VMS_ONLY((0 == forced_exit) || ) (1 == forced_exit)); \ - forced_exit = 2; \ +#define SET_FORCED_EXIT_STATE_ALREADY_EXITING \ +{ \ + char *rname; \ + GBLREF VSIG_ATOMIC_T forced_exit; \ + GBLREF boolean_t forced_thread_exit; \ + \ + /* Below code is not thread safe as it modifies global variable "forced_exit" */ \ + assert(!INSIDE_THREADED_CODE(rname)); \ + assert(1 == forced_exit); \ + assert(forced_thread_exit); \ + forced_exit = 2; \ } /* Macro to be used whenever we want to handle any signals that we deferred handling and exit in the process. @@ -110,36 +132,38 @@ GBLREF boolean_t deferred_timers_check_needed; */ #define DEFERRED_EXIT_HANDLING_CHECK \ { \ - VMS_ONLY(GBLREF int4 exi_condition;) \ + char *rname; \ + \ GBLREF int process_exiting; \ GBLREF VSIG_ATOMIC_T forced_exit; \ GBLREF volatile int4 gtmMallocDepth; \ \ /* The forced_exit state of 2 indicates that the exit is already in progress, so we do not \ - * need to process any deferred events. \ + * need to process any deferred events. Note if threads are running, check if forced_exit is \ + * non-zero and if so exit the thread (using pthread_exit) otherwise skip deferred event \ + * processing. A similar check will happen once threads stop running. \ */ \ - if (2 > forced_exit) \ + if (INSIDE_THREADED_CODE(rname)) \ + { \ + PTHREAD_EXIT_IF_FORCED_EXIT; \ + } else if (2 > forced_exit) \ { /* If forced_exit was set while in a deferred state, disregard any deferred timers and \ * invoke deferred_signal_handler directly. \ */ \ if (forced_exit) \ { \ if (!process_exiting && OK_TO_INTERRUPT) \ - { \ - UNIX_ONLY(deferred_signal_handler();) \ - VMS_ONLY(sys$exit(exi_condition);) \ - } \ - } \ - UNIX_ONLY( \ - else if (deferred_timers_check_needed) \ + deferred_signal_handler(); \ + } else if (deferred_timers_check_needed) \ { \ if (!process_exiting && OK_TO_INTERRUPT) \ check_for_deferred_timers(); \ } \ - ) \ } \ } +GBLREF boolean_t multi_thread_in_use; /* TRUE => threads are in use. FALSE => not in use */ + /* Macro to cause deferrable interrupts to be deferred recording the cause. * If interrupt is already deferred, state is not changed. * @@ -162,32 +186,38 @@ GBLREF boolean_t deferred_timers_check_needed; * they will all be in-flight instructions when the interrupt occurs so the hardware will guarantee * all such instructions are completely done or completely discarded before servicing the interrupt * which means the interrupt service routine will never see a reordered state of the above code. + * + * If we are currently executing in a thread then interrupts will not be delivered to us but instead + * will go to the master process (that spawned off threads like us) and therefore the thread flow is + * not expected to be interrupted. So skip the macro processing in that case. This is necessary because + * it manipulates the global variable "intrpt_ok_state" which is a no-no inside threaded code. */ -#define DEFER_INTERRUPTS(NEWSTATE) \ -{ \ - if (INTRPT_OK_TO_INTERRUPT == intrpt_ok_state) \ - /* Only reset state if we are in "OK" state */ \ - intrpt_ok_state = NEWSTATE; \ - else \ - assert((NEWSTATE) != intrpt_ok_state); /* Make sure not nesting same code */ \ -} -/* Re-enable deferrable interrupts if the expected state is found. If expected state is not found, then - * we must have nested interrupt types. Avoid state changes in that case. When the nested state pops, - * interrupts will be restored. +/* NEWSTATE is an Input parameter. OLDSTATE is an Output parameter (later used as NEWSTATE parameter to + * ENABLE_INTERRUPTS macro). Callers, e.g. ESTABLISH_RET, rely on OLDSTATE being set irrespective of + * whether multi_thread_in_use is set or not. */ -#define ENABLE_INTERRUPTS(OLDSTATE) \ +#define DEFER_INTERRUPTS(NEWSTATE, OLDSTATE) \ { \ - assert(((OLDSTATE) == intrpt_ok_state) || (INTRPT_OK_TO_INTERRUPT != intrpt_ok_state)); \ - if ((OLDSTATE) == intrpt_ok_state) \ - { /* Only reset state if in expected state - othwise state must be non-zero which is \ - * asserted above. \ - */ \ - intrpt_ok_state = INTRPT_OK_TO_INTERRUPT; \ - DEFERRED_EXIT_HANDLING_CHECK; /* check if signals were deferred while held lock */ \ + OLDSTATE = intrpt_ok_state; \ + if (!multi_thread_in_use) \ + { \ + assert(INTRPT_OK_TO_INTERRUPT != NEWSTATE); \ + intrpt_ok_state = NEWSTATE; \ } \ } +/* Restore deferrable interrupts back to the state it was at time of corresponding DEFER_INTERRUPTS call */ +#define ENABLE_INTERRUPTS(OLDSTATE, NEWSTATE) \ +{ \ + if (!multi_thread_in_use) \ + { \ + assert(OLDSTATE == intrpt_ok_state); \ + intrpt_ok_state = NEWSTATE; \ + if (INTRPT_OK_TO_INTERRUPT == intrpt_ok_state) \ + DEFERRED_EXIT_HANDLING_CHECK; /* check if signals were deferred in deferred zone */ \ + } \ +} #define OK_TO_SEND_MSG ((INTRPT_IN_X_TIME_FUNCTION != intrpt_ok_state) \ && (INTRPT_IN_LOG_FUNCTION != intrpt_ok_state) \ && (INTRPT_IN_FUNC_WITH_MALLOC != intrpt_ok_state) \ diff --git a/sr_port/hd.mpt b/sr_port/hd.mpt old mode 100644 new mode 100755 diff --git a/sr_port/ho.mpt b/sr_port/ho.mpt old mode 100644 new mode 100755 diff --git a/sr_port/i2asc.c b/sr_port/i2asc.c old mode 100644 new mode 100755 diff --git a/sr_port/i2hex.c b/sr_port/i2hex.c old mode 100644 new mode 100755 diff --git a/sr_port/i2hex_blkfill.c b/sr_port/i2hex_blkfill.c old mode 100644 new mode 100755 diff --git a/sr_port/i2hex_nofill.c b/sr_port/i2hex_nofill.c old mode 100644 new mode 100755 diff --git a/sr_port/indir.h b/sr_port/indir.h old mode 100644 new mode 100755 index 9c14e7b6..67b68c8a --- a/sr_port/indir.h +++ b/sr_port/indir.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -81,7 +82,6 @@ INDIR(indir_fndata, f_data, OC_FNDATA) ,INDIR(indir_ztrigger, m_ztrigger, 0) #endif ,INDIR(indir_zhalt, m_zhalt, 0) -,INDIR(indir_fnzwrite, f_zwrite, OC_FNZWRITE) ,INDIR(indir_savglvn0, indirection, 0) /* this entry and the following use indirection as a dummy value */ ,INDIR(indir_savlvn, indirection, 0) ,INDIR(indir_savglvn1, indirection, 0) /* 0 and 1 (above) separate 2 variants of generated code */ diff --git a/sr_port/indir_enum.h b/sr_port/indir_enum.h old mode 100644 new mode 100755 diff --git a/sr_port/indirection.c b/sr_port/indirection.c old mode 100644 new mode 100755 index 127b793b..eebec1fe --- a/sr_port/indirection.c +++ b/sr_port/indirection.c @@ -22,7 +22,6 @@ #include "stringpool.h" GBLREF boolean_t run_time; -GBLREF char *lexical_ptr; GBLREF spdesc stringpool; GBLREF unsigned char *source_buffer; GBLREF int source_column; @@ -65,7 +64,7 @@ int indirection(oprtype *a) CLEAR_MVAL_BITS(TADR(indirection_mval)); do { - start = lexical_ptr; + start = TREF(lexical_ptr); advancewindow(); if (TK_LPAREN != TREF(window_token)) { diff --git a/sr_port/init_secshr_addrs.c b/sr_port/init_secshr_addrs.c old mode 100644 new mode 100755 index 38d05552..2016ad9e --- a/sr_port/init_secshr_addrs.c +++ b/sr_port/init_secshr_addrs.c @@ -11,10 +11,6 @@ #include "mdef.h" -#ifdef VMS -#include /* Required for gtmsource.h */ -#endif - #include "gdsroot.h" #include "gtm_facility.h" #include "fileinfo.h" @@ -30,6 +26,10 @@ #include "hashtab_int4.h" /* needed for tp.h */ #include "tp.h" #include "init_secshr_addrs.h" +#ifdef DEBUG +#include "wbox_test_init.h" +#include "gt_timer.h" +#endif GBLREF gd_addr_fn_ptr get_next_gdr_addrs; GBLREF cw_set_element *cw_set_addrs; @@ -79,5 +79,21 @@ void init_secshr_addrs(gd_addr_fn_ptr getnxtgdr, cw_set_element *cwsetaddrs, cs_addrs_addrs = cs_addrs_address; kip_csa_addrs = kip_csa_address; need_kip_incr_addrs = need_kip_incr_address; - start_tn_addrs = start_tn_address; +# ifdef DEBUG + if (WBTEST_ENABLED(WBTEST_SLAM_SECSHR_ADDRS)) + { /* For this white box test, we're going to send ourselves a SIGTERM termination signal at a specific point + * in the processing to make sure it succeeds without exploding during database initialization. To test the + * condition GTM-8455 fixes + */ + kill(epid, SIGTERM); + hiber_start(20 * 1000); /* Wait up to 20 secs - don't use wait_any as the heartbeat timer + * will kill this wait in 0-7 seconds or so. + */ + /* We sent, we waited, wait expired - weird - funky condition is for identification purposes (to identify the + * actual assert). We should be dead or dying, not trying to resume. + */ + assert(WBTEST_SLAM_SECSHR_ADDRS == 0); + } +# endif + start_tn_addrs = start_tn_address; /* WARNING secshr_db_clnup relies on this being the last assignment in this setup */ } diff --git a/sr_port/init_secshr_addrs.h b/sr_port/init_secshr_addrs.h index 084ce18e..8b5311a9 100644 --- a/sr_port/init_secshr_addrs.h +++ b/sr_port/init_secshr_addrs.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2010 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * diff --git a/sr_port/ins_errtriple.c b/sr_port/ins_errtriple.c old mode 100644 new mode 100755 diff --git a/sr_port/ins_triple.c b/sr_port/ins_triple.c old mode 100644 new mode 100755 diff --git a/sr_port/insert_region.c b/sr_port/insert_region.c old mode 100644 new mode 100755 index 7a115736..8930f0a5 --- a/sr_port/insert_region.c +++ b/sr_port/insert_region.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -29,13 +30,7 @@ #include "mdef.h" -#ifdef VMS -#include -#endif - -#ifdef UNIX #include "gtm_ipc.h" /* needed for FTOK */ -#endif #include "gtm_string.h" #include "gdsroot.h" @@ -69,18 +64,13 @@ tp_region *insert_region( gd_region *reg, tp_region **reg_free_list, int4 size) { + boolean_t t_retry_needed; + enc_info_t *encr_ptr; int4 local_fid_index, match; - sgmnt_addrs *csa; + sgmnt_addrs *csa, *tr_csa; tp_region *tr, *tr_last, *tr_new; unique_file_id local_id; -# ifdef VMS - char *local_id_fiptr; - file_control *fc; - uint4 status; - gd_region *temp_reg; -# elif UNIX int save_errno; -# endif DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; @@ -88,36 +78,6 @@ tp_region *insert_region( gd_region *reg, assert(!IS_GTM_IMAGE || dollar_tlevel); if (reg->open) csa = (sgmnt_addrs *)&FILE_INFO(reg)->s_addrs; -# if defined(VMS) - if (!reg->open) - { - temp_reg = gv_cur_region; - gv_cur_region = reg; - local_id_fiptr = local_id.file_id; - if (!mupfndfil(reg, NULL)) - { - gv_cur_region = temp_reg; - return NULL; - } - FILE_CNTL_INIT_IF_NULL(reg->dyn.addr); - fc = reg->dyn.addr->file_cntl; - fc->file_type = reg->dyn.addr->acc_meth; - fc->op = FC_OPEN; - status = dbfilop(fc); - if (status & 1) - { - local_id_fiptr = &(FILE_INFO(reg)->file_id); - sys$dassgn(FILE_INFO(reg)->fab->fab$l_stv); - } else - { - gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) status); - gv_cur_region = temp_reg; - return NULL; - } - gv_cur_region = temp_reg; - } else - local_fid_index = csa->fid_index; -# elif defined(UNIX) if (!reg->open) { if (!mupfndfil(reg, NULL)) @@ -129,7 +89,6 @@ tp_region *insert_region( gd_region *reg, } } else local_fid_index = csa->fid_index; -# endif /* See if the region is already on the list or if we have to add it */ for (tr = *reg_list, tr_last = NULL; NULL != tr; tr = tr->fPtr) { @@ -159,16 +118,12 @@ tp_region *insert_region( gd_region *reg, /* let's sort here */ if (!tr->reg->open) { /* all regions closed */ - VMS_ONLY(match = memcmp(&(tr->file.file_id), local_id_fiptr, SIZEOF(gd_id))); - UNIX_ONLY(match = gdid_cmp(&(tr->file.file_id), &(local_id.uid))); + match = gdid_cmp(&(tr->file.file_id), &(local_id.uid)); } else { /* the other regions are open, i.e. file is pointing to fid_index, use file_id * from node_local */ - VMS_ONLY(match = memcmp( - &(((sgmnt_addrs *)&FILE_INFO(tr->reg)->s_addrs)->nl->unique_id.file_id), - local_id_fiptr, SIZEOF(gd_id))); - UNIX_ONLY(match = gdid_cmp( - &(((sgmnt_addrs *)&FILE_INFO(tr->reg)->s_addrs)->nl->unique_id.uid), &(local_id.uid))); + tr_csa = (sgmnt_addrs *)&FILE_INFO(tr->reg)->s_addrs; + match = gdid_cmp(&(tr_csa->nl->unique_id.uid), &(local_id.uid)); } if (0 == match) return tr; @@ -189,10 +144,8 @@ tp_region *insert_region( gd_region *reg, } tr_new->reg = reg; /* Add this region to end of list */ if (!reg->open) - { - VMS_ONLY(memcpy(&(tr_new->file.file_id), local_id_fiptr, SIZEOF(gd_id))); - UNIX_ONLY(tr_new->file.file_id = local_id.uid;) - } else + tr_new->file.file_id = local_id.uid; + else tr_new->file.fid_index = local_fid_index; if (NULL == tr_last) { /* First element on the list */ @@ -210,7 +163,23 @@ tp_region *insert_region( gd_region *reg, * tp_restart() (invoked through t_retry from gvcst_init) will open "reg" as well as get crit on it for us. */ DEBUG_ONLY(TREF(ok_to_call_wcs_recover) = TRUE;) - if (FALSE == grab_crit_immediate(reg)) /* Attempt lockdown now */ + t_retry_needed = (FALSE == grab_crit_immediate(reg)); /* Attempt lockdown now */ + if (!t_retry_needed) + { /* The "grab_crit_immediate" returned successfully. Check if encryption cycles match. + * If they dont, we need to do "grab_crit_encr_cycle_check" but that uses grab_crit and + * is not easily possible to convert it to a "grab_crit_immediate". So assume as if + * the "grab_crit_immediate" failed in this case too and do "t_retry" instead which will + * do the right thing of releasing crit on all regions and fixing the encryption cycles + * on all regions before getting crit on all of them. + */ + encr_ptr = csa->encr_ptr; + if ((NULL != encr_ptr) && (csa->nl->reorg_encrypt_cycle != encr_ptr->reorg_encrypt_cycle)) + { + rel_crit(reg); + t_retry_needed = TRUE; + } + } + if (t_retry_needed) { DEBUG_ONLY(TREF(ok_to_call_wcs_recover) = FALSE;) t_retry(cdb_sc_needcrit); /* avoid deadlock -- restart transaction */ diff --git a/sr_port/inst_flush.h b/sr_port/inst_flush.h old mode 100644 new mode 100755 diff --git a/sr_port/int_label.c b/sr_port/int_label.c old mode 100644 new mode 100755 diff --git a/sr_port/io.h b/sr_port/io.h index cc472e70..0d3179a9 100644 --- a/sr_port/io.h +++ b/sr_port/io.h @@ -217,9 +217,6 @@ void io_init(boolean_t term_ctrl); bool io_is_rm(mstr *name); bool io_is_sn(mstr *tn); struct mv_stent_struct *io_find_mvstent(io_desc *io_ptr, boolean_t clear_mvstent); -#ifdef UNIX -bool io_is_tt(char *name); -#endif bool io_open_try(io_log_name *naml, io_log_name *tl, mval *pp, int4 timeout, mval *mspace); enum io_dev_type io_type(mstr *tn); void io_init_name(void); @@ -430,12 +427,16 @@ LITREF unsigned char ebcdic_spaces_block[]; GBLREF io_pair io_std_device; \ GBLREF boolean_t in_prin_gtmio; \ \ + intrpt_state_t prev_intrpt_state; \ + \ if ((>mio_ch != active_ch->ch) && (NULL != (IOD)->out) \ && (NULL != io_std_device.out) && ((IOD)->out == io_std_device.out)) \ { \ + DEFER_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ ESTABLISH(gtmio_ch); \ SET_CH = TRUE; \ in_prin_gtmio = TRUE; \ + ENABLE_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ } else \ SET_CH = FALSE; \ } @@ -446,12 +447,16 @@ LITREF unsigned char ebcdic_spaces_block[]; GBLREF io_pair io_std_device; \ GBLREF boolean_t in_prin_gtmio; \ \ + intrpt_state_t prev_intrpt_state; \ + \ if ((>mio_ch != active_ch->ch) && (NULL != (IOD)->out) \ && (NULL != io_std_device.out) && ((IOD)->out == io_std_device.out)) \ { \ + DEFER_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ ESTABLISH_RET(gtmio_ch, VALUE); \ SET_CH = TRUE; \ in_prin_gtmio = TRUE; \ + ENABLE_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ } else \ SET_CH = FALSE; \ } @@ -462,12 +467,16 @@ LITREF unsigned char ebcdic_spaces_block[]; GBLREF boolean_t in_prin_gtmio; \ DEBUG_ONLY(GBLREF io_pair io_std_device;) \ \ + intrpt_state_t prev_intrpt_state; \ + \ if (SET_CH) \ { \ assert((>mio_ch == active_ch->ch) && (NULL != (IOD)->out) \ && (NULL != io_std_device.out) && ((IOD)->out == io_std_device.out)); \ + DEFER_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ in_prin_gtmio = FALSE; \ REVERT; \ + ENABLE_INTERRUPTS(INTRPT_IN_GTMIO_CH_SET, prev_intrpt_state); \ } \ } diff --git a/sr_port/io_dev_dispatch.h b/sr_port/io_dev_dispatch.h old mode 100644 new mode 100755 diff --git a/sr_port/io_init.c b/sr_port/io_init.c old mode 100644 new mode 100755 diff --git a/sr_port/io_init_ch.c b/sr_port/io_init_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/io_params.h b/sr_port/io_params.h old mode 100644 new mode 100755 diff --git a/sr_port/io_rundown.c b/sr_port/io_rundown.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_ansilab_manager.c b/sr_port/iomt_ansilab_manager.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_close.c b/sr_port/iomt_close.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_dummy.c b/sr_port/iomt_dummy.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_eof.c b/sr_port/iomt_eof.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_erase.c b/sr_port/iomt_erase.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_flush.c b/sr_port/iomt_flush.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_getrec.c b/sr_port/iomt_getrec.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_rddoslab.c b/sr_port/iomt_rddoslab.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_rdone.c b/sr_port/iomt_rdone.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_rdstream.c b/sr_port/iomt_rdstream.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_read.c b/sr_port/iomt_read.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_readblk.c b/sr_port/iomt_readblk.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_readfl.c b/sr_port/iomt_readfl.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_rewind.c b/sr_port/iomt_rewind.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_skipfile.c b/sr_port/iomt_skipfile.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_skiprecord.c b/sr_port/iomt_skiprecord.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_use.c b/sr_port/iomt_use.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_vlflush.c b/sr_port/iomt_vlflush.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_write.c b/sr_port/iomt_write.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wrtblk.c b/sr_port/iomt_wrtblk.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wrtinit.c b/sr_port/iomt_wrtinit.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wtdoslab.c b/sr_port/iomt_wtdoslab.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wteol.c b/sr_port/iomt_wteol.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wtff.c b/sr_port/iomt_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/iomt_wtone.c b/sr_port/iomt_wtone.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_close.c b/sr_port/ionl_close.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_dummy.c b/sr_port/ionl_dummy.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_flush.c b/sr_port/ionl_flush.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_open.c b/sr_port/ionl_open.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_rdone.c b/sr_port/ionl_rdone.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_read.c b/sr_port/ionl_read.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_readfl.c b/sr_port/ionl_readfl.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_use.c b/sr_port/ionl_use.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_write.c b/sr_port/ionl_write.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_wteol.c b/sr_port/ionl_wteol.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_wtff.c b/sr_port/ionl_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/ionl_wtone.c b/sr_port/ionl_wtone.c old mode 100644 new mode 100755 diff --git a/sr_port/iop.h b/sr_port/iop.h old mode 100644 new mode 100755 index 37f4f2fa..18659c9c --- a/sr_port/iop.h +++ b/sr_port/iop.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -223,4 +224,5 @@ IOP_DESC(205, iop_inseek, IOP_VAR_SIZE, IOP_OPEN_OK | IOP_USE_OK, IOP_SRC_STR), IOP_DESC(206, iop_outseek, IOP_VAR_SIZE, IOP_OPEN_OK | IOP_USE_OK, IOP_SRC_STR), IOP_DESC(207, iop_inrewind, 0, IOP_OPEN_OK | IOP_USE_OK, 0), IOP_DESC(208, iop_outrewind, 0, IOP_OPEN_OK | IOP_USE_OK, 0), -IOP_DESC(209, n_iops, 0, 0, 0) +IOP_DESC(209, iop_buffered, 0, IOP_OPEN_OK | IOP_USE_OK, 0), +IOP_DESC(210, n_iops, 0, 0, 0) diff --git a/sr_port/iop_parms_size.c b/sr_port/iop_parms_size.c old mode 100644 new mode 100755 diff --git a/sr_port/iorm_wtff.c b/sr_port/iorm_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/iorm_wtone.c b/sr_port/iorm_wtone.c old mode 100644 new mode 100755 diff --git a/sr_port/iormdefsp.h b/sr_port/iormdefsp.h old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_bind.c b/sr_port/iosocket_bind.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_close.c b/sr_port/iosocket_close.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_create.c b/sr_port/iosocket_create.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_delimiter.c b/sr_port/iosocket_delimiter.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_flush.c b/sr_port/iosocket_flush.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_handle.c b/sr_port/iosocket_handle.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_iocontrol.c b/sr_port/iosocket_iocontrol.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_listen.c b/sr_port/iosocket_listen.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_open.c b/sr_port/iosocket_open.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_poolinit.c b/sr_port/iosocket_poolinit.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_rdone.c b/sr_port/iosocket_rdone.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_read.c b/sr_port/iosocket_read.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_snr.c b/sr_port/iosocket_snr.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_switch.c b/sr_port/iosocket_switch.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_use.c b/sr_port/iosocket_use.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_write.c b/sr_port/iosocket_write.c index 6a44bfd3..73b3f435 100644 --- a/sr_port/iosocket_write.c +++ b/sr_port/iosocket_write.c @@ -138,7 +138,7 @@ void iosocket_buffer_error(socket_struct *socketptr) errptr = (char *)STRERROR(socketptr->obuffer_errno); errlen = STRLEN(errptr); devlen = MIN((SIZEOF(iod->dollar.device) - SIZEOF(ONE_COMMA)), errlen); - memcpy(&iod->dollar.device[SIZEOF(ONE_COMMA) - 1], errptr, devlen); + memcpy(&iod->dollar.device[SIZEOF(ONE_COMMA) - 1], errptr, devlen + 1); if (devlen < errlen) iod->dollar.device[SIZEOF(iod->dollar.device) - 1] = '\0'; socketptr->obuffer_errno = 0; @@ -190,6 +190,7 @@ ssize_t iosocket_output(socket_struct *socketptr, char *buffer, size_t length, b timeout_spec.tv_usec = timeout; # endif llen = length; + status = 0; lbuffer = buffer; while (0 < llen) { /* poll/select tlspolldirection - needed if noblocking */ @@ -225,7 +226,7 @@ ssize_t iosocket_output(socket_struct *socketptr, char *buffer, size_t length, b break; } if (EAGAIN == save_errno) - rel_quant(); + rel_quant(); /* seems like a legitimate rel_quant */ else if (EINTR != save_errno) { status = -1; @@ -346,8 +347,8 @@ ssize_t iosocket_write_buffered(socket_struct *socketptr, char *buffer, size_t l if ((0 == status ) && (length > socketptr->obuffer_size)) { /* more output than can fit in buffer so just output it now */ status = iosocket_output(socketptr, buffer, length, FALSE, FALSE); - if (status == length) - status = 0; /* success */ + if (status != length) + status = -1; /* failure */ } else if (0 == status) { /* put in buffer since room is available */ memcpy((void *)(socketptr->obuffer + socketptr->obuffer_offset), buffer, length); diff --git a/sr_port/iosocket_wteol.c b/sr_port/iosocket_wteol.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_wtff.c b/sr_port/iosocket_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocket_wtone.c b/sr_port/iosocket_wtone.c old mode 100644 new mode 100755 diff --git a/sr_port/iosocketdef.h b/sr_port/iosocketdef.h old mode 100644 new mode 100755 diff --git a/sr_port/iotimer.h b/sr_port/iotimer.h old mode 100644 new mode 100755 diff --git a/sr_port/iott_dummy.c b/sr_port/iott_dummy.c old mode 100644 new mode 100755 diff --git a/sr_port/iott_escape.c b/sr_port/iott_escape.c old mode 100644 new mode 100755 diff --git a/sr_port/iott_wrterr.c b/sr_port/iott_wrterr.c old mode 100644 new mode 100755 diff --git a/sr_port/iott_wrterr.h b/sr_port/iott_wrterr.h old mode 100644 new mode 100755 diff --git a/sr_port/iott_wteol.c b/sr_port/iott_wteol.c old mode 100644 new mode 100755 diff --git a/sr_port/iott_wtff.c b/sr_port/iott_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/iott_wtone.c b/sr_port/iott_wtone.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_close.c b/sr_port/ious_close.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_dummy.c b/sr_port/ious_dummy.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_flush.c b/sr_port/ious_flush.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_use.c b/sr_port/ious_use.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_wteol.c b/sr_port/ious_wteol.c old mode 100644 new mode 100755 diff --git a/sr_port/ious_wtff.c b/sr_port/ious_wtff.c old mode 100644 new mode 100755 diff --git a/sr_port/iousdef.h b/sr_port/iousdef.h old mode 100644 new mode 100755 diff --git a/sr_port/is_canonic_name.c b/sr_port/is_canonic_name.c old mode 100644 new mode 100755 diff --git a/sr_port/is_canonic_name.h b/sr_port/is_canonic_name.h old mode 100644 new mode 100755 diff --git a/sr_port/is_equ.c b/sr_port/is_equ.c old mode 100644 new mode 100755 diff --git a/sr_port/is_file_identical.h b/sr_port/is_file_identical.h old mode 100644 new mode 100755 diff --git a/sr_port/is_ident.c b/sr_port/is_ident.c old mode 100644 new mode 100755 diff --git a/sr_port/is_proc_alive.h b/sr_port/is_proc_alive.h old mode 100644 new mode 100755 diff --git a/sr_port/jfh_from_jnl_info.c b/sr_port/jfh_from_jnl_info.c old mode 100644 new mode 100755 index c3940e7d..e1446e38 --- a/sr_port/jfh_from_jnl_info.c +++ b/sr_port/jfh_from_jnl_info.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2003-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -21,9 +22,7 @@ #include "gdsfhead.h" #include "filestruct.h" #include "jnl.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif GBLREF jnl_process_vector *prc_vec; GBLREF jnl_gbls_t jgbl; #ifdef UNIX @@ -58,7 +57,10 @@ void jfh_from_jnl_info(jnl_create_info *info, jnl_file_header *header) header->before_images = info->before_images; /* Note that in case of MUPIP JOURNAL -ROLLBACK, we need to set header->repl_state to repl_open although replication * is currently not ON in the database. This is so future ROLLBACKs know this journal is replication enabled. + * Assert that this code can be reached only for MUPIP JOURNAL -ROLLBACK -BACKWARD. In case of MUPIP JOURNAL -ROLLBACK + * -FORWARD, journaling would have been turned OFF in the database at the start. */ + assert(!jgbl.mur_options_forward); header->repl_state = jgbl.mur_rollback ? repl_open : info->repl_state; header->data_file_name_length = info->fn_len; memcpy(header->data_file_name, info->fn, info->fn_len); @@ -76,9 +78,7 @@ void jfh_from_jnl_info(jnl_create_info *info, jnl_file_header *header) header->virtual_size = info->alloc; header->jnl_deq = info->extend; header->checksum = info->checksum; - GTMCRYPT_ONLY( - GTMCRYPT_COPY_HASH(info, header); - ) + GTMCRYPT_COPY_ENCRYPT_SETTINGS(info, header); # ifdef UNIX if (INVALID_SUPPL_STRM != strm_index) { diff --git a/sr_port/jmp_opto.c b/sr_port/jmp_opto.c old mode 100644 new mode 100755 diff --git a/sr_port/jmp_opto.h b/sr_port/jmp_opto.h old mode 100644 new mode 100755 diff --git a/sr_port/jnl.h b/sr_port/jnl.h index d970cb8b..111e9ffa 100644 --- a/sr_port/jnl.h +++ b/sr_port/jnl.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -20,9 +20,7 @@ #ifndef JNLSP_H_INCLUDED #include "jnlsp.h" #endif -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif error_def(ERR_JNLBADLABEL); error_def(ERR_JNLENDIANBIG); @@ -55,8 +53,8 @@ error_def(ERR_JNLENDIANLITTLE); * which needs to change to say IF_curTO17 if the earliest supported version changes to V17 or so). * */ -#define JNL_LABEL_TEXT "GDSJNL25" /* see above comment paragraph for todos whenever this is changed */ -#define JNL_VER_THIS 25 +#define JNL_LABEL_TEXT "GDSJNL26" /* see above comment paragraph for todos whenever this is changed */ +#define JNL_VER_THIS 26 #define JNL_VER_EARLIEST_REPL 17 /* Replication filter support starts here GDSJNL17 = GT.M V5.1-000. * (even though it should be V5.0-000, since that is pre-multisite, * the replication connection with V55000 will error out at handshake @@ -123,7 +121,7 @@ error_def(ERR_JNLENDIANLITTLE); */ #define JNL_WRT_END_MODULUS 8 -#define JNL_WRT_END_MASK ~(JNL_WRT_END_MODULUS - 1) +#define JNL_WRT_END_MASK ((uint4)~(JNL_WRT_END_MODULUS - 1)) #ifdef UNIX # define JNL_MIN_ALIGNSIZE (1 << 12) /* 4096 disk blocks effectively 2M alignsize */ @@ -233,14 +231,14 @@ error_def(ERR_JNLENDIANLITTLE); * checks if journaling is enabled and if so invokes "jnl_write" else it invokes "jnl_write_poolonly" which * writes only to the journal pool. */ -#define JNL_WRITE_APPROPRIATE(CSA, JPC, RECTYPE, JREC, BLKPTR, JFB) \ +#define JNL_WRITE_APPROPRIATE(CSA, JPC, RECTYPE, JREC, BLKPTR, JFB, JPLCTX) \ { \ assert(JNL_ENABLED(CSA) || REPL_WAS_ENABLED(CSA)); \ assert((NULL == JFB) || (RECTYPE == ((jnl_record *)(((jnl_format_buffer *)JFB)->buff))->prefix.jrec_type)); \ if (JNL_ENABLED(CSA)) \ - jnl_write(JPC, RECTYPE, JREC, BLKPTR, JFB); /* write to jnlbuffer, jnlfile, jnlpool */ \ + jnl_write(JPC, RECTYPE, JREC, BLKPTR, JFB, JPLCTX); /* write to jnlbuffer, jnlfile, jnlpool */ \ else \ - jnl_write_poolonly(JPC, RECTYPE, JREC, JFB); /* write to jnlpool only */ \ + jnl_write_poolonly(JPC, RECTYPE, JREC, JFB, JPLCTX); /* write to jnlpool only */ \ } #define MUEXTRACT_TYPE(A) (((A)[0]-'0')*10 + ((A)[1]-'0')) /* A is a character pointer */ @@ -399,6 +397,8 @@ typedef struct pini_list uint4 new_pini_addr; /* used in forward phase of recovery */ jnl_process_vector jpv; /* CURR_JPV. Current process's JPV. For GTCM server we also use this. */ jnl_process_vector origjpv; /* ORIG_JPV. Used for GTCM client only */ + jnl_proc_time pini_jpv_time; /* Original PINI record timestamp (before forward phase of + * journal recovery modifies jpv->jpv_time */ enum pini_rec_stat state; /* used for show qualifier */ } pini_list_struct; @@ -489,6 +489,7 @@ typedef struct * primarily used in Unix, 512 in VMS */ volatile uint4 post_epoch_freeaddr; /* virtual on-disk address after last epoch */ boolean_t last_eof_written; /* No more records may be written to the file due to autoswitch */ + uint4 end_of_data_at_open; /* Offset of EOF record when jnl file is first opened in shm */ /* CACHELINE_PAD macros provide spacing between the following latches so that they do not interfere with each other which can happen if they fall in the same data cacheline of a processor. @@ -682,9 +683,14 @@ typedef struct unsigned char data_file_name[JNL_NAME_SIZE]; /* Database file name */ unsigned char prev_jnl_file_name[JNL_NAME_SIZE]; /* Previous generation journal file name */ unsigned char next_jnl_file_name[JNL_NAME_SIZE]; /* Next generation journal file name */ - /* encryption related fields */ - uint4 is_encrypted; + /* Encryption-related fields (mirror those in the database file header) */ + int4 is_encrypted; char encryption_hash[GTMCRYPT_RESERVED_HASH_LEN]; + char encryption_hash2[GTMCRYPT_RESERVED_HASH_LEN]; + boolean_t non_null_iv; + block_id encryption_hash_cutoff; + trans_num encryption_hash2_start_tn; + char encr_filler[80]; /* The below two arrays are unused in VMS but defined there to keep the layout similar between Unix & VMS */ seq_num strm_start_seqno[MAX_SUPPL_STRMS]; seq_num strm_end_seqno[MAX_SUPPL_STRMS]; @@ -724,8 +730,12 @@ typedef struct uint4 checksum; uint4 free_blocks; /* free blocks counter at time of epoch */ uint4 total_blks; /* total blocks counter at time of epoch */ - uint4 is_encrypted; - char encryption_hash[GTMCRYPT_HASH_LEN]; + int4 is_encrypted; + char encryption_hash[GTMCRYPT_RESERVED_HASH_LEN]; + char encryption_hash2[GTMCRYPT_RESERVED_HASH_LEN]; + boolean_t non_null_iv; + block_id encryption_hash_cutoff; + trans_num encryption_hash2_start_tn; sgmnt_addrs *csa; } jnl_create_info; @@ -788,10 +798,8 @@ typedef struct jnl_format_buff_struct char *buff; uint4 checksum; jnl_action ja; -# ifdef GTM_CRYPT char *alt_buff; /* for storing the unencrypted jnl *SET and *KILL records to be pushed * into the jnl pool. */ -# endif } jnl_format_buffer; /* All fixed size records are 8-byte-multiple size. @@ -1115,6 +1123,7 @@ typedef enum SET_JNL_FILE_CLOSE_SETJNL, SET_JNL_FILE_CLOSE_EXTEND, SET_JNL_FILE_CLOSE_RUNDOWN, + SET_JNL_FILE_CLOSE_REORG_ENCRYPT, SET_JNL_FILE_CLOSE_INVALID_OP } set_jnl_file_close_opcode_t; @@ -1178,8 +1187,15 @@ typedef struct # endif boolean_t mur_extract; /* a copy of mur_options.extr[0] to be accessible to GTM runtime*/ boolean_t save_dont_reset_gbl_jrec_time; /* save a copy of dont_reset_gbl_jrec_time */ + boolean_t mur_update; /* a copy of mur_options.update to be accessible to GTM runtime */ } jnl_gbls_t; +/* Include this here as it is needed for the interface to jnl_write() and jnl_write_poolonly() */ +typedef struct +{ + uint4 write; /* Incrementally changing version of jnlpool_ctl_struct::write */ + uint4 write_total; /* Total bytes written */ +} jnlpool_write_ctx_t; #define JNL_SHARE_SIZE(X) (JNL_ALLOWED(X) ? \ (ROUND_UP(JNL_NAME_EXP_SIZE + SIZEOF(jnl_buffer), OS_PAGE_SIZE) \ @@ -1200,6 +1216,9 @@ typedef struct */ #define JNL_FILE_SWITCHED(JPC) ((JPC)->cycle != (JPC)->jnl_buff->cycle) +/* The jrec_len of 0 causes a switch. */ +#define SWITCH_JNL_FILE(JPC) jnl_file_extend(JPC, 0) + #define REG_STR "region" #define FILE_STR "database file" @@ -1225,26 +1244,30 @@ typedef struct * VMS does not support supplementary instances so the below macro does not apply there at all. */ #ifdef UNIX -#define MUR_ADJUST_STRM_REG_SEQNO_IF_NEEDED(CSD, DST) \ -{ \ - int strm_num; \ - seq_num strm_seqno; \ - \ - GBLREF int process_exiting; \ - \ - if (jgbl.mur_jrec_strm_seqno && !process_exiting) \ - { \ - assert(jgbl.mur_rollback); \ - VMS_ONLY(assert(FALSE);) \ - strm_seqno = jgbl.mur_jrec_strm_seqno; \ - strm_num = GET_STRM_INDEX(strm_seqno); \ - strm_seqno = GET_STRM_SEQ60(strm_seqno); \ - if (CSD->strm_reg_seqno[strm_num] == (strm_seqno + 1)) \ - { \ - assert(DST[strm_num] == (strm_seqno + 1)); \ - DST[strm_num] = strm_seqno; \ - } \ - } \ +#define MUR_ADJUST_STRM_REG_SEQNO_IF_NEEDED(CSD, DST) \ +{ \ + int strm_num; \ + seq_num strm_seqno; \ + \ + GBLREF int process_exiting; \ + \ + if (jgbl.mur_jrec_strm_seqno && !process_exiting) \ + { \ + assert(jgbl.mur_rollback); \ + /* This macro should be called only when journal records are about to be written \ + * and that is not possible in case of a FORWARD rollback. Assert that. \ + */ \ + assert(!jgbl.mur_options_forward); \ + VMS_ONLY(assert(FALSE);) \ + strm_seqno = jgbl.mur_jrec_strm_seqno; \ + strm_num = GET_STRM_INDEX(strm_seqno); \ + strm_seqno = GET_STRM_SEQ60(strm_seqno); \ + if (CSD->strm_reg_seqno[strm_num] == (strm_seqno + 1)) \ + { \ + assert(DST[strm_num] == (strm_seqno + 1)); \ + DST[strm_num] = strm_seqno; \ + } \ + } \ } #else #define MUR_ADJUST_STRM_REG_SEQNO_IF_NEEDED(CSD, DST) @@ -1431,20 +1454,45 @@ typedef struct */ \ assert((NULL == jnlpool_ctl) || (csd->reg_seqno <= (jnlpool_ctl->jnl_seqno + 1))); \ } -#ifdef GTM_CRYPT -# define MUR_DECRYPT_LOGICAL_RECS(MUMPS_NODE_PTR, REC_SIZE, KEY_HANDLE, RC) \ +/* Given the record size, construct an IV to be used for a subsequent encryption or decryption operation. Currently, the maximum IV + * length our encryption plug-in supports is 16 bytes, and we only have three bytes of information suitable for an IV at the + * encryption time (explained below), so just fit four copies of a three-byte integer into the IV array. + */ +# define PREPARE_LOGICAL_REC_IV(REC_SIZE, IV_ARRAY) \ +{ \ + uint4 *iv_ptr, iv_val; \ + \ + /* Encryption happens prior to grabbing crit, when the only initialized fields of a journal \ + * record prefix are jrec_type and forwptr, collectively occupying the first four bytes of the \ + * jrec_prefix structure. However, if a JRT_TZTWORM-type record remains unused in a particular \ + * transaction, it is removed, while the preceding record's type is modified from UUPD to TUPD, \ + * via the REMOVE_ZTWORM_JFB_IF_NEEDED macro. Since we cannot be changing IV after encryption, \ + * jrec_type does not qualify. Therefore, we are left with three bytes taken by forwptr. \ + */ \ + assert((ARRAYSIZE(IV_ARRAY) == GTM_MAX_IV_LEN) && (GTM_MAX_IV_LEN == 4 * SIZEOF(uint4))); \ + iv_ptr = (uint4 *)IV_ARRAY; \ + iv_val = REC_SIZE; \ + *iv_ptr++ = iv_val; \ + *iv_ptr++ = iv_val; \ + *iv_ptr++ = iv_val; \ + *iv_ptr = iv_val; \ +} + +/* Decrypt a logical journal record. */ +# define MUR_DECRYPT_LOGICAL_RECS(MUMPS_NODE_PTR, USE_NON_NULL_IV, REC_SIZE, KEY_HANDLE, RC) \ { \ - int span_length, fixed_prefix; \ + int span_length; \ + char iv[GTM_MAX_IV_LEN]; \ \ RC = 0; \ assert(FIXED_UPD_RECLEN == FIXED_ZTWORM_RECLEN); \ assert(FIXED_UPD_RECLEN == FIXED_LGTRIG_RECLEN); \ - fixed_prefix = FIXED_UPD_RECLEN; \ - ASSERT_ENCRYPTION_INITIALIZED; \ - span_length = REC_SIZE - fixed_prefix - JREC_SUFFIX_SIZE; \ - GTMCRYPT_DECRYPT(NULL, KEY_HANDLE, (char *)MUMPS_NODE_PTR, span_length, NULL, RC); \ + span_length = REC_SIZE - FIXED_UPD_RECLEN - JREC_SUFFIX_SIZE; \ + if (USE_NON_NULL_IV) \ + PREPARE_LOGICAL_REC_IV(REC_SIZE, iv); \ + GTMCRYPT_DECRYPT(NULL, USE_NON_NULL_IV, KEY_HANDLE, (char *)MUMPS_NODE_PTR, span_length, NULL, \ + iv, GTM_MAX_IV_LEN, RC); \ } -#endif /* The following define an appendix message, used along with JNLBUFFREGUPD and JNLBUFFDBUPD messages in * various places, as well as its length, allowing for six digits for both lower and upper journal buffer @@ -1504,11 +1552,13 @@ uint4 jnl_ensure_open(void); void set_jnl_info(gd_region *reg, jnl_create_info *set_jnl_info); void jnl_write_epoch_rec(sgmnt_addrs *csa); void jnl_write_inctn_rec(sgmnt_addrs *csa); -void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum); -void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum); +void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum, jnlpool_write_ctx_t *jplctx); +void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum, seq_num jnl_seqno, + jnlpool_write_ctx_t *jplctx); void jnl_write_eof_rec(sgmnt_addrs *csa, struct_jrec_eof *eof_record); void jnl_write_trunc_rec(sgmnt_addrs *csa, uint4 orig_total_blks, uint4 orig_free_blocks, uint4 total_blks_after_trunc); -void jnl_write_poolonly(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, jnl_format_buffer *jfb); +void jnl_write_poolonly(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, jnl_format_buffer *jfb, + jnlpool_write_ctx_t *jplctx); jnl_format_buffer *jnl_format(jnl_action_code opcode, gv_key *key, mval *val, uint4 nodeflags); diff --git a/sr_port/jnl2ext.c b/sr_port/jnl2ext.c old mode 100644 new mode 100755 diff --git a/sr_port/jnl_ensure_open.c b/sr_port/jnl_ensure_open.c index 538d98d3..119e7c02 100644 --- a/sr_port/jnl_ensure_open.c +++ b/sr_port/jnl_ensure_open.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2010, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2010-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -29,6 +30,8 @@ GBLREF gd_region *gv_cur_region; GBLREF sgmnt_addrs *cs_addrs; GBLREF sgmnt_data_ptr_t cs_data; +error_def(ERR_JNLFILOPN); + /* make sure that the journal file is available if appropriate */ uint4 jnl_ensure_open(void) { @@ -38,12 +41,6 @@ uint4 jnl_ensure_open(void) sgmnt_data_ptr_t csd; boolean_t first_open_of_jnl, need_to_open_jnl; int close_res; -# if defined(VMS) - static const gds_file_id file; - uint4 status; -# endif - - error_def(ERR_JNLFILOPN); csa = cs_addrs; csd = csa->hdr; @@ -60,25 +57,9 @@ uint4 jnl_ensure_open(void) need_to_open_jnl = FALSE; jnl_status = 0; if (NOJNL == jpc->channel) - { -# ifdef VMS - if (NOJNL != jpc->old_channel) - { - if (lib$ast_in_prog()) /* called from wcs_wipchk_ast */ - jnl_oper_user_ast(gv_cur_region); - else - { - status = sys$setast(DISABLE); - jnl_oper_user_ast(gv_cur_region); - if (SS$_WASSET == status) - ENABLE_AST; - } - } -# endif need_to_open_jnl = TRUE; - } else if (JNL_FILE_SWITCHED(jpc)) + else if (JNL_FILE_SWITCHED(jpc)) { /* The journal file has been changed "on the fly"; close the old one and open the new one */ - VMS_ONLY(assert(FALSE);) /* everyone having older jnl open should have closed it at time of switch in VMS */ JNL_FD_CLOSE(jpc->channel, close_res); /* sets jpc->channel to NOJNL */ need_to_open_jnl = TRUE; } @@ -89,15 +70,13 @@ uint4 jnl_ensure_open(void) jpc->new_freeaddr = 0; if (IS_GTCM_GNP_SERVER_IMAGE) gtcm_jnl_switched(jpc->region); /* Reset pini_addr of all clients that had any older journal file open */ - UNIX_ONLY(first_open_of_jnl = (0 == csa->nl->jnl_file.u.inode);) - VMS_ONLY(first_open_of_jnl = (0 == memcmp(csa->nl->jnl_file.jnl_file_id.fid, file.fid, SIZEOF(file.fid)))); + first_open_of_jnl = (0 == csa->nl->jnl_file.u.inode); jnl_status = jnl_file_open(gv_cur_region, first_open_of_jnl, NULL); } DEBUG_ONLY( else GTM_WHITE_BOX_TEST(WBTEST_JNL_FILE_OPEN_FAIL, jnl_status, ERR_JNLFILOPN); ) - assert((0 != jnl_status) || !JNL_FILE_SWITCHED(jpc) - UNIX_ONLY(|| (is_src_server && !JNL_ENABLED(csa) && REPL_WAS_ENABLED(csa)))); + assert((0 != jnl_status) || !JNL_FILE_SWITCHED(jpc) || (is_src_server && !JNL_ENABLED(csa) && REPL_WAS_ENABLED(csa))); return jnl_status; } diff --git a/sr_port/jnl_file_close.c b/sr_port/jnl_file_close.c old mode 100644 new mode 100755 index 56290208..aad39920 --- a/sr_port/jnl_file_close.c +++ b/sr_port/jnl_file_close.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2003-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -16,7 +17,6 @@ #include "gtm_time.h" #include "gtm_string.h" -#if defined(UNIX) #include "gtm_unistd.h" #include "aswp.h" #include "lockconst.h" @@ -26,14 +26,6 @@ #include "wcs_sleep.h" #include "gt_timer.h" #include "wbox_test_init.h" -#elif defined(VMS) -#include -#include -#include -#include -#include -#include "iosb_disk.h" -#endif #include "gdsroot.h" #include "gtm_facility.h" @@ -57,11 +49,6 @@ #include "wcs_clean_dbsync.h" #endif -#if defined(VMS) -GBLREF short astq_dyn_avail; -static const unsigned short zero_fid[3]; -#endif - GBLREF jnl_gbls_t jgbl; GBLREF boolean_t in_jnl_file_autoswitch; @@ -85,7 +72,7 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) uint4 status, read_write_size; int rc, save_errno, idx; uint4 jnl_fs_block_size; - boolean_t was_in_jnl_file_autoswitch, was_last_eof_written, in_tail; + boolean_t was_in_jnl_file_autoswitch, write_eof, in_tail; csa = &FILE_INFO(reg)->s_addrs; csd = csa->hdr; @@ -95,18 +82,8 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) ASSERT_JNLFILEID_NOT_NULL(csa); ) jpc = csa->jnl; -#if defined(UNIX) if (csa->dbsync_timer) CANCEL_DBSYNC_TIMER(csa); -#elif defined(VMS) - /* See comment about ordering of the two statements below, in similar code in gds_rundown */ - if (csa->dbsync_timer) - { - csa->dbsync_timer = FALSE; - ++astq_dyn_avail; - } - sys$cantim(csa, PSL$C_USER); /* cancel all dbsync-timers for this region */ -#endif if ((NULL == jpc) || (NOJNL == jpc->channel)) return; jb = jpc->jnl_buff; @@ -114,8 +91,8 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) header = (jnl_file_header *)(ROUND_UP2((uintszofptr_t)hdr_base, jnl_fs_block_size)); if (clean) { - was_last_eof_written = jb->last_eof_written; - if (!jgbl.mur_extract && !was_last_eof_written) + write_eof = !jb->last_eof_written; + if (!jgbl.mur_extract && write_eof) { was_in_jnl_file_autoswitch = in_jnl_file_autoswitch; /* We don't want to switch while closing, so set in_jnl_file_autoswitch, @@ -139,14 +116,20 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) * However, if we are already in the tail due to a prior disruption, skip the * pini/pfin and just write the eof. */ - DEBUG_ONLY(jpc->status = SS_NORMAL); - in_tail = (jb->freeaddr > jb->filesize - JNL_FILE_TAIL_PRESERVE); - if ((0 == jpc->pini_addr) && !in_tail) + if (jb->freeaddr != jb->end_of_data_at_open) { - jnl_put_jrt_pini(csa); - jnl_put_jrt_pfin(csa); + DEBUG_ONLY(jpc->status = SS_NORMAL); + in_tail = ((off_t)jb->freeaddr > ((off_t)DISK_BLOCK_SIZE * jb->filesize) - JNL_FILE_TAIL_PRESERVE); + if ((0 == jpc->pini_addr) && !in_tail) + { + jnl_put_jrt_pini(csa); + jnl_put_jrt_pfin(csa); + } + jnl_write_eof_rec(csa, &eof_record); + } else + { /* No journal records got written since jnl file was opened in shm. No need to write EOF record */ + write_eof = FALSE; } - jnl_write_eof_rec(csa, &eof_record); if (!was_in_jnl_file_autoswitch) { jgbl.dont_reset_gbl_jrec_time = jgbl.save_dont_reset_gbl_jrec_time; @@ -172,15 +155,15 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) assert(jb->dskaddr == jb->freeaddr); UNIX_ONLY(jnl_fsync(reg, jb->dskaddr);) UNIX_ONLY(assert(jb->freeaddr == jb->fsync_dskaddr);) - eof_addr = jb->freeaddr - EOF_RECLEN; read_write_size = ROUND_UP2(REAL_JNL_HDR_LEN, jnl_fs_block_size); assert((unsigned char *)header + read_write_size <= ARRAYTOP(hdr_base)); DO_FILE_READ(jpc->channel, 0, header, read_write_size, jpc->status, jpc->status2); if (SYSCALL_SUCCESS(jpc->status)) { - if (!jgbl.mur_extract && !was_last_eof_written) + if (!jgbl.mur_extract && write_eof) { - /* If was_last_eof_written is TRUE, we didn't write an eof, so nothing to update. */ + /* If write_eof is FALSE, we didn't write an eof, so nothing to update. */ + eof_addr = jb->freeaddr - EOF_RECLEN; assert(header->end_of_data <= eof_addr); header->end_of_data = eof_addr; header->eov_timestamp = eof_record.prefix.time; @@ -228,11 +211,8 @@ void jnl_file_close(gd_region *reg, bool clean, bool dummy) jb->cycle++; /* increment shared cycle so all future callers of jnl_ensure_open recognize journal switch */ } JNL_FD_CLOSE(jpc->channel, rc); /* sets jpc->channel to NOJNL */ -#ifdef UNIX GTM_WHITE_BOX_TEST(WBTEST_ANTIFREEZE_JNLCLOSE, rc, EIO); -#endif jpc->cycle--; /* decrement cycle so jnl_ensure_open() knows to reopen the journal */ - VMS_ONLY(jpc->qio_active = FALSE;) jpc->pini_addr = 0; if (clean && (SS_NORMAL != jpc->status || SS_NORMAL != rc)) { diff --git a/sr_port/jnl_file_lost.c b/sr_port/jnl_file_lost.c old mode 100644 new mode 100755 diff --git a/sr_port/jnl_file_open_common.c b/sr_port/jnl_file_open_common.c old mode 100644 new mode 100755 index 4b89e9df..bf525c21 --- a/sr_port/jnl_file_open_common.c +++ b/sr_port/jnl_file_open_common.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2003-2015 Fidelity National Information * + * Copyright (c) 2003-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -16,26 +16,14 @@ #include "gtm_string.h" #include "gtm_time.h" #include "gtm_inet.h" -#if defined(UNIX) + #include + #include "gtm_fcntl.h" #include "gtm_unistd.h" #include "interlock.h" #include "lockconst.h" #include "aswp.h" -#elif defined(VMS) -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "iosb_disk.h" -#endif #include "gdsroot.h" #include "gtm_facility.h" @@ -60,6 +48,7 @@ GBLREF jnlpool_ctl_ptr_t jnlpool_ctl; GBLREF boolean_t pool_init; GBLREF jnl_process_vector *prc_vec; GBLREF jnl_gbls_t jgbl; +GBLREF uint4 mu_reorg_encrypt_in_prog; error_def(ERR_FILEIDMATCH); error_def(ERR_JNLOPNERR); @@ -72,9 +61,7 @@ error_def(ERR_JNLWRERR); error_def(ERR_JNLVSIZE); error_def(ERR_PREMATEOF); error_def(ERR_JNLPREVRECOV); -#ifdef GTM_CRYPT -error_def(ERR_CRYPTJNLWRONGHASH); -#endif +error_def(ERR_CRYPTJNLMISMATCH); /* note: returns 0 on success */ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) @@ -89,9 +76,6 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) unsigned char *eof_rec_buffer; unsigned char eof_rec[(DISK_BLOCK_SIZE * 2) + MAX_IO_BLOCK_SIZE]; off_jnl_t adjust; -#if defined(VMS) - io_status_block_disk iosb; -#endif uint4 jnl_fs_block_size, read_write_size, read_size; gtm_uint64_t header_virtual_size; @@ -122,8 +106,7 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) * filesystem block size. And so in case of a previous version created journal file, it is possible the * entire unaligned journal file size is lesser than the aligned journal file header size. */ - UNIX_ONLY(assert(ERR_PREMATEOF == jpc->status);) - VMS_ONLY(assert(FALSE);) + assert(ERR_PREMATEOF == jpc->status); return ERR_JNLRDERR; } /* Check if the header format matches our format. Cannot access any fields inside header unless this matches */ @@ -175,14 +158,15 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) jpc->status = ERR_JNLBADRECFMT; return ERR_JNLOPNERR; } - GTMCRYPT_ONLY( - if (memcmp(header->encryption_hash, csd->encryption_hash, GTMCRYPT_HASH_LEN)) - { - send_msg_csa(CSA_ARG(csa) VARLSTCNT(6) ERR_CRYPTJNLWRONGHASH, 4, JNL_LEN_STR(csd), DB_LEN_STR(reg)); - jpc->status = ERR_CRYPTJNLWRONGHASH; - return ERR_JNLOPNERR; - } - ) + if (!mu_reorg_encrypt_in_prog && !SAME_ENCRYPTION_SETTINGS(header, csd)) + { /* We expect encryption settings in the journal to be in sync with those in the file header. The only exception is + * MUPIP REORG -ENCRYPT, which switches the journal file upon changing encryption-specific fields in the file + * header, thus temporarily violating this expectation. + */ + send_msg_csa(CSA_ARG(csa) VARLSTCNT(6) ERR_CRYPTJNLMISMATCH, 4, JNL_LEN_STR(csd), DB_LEN_STR(reg)); + jpc->status = ERR_CRYPTJNLMISMATCH; + return ERR_JNLOPNERR; + } assert(header->eov_tn == eof_record.prefix.tn); header->eov_tn = eof_record.prefix.tn; assert(header->eov_timestamp == eof_record.prefix.time); @@ -203,19 +187,16 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) /* For performance reasons (to be able to do aligned writes to the journal file), we need to ensure the journal buffer * address is filesystem-block-size aligned in Unix. Although this is needed only in case of sync_io/direct-io, we ensure * this alignment unconditionally in Unix. jb->buff_off is the number of bytes to go past before getting an aligned buffer. - * For VMS, this performance enhancement is currently not done and can be revisited later. */ - UNIX_ONLY(jb->buff_off = (uintszofptr_t)ROUND_UP2((uintszofptr_t)&jb->buff[0], jnl_fs_block_size) - - (uintszofptr_t)&jb->buff[0];) - VMS_ONLY(jb->buff_off = 0;) + jb->buff_off = (uintszofptr_t)ROUND_UP2((uintszofptr_t)&jb->buff[0], jnl_fs_block_size) - (uintszofptr_t)&jb->buff[0]; jb->size = ROUND_DOWN2(csd->jnl_buffer_size * DISK_BLOCK_SIZE - jb->buff_off, jnl_fs_block_size); /* Assert that journal buffer does NOT spill past the allocated journal buffer size in shared memory */ assert((sm_uc_ptr_t)&jb->buff[jb->buff_off + jb->size] < ((sm_uc_ptr_t)csa->nl + NODE_LOCAL_SPACE(csd) + JNL_SHARE_SIZE(csd))); assert((sm_uc_ptr_t)jb == ((sm_uc_ptr_t)csa->nl + NODE_LOCAL_SPACE(csd) + JNL_NAME_EXP_SIZE)); jb->last_eof_written = header->last_eof_written; - jb->freeaddr = jb->dskaddr = UNIX_ONLY(jb->fsync_dskaddr = ) header->end_of_data; - jb->post_epoch_freeaddr = jb->freeaddr; + jb->freeaddr = jb->dskaddr = jb->fsync_dskaddr = header->end_of_data; + jb->post_epoch_freeaddr = jb->end_of_data_at_open = jb->freeaddr; jb->fs_block_size = jnl_fs_block_size; /* The following is to make sure that the data in jnl_buffer is aligned with the data in the * disk file on an jnl_fs_block_size boundary. Since we assert that jb->size is a multiple of jnl_fs_block_size, @@ -223,16 +204,8 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) */ assert(0 == (jb->size % jnl_fs_block_size)); jb->free = jb->dsk = header->end_of_data % jb->size; - UNIX_ONLY( - SET_LATCH_GLOBAL(&jb->fsync_in_prog_latch, LOCK_AVAILABLE); - SET_LATCH_GLOBAL(&jb->io_in_prog_latch, LOCK_AVAILABLE); - ) - VMS_ONLY( - assert(0 == jb->now_writer); - bci(&jb->io_in_prog); - jb->now_writer = 0; - assert((jb->free % DISK_BLOCK_SIZE) == adjust); - ) + SET_LATCH_GLOBAL(&jb->fsync_in_prog_latch, LOCK_AVAILABLE); + SET_LATCH_GLOBAL(&jb->io_in_prog_latch, LOCK_AVAILABLE); assert(0 == (jnl_fs_block_size % DISK_BLOCK_SIZE)); if (adjust) { /* if jb->free does not start at a filesystem-block-size aligned boundary (which is the alignment granularity used @@ -261,10 +234,6 @@ uint4 jnl_file_open_common(gd_region *reg, off_jnl_t os_file_size) jb->max_jrec_len = header->max_jrec_len; memcpy(&header->who_opened, prc_vec, SIZEOF(jnl_process_vector)); header->crash = TRUE; /* in case this processes is crashed, this will remain TRUE */ - VMS_ONLY( - if (REPL_ENABLED(csd) && pool_init) - header->update_disabled = jnlpool_ctl->upd_disabled; - ) JNL_DO_FILE_WRITE(csa, csd->jnl_file_name, jpc->channel, 0, header, read_write_size, jpc->status, jpc->status2); if (SS_NORMAL != jpc->status) { diff --git a/sr_port/jnl_file_open_switch.c b/sr_port/jnl_file_open_switch.c old mode 100644 new mode 100755 diff --git a/sr_port/jnl_flush.c b/sr_port/jnl_flush.c old mode 100644 new mode 100755 diff --git a/sr_port/jnl_format.c b/sr_port/jnl_format.c index 8b821982..37c2c0fe 100644 --- a/sr_port/jnl_format.c +++ b/sr_port/jnl_format.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -34,10 +35,7 @@ #include "copy.h" #include "jnl_get_checksum.h" #include "gdsblk.h" /* for blk_hdr usage in JNL_MAX_SET_KILL_RECLEN macro */ - -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #ifdef GTM_TRIGGER /* In case of a ZTWORMHOLE, it should be immediately followed by a SET or KILL record. We do not maintain different @@ -107,18 +105,21 @@ jnl_format_buffer *jnl_format(jnl_action_code opcode, gv_key *key, mval *val, ui uint4 align_fill_size, jrec_size, tmp_jrec_size, update_length; boolean_t is_ztworm_rec = FALSE; uint4 cursum; - DEBUG_ONLY( - static boolean_t dbg_in_jnl_format = FALSE; - ) -# ifdef GTM_CRYPT int gtmcrypt_errno; gd_segment *seg; -# endif + char iv[GTM_MAX_IV_LEN]; + boolean_t use_new_key; + enc_info_t *encr_ptr; # ifdef GTM_TRIGGER boolean_t ztworm_matched, match_possible; mstr prev_str, *cur_str; # endif +# ifdef DEBUG + static boolean_t dbg_in_jnl_format = FALSE; + DCL_THREADGBL_ACCESS; + SETUP_THREADGBL_ACCESS; +# endif /* The below assert ensures that if ever jnl_format is interrupted by a signal, the interrupt handler never calls * jnl_format again. This is because jnl_format plays with global pointers and we would possibly end up in a bad * state if the interrupt handler calls jnl_format again. @@ -253,10 +254,8 @@ jnl_format_buffer *jnl_format(jnl_action_code opcode, gv_key *key, mval *val, ui assert((1 << JFB_ELE_SIZE_IN_BITS) == JNL_REC_START_BNDRY); assert(JFB_ELE_SIZE == JNL_REC_START_BNDRY); jfb->buff = (char *)get_new_element(si->format_buff_list, jrec_size >> JFB_ELE_SIZE_IN_BITS); - GTMCRYPT_ONLY( - if (REPL_ALLOWED(csa)) - jfb->alt_buff = (char *)get_new_element(si->format_buff_list, jrec_size >> JFB_ELE_SIZE_IN_BITS); - ) + if (REPL_ALLOWED(csa)) + jfb->alt_buff = (char *)get_new_element(si->format_buff_list, jrec_size >> JFB_ELE_SIZE_IN_BITS); /* assume an align record will be written while computing maximum jnl-rec size requirements */ si->total_jnl_rec_size += (int)(jrec_size + MIN_ALIGN_RECLEN); } @@ -310,35 +309,51 @@ jnl_format_buffer *jnl_format(jnl_action_code opcode, gv_key *key, mval *val, ui ((jrec_suffix *)local_buffer)->backptr = jrec_size; ((jrec_suffix *)local_buffer)->suffix_code = JNL_REC_SUFFIX_CODE; update_length = (jrec_size - (JREC_SUFFIX_SIZE + FIXED_UPD_RECLEN)); -# ifdef GTM_CRYPT + /* If the fields in the database file header have been updated by a concurrent MUPIP REORG -ENCRYPT, we may end up not + * encrypting the journal records or encrypting them with wrong settings, which is OK because t_end / tp_tend will detect + * that the mupip_reorg_cycle flag in cnl has been updated, and restart the transaction. + */ assert(REPL_ALLOWED(csa) || !is_ztworm_rec || jgbl.forw_phase_recovery); - if (csd->is_encrypted) - { - /* At this point we have all the components of *SET, *KILL, *ZTWORM and *ZTRIG records filled. */ + encr_ptr = csa->encr_ptr; + if ((NULL != encr_ptr) && USES_ANY_KEY(encr_ptr)) + { /* At this point we have all the components of *SET, *KILL, *ZTWORM and *ZTRIG records filled. */ +# ifdef DEBUG + if (encr_ptr->reorg_encrypt_cycle != csa->nl->reorg_encrypt_cycle) + { /* This is a restartable situation for sure. But we cannot return a restart code from this function. + * So set a dbg-only variable to indicate we never expect this to commit and alert us if it does. + */ + /* Note: Cannot add assert(CDB_STAGNATE > t_tries) here (like we do for other donot_commit cases) + * because cdb_sc_reorg_encrypt restart code is possible in final retry too. + */ + TREF(donot_commit) |= DONOTCOMMIT_JNL_FORMAT; + } +# endif if (REPL_ALLOWED(csa)) - { - /* Before encrypting the journal record, copy the unencrypted buffer to an alternate buffer - * that eventually gets copied to the journal pool (in jnl_write). This way, the replication - * stream sends unencrypted data. + { /* Before encrypting the journal record, copy the unencrypted buffer to an alternate buffer that eventually + * gets copied to the journal pool (in jnl_write). This way, the replication stream sends unencrypted data. */ memcpy(jfb->alt_buff, rec, jrec_size); SET_PREV_ZTWORM_JFB_IF_NEEDED(is_ztworm_rec, (jfb->alt_buff + FIXED_UPD_RECLEN)); } ASSERT_ENCRYPTION_INITIALIZED; - /* Encrypt the logical portion of the record which eventually gets written to the journal buffer/file */ - GTMCRYPT_ENCRYPT(csa, csa->encr_key_handle, mumps_node_ptr, update_length, NULL, gtmcrypt_errno); + use_new_key = USES_NEW_KEY(encr_ptr); + /* Encrypt the logical portion of the record, which eventually gets written to the journal buffer/file */ + if (use_new_key || encr_ptr->non_null_iv) + PREPARE_LOGICAL_REC_IV(jrec_size, iv); + GTMCRYPT_ENCRYPT(csa, (use_new_key ? TRUE : encr_ptr->non_null_iv), + (use_new_key ? csa->encr_key_handle2 : csa->encr_key_handle), + mumps_node_ptr, update_length, NULL, iv, GTM_MAX_IV_LEN, gtmcrypt_errno); if (0 != gtmcrypt_errno) { seg = gv_cur_region->dyn.addr; GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, seg->fname_len, seg->fname); } } else -# endif { SET_PREV_ZTWORM_JFB_IF_NEEDED(is_ztworm_rec, mumps_node_ptr); } /* The below call to jnl_get_checksum makes sure that checksum computation happens AFTER the encryption (if turned on) */ - jfb->checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)mumps_node_ptr, (int)(local_buffer - mumps_node_ptr)); + jfb->checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)mumps_node_ptr, (int)(local_buffer - mumps_node_ptr)); assert(0 == ((UINTPTR_T)local_buffer % SIZEOF(jrec_suffix))); DEBUG_ONLY(dbg_in_jnl_format = FALSE;) return jfb; diff --git a/sr_port/jnl_get_checksum.c b/sr_port/jnl_get_checksum.c old mode 100644 new mode 100755 index c08d0aeb..f15b2969 --- a/sr_port/jnl_get_checksum.c +++ b/sr_port/jnl_get_checksum.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2005-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -13,6 +14,7 @@ #include "gdsroot.h" #include "gdsbt.h" #include "gdsfhead.h" +#include "gdsblk.h" #include "jnl_get_checksum.h" /* The following four looktable are generated using following paramenters. @@ -299,8 +301,7 @@ GBLDEF uint4 csum_table[SLICE_BY][TABLE_SIZE] = { #endif }; -/* - * Input : +/* Input : * buff : Pointer to the input buffer whose checksum needs to be computed. * sgmnt_addrs : Segment address * bufflen : Buffer size in bytes @@ -309,29 +310,24 @@ GBLDEF uint4 csum_table[SLICE_BY][TABLE_SIZE] = { * Computed checksum. */ -uint4 jnl_get_checksum(uint4 *buff, sgmnt_addrs *csa, int bufflen) +/* #GTM_THREAD_SAFE : The below function (jnl_get_checksum) is thread-safe */ +uint4 jnl_get_checksum(blk_hdr_ptr_t buff, sgmnt_addrs *csa, int bufflen) { uint4 *top, *blk_base, *blk_top, blen; -# ifdef GTM_CRYPT - DEBUG_ONLY( - sm_uc_ptr_t orig_buff = NULL; - ) + DEBUG_ONLY(sm_uc_ptr_t orig_buff = NULL;) - if (NULL != csa && (csa->hdr->is_encrypted)) + /* We are not necessarily holding crit here, so we have to rely on the csa->encr_ptr copy of encryption settings. */ + if ((NULL != csa) && (NULL != csa->encr_ptr) && NEEDS_ANY_KEY(csa->encr_ptr, buff->tn)) { DBG_ENSURE_PTR_IS_VALID_GLOBUFF(csa, csa->hdr, (sm_uc_ptr_t)buff); DEBUG_ONLY(orig_buff = (unsigned char *)buff;) - buff = (uint4 *)GDS_ANY_ENCRYPTGLOBUF(buff, csa); + buff = (blk_hdr_ptr_t)GDS_ANY_ENCRYPTGLOBUF(buff, csa); DBG_ENSURE_PTR_IS_VALID_ENCTWINGLOBUFF(csa, csa->hdr, (sm_uc_ptr_t)buff); } -# endif - - return (compute_checksum(INIT_CHECKSUM_SEED, buff, bufflen)); + return (compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)buff, bufflen)); } - -/* - * Input : +/* Input : * buff : Pointer to the input buffer whose checksum needs to be computed. * bufflen : Buffer size in bytes * @@ -342,16 +338,17 @@ uint4 jnl_get_checksum(uint4 *buff, sgmnt_addrs *csa, int bufflen) * The checksum is calculated using slice-by-4 checksum calculation algorithm */ -uint4 compute_checksum(uint4 init_checksum, uint4 *buff, int bufflen) +/* #GTM_THREAD_SAFE : The below function (compute_checksum) is thread-safe */ +uint4 compute_checksum(uint4 init_checksum, unsigned char *buff, int bufflen) { - uint4 checksum = init_checksum; - char *byte; - int word_cnt, i, rem_bytes; + uint4 checksum = init_checksum; + unsigned char *byte; + int word_cnt, i, rem_bytes; /* calculate checksum one byte at a time so that subsequent data read will be at addresses aligned to multiple of 4*/ #ifdef GTM64 - for (byte = (char *)buff; ((gtm_uint8)byte & SIZEOF(gtm_uint8)) != 0; byte++, bufflen--) + for (byte = buff; ((gtm_uint8)byte & SIZEOF(gtm_uint8)) != 0; byte++, bufflen--) #else - for (byte = (char *)buff; ((uint4)byte & SIZEOF(uint4)) != 0; byte++, bufflen--) + for (byte = buff; ((uint4)byte & SIZEOF(uint4)) != 0; byte++, bufflen--) #endif { #ifdef BIGENDIAN diff --git a/sr_port/jnl_get_checksum.h b/sr_port/jnl_get_checksum.h old mode 100644 new mode 100755 index 16548950..d46edb2a --- a/sr_port/jnl_get_checksum.h +++ b/sr_port/jnl_get_checksum.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2005-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -45,7 +46,7 @@ GBLREF uint4 csum_table[SLICE_BY][TABLE_SIZE]; { \ uint4 tmpsum_tn; \ ADJUST_CHECKSUM(cursum, *(uint4 *)tn, tmpsum_tn); \ - ADJUST_CHECKSUM(tmpsum_tn, *(uint4 *)((char *)tn+SIZEOF(uint4)), newsum); \ + ADJUST_CHECKSUM(tmpsum_tn, *(uint4 *)((char *)tn + SIZEOF(uint4)), newsum); \ } #define COMPUTE_COMMON_CHECKSUM(common_cksum, prefix) \ @@ -90,7 +91,7 @@ GBLREF uint4 csum_table[SLICE_BY][TABLE_SIZE]; * if recomputation of checksum is necessary). For BG, we have two-phase commit where \ * phase2 is done outside of crit. So it is possible that we note down the current database \ * tn and then compute checksums outside of crit and then get crit and yet in the validation \ - * logic find the block header tn is LESSER than the noted dbtn (even though the block \ + * logic find that the block header tn is LESS than the noted dbtn (even though the block \ * contents changed after the noted dbtn). This will cause us to falsely validate this block \ * as not needing checksum recomputation. To ensure the checksum is recomputed inside crit, \ * we note down a tn of 0 in case the block is locked for update (cr->in_tend is non-zero). \ @@ -106,24 +107,27 @@ GBLREF uint4 csum_table[SLICE_BY][TABLE_SIZE]; /* In rare cases cse->cr can be NULL even though this block is an acquired block. This is \ * possible if we are in TP and this block was part of the tree in the initial phase of the \ * transaction but was marked free (by another process concurrently) in the later phase of \ - * the same TP transaction. But this case is a sureshot restart situation so be safe and \ - * ensure recomputation happens inside of crit just in case we dont restart. Also add asserts \ - * (using donot_commit variable) to ensure we do restart this transaction. \ + * the same TP transaction. But this case is a sure restart situation, so be safe and \ + * ensure recomputation happens inside of crit just in case we do not restart. Also add \ + * asserts (using donot_commit variable) to ensure we do restart this transaction. \ */ \ cr = cse->cr; \ cr_is_null = (NULL == cr); \ assert(!cr_is_null || dollar_tlevel); \ DEBUG_ONLY(if (cr_is_null) TREF(donot_commit) |= DONOTCOMMIT_JNLGETCHECKSUM_NULL_CR;) \ cse->tn = ((cr_is_null || cr->in_tend) ? 0 : csd->trans_hist.curr_tn); \ - /* If cr is NULL, it is a restartable situation. So dont waste time computing checksums. Also \ - * if the db is encrypted, we cannot get at the encryption global buffer (jnl_get_checksum \ - * requires this) since we dont even have a regular global buffer corresponding to this block \ - * so there is no way jnl_get_checksum can proceed in that case. So it is actually necessary \ - * to avoid computing checksums if cr is NULL. \ + /* If cr is NULL, it is a restartable situation, so do not waste time computing checksums. \ + * If the db is encrypted, we cannot get at the encryption global buffer (jnl_get_checksum \ + * requires this) since we do not even have a regular global buffer corresponding to this \ + * block, so there is no way jnl_get_checksum can proceed in that case. Hence it is actually \ + * necessary to avoid computing checksums if cr is NULL. \ */ \ - cse->blk_checksum = !cr_is_null ? jnl_get_checksum((uint4 *)(old_blk), csa, (bsize)) : 0; \ + cse->blk_checksum = !cr_is_null ? jnl_get_checksum((blk_hdr_ptr_t)old_blk, csa, (bsize)) : 0; \ } -uint4 jnl_get_checksum(uint4 *buff, sgmnt_addrs *csa, int bufflen); -uint4 compute_checksum(uint4 init_sum, uint4 *buff, int bufflen); + +#include "gdsblk.h" + +uint4 jnl_get_checksum(blk_hdr_ptr_t buff, sgmnt_addrs *csa, int bufflen); +uint4 compute_checksum(uint4 init_sum, unsigned char *buff, int bufflen); #endif diff --git a/sr_port/jnl_put_jrt_pfin.c b/sr_port/jnl_put_jrt_pfin.c old mode 100644 new mode 100755 index 615f8b9b..5e0851c8 --- a/sr_port/jnl_put_jrt_pfin.c +++ b/sr_port/jnl_put_jrt_pfin.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -43,6 +44,6 @@ void jnl_put_jrt_pfin(sgmnt_addrs *csa) pfin_record.prefix.time = jgbl.gbl_jrec_time; pfin_record.prefix.checksum = INIT_CHECKSUM_SEED; pfin_record.filler = 0; - pfin_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&pfin_record, SIZEOF(struct_jrec_pfin)); - jnl_write(jpc, JRT_PFIN, (jnl_record *)&pfin_record, NULL, NULL); + pfin_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)&pfin_record, SIZEOF(struct_jrec_pfin)); + jnl_write(jpc, JRT_PFIN, (jnl_record *)&pfin_record, NULL, NULL, NULL); } diff --git a/sr_port/jnl_put_jrt_pini.c b/sr_port/jnl_put_jrt_pini.c old mode 100644 new mode 100755 index 2244894e..487226b6 --- a/sr_port/jnl_put_jrt_pini.c +++ b/sr_port/jnl_put_jrt_pini.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -32,7 +33,10 @@ GBLREF jnl_fence_control jnl_fence_ctl; GBLREF jnl_process_vector *prc_vec; GBLREF jnl_process_vector *originator_prc_vec; -GBLREF jnl_gbls_t jgbl; +GBLREF jnl_gbls_t jgbl; +GBLREF boolean_t exit_handler_active; +GBLREF int process_exiting; +GBLREF boolean_t is_src_server; void jnl_put_jrt_pini(sgmnt_addrs *csa) { @@ -61,8 +65,9 @@ void jnl_put_jrt_pini(sgmnt_addrs *csa) * prc_vec->jpv_time is for accounting purpose only. Usually it is kind of redundant too. */ if (!jgbl.forw_phase_recovery) { - assert(NULL == jgbl.mur_pini_addr_reset_fnptr); - assert((NULL == csa->miscptr) || IS_DSE_IMAGE); + assert((NULL == jgbl.mur_pini_addr_reset_fnptr) || (IS_MUPIP_IMAGE && exit_handler_active && process_exiting)); + assert((NULL == csa->miscptr) || IS_DSE_IMAGE || (IS_MUPIP_IMAGE && exit_handler_active && process_exiting) + || is_src_server); mur_plst = NULL; if (IS_GTCM_GNP_SERVER_IMAGE && (NULL != originator_prc_vec)) { @@ -86,8 +91,8 @@ void jnl_put_jrt_pini(sgmnt_addrs *csa) } memcpy((unsigned char*)&pini_record.process_vector[CURR_JPV], (unsigned char*)prc_vec, SIZEOF(jnl_process_vector)); pini_record.filler = 0; - pini_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&pini_record, SIZEOF(struct_jrec_pini)); - jnl_write(jpc, JRT_PINI, (jnl_record *)&pini_record, NULL, NULL); + pini_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)&pini_record, SIZEOF(struct_jrec_pini)); + jnl_write(jpc, JRT_PINI, (jnl_record *)&pini_record, NULL, NULL, NULL); /* Note : jpc->pini_addr should not be updated until PINI record is written [C9D08-002376] */ jpc->pini_addr = jbp->freeaddr - PINI_RECLEN; assert(jgbl.forw_phase_recovery || (NULL == mur_plst)); diff --git a/sr_port/jnl_rec_table.h b/sr_port/jnl_rec_table.h old mode 100644 new mode 100755 diff --git a/sr_port/jnl_send_oper.c b/sr_port/jnl_send_oper.c old mode 100644 new mode 100755 index 324eff92..fa2774b5 --- a/sr_port/jnl_send_oper.c +++ b/sr_port/jnl_send_oper.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -29,6 +30,12 @@ GBLREF bool caller_id_flag; GBLREF uint4 process_id; +error_def(ERR_CALLERID); +error_def(ERR_JNLBUFINFO); +error_def(ERR_JNLNOCREATE); +error_def(ERR_JNLPVTINFO); +error_def(ERR_JNLSENDOPER); + void jnl_send_oper(jnl_private_control *jpc, uint4 status) { sgmnt_addrs *csa; @@ -38,11 +45,6 @@ void jnl_send_oper(jnl_private_control *jpc, uint4 status) int4 io_in_prog, fsync_in_prog; boolean_t ok_to_log; /* TRUE except when we avoid flooding operator log due to ENOSPC error */ - error_def(ERR_CALLERID); - error_def(ERR_JNLBUFINFO); - error_def(ERR_JNLPVTINFO); - error_def(ERR_JNLSENDOPER); - switch(jpc->region->dyn.addr->acc_meth) { case dba_mm: @@ -50,13 +52,13 @@ void jnl_send_oper(jnl_private_control *jpc, uint4 status) csa = &FILE_INFO(jpc->region)->s_addrs; break; default: - GTMASSERT; + assertpro(FALSE && jpc->region->dyn.addr->acc_meth); } csd = csa->hdr; jb = jpc->jnl_buff; - UNIX_ONLY(assert((ENOSPC != jpc->status) || jb->enospc_errcnt || WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC))); - UNIX_ONLY(assert((SS_NORMAL == jpc->status) || (ENOSPC == jpc->status) || !jb->enospc_errcnt)); - VMS_ONLY(assert(!jb->enospc_errcnt)); /* currently not updated in VMS, so should be 0 */ + assert((ENOSPC != jpc->status) || jb->enospc_errcnt || WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC)); + assert((SS_NORMAL == jpc->status) || (ENOSPC == jpc->status) || !jb->enospc_errcnt + || (jb->enospc_errcnt && (ERR_JNLNOCREATE == jpc->status))); ok_to_log = (jb->enospc_errcnt ? (1 == (jb->enospc_errcnt % ENOSPC_LOGGING_PERIOD)) : TRUE); caller_id_flag = FALSE; @@ -69,38 +71,32 @@ void jnl_send_oper(jnl_private_control *jpc, uint4 status) { if (SS_NORMAL != jpc->status2) { - send_msg(VARLSTCNT(14) + send_msg_csa(CSA_ARG(csa) VARLSTCNT(14) ERR_JNLSENDOPER, 5, process_id, status, jpc->status, jpc->status2, jb->iosb.cond, status, 2, JNL_LEN_STR(csd), jpc->status, 0, jpc->status2); } else - send_msg(VARLSTCNT(12) + send_msg_csa(CSA_ARG(csa) VARLSTCNT(12) ERR_JNLSENDOPER, 5, process_id, status, jpc->status, jpc->status2, jb->iosb.cond, status, 2, JNL_LEN_STR(csd), jpc->status); } else - send_msg(VARLSTCNT(11) ERR_JNLSENDOPER, 5, process_id, status, jpc->status, jpc->status2, - jb->iosb.cond, status, 2, JNL_LEN_STR(csd)); + send_msg_csa(CSA_ARG(csa) VARLSTCNT(11) ERR_JNLSENDOPER, 5, process_id, status, jpc->status, + jpc->status2, jb->iosb.cond, status, 2, JNL_LEN_STR(csd)); } } jpc->status = SS_NORMAL; jpc->status2 = SS_NORMAL; - UNIX_ONLY( - io_in_prog = (jb->io_in_prog_latch.u.parts.latch_pid ? TRUE : FALSE); - now_writer = jb->io_in_prog_latch.u.parts.latch_pid; - ) - VMS_ONLY( - io_in_prog = jb->io_in_prog; - now_writer = jb->now_writer; - ) + io_in_prog = (jb->io_in_prog_latch.u.parts.latch_pid ? TRUE : FALSE); + now_writer = jb->io_in_prog_latch.u.parts.latch_pid; fsync_in_prog = jb->fsync_in_prog_latch.u.parts.latch_pid ? TRUE : FALSE; fsync_pid = jb->fsync_in_prog_latch.u.parts.latch_pid; /* note: the alignment of the parameters below is modelled on the alignment defined for JNLBUFINFO in merrors.msg */ if (ok_to_log) { - send_msg(VARLSTCNT(18) ERR_JNLBUFINFO, 16, process_id, + send_msg_csa(CSA_ARG(csa) VARLSTCNT(18) ERR_JNLBUFINFO, 16, process_id, jb->dsk, jb->free, jb->bytcnt, io_in_prog, fsync_in_prog, jb->dskaddr, jb->freeaddr, jb->qiocnt, now_writer, fsync_pid, jb->filesize, jb->cycle, jb->errcnt, jb->wrtsize, jb->fsync_dskaddr); - send_msg(VARLSTCNT(10) ERR_JNLPVTINFO, 8, process_id, + send_msg_csa(CSA_ARG(csa) VARLSTCNT(10) ERR_JNLPVTINFO, 8, process_id, jpc->cycle, jpc->fd_mismatch, jpc->channel, jpc->sync_io, jpc->pini_addr, jpc->qio_active, jpc->old_channel); } diff --git a/sr_port/jnl_typedef.h b/sr_port/jnl_typedef.h old mode 100644 new mode 100755 diff --git a/sr_port/jnl_wait.c b/sr_port/jnl_wait.c old mode 100644 new mode 100755 diff --git a/sr_port/jnl_write.c b/sr_port/jnl_write.c old mode 100644 new mode 100755 index cfa74571..91884fb1 --- a/sr_port/jnl_write.c +++ b/sr_port/jnl_write.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2003-2015 Fidelity National Information * + * Copyright (c) 2003-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -17,10 +17,6 @@ #include /* for offsetof() macro */ -#ifdef VMS -#include /* Required for gtmsource.h */ -#endif - #include "gdsroot.h" #include "gtm_facility.h" #include "fileinfo.h" @@ -43,7 +39,6 @@ #include "wbox_test_init.h" #include "gtmimagename.h" -GBLREF jnlpool_ctl_ptr_t temp_jnlpool_ctl; GBLREF uint4 process_id; GBLREF sm_uc_ptr_t jnldata_base; GBLREF jnlpool_addrs jnlpool; @@ -85,7 +80,7 @@ error_def(ERR_JNLWRTDEFER); #define JNL_PUTSTR(lcl_free, lcl_buff, src, len, lcl_size) \ { \ - int size_before_wrap; \ + uint4 size_before_wrap; \ \ size_before_wrap = lcl_size - lcl_free; \ if (len <= size_before_wrap) \ @@ -132,18 +127,20 @@ error_def(ERR_JNLWRTDEFER); int jnl_write_extend_if_needed(int4 jrec_len, jnl_buffer_ptr_t jb, uint4 lcl_freeaddr, sgmnt_addrs *csa, enum jnl_record_type rectype, blk_hdr_ptr_t blk_ptr, jnl_format_buffer *jfb, - gd_region *reg, jnl_private_control *jpc, jnl_record *jnl_rec); + gd_region *reg, jnl_private_control *jpc, jnl_record *jnl_rec, + jnlpool_write_ctx_t *jplctx); -#define DO_JNL_FILE_EXTEND_IF_NEEDED(JREC_LEN, JB, LCL_FREEADDR, CSA, RECTYPE, BLK_PTR, JFB, REG, JPC, JNL_REC) \ +#define DO_JNL_FILE_EXTEND_IF_NEEDED(JREC_LEN, JB, LCL_FREEADDR, CSA, RECTYPE, BLK_PTR, JFB, REG, JPC, JNL_REC, JPLCTX) \ MBSTART { \ if (0 != jnl_write_extend_if_needed(JREC_LEN, JB, LCL_FREEADDR, CSA, RECTYPE, BLK_PTR, JFB, \ - REG, JPC, JNL_REC)) \ + REG, JPC, JNL_REC, JPLCTX)) \ return; /* return from calling routine */ \ } MBEND int jnl_write_extend_if_needed(int4 jrec_len, jnl_buffer_ptr_t jb, uint4 lcl_freeaddr, sgmnt_addrs *csa, enum jnl_record_type rectype, blk_hdr_ptr_t blk_ptr, jnl_format_buffer *jfb, - gd_region *reg, jnl_private_control *jpc, jnl_record *jnl_rec) + gd_region *reg, jnl_private_control *jpc, jnl_record *jnl_rec, + jnlpool_write_ctx_t *jplctx) { int4 jrec_len_padded; int4 blocks_needed; @@ -208,9 +205,9 @@ int jnl_write_extend_if_needed(int4 jrec_len, jnl_buffer_ptr_t jb, uint4 lcl_fre jnl_rec->prefix.pini_addr = jpc->pini_addr; /* Checksum needs to be recomputed since prefix.pini_addr is changed in above statement */ jnl_rec->prefix.checksum = INIT_CHECKSUM_SEED; - jnl_rec->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, - (uint4 *)jnl_rec, jnl_rec->prefix.forwptr); - jnl_write(jpc, rectype, jnl_rec, NULL, NULL); + jnl_rec->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)jnl_rec, + jnl_rec->prefix.forwptr); + jnl_write(jpc, rectype, jnl_rec, NULL, NULL, jplctx); } DEBUG_ONLY(jnl_write_recursion_depth--); return 1; @@ -227,9 +224,9 @@ int jnl_write_extend_if_needed(int4 jrec_len, jnl_buffer_ptr_t jb, uint4 lcl_fre * For JRT_PBLK and JRT_AIMG it contains partial records */ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, blk_hdr_ptr_t blk_ptr, - jnl_format_buffer *jfb) + jnl_format_buffer *jfb, jnlpool_write_ctx_t *jplctx) { - int4 align_rec_len, rlen, rlen_with_align, dstlen, lcl_size, lcl_free, lcl_orig_free; + uint4 align_rec_len, rlen, rlen_with_align, dstlen, lcl_size, lcl_free, lcl_orig_free; jnl_buffer_ptr_t jb; sgmnt_addrs *csa; sgmnt_data_ptr_t csd; @@ -242,7 +239,7 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor uint4 checksum, jnlpool_size, lcl_freeaddr; sm_uc_ptr_t lcl_buff; gd_region *reg; - char *ptr; + uchar_ptr_t jnlrecptr; int jnl_wrt_start_modulus, jnl_wrt_start_mask; uint4 jnl_fs_block_size, aligned_lcl_free, padding_size; uint4 tmp_csum1, tmp_csum2; @@ -287,16 +284,16 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor assert((NULL == blk_ptr) || (JNL_MAX_PBLK_RECLEN(csd) >= rlen)); /* PBLK and AIMG */ jb->bytcnt += rlen; assert (0 == rlen % JNL_REC_START_BNDRY); - rlen_with_align = rlen + (int4)MIN_ALIGN_RECLEN; + rlen_with_align = rlen + MIN_ALIGN_RECLEN; assert(0 == rlen_with_align % JNL_REC_START_BNDRY); - assert((uint4)rlen_with_align < ((uint4)1 << jb->log2_of_alignsize)); + assert(rlen_with_align < (1 << jb->log2_of_alignsize)); if ((lcl_freeaddr >> jb->log2_of_alignsize) == ((lcl_freeaddr + rlen_with_align - 1) >> jb->log2_of_alignsize)) rlen_with_align = rlen; else { align_rec.align_str.length = ROUND_UP2(lcl_freeaddr, ((uint4)1 << jb->log2_of_alignsize)) - lcl_freeaddr - (uint4)MIN_ALIGN_RECLEN; - align_rec_len = (int4)(MIN_ALIGN_RECLEN + align_rec.align_str.length); + align_rec_len = MIN_ALIGN_RECLEN + align_rec.align_str.length; assert (0 == align_rec_len % JNL_REC_START_BNDRY); rlen_with_align = rlen + align_rec_len; } @@ -314,7 +311,8 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor { DO_JNL_WRITE_ATTEMPT_IF_NEEDED(jpc, jb, lcl_dskaddr, lcl_freeaddr, lcl_size, jnl_wrt_start_mask, align_rec_len, jnl_wrt_start_modulus); - DO_JNL_FILE_EXTEND_IF_NEEDED(align_rec_len, jb, lcl_freeaddr, csa, rectype, blk_ptr, jfb, reg, jpc, jnl_rec); + DO_JNL_FILE_EXTEND_IF_NEEDED(align_rec_len, jb, lcl_freeaddr, csa, rectype, blk_ptr, jfb, reg, jpc, jnl_rec, + jplctx); align_rec.prefix.jrec_type = JRT_ALIGN; assert(align_rec_len <= jb->max_jrec_len); align_rec.prefix.forwptr = suffix.backptr = align_rec_len; @@ -327,10 +325,10 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor align_rec.prefix.pini_addr = (JRT_PINI == rectype) ? JNL_FILE_FIRST_RECORD : jnl_rec->prefix.pini_addr; align_rec.prefix.checksum = INIT_CHECKSUM_SEED; suffix.suffix_code = JNL_REC_SUFFIX_CODE; - align_rec.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&align_rec, SIZEOF(jrec_prefix)); + align_rec.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)&align_rec, SIZEOF(jrec_prefix)); ADJUST_CHECKSUM(align_rec.prefix.checksum, lcl_freeaddr, align_rec.prefix.checksum); ADJUST_CHECKSUM(align_rec.prefix.checksum, csd->jnl_checksum, align_rec.prefix.checksum); - assert(lcl_free >= 0 && lcl_free < lcl_size); + assert(lcl_free < lcl_size); if (lcl_size >= (lcl_free + align_rec_len)) { /* before the string for zeroes */ memcpy(lcl_buff + lcl_free, (uchar_ptr_t)&align_rec, FIXED_ALIGN_RECLEN); @@ -387,7 +385,7 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor /* Checksum needs to be recomputed since prefix.pini_addr is changed in above statement */ jnl_rec->prefix.checksum = INIT_CHECKSUM_SEED; jnl_rec->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, - (uint4 *)&jnl_rec->jrec_pini, SIZEOF(struct_jrec_pini)); + (unsigned char *)&jnl_rec->jrec_pini, SIZEOF(struct_jrec_pini)); } } checksum = jnl_rec->prefix.checksum; @@ -399,7 +397,7 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor if ((JRT_PBLK == rectype) || (JRT_AIMG == rectype)) { COMPUTE_COMMON_CHECKSUM(tmp_csum2, jnl_rec->prefix); - tmp_csum1 = jnl_get_checksum((uint4 *)blk_ptr, NULL, jnl_rec->jrec_pblk.bsiz); + tmp_csum1 = jnl_get_checksum(blk_ptr, NULL, jnl_rec->jrec_pblk.bsiz); COMPUTE_PBLK_CHECKSUM(tmp_csum1, &jnl_rec->jrec_pblk, tmp_csum2, tmp_csum1); assert(checksum == tmp_csum1); } else if (IS_SET_KILL_ZKILL_ZTWORM_LGTRIG_ZTRIG(rectype)) @@ -407,21 +405,22 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor COMPUTE_COMMON_CHECKSUM(tmp_csum2, jnl_rec->prefix); mumps_node_ptr = jfb->buff + FIXED_UPD_RECLEN; mumps_node_sz = jfb->record_size - (FIXED_UPD_RECLEN + JREC_SUFFIX_SIZE); - tmp_csum1 = jnl_get_checksum((uint4 *)mumps_node_ptr, NULL, mumps_node_sz); + tmp_csum1 = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)mumps_node_ptr, mumps_node_sz); COMPUTE_LOGICAL_REC_CHECKSUM(tmp_csum1, &jnl_rec->jrec_set_kill, tmp_csum2, tmp_csum1); assert(checksum == tmp_csum1); - }else if (jrt_fixed_size[rectype] || JRT_ALIGN == rectype) + } else if (jrt_fixed_size[rectype] || JRT_ALIGN == rectype) { jnl_rec->prefix.checksum = INIT_CHECKSUM_SEED; - switch(rectype) + switch (rectype) { case JRT_ALIGN: - tmp_csum1 = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&jnl_rec->jrec_align, SIZEOF(jrec_prefix)); + tmp_csum1 = compute_checksum(INIT_CHECKSUM_SEED, + (unsigned char *)&jnl_rec->jrec_align, SIZEOF(jrec_prefix)); break; default: if(JRT_TRIPLE != rectype && JRT_HISTREC != rectype) - tmp_csum1 = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&jnl_rec->jrec_set_kill, - jnl_rec->prefix.forwptr); + tmp_csum1 = compute_checksum(INIT_CHECKSUM_SEED, + (unsigned char *)&jnl_rec->jrec_set_kill, jnl_rec->prefix.forwptr); break; } assert(checksum == tmp_csum1); @@ -433,7 +432,7 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor jnl_rec->prefix.checksum = checksum; DO_JNL_WRITE_ATTEMPT_IF_NEEDED(jpc, jb, lcl_dskaddr, lcl_freeaddr, lcl_size, jnl_wrt_start_mask, rlen, jnl_wrt_start_modulus); - DO_JNL_FILE_EXTEND_IF_NEEDED(rlen, jb, lcl_freeaddr, csa, rectype, blk_ptr, jfb, reg, jpc, jnl_rec); + DO_JNL_FILE_EXTEND_IF_NEEDED(rlen, jb, lcl_freeaddr, csa, rectype, blk_ptr, jfb, reg, jpc, jnl_rec, jplctx); lcl_orig_free = lcl_free; nowrap = (lcl_size >= (lcl_free + rlen)); assert(jrt_fixed_size[JRT_EOF]); @@ -458,7 +457,6 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor jnl_fs_block_size = jb->fs_block_size; aligned_lcl_free = ROUND_UP2(lcl_free, jnl_fs_block_size); padding_size = aligned_lcl_free - lcl_free; - assert(0 <= (int4)padding_size); if (padding_size) memset(lcl_buff + lcl_free, 0, padding_size); } @@ -522,32 +520,30 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor INCR_GVSTATS_COUNTER(csa, cnl, n_jbuff_bytes, rlen); assert(lcl_free == jpc->new_freeaddr % lcl_size); if (REPL_ENABLED(csa) && is_replicated && is_replicator) - { /* If the database is encrypted, then at this point jfb->buff will contain encrypted + { + assert(NULL != jplctx); + assert(NULL != jnlpool.jnlpool_ctl && NULL != jnlpool_ctl); /* ensure we haven't yet detached from the jnlpool */ + assert((&FILE_INFO(jnlpool.jnlpool_dummy_reg)->s_addrs)->now_crit); /* ensure we have the jnl pool lock */ + DEBUG_ONLY(jgbl.cu_jnl_index++;) + + /* If the database is encrypted, then at this point jfb->buff will contain encrypted * data which we don't want to to push into the jnlpool. Instead, we make use of the * alternate alt_buff which is guaranteed to contain the original unencrypted data. */ if (jrt_fixed_size[rectype]) - ptr = (char *)jnl_rec; + jnlrecptr = (uchar_ptr_t)jnl_rec; + else if (IS_SET_KILL_ZKILL_ZTWORM_LGTRIG_ZTRIG(rectype) && USES_ANY_KEY(csd)) + jnlrecptr = (uchar_ptr_t)jfb->alt_buff; else - { -# ifdef GTM_CRYPT - if (csd->is_encrypted && IS_SET_KILL_ZKILL_ZTWORM_LGTRIG_ZTRIG(rectype)) - ptr = jfb->alt_buff; - else -# endif - ptr = jfb->buff; - } - assert(NULL != jnlpool.jnlpool_ctl && NULL != jnlpool_ctl); /* ensure we haven't yet detached from the jnlpool */ - assert((&FILE_INFO(jnlpool.jnlpool_dummy_reg)->s_addrs)->now_crit); /* ensure we have the jnl pool lock */ - DEBUG_ONLY(jgbl.cu_jnl_index++;) - jnlpool_size = temp_jnlpool_ctl->jnlpool_size; - dstlen = jnlpool_size - temp_jnlpool_ctl->write; + jnlrecptr = (uchar_ptr_t)jfb->buff; + jnlpool_size = jnlpool_ctl->jnlpool_size; + dstlen = jnlpool_size - jplctx->write; if (rlen <= dstlen) /* dstlen >= rlen (most frequent case) */ - memcpy(jnldata_base + temp_jnlpool_ctl->write, ptr, rlen); + memcpy(jnldata_base + jplctx->write, jnlrecptr, rlen); else if (rlen <= jnlpool_size) /* dstlen < rlen <= jnlpool_size */ { - memcpy(jnldata_base + temp_jnlpool_ctl->write, ptr, dstlen); - memcpy(jnldata_base, ptr + dstlen, rlen - dstlen); + memcpy(jnldata_base + jplctx->write, jnlrecptr, dstlen); + memcpy(jnldata_base, jnlrecptr + dstlen, rlen - dstlen); } else /* dstlen <= jnlpool_size < rlen */ { /* Copy just the last "jnlpool_size" bytes of the journal record (which could be arbitrarily large) * onto the journal pool. Adjust pointers as appropriate. Note that this transaction can never be @@ -556,19 +552,14 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor * instead of the last "jnlpool_size" bytes and still things should work as well but we copy valid * data just in case it helps in debug situations. */ - ptr = ptr + rlen - jnlpool_size; - temp_jnlpool_ctl->write += rlen % jnlpool_size; - if (temp_jnlpool_ctl->write >= jnlpool_size) - temp_jnlpool_ctl->write -= jnlpool_size; - assert(temp_jnlpool_ctl->write < jnlpool_size); - dstlen = jnlpool_size - temp_jnlpool_ctl->write; - memcpy(jnldata_base + temp_jnlpool_ctl->write, ptr, dstlen); - memcpy(jnldata_base, ptr + dstlen, jnlpool_size - dstlen); - rlen = 0; + jnlrecptr = jnlrecptr + rlen - jnlpool_size; + memcpy(jnldata_base + jplctx->write, jnlrecptr, dstlen); + memcpy(jnldata_base, jnlrecptr + dstlen, jnlpool_size - dstlen); } - temp_jnlpool_ctl->write += rlen; - if (temp_jnlpool_ctl->write >= jnlpool_size) - temp_jnlpool_ctl->write -= jnlpool_size; + jplctx->write += rlen; + jplctx->write_total += rlen; + if (jplctx->write >= jnlpool_size) + jplctx->write %= jnlpool_size; } SET_JNLBUFF_PREV_JREC_TIME(jb, jnl_rec->prefix.time, DO_GBL_JREC_TIME_CHECK_TRUE); /* Keep jb->prev_jrec_time up to date */ jpc->temp_free = lcl_free; /* set jpc->temp_free BEFORE setting free_update_pid (secshr_db_clnup relies on this) */ @@ -589,15 +580,5 @@ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_recor jb->free = lcl_free; jb->free_update_pid = 0; DBG_CHECK_JNL_BUFF_FREEADDR(jb); - VMS_ONLY( - if (((lcl_freeaddr - jb->dskaddr) > jb->min_write_size) - && (SS_NORMAL != (status = jnl_qio_start(jpc))) && (ERR_JNLWRTNOWWRTR != status) && (ERR_JNLWRTDEFER != status)) - { - jb->blocked = 0; - jnl_file_lost(jpc, status); - DEBUG_ONLY(jnl_write_recursion_depth--); - return; - } - ) DEBUG_ONLY(jnl_write_recursion_depth--); } diff --git a/sr_port/jnl_write.h b/sr_port/jnl_write.h old mode 100644 new mode 100755 index 47cc80c3..b502fcc2 --- a/sr_port/jnl_write.h +++ b/sr_port/jnl_write.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2003 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -14,6 +15,6 @@ /* We do not put this in jnl.h, because it needs all including jnl.h must include gdsblk.h */ void jnl_write(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, blk_hdr_ptr_t blk_ptr, - jnl_format_buffer *jfb); + jnl_format_buffer *jfb, jnlpool_write_ctx_t *jplctx); #endif diff --git a/sr_port/jnl_write_aimg_rec.c b/sr_port/jnl_write_aimg_rec.c old mode 100644 new mode 100755 index 9816ce2e..0dae43a0 --- a/sr_port/jnl_write_aimg_rec.c +++ b/sr_port/jnl_write_aimg_rec.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -29,9 +30,7 @@ #include "jnl_write_aimg_rec.h" #include "jnl_get_checksum.h" #include "min_max.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif GBLREF jnl_gbls_t jgbl; GBLREF mstr pvt_crypt_buf; @@ -47,11 +46,10 @@ void jnl_write_aimg_rec(sgmnt_addrs *csa, cw_set_element *cse, uint4 com_csum) jnl_private_control *jpc; sgmnt_data_ptr_t csd; uint4 cursum; -# ifdef GTM_CRYPT char *in, *out; int in_len, gtmcrypt_errno; gd_segment *seg; -# endif + boolean_t use_new_key; csd = csa->hdr; assert(csa->now_crit); @@ -82,9 +80,8 @@ void jnl_write_aimg_rec(sgmnt_addrs *csa, cw_set_element *cse, uint4 com_csum) suffix->suffix_code = JNL_REC_SUFFIX_CODE; assert(SIZEOF(uint4) == SIZEOF(jrec_suffix)); save_buffer = buffer; -# ifdef GTM_CRYPT in_len = aimg_record.bsiz - SIZEOF(*buffer); - if (BLK_NEEDS_ENCRYPTION3(csd->is_encrypted, buffer->levl, in_len)) + if (IS_BLK_ENCRYPTED(buffer->levl, in_len) && USES_ANY_KEY(csd)) { ASSERT_ENCRYPTION_INITIALIZED; assert(aimg_record.bsiz <= csa->hdr->blk_size); @@ -92,7 +89,10 @@ void jnl_write_aimg_rec(sgmnt_addrs *csa, cw_set_element *cse, uint4 com_csum) memcpy(pvt_crypt_buf.addr, buffer, SIZEOF(blk_hdr)); /* copy the block header */ in = (char *)(buffer + 1); /* + 1 because `buffer' is of type blk_hdr_ptr_t */ out = pvt_crypt_buf.addr + SIZEOF(blk_hdr); - GTMCRYPT_ENCRYPT(csa, csa->encr_key_handle, in, in_len, out, gtmcrypt_errno); + use_new_key = USES_NEW_KEY(csd); + GTMCRYPT_ENCRYPT(csa, (use_new_key ? TRUE : csd->non_null_iv), + (use_new_key ? csa->encr_key_handle2 : csa->encr_key_handle), + in, in_len, out, buffer, SIZEOF(blk_hdr), gtmcrypt_errno); if (0 != gtmcrypt_errno) { seg = csa->region->dyn.addr; @@ -100,9 +100,8 @@ void jnl_write_aimg_rec(sgmnt_addrs *csa, cw_set_element *cse, uint4 com_csum) } buffer = (blk_hdr_ptr_t)pvt_crypt_buf.addr; } -# endif - cursum = jnl_get_checksum((uint4 *)buffer, NULL, aimg_record.bsiz); + cursum = jnl_get_checksum(buffer, NULL, aimg_record.bsiz); COMPUTE_AIMG_CHECKSUM(cursum, &aimg_record, com_csum, aimg_record.prefix.checksum); - jnl_write(jpc, JRT_AIMG, (jnl_record *)&aimg_record, buffer, &blk_trailer); + jnl_write(jpc, JRT_AIMG, (jnl_record *)&aimg_record, buffer, &blk_trailer, NULL); buffer = save_buffer; } diff --git a/sr_port/jnl_write_aimg_rec.h b/sr_port/jnl_write_aimg_rec.h old mode 100644 new mode 100755 diff --git a/sr_port/jnl_write_attempt.c b/sr_port/jnl_write_attempt.c old mode 100644 new mode 100755 index bfb0381f..bf4488fa --- a/sr_port/jnl_write_attempt.c +++ b/sr_port/jnl_write_attempt.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -32,20 +33,15 @@ #include "have_crit.h" #include "wbox_test_init.h" #include "anticipatory_freeze.h" - -#ifdef UNIX #include "repl_msg.h" /* needed for gtmsource.h */ #include "gtmsource.h" /* needed for jnlpool_addrs typedef */ #include "gtmmsg.h" #include "io.h" /* needed by gtmsecshr.h */ #include "gtmsecshr.h" /* for continue_proc */ -#endif #include "gtm_c_stack_trace.h" -#ifdef UNIX GBLREF jnlpool_addrs jnlpool; -#endif -GBLREF pid_t process_id; +GBLREF uint4 process_id; GBLREF uint4 image_count; error_def(ERR_JNLACCESS); @@ -82,7 +78,6 @@ static uint4 jnl_sub_write_attempt(jnl_private_control *jpc, unsigned int *lcnt, exact_check = was_crit && (threshold == jb->freeaddr); /* see comment in jnl_write_attempt() for why this is needed */ while (exact_check ? (jb->dskaddr != threshold) : (jb->dskaddr < threshold)) { -#ifdef UNIX if (jb->io_in_prog_latch.u.parts.latch_pid == process_id) { /* if error condition occurred while doing jnl_qio_start(), then release the lock before waiting */ @@ -92,53 +87,11 @@ static uint4 jnl_sub_write_attempt(jnl_private_control *jpc, unsigned int *lcnt, } if (!jb->io_in_prog_latch.u.parts.latch_pid) status = jnl_qio_start(jpc); -#elif defined VMS - if (lib$ast_in_prog()) - { - if (!jb->io_in_prog) - { - assert(jb->blocked == process_id); - jnl_start_ast(jpc); - if (jb->now_writer == process_id) - status = jb->iosb.cond; - } - break; /* no fancy stuff within an AST */ - } else if (!jb->io_in_prog) - { /* Note down jpc->new_dskaddr/new_dsk into local variables so we get a consistent copy of these two - * variables for checking them later. - */ - new_dskaddr = jpc->new_dskaddr; - new_dsk = jpc->new_dsk; - status = jnl_qio_start(jpc); - } -#else -#error UNSUPPORTED PLATFORM -#endif if (SS_NORMAL == status) { -# if defined VMS - /* Check if JNLCNTRL error was signalled by jnl_qio_start(). Note that it does not explicitly - * return this error since it in turn calls an AST routine jnl_start_ast that actually has the - * qio lock (and hence can look at dskaddr/dsk without any concurrency issues). But jpc will - * have two fields new_dskaddr/new_dsk set to what dskaddr/dsk were right after obtaining the - * qio lock but before releasing it in case of a JNLCNTRL error. We use those two values to - * recheck if this is a JNLCNTRL error situation and if so return that error from here. - * Note that we cannot use fields from jpc since they could be set by an AST that pops right - * after we check new_dskaddr below but before we fetch the value of new_dsk. So it is important - * to use the local variables which we know are a consistent snapshot of jpc->new_dskaddr/new_dsk. - * The only consequence of this approach is that in case there is a dskaddr/dsk inconsistency, - * it will be detected by the local variables in the next iteration (not the first time around). - */ - if ((new_dskaddr % jb->size) != new_dsk) - { - assert(gtm_white_box_test_case_enabled - && (WBTEST_JNL_FILE_LOST_DSKADDR == gtm_white_box_test_case_number)); - status = ERR_JNLCNTRL; - } -# endif break; } - UNIX_ONLY(assert(ERR_JNLWRTNOWWRTR != status);) /* dont have asynchronous jnl writes in Unix */ + assert(ERR_JNLWRTNOWWRTR != status); /* dont have asynchronous jnl writes in Unix */ if ((ERR_JNLWRTNOWWRTR != status) && (ERR_JNLWRTDEFER != status)) return status; if ((writer != CURRENT_JNL_IO_WRITER(jb)) || (1 == *lcnt)) @@ -153,22 +106,15 @@ static uint4 jnl_sub_write_attempt(jnl_private_control *jpc, unsigned int *lcnt, wcs_sleep(*lcnt); break; } - VMS_ONLY( - if ((CURRENT_JNL_IO_WRITER(jb) == process_id) && (jpc->qio_active == TRUE) && (jb->iosb.cond == -2)) - { /* this an "impossible" condition where the private flag and the io have lost sync */ - GTMASSERT; /* this should only occur in VMS; secshr_db_clnup should clear the problem */ - } - ) if (writer == CURRENT_JNL_IO_WRITER(jb)) { if (!was_crit) grab_crit(jpc->region); /* jnl_write_attempt has an assert about have_crit that this relies on */ - if (VMS_ONLY(0 == writer ||) FALSE == is_proc_alive(writer, jb->image_count)) + if (FALSE == is_proc_alive(writer, jb->image_count)) { /* no one home, clear the semaphore; */ BG_TRACE_PRO_ANY(csa, jnl_blocked_writer_lost); jnl_send_oper(jpc, ERR_JNLQIOSALVAGE); - VMS_ONLY(jb->io_in_prog = 0); - UNIX_ONLY(COMPSWAP_UNLOCK(&jb->io_in_prog_latch, writer, jb->image_count, LOCK_AVAILABLE, 0)); + COMPSWAP_UNLOCK(&jb->io_in_prog_latch, writer, jb->image_count, LOCK_AVAILABLE, 0); if (!was_crit) rel_crit(jpc->region); *lcnt = 1; @@ -185,7 +131,7 @@ static uint4 jnl_sub_write_attempt(jnl_private_control *jpc, unsigned int *lcnt, GET_C_STACK_FROM_SCRIPT("JNLPROCSTUCK", process_id, writer, stuck_cnt); *lcnt = 1; /* ??? is it necessary to limit this, and if so, how ??? */ status = ERR_JNLPROCSTUCK; - UNIX_ONLY(continue_proc(writer)); + continue_proc(writer); break; } break; @@ -243,22 +189,16 @@ uint4 jnl_write_attempt(jnl_private_control *jpc, uint4 threshold) } if (SS_NORMAL == status) { - /* In VMS, jnl writes are asynchronous. The above call to "jnl_sub_write_attempt" has returned - * SS_NORMAL status. This means the jnl qio lock is not in use by anyone else and is up for grabs. - * We would have scheduled a jnl qio write through a sys$dclast call. We have no control of when - * the AST routine "jnl_start_ast" will actually get control and start the write. Until then - * we dont want to keep reinvoking "jnl_sub_write_attempt" in a hard spin loop. So sleep. - * In Unix, writes are synchronous so SS_NORMAL status return implies we have completed a jnl + /* In Unix, writes are synchronous so SS_NORMAL status return implies we have completed a jnl * write and "jb->dskaddr" is closer to "threshold" than it was in the previous iteration. * A sleep at this point will only slow things down unnecessarily. Hence no sleep if Unix. */ - VMS_ONLY(wcs_sleep(lcnt);) continue; } if ((ERR_JNLCNTRL == status) || (ERR_JNLACCESS == status) || (csa->now_crit && (ERR_JNLWRTDEFER != status) && (ERR_JNLWRTNOWWRTR != status) && (ERR_JNLPROCSTUCK != status))) - { /* If JNLCNTRL or if holding crit and not waiting for some other writer (or self in VMS) + { /* If JNLCNTRL or if holding crit and not waiting for some other writer * better turn off journaling and proceed with database update to avoid a database hang. */ if (was_crit) @@ -276,7 +216,7 @@ uint4 jnl_write_attempt(jnl_private_control *jpc, uint4 threshold) { assert((gtm_white_box_test_case_enabled && (WBTEST_JNL_FILE_LOST_DSKADDR == gtm_white_box_test_case_number)) - UNIX_ONLY(|| TREF(gtm_test_fake_enospc) || WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC))); + || TREF(gtm_test_fake_enospc) || WBTEST_ENABLED(WBTEST_RECOVER_ENOSPC)); if (JNL_ENABLED(csa->hdr)) { /* We ignore the return value of jnl_file_lost() since we always want to report the journal * error, whatever its error handling method is. Also, an operator log will be sent by some @@ -298,7 +238,6 @@ uint4 jnl_write_attempt(jnl_private_control *jpc, uint4 threshold) else return status; } -# ifdef UNIX if ((ERR_JNLWRTDEFER == status) && IS_REPL_INST_FROZEN) { /* Check if the write was deferred because the instance is frozen. * In that case, wait until the freeze is lifted instead of wasting time spinning on the latch @@ -306,7 +245,6 @@ uint4 jnl_write_attempt(jnl_private_control *jpc, uint4 threshold) */ WAIT_FOR_REPL_INST_UNFREEZE(csa); } -# endif if ((ERR_JNLWRTDEFER != status) && (ERR_JNLWRTNOWWRTR != status) && (ERR_JNLPROCSTUCK != status)) { /* If holding crit, then jnl_sub_write_attempt would have invoked jnl_file_lost which would have * caused the JNL_FILE_SWITCHED check at the beginning of this for loop to succeed and return from diff --git a/sr_port/jnl_write_eof_rec.c b/sr_port/jnl_write_eof_rec.c old mode 100644 new mode 100755 index 697fee38..d249a551 --- a/sr_port/jnl_write_eof_rec.c +++ b/sr_port/jnl_write_eof_rec.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2003-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -12,9 +13,6 @@ #include "mdef.h" #include "gtm_inet.h" -#ifdef VMS -#include /* Required for gtmsource.h */ -#endif #include "gtm_time.h" #include "gdsroot.h" @@ -39,7 +37,8 @@ void jnl_write_eof_rec(sgmnt_addrs *csa, struct_jrec_eof *eof_record) assert(csa->now_crit); jpc = csa->jnl; - assert((0 != jpc->pini_addr) || (jpc->jnl_buff->freeaddr > jpc->jnl_buff->filesize - JNL_FILE_TAIL_PRESERVE)); + assert((0 != jpc->pini_addr) + || ((off_t)jpc->jnl_buff->freeaddr > ((off_t)DISK_BLOCK_SIZE * jpc->jnl_buff->filesize) - JNL_FILE_TAIL_PRESERVE)); eof_record->prefix.jrec_type = JRT_EOF; eof_record->prefix.forwptr = eof_record->suffix.backptr = EOF_RECLEN; eof_record->suffix.suffix_code = JNL_REC_SUFFIX_CODE; @@ -50,16 +49,17 @@ void jnl_write_eof_rec(sgmnt_addrs *csa, struct_jrec_eof *eof_record) assert(jgbl.gbl_jrec_time); eof_record->prefix.time = jgbl.gbl_jrec_time; ASSERT_JNL_SEQNO_FILEHDR_JNLPOOL(csa->hdr, jnlpool_ctl); /* debug-only sanity check between seqno of filehdr and jnlpool */ - UNIX_ONLY( - /* In UNIX, mur_close_files, at the beginning sets both jgbl.mur_jrec_seqno and csa->hdr->reg_seqno to - * murgbl.consist_jnl_seqno. Assert that this is indeed the case. However, csa->hdr->reg_seqno is NOT - * maintained by rollback during forward phase of recovery and is set only at mur_close_files whereas - * jgbl.mur_jrec_seqno is maintained all along. So, unless we are called from mur_close_files, we cannot - * rely csa->hdr->reg_seqno and so we can do the equality check only if we are called from mur_close_files - */ - assert(!jgbl.forw_phase_recovery || !jgbl.mur_rollback || (jgbl.mur_jrec_seqno == csa->hdr->reg_seqno) - || !process_exiting); - ) + /* In UNIX, mur_close_files, at the beginning sets both jgbl.mur_jrec_seqno and csa->hdr->reg_seqno to + * murgbl.consist_jnl_seqno. Assert that this is indeed the case. However, csa->hdr->reg_seqno is NOT + * maintained by rollback during forward phase of recovery and is set only at mur_close_files whereas + * jgbl.mur_jrec_seqno is maintained all along. So, unless we are called from mur_close_files, we cannot + * rely csa->hdr->reg_seqno and so we can do the equality check only if we are called from mur_close_files + */ + assert(!jgbl.forw_phase_recovery || !jgbl.mur_rollback || (jgbl.mur_jrec_seqno == csa->hdr->reg_seqno) || !process_exiting); + /* If caller is MUPIP JOURNAL ROLLBACK, it cannot be FORWARD rollback since that runs with journaling turned off + * and we are writing journal records here. Assert accordingly. + */ + assert(!jgbl.mur_rollback || !jgbl.mur_options_forward); if (!jgbl.forw_phase_recovery) { if (REPL_ALLOWED(csa)) @@ -70,6 +70,6 @@ void jnl_write_eof_rec(sgmnt_addrs *csa, struct_jrec_eof *eof_record) } else QWASSIGN(eof_record->jnl_seqno, jgbl.mur_jrec_seqno); eof_record->filler = 0; - eof_record->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)eof_record, SIZEOF(struct_jrec_eof)); - jnl_write(jpc, JRT_EOF, (jnl_record *)eof_record, NULL, NULL); + eof_record->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)eof_record, SIZEOF(struct_jrec_eof)); + jnl_write(jpc, JRT_EOF, (jnl_record *)eof_record, NULL, NULL, NULL); } diff --git a/sr_port/jnl_write_epoch_rec.c b/sr_port/jnl_write_epoch_rec.c old mode 100644 new mode 100755 index 2475e0a4..0161566d --- a/sr_port/jnl_write_epoch_rec.c +++ b/sr_port/jnl_write_epoch_rec.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -155,12 +156,17 @@ void jnl_write_epoch_rec(sgmnt_addrs *csa) */ assert(!jgbl.mur_rollback || !REPL_ALLOWED(csd) || process_exiting); assert(jgbl.mur_rollback || REPL_ALLOWED(csd)); + /* If caller is MUPIP JOURNAL ROLLBACK, it cannot be FORWARD rollback since that runs with journaling + * turned off and we are writing journal records in this function. Assert accordingly. + */ + assert(!jgbl.mur_rollback || !jgbl.mur_options_forward); for (idx = 0; idx < MAX_SUPPL_STRMS; idx++) jb->strm_end_seqno[idx] = csd->strm_reg_seqno[idx]; } # endif epoch_record.filler = 0; - epoch_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&epoch_record, SIZEOF(struct_jrec_epoch)); - jnl_write(jpc, JRT_EPOCH, (jnl_record *)&epoch_record, NULL, NULL); + epoch_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, + (unsigned char *)&epoch_record, SIZEOF(struct_jrec_epoch)); + jnl_write(jpc, JRT_EPOCH, (jnl_record *)&epoch_record, NULL, NULL, NULL); jb->post_epoch_freeaddr = jb->freeaddr; } diff --git a/sr_port/jnl_write_inctn_rec.c b/sr_port/jnl_write_inctn_rec.c old mode 100644 new mode 100755 index 0270e140..886b1667 --- a/sr_port/jnl_write_inctn_rec.c +++ b/sr_port/jnl_write_inctn_rec.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -73,6 +74,7 @@ void jnl_write_inctn_rec(sgmnt_addrs *csa) inctn_detail.blknum_struct.filler_uint4 = 0; inctn_detail.blknum_struct.filler_short = 0; inctn_record.detail = inctn_detail; - inctn_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&inctn_record, SIZEOF(struct_jrec_inctn)); - jnl_write(jpc, JRT_INCTN, (jnl_record *)&inctn_record, NULL, NULL); + inctn_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, + (unsigned char *)&inctn_record, SIZEOF(struct_jrec_inctn)); + jnl_write(jpc, JRT_INCTN, (jnl_record *)&inctn_record, NULL, NULL, NULL); } diff --git a/sr_port/jnl_write_logical.c b/sr_port/jnl_write_logical.c old mode 100644 new mode 100755 index 88a0a0ae..34b57d85 --- a/sr_port/jnl_write_logical.c +++ b/sr_port/jnl_write_logical.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -37,18 +38,15 @@ GBLREF jnl_fence_control jnl_fence_ctl; GBLREF uint4 dollar_tlevel; -GBLREF jnlpool_ctl_ptr_t temp_jnlpool_ctl; GBLREF jnl_gbls_t jgbl; GBLREF seq_num seq_num_zero; /* This called for TP and non-TP, but not for ZTP */ -void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum) +void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum, jnlpool_write_ctx_t *jplctx) { struct_jrec_upd *jrec; struct_jrec_null *jrec_null; - GTMCRYPT_ONLY( - struct_jrec_upd *jrec_alt; - ) + struct_jrec_upd *jrec_alt; jnl_private_control *jpc; /* If REPL_WAS_ENABLED(csa) is TRUE, then we would not have gone through the code that initializes * jgbl.gbl_jrec_time or jpc->pini_addr. But in this case, we are not writing the journal record @@ -81,9 +79,8 @@ void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum) { COMPUTE_LOGICAL_REC_CHECKSUM(jfb->checksum, jrec, com_csum, jrec->prefix.checksum); } else - jrec->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)jrec, SIZEOF(struct_jrec_null)); -# ifdef GTM_CRYPT - if (csa->hdr->is_encrypted && REPL_ALLOWED(csa)) + jrec->prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)jrec, SIZEOF(struct_jrec_null)); + if (REPL_ALLOWED(csa) && USES_ANY_KEY(csa->hdr)) { jrec_alt = (struct_jrec_upd *)jfb->alt_buff; jrec_alt->prefix = jrec->prefix; @@ -91,6 +88,5 @@ void jnl_write_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum) jrec_alt->strm_seqno = jrec->strm_seqno; jrec_alt->num_participants = jrec->num_participants; } -# endif - JNL_WRITE_APPROPRIATE(csa, jpc, jfb->rectype, (jnl_record *)jrec, NULL, jfb); + JNL_WRITE_APPROPRIATE(csa, jpc, jfb->rectype, (jnl_record *)jrec, NULL, jfb, jplctx); } diff --git a/sr_port/jnl_write_pblk.c b/sr_port/jnl_write_pblk.c old mode 100644 new mode 100755 index 45dcb161..c2d4c84f --- a/sr_port/jnl_write_pblk.c +++ b/sr_port/jnl_write_pblk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -58,7 +59,7 @@ void jnl_write_pblk(sgmnt_addrs *csa, cw_set_element *cse, blk_hdr_ptr_t buffer, assert(buffer->bsiz <= csa->hdr->blk_size || dse_running); pblk_record.bsiz = MIN(csa->hdr->blk_size, buffer->bsiz); assert((pblk_record.bsiz == buffer->bsiz) || - (cse->blk_checksum == jnl_get_checksum((uint4 *)buffer, NULL, pblk_record.bsiz))); + (cse->blk_checksum == jnl_get_checksum(buffer, NULL, pblk_record.bsiz))); assert(pblk_record.bsiz >= SIZEOF(blk_hdr) || dse_running); pblk_record.ondsk_blkver = cse->ondsk_blkver; tmp_jrec_size = (int)FIXED_PBLK_RECLEN + pblk_record.bsiz + JREC_SUFFIX_SIZE; @@ -72,5 +73,5 @@ void jnl_write_pblk(sgmnt_addrs *csa, cw_set_element *cse, blk_hdr_ptr_t buffer, COMPUTE_PBLK_CHECKSUM(cse->blk_checksum, &pblk_record, com_csum, pblk_record.prefix.checksum); suffix->suffix_code = JNL_REC_SUFFIX_CODE; assert(SIZEOF(uint4) == SIZEOF(jrec_suffix)); - jnl_write(jpc, JRT_PBLK, (jnl_record *)&pblk_record, buffer, &blk_trailer); + jnl_write(jpc, JRT_PBLK, (jnl_record *)&pblk_record, buffer, &blk_trailer, NULL); } diff --git a/sr_port/jnl_write_pblk.h b/sr_port/jnl_write_pblk.h old mode 100644 new mode 100755 diff --git a/sr_port/jnl_write_poolonly.c b/sr_port/jnl_write_poolonly.c index ee6601b1..7ca7bd8e 100644 --- a/sr_port/jnl_write_poolonly.c +++ b/sr_port/jnl_write_poolonly.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2007, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2007-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,10 +16,6 @@ #include /* for offsetof() macro */ -#ifdef VMS -#include /* Required for gtmsource.h */ -#endif - #include "gdsroot.h" #include "gtm_facility.h" #include "fileinfo.h" @@ -36,8 +33,6 @@ #include "jnl_write.h" #include "copy.h" -GBLREF jnlpool_ctl_ptr_t temp_jnlpool_ctl; - GBLREF uint4 process_id; GBLREF sm_uc_ptr_t jnldata_base; GBLREF jnlpool_addrs jnlpool; @@ -57,7 +52,8 @@ error_def(ERR_JNLWRTNOWWRTR); * jnl_rec : This contains fixed part of a variable size record or the complete fixed size records. * jfb : For SET/KILL/ZKILL records entire record is formatted in this. */ -void jnl_write_poolonly(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, jnl_format_buffer *jfb) +void jnl_write_poolonly(jnl_private_control *jpc, enum jnl_record_type rectype, jnl_record *jnl_rec, jnl_format_buffer *jfb, + jnlpool_write_ctx_t *jplctx) { int4 align_rec_len, rlen, rlen_with_align, srclen, dstlen; jnl_buffer_ptr_t jb; @@ -88,25 +84,39 @@ void jnl_write_poolonly(jnl_private_control *jpc, enum jnl_record_type rectype, assert(0 == rlen % JNL_REC_START_BNDRY); jb->bytcnt += rlen; DEBUG_ONLY(jgbl.cu_jnl_index++;) - jnlpool_size = temp_jnlpool_ctl->jnlpool_size; - dstlen = jnlpool_size - temp_jnlpool_ctl->write; + + /* If the database is encrypted, then at this point jfb->buff will contain encrypted + * data which we don't want to to push into the jnlpool. Instead, we make use of the + * alternate alt_buff which is guaranteed to contain the original unencrypted data. + */ if (jrt_fixed_size[rectype]) jnlrecptr = (uchar_ptr_t)jnl_rec; -# ifdef GTM_CRYPT - else if (csa->hdr->is_encrypted && IS_SET_KILL_ZKILL_ZTWORM_LGTRIG_ZTRIG(rectype)) + else if (IS_SET_KILL_ZKILL_ZTWORM_LGTRIG_ZTRIG(rectype) && USES_ANY_KEY(csa->hdr)) jnlrecptr = (uchar_ptr_t)jfb->alt_buff; -# endif else jnlrecptr = (uchar_ptr_t)jfb->buff; - - if (rlen <= dstlen) /* dstlen & srclen >= rlen (most frequent case) */ - memcpy(jnldata_base + temp_jnlpool_ctl->write, jnlrecptr, rlen); - else /* dstlen < rlen <= srclen */ + jnlpool_size = jnlpool_ctl->jnlpool_size; + dstlen = jnlpool_size - jplctx->write; + if (rlen <= dstlen) /* dstlen & srclen >= rlen (most frequent case) */ + memcpy(jnldata_base + jplctx->write, jnlrecptr, rlen); + else if (rlen <= jnlpool_size) /* dstlen < rlen <= jnlpool_size */ { - memcpy(jnldata_base + temp_jnlpool_ctl->write, jnlrecptr, dstlen); + memcpy(jnldata_base + jplctx->write, jnlrecptr, dstlen); memcpy(jnldata_base, jnlrecptr + dstlen, rlen - dstlen); + } else /* dstlen <= jnlpool_size < rlen */ + { /* Copy just the last "jnlpool_size" bytes of the journal record (which could be arbitrarily large) + * onto the journal pool. Adjust pointers as appropriate. Note that this transaction can never be + * read from the journal pool (because it does not completely fit in) but we still need to maintain + * contiguity of jnl-seqnos in the journal pool. Note we could probably copy 0s in the journal pool + * instead of the last "jnlpool_size" bytes and still things should work as well but we copy valid + * data just in case it helps in debug situations. + */ + jnlrecptr = jnlrecptr + rlen - jnlpool_size; + memcpy(jnldata_base + jplctx->write, jnlrecptr, dstlen); + memcpy(jnldata_base, jnlrecptr + dstlen, jnlpool_size - dstlen); } - temp_jnlpool_ctl->write += rlen; - if (temp_jnlpool_ctl->write >= jnlpool_size) - temp_jnlpool_ctl->write -= jnlpool_size; + jplctx->write += rlen; + jplctx->write_total += rlen; + if (jplctx->write >= jnlpool_size) + jplctx->write %= jnlpool_size; } diff --git a/sr_port/jnl_write_trunc_rec.c b/sr_port/jnl_write_trunc_rec.c index 982ee447..aadd580f 100644 --- a/sr_port/jnl_write_trunc_rec.c +++ b/sr_port/jnl_write_trunc_rec.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2012 Fidelity Information Services, Inc * + * Copyright (c) 2012-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -51,7 +52,7 @@ void jnl_write_trunc_rec(sgmnt_addrs *csa, uint4 orig_total_blks, uint4 orig_ trunc_rec.orig_total_blks = orig_total_blks; trunc_rec.orig_free_blocks = orig_free_blocks; trunc_rec.total_blks_after_trunc = total_blks_after_trunc; - trunc_rec.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&trunc_rec, SIZEOF(struct_jrec_trunc)); - jnl_write(jpc, JRT_TRUNC, (jnl_record *)&trunc_rec, NULL, NULL); + trunc_rec.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (unsigned char *)&trunc_rec, SIZEOF(struct_jrec_trunc)); + jnl_write(jpc, JRT_TRUNC, (jnl_record *)&trunc_rec, NULL, NULL, NULL); } diff --git a/sr_port/jnl_write_ztp_logical.c b/sr_port/jnl_write_ztp_logical.c old mode 100644 new mode 100755 index 888f7844..3cfa173b --- a/sr_port/jnl_write_ztp_logical.c +++ b/sr_port/jnl_write_ztp_logical.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2003, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2003-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -35,19 +36,15 @@ #endif GBLREF jnl_fence_control jnl_fence_ctl; -GBLREF jnlpool_ctl_ptr_t temp_jnlpool_ctl; GBLREF jnl_gbls_t jgbl; GBLREF seq_num seq_num_zero; GBLREF trans_num local_tn; /* transaction number for THIS PROCESS */ GBLREF uint4 process_id; -void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum) +void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_csum, seq_num jnl_seqno, + jnlpool_write_ctx_t *jplctx) { struct_jrec_upd *jrec; - volatile seq_num temp_seqno; - GTMCRYPT_ONLY( - struct_jrec_upd *jrec_alt; - ) jnl_private_control *jpc; /* If REPL_WAS_ENABLED(csa) is TRUE, then we would not have gone through the code that initializes @@ -65,12 +62,11 @@ void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_c jrec->prefix.pini_addr = (0 == jpc->pini_addr) ? JNL_HDR_LEN : jpc->pini_addr; jrec->prefix.tn = csa->ti->curr_tn; jrec->prefix.time = jgbl.gbl_jrec_time; - temp_seqno = temp_jnlpool_ctl->jnl_seqno; if (QWEQ(jnl_fence_ctl.token, seq_num_zero)) { /* generate token once after op_ztstart and use for all its mini-transactions * jnl_fence_ctl.token is set to seq_num_zero in op_ztstart */ if (REPL_ALLOWED(csa)) - QWASSIGN(jnl_fence_ctl.token, temp_seqno); + QWASSIGN(jnl_fence_ctl.token, jnl_seqno); else { TOKEN_SET(&jnl_fence_ctl.token, local_tn, process_id); @@ -80,6 +76,6 @@ void jnl_write_ztp_logical(sgmnt_addrs *csa, jnl_format_buffer *jfb, uint4 com_c jrec->token_seq.token = jnl_fence_ctl.token; jrec->strm_seqno = 0; /* strm_seqno is only for replication & ZTCOM does not work with replic */ COMPUTE_LOGICAL_REC_CHECKSUM(jfb->checksum, jrec, com_csum, jrec->prefix.checksum); - GTMCRYPT_ONLY(assert(!REPL_ALLOWED(csa));) - JNL_WRITE_APPROPRIATE(csa, jpc, jfb->rectype, (jnl_record *)jrec, NULL, jfb); + assert(!REPL_ALLOWED(csa)); + JNL_WRITE_APPROPRIATE(csa, jpc, jfb->rectype, (jnl_record *)jrec, NULL, jfb, jplctx); } diff --git a/sr_port/jnlpool_hasnt_overflowed.c b/sr_port/jnlpool_hasnt_overflowed.c old mode 100644 new mode 100755 diff --git a/sr_port/job.h b/sr_port/job.h old mode 100644 new mode 100755 diff --git a/sr_port/job_addr.h b/sr_port/job_addr.h old mode 100644 new mode 100755 diff --git a/sr_port/jobexam_process.c b/sr_port/jobexam_process.c index 5d532589..efa5e58b 100644 --- a/sr_port/jobexam_process.c +++ b/sr_port/jobexam_process.c @@ -13,7 +13,8 @@ #include "mdef.h" #include -#include + +#include "gtm_signal.h" #include "gtm_unistd.h" #include "gtm_string.h" #include "gtm_stdio.h" @@ -73,7 +74,7 @@ void jobexam_process(mval *dump_file_name, mval *dump_file_spec) mv_stent *new_mv_stent; boolean_t saved_mv_stent; char saved_util_outbuff[OUT_BUFF_SIZE]; - int saved_util_outbuff_len; + int rc, saved_util_outbuff_len; char save_dump_file_name_buff[GTM_PATH_MAX]; # ifdef UNIX struct sigaction new_action, prev_action; @@ -105,7 +106,7 @@ void jobexam_process(mval *dump_file_name, mval *dump_file_spec) * nesting of signal handlers since the longjump() function used by the UNWIND macro is undefined on * Tru64 when signal handlers are nested. */ - sigprocmask(SIG_BLOCK, &blockalrm, &savemask); + SIGPROCMASK(SIG_BLOCK, &blockalrm, &savemask, rc); /* Setup new signal handler to just drive condition handler which will do the right thing */ memset(&new_action, 0, SIZEOF(new_action)); sigemptyset(&new_action.sa_mask); @@ -135,6 +136,7 @@ void jobexam_process(mval *dump_file_name, mval *dump_file_spec) * ... * RESTORE_UTIL_OUT_BUFFER(save_util_outptr, save_last_va_list_ptr, util_copy_saved); */ + ASSERT_SAFE_TO_UPDATE_THREAD_GBLS; saved_util_outbuff_len = 0; if (NULL == TREF(util_outptr)) TREF(util_outptr) = TREF(util_outbuff_ptr); @@ -172,7 +174,7 @@ void jobexam_process(mval *dump_file_name, mval *dump_file_spec) sigaction(SIGBUS, &prev_action, 0); sigaction(SIGSEGV, &prev_action, 0); /* Let the timers pop again.. */ - sigprocmask(SIG_SETMASK, &savemask, NULL); + SIGPROCMASK(SIG_SETMASK, &savemask, NULL, rc); # endif } diff --git a/sr_port/jobexam_process.h b/sr_port/jobexam_process.h old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_event.c b/sr_port/jobinterrupt_event.c old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_event.h b/sr_port/jobinterrupt_event.h old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_init.c b/sr_port/jobinterrupt_init.c old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_init.h b/sr_port/jobinterrupt_init.h old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_process.h b/sr_port/jobinterrupt_process.h old mode 100644 new mode 100755 diff --git a/sr_port/jobinterrupt_process_cleanup.h b/sr_port/jobinterrupt_process_cleanup.h old mode 100644 new mode 100755 diff --git a/sr_port/jobparameters.c b/sr_port/jobparameters.c old mode 100644 new mode 100755 diff --git a/sr_port/jobparams.h b/sr_port/jobparams.h old mode 100644 new mode 100755 diff --git a/sr_port/jobparamstrs.h b/sr_port/jobparamstrs.h old mode 100644 new mode 100755 diff --git a/sr_port/la_encrypt.c b/sr_port/la_encrypt.c old mode 100644 new mode 100755 diff --git a/sr_port/la_encrypt.h b/sr_port/la_encrypt.h old mode 100644 new mode 100755 diff --git a/sr_port/lb_init.c b/sr_port/lb_init.c old mode 100644 new mode 100755 index 6d7a6a0d..e0a5c986 --- a/sr_port/lb_init.c +++ b/sr_port/lb_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -20,7 +21,6 @@ #include "lb_init.h" GBLREF unsigned char *source_buffer; -GBLREF char *lexical_ptr; GBLREF struct ce_sentinel_desc *ce_def_list; error_def(ERR_CETOOMANY); @@ -138,7 +138,7 @@ void lb_init(void) } } } - lexical_ptr = (char *)source_buffer; + TREF(lexical_ptr) = (char *)source_buffer; advancewindow(); advancewindow(); return; diff --git a/sr_port/lb_init.h b/sr_port/lb_init.h old mode 100644 new mode 100755 diff --git a/sr_port/lcase.mpt b/sr_port/lcase.mpt old mode 100644 new mode 100755 diff --git a/sr_port/lckclr.c b/sr_port/lckclr.c old mode 100644 new mode 100755 diff --git a/sr_port/lckclr.h b/sr_port/lckclr.h old mode 100644 new mode 100755 diff --git a/sr_port/lcl_arg1_is_desc_of_arg2.c b/sr_port/lcl_arg1_is_desc_of_arg2.c old mode 100644 new mode 100755 diff --git a/sr_port/lclcol.mpt b/sr_port/lclcol.mpt old mode 100644 new mode 100755 diff --git a/sr_port/line.c b/sr_port/line.c old mode 100644 new mode 100755 diff --git a/sr_port/linetail.c b/sr_port/linetail.c old mode 100644 new mode 100755 diff --git a/sr_port/list_file.h b/sr_port/list_file.h old mode 100644 new mode 100755 diff --git a/sr_port/lk_check_own.c b/sr_port/lk_check_own.c old mode 100644 new mode 100755 diff --git a/sr_port/lk_check_own.h b/sr_port/lk_check_own.h old mode 100644 new mode 100755 diff --git a/sr_port/lke.h b/sr_port/lke.h old mode 100644 new mode 100755 diff --git a/sr_port/lke.hlp b/sr_port/lke.hlp old mode 100644 new mode 100755 index 8544d776..f63984db --- a/sr_port/lke.hlp +++ b/sr_port/lke.hlp @@ -555,7 +555,7 @@ 1 Copyright Copyright - Copyright 2015 + Copyright 2016 Fidelity National Information Services, Inc. and/or its subsidiaries. All rights reserved. @@ -577,7 +577,7 @@ **Note** - This help file is a concise representation of revision V6.2-002 of the + This help file is a concise representation of revision V6.3-000 of the UNIX Administration and Operations Guide. To obtain a copy of the current revision, go to www.fis-gtm.com and then click on the User Documentation tab. diff --git a/sr_port/lke_clear.c b/sr_port/lke_clear.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_clearlock.c b/sr_port/lke_clearlock.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_clearlock.h b/sr_port/lke_clearlock.h old mode 100644 new mode 100755 diff --git a/sr_port/lke_cleartree.c b/sr_port/lke_cleartree.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_cleartree.h b/sr_port/lke_cleartree.h old mode 100644 new mode 100755 diff --git a/sr_port/lke_exit.c b/sr_port/lke_exit.c old mode 100644 new mode 100755 index 2bb64f7f..436b6861 --- a/sr_port/lke_exit.c +++ b/sr_port/lke_exit.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001 Sanchez Computer Associates, Inc. * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -11,7 +12,7 @@ #include "mdef.h" -#include "gtm_stdlib.h" /* for exit() */ +#include "gtm_stdlib.h" /* for EXIT() */ #include "error.h" #include "gdsroot.h" diff --git a/sr_port/lke_getcli.c b/sr_port/lke_getcli.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_getcli.h b/sr_port/lke_getcli.h old mode 100644 new mode 100755 diff --git a/sr_port/lke_getki.c b/sr_port/lke_getki.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_show.c b/sr_port/lke_show.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_showlock.c b/sr_port/lke_showlock.c old mode 100644 new mode 100755 diff --git a/sr_port/lke_showtree.c b/sr_port/lke_showtree.c old mode 100644 new mode 100755 diff --git a/sr_port/lkglvn.c b/sr_port/lkglvn.c old mode 100644 new mode 100755 diff --git a/sr_port/lkinit.c b/sr_port/lkinit.c old mode 100644 new mode 100755 diff --git a/sr_port/loadop.m b/sr_port/loadop.m old mode 100644 new mode 100755 diff --git a/sr_port/loadvx.m b/sr_port/loadvx.m old mode 100644 new mode 100755 diff --git a/sr_port/lockconst.h b/sr_port/lockconst.h old mode 100644 new mode 100755 diff --git a/sr_port/locklits.h b/sr_port/locklits.h old mode 100644 new mode 100755 diff --git a/sr_port/logical_truth_value.c b/sr_port/logical_truth_value.c old mode 100644 new mode 100755 diff --git a/sr_port/logical_truth_value.h b/sr_port/logical_truth_value.h old mode 100644 new mode 100755 diff --git a/sr_port/longcpy.h b/sr_port/longcpy.h old mode 100644 new mode 100755 diff --git a/sr_port/longset.h b/sr_port/longset.h old mode 100644 new mode 100755 diff --git a/sr_port/lower_to_upper.c b/sr_port/lower_to_upper.c old mode 100644 new mode 100755 diff --git a/sr_port/lref.c b/sr_port/lref.c old mode 100644 new mode 100755 diff --git a/sr_port/lv_newblock.c b/sr_port/lv_newblock.c old mode 100644 new mode 100755 diff --git a/sr_port/lv_tree.c b/sr_port/lv_tree.c index b76e4a61..004d70ae 100644 --- a/sr_port/lv_tree.c +++ b/sr_port/lv_tree.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2011, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2011-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -875,18 +876,8 @@ void assert_tree_member_offsets(void) /* lvTree.ident == symval.ident == lv_val.v.mvtype */ assert(IS_OFFSET_AND_SIZE_MATCH(lvTree, ident, symval, ident)); assert(IS_OFFSET_AND_SIZE_MATCH(lvTree, ident, lv_val, v.mvtype)); - /* In order to get OFFSETOF & SIZEOF to work on v.mvtype, the mval field "mvtype" was changed from - * being a 16-bit "unsigned int" type bitfield to a "unsigned short". While this should not affect the - * size of the "mvtype" fields, we fear it might affect the size of the immediately following fields - * "sgn" (1-bit), "e" (7-bit) and "fnpc_index" (8-bit). While all of them together occupy 16-bits, they - * have an "unsigned int" as the type specifier. In order to ensure the compiler does not allocate 4-bytes - * (because of the int specification) to those 3 bitfields (and actually use only 2-bytes of those) and - * create a 2-byte filler space, we assert that the offset of the immediately following non-bitfield (which - * is "m[2]" in Unix & "str" in VMS) in the mval is 4-bytes. If the compiler had allocated 4-bytes, then this - * offset would have been 8-bytes instead and the assert will fail alerting us of the unnecessary mval size bloat. - */ - UNIX_ONLY(assert(4 == OFFSETOF(mval, m[0]));) - VMS_ONLY(assert(4 == OFFSETOF(mval, str));) + /* Verify two mval layouts are equivalent */ + assert(SIZEOF(mval) == SIZEOF(mval_b)); /* lvTree.sbs_depth == symval.sbs_depth */ assert(IS_OFFSET_AND_SIZE_MATCH(lvTree, sbs_depth, symval, sbs_depth)); /* lvTreeNode.v == lv_val.v */ diff --git a/sr_port/lv_val.h b/sr_port/lv_val.h old mode 100644 new mode 100755 index 6203e116..bc03c4b8 --- a/sr_port/lv_val.h +++ b/sr_port/lv_val.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -493,6 +494,15 @@ void set_active_lv(lv_val *newlv, boolean_t do_assert, int type); sym->lvtreenode_flist = LV; \ } +#ifdef UNIX +/* job command needs to send the local variables to the child */ +#define MIDCHILD_SEND_VAR \ +{ \ + if (TREF(midchild_send_locals)) \ + ojmidchild_send_var(); \ +} +#endif + unsigned char *format_lvname(lv_val *start, unsigned char *buff, int size); lv_val *lv_getslot(symval *sym); lvTree *lvtree_getslot(symval *sym); diff --git a/sr_port/lvn.c b/sr_port/lvn.c old mode 100644 new mode 100755 diff --git a/sr_port/lvzwr_arg.c b/sr_port/lvzwr_arg.c old mode 100644 new mode 100755 diff --git a/sr_port/lvzwr_init.c b/sr_port/lvzwr_init.c old mode 100644 new mode 100755 diff --git a/sr_port/lvzwr_key.c b/sr_port/lvzwr_key.c old mode 100644 new mode 100755 diff --git a/sr_port/lvzwr_out.c b/sr_port/lvzwr_out.c index ae1d5784..68ee69c5 100644 --- a/sr_port/lvzwr_out.c +++ b/sr_port/lvzwr_out.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -46,6 +47,7 @@ #include "format_targ_key.h" /* for ISSUE_GVSUBOFLOW_ERROR macro */ #include #include "stack_frame.h" +#include "jobsp.h" GBLREF lvzwrite_datablk *lvzwrite_block; GBLREF zshow_out *zwr_output; @@ -178,6 +180,7 @@ void lvzwr_out(lv_val *lvp) { /* Put out "dummy" statement that will clear all the $ZWRTAC vars for a clean slate */ zwr_output->flush = TRUE; zshow_output(zwr_output, &dzwrtac_clean); + UNIX_ONLY(MIDCHILD_SEND_VAR); } MEMCPY_LIT(zwrt_varname.c, DOLLAR_ZWRTAC); lastc = i2asc((uchar_ptr_t)zwrt_varname.c + STR_LIT_LEN(DOLLAR_ZWRTAC), zwrtacindx); @@ -200,6 +203,7 @@ void lvzwr_out(lv_val *lvp) zshow_output(zwr_output, &one); zwr_output->flush = TRUE; zshow_output(zwr_output, (const mstr *)&newzav->zwr_var); + UNIX_ONLY(MIDCHILD_SEND_VAR); if (dump_container) { /* We want to dump the entire container variable but the name doesn't match the var we are * currently dumping so push a new lvzwrite_block onto the stack, fill it in for the current var @@ -270,7 +274,7 @@ void lvzwr_out(lv_val *lvp) zshow_output(zwr_output, &one); mval_write(zwr_output, val, !htent_added); if (htent_added) - { /* output the ";#" tag to indicate this is an alias output */ + { /* output the "; *" tag to indicate this is an alias output */ zwr_output->flush = TRUE; zshow_output(zwr_output, &semi_star); } diff --git a/sr_port/lvzwr_var.c b/sr_port/lvzwr_var.c old mode 100644 new mode 100755 index 0307272d..c874c8ba --- a/sr_port/lvzwr_var.c +++ b/sr_port/lvzwr_var.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -121,15 +122,6 @@ lvzwr_var((lv_val *)NODE, n + 1); \ } -#ifdef UNIX -/* job command needs to send the local variables to the child */ -#define MIDCHILD_SEND_VAR \ -{ \ - if (TREF(midchild_send_locals)) \ - ojmidchild_send_var(); \ -} -#endif - GBLREF lvzwrite_datablk *lvzwrite_block; GBLREF int4 outofband; GBLREF zshow_out *zwr_output; diff --git a/sr_port/m_break.c b/sr_port/m_break.c old mode 100644 new mode 100755 diff --git a/sr_port/m_close.c b/sr_port/m_close.c old mode 100644 new mode 100755 diff --git a/sr_port/m_do.c b/sr_port/m_do.c old mode 100644 new mode 100755 diff --git a/sr_port/m_else.c b/sr_port/m_else.c old mode 100644 new mode 100755 diff --git a/sr_port/m_for.c b/sr_port/m_for.c old mode 100644 new mode 100755 diff --git a/sr_port/m_goto.c b/sr_port/m_goto.c old mode 100644 new mode 100755 diff --git a/sr_port/m_halt.c b/sr_port/m_halt.c old mode 100644 new mode 100755 diff --git a/sr_port/m_hang.c b/sr_port/m_hang.c old mode 100644 new mode 100755 diff --git a/sr_port/m_hcmd.c b/sr_port/m_hcmd.c old mode 100644 new mode 100755 diff --git a/sr_port/m_if.c b/sr_port/m_if.c old mode 100644 new mode 100755 diff --git a/sr_port/m_job.c b/sr_port/m_job.c old mode 100644 new mode 100755 diff --git a/sr_port/m_kill.c b/sr_port/m_kill.c old mode 100644 new mode 100755 diff --git a/sr_port/m_lock.c b/sr_port/m_lock.c old mode 100644 new mode 100755 diff --git a/sr_port/m_merge.c b/sr_port/m_merge.c old mode 100644 new mode 100755 diff --git a/sr_port/m_new.c b/sr_port/m_new.c old mode 100644 new mode 100755 diff --git a/sr_port/m_open.c b/sr_port/m_open.c old mode 100644 new mode 100755 diff --git a/sr_port/m_quit.c b/sr_port/m_quit.c old mode 100644 new mode 100755 diff --git a/sr_port/m_read.c b/sr_port/m_read.c old mode 100644 new mode 100755 diff --git a/sr_port/m_set.c b/sr_port/m_set.c old mode 100644 new mode 100755 diff --git a/sr_port/m_tcommit.c b/sr_port/m_tcommit.c old mode 100644 new mode 100755 diff --git a/sr_port/m_trestart.c b/sr_port/m_trestart.c old mode 100644 new mode 100755 diff --git a/sr_port/m_trollback.c b/sr_port/m_trollback.c old mode 100644 new mode 100755 diff --git a/sr_port/m_tstart.c b/sr_port/m_tstart.c old mode 100644 new mode 100755 diff --git a/sr_port/m_use.c b/sr_port/m_use.c old mode 100644 new mode 100755 diff --git a/sr_port/m_view.c b/sr_port/m_view.c old mode 100644 new mode 100755 diff --git a/sr_port/m_write.c b/sr_port/m_write.c old mode 100644 new mode 100755 diff --git a/sr_port/m_xecute.c b/sr_port/m_xecute.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zallocate.c b/sr_port/m_zallocate.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zattach.c b/sr_port/m_zattach.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zbreak.c b/sr_port/m_zbreak.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zcompile.c b/sr_port/m_zcompile.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zcontinue.c b/sr_port/m_zcontinue.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zdeallocate.c b/sr_port/m_zdeallocate.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zedit.c b/sr_port/m_zedit.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zgoto.c b/sr_port/m_zgoto.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zhelp.c b/sr_port/m_zhelp.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zlink.c b/sr_port/m_zlink.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zmessage.c b/sr_port/m_zmessage.c old mode 100644 new mode 100755 index 2287c8b6..0f1e277b --- a/sr_port/m_zmessage.c +++ b/sr_port/m_zmessage.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -17,25 +18,36 @@ #include "advancewindow.h" #include "cmd.h" +error_def(ERR_FCHARMAXARGS); + int m_zmessage (void) { - int count; - oprtype code, arg; - triple *ref0, *ref1; + int count; + oprtype arg; + triple *ref0, *ref1; DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; - switch (expr(&code, MUMPS_INT)) + switch (expr(&arg, MUMPS_EXPR)) { case EXPR_FAIL: return FALSE; case EXPR_INDR: if (TK_COLON != TREF(window_token)) - make_commarg (&code, indir_zmess); + { + coerce(&arg, OCT_MVAL); + make_commarg(&arg, indir_zmess); + return TRUE; + } + /* caution: fall through */ + case EXPR_GOOD: + coerce(&arg, OCT_MINT); + ref0 = maketriple(OC_ZMESS); + ref0->operand[1] = put_tref(newtriple(OC_PARAMETER)); + ref1 = ref0->operand[1].oprval.tref; + ref1->operand[0] = arg; + break; } - ref0 = newtriple(OC_PARAMETER); - ref0->operand[0] = code; - ref1 = ref0; for (count = 1; TK_COLON == TREF(window_token); count++) { advancewindow(); @@ -45,8 +57,7 @@ int m_zmessage (void) ref1 = ref1->operand[1].oprval.tref; ref1->operand[0] = arg; } - ref1 = newtriple(OC_ZMESS); - ref1->operand[0] = put_ilit(count); - ref1->operand[1] = put_tref(ref0); + ref0->operand[0] = put_ilit(count); + ins_triple(ref0); return TRUE; } diff --git a/sr_port/m_zprint.c b/sr_port/m_zprint.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zshow.c b/sr_port/m_zshow.c old mode 100644 new mode 100755 index 0fd0ca48..a6a64f8d --- a/sr_port/m_zshow.c +++ b/sr_port/m_zshow.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -42,10 +43,14 @@ int m_zshow(void) case EXPR_GOOD: break; case EXPR_INDR: - make_commarg(&func,indir_zshow); - return TRUE; + if (TK_COLON != TREF(window_token)) + { + make_commarg(&func, indir_zshow); + return TRUE; + } + break; default: - GTMASSERT; + assertpro(FALSE); } } if (TK_COLON == TREF(window_token)) diff --git a/sr_port/m_zstep.c b/sr_port/m_zstep.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zsystem.c b/sr_port/m_zsystem.c old mode 100644 new mode 100755 diff --git a/sr_port/m_ztcommit.c b/sr_port/m_ztcommit.c old mode 100644 new mode 100755 diff --git a/sr_port/m_ztstart.c b/sr_port/m_ztstart.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zwatch.c b/sr_port/m_zwatch.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zwithdraw.c b/sr_port/m_zwithdraw.c old mode 100644 new mode 100755 diff --git a/sr_port/m_zwrite.c b/sr_port/m_zwrite.c old mode 100644 new mode 100755 diff --git a/sr_port/make_commarg.c b/sr_port/make_commarg.c old mode 100644 new mode 100755 diff --git a/sr_port/make_gvsubsc.c b/sr_port/make_gvsubsc.c old mode 100644 new mode 100755 diff --git a/sr_port/maketriple.c b/sr_port/maketriple.c old mode 100644 new mode 100755 diff --git a/sr_port/matchc.c b/sr_port/matchc.c old mode 100644 new mode 100755 diff --git a/sr_port/matchc.h b/sr_port/matchc.h old mode 100644 new mode 100755 diff --git a/sr_port/mcalloc.c b/sr_port/mcalloc.c old mode 100644 new mode 100755 diff --git a/sr_port/mcfree.c b/sr_port/mcfree.c old mode 100644 new mode 100755 diff --git a/sr_port/mdb_condition_handler.c b/sr_port/mdb_condition_handler.c index 3c3abe0c..0a5fa81a 100644 --- a/sr_port/mdb_condition_handler.c +++ b/sr_port/mdb_condition_handler.c @@ -23,7 +23,7 @@ # include #endif #ifdef UNIX -# include +#include "gtm_signal.h" # include #endif @@ -622,7 +622,8 @@ CONDITION_HANDLER(mdb_condition_handler) TREF(in_op_fnnext) = FALSE; /* in case we were in $NEXT */ /* Global values that may need cleanups */ if (INTRPT_OK_TO_INTERRUPT != intrpt_ok_state) - ENABLE_INTERRUPTS(intrpt_ok_state); /* If interrupts were deferred, re-enable them now */ + ENABLE_INTERRUPTS(intrpt_ok_state, INTRPT_OK_TO_INTERRUPT); /* If interrupts were deferred, + * re-enable them now */ } # ifdef GTM_TRIGGER /* At this point, we are past the point where the frame pointer is allowed to be resting on a trigger frame @@ -686,9 +687,9 @@ CONDITION_HANDLER(mdb_condition_handler) frame_pointer->type)); frame_pointer->mpc = restart_pc; frame_pointer->ctxt = restart_ctxt; - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD_OFF (1) in frame " + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART_OFF (1) in frame " "0x"lvaddr"\n", frame_pointer))); if (!(frame_pointer->type & SFT_DM)) dm_setup(); @@ -696,9 +697,9 @@ CONDITION_HANDLER(mdb_condition_handler) { frame_pointer->ctxt = GTM_CONTEXT(call_dm); frame_pointer->mpc = CODE_ADDRESS(call_dm); - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD_OFF (1) in frame " + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART_OFF (1) in frame " "0x"lvaddr"\n", frame_pointer))); } else { @@ -706,9 +707,9 @@ CONDITION_HANDLER(mdb_condition_handler) IF_INDR_FRAME_CLEANUP_CACHE_ENTRY_AND_UNMARK(frame_pointer); frame_pointer->ctxt = GTM_CONTEXT(pseudo_ret); frame_pointer->mpc = CODE_ADDRESS(pseudo_ret); - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD_OFF (1) in frame " + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART_OFF (1) in frame " "0x"lvaddr"\n", frame_pointer))); } PRN_ERROR; @@ -820,8 +821,8 @@ CONDITION_HANDLER(mdb_condition_handler) { frame_pointer->ctxt = GTM_CONTEXT(call_dm); frame_pointer->mpc = CODE_ADDRESS(call_dm); - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ - GTMTRIG_ONLY(DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD (2) in frame 0x" + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ + GTMTRIG_ONLY(DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART (2) in frame 0x" lvaddr"\n", frame_pointer))); } else { @@ -829,8 +830,8 @@ CONDITION_HANDLER(mdb_condition_handler) IF_INDR_FRAME_CLEANUP_CACHE_ENTRY_AND_UNMARK(frame_pointer); frame_pointer->ctxt = GTM_CONTEXT(pseudo_ret); frame_pointer->mpc = CODE_ADDRESS(pseudo_ret); - frame_pointer->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ - GTMTRIG_ONLY(DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD (3) in frame 0x" + frame_pointer->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ + GTMTRIG_ONLY(DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART (3) in frame 0x" lvaddr"\n", frame_pointer))); } PRN_ERROR; @@ -1012,9 +1013,9 @@ CONDITION_HANDLER(mdb_condition_handler) { assert(SFF_INDCE & fp->flags); fp->mpc = fp->ctxt; - fp->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + fp->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD" + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART" " (4) in frame 0x"lvaddr"\n", frame_pointer))); break; } @@ -1025,18 +1026,18 @@ CONDITION_HANDLER(mdb_condition_handler) { /* GT.M specific error trapping retries the line with the error */ fp->mpc = dollar_ecode.error_last_b_line; fp->ctxt = context; - fp->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + fp->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD" + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART" " (5) in frame 0x"lvaddr"\n", frame_pointer))); break; } else { fp->ctxt = GTM_CONTEXT(pseudo_ret); fp->mpc = CODE_ADDRESS(pseudo_ret); - fp->flags &= SFF_IMPLTSTART_CALLD_OFF; /* Frame enterable now with mpc reset */ + fp->flags &= SSF_NORET_VIA_MUMTSTART_OFF; /* Frame enterable now with mpc reset */ GTMTRIG_ONLY( - DBGTRIGR((stderr, "mdb_condition_handler: turning off SFF_IMPLTSTART_CALLD" + DBGTRIGR((stderr, "mdb_condition_handler: disabling SSF_NORET_VIA_MUMTSTART" " (6) in frame 0x"lvaddr"\n", frame_pointer))); } } diff --git a/sr_port/mdef.h b/sr_port/mdef.h index 711ab700..7d2e3de3 100644 --- a/sr_port/mdef.h +++ b/sr_port/mdef.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -161,18 +161,12 @@ error_def(ERR_ASSERT); #endif /* INTPTR_T is an integer that has the same length as a pointer on each platform. Its basic use is for arithmetic - * or generic parameters. For all platforms except Tru64/VMS (alpha platforms), the [U]INTPTR_T types will be - * equivalenced to [u]intptr_t. But since this type is used for alignment and other checking, and since Tru64/VMS - * (implemented as a 32 bit platform) unconditionally sets this type to its 8 char variant, on Tru64/VMS we will - * explicitly make [U]INTPTR_T a 4 byte creature. + * or generic parameters. */ -#if !defined(__alpha) + typedef intptr_t INTPTR_T; typedef uintptr_t UINTPTR_T; -#else -typedef int INTPTR_T; -typedef unsigned int UINTPTR_T; -#endif + /* The intszofptr_t type is defined to be basically the same size as an address on the platforms it runs on. So it is the same size as INTPTR_T without the connotation of being a pointer. This is used in places where size_t or ssize_t would normally be used except they can't be used because they are the wrong size on Alpha systems. @@ -231,8 +225,10 @@ typedef UINTPTR_T uintszofptr_t; #if defined(__i386) || defined(__x86_64__) || defined(_AIX) || defined (__sun) # define GTM_PTHREAD # define GTM_PTHREAD_ONLY(X) X +# define NON_GTM_PTHREAD_ONLY(X) #else # define GTM_PTHREAD_ONLY(X) +# define NON_GTM_PTHREAD_ONLY(X) X #endif #if defined(__ia64) @@ -430,7 +426,7 @@ typedef long ulimit_t; /* NOT int4; the UNIX ulimit function returns a value of * Byte pattern max. expanded input byte ratio * output length length * ------------------------------------------------------------------------------ - * $C(129)_$ZCH(128)_ 18 2 9 + * $C(127)_$ZCH(128)_ 18 2 9 * $C(1536)_$ZCH(128)_ 19 3 7 * $C(65279)_$ZCH(128)_ 20 4 5 * $C(917585)_$ZCH(128)_ 21 5 6 @@ -500,8 +496,8 @@ mval *underr_strict(mval *start, ...); #define MV_IS_STRING(X) (((X)->mvtype & MV_STR) != 0) #define MV_DEFINED(X) (((X)->mvtype & (MV_STR | MV_NM)) != 0) #define MV_IS_CANONICAL(X) (((X)->mvtype & MV_NM) ? (((X)->mvtype & MV_NUM_APPROX) == 0) : (boolean_t)val_iscan(X)) -#define MV_INIT(X) ((X)->mvtype = 0, (X)->fnpc_indx = 0xff) -#define MV_INIT_STRING(X, LEN, ADDR) ((X)->mvtype = MV_STR, (X)->fnpc_indx = 0xff, \ +#define MV_INIT(X) ((X)->mvtype = 0, (X)->fnpc_indx = UNICODE_ONLY((X)->utfcgr_indx =) 0xff) +#define MV_INIT_STRING(X, LEN, ADDR) ((X)->mvtype = MV_STR, (X)->fnpc_indx = UNICODE_ONLY((X)->utfcgr_indx =) 0xff, \ (X)->str.len = INTCAST(LEN), (X)->str.addr = (char *)ADDR) /* The MVTYPE_IS_* macros are similar to the MV_IS_* macros except that the input is an mvtype instead of an "mval *". @@ -523,28 +519,33 @@ mval *underr_strict(mval *start, ...); #define DEFINE_MVAL_STRING(TYPE, EXPONENT, SIGN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, 0, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) -#ifdef VMS -#define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ - {TYPE, EXPONENT, SIGN, 0xff, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH} -#else #ifdef BIGENDIAN -#ifdef UNICODE_SUPPORTED -#define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ - {TYPE, SIGN, EXPONENT, 0xff, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} -#else -#define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ +# ifdef UNICODE_SUPPORTED +# ifdef GTM64 +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ + {TYPE, SIGN, EXPONENT, 0xff, 0xff, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} +# else +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ + {TYPE, SIGN, EXPONENT, 0xff, 0xff, 0, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} +# endif /* GTM64 */ +# else +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ {TYPE, SIGN, EXPONENT, 0xff, MANT_LOW, MANT_HIGH, LENGTH, ADDRESS} -#endif -#else /* BIGENDIAN */ -#ifdef UNICODE_SUPPORTED -#define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ - {TYPE, EXPONENT, SIGN, 0xff, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} -#else -#define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ +# endif /* UNICODE */ +#else /* end BIGENDIAN -- start LITTLEENDIAN */ +# ifdef UNICODE_SUPPORTED +# ifdef GTM64 +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ + {TYPE, EXPONENT, SIGN, 0xff, 0xff, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} +# else +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ + {TYPE, EXPONENT, SIGN, 0xff, 0xff, 0, MANT_LOW, MANT_HIGH, UTF_LEN, LENGTH, ADDRESS} +# endif /* GTM64 */ +# else +# define DEFINE_MVAL_COMMON(TYPE, EXPONENT, SIGN, UTF_LEN, LENGTH, ADDRESS, MANT_LOW, MANT_HIGH) \ {TYPE, EXPONENT, SIGN, 0xff, MANT_LOW, MANT_HIGH, LENGTH, ADDRESS} -#endif /* UNICODE */ -#endif /* BIGENDIAN */ -#endif /* VMS */ +# endif /* UNICODE */ +#endif /* BIGENDIAN/LITTLEENDIAN */ #define ASCII_MAX (unsigned char)0x7F #define IS_ASCII(X) ((uint4)(X) <= ASCII_MAX) /* X can be greater than 255 hence the typecast to uint4 */ @@ -825,8 +826,7 @@ typedef struct } global_latch_t; #define latch_image_count latch_word -#define GLOBAL_LATCH_HELD_BY_US(latch) (process_id == (latch)->u.parts.latch_pid \ - VMS_ONLY(&& image_count == (latch)->u.parts.latch_image_count)) +#define GLOBAL_LATCH_HELD_BY_US(latch) (process_id == (latch)->u.parts.latch_pid) typedef struct compswap_time_field_struct { /* This structure is used where we want to do a compare-n-swap (CAS) on a time value. The CAS interfaces @@ -1344,8 +1344,8 @@ char is_ident(mstr *v); int val_iscan(mval *v); void mcfree(void); int4 getprime(int4 n); -void push_parm(UNIX_ONLY_COMMA(unsigned int totalcnt) int truth_value, ...); -UNIX_ONLY(void suspend(int sig);) +void push_parm(unsigned int totalcnt, int truth_value, ...); +void suspend(int sig); mval *push_mval(mval *arg1); void mval_lex(mval *v, mstr *output); @@ -1715,24 +1715,22 @@ typedef enum #define CHK_BOUNDARY_ALIGNMENT(pointer) (((UINTPTR_T)pointer) & (SIZEOF(UINTPTR_T) - 1)) -/* Encryption and TLS related macros */ +/* Encryption- and TLS-related macros */ #if defined(__ia64) || defined(__i386) || defined(__x86_64__) || defined(__sparc) || defined(_AIX) || defined(__s390__) -# define GTM_CRYPT -# define GTMCRYPT_ONLY(X) X # define GTM_TLS # define GTMTLS_ONLY(X) X # define GTMTLS_ONLY_COMMA(X) , X # define NON_GTMTLS_ONLY(X) #else -# define GTMCRYPT_ONLY(X) # define GTMTLS_ONLY(X) # define GTMTLS_ONLY_COMMA(X) # define NON_GTMTLS_ONLY(X) X #endif #define GTMCRYPT_HASH_LEN 64 +#define GTMCRYPT_RESERVED_HASH_LEN 80 #define GTMCRYPT_HASH_HEX_LEN GTMCRYPT_HASH_LEN * 2 -#define GTMCRYPT_RESERVED_HASH_LEN 256 +#define GTMCRYPT_RESERVED_ENCR_SPACE 256 #define GTMCRYPT_PLUGIN_DIR_NAME "plugin" #define GTMCRYPT_UTIL_LIBNAME "libgtmcryptutil.so" @@ -1755,15 +1753,9 @@ typedef enum # define GTM_SNAPSHOT_ONLY(X) #endif -/* Currently MUPIP REORG -TRUNCATE is only supported on UNIX */ -#ifdef UNIX -# define GTM_TRUNCATE -# define NON_GTM_TRUNCATE_ONLY(X) -# define GTM_TRUNCATE_ONLY(X) X -#else -# define NON_GTM_TRUNCATE_ONLY(X) X -# define GTM_TRUNCATE_ONLY(X) -#endif +#define GTM_TRUNCATE +#define NON_GTM_TRUNCATE_ONLY(X) +#define GTM_TRUNCATE_ONLY(X) X /* Currently triggers are supported only on UNIX */ #if defined(UNIX) && !defined(__hppa) /* triggers not supported on HPUX-HPPA */ @@ -1828,7 +1820,7 @@ enum #ifdef GTM_PTHREAD /* If we detect a case when the signal came to a thread other than the main GT.M thread, this macro will redirect the signal to the * main thread if such is defined. Such scenarios is possible, for instance, if we are running along a JVM, which, upon receiving a - * signal, dispatches a new thread to invoke signal handlers other than its own. The ptrhead_kill() enables us to target the signal + * signal, dispatches a new thread to invoke signal handlers other than its own. The pthread_kill() enables us to target the signal * to a specific thread rather than rethrow it to the whole process. */ #define FORWARD_SIG_TO_MAIN_THREAD_IF_NEEDED(SIG) \ @@ -1861,9 +1853,9 @@ enum #define MV_FORCE_DEFINED_UNLESS_SKIPARG(V) ((!M_ARG_SKIPPED(V)) ? (MV_FORCE_DEFINED(V)) : (V)) #ifdef _AIX -#define LIBPATH_ENV "LIBPATH" +#define LIBPATH_ENV "LIBPATH" #else -#define LIBPATH_ENV "LD_LIBRARY_PATH" +#define LIBPATH_ENV "LD_LIBRARY_PATH" #endif #endif /* MDEF_included */ diff --git a/sr_port/mdq.h b/sr_port/mdq.h old mode 100644 new mode 100755 diff --git a/sr_port/mem_access.h b/sr_port/mem_access.h old mode 100644 new mode 100755 diff --git a/sr_port/memcoherency.h b/sr_port/memcoherency.h old mode 100644 new mode 100755 diff --git a/sr_port/memvcmp.c b/sr_port/memvcmp.c old mode 100644 new mode 100755 diff --git a/sr_port/merge_def.h b/sr_port/merge_def.h old mode 100644 new mode 100755 diff --git a/sr_port/merge_desc_check.c b/sr_port/merge_desc_check.c old mode 100644 new mode 100755 diff --git a/sr_port/merrors.msg b/sr_port/merrors.msg index cbeb3cc4..38ff004d 100644 --- a/sr_port/merrors.msg +++ b/sr_port/merrors.msg @@ -1,6 +1,6 @@ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! -! Copyright (c) 2001-2015 Fidelity National Information ! +! Copyright (c) 2001-2016 Fidelity National Information ! ! Services, Inc. and/or its subsidiaries. All rights reserved. ! ! ! ! This source code contains the intellectual property ! @@ -158,7 +158,6 @@ ! ERR_LKSECINIT message referenced only in GT.CX code (not supported currently) ! ERR_MUDESTROYFAIL referenced only if #define IPCRM_FOR_SANCHEZ_ONLY is TRUE. ! ERR_MUDESTROYSUC referenced only if #define IPCRM_FOR_SANCHEZ_ONLY is TRUE. -! ERR_RBWRNNOTCHG not seen by user since return status of mupip_set_file (that triggers this) is not displayed. ! ERR_REPEATERROR internal error (not displayed to the users) ! ERR_SYSTEMVALUE code is not executed (set $system won't reach op_svput at all to signal the error) ! ERR_TPRETRY internal error (not displayed to the users) @@ -168,6 +167,7 @@ ! ERR_ZDEFOFLOW functionality not documented (GT.CM related weirdness) ! ! +! ! ----- Buffer to introduce new undocumented error messages without affecting UNUSEDMSGnnn match with corresponding line numbers. ! ! @@ -216,7 +216,7 @@ DEVPARVALREQ /error/fao=0!/ansi=0 DEVPARMNEG /error/fao=0!/ansi=0 DSEBLKRDFAIL /error/fao=0!/ansi=0 DSEFAIL /error/fao=2!/ansi=0 -NOTALLREPLON /warning/fao=0!/ansi=0 +NOTALLREPLON /warning/fao=2!/ansi=0 BADLKIPARAM /error/fao=2!/ansi=0 JNLREADBOF /error/fao=2!/ansi=0 DVIKEYBAD <$ZGETDVI("!AD","!AD") contains an illegal keyword>/error/fao=4!/ansi=0 @@ -566,8 +566,8 @@ CCENOCCP /info/fao=0!/a CCECCPPID /info/fao=1!/ansi=0 CCECLSTPRCS /info/fao=1!/ansi=0 ZSHOWBADFUNC /error/fao=0!/ansi=0 -NOTALLJNLEN /warning/fao=0!/ansi=0 -ZSHOWGLOSMALL /error/fao=0!/ansi=0 +NOTALLJNLEN /warning/fao=2!/ansi=0 +UNUSEDMSG570 /error/fao=0!/ansi=0 NOLBRSRC /error/fao=0!/ansi=0 INVZSTEP /error/fao=0!/ansi=0 ZSTEPARG /error/fao=0!/ansi=0 @@ -667,7 +667,7 @@ CEBIGSKIP /error/fao=0!/an CETOOLONG /error/fao=0!/ansi=0 CENOINDIR /error/fao=0!/ansi=0 COLLATIONUNDEF /error/fao=1!/ansi=0 -RBWRNNOTCHG /warning/fao=0!/ansi=0 +UNUSEDMSG670 /error/fao=0!/ansi=0 GTMSECSHRSRVF /error/fao=4!/ansi=0 FREEZECTRL /info/fao=0!/ansi=0 JNLFLUSH /info/fao=2!/ansi=0 @@ -675,8 +675,8 @@ CCPSIGDMP /fatal/fao=0!/ansi=0 INVPORTSPEC /error/fao=0!/ansi=0 INVADDRSPEC /error/fao=0!/ansi=0 -UNUSEDMSG678 /error/fao=0!/ansi=78 -UNUSEDMSG679 /error/fao=0!/ansi=0 +MUREENCRYPTEND /info/fao=4!/ansi=0 +CRYPTJNLMISMATCH /error/fao=4!/ansi=0 SOCKWAIT /error/fao=0!/ansi=80 SOCKACPT /error/fao=0!/ansi=81 SOCKINIT /error/fao=3!/ansi=80 @@ -897,7 +897,7 @@ SCNDDBNOUPD /error/fao=0!/ansi=0 MUINFOUINT4 /info/fao=4!/ansi=0 NLMISMATCHCALC /error/fao=4!/ansi=0 RELINKCTLFULL /error/fao=3!/ansi=0 -UNUSEDMSG900 /info/fao=0!/ansi=0 +MUPIPSET2BIG /warning/fao=4!/ansi=0 DBBADNSUB /error/fao=2!/ansi=0 DBBADKYNM /error/fao=2!/ansi=0 DBBADPNTR /error/fao=2!/ansi=0 @@ -948,7 +948,7 @@ DBMBPFRDLBM /warning/fao=2!/ansi=0 DBMAXKEYEXC /error/fao=2!/ansi=0 DBMXRSEXCMIN /error/fao=2!/ansi=0 -UNUSEDMSG951 /error/fao=0!/ansi=0 +MUPIPSET2SML /warning/fao=4!/ansi=0 DBREADBM /error/fao=2!/ansi=0 DBCOMPTOOLRG /error/fao=2!/ansi=0 DBVERPERFWARN2 /warning/fao=2!/ansi=0 @@ -1183,9 +1183,9 @@ SETREG2RESYNC /warning/fao=7!/ansi=0 JNLFILEOPNERR /error/fao=2!/ansi=0 JNLFILECLOSERR /error/fao=2!/ansi=0 -REPLSTATEOFF /error/fao=2!/ansi=0 +REPLSTATEOFF /error/fao=2!/ansi=0 MUJNLPREVGEN /info/fao=4!/ansi=0 -MUPJNLINTERRUPT /error/fao=2!/ansi=0 +MUPJNLINTERRUPT /error/fao=2!/ansi=0 ROLLBKINTERRUPT /error/fao=2!/ansi=0 RLBKJNSEQ /info/fao=2!/ansi=0 REPLRECFMT /fatal/fao=0!/ansi=0 @@ -1313,11 +1313,11 @@ CRYPTOPFAILED /error/fao=4! CRYPTDLNOOPEN /error/fao=4!/ansi=0 CRYPTNOV4 /error/fao=2!/ansi=0 CRYPTNOMM /error/fao=2!/ansi=0 -CRYPTJNLWRONGHASH /error/fao=4!/ansi=0 +UNUSEDMSG1316 /error/fao=0!/ansi=0 CRYPTKEYFETCHFAILED /error/fao=4!/ansi=0 CRYPTKEYFETCHFAILEDNF /error/fao=4!/ansi=0 CRYPTHASHGENFAILED /error/fao=4!/ansi=0 -UNUSEDMSG1320 /error/fao=0!/ansi=0 +CRYPTNOKEY /error/fao=0!/ansi=0 BADTAG /error/fao=4!/ansi=0 ICUVERLT36 /error/fao=4!/ansi=0 ICUSYMNOTFOUND /error/fao=2!/ansi=0 @@ -1588,8 +1588,8 @@ ZPEEKNOJNLINFO <$ZPEEK() unable to access requested journal structure - region ! TLSPARAM /error/fao=4!/ansi=0 RLNKRECLATCH /error/fao=3!/ansi=0 RLNKSHMLATCH /error/fao=2!/ansi=0 -JOBLVN2LONG /error/fao=0!/ansi=0 -JOBLVNDETAIL /error/fao=2!/ansi=0 +JOBLVN2LONG /error/fao=2!/ansi=0 +NLRESTORE /warning/fao=4!/ansi=0 PREALLOCATEFAIL /error/fao=2!/ansi=0 NODFRALLOCSUPP /warning/fao=0!/ansi=0 LASTWRITERBYPAS /warning/fao=2!/ansi=0 @@ -1600,6 +1600,23 @@ INVZBREAK /error/fao=0!/ans INVTMPDIR /error/fao=2!/ansi=0 ARCTLMAXHIGH /warning/fao=4!/ansi=0 ARCTLMAXLOW /warning/fao=4!/ansi=0 +NONTPRESTART /info/fao=11!/ansi=0 +PBNPARMREQ /error/fao=4!/ansi=0 +PBNNOPARM /error/fao=2!/ansi=0 +PBNUNSUPSTRUCT <$ZPEEK() does not support structure !AD>/error/fao=2!/ansi=0 +PBNINVALID /error/fao=4!/ansi=0 +PBNNOFIELD <%ZPEEKBYNAME() requires a field.item as its first parameter>/error/fao=0!/ansi=0 +JNLDBSEQNOMATCH /error/fao=6!/ansi=0 +MULTIPROCLATCH /error/fao=2!/ansi=0 +INVLOCALE /error/fao=2!/ansi=0 +NOMORESEMCNT /info/fao=5!/ansi=0 +SETQUALPROB /error/fao=2!/ansi=0 +EXTRINTEGRITY /error/fao=2!/ansi=0 +CRYPTKEYRELEASEFAILED /error/fao=4!/ansi=0 +MUREENCRYPTSTART /info/fao=4!/ansi=0 +MUREENCRYPTV4NOALLOW /error/fao=2!/ansi=0 +ENCRYPTCONFLT /error/fao=6!/ansi=0 +JNLPOOLRECOVERY /error/fao=3!/ansi=0 ! ! If there are UNUSEDMSG* lines unused for more than one year and at least two non-patch releases, use them before adding new lines. ! diff --git a/sr_port/min_max.h b/sr_port/min_max.h old mode 100644 new mode 100755 diff --git a/sr_port/mlabel2xtern.c b/sr_port/mlabel2xtern.c old mode 100644 new mode 100755 diff --git a/sr_port/mlabel2xtern.h b/sr_port/mlabel2xtern.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_bckout.c b/sr_port/mlk_bckout.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_bckout.h b/sr_port/mlk_bckout.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_garbage_collect.c b/sr_port/mlk_garbage_collect.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_garbage_collect.h b/sr_port/mlk_garbage_collect.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_lock.c b/sr_port/mlk_lock.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_lock.h b/sr_port/mlk_lock.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_prcblk_add.c b/sr_port/mlk_prcblk_add.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_prcblk_add.h b/sr_port/mlk_prcblk_add.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_prcblk_delete.c b/sr_port/mlk_prcblk_delete.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_prcblk_delete.h b/sr_port/mlk_prcblk_delete.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_create.c b/sr_port/mlk_pvtblk_create.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_create.h b/sr_port/mlk_pvtblk_create.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_delete.c b/sr_port/mlk_pvtblk_delete.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_delete.h b/sr_port/mlk_pvtblk_delete.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_equ.c b/sr_port/mlk_pvtblk_equ.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_equ.h b/sr_port/mlk_pvtblk_equ.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_insert.c b/sr_port/mlk_pvtblk_insert.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_pvtblk_insert.h b/sr_port/mlk_pvtblk_insert.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_region_lookup.c b/sr_port/mlk_region_lookup.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_region_lookup.h b/sr_port/mlk_region_lookup.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shr_init.c b/sr_port/mlk_shr_init.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shr_init.h b/sr_port/mlk_shr_init.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_create.c b/sr_port/mlk_shrblk_create.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_create.h b/sr_port/mlk_shrblk_create.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_delete_if_empty.c b/sr_port/mlk_shrblk_delete_if_empty.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_delete_if_empty.h b/sr_port/mlk_shrblk_delete_if_empty.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_find.c b/sr_port/mlk_shrblk_find.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrblk_find.h b/sr_port/mlk_shrblk_find.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrclean.c b/sr_port/mlk_shrclean.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrclean.h b/sr_port/mlk_shrclean.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrsub_garbage_collect.c b/sr_port/mlk_shrsub_garbage_collect.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_shrsub_garbage_collect.h b/sr_port/mlk_shrsub_garbage_collect.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_tree_wake_children.c b/sr_port/mlk_tree_wake_children.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_tree_wake_children.h b/sr_port/mlk_tree_wake_children.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_unlock.c b/sr_port/mlk_unlock.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_unlock.h b/sr_port/mlk_unlock.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_unpend.c b/sr_port/mlk_unpend.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_unpend.h b/sr_port/mlk_unpend.h old mode 100644 new mode 100755 diff --git a/sr_port/mlk_wake_pending.c b/sr_port/mlk_wake_pending.c old mode 100644 new mode 100755 diff --git a/sr_port/mlk_wake_pending.h b/sr_port/mlk_wake_pending.h old mode 100644 new mode 100755 diff --git a/sr_port/mlkdef.h b/sr_port/mlkdef.h old mode 100644 new mode 100755 diff --git a/sr_port/mm_read.c b/sr_port/mm_read.c old mode 100644 new mode 100755 diff --git a/sr_port/mm_read.h b/sr_port/mm_read.h old mode 100644 new mode 100755 diff --git a/sr_port/mm_update.h b/sr_port/mm_update.h old mode 100644 new mode 100755 diff --git a/sr_port/mmemory.h b/sr_port/mmemory.h old mode 100644 new mode 100755 diff --git a/sr_port/mmseg.h b/sr_port/mmseg.h old mode 100644 new mode 100755 diff --git a/sr_port/movtc.c b/sr_port/movtc.c old mode 100644 new mode 100755 diff --git a/sr_port/movtc.h b/sr_port/movtc.h old mode 100644 new mode 100755 diff --git a/sr_port/mpiece.mpt b/sr_port/mpiece.mpt index c309e932..6d4aaf80 100644 --- a/sr_port/mpiece.mpt +++ b/sr_port/mpiece.mpt @@ -1,6 +1,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; -; Copyright 2012 Fidelity Information Services, Inc. ; +; Copyright (c) 2012-2016 Fidelity National Information ; +; Services, Inc. and/or its subsidiaries. All rights reserved. ; ; ; ; This source code contains the intellectual property ; ; of its copyright holder(s), and is made available ; @@ -31,7 +32,7 @@ quit $get(output) ; split a string into an array like AWK split does SPLIT(str,delim) - new outstr,i + new outstr,i,fields set outstr=$$^%MPIECE(str,$get(delim,$char(32)),$char(0)) for i=1:1:$zlength(outstr,$char(0)) set fields(i)=$zpiece(outstr,$char(0),i) if $data(fields)<10 set $ECODE=",U117," diff --git a/sr_port/mprof.h b/sr_port/mprof.h old mode 100644 new mode 100755 diff --git a/sr_port/mprof_funcs.c b/sr_port/mprof_funcs.c index c80b4607..3b004593 100644 --- a/sr_port/mprof_funcs.c +++ b/sr_port/mprof_funcs.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -15,7 +16,7 @@ #include "gtm_stdio.h" #include #include "gtm_fcntl.h" -#include +#include "gtm_signal.h" #include "gtm_stat.h" #include "gtm_unistd.h" #include "min_max.h" @@ -86,7 +87,7 @@ LITDEF MIDENT_CONST(above_routine, "*above*"); else \ { \ gtm_putmsg_csa x; \ - exit(EXIT_FAILURE); \ + EXIT(EXIT_FAILURE); \ } \ } #endif diff --git a/sr_port/mprof_tree.c b/sr_port/mprof_tree.c old mode 100644 new mode 100755 diff --git a/sr_port/mrout2xtern.h b/sr_port/mrout2xtern.h old mode 100644 new mode 100755 diff --git a/sr_port/msg.m b/sr_port/msg.m old mode 100644 new mode 100755 diff --git a/sr_port/mtables.c b/sr_port/mtables.c index 53afcff3..bc4f8d8c 100644 --- a/sr_port/mtables.c +++ b/sr_port/mtables.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -433,7 +433,7 @@ GBLDEF casemap_t casemaps[MAX_CASE_IDX] = */ {"U", &lower_to_upper, NULL}, {"L", &upper_to_lower, NULL}, - {"T", NULL, NULL} + {"T", &str_to_title, NULL} }; #endif @@ -443,6 +443,14 @@ LITDEF mstr nsb_dummy = {0, 1, "\0"}; /*LITDEF mstr nsb_dummy = {0, LEN_AND_LIT("dummy")};*/ #endif +#define ENUM_ENTRY(NAME) #NAME +LITDEF char *mdb_ver_names[] = +{ +#include "gdsdbver_sp.h" +}; +#undef ENUM_ENTRY + + #ifdef DEBUG /* These instructions follow the definitions made * in vxi.h and were generated from them. Where diff --git a/sr_port/mu_clsce.c b/sr_port/mu_clsce.c old mode 100644 new mode 100755 index 9a60d6d9..1a990362 --- a/sr_port/mu_clsce.c +++ b/sr_port/mu_clsce.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -71,7 +72,6 @@ GBLREF gv_namehead *gv_target; GBLREF gv_key *gv_currkey; GBLREF gv_key *gv_currkey_next_reorg; - /************************************************************************************************* Input Parameters: gv_target: working block's history @@ -129,14 +129,17 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s blk2_ances_hdr, new_levelp_cur_hdr, new_levelp_cur_next_hdr; blk_segment *bs_ptr1, *bs_ptr2; srch_hist *blk1ptr, *blk2ptr; /* blk2ptr is for right sibling's hist from a minimum sub-tree containing both blocks */ + srch_blk_status *old_blk1_stat, *old_blk2_stat, *old_levelp_blk_stat; blk_size = cs_data->blk_size; CHECK_AND_RESET_UPDATE_ARRAY; /* reset update_array_ptr to update_array */ blk1ptr = &(gv_target->hist); blk2ptr = gv_target->alt_hist; - old_blk1_base = blk1ptr->h[level].buffaddr; - old_blk2_base = blk2ptr->h[level].buffaddr; + old_blk1_stat = &blk1ptr->h[level]; + old_blk1_base = old_blk1_stat->buffaddr; + old_blk2_stat = &blk2ptr->h[level]; + old_blk2_base = old_blk2_stat->buffaddr; old_blk1_sz = ((blk_hdr_ptr_t)old_blk1_base)->bsiz; old_blk2_sz = ((blk_hdr_ptr_t)old_blk2_base)->bsiz; if (0 != level && SIZEOF(blk_hdr) + BSTAR_REC_SIZE == old_blk1_sz) @@ -150,9 +153,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s if (++levelp > blk1ptr->depth || levelp > blk2ptr->depth) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } - old_levelp_blk_base = blk1ptr->h[levelp].buffaddr; + old_levelp_blk_stat = &blk1ptr->h[levelp]; + old_levelp_blk_base = old_levelp_blk_stat->buffaddr; old_levelp_rec_offset = blk1ptr->h[levelp].curr_rec.offset; rec_base = old_levelp_blk_base + old_levelp_rec_offset; GET_RSIZ(rec_size, rec_base); @@ -167,10 +172,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s old_levelp_cur_prev_keysz = 0; else { - if (cdb_sc_normal != (status = gvcst_expand_any_key (old_levelp_blk_base, rec_base, + if (cdb_sc_normal != (status = gvcst_expand_any_key (old_levelp_blk_stat, rec_base, &old_levelp_cur_prev_key[0], &rec_size, &tkeylen, &tkeycmpc, NULL))) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_levelp_blk_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } old_levelp_cur_prev_keysz = tkeylen + tkeycmpc; @@ -182,10 +188,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s old_levelp_cur_keylen = compressed size of the key */ READ_RECORD(status, &rec_size, &tkeycmpc, &old_levelp_cur_keylen, old_levelp_cur_key, - levelp, old_levelp_blk_base, rec_base); + levelp, old_levelp_blk_stat, rec_base); if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_levelp_blk_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } if (old_levelp_cur_prev_keysz) @@ -201,12 +208,13 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s */ BLK_ADDR(old_levelp_cur_next_key, MAX_KEY_SZ + 1, unsigned char); READ_RECORD(status, &rec_size, &tkeycmpc, &old_levelp_cur_next_keylen, old_levelp_cur_next_key, - levelp, old_levelp_blk_base, rec_base); + levelp, old_levelp_blk_stat, rec_base); if (cdb_sc_starrecord == status) levelp_next_is_star = TRUE; else if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_levelp_blk_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } else { @@ -227,10 +235,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s BLK_ADDR(oldblk1_last_key, MAX_KEY_SZ + 1, unsigned char); if (0 == level) /* data block */ { - if (cdb_sc_normal != (status = gvcst_expand_any_key (old_blk1_base, old_blk1_base + old_blk1_sz, + if (cdb_sc_normal != (status = gvcst_expand_any_key (old_blk1_stat, old_blk1_base + old_blk1_sz, oldblk1_last_key, &rec_size, &oldblk1_last_keylen, &oldblk1_last_cmpc, NULL))) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } rec_base = old_blk1_base + old_blk1_sz; @@ -243,11 +252,12 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s memcpy (oldblk1_last_key, &old_levelp_cur_key[0], old_levelp_cur_keysz); if (!old_ref_star_only) /* if the index block is not a *-key only block) */ { - if (cdb_sc_normal != (status = gvcst_expand_any_key (old_blk1_base, + if (cdb_sc_normal != (status = gvcst_expand_any_key (old_blk1_stat, old_blk1_base + old_blk1_sz - BSTAR_REC_SIZE, &oldblk1_prev_key[0], &rec_size, &tkeylen, &tkeycmpc, NULL))) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } GET_CMPC(oldblk1_last_cmpc, oldblk1_prev_key, old_levelp_cur_key); @@ -276,7 +286,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s BLK_ADDR(newblk1_last_key, MAX_KEY_SZ + 1, unsigned char); rec_base = old_blk2_base + SIZEOF(blk_hdr); READ_RECORD(status, &rec_size, &newblk1_last_cmpc, &newblk1_last_keylen, newblk1_last_key, - level, old_blk2_base, rec_base); + level, old_blk2_stat, rec_base); if (cdb_sc_starrecord == status) /* rtsib index block has *-record only */ { if (old_blk1_sz + oldblk1_last_keylen + BSTAR_REC_SIZE > i_max_fill ) /* cannot fit even one record */ @@ -287,6 +297,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s } else if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE);; + NONTP_TRACE_HIST_MOD(old_blk2_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } else /* for both data and non-* index block */ { @@ -332,10 +343,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s break; } READ_RECORD(status, &rec_size, &newblk1_last_cmpc, &newblk1_last_keylen, newblk1_last_key, - level, old_blk2_base, rec_base); + level, old_blk2_stat, rec_base); if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk2_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } newblk1_last_keysz = newblk1_last_keylen + newblk1_last_cmpc; @@ -359,10 +371,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s break; /* already we know we can fit this *-record in working block */ } READ_RECORD(status, &rec_size, &newblk1_last_cmpc, &newblk1_last_keylen, newblk1_last_key, - level, old_blk2_base, rec_base); + level, old_blk2_stat, rec_base); if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk2_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } newblk1_last_keysz = newblk1_last_keylen + newblk1_last_cmpc; @@ -390,12 +403,13 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s */ BLK_ADDR(newblk2_first_key, MAX_KEY_SZ + 1, unsigned char); READ_RECORD(status, &rec_size, &tkeycmpc, &newblk2_first_keylen, newblk2_first_key, - level, old_blk2_base, new_blk2_first_rec_base); + level, old_blk2_stat, new_blk2_first_rec_base); if (cdb_sc_starrecord == status) /* new rtsib will have a *-record only */ new_rtsib_star_only = TRUE; else if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk2_stat, t_blkmod_mu_clsce); return cdb_sc_blkmod; } else { @@ -437,10 +451,11 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s BLK_ADDR(new_blk2_ances_first_key, MAX_KEY_SZ + 1, unsigned char); rec_base = blk2ptr->h[level2].buffaddr + SIZEOF(blk_hdr); READ_RECORD(status, &rec_size, &tkeycmpc, &tkeylen, new_blk2_ances_first_key, - level2, blk2ptr->h[level2].buffaddr, rec_base); + level2, &blk2ptr->h[level2], rec_base); if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk2ptr->h[level2], t_blkmod_mu_clsce); return cdb_sc_blkmod; } /* newblk1_last_key was the last key before *-key. @@ -452,13 +467,14 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s /* 2nd record will become 1st record of current block at level2 */ rec_base += rec_size; READ_RECORD(status, &rec_size, &tkeycmpc, &tkeylen, new_blk2_ances_first_key, - level2, blk2ptr->h[level2].buffaddr, rec_base); + level2, &blk2ptr->h[level2], rec_base); blk2_ances_remain = rec_base + rec_size - SIZEOF(block_id); if (cdb_sc_starrecord == status) blk2_ances_star_only = TRUE; else if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk2ptr->h[level2], t_blkmod_mu_clsce); return cdb_sc_blkmod; } else { @@ -559,7 +575,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s /* Join data from right sibling */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)new_rec_hdr1, SIZEOF(rec_hdr)); REORG_BLK_SEG(bs_ptr2, old_blk2_base + SIZEOF(blk_hdr) + SIZEOF(rec_hdr) + newblk1_mid_cmpc, - piece_len - SIZEOF(rec_hdr)); + piece_len - SIZEOF(rec_hdr), &blk1ptr->h[level]); } else { /* if an index block */ BLK_ADDR(bn_ptr1, SIZEOF(block_id), unsigned char); @@ -575,7 +591,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s { /* May be a complete_merge too */ /* write a new *-rec only */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)star_rec_hdr, SIZEOF(rec_hdr) ); - REORG_BLK_SEG(bs_ptr2, new_blk1_top - SIZEOF(block_id), SIZEOF(block_id)); + REORG_BLK_SEG(bs_ptr2, new_blk1_top - SIZEOF(block_id), SIZEOF(block_id), &blk1ptr->h[level]); } else { if (complete_merge) @@ -584,7 +600,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)new_rec_hdr1, SIZEOF(rec_hdr)); REORG_BLK_SEG(bs_ptr2, old_blk2_base + SIZEOF(blk_hdr) + SIZEOF(rec_hdr) + newblk1_mid_cmpc, - piece_len - SIZEOF(rec_hdr) ); + piece_len - SIZEOF(rec_hdr), &blk1ptr->h[level]); } else { /* First key from rtsib had cmpc=0. After coalesce it will be nonzero. * Remainings from rtsib will be appened without change. @@ -593,16 +609,19 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)new_rec_hdr1, SIZEOF(rec_hdr)); REORG_BLK_SEG(bs_ptr2, old_blk2_base + SIZEOF(blk_hdr) + SIZEOF(rec_hdr) + newblk1_mid_cmpc, - piece_len - (newblk1_last_keylen + BSTAR_REC_SIZE)- SIZEOF(rec_hdr) ); + piece_len - (newblk1_last_keylen + BSTAR_REC_SIZE) - SIZEOF(rec_hdr), + &blk1ptr->h[level]); /* write a new *-rec only */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)star_rec_hdr, SIZEOF(rec_hdr) ); - REORG_BLK_SEG(bs_ptr2, new_blk1_top - SIZEOF(block_id), SIZEOF(block_id)); + REORG_BLK_SEG(bs_ptr2, new_blk1_top - SIZEOF(block_id), SIZEOF(block_id), + &blk1ptr->h[level]); } } } if ( !BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk1ptr->h[level], t_blkmod_mu_clsce); return cdb_sc_blkmod; } t_write(&blk1ptr->h[level], (unsigned char *)bs_ptr1, 0, 0, level, FALSE, TRUE, GDS_WRITE_KILLTN); @@ -627,6 +646,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s if (!BLK_FINI(bs_ptr2,bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk2ptr->h[level], t_blkmod_mu_clsce); return cdb_sc_blkmod; } t_write(&blk2ptr->h[level], (unsigned char *)bs_ptr1, 0, 0, level, TRUE, TRUE, GDS_WRITE_KILLTN); @@ -710,6 +730,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk1ptr->h[levelp], t_blkmod_mu_clsce); return cdb_sc_blkmod; } t_write(&blk1ptr->h[levelp], (unsigned char *)bs_ptr1, 0, 0, levelp, FALSE, forward_process, GDS_WRITE_KILLTN); @@ -738,6 +759,7 @@ enum cdb_sc mu_clsce(int level, int i_max_fill, int d_max_fill, kill_set *kill_s if (!BLK_FINI(bs_ptr2,bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&blk2ptr->h[level2], t_blkmod_mu_clsce); return cdb_sc_blkmod; } t_write(&blk2ptr->h[level2], (unsigned char *)bs_ptr1, 0, 0, level2, TRUE, TRUE, GDS_WRITE_KILLTN); diff --git a/sr_port/mu_cre_file.h b/sr_port/mu_cre_file.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_dwngrd_header.c b/sr_port/mu_dwngrd_header.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_extr_gblout.c b/sr_port/mu_extr_gblout.c index bc3b57c3..a11d181e 100644 --- a/sr_port/mu_extr_gblout.c +++ b/sr_port/mu_extr_gblout.c @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -39,14 +39,12 @@ #include "zshow.h" #include "gtmmsg.h" #include "min_max.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #include "gvcst_protos.h" -#define INTEG_ERROR_RETURN \ +#define INTEG_ERROR_RETURN(CSA) \ { \ - gtm_putmsg_csa(CSA_ARG(cs_addrs) VARLSTCNT(4) ERR_EXTRFAIL, 2, GNAME(gl_ptr).len, GNAME(gl_ptr).addr); \ + gtm_putmsg_csa(CSA_ARG(CSA) VARLSTCNT(4) ERR_EXTRFAIL, 2, GNAME(gl_ptr).len, GNAME(gl_ptr).addr); \ return FALSE; \ } @@ -61,23 +59,18 @@ GBLREF gv_key *gv_currkey; GBLREF gv_namehead *gv_target; GBLREF sgmnt_addrs *cs_addrs; GBLREF sgmnt_data_ptr_t cs_data; -#ifdef GTM_CRYPT GBLREF mstr pvt_crypt_buf; -#endif error_def(ERR_EXTRFAIL); error_def(ERR_RECORDSTAT); -#if defined(GTM_CRYPT) -boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format, boolean_t is_any_file_encrypted) -#elif defined(UNIX) -boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format) -#endif +boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format, boolean_t any_file_encrypted, + boolean_t any_file_uses_non_null_iv, int hash1_index, int hash2_index, boolean_t use_null_iv) { static gv_key *beg_gv_currkey; /* this is used to check key out of order condition */ - static int max_zwr_len = 0, index; - static unsigned char *private_blk = NULL, *zwr_buffer = NULL, *key_buffer = NULL; - static uint4 private_blksz = 0; + static int max_zwr_len, index; + static unsigned char *private_blk, *zwr_buffer, *key_buffer; + static uint4 private_blksz; unsigned char *cp2, current, *keytop, last; unsigned short out_size, rec_size; int data_len, des_len, fmtd_key_len, gname_size; @@ -86,31 +79,37 @@ boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format) boolean_t beg_key; rec_hdr_ptr_t rp, save_rp; sm_uc_ptr_t blktop, cp1, rectop, out; - mval *val_span = NULL; + mval *val_span; boolean_t is_hidden, found_dummy = FALSE; blk_hdr_ptr_t encrypted_bp; -# ifdef GTM_CRYPT - static sgmnt_data_ptr_t prev_csd; + sgmnt_data_ptr_t csd; + sgmnt_addrs *csa; gd_region *reg, *reg_top; -# endif + gd_segment *seg; + int gtmcrypt_errno, got_encrypted_block; + max_zwr_len = private_blksz = 0; + private_blk = zwr_buffer = key_buffer = NULL; + val_span = NULL; if (0 == gv_target->root) return TRUE; /* possible if ROLLBACK ended up physically removing a global from the database */ + csa = cs_addrs; + csd = cs_data; if (NULL == key_buffer) key_buffer = (unsigned char *)malloc(MAX_ZWR_KEY_SZ); - if (ZWR_EXP_RATIO(cs_addrs->hdr->max_rec_size) > max_zwr_len) + if (ZWR_EXP_RATIO(csd->max_rec_size) > max_zwr_len) { if (NULL != zwr_buffer) - free (zwr_buffer); - max_zwr_len = ZWR_EXP_RATIO(cs_addrs->hdr->max_rec_size); + free(zwr_buffer); + max_zwr_len = ZWR_EXP_RATIO(csd->max_rec_size); zwr_buffer = (unsigned char *)malloc(MAX_ZWR_KEY_SZ + max_zwr_len); } - assert(0 < cs_data->blk_size); - if (cs_data->blk_size > private_blksz) + assert(0 < csd->blk_size); + if (csd->blk_size > private_blksz) { if (NULL != private_blk) free(private_blk); - private_blksz = cs_data->blk_size; + private_blksz = csd->blk_size; private_blk = (unsigned char *)malloc(private_blksz); } if (NULL == beg_gv_currkey) @@ -118,88 +117,128 @@ boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format) memcpy(beg_gv_currkey->base, gv_currkey->base, (SIZEOF(gv_key) + gv_currkey->end)); gname_size = gv_currkey->end; keytop = &gv_currkey->base[gv_currkey->top]; - st->recknt = st->reclen = st->keylen = st->datalen = 0; -# ifdef GTM_CRYPT - if (is_any_file_encrypted && (format == MU_FMT_BINARY)) + MU_EXTR_STATS_INIT(*st); + if (any_file_encrypted && (format == MU_FMT_BINARY)) { - if (cs_data->is_encrypted) - { - ASSERT_ENCRYPTION_INITIALIZED; /* due to op_gvname_fast done from gv_select in mu_extract */ - if (prev_csd != cs_data) - { - prev_csd = cs_data; - index = find_reg_hash_idx(gv_cur_region); - } - /* We have to write the encrypted version of the block. Instead of encrypting the plain-text version of the - * block, we just reference the encrypted version of the block that is already maintained in sync with the - * plain-text version by wcs_wtstart and dsk_read (called eventually by mu_extr_getblk below). All we need - * to make sure is that we have a private buffer allocated (of appropriate size) in which mu_extr_getblk can - * return the encrypted version of the block. Do the allocation here. - */ - REALLOC_CRYPTBUF_IF_NEEDED(cs_data->blk_size); - } else - { /* Encryption handle index of -1 indicates in an extract that the block is unencrypted. It is useful when - * the extract contains a mix of encrypted and unencrypted data. - */ - index = -1; - } + ASSERT_ENCRYPTION_INITIALIZED; /* due to op_gvname_fast done from gv_select in mu_extract */ + /* Encryption handle index of -1 indicates in an extract that the block is unencrypted. It is useful when + * the extract contains a mix of encrypted and unencrypted data. + */ + assert((-1 == hash1_index) || IS_ENCRYPTED(csd->is_encrypted)); + assert((-1 == hash2_index) || USES_NEW_KEY(csd)); + /* We have to write the encrypted version of the block. Depending on the type of the extract, we may either + * need to reencrypt the block using the null iv or just reference the encrypted version of the block that + * is already maintained in sync with the plain-text version by wcs_wtstart and dsk_read (called eventually + * by mu_extr_getblk below). In either case we need to make sure that we have a big enough private buffer + * allocated in which to store the encrypted version of the block. Only if we are going to use the iv, make + * room for it also to avoid allocating separate memory. Do the allocation here. + */ + REALLOC_CRYPTBUF_IF_NEEDED(csd->blk_size); } -# endif for ( ; ; ) { if (mu_ctrly_occurred) return FALSE; if (mu_ctrlc_occurred) { - gtm_putmsg_csa(CSA_ARG(cs_addrs) VARLSTCNT(8) ERR_RECORDSTAT, 6, LEN_AND_LIT("TOTAL"), + gtm_putmsg_csa(CSA_ARG(csa) VARLSTCNT(8) ERR_RECORDSTAT, 6, LEN_AND_LIT("TOTAL"), &st->recknt, st->keylen, st->datalen, st->reclen); mu_ctrlc_occurred = FALSE; } - encrypted_bp = NULL; -# ifdef GTM_CRYPT - if (cs_data->is_encrypted && (MU_FMT_BINARY == format)) + if ((MU_FMT_BINARY == format) && ((-1 != hash1_index) || (-1 != hash2_index))) encrypted_bp = (blk_hdr_ptr_t)pvt_crypt_buf.addr; -# endif - if (!mu_extr_getblk(private_blk, (unsigned char *)encrypted_bp)) + else + encrypted_bp = NULL; + if (!mu_extr_getblk(private_blk, (unsigned char *)encrypted_bp, use_null_iv, &got_encrypted_block)) break; bp = (blk_hdr_ptr_t)private_blk; if (bp->bsiz == SIZEOF(blk_hdr)) break; - if (0 != bp->levl || bp->bsiz < SIZEOF(blk_hdr) || bp->bsiz > cs_data->blk_size || + if (0 != bp->levl || bp->bsiz < SIZEOF(blk_hdr) || bp->bsiz > csd->blk_size || gv_target->hist.h[0].curr_rec.match < gname_size) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); blktop = (sm_uc_ptr_t)bp + bp->bsiz; - if (format == MU_FMT_BINARY) - { /* At this point, gv_target->hist.h[0].curr_rec.offset points to the offset within the block at which - * the desired record exists. If this record is *not* the first record in the block (possible due to - * concurrent updates), the compression count for that record would be non-zero which means we cannot - * initiate a write to the extract file starting from this offset as the 'mupip load' command would - * consider this record as corrupted. So, we write the entire block instead. This could increase the - * size of the binary extract file, but the alternative is to expand the curent record and with encryption - * it becomes a performance overhead as we have to encrypt only the tail of a block. If we choose to - * write the whole block, we avoid encryption altogether because we have access to the encrypted block - * from the encrypted twin buffer. + if (MU_FMT_BINARY == format) + { /* At this point, gv_target->hist.h[0].curr_rec.offset points to the offset within the block at which the + * desired record exists. If this record is *not* the first record in the block (possible due to concurrent + * updates), the compression count for that record would be non-zero which means we cannot initiate a write + * to the extract file starting from this offset as the 'mupip load' command would consider this record as + * corrupted. So, we write the entire block instead. This could increase the size of the binary extract + * file, but the alternative is to expand the curent record and with encryption it becomes a performance + * overhead as we have to encrypt only the tail of a block. If we choose to write the whole block, we avoid + * encryption altogether because we have access to the encrypted block from the encrypted twin buffer. */ rp = (rec_hdr_ptr_t)((sm_uc_ptr_t)bp + SIZEOF(blk_hdr)); out_size = blktop - (sm_uc_ptr_t)rp; out = (sm_uc_ptr_t)rp; -# ifdef GTM_CRYPT - if (cs_data->is_encrypted) + + if (NULL != encrypted_bp) { - assert(NULL != encrypted_bp); - assert(encrypted_bp->bsiz == bp->bsiz); - assert(encrypted_bp->tn == bp->tn); - assert(encrypted_bp->levl == bp->levl); - assert(out_size == (encrypted_bp->bsiz - SIZEOF(blk_hdr))); - out = (sm_uc_ptr_t)encrypted_bp + SIZEOF(blk_hdr); - assert(-1 != index); - } + switch (got_encrypted_block) + { + case ENCRYPTED_WITH_HASH1: + assert(encrypted_bp->bsiz == bp->bsiz); + assert(encrypted_bp->tn == bp->tn); + assert(encrypted_bp->levl == bp->levl); + assert(-1 != hash1_index); + index = hash1_index; + out = (sm_uc_ptr_t)encrypted_bp; + break; + case ENCRYPTED_WITH_HASH2: + assert(encrypted_bp->bsiz == bp->bsiz); + assert(encrypted_bp->tn == bp->tn); + assert(encrypted_bp->levl == bp->levl); + assert(-1 != hash2_index); + index = hash2_index; + out = (sm_uc_ptr_t)encrypted_bp; + break; + case NEEDS_ENCRYPTION: + if ((-1 != hash2_index) && (csd->encryption_hash2_start_tn <= bp->tn)) + { + assert(GTMCRYPT_INVALID_KEY_HANDLE != csa->encr_key_handle2); + index = hash2_index; + GTMCRYPT_ENCRYPT(csa, !use_null_iv, csa->encr_key_handle2, rp, out_size, + encrypted_bp + 1, bp, SIZEOF(blk_hdr), gtmcrypt_errno); + } else if (-1 != hash1_index) + { + assert(GTMCRYPT_INVALID_KEY_HANDLE != csa->encr_key_handle); + index = hash1_index; + GTMCRYPT_ENCRYPT(csa, !use_null_iv, csa->encr_key_handle, rp, out_size, + encrypted_bp + 1, bp, SIZEOF(blk_hdr), gtmcrypt_errno); + } else + { + assert(FALSE); + } + memcpy(encrypted_bp, bp, SIZEOF(blk_hdr)); + if (0 != gtmcrypt_errno) + { + seg = csa->region->dyn.addr; + GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, + seg->fname_len, seg->fname); + } + out = (sm_uc_ptr_t)encrypted_bp; + break; + case NEEDS_NO_ENCRYPTION: + /* This path is possible if we are dealing with an unencrypted database that is + * being encrypted, and thus index1 = -1 while index 2 != -1, and this particular + * block has not been encrypted yet. + */ + index = -1; + break; + default: + assert(FALSE); + } + if (-1 != index) + { /* For non-null IVs we need to write the entire encrypted block. */ + if (any_file_uses_non_null_iv) + out_size = encrypted_bp->bsiz; + else + out = (sm_uc_ptr_t)((blk_hdr *)out + 1); + } + } else + index = -1; WRITE_BIN_EXTR_BLK(out, out_size, - is_any_file_encrypted ? WRITE_ENCR_HANDLE_INDEX_TRUE : WRITE_ENCR_HANDLE_INDEX_FALSE, index); -# else - index = -1; - WRITE_BIN_EXTR_BLK(out, out_size, WRITE_ENCR_HANDLE_INDEX_FALSE, index); -# endif + any_file_encrypted ? WRITE_ENCR_HANDLE_INDEX_TRUE : WRITE_ENCR_HANDLE_INDEX_FALSE, index); } else { /* Note that rp may not be the beginning of a block */ rp = (rec_hdr_ptr_t)(gv_target->hist.h[0].curr_rec.offset + (sm_uc_ptr_t)bp); @@ -211,24 +250,24 @@ boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format) EVAL_CMPC2(rp, tmp_cmpc); if (rectop > blktop || tmp_cmpc > gv_currkey->end || (((unsigned char *)rp != private_blk + SIZEOF(blk_hdr)) && (tmp_cmpc < gname_size))) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); cp1 = (sm_uc_ptr_t)(rp + 1); cp2 = gv_currkey->base + tmp_cmpc; if (cp2 >= keytop || cp1 >= rectop) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); if (!beg_key && (*cp2 >= *cp1)) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); for (;;) { if (0 == (*cp2++ = *cp1++)) { if (cp2 >= keytop || cp1 >= rectop) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); if (0 == (*cp2++ = *cp1++)) break; } if (cp2 >= keytop || cp1 >= rectop) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); } gv_currkey->end = cp2 - gv_currkey->base - 1; if (beg_key) @@ -294,13 +333,13 @@ boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format) } # endif if (0 > data_len) - INTEG_ERROR_RETURN + INTEG_ERROR_RETURN(csa); if (st->datalen < data_len) st->datalen = data_len; } /* End scanning a block */ if (((sm_uc_ptr_t)rp != blktop) || (0 > memcmp(gv_currkey->base, beg_gv_currkey->base, MIN(gv_currkey->end, beg_gv_currkey->end)))) - INTEG_ERROR_RETURN; + INTEG_ERROR_RETURN(csa); GVKEY_INCREMENT_QUERY(gv_currkey); } /* end outmost for */ return TRUE; diff --git a/sr_port/mu_extr_getblk.c b/sr_port/mu_extr_getblk.c old mode 100644 new mode 100755 index 51bdfb94..f1240297 --- a/sr_port/mu_extr_getblk.c +++ b/sr_port/mu_extr_getblk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -29,22 +30,18 @@ #include /* needed for muextr.h */ #endif #include "muextr.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #include "min_max.h" GBLREF gd_region *gv_cur_region; GBLREF gv_namehead *gv_target; GBLREF gv_key *gv_currkey; GBLREF sgmnt_addrs *cs_addrs; -#ifdef UNIX GBLREF unsigned int t_tries; -#endif error_def(ERR_GVGETFAIL); -int mu_extr_getblk(unsigned char *ptr, unsigned char *encrypted_buff_ptr) +int mu_extr_getblk(unsigned char *ptr, unsigned char *encr_ptr, boolean_t use_null_iv, int *got_encrypted_block) { enum cdb_sc status; int bsiz; @@ -53,25 +50,24 @@ int mu_extr_getblk(unsigned char *ptr, unsigned char *encrypted_buff_ptr) rec_hdr_ptr_t rp; srch_blk_status *bh; srch_hist *rt_history; -# ifdef UNIX - DEBUG_ONLY(unsigned int lcl_t_tries;) boolean_t tn_aborted; -# endif -# ifdef GTM_CRYPT - char *in, *out; - int out_size, gtmcrypt_errno; trans_num lcl_dirty; - gd_segment *seg; blk_hdr_ptr_t encrypted_bp; + sgmnt_addrs *csa; + sgmnt_data_ptr_t csd; # ifdef DEBUG + char *in, *out; + int out_size, gtmcrypt_errno; static unsigned char *private_blk; static int private_blksz; -# endif + unsigned int lcl_t_tries; # endif DCL_THREADGBL_ACCESS; SETUP_THREADGBL_ACCESS; assert(0 != gv_target->root); + csa = cs_addrs; + csd = csa->hdr; t_begin(ERR_GVGETFAIL, 0); for (;;) { @@ -104,79 +100,94 @@ int mu_extr_getblk(unsigned char *ptr, unsigned char *encrypted_buff_ptr) continue; } } - assert(bp->bsiz <= cs_addrs->hdr->blk_size); - bsiz = MIN(bp->bsiz, cs_addrs->hdr->blk_size); + assert(bp->bsiz <= csd->blk_size); + bsiz = MIN(bp->bsiz, csd->blk_size); memcpy(ptr, bp, bsiz); -# ifdef GTM_CRYPT - if (NULL != encrypted_buff_ptr) + if (NULL != encr_ptr) { /* The caller requested the encrypted buffer corresponding to `bp' as well. Take a copy of the encrypted - * twin global buffer. But, do that only if the cache record corresponding to `bp' is not dirty. Otherwise, - * the encrypted twin remains stale (as of dsk_read) until a wcs_wtstart happens at which point it updates - * the twin global buffer to contain the up-to-date encrypted contents. So, in this case, an explicit - * encryption is needed once this transaction succeeds. + * twin global buffer. But do that only if the cache record corresponding to `bp' is not dirty and we know + * that the block is encrypted using the same settings as requested. Otherwise, either the encrypted twin + * remains stale (as of dsk_read) until a wcs_wtstart happens, at which point it updates the twin global + * buffer to contain the up-to-date encrypted contents; or we will need to first decrypt the block before + * reencrypting it anyway, so we might as well simply work with the unencrypted block directly. */ if (0 == (lcl_dirty = bh->cr->dirty)) { - encrypted_bp = (blk_hdr_ptr_t)GDS_ANY_ENCRYPTGLOBUF(bp, cs_addrs); - memcpy(encrypted_buff_ptr, (sm_uc_ptr_t)encrypted_bp, bsiz); + if (NEEDS_NEW_KEY(csd, bp->tn)) + { /* The block is encrypted with the new key, which defaults to non-null IVs. Hence, only + * return the encrypted buffer if it is OK to have non-null IVs in the extract. + */ + if (!use_null_iv) + { + encrypted_bp = (blk_hdr_ptr_t)GDS_ANY_ENCRYPTGLOBUF(bp, cs_addrs); + memcpy(encr_ptr, (sm_uc_ptr_t)encrypted_bp, bsiz); + *got_encrypted_block = ENCRYPTED_WITH_HASH2; + } else + *got_encrypted_block = NEEDS_ENCRYPTION; + } else if (IS_ENCRYPTED(csd->is_encrypted)) + { /* The block is encrypted with the old key, so only return the encrypted buffer if its + * null-IV setting is consistent with what we can have in the extract. + */ + if (use_null_iv != csd->non_null_iv) + { + encrypted_bp = (blk_hdr_ptr_t)GDS_ANY_ENCRYPTGLOBUF(bp, cs_addrs); + memcpy(encr_ptr, (sm_uc_ptr_t)encrypted_bp, bsiz); + *got_encrypted_block = ENCRYPTED_WITH_HASH1; + } else + *got_encrypted_block = NEEDS_ENCRYPTION; + } else + { /* Block is not encrypted at all. */ + *got_encrypted_block = NEEDS_NO_ENCRYPTION; + } + } else + { /* Cache record is dirty, so encrypt the block, if needed, in the caller. */ + *got_encrypted_block = NEEDS_ENCRYPTION; } } +# ifdef DEBUG + lcl_t_tries = t_tries; # endif - UNIX_ONLY(DEBUG_ONLY(lcl_t_tries = t_tries)); if ((trans_num)0 != t_end(&gv_target->hist, two_histories ? rt_history : NULL, TN_NOT_SPECIFIED)) { /* Transaction succeeded. */ if (two_histories) memcpy(gv_target->hist.h, rt_history->h, SIZEOF(srch_blk_status) * (rt_history->depth + 1)); -# ifdef GTM_CRYPT - if (NULL != encrypted_buff_ptr) - { - assert(GTMCRYPT_INVALID_KEY_HANDLE != cs_addrs->encr_key_handle); - if (lcl_dirty) - { - /* We did not take a copy of the encrypted twin global buffer. Do explicit encryption now */ - memcpy(encrypted_buff_ptr, ptr, SIZEOF(blk_hdr)); /* Copy the block header. */ - in = (char *)ptr + SIZEOF(blk_hdr); - out = (char *)encrypted_buff_ptr + SIZEOF(blk_hdr); - out_size = bsiz - SIZEOF(blk_hdr); - GTMCRYPT_ENCRYPT(cs_addrs, cs_addrs->encr_key_handle, in, out_size, out, gtmcrypt_errno); - if (0 != gtmcrypt_errno) - { - seg = cs_addrs->region->dyn.addr; - GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, seg->fname_len, seg->fname); - } +# ifdef DEBUG + if ((NULL != encr_ptr) + && ((ENCRYPTED_WITH_HASH1 == *got_encrypted_block) + || (ENCRYPTED_WITH_HASH2 == *got_encrypted_block))) + { /* Ensure that the copy of the encrypted twin global buffer we took before t_end is not stale. */ + if ((0 == private_blksz) || (private_blksz < csd->blk_size)) + { /* (Re)allocate space for doing out-of-place encryption. */ + if (NULL != private_blk) + free(private_blk); + private_blksz = csd->blk_size; + private_blk = (unsigned char *)malloc(private_blksz); } -# ifdef DEBUG - else - { /* We took a copy of the encrypted twin global buffer before t_end. Ensure that we did not - * take a stale copy. - */ - if ((0 == private_blksz) || (private_blksz < cs_addrs->hdr->blk_size)) - { /* [re]allocate space for doing out-of-place encryption. */ - if (NULL != private_blk) - free(private_blk); - private_blksz = cs_addrs->hdr->blk_size; - private_blk = (unsigned char *)malloc(private_blksz); - } - memcpy(private_blk, ptr, SIZEOF(blk_hdr)); - in = (char *)ptr + SIZEOF(blk_hdr); - out = (char *)private_blk + SIZEOF(blk_hdr); - out_size = bsiz - SIZEOF(blk_hdr); - GTMCRYPT_ENCRYPT(cs_addrs, cs_addrs->encr_key_handle, in, out_size, out, gtmcrypt_errno); - assert(0 == gtmcrypt_errno); - assert(0 == memcmp(private_blk, encrypted_buff_ptr, bsiz)); + memcpy(private_blk, ptr, SIZEOF(blk_hdr)); + in = (char *)ptr + SIZEOF(blk_hdr); + out = (char *)private_blk + SIZEOF(blk_hdr); + out_size = bsiz - SIZEOF(blk_hdr); + if (ENCRYPTED_WITH_HASH2 == *got_encrypted_block) + { + assert(GTMCRYPT_INVALID_KEY_HANDLE != csa->encr_key_handle2); + GTMCRYPT_ENCRYPT(cs_addrs, TRUE, cs_addrs->encr_key_handle2, + in, out_size, out, ptr, SIZEOF(blk_hdr), gtmcrypt_errno); + } else + { + assert(GTMCRYPT_INVALID_KEY_HANDLE != csa->encr_key_handle); + GTMCRYPT_ENCRYPT(cs_addrs, csd->non_null_iv, cs_addrs->encr_key_handle, + in, out_size, out, ptr, SIZEOF(blk_hdr), gtmcrypt_errno); } -# endif + assert(0 == gtmcrypt_errno); + assert(0 == memcmp(private_blk, encr_ptr, bsiz)); } # endif return !end_of_tree; - } -# ifdef UNIX - else + } else { ABORT_TRANS_IF_GBL_EXIST_NOMORE(lcl_t_tries, tn_aborted); if (tn_aborted) return FALSE; /* global doesn't exist any more in the database */ } -# endif } } diff --git a/sr_port/mu_extr_ident.c b/sr_port/mu_extr_ident.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_freeze_ch.c b/sr_port/mu_freeze_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_getlst.h b/sr_port/mu_getlst.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_gv_cur_reg_init.c b/sr_port/mu_gv_cur_reg_init.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_gv_cur_reg_init.h b/sr_port/mu_gv_cur_reg_init.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_gv_stack_init.h b/sr_port/mu_gv_stack_init.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_gvis.h b/sr_port/mu_gvis.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_blk.c b/sr_port/mu_int_blk.c index 49157f54..87f6ff68 100644 --- a/sr_port/mu_int_blk.c +++ b/sr_port/mu_int_blk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -30,6 +31,7 @@ #include "gdsbml.h" #include "gtmmsg.h" #include "get_spec.h" +#include "mupip_integ.h" #ifdef GTM_TRIGGER #include /* for rtn_tabent in gv_trigger.h */ #include "gv_trigger.h" @@ -65,10 +67,8 @@ GBLREF int muint_start_keyend; GBLREF int mu_int_plen; GBLREF int trans_errors; GBLREF int4 mu_int_adj[]; -GBLREF uint4 mu_int_blks[]; +GBLREF gtm_uint64_t mu_int_cum[CUM_TYPE_MAX][MAX_BT_DEPTH + 1]; GBLREF uint4 mu_int_offset[]; -GBLREF uint4 mu_int_recs[]; -GBLREF qw_num mu_int_size[]; GBLREF uint4 mu_int_errknt; GBLREF block_id mu_int_path[]; GBLREF int4 mu_int_blks_to_upgrd; @@ -200,7 +200,7 @@ boolean_t mu_int_blk( unsigned short numsubs; mu_int_offset[mu_int_plen] = 0; - mu_int_path[mu_int_plen++] = blk; + mu_int_path[mu_int_plen++] = blk; /* Increment mu_int_plen on entry; decrement explicitly or via mu_int_err() on exit. */ mu_int_path[mu_int_plen] = 0; if (!bml_busy(blk, mu_int_locals)) /* block already marked busy */ { @@ -209,7 +209,7 @@ boolean_t mu_int_blk( } blk_base = mu_int_read(blk, &ondsk_blkver); /* ondsk_blkver set to GDSV4 or GDSV6 (GDSVCURR) */ if (!blk_base) - return FALSE; + return FALSE; /* Only occurs on malloc failure, so don't worry about mu_int_plen. */ blk_size = (int)((blk_hdr_ptr_t)blk_base)->bsiz; if (!muint_fast) { @@ -283,18 +283,22 @@ boolean_t mu_int_blk( } /* Stop searching the sub-tree when TN in block is larger than integ_start_tn for fast_integ. The reason being, * fast_integ skips writing free blocks and level-0 block in GV tree to snapshot file. However, some blocks can be - * mistakenly marked free or its level is messed-up as 0. After updating these blocks, thse blocks will have TN + * mistakenly marked free or its level is messed-up as 0. After updating these blocks, these blocks will have TN * larger than integ_start_tn. In this case, the child tree pointed to by one such updated block may result in * arbitrary error report. Since we already capture the core reason for the integ error, we should not proceed * searching its child tree; otherwise, we will have meaningless report content */ if (muint_fast) + { + mu_int_plen--; + free(blk_base); return FALSE; + } if (blk_tn > largest_tn) largest_tn = blk_tn; } - mu_int_blks[level]++; - QWINCRBYDW(mu_int_size[level], blk_size); + mu_int_cum[BLKS][level]++; + mu_int_cum[SIZE][level] += blk_size; first_key = TRUE; buff_length = 0; comp_length = bot_len; @@ -305,8 +309,8 @@ boolean_t mu_int_blk( rec_base = rec_top, comp_length = buff_length) { if (mu_ctrly_occurred || mu_ctrlc_occurred) - return FALSE; - mu_int_recs[level]++; + return FALSE; /* Only happens on termination, so don't worry about mu_int_plen. */ + mu_int_cum[RECS][level]++; GET_USHORT(temp_ushort, &(((rec_hdr_ptr_t)rec_base)->rsiz)); rec_size = temp_ushort; mu_int_offset[mu_int_plen - 1] = (uint4)(rec_base - blk_base); @@ -507,7 +511,7 @@ boolean_t mu_int_blk( muint_range_done = TRUE; else { - mu_int_recs[level]--; + mu_int_cum[RECS][level]--; mu_int_plen--; free(blk_base); return TRUE; @@ -515,7 +519,7 @@ boolean_t mu_int_blk( } if (memcmp(buff, muint_start_key->base, muint_start_key->end + 1) < 0) { - mu_int_recs[level]--; + mu_int_cum[RECS][level]--; continue; } } else @@ -526,7 +530,7 @@ boolean_t mu_int_blk( muint_range_done = TRUE; else { - mu_int_recs[level]--; + mu_int_cum[RECS][level]--; mu_int_plen--; free(blk_base); return TRUE; @@ -534,7 +538,7 @@ boolean_t mu_int_blk( } if (memcmp(buff, muint_start_key->base, muint_start_key->end + 1) < 0) { - mu_int_recs[level]--; + mu_int_cum[RECS][level]--; continue; } } @@ -818,14 +822,14 @@ boolean_t mu_int_blk( if (!bml_busy(child, mu_int_locals)) { mu_int_offset[mu_int_plen]=0; - mu_int_path[mu_int_plen++]=child; + mu_int_path[mu_int_plen++]=child; /* Increment mu_int_plen */ mu_int_err(ERR_DBBDBALLOC, TRUE, TRUE, old_buff, comp_length, buff, buff_length, (unsigned int)((blk_hdr_ptr_t)ptr)->levl); - mu_int_plen--; + mu_int_plen--; /* Revert above increment */ free(blk_base); return FALSE; } - mu_int_blks[0]++; + mu_int_cum[BLKS][0]++; if (muint_fast && (1 == level)) CHECK_ADJACENCY(child, 0, mu_int_adj[0]); } diff --git a/sr_port/mu_int_err.c b/sr_port/mu_int_err.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_fhead.c b/sr_port/mu_int_fhead.c index af87436e..6f74766c 100644 --- a/sr_port/mu_int_fhead.c +++ b/sr_port/mu_int_fhead.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -23,9 +24,7 @@ #include "gdsbml.h" #include "mupint.h" #include "gtmmsg.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #ifdef GTM_SNAPSHOT #include "db_snapshot.h" #endif @@ -87,10 +86,8 @@ boolean_t mu_int_fhead(void) gtm_uint64_t size, native_size; trans_num temp_tn, max_tn_warn; sgmnt_data_ptr_t mu_data; -# ifdef GTM_CRYPT gd_segment *seg; int gtmcrypt_errno; -# endif mu_data = &mu_int_data; if (MEMCMP_LIT(mu_data->label, GDS_LABEL)) @@ -168,18 +165,21 @@ boolean_t mu_int_fhead(void) } if (MAX_KEY_SZ < mu_data->max_key_size) mu_int_err(ERR_DBMAXKEYEXC, 0, 0, 0, 0, 0, 0, 0); -# ifdef GTM_CRYPT - if (mu_data->is_encrypted) + gtmcrypt_errno = 0; + seg = gv_cur_region->dyn.addr; + if (IS_ENCRYPTED(mu_data->is_encrypted)) { - GTMCRYPT_HASH_CHK(cs_addrs, mu_data->encryption_hash, gtmcrypt_errno); - if (0 != gtmcrypt_errno) - { - seg = gv_cur_region->dyn.addr; - GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, seg->fname_len, seg->fname); - return FALSE; - } + GTMCRYPT_HASH_CHK(cs_addrs, mu_data->encryption_hash, seg->fname_len, (char *)seg->fname, gtmcrypt_errno); + } + if ((0 == gtmcrypt_errno) && USES_NEW_KEY(mu_data)) + { + GTMCRYPT_HASH_CHK(cs_addrs, mu_data->encryption_hash2, seg->fname_len, (char *)seg->fname, gtmcrypt_errno); + } + if (0 != gtmcrypt_errno) + { + GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, seg->fname_len, seg->fname); + return FALSE; } -# endif /* !tn_reset_this_reg should ideally be used here instead of (!tn_reset_specified || gv_cur_region->read_only). * But at this point, tn_reset_this_reg has not yet been set for this region and to avoid taking a risk in * changing the code flow, we redo the computation ot tn_reset_this_reg here. This is not as much a performance concern. diff --git a/sr_port/mu_int_getkey.c b/sr_port/mu_int_getkey.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_init.c b/sr_port/mu_int_init.c index 407eb6d4..b2e26cf5 100644 --- a/sr_port/mu_int_init.c +++ b/sr_port/mu_int_init.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -31,19 +32,15 @@ #include "mu_gv_cur_reg_init.h" #include "gtmmsg.h" #include "wbox_test_init.h" - -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif + #define MSGBUF_SIZE 256 GBLREF gd_region *gv_cur_region; GBLREF sgmnt_data mu_int_data; GBLREF unsigned char *mu_int_master; GBLREF int mu_int_skipreg_cnt; -#ifdef GTM_CRYPT -GBLREF gtmcrypt_key_t mu_int_encrypt_key_handle; -#endif +GBLREF enc_handles mu_int_encr_handles; error_def(ERR_DBFSTHEAD); error_def(ERR_MUNODBNAME); @@ -56,10 +53,8 @@ boolean_t mu_int_init(void) file_control *fc; boolean_t standalone; char msgbuff[MSGBUF_SIZE], *msgptr; -# ifdef GTM_CRYPT int gtmcrypt_errno; gd_segment *seg; -# endif sgmnt_addrs *csa; mu_gv_cur_reg_init(); @@ -103,20 +98,18 @@ boolean_t mu_int_init(void) mu_int_err(ERR_DBFSTHEAD, 0, 0, 0, 0, 0, 0, 0); return FALSE; } -# ifdef GTM_CRYPT - if (mu_int_data.is_encrypted) + if (USES_ANY_KEY(&mu_int_data)) { /* Initialize encryption and the key information for the current segment to be used in mu_int_read. */ ASSERT_ENCRYPTION_INITIALIZED; /* should have been done in mu_rndwn_file called from STANDALONE macro */ - GTMCRYPT_INIT_BOTH_CIPHER_CONTEXTS(NULL, mu_int_data.encryption_hash, mu_int_encrypt_key_handle, gtmcrypt_errno); + seg = gv_cur_region->dyn.addr; + INIT_DB_OR_JNL_ENCRYPTION(&mu_int_encr_handles, &mu_int_data, seg->fname_len, (char *)seg->fname, gtmcrypt_errno); if (0 != gtmcrypt_errno) { - seg = gv_cur_region->dyn.addr; GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, seg->fname_len, seg->fname); mu_int_skipreg_cnt++; return FALSE; } } -# endif mu_int_master = malloc(mu_int_data.master_map_len); fc->op = FC_READ; fc->op_buff = mu_int_master; diff --git a/sr_port/mu_int_maps.c b/sr_port/mu_int_maps.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_maps.h b/sr_port/mu_int_maps.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_read.c b/sr_port/mu_int_read.c old mode 100644 new mode 100755 index e08db3ae..83c0eb3d --- a/sr_port/mu_int_read.c +++ b/sr_port/mu_int_read.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -24,9 +25,7 @@ #include "iosp.h" #include "mupint.h" #include "gds_blk_upgrade.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #include "min_max.h" #ifdef GTM_SNAPSHOT #include "shmpool.h" /* Needed for DBG_ENSURE_PTR_WITHIN_SS_BOUNDS */ @@ -34,16 +33,15 @@ #endif #include "mupip_exit.h" -GBLREF sgmnt_data mu_int_data; -GBLREF int4 mu_int_ovrhd; -GBLREF gd_region *gv_cur_region; -GTMCRYPT_ONLY( -GBLREF gtmcrypt_key_t mu_int_encrypt_key_handle; -) -GBLREF boolean_t ointeg_this_reg; -GBLREF sgmnt_addrs *cs_addrs; -GBLREF uint4 mu_int_errknt; -GBLREF bool region; +GBLREF sgmnt_data mu_int_data; +GBLREF int4 mu_int_ovrhd; +GBLREF gd_region *gv_cur_region; +GBLREF enc_handles mu_int_encr_handles; +GBLREF boolean_t ointeg_this_reg; +GBLREF sgmnt_addrs *cs_addrs; +GBLREF sgmnt_data_ptr_t cs_data; +GBLREF uint4 mu_int_errknt; +GBLREF bool region; error_def(ERR_DBRDERR); error_def(ERR_DBROLLEDBACK); @@ -56,18 +54,19 @@ uchar_ptr_t mu_int_read(block_id blk, enum db_ver *ondsk_blkver) int4 status; file_control *fc; unsigned char *tmp_ptr; -# ifdef GTM_CRYPT int in_len, gtmcrypt_errno; char *in; gd_segment *seg; -# endif - boolean_t have_blk = FALSE; + boolean_t db_is_encrypted, use_new_key; + sgmnt_data_ptr_t csd; + boolean_t have_blk; sgmnt_addrs *csa; GTM_SNAPSHOT_ONLY( boolean_t read_failed; shm_snapshot_t *ss_shm_ptr; ) + have_blk = FALSE; csa = cs_addrs; # ifdef UNIX if (region && csa->nl->onln_rlbk_pid) @@ -124,25 +123,30 @@ uchar_ptr_t mu_int_read(block_id blk, enum db_ver *ondsk_blkver) } # endif } -# ifdef GTM_CRYPT - in_len = MIN(mu_int_data.blk_size, ((blk_hdr_ptr_t)tmp_ptr)->bsiz) - SIZEOF(blk_hdr); - if (BLK_NEEDS_ENCRYPTION3(mu_int_data.is_encrypted, (((blk_hdr_ptr_t)tmp_ptr)->levl), in_len)) + csd = &mu_int_data; + if (USES_ENCRYPTION(csd->is_encrypted)) { - /* The below assert cannot be moved before BLK_NEEDS_ENCRYPTION3 check done above as tmp_ptr could - * potentially point to a V4 block in which case the assert might fail when a V4 block is casted to - * a V5 block header. - */ - assert(((blk_hdr_ptr_t)tmp_ptr)->bsiz <= mu_int_data.blk_size); - assert(((blk_hdr_ptr_t)tmp_ptr)->bsiz >= SIZEOF(blk_hdr)); - in = (char *)(tmp_ptr + SIZEOF(blk_hdr)); - GTMCRYPT_DECRYPT(csa, mu_int_encrypt_key_handle, in, in_len, NULL, gtmcrypt_errno); - if (0 != gtmcrypt_errno) - { - seg = gv_cur_region->dyn.addr; - GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, seg->fname_len, seg->fname); + in_len = MIN(mu_int_data.blk_size, ((blk_hdr_ptr_t)tmp_ptr)->bsiz) - SIZEOF(blk_hdr); + db_is_encrypted = IS_ENCRYPTED(csd->is_encrypted); + use_new_key = NEEDS_NEW_KEY(csd, ((blk_hdr_ptr_t)tmp_ptr)->tn); + if ((use_new_key || db_is_encrypted) && IS_BLK_ENCRYPTED((((blk_hdr_ptr_t)tmp_ptr)->levl), in_len)) + { /* The below assert cannot be moved before (use_new_key || db_is_encrypted) check done above as tmp_ptr + * could potentially point to a V4 block in which case the assert might fail when a V4 block is cast to + * a V5 block header. + */ + assert(((blk_hdr_ptr_t)tmp_ptr)->bsiz <= csd->blk_size); + assert(((blk_hdr_ptr_t)tmp_ptr)->bsiz >= SIZEOF(blk_hdr)); + in = (char *)(tmp_ptr + SIZEOF(blk_hdr)); + GTMCRYPT_DECRYPT(csa, (use_new_key ? TRUE : csd->non_null_iv), + (use_new_key ? mu_int_encr_handles.encr_key_handle2 : mu_int_encr_handles.encr_key_handle), + in, in_len, NULL, tmp_ptr, SIZEOF(blk_hdr), gtmcrypt_errno); + if (0 != gtmcrypt_errno) + { + seg = gv_cur_region->dyn.addr; + GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, seg->fname_len, seg->fname); + } } } -# endif GDS_BLK_UPGRADE_IF_NEEDED(blk, tmp_ptr, tmp_ptr, &mu_int_data, ondsk_blkver, status, mu_int_data.fully_upgraded); if (SS_NORMAL != status) if (ERR_DYNUPGRDFAIL == status) diff --git a/sr_port/mu_int_reg.c b/sr_port/mu_int_reg.c index 454f2c1e..bffe65b3 100644 --- a/sr_port/mu_int_reg.c +++ b/sr_port/mu_int_reg.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -32,9 +33,7 @@ #include "wcs_sleep.h" #include "wcs_flu.h" #include "interlock.h" -#ifdef GTM_CRYPT #include "gtmcrypt.h" -#endif #ifdef GTM_SNAPSHOT #include "db_snapshot.h" #include "gt_timer.h" @@ -47,16 +46,13 @@ GBLREF boolean_t ointeg_this_reg; GBLREF gd_region *gv_cur_region; GBLREF sgmnt_data mu_int_data; -GBLREF sgmnt_data_ptr_t cs_data; GBLREF unsigned char *mu_int_master; GBLREF uint4 mu_int_skipreg_cnt; #ifdef DEBUG GBLREF pid_t process_id; #endif -#ifdef GTM_CRYPT -GBLREF gtmcrypt_key_t mu_int_encrypt_key_handle; +GBLREF enc_handles mu_int_encr_handles; GBLREF sgmnt_addrs *cs_addrs; -#endif #ifdef UNIX GBLREF boolean_t jnlpool_init_needed, online_specified, preserve_snapshot; GBLREF util_snapshot_ptr_t util_ss_ptr; @@ -72,15 +68,15 @@ void mu_int_reg(gd_region *reg, boolean_t *return_value) freeze_status status; node_local_ptr_t cnl; sgmnt_addrs *csa; + sgmnt_data_ptr_t csd; # ifdef DEBUG boolean_t need_to_wait = FALSE; int trynum; uint4 curr_wbox_seq_num; # endif -# ifdef GTM_CRYPT + sgmnt_data *csd_copy_ptr; gd_segment *seg; int gtmcrypt_errno; -# endif *return_value = FALSE; UNIX_ONLY(jnlpool_init_needed = TRUE); ESTABLISH(mu_int_reg_ch); @@ -106,31 +102,17 @@ void mu_int_reg(gd_region *reg, boolean_t *return_value) change_reg(); csa = &FILE_INFO(gv_cur_region)->s_addrs; cnl = csa->nl; + csd = csa->hdr; read_only = gv_cur_region->read_only; -# ifdef GTM_CRYPT - if (cs_data->is_encrypted) - { /* Initialize mu_int_encrypt_key_handle to be used in mu_int_read */ - assert(csa == cs_addrs); - ASSERT_ENCRYPTION_INITIALIZED; /* should have happened in db_init() */ - GTMCRYPT_INIT_BOTH_CIPHER_CONTEXTS(cs_addrs, cs_data->encryption_hash, mu_int_encrypt_key_handle, gtmcrypt_errno); - if (0 != gtmcrypt_errno) - { - seg = gv_cur_region->dyn.addr; - GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, seg->fname_len, seg->fname); - mu_int_skipreg_cnt++; - return; - } - } -# endif assert(NULL != mu_int_master); /* Ensure that we don't see an increase in the file header and master map size compared to it's maximum values */ - assert(SGMNT_HDR_LEN >= SIZEOF(sgmnt_data) && (MASTER_MAP_SIZE_MAX >= MASTER_MAP_SIZE(cs_data))); + assert(SGMNT_HDR_LEN >= SIZEOF(sgmnt_data) && (MASTER_MAP_SIZE_MAX >= MASTER_MAP_SIZE(csd))); /* ONLINE INTEG if asked for explicitly by specifying -ONLINE is an error if the db has partial V4 blocks. * However, if -ONLINE is not explicitly specified but rather assumed implicitly (as default for -REG) * then turn off ONLINE INTEG for this region and continue as if -NOONLINE was specified */ # ifdef GTM_SNAPSHOT - if (!cs_data->fully_upgraded) + if (!csd->fully_upgraded) { ointeg_this_reg = FALSE; /* Turn off ONLINE INTEG for this region */ if (online_specified) @@ -189,10 +171,11 @@ void mu_int_reg(gd_region *reg, boolean_t *return_value) was_crit = csa->now_crit; if (!was_crit) grab_crit(gv_cur_region); - memcpy((uchar_ptr_t)&mu_int_data, (uchar_ptr_t)cs_data, SIZEOF(sgmnt_data)); + memcpy((uchar_ptr_t)&mu_int_data, (uchar_ptr_t)csd, SIZEOF(sgmnt_data)); if (!was_crit) rel_crit(gv_cur_region); - memcpy(mu_int_master, MM_ADDR(cs_data), MASTER_MAP_SIZE(cs_data)); + memcpy(mu_int_master, MM_ADDR(csd), MASTER_MAP_SIZE(csd)); + csd_copy_ptr = &mu_int_data; } else { # ifdef GTM_SNAPSHOT @@ -203,13 +186,14 @@ void mu_int_reg(gd_region *reg, boolean_t *return_value) ss_release(&csa->ss_ctx); ointeg_this_reg = FALSE; /* Turn off ONLINE INTEG for this region */ assert(process_id != cnl->in_crit); /* Ensure ss_initiate released the crit before returning */ - assert(process_id != cs_data->freeze); /* Ensure region is unfrozen before returning from ss_initiate */ + assert(process_id != csd->freeze); /* Ensure region is unfrozen before returning from ss_initiate */ assert(INTRPT_IN_SS_INITIATE != intrpt_ok_state); /* Ensure ss_initiate released intrpt_ok_state */ return; } assert(process_id != cnl->in_crit); /* Ensure ss_initiate released the crit before returning */ - assert(process_id != cs_data->freeze); /* Ensure region is unfrozen before returning from ss_initiate */ + assert(process_id != csd->freeze); /* Ensure region is unfrozen before returning from ss_initiate */ assert(INTRPT_IN_SS_INITIATE != intrpt_ok_state); /* Ensure ss_initiate released intrpt_ok_state */ + csd_copy_ptr = &csa->ss_ctx->ss_shm_ptr->shadow_file_header; # if defined(DEBUG) curr_wbox_seq_num = 1; cnl->wbox_test_seq_num = curr_wbox_seq_num; /* indicate we took the next step */ @@ -225,6 +209,17 @@ void mu_int_reg(gd_region *reg, boolean_t *return_value) # endif # endif } + if (USES_ANY_KEY(csd_copy_ptr)) + { /* Initialize mu_int_encrypt_key_handle to be used in mu_int_read */ + seg = gv_cur_region->dyn.addr; + INIT_DB_OR_JNL_ENCRYPTION(&mu_int_encr_handles, csd_copy_ptr, seg->fname_len, (char *)seg->fname, gtmcrypt_errno); + if (0 != gtmcrypt_errno) + { + GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, gtm_putmsg, seg->fname_len, seg->fname); + mu_int_skipreg_cnt++; + return; + } + } *return_value = mu_int_fhead(); REVERT; return; diff --git a/sr_port/mu_int_reg_ch.c b/sr_port/mu_int_reg_ch.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_int_write.c b/sr_port/mu_int_write.c old mode 100644 new mode 100755 index 05775ca1..efee0524 --- a/sr_port/mu_int_write.c +++ b/sr_port/mu_int_write.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2011 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -19,6 +20,8 @@ #include "dbfilop.h" #include "gdsblk.h" #include "gds_blk_downgrade.h" +#include "gtmcrypt.h" +#include "min_max.h" #include "mupint.h" GBLREF sm_uc_ptr_t reformat_buffer; @@ -29,9 +32,14 @@ GBLREF int4 mu_int_ovrhd; GBLREF sgmnt_data mu_int_data; GBLREF gd_region *gv_cur_region; GBLREF volatile int4 fast_lock_count; +GBLREF enc_handles mu_int_encr_handles; +GBLREF mstr pvt_crypt_buf; void mu_int_write(block_id blk, uchar_ptr_t ptr) { + int in_len, gtmcrypt_errno; + char *in, *out; + gd_segment *seg; file_control *fc; assert(0 == fast_lock_count); @@ -56,15 +64,41 @@ void mu_int_write(block_id blk, uchar_ptr_t ptr) } fc = gv_cur_region->dyn.addr->file_cntl; fc->op = FC_WRITE; - fc->op_buff = ptr; - /* Previously, fc->op_len was set to mu_int_data.blk_size. Although only the transaction number in the block header is - * going to be reset, we were writing the entire buffer (mu_int_data.blk_size). This demanded a encryption - * of the buffer before being written to the disk. To avoid an encryption, we are only going to write the block header - * in the desired offset(op_pos). Note that since mu_int_write is called just after an mu_int_read, the block previously - * read will be in the OS cache and hence won't cause performance issues due to unaligned writes. When the database is - * not fully upgraded from V4 to V5, we will be writing the entrie block size. This is due to the block upgrades between - * V4 and V5 that can happen in the unencrypted versions of the database. */ - fc->op_len = UNIX_ONLY(mu_int_data.fully_upgraded ? SIZEOF(blk_hdr) : ) mu_int_data.blk_size; + /* In case the block whose header we touched is encrypted, we need to reencrypt its entire content (unless using null IV), + * since we have practically altered the IV and so the ciphertext would be different as well. If, however, the block is not + * encrypted, we can get away with writing only the header portion. Note that since mu_int_write is called just after + * mu_int_read, the block previously read will be in the OS cache and hence will not cause performance issues due to + * unaligned writes. When the database is not fully upgraded from V4 to V5, we will be writing the entrie block size. This + * is due to the block upgrades between V4 and V5 that can happen in the unencrypted versions of the database. + */ + in_len = MIN(mu_int_data.blk_size, ((blk_hdr_ptr_t)ptr)->bsiz) - SIZEOF(blk_hdr); + /* We disallow the use of TN_RESET when database (re)encryption is in progress. */ + assert(!USES_NEW_KEY(&mu_int_data)); + if (BLK_NEEDS_ENCRYPTION3(IS_ENCRYPTED(mu_int_data.is_encrypted), (((blk_hdr_ptr_t)ptr)->levl), in_len) + && mu_int_data.non_null_iv) + { /* The below assert cannot be moved before BLK_NEEDS_ENCRYPTION3 check done above as ptr could potentially point to + * a V4 block in which case the assert might fail when a V4 block is casted to a V5 block header. + */ + assert(((blk_hdr_ptr_t)ptr)->bsiz <= mu_int_data.blk_size); + assert(((blk_hdr_ptr_t)ptr)->bsiz >= SIZEOF(blk_hdr)); + REALLOC_CRYPTBUF_IF_NEEDED(mu_int_data.blk_size); + memcpy(pvt_crypt_buf.addr, ptr, SIZEOF(blk_hdr)); + in = (char *)(ptr + SIZEOF(blk_hdr)); + out = (char *)pvt_crypt_buf.addr + SIZEOF(blk_hdr); + GTMCRYPT_ENCRYPT(csa, mu_int_data.non_null_iv, mu_int_encr_handles.encr_key_handle, in, in_len, out, + ptr, SIZEOF(blk_hdr), gtmcrypt_errno); + if (0 != gtmcrypt_errno) + { + seg = gv_cur_region->dyn.addr; + GTMCRYPT_REPORT_ERROR(gtmcrypt_errno, rts_error, seg->fname_len, seg->fname); + } + fc->op_len = in_len + SIZEOF(blk_hdr); + fc->op_buff = (unsigned char *)pvt_crypt_buf.addr; + } else + { + fc->op_len = mu_int_data.fully_upgraded ? SIZEOF(blk_hdr) : mu_int_data.blk_size; + fc->op_buff = ptr; + } fc->op_pos = mu_int_ovrhd + ((gtm_int64_t)mu_int_data.blk_size / DISK_BLOCK_SIZE * blk); dbfilop(fc); DEBUG_ONLY(reformat_buffer_in_use--;) diff --git a/sr_port/mu_interactive.c b/sr_port/mu_interactive.c index a3162fcf..c3ed05eb 100644 --- a/sr_port/mu_interactive.c +++ b/sr_port/mu_interactive.c @@ -30,20 +30,15 @@ boolean_t mu_interactive(caddr_t message) unsigned short len; int index; char res[8]; - UNIX_ONLY(char *fgets_res;) - UNIX_ONLY(util_out_print(PROCEED_PROMPT, TRUE);) - VMS_ONLY($DESCRIPTOR (dres, res);) - VMS_ONLY($DESCRIPTOR (dprm, PROCEED_PROMPT);) + char *fgets_res; + util_out_print(PROCEED_PROMPT, TRUE); while (FALSE == done) { - VMS_ONLY(lib$get_input(&dres, &dprm, &len);) -# if defined(UNIX) fgets_res = util_input(res, SIZEOF(res), stdin, FALSE); if (NULL != fgets_res) { len = strlen(res); -# endif if (0 < len) { for (index = 0; index < len; index++) @@ -61,13 +56,11 @@ boolean_t mu_interactive(caddr_t message) } } util_out_print(CORRECT_PROMPT, TRUE); -# if defined(UNIX) } else { mur_error_allowed = FALSE; break; } -# endif } if (FALSE == mur_error_allowed) util_out_print(message, TRUE); diff --git a/sr_port/mu_outofband_setup.h b/sr_port/mu_outofband_setup.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_put_gvdata.c b/sr_port/mu_put_gvdata.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_reduce_level.c b/sr_port/mu_reduce_level.c old mode 100644 new mode 100755 index 00a80c2a..d45e3044 --- a/sr_port/mu_reduce_level.c +++ b/sr_port/mu_reduce_level.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2009 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -77,6 +78,7 @@ enum cdb_sc mu_reduce_level(kill_set *kill_set_ptr) if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(&gv_target->hist.h[level-1], t_blkmod_mu_reduce_level); return cdb_sc_blkmod; } t_write(&gv_target->hist.h[level], (unsigned char *)bs_ptr1, 0, 0, level - 1, TRUE, TRUE, GDS_WRITE_KILLTN); diff --git a/sr_port/mu_reorg.c b/sr_port/mu_reorg.c old mode 100644 new mode 100755 index 163228a4..bbd7599f --- a/sr_port/mu_reorg.c +++ b/sr_port/mu_reorg.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2014 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -315,14 +316,13 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, complete_merge = FALSE; blks_processed++; t_begin(ERR_MUREORGFAIL, UPDTRNS_DB_UPDATED_MASK); - /* Folllowing for loop is to handle concurrency retry for split/coalesce */ + /* Following for loop is to handle concurrency retry for split/coalesce */ for (; ;) /* === SPLIT-COALESCE LOOP STARTS === */ { gv_target->clue.end = 0; /* search gv_currkey and get the result in gv_target */ if ((status = gvcst_search(gv_currkey, NULL)) != cdb_sc_normal) { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -379,7 +379,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, assert(0 == cw_map_depth); /* mu_swap_blk (that changes cw_map_depth) comes later */ } else { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -389,7 +388,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, status = gvcst_rtsib(rtsib_hist, level); if (cdb_sc_normal != status && cdb_sc_endtree != status) { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -463,7 +461,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, assert(0 == cw_map_depth); /* mu_swap_blk (that changes cw_map_depth) comes later */ } else { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -510,7 +507,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, log_detailed_log("NOU", rtsib_hist, NULL, level, NULL, ret_tn); } else { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -536,7 +532,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, /* search gv_currkey and get the result in gv_target */ if ((status = gvcst_search(gv_currkey, NULL)) != cdb_sc_normal) { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -609,7 +604,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, gv_target->hist.h[level].blk_num); } else { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -650,7 +644,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, /* search gv_currkey and get the result in gv_target */ if ((status = gvcst_search(gv_currkey, NULL)) != cdb_sc_normal) { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } @@ -660,7 +653,6 @@ boolean_t mu_reorg(glist *gl_ptr, glist *exclude_glist_ptr, boolean_t *resume, status = mu_reduce_level(&kill_set_list); if (cdb_sc_oprnotneeded != status && cdb_sc_normal != status) { - assert(CDB_STAGNATE > t_tries); t_retry(status); continue; } else if (cdb_sc_normal == status) diff --git a/sr_port/mu_reorg.h b/sr_port/mu_reorg.h old mode 100644 new mode 100755 index 03755fb0..b87c2217 --- a/sr_port/mu_reorg.h +++ b/sr_port/mu_reorg.h @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -78,10 +79,10 @@ typedef char *dbg_osf_short_char_ptr_t; KEY_CMPC = get_cmpc(FIRST_KEY, SECOND_KEY); \ } -#define READ_RECORD(STATUS, REC_SIZE_PTR, KEY_CMPC_PTR, KEY_LEN_PTR, KEY, LEVEL, BLK_BASE, REC_BASE) \ +#define READ_RECORD(STATUS, REC_SIZE_PTR, KEY_CMPC_PTR, KEY_LEN_PTR, KEY, LEVEL, BLK_STAT, REC_BASE) \ { \ DBG_CHECK_KEY_ALLOCATION_SIZE(KEY); \ - STATUS = read_record(REC_SIZE_PTR, KEY_CMPC_PTR, KEY_LEN_PTR, KEY, LEVEL, BLK_BASE, REC_BASE); \ + STATUS = read_record(REC_SIZE_PTR, KEY_CMPC_PTR, KEY_LEN_PTR, KEY, LEVEL, BLK_STAT, REC_BASE); \ } enum reorg_options { DEFAULT = 0, @@ -95,4 +96,4 @@ int get_gblname_len(sm_uc_ptr_t blk_base, sm_uc_ptr_t key_base); int get_key_len(sm_uc_ptr_t blk_base, sm_uc_ptr_t key_base); int get_cmpc(sm_uc_ptr_t first_key, sm_uc_ptr_t second_key); enum cdb_sc read_record(int *rec_size_ptr, int *key_cmpc_ptr, int *key_len_ptr, sm_uc_ptr_t key, - int level, sm_uc_ptr_t blk_base, sm_uc_ptr_t rec_base); + int level, srch_blk_status *blk_stat, sm_uc_ptr_t rec_base); diff --git a/sr_port/mu_reorg_upgrd_dwngrd.c b/sr_port/mu_reorg_upgrd_dwngrd.c old mode 100644 new mode 100755 index 5f6f56cb..e3ab736c --- a/sr_port/mu_reorg_upgrd_dwngrd.c +++ b/sr_port/mu_reorg_upgrd_dwngrd.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2005, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2005-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -64,6 +65,7 @@ GBLREF bool mu_ctrlc_occurred; GBLREF bool mu_ctrly_occurred; GBLREF uint4 process_id; GBLREF tp_region *grlist; +GBLREF boolean_t mu_reorg_process; GBLREF gd_region *gv_cur_region; GBLREF sgmnt_addrs *cs_addrs; GBLREF sgmnt_data_ptr_t cs_data; @@ -192,7 +194,9 @@ void mu_reorg_upgrd_dwngrd(void) status = ERR_MUNOFINISH; continue; } + mu_reorg_process = TRUE; /* gvcst_init will use this value to use gtm_poollimit settings. */ gvcst_init(reg); + mu_reorg_process = FALSE; assert(update_array != NULL); /* access method stored in global directory and database file header might be different in which case * the database setting prevails. therefore, the access method check can be done only after opening @@ -205,11 +209,10 @@ void mu_reorg_upgrd_dwngrd(void) status = ERR_MUNOFINISH; continue; } - if (reg->was_open) /* Already open under another name. Region will not be marked open */ - { - reg->open = FALSE; - continue; - } + /* The mu_getlst call above uses insert_region to create the grlist, which ensures that duplicate regions mapping to + * the same db file correspond to only one grlist entry. + */ + assert(FALSE == reg->was_open); TP_CHANGE_REG(reg); /* sets gv_cur_region, cs_addrs, cs_data */ csa = cs_addrs; csd = cs_data; @@ -321,7 +324,7 @@ void mu_reorg_upgrd_dwngrd(void) assert(!csa->now_crit); bml_sm_buff = t_qread(curbmp, (sm_int_ptr_t)&cycle, &cr); /* bring block into the cache outside of crit */ reorg_stats.blks_read_from_disk_bmp++; - grab_crit(reg); + grab_crit_encr_cycle_sync(reg); /* needed so t_qread does not return NULL below */ if (mu_reorg_upgrd_dwngrd_start_tn != csd->desired_db_format_tn) { /* csd->desired_db_format changed since reorg started. discontinue the reorg */ /* see later comment on "csd->reorg_upgrd_dwngrd_restart_block" for why the assignment @@ -537,12 +540,12 @@ void mu_reorg_upgrd_dwngrd(void) t_write(blkhist, (unsigned char *)bs1, 0, 0, ((blk_hdr_ptr_t)blkBase)->levl, FALSE, FALSE, GDS_WRITE_PLAIN); - /* The tree_status for now is only used to determin whether writing - * the block to snapshot file. * (see t_end_ops.c). + /* The directory tree status for now is only used to determine + * whether writing the block to snapshot file (see t_end_sysops.c). * For reorg upgrade/downgrade process, the block is updated in a - * sequential way without changing the gv_target. In this case, - * we assume the block is in directory tree so as to have - * it written to the snapshot file + * sequential way without changing the gv_target. In this case, we + * assume the block is in directory tree so as to have it written to + * the snapshot file. */ BIT_SET_DIR_TREE(cw_set[cw_set_depth-1].blk_prior_state); /* reset update_trans in case previous retry had set it to 0 */ diff --git a/sr_port/mu_reorg_upgrd_dwngrd.h b/sr_port/mu_reorg_upgrd_dwngrd.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_signal_process.h b/sr_port/mu_signal_process.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_split.c b/sr_port/mu_split.c old mode 100644 new mode 100755 index 375fd37c..3cc67a93 --- a/sr_port/mu_split.c +++ b/sr_port/mu_split.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -54,8 +55,8 @@ GBLREF gv_key *gv_currkey; GBLREF gv_key *gv_currkey_next_reorg; static int4 const zeroes = 0; -enum cdb_sc locate_block_split_point(sm_uc_ptr_t blk_base, int level, int cur_blk_size, int max_fill, -int *last_rec_size, unsigned char last_key[], int *last_keysz, int *top_off); +enum cdb_sc locate_block_split_point(srch_blk_status *blk_stat, int level, int cur_blk_size, int max_fill, int *last_rec_size, + unsigned char *last_key, int *last_keysz, int *top_off); /*********************************************************************************************** @@ -101,6 +102,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr cw_set_element *cse; rec_hdr_ptr_t star_rec_hdr, new_rec_hdr1a, new_rec_hdr1b, new_rec_hdr2, root_hdr; blk_hdr_ptr_t blk_hdr_ptr; + srch_blk_status *old_blk1_hist_ptr; blk_size = cs_data->blk_size; CHECK_AND_RESET_UPDATE_ARRAY; /* reset update_array_ptr to update_array */ @@ -123,13 +125,15 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr * new_blk2_rem = pointer to new block to be created after split exclude 1st record header + key */ blk_hdr_ptr = (blk_hdr_ptr_t)(gv_target->hist.h[level].buffaddr); + old_blk1_hist_ptr = &gv_target->hist.h[level]; old_blk1_base = (sm_uc_ptr_t)blk_hdr_ptr; old_blk1_sz = blk_hdr_ptr->bsiz; new_blk2_top = old_blk1_base + old_blk1_sz; - if (cdb_sc_normal != (status = locate_block_split_point (old_blk1_base, level, old_blk1_sz, max_fill, + if (cdb_sc_normal != (status = locate_block_split_point (old_blk1_hist_ptr, level, old_blk1_sz, max_fill, &old_blk1_last_rec_size, new_blk1_last_key, &new_blk1_last_keysz, &new_leftblk_top_off))) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } if (new_leftblk_top_off + BSTAR_REC_SIZE >= old_blk1_sz) @@ -139,10 +143,11 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr new_blk2_frec_base = old_blk1_base + new_leftblk_top_off; BLK_ADDR(newblk2_first_key, MAX_KEY_SZ + 1, unsigned char); READ_RECORD(status, &rec_size, &tkeycmpc, &newblk2_first_keylen, newblk2_first_key, - level, old_blk1_base, new_blk2_frec_base); + level, old_blk1_hist_ptr, new_blk2_frec_base); if (cdb_sc_normal != status) /* restart for cdb_sc_starrecord too, because we eliminated the possibility already */ { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } memcpy(newblk2_first_key, &new_blk1_last_key[0], tkeycmpc); /* copy the compressed key piece */ @@ -169,6 +174,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } allocation_clue = ALLOCATION_CLUE(cs_data->trans_hist.total_blks); @@ -193,10 +199,10 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if ( !BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } - t_write(&gv_target->hist.h[level], (unsigned char *)bs_ptr1, 0, 0, level, FALSE, TRUE, GDS_WRITE_KILLTN); - + t_write(old_blk1_hist_ptr, (unsigned char *)bs_ptr1, 0, 0, level, FALSE, TRUE, GDS_WRITE_KILLTN); /* ---------------------------------------------------------------------------- Modify ancestor block for the split in current level. @@ -211,7 +217,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr BLK_ADDR(new_ins_key, new_blk1_last_keysz, unsigned char); memcpy(new_ins_key, &new_blk1_last_key[0], new_blk1_last_keysz); new_ins_keysz = new_blk1_last_keysz; - for(;;) /* ========== loop through ancestors as necessary ======= */ + for (;;) /* ========== loop through ancestors as necessary ======= */ { level ++; max_fill = i_max_fill; @@ -220,6 +226,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr ances_currkey = old real value of currkey in ancestor block */ blk_hdr_ptr = (blk_hdr_ptr_t)(gv_target->hist.h[level].buffaddr); + old_blk1_hist_ptr = &gv_target->hist.h[level]; old_blk1_base = (sm_uc_ptr_t)blk_hdr_ptr; old_blk1_sz = blk_hdr_ptr->bsiz; new_blk2_top = old_blk1_base + old_blk1_sz; @@ -231,6 +238,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (INVALID_RECORD(level, rec_size, old_ances_currkeylen, old_ances_currkeycmpc)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } if (0 == old_ances_currkeylen) @@ -238,6 +246,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (0 != old_ances_currkeycmpc) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } new_ances_currkeycmpc = new_ances_currkeylen = 0; @@ -248,13 +257,14 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr key_base = rec_base + SIZEOF(rec_hdr); } new_ances_currkeysz = old_ances_currkeycmpc + old_ances_currkeylen; - if (SIZEOF(blk_hdr) != gv_target->hist.h[level].curr_rec.offset) /* cur_rec is not first key */ + if (SIZEOF(blk_hdr) != old_blk1_hist_ptr->curr_rec.offset) /* cur_rec is not first key */ { - if (cdb_sc_normal != (status = gvcst_expand_any_key(old_blk1_base, - old_blk1_base + gv_target->hist.h[level].curr_rec.offset, + if (cdb_sc_normal != (status = gvcst_expand_any_key(old_blk1_hist_ptr, + old_blk1_base + old_blk1_hist_ptr->curr_rec.offset, &curr_prev_key[0], &rec_size, &tkeylen, &tkeycmpc, NULL))) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } if (old_ances_currkeycmpc) @@ -266,7 +276,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr GET_CMPC(new_ances_currkeycmpc, new_ins_key, ances_currkey); new_ances_currkeylen = new_ances_currkeysz - new_ances_currkeycmpc; } - if (SIZEOF(blk_hdr) != gv_target->hist.h[level].curr_rec.offset) + if (SIZEOF(blk_hdr) != old_blk1_hist_ptr->curr_rec.offset) { /* new_ins_key will be inseted after curr_prev_key */ GET_CMPC(new_ins_keycmpc, curr_prev_key, new_ins_key); @@ -291,12 +301,13 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr return cdb_sc_oprnotneeded; /* Improve code to avoid this */ max_fill = old_blk1_sz - BSTAR_REC_SIZE; } - status = locate_block_split_point(old_blk1_base, level, old_blk1_sz, max_fill, + status = locate_block_split_point(old_blk1_hist_ptr, level, old_blk1_sz, max_fill, &old_blk1_last_rec_size, new_blk1_last_key, &new_blk1_last_keysz, &new_leftblk_top_off); if (cdb_sc_normal != status || new_leftblk_top_off >= old_blk1_sz || 0 == new_blk1_last_keysz) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } assert(BSTAR_REC_SIZE != old_blk1_last_rec_size); @@ -306,7 +317,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr new_rtblk_star_only = TRUE; else new_rtblk_star_only = FALSE; - if (new_leftblk_top_off == gv_target->hist.h[level].curr_rec.offset) + if (new_leftblk_top_off == old_blk1_hist_ptr->curr_rec.offset) { /* inserted key will be the first record of new right block */ new_ins_keylen = new_ins_keysz; @@ -317,7 +328,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr { BLK_ADDR(newblk2_first_key, MAX_KEY_SZ + 1, unsigned char); READ_RECORD(status, &rec_size, &tkeycmpc, &newblk2_first_keylen, newblk2_first_key, - level, old_blk1_base, new_blk2_frec_base); + level, old_blk1_hist_ptr, new_blk2_frec_base); if (cdb_sc_normal == status) { memcpy(newblk2_first_key, &new_blk1_last_key[0], tkeycmpc); /* compressed piece */ @@ -330,12 +341,13 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr else if (cdb_sc_starrecord != status || !new_rtblk_star_only) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } } - /* else gv_target->hist.h[level].curr_rec will be newblk2_first_key */ + /* else old_blk1_hist_ptr->curr_rec will be newblk2_first_key */ - if (new_leftblk_top_off > gv_target->hist.h[level].curr_rec.offset + + if (new_leftblk_top_off > old_blk1_hist_ptr->curr_rec.offset + old_ances_currkeylen + BSTAR_REC_SIZE) { /* in this case prev_rec (if exists), new key and curr_rec should go into left block */ @@ -348,10 +360,10 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr return cdb_sc_oprnotneeded; } } - else if (new_leftblk_top_off < gv_target->hist.h[level].curr_rec.offset + + else if (new_leftblk_top_off < old_blk1_hist_ptr->curr_rec.offset + old_ances_currkeylen + BSTAR_REC_SIZE) { - /* if gv_target->hist.h[level].curr_rec is the first key in old_blk1 + /* if old_blk1_hist_ptr->curr_rec is the first key in old_blk1 then in new right block, new_ins_key will be the 1st record key and curr_rec will be 2nd record and @@ -400,16 +412,16 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr SET_CMPC(new_rec_hdr1b, new_ances_currkeycmpc); BLK_ADDR(bn_ptr1, SIZEOF(block_id), unsigned char); /* child pointer of ances_currkey */ - memcpy(bn_ptr1, old_blk1_base + gv_target->hist.h[level].curr_rec.offset + + memcpy(bn_ptr1, old_blk1_base + old_blk1_hist_ptr->curr_rec.offset + SIZEOF(rec_hdr) + old_ances_currkeylen, SIZEOF(block_id)); if (!split_required) { /* LEFT part of old BLOCK */ BLK_INIT(bs_ptr2, bs_ptr1); - if (SIZEOF(blk_hdr) < gv_target->hist.h[level].curr_rec.offset) + if (SIZEOF(blk_hdr) < old_blk1_hist_ptr->curr_rec.offset) { BLK_SEG(bs_ptr2, old_blk1_base + SIZEOF(blk_hdr), - gv_target->hist.h[level].curr_rec.offset - SIZEOF(blk_hdr)); + old_blk1_hist_ptr->curr_rec.offset - SIZEOF(blk_hdr)); first_copy = FALSE; } else first_copy = TRUE; @@ -426,6 +438,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } t_write(&gv_target->hist.h[level], (unsigned char *)bs_ptr1, ins_off, right_index, @@ -437,10 +450,10 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr { /* LEFT BLOCK */ BLK_INIT(bs_ptr2, bs_ptr1); - if (SIZEOF(blk_hdr) < gv_target->hist.h[level].curr_rec.offset) + if (SIZEOF(blk_hdr) < old_blk1_hist_ptr->curr_rec.offset) { BLK_SEG(bs_ptr2, old_blk1_base + SIZEOF(blk_hdr), - gv_target->hist.h[level].curr_rec.offset - SIZEOF(blk_hdr)); + old_blk1_hist_ptr->curr_rec.offset - SIZEOF(blk_hdr)); first_copy = FALSE; } else first_copy = TRUE; @@ -459,6 +472,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (old_blk_after_currec + save_blk_piece_len >= new_blk2_top) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } BLK_ADDR(save_blk_piece, save_blk_piece_len, unsigned char); @@ -480,6 +494,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } if (create_root) @@ -503,6 +518,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (0 > save_blk_piece_len) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } BLK_ADDR(save_blk_piece, save_blk_piece_len, unsigned char); @@ -512,6 +528,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } right_index = t_create(allocation_clue++, (unsigned char *)bs_ptr1, 0, 0, level); @@ -525,6 +542,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if ((old_blk1_base + SIZEOF(blk_hdr) + save_blk_piece_len >= new_blk2_top) || (0 > save_blk_piece_len)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } BLK_ADDR(save_blk_piece, save_blk_piece_len, unsigned char); @@ -537,6 +555,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if ( !BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } if (create_root) @@ -546,15 +565,16 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr level, TRUE, TRUE, GDS_WRITE_KILLTN); /* RIGHT BLOCK */ BLK_INIT(bs_ptr2, bs_ptr1); - if (new_leftblk_top_off < gv_target->hist.h[level].curr_rec.offset) + if (new_leftblk_top_off < old_blk1_hist_ptr->curr_rec.offset) { /* anything before curr_rec */ BLK_SEG(bs_ptr2, (sm_uc_ptr_t)new_rec_hdr2, SIZEOF(rec_hdr)); BLK_SEG(bs_ptr2, newblk2_first_key, newblk2_first_keysz); - save_blk_piece_len = (int)(gv_target->hist.h[level].curr_rec.offset - + save_blk_piece_len = (int)(old_blk1_hist_ptr->curr_rec.offset - new_leftblk_top_off - (new_blk2_rem - new_blk2_frec_base)); if ((new_blk2_rem + save_blk_piece_len >= new_blk2_top) || (0 > save_blk_piece_len)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } BLK_ADDR(save_blk_piece, save_blk_piece_len, unsigned char); @@ -562,9 +582,10 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr BLK_SEG(bs_ptr2, save_blk_piece, save_blk_piece_len); } /* Following else if may not be necessary. But I wanted it to be safe:Layek:10/3/2000 */ - else if (new_leftblk_top_off > gv_target->hist.h[level].curr_rec.offset) + else if (new_leftblk_top_off > old_blk1_hist_ptr->curr_rec.offset) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } BLK_SEG(bs_ptr2, (sm_uc_ptr_t)new_rec_hdr1a, SIZEOF(rec_hdr)); @@ -584,6 +605,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } right_index = t_create(allocation_clue++, (unsigned char *)bs_ptr1, ins_off, right_index, level); @@ -608,6 +630,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr if (!BLK_FINI(bs_ptr2, bs_ptr1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(old_blk1_hist_ptr, t_blkmod_mu_split); return cdb_sc_blkmod; } cse = t_write(&gv_target->hist.h[level], (unsigned char *)bs_ptr1, ins_off, left_index, @@ -633,7 +656,7 @@ enum cdb_sc mu_split(int cur_level, int i_max_fill, int d_max_fill, int *blks_cr locate_block_split_point (): This will split a block at a point given by fill factor Input Parameter: - blk_base = base of the block + blk_stat = target block history level = level of the block cur_blk_size = size of the block max_fill = maximum fill allowed for the block (max_fill < cur_blk_size) @@ -652,23 +675,25 @@ Return : At least one record will be in left block after split ------------------------------------------------------------------------- */ -enum cdb_sc locate_block_split_point(sm_uc_ptr_t blk_base, int level, int cur_blk_size, int max_fill, -int *last_rec_size, unsigned char last_key[], int *last_keysz, int *top_off) +enum cdb_sc locate_block_split_point(srch_blk_status *blk_stat, int level, int cur_blk_size, int max_fill, int *last_rec_size, + unsigned char *last_key, int *last_keysz, int *top_off) { unsigned short temp_ushort; int tkeycmpc; int rec_size; enum cdb_sc status; sm_uc_ptr_t rPtr1, rPtr2, rec_base; + sm_uc_ptr_t blk_base; *last_keysz = 0; *top_off = SIZEOF(blk_hdr); *last_rec_size = 0; + blk_base = blk_stat->buffaddr; rec_base = blk_base + SIZEOF(blk_hdr); while (*top_off < max_fill) { READ_RECORD(status, &rec_size, &tkeycmpc, last_keysz, last_key, - level, blk_base, rec_base); + level, blk_stat, rec_base); *top_off += rec_size; *last_keysz += tkeycmpc; rec_base += rec_size; @@ -678,6 +703,7 @@ int *last_rec_size, unsigned char last_key[], int *last_keysz, int *top_off) else if (cdb_sc_normal != status) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(blk_stat, t_blkmod_mu_split); return cdb_sc_blkmod; /* block became invalid */ } }/* end of "while" loop */ @@ -685,6 +711,7 @@ int *last_rec_size, unsigned char last_key[], int *last_keysz, int *top_off) ((blk_hdr_ptr_t)blk_base)->bsiz != cur_blk_size) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(blk_stat, t_blkmod_mu_split); return cdb_sc_blkmod; /* block became invalid */ } return cdb_sc_normal; diff --git a/sr_port/mu_swap_blk.c b/sr_port/mu_swap_blk.c old mode 100644 new mode 100755 index fd80d814..2bb1dce9 --- a/sr_port/mu_swap_blk.c +++ b/sr_port/mu_swap_blk.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2013 Fidelity Information Services, Inc * + * Copyright (c) 2001-2015 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -109,7 +110,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt bn_ptr, bmp_buff, tblk_ptr, rec_base, key_base; boolean_t gbl_target_was_set, blk_was_free, deleted; gv_namehead *save_targ; - srch_blk_status bmlhist, destblkhist, *hist_ptr; + srch_blk_status bmlhist, destblkhist, *hist_ptr, *work_blk_stat; unsigned char save_cw_set_depth; cw_set_element *tmpcse; jnl_buffer_ptr_t jbbp; /* jbbp is non-NULL only if before-image journaling */ @@ -126,12 +127,14 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt blk_size = cs_data->blk_size; work_parent_ptr = gv_target->hist.h[level+1].buffaddr; work_parent_size = ((blk_hdr_ptr_t)work_parent_ptr)->bsiz; - work_blk_ptr = gv_target->hist.h[level].buffaddr; + work_blk_stat = &gv_target->hist.h[level]; + work_blk_ptr = work_blk_stat->buffaddr; work_blk_size = ((blk_hdr_ptr_t)work_blk_ptr)->bsiz; - work_blk_id = gv_target->hist.h[level].blk_num; + work_blk_id = work_blk_stat->blk_num; if (blk_size < work_blk_size) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } cws_reorg_remove_index = 0; @@ -253,7 +256,10 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (CDB_STAGNATE <= t_tries) continue; else + { + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; + } } memcpy(&((TREF(gv_reorgkey))->base[0]), rec_base + SIZEOF(rec_hdr), key_len_dir); (TREF(gv_reorgkey))->base[key_len_dir] = 0; @@ -307,6 +313,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt { assert(t_tries < CDB_STAGNATE); RESET_GV_TARGET_LCL_AND_CLR_GBL(save_targ, DO_GVT_GVKEY_CHECK); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } /* Assign Global Variable Tree path to find dest_blk_id in dest_hist_ptr */ @@ -319,7 +326,13 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if ((cdb_sc_normal != status) || (dest_hist_ptr->h[nslevel].curr_rec.match != ((TREF(gv_reorgkey))->end + 1))) { assert(t_tries < CDB_STAGNATE); - return (cdb_sc_normal != status ? status : cdb_sc_blkmod); + if (cdb_sc_normal != status) + return status; + else + { + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); + return cdb_sc_blkmod; + } } for (wlevel = nslevel; wlevel <= dest_blk_level; wlevel++) dest_hist_ptr->h[wlevel].tn = ctn; @@ -340,6 +353,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI (bs_ptr,bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } assert(gv_target->hist.h[level].blk_num == work_blk_id); @@ -355,6 +369,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (dest_blk_level + 1 != level || dest_parent_size != work_blk_size) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } BLK_INIT(bs_ptr, bs1); @@ -365,6 +380,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (work_blk_size < first_offset + rec_size1) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } piece_len1 = first_offset + rec_size1; @@ -376,6 +392,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI(bs_ptr, bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } assert(dest_blk_id == dest_hist_ptr->h[dest_blk_level].blk_num); @@ -390,6 +407,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI(bs_ptr, bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } if (blk_was_free) @@ -458,6 +476,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt gv_target->hist.h[level+1].curr_rec.offset == dest_hist_ptr->h[level+1].curr_rec.offset) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } if (gv_target->hist.h[level+1].curr_rec.offset < dest_hist_ptr->h[level+1].curr_rec.offset) @@ -476,6 +495,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt BSTAR_REC_SIZE >= rec_size1 || BSTAR_REC_SIZE > rec_size2) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } piece_len1 = first_offset + rec_size1 - SIZEOF(block_id); @@ -496,6 +516,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI(bs_ptr,bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } assert(level == dest_blk_level); @@ -511,6 +532,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt BSTAR_REC_SIZE > rec_size1) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } BLK_SEG (bs_ptr, dest_parent_ptr + SIZEOF(blk_hdr), @@ -523,6 +545,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI(bs_ptr,bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } assert(dest_parent_ptr == dest_hist_ptr->h[dest_blk_level+1].buffaddr); @@ -537,6 +560,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (work_parent_size < rec_size1 + gv_target->hist.h[level+1].curr_rec.offset || BSTAR_REC_SIZE > rec_size1) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } BLK_INIT(bs_ptr, bs1); @@ -550,6 +574,7 @@ enum cdb_sc mu_swap_blk(int level, block_id *pdest_blk_id, kill_set *kill_set_pt if (!BLK_FINI(bs_ptr, bs1)) { assert(t_tries < CDB_STAGNATE); + NONTP_TRACE_HIST_MOD(work_blk_stat, t_blkmod_mu_swap_blk); return cdb_sc_blkmod; } assert(gv_target->hist.h[level+1].buffaddr == work_parent_ptr); diff --git a/sr_port/mu_upgrd_dngrd_confirmed.c b/sr_port/mu_upgrd_dngrd_confirmed.c old mode 100644 new mode 100755 diff --git a/sr_port/mu_upgrd_dngrd_confirmed.h b/sr_port/mu_upgrd_dngrd_confirmed.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_upgrd_dngrd_hdr.h b/sr_port/mu_upgrd_dngrd_hdr.h old mode 100644 new mode 100755 diff --git a/sr_port/mu_upgrd_header.c b/sr_port/mu_upgrd_header.c old mode 100644 new mode 100755 diff --git a/sr_port/mubclnup.c b/sr_port/mubclnup.c old mode 100644 new mode 100755 index f1440120..45a69737 --- a/sr_port/mubclnup.c +++ b/sr_port/mubclnup.c @@ -1,6 +1,7 @@ /**************************************************************** * * - * Copyright 2001, 2012 Fidelity Information Services, Inc * + * Copyright (c) 2001-2016 Fidelity National Information * + * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * * of its copyright holder(s), and is made available * @@ -14,10 +15,6 @@ #include "gtm_fcntl.h" #include "gtm_unistd.h" -#ifdef VMS -#include -#endif - #include "gtm_string.h" #include "stringpool.h" #include "gdsroot.h" @@ -40,12 +37,10 @@ #include "interlock.h" #include "add_inter.h" -#ifdef UNIX #include "ftok_sems.h" #include "repl_msg.h" #include "gtmsource.h" #include "gtmio.h" -#endif GBLREF spdesc stringpool; GBLREF tp_region *grlist; @@ -54,11 +49,9 @@ GBLREF bool online; GBLREF bool error_mupip; GBLREF boolean_t backup_interrupted; -#ifdef UNIX GBLREF backup_reg_list *mu_repl_inst_reg_list; GBLREF jnlpool_addrs jnlpool; GBLREF boolean_t jnlpool_init_needed; -#endif error_def(ERR_FORCEDHALT); @@ -68,12 +61,8 @@ void mubclnup(backup_reg_list *curr_ptr, clnup_stage stage) backup_reg_list *ptr, *next; uint4 status; boolean_t had_lock; -#ifdef VMS - struct FAB temp_fab; -#else unix_db_info *udi; int rc; -#endif assert(stage >= need_to_free_space && stage < num_of_clnup_stage); @@ -134,31 +123,11 @@ void mubclnup(backup_reg_list *curr_ptr, clnup_stage stage) shmpool_unlock_hdr(ptr->reg); } /* get rid of the temporary file */ -#if defined(UNIX) if (ptr->backup_fd > 2) { CLOSEFILE_RESET(ptr->backup_fd, rc); /* resets "ptr" to FD_INVALID */ UNLINK(ptr->backup_tempfile); } -#elif defined(VMS) - temp_fab = cc$rms_fab; - temp_fab.fab$b_fac = FAB$M_GET; - temp_fab.fab$l_fna = ptr->backup_tempfile; - temp_fab.fab$b_fns = strlen(ptr->backup_tempfile); - if (RMS$_NORMAL == (status = sys$open(&temp_fab, NULL, NULL))) - { - temp_fab.fab$l_fop |= FAB$M_DLT; - status = sys$close(&temp_fab); - } - if (RMS$_NORMAL != status) - { - util_out_print("!/Cannot delete the the temporary file !AD.", - TRUE, temp_fab.fab$b_fns, temp_fab.fab$l_fna); - gtm_putmsg(VARLSTCNT(1) status); - } -#else -#error UNSUPPORTED PLATFORM -#endif } else /* defreeze the databases */ region_freeze(ptr->reg, FALSE, FALSE, FALSE); } @@ -178,20 +147,18 @@ void mubclnup(backup_reg_list *curr_ptr, clnup_stage stage) ptr = next; } } - UNIX_ONLY( - /* Release FTOK lock on the replication instance file if holding it */ - assert((NULL == jnlpool.jnlpool_dummy_reg) || (NULL != mu_repl_inst_reg_list) || jnlpool_init_needed); - if ((NULL != mu_repl_inst_reg_list) && (NULL != jnlpool.jnlpool_dummy_reg) && jnlpool.jnlpool_dummy_reg->open) - { - udi = FILE_INFO(jnlpool.jnlpool_dummy_reg); - assert(NULL != udi); - if (NULL != udi) - { - if (udi->grabbed_ftok_sem) - ftok_sem_release(jnlpool.jnlpool_dummy_reg, TRUE, TRUE); - assert(!udi->grabbed_ftok_sem); - } + /* Release FTOK lock on the replication instance file if holding it */ + assert((NULL == jnlpool.jnlpool_dummy_reg) || (NULL != mu_repl_inst_reg_list) || jnlpool_init_needed); + if ((NULL != mu_repl_inst_reg_list) && (NULL != jnlpool.jnlpool_dummy_reg) && jnlpool.jnlpool_dummy_reg->open) + { + udi = FILE_INFO(jnlpool.jnlpool_dummy_reg); + assert(NULL != udi); + if (NULL != udi) + { /* See gv_rundown.c comment for why ftok_sem_release 2nd parameter is FALSE below */ + if (udi->grabbed_ftok_sem) + ftok_sem_release(jnlpool.jnlpool_dummy_reg, FALSE, TRUE); + assert(!udi->grabbed_ftok_sem); } - ) + } return; } diff --git a/sr_port/mucblkini.h b/sr_port/mucblkini.h old mode 100644 new mode 100755 diff --git a/sr_port/mucregini.c b/sr_port/mucregini.c old mode 100644 new mode 100755 diff --git a/sr_port/mucregini.h b/sr_port/mucregini.h old mode 100644 new mode 100755 diff --git a/sr_port/muextr.h b/sr_port/muextr.h old mode 100644 new mode 100755 index 6d35511b..c35ce0b5 --- a/sr_port/muextr.h +++ b/sr_port/muextr.h @@ -1,6 +1,6 @@ /**************************************************************** * * - * Copyright (c) 2001-2015 Fidelity National Information * + * Copyright (c) 2001-2016 Fidelity National Information * * Services, Inc. and/or its subsidiaries. All rights reserved. * * * * This source code contains the intellectual property * @@ -71,14 +71,14 @@ typedef struct uint4 datalen; } mu_extr_stats; -#define MU_EXTR_STATS_INIT(TOT) \ -{ \ - TOT.recknt = TOT.reclen = TOT.keylen = TOT.datalen = 0; \ +#define MU_EXTR_STATS_INIT(TOT) \ +{ \ + (TOT).recknt = (TOT).reclen = (TOT).keylen = (TOT).datalen = 0; \ } #define MU_EXTR_STATS_ADD(DST, SRC) \ { \ - GTM_WHITE_BOX_TEST(WBTEST_FAKE_BIG_EXTRACT, SRC.recknt, (SRC.recknt << 31)); \ + GTM_WHITE_BOX_TEST(WBTEST_FAKE_BIG_CNTS, SRC.recknt, (SRC.recknt << 31)); \ assert((DST.recknt + SRC.recknt) >= DST.recknt); /* overflow check */ \ DST.recknt += SRC.recknt; \ if (DST.reclen < SRC.reclen) \ @@ -121,12 +121,15 @@ typedef struct coll_hdr_struct #define BIN_HEADER_VERSION "6" /* Spanning nodes allow max_rec_len to 7 digits. */ #define BIN_HEADER_LABEL "GDS BINARY EXTRACT LEVEL "BIN_HEADER_VERSION -#define BIN_HEADER_VERSION_ENCR "7" /* Same as 6 but encrypted. */ +#define BIN_HEADER_VERSION_ENCR "7" /* Follow convention of low bit of version indicating encryption. */ #define BIN_HEADER_LABEL_ENCR "GDS BINARY EXTRACT LEVEL "BIN_HEADER_VERSION_ENCR #define BIN_HEADER_VERSION_ENCR_INDEX "8" /* Same as 6 but encrypted and with unconditional encryption handle index. */ #define BIN_HEADER_LABEL_ENCR_INDEX "GDS BINARY EXTRACT LEVEL "BIN_HEADER_VERSION_ENCR_INDEX +#define BIN_HEADER_VERSION_ENCR_IV "9" /* Same as 8 but supporting non-null IVs and two keys as well as blocks with headers. */ +#define BIN_HEADER_LABEL_ENCR_IV "GDS BINARY EXTRACT LEVEL "BIN_HEADER_VERSION_ENCR_IV + #define BIN_HEADER_SZ 100 #define BIN_HEADER_NUMSZ 7 #define BIN_HEADER_DATEFMT "YEARMMDD2460SS" @@ -140,17 +143,16 @@ typedef struct coll_hdr_struct /* the assumption here is - level wont go beyond a single char representation */ #define MAX_BIN_WRT ROUND_DOWN(MAX_RMS_RECORDSIZE, SIZEOF(int)) -char *mu_extr_ident(mstr *a); -void mu_extract(void); -int mu_extr_getblk(unsigned char *ptr, unsigned char *encrypted_buff_ptr); -int find_reg_hash_idx(gd_region *reg); -#if defined(GTM_CRYPT) -boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format, boolean_t is_any_file_encrypted); -#elif defined(UNIX) -boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format); -#else /* VMS */ -boolean_t mu_extr_gblout(glist *gl_ptr, struct RAB *outrab, mu_extr_stats *st, int format); -#endif +#define ENCRYPTED_WITH_HASH1 1 +#define ENCRYPTED_WITH_HASH2 2 +#define NEEDS_ENCRYPTION 3 +#define NEEDS_NO_ENCRYPTION 4 + +char *mu_extr_ident(mstr *a); +void mu_extract(void); +int mu_extr_getblk(unsigned char *ptr, unsigned char *encr_ptr, boolean_t use_null_iv, int *got_encrypted_block); +boolean_t mu_extr_gblout(glist *gl_ptr, mu_extr_stats *st, int format, boolean_t any_file_encrypted, + boolean_t any_file_uses_non_null_iv, int hash1_index, int hash2_index, boolean_t use_null_iv); #define WRITE_BIN_EXTR_BLK(BUFF, BSIZE, WRITE_4MORE_BYTES, CRYPT_INDEX) \ { \ diff --git a/sr_port/mumps.hlp b/sr_port/mumps.hlp old mode 100644 new mode 100755 index 84510ba7..980fe477 --- a/sr_port/mumps.hlp +++ b/sr_port/mumps.hlp @@ -114,7 +114,7 @@ 2 Copyright Copyright - Copyright 1987 - 2003, 2013 - 2015 + Copyright 1987 - 2003, 2013 - 2016 Fidelity Information Services, Inc. All rights reserved. @@ -1164,10 +1164,6 @@ 3 ICU ICU - While GT.M provides a framework for handling characters in Unicode, it - relies on the ICU (International Components for Unicode) library for - language specific information. - ICU is a widely used, defacto standard package (see http://icu-project.org for more information) that GT.M relies on for most operations that require knowledge of the Unicode character sets, such as text boundary detection, @@ -1241,13 +1237,6 @@ variable on Linux) to enable each application to link with its appropriate ICU. -4 Compiling_ICU - Compiling ICU - - To compile ICU, refer to the Compiling ICU Appendix in the GT.M - Administration and Operations Guide and to the release notes of your GT.M - release. - 1 Program_Cycle Program Cycle @@ -1604,7 +1593,7 @@ When used with the -noobject qualifier, the -nowarning qualifier instructs the compiler to produce no object with no indication of the fact or the - cause. + cause of any errors. 4 r[un] r[un] @@ -3084,7 +3073,8 @@ Example: GTM>set x="HOOP",b="x" - GTM>write a="HULA "__@b + GTM>set a="HULA "_@b + GTM>write a HULA HOOP GTM> @@ -4104,21 +4094,27 @@ 4 PASS[CURLVN] PASS[CURLVN] - When a JOB command specifies the PASSCURLVN jobparameter, the new process - inherits the current collation, all locals, aliases, and alias containers - from the JOB'ng process' current stack level. As a result of this, a - ZWRITE issued in the JOB'd process has the same output, except for any out - of scope aliases, as a ZWRITE in the context of the JOB command. If the - JOB command finds a ZWRITE representation of any lvn, consisting of its - full name, its subscripts, corresponding value, quotes and the equal-sign - (=), exceeding 1MiB, it produces a JOBLVN2LONG error in the JOB'ng - process, and a JOBLVNDETAIL error in the JOB'd process's error output - stream. If a JOB command does not specify PASSCURLVN, the JOB'd - process(es) inherits no local variables from the parent, although it can - receive values passed as parameters to an actuallist entryref. While not - an inexpensive command, you can use the "exclusive" NEW command to control - the context passed to the JOB'd process; for example, adding "NEW (LOCALA, - LOCALB)" before the JOB command would pass only LOCALA and LOCALB. + With the PASSCURLVN jobparameter, the JOB'd process inherits the current + collation, local variables, aliases, and alias containers from the current + stack level of the parent process. Therefore, a ZWRITE in the JOB'd + process has the same output, except for any out of scope aliases, as a + ZWRITE in the context of the JOB command. If the JOB command finds a + ZWRITE representation of any lvn, consisting of its full name, its + subscripts, corresponding value, quotes and the equal-sign (=), exceeding + 1MiB, it produces a JOBLVN2LONG error in the parent process, and a + JOBLVNDETAIL error in the error output stream of the JOB'd process. If a + JOB command does not specify PASSCURLVN, the JOB'd process(es) inherits no + local variables from the parent, although it can receive values passed as + parameters to an actuallist entryref. While not an inexpensive command, + you can use the "exclusive" NEW command to control the context passed to + the JOB'd process; for example, adding "NEW (LOCALA,LOCALB)" before the + JOB command would pass only LOCALA and LOCALB. + + If a parameter in the formal list of JOB'ed entryref shares the same name + with a local in the parent process, the parameter passing facility applies + the actuallist in the JOB command argument to the formallist at the + invoked label superseding any local variable passed from the parent + process by the PASSCURLVN option. 4 STA[RTUP]="/path/to/shell/script" STA[RTUP]="/path/to/shell/script" @@ -4906,6 +4902,17 @@ actions, but performing them before the epoch may reduce the duration of these actions within the epoch. +4 FLUSH + FLUSH + + "FLUSH"[:REGION] + + Flushes dirty global buffers from the global buffer pool. If journaling is + turned on, "FLUSH" writes an EPOCH record and flushes dirty journal + buffers prior to flushing dirty global buffers. If no region is specified, + VIEW "FLUSH" flushes all regions in the current global directory that the + GT.M process has opened. + 4 FULL_BOOLEANWARN FULL_BOOLEANWARN @@ -5001,12 +5008,11 @@ JOBPID Enables (value=1) or disables (value=0) the addition of the child process - ID to the output and error filenames generated by the JOB command. The - default is 0. + ID to the output and error file names used (either implicitly generated or + explicitly defined) by the JOB command. The default is 0. - The value=1 option prevents output files generated by the JOB command from - being overwritten each time a new job is spawned from the GT.M source - file. + Using the value=1 option prevents the JOB command from overwriting output + files each time the same JOB command executes. 4 LABELS LABELS @@ -5035,6 +5041,26 @@ The default is VIEW "LINK":"NORECURSIVE". +4 LOGNONTP + LOGNONTP + + Allows a process to dynamically change the logging of NONTPRESTART + messages to the operator log established at process startup by the + environment variables gtm_nontprestart_log_delta and + gtm_nontprestart_log_first. + + VIEW "NOLOGNONTP" turns off the logging of NONTPRESTART messages to the + operator log. + + VIEW "LOGNONTP"[=intexpr] turns on logging of NONTPRESTART messages to the + operator log. If no intexpr is specified, GT.M uses the value of + environment variable gtm_nontprestart_log_delta, if it is defined, and one + otherwise (that is, every transaction restart will be logged). A negative + value of intexpr turns off the logging of NONTPRESTART messages. + + Note that it is not possible to perform the operations of + gtm_nontprestart_log_first with VIEW "LOGNONTP"[=intexpr]. + 4 LOGTPRESTART LOGTPRESTART @@ -6461,7 +6487,7 @@ 2 ZRUPDATE ZRUPDATE - Publishes the new versions of routines to subscribers. THe format of the + Publishes the new versions of routines to subscribers. The format of the ZRUPDATE command is: ZRUP[DATE][:tvexpr] expr [,...] @@ -6469,9 +6495,8 @@ o The optional truth-valued expression immediately following the command is a command postconditional that controls whether or not GT.M executes the command. - o expr contains a object file names, with or without wildcards, for - which ZRUPDATE attempts to publish the new version of routines to - subscribers. + o expr contains a list of object file names, with or without wildcards, + which ZRUPDATE publishes new versions to subscribers. o To remove routines, delete the object files and publish the names of the deleted object files. Removal requires file names to be explicitly specified, because patterns with wildcards cannot match deleted files. @@ -6485,13 +6510,11 @@ directory referred to by $gtm_linktmpdir (defaulting to $gtm_tmp, which in turn defaults to /tmp, if unspecified). The names of these files are of the form gtm-relinkctl where is a hash - of the realpath() to an auto-relink directory. In the field test - software, the permissions are determined by the umask of the process - creating a file. In the production software, FIS intends for the group - and permissions to match those for shared resources as described in - the section Shared Resources Authorization Permissions in Appendix E - (GT.M Security Philosophy) of the UNIX Administration and Operations - Guide. FIS recommends that all processes that share a directory whose + of the realpath() to an auto-relink directory. The group and + permissions match those for the directory as described in the section + Shared Resources Authorization Permissions in Appendix E (GT.M + Security Philosophy) of the UNIX Administration and Operations Guide. + FIS recommends that all processes that share a directory whose contents are subject to ZRUPDATE use the same value for $gtm_linktmpdir so that all processes see update notifications - with different values of $gtm_linktmpdir, a ZRUPDATE by a process with one @@ -6516,12 +6539,13 @@ types of information. A: A stands for Autorelink and provides output in the same format as MUPIP - RCTLDUMP, but restricted to the routines linked by the process issuing the - command. ZSHOW "*" does not include ZSHOW "A" because of an expectation - that the typical volume of the information does not provide a good return - for its value. If you wish your error handling or INTRPT routines to dump - this information, ask for it explicitly, possibly by doing a ZSHOW "A" - into a local variable before doing a ZSHOW "*". + RCTLDUMP, but restricted to the routines contained in the relinkctl areas + in use by the process issuing the command. ZSHOW "*" does not include + ZSHOW "A" because of an expectation that the typical volume of the + information does not provide a good return for its value. If you wish your + error handling or INTRPT routines to dump this information, ask for it + explicitly, possibly by doing a ZSHOW "A" into a local variable before + doing a ZSHOW "*". B: displays active ZBREAK breakpoints @@ -9814,7 +9838,7 @@ Example: GTM>Set $piece(x,$zchar(64),25)="" write x - ???@@@@@@@@@@@@@@@@@@@@@@@@ + @@@@@@@@@@@@@@@@@@@@@@@@ This SETs the 25th piece of the variable x to null, with delimiter $ZCHAR(64). This produces a byte sequence of 24 at-signs (@) preceding the @@ -9960,86 +9984,133 @@ change the index for a socket. +------------------------------------------------------------------------+ - | Keyword | Arguments | Returns | - |---------------+------------+-------------------------------------------| - | CURRENTINDEX | | The index (starting at zero) of the | - | | | current socket for the SOCKET device. | - |---------------+------------+-------------------------------------------| - | | | If only index is specified, the number of | - | | | delimiters. | - | DELIMITER | index[, | | - | | delimiter] | If delimiter is also specified, selects | - | | | which delimiter to return. The first | - | | | delimiter is zero. | - |---------------+------------+-------------------------------------------| - | DESCRIPTOR | index | The OS socket descriptor for the socket. | - |---------------+------------+-------------------------------------------| - | | | LISTEN, CONNECT, ACCEPTED, PRINCIPAL, or | - | | | PASSED | - | | | | - | HOWCREATED | index | PRINCIPAL indicates that the socket is | - | | | the $PRINCIPAL of the process. | - | | | | - | | | PASSED indicates a socket passed by WRITE | - | | | /ACCEPT. | - |---------------+------------+-------------------------------------------| - | INDEX | handle | The current index of the socket named by | - | | | handle. | - |---------------+------------+-------------------------------------------| - | IOERROR | index | 1 if IOERROR=TRAP otherwise 0. | - |---------------+------------+-------------------------------------------| - | | | The address of the local side of the | - | LOCALADDRESS | index | socket. For TCP sockets: the IPv4 or IPv6 | - | | | numeric address. For LOCAL sockets: the | - | | | path. | - |---------------+------------+-------------------------------------------| - | LOCALPORT | index | The numeric port of the local side of a | - | | | TCP socket. | - |---------------+------------+-------------------------------------------| - | | | The value of the MOREREADTIME device | - | MOREREADTIME | index | parameter if it was specified, otherwise | - | | | an empty string. | - |---------------+------------+-------------------------------------------| - | NUMBER | | The number of sockets in the SOCKET | - | | | device. | - |---------------+------------+-------------------------------------------| - | | | If the socket was created from a | - | PARENT | index | LISTENing socket: the handle of the | - | | | LISTENing socket. | - |---------------+------------+-------------------------------------------| - | PROTOCOL | index | TCP, TCP6, or LOCAL | - |---------------+------------+-------------------------------------------| - | | | The address of the remote side of the | - | REMOTEADDRESS | index | socket. For TCP sockets: the IPv4 or IPv6 | - | | | numeric address. For LOCAL sockets: the | - | | | path. | - |---------------+------------+-------------------------------------------| - | REMOTEPORT | index | The numeric port of the remote side of a | - | | | TCP socket. | - |---------------+------------+-------------------------------------------| - | SOCKETHANDLE | index | The handle for the selected socket. | - |---------------+------------+-------------------------------------------| - | STATE | index | One of LISTENING, CONNECTED, BOUND, or | - | | | CONNECTINPROGRESS | - |---------------+------------+-------------------------------------------| - | | | If the selected socket is using TLS, a | - | | | string of the form: | - | TLS | index | 1,{SERVER|CLIENT}[,tlsid], where the | - | | | optional tlsid comes from the WRITE /TLS | - | | | which enabled TLS on the socket; | - | | | otherwise an empty string. | - |---------------+------------+-------------------------------------------| - | ZBFSIZE | index | Size of the GT.M buffer in bytes. | - |---------------+------------+-------------------------------------------| - | ZFF | index | The value of the ZFF device parameter. | - |---------------+------------+-------------------------------------------| - | ZIBFSIZE | index | Size of the OS buffer in bytes | - | | | (SO_RCVBUF). | - |---------------+------------+-------------------------------------------| - | ZDELAY | index | 1 if Nagle algorithm enabled, otherwise | - | | | 0. | + | Keyword | Arguments | Returns | + |---------------+---------------+----------------------------------------| + | CURRENTINDEX | | The index (starting at zero) of the | + | | | current socket for the SOCKET device. | + |---------------+---------------+----------------------------------------| + | | | If only index is specified, the number | + | | | of delimiters. | + | DELIMITER | index[, | | + | | delimiter] | If delimiter is also specified, | + | | | selects which delimiter to return. The | + | | | first delimiter is zero. | + |---------------+---------------+----------------------------------------| + | DESCRIPTOR | index | The OS socket descriptor for the | + | | | socket. | + |---------------+---------------+----------------------------------------| + | | | LISTEN, CONNECT, ACCEPTED, PRINCIPAL, | + | | | or PASSED | + | | | | + | | | ACCEPTED indicates a connection | + | | | created from a LISTENing socket. | + | HOWCREATED | index | | + | | | PRINCIPAL indicates that the socket is | + | | | the $PRINCIPAL of the process. | + | | | | + | | | PASSED indicates a socket passed by | + | | | WRITE /ACCEPT. | + |---------------+---------------+----------------------------------------| + | INDEX | handle | The current index of the socket named | + | | | by handle. | + |---------------+---------------+----------------------------------------| + | IOERROR | index | 1 (TRUE) if IOERROR=TRAP otherwise 0 | + | | | (FALSE). | + |---------------+---------------+----------------------------------------| + | | | The address of the local side of the | + | LOCALADDRESS | index | socket. For TCP sockets: the IPv6 or | + | | | IPv4 numeric address. For LOCAL | + | | | sockets: the path. | + |---------------+---------------+----------------------------------------| + | LOCALPORT | index | The numeric port of the local side of | + | | | a TCP socket. | + |---------------+---------------+----------------------------------------| + | | | The value of the MOREREADTIME device | + | MOREREADTIME | index | parameter if it was specified, | + | | | otherwise an empty string. | + |---------------+---------------+----------------------------------------| + | NUMBER | | The number of sockets in the SOCKET | + | | | device. | + |---------------+---------------+----------------------------------------| + | | | If the socket was created from a | + | PARENT | index | LISTENing socket: the handle of the | + | | | LISTENing socket. | + |---------------+---------------+----------------------------------------| + | PROTOCOL | index | TCP, TCP6, or LOCAL | + |---------------+---------------+----------------------------------------| + | | | The address of the remote side of the | + | REMOTEADDRESS | index | socket. For TCP sockets: the IPv6 or | + | | | IPv4 numeric address. For LOCAL | + | | | sockets: the path. | + |---------------+---------------+----------------------------------------| + | REMOTEPORT | index | The numeric port of the remote side of | + | | | a TCP socket. | + |---------------+---------------+----------------------------------------| + | SOCKETHANDLE | index | The handle for the selected socket. | + |---------------+---------------+----------------------------------------| + | STATE | index | One of LISTENING, CONNECTED, BOUND, or | + | | | CONNECTINPROGRESS | + |---------------+---------------+----------------------------------------| + | | | If the selected socket is using TLS, a | + | | | string of the form: | + | | | 1,{SERVER|CLIENT}[,tlsid], where the | + | | | optional tlsid comes from the WRITE | + | TLS | index[,expr4] | /TLS which enabled TLS on the socket; | + | | | otherwise an empty string. See the | + | | | following table for a description of | + | | | all options for the fourth expression | + | | | for the TLS keyword. | + |---------------+---------------+----------------------------------------| + | ZBFSIZE | index | Size of the GT.M buffer in bytes. | + |---------------+---------------+----------------------------------------| + | ZFF | index | The value of the ZFF device parameter. | + |---------------+---------------+----------------------------------------| + | ZIBFSIZE | index | Size of the OS buffer in bytes | + | | | (SO_RCVBUF). | + |---------------+---------------+----------------------------------------| + | ZDELAY | index | 1 if Nagle algorithm enabled, | + | | | otherwise 0. | +------------------------------------------------------------------------+ + The following table describes the values for the fourth expression for the + TLS keyword. + + +-----------------------------------------------------------------------------------------------+ + | expr4 | Description | + | (TLS) | | + |-------+---------------------------------------------------------------------------------------| + | |Returns information related to SSL sessions including information about renegotiations.| + | |Here is an example: | + | | | + | ||S:RENSEC:1,RENTOT:1,SESSID:, SESEXP:Thu Jun 4 21:07:11 2015 | + |SESSION| | + | |"|S:" denotes this piece contains session information, "RENSEC:" indicates whether | + | |secure renegotiation is available (1) or not (0), "RENTOT:" gives the current total | + | |number of renegotiations done on this socket, "SESSID:" shows the session id in | + | |hexadecimal, and "SESEXP:" indicates when the session expires respresented as time in | + | |the local time zone. | + |-------+---------------------------------------------------------------------------------------| + | |the hexadecimal representation of the ssl-options selected by the combination of the | + | |OpenSSL defaults, options set by the GT.M TLS plugin, and options specified in the | + | |gtmcrypt_config configuration file prefixed by "O:", a comma, and the verify mode as | + | |two hexadecimal digits. Here is an example: | + |OPTIONS| | + | ||O:0000000001520004,01 | + | | | + | |The values for the SSL_OP options and verify modes are defined in the | + | |include/openssl/ssl.h file provided by the OpenSSL development package. | + |-------+---------------------------------------------------------------------------------------| + | |The SSL protocol version prefixed by "P:" and the algorithm negotiated between the | + |CIPHER |server and client prefixed by "C:". Here is an example: | + | | | + | ||P:TLSv1.2|C:DHE-RSA-AES256-SHA | + |-------+---------------------------------------------------------------------------------------| + | |returns all available information. Here is an example: | + |ALL | | + | ||P:TLSv1.2|C:AES256-GCM-SHA384|O:0000000001020004,01|S:RENSEC:1,RENTOT:0,SESEXP:Mon Jun| + | |22 23:58:09 2015 | + +-----------------------------------------------------------------------------------------------+ + 2 $ZSYSLOG() $ZSYSLOG() @@ -10421,12 +10492,42 @@ 2 $ZWRite() $ZWRite() - Takes a single expression argument and returns that expression with the - non-graphic characters represented in the $CHAR() format used by the - ZWRITE command. Note that the non-graphic characters differ between M mode - and UTF-8 mode. The format of the $ZWRITE function is: - - $ZWRITE(expr) + Converts its first string argument to or from ZWRITE format (quoted + graphics characters concatenated with $CHAR() representations of any + non-graphic characters). The second integer expression controls the + direction of conversion. The format of the $ZWRITE() function is: + + $ZWRITE(expr[,intexpr]) + + o The first expression specifies the string to convert to or from the + ZWRITE format. + o The second integer expression specifies the direction of conversion. + When intexpr is not specified or evaluates to zero, $zwrite() converts + the first argument to the ZWRITE format. When intexpr evaluates to a + non-zero value, $ZWRITE() treats the first argument as being in ZWRITE + format and attempts to convert it to a string with embedded + non-graphic characters; if it is not in ZWRITE format, it returns an + empty string. + o Converting to zwrite format tends to produce a string that is longer + than the input and therefore a $ZWRITE() result may exceed the maximum + string length - the maximum input length that is guaranteed not to do + so is a 116,510 byte string. + o If all its arguments are literals, $ZWRITE() evaluates to a literal + constant at compile time. + o Note that non-graphic characters differ between M mode and UTF-8 mode. + + Example: + + GTM>set temp="X"_$char(10)_"X" ; $CHAR(10) is the linefeed character + GTM>write temp + X + X + GTM>write $zwrite(temp) + "X"_$C(10)_"X" + GTM>write $zwrite($zwrite(temp),1) + X + X + GTM> 1 ISV ISV @@ -11351,10 +11452,10 @@ Attempting to restore an inaccessible initial Global Directory that has been NEW'd, can cause an error. -2 ZHorolog - ZHorolog +2 $ZHorolog + $ZHorolog - ZH[OROLOG] returns 4 comma-separated pieces (for example, + $ZH[OROLOG] returns 4 comma-separated pieces (for example, "63638,39194,258602,14400"). The first two pieces are identical to the two pieces of $HOROLOG. $ZHOROLOG is a drop-in replacement for $HOROLOG in all application code of the form $PIECE($HOROLOG,",",...). For example, @@ -12650,8 +12751,8 @@ $ZUT (UNIX time or universal time) returns the number of microseconds since January 1, 1970 00:00:00 UTC, which provides a time stamp for directly comparing different timezones. $ZUT accuracy is subject to the - precision of the system clock. $ZH[OROLOG] returns 4 comma-separated - numbers (for example, "63638,39194,258602,14400"). + precision of the system clock (use man gettimeofday from the UNIX shell + for more information). 2 $ZVersion $ZVersion @@ -14281,10 +14382,8 @@ o If a numeric targetpid is specified, GT.M matches the value against the process id ($JOB) of the process receiving the sockets. GT.M uses a system service to perform this check on platforms that support it - - currently: Linux, AIX, and Solaris. On platforms which do not - implement the service (HP-UX), GT.M ignores the targetpid. If the pids - do not match, GT.M issues a PEERPIDMISMATCH error and does not - transfer the sockets. + currently: Linux, and AIX. If the pids do not match, GT.M issues a + PEERPIDMISMATCH error and does not transfer the sockets. o If a numeric timeout is specified, GT.M sets $TEST to 1 if the transfer completes within the specified time, and otherwise sets $TEST to 0 and does not transfer any of the sockets. @@ -14308,10 +14407,9 @@ so the process can ATTACH them to an appropriate SOCKET device for subsequent use. o If a numeric sourcepid is specified, GT.M matches the value against - the process id ($JOB) of the process sending the sockets. On platforms - which do not implement the service (HP-UX), GT.M ignores the - targetpid. If the pids do not match, GT.M issues a PEERPIDMISMATCH - error and does not transfer the sockets. + the process id ($JOB) of the process sending the sockets. If the pids + do not match, GT.M issues a PEERPIDMISMATCH error and does not + transfer the sockets. o If a numeric timeout is specified, GT.M sets $TEST to 1 if the transfer completes within the specified time, and otherwise sets $TEST to 0 and does not transfer the sockets. @@ -14451,19 +14549,13 @@ +------------------------------------------------------------------------+ | Socket Establishment/Disconnect Deviceparameters | |------------------------------------------------------------------------| - | DEVICEPARAMETER | COMMAND | COMMENT | - |-------------------+---------+------------------------------------------| - | CONNECT=strexpr | O/U | strexpr specifies protocol, and protocol | - | | | specific information | - |-------------------+---------+------------------------------------------| - | LISTEN=strexpr | O/U | Similar to CONNECT but binds the socket | - | | | for subsequent /LISTEN and /WAIT | - |-------------------+---------+------------------------------------------| - | ZBUFSIZE=intexpr | O/U | Allocates a buffer used by GT.M when | - | | | reading from a socket. | - |-------------------+---------+------------------------------------------| - | ZIBUFSIZE=intexpr | O/U | Sets the buffer size used by the network | - | | | software (setsockopt SO_RCVBUF). | + | DEVICEPARAMETER | COMMAND | COMMENT | + |------------------+---------+-------------------------------------------| + | ZBFSIZE =intexpr | O | Allocates a buffer used by GT.M when | + | | | reading from a socket. | + |------------------+---------+-------------------------------------------| + | ZIBFSIZE=intexpr | O | Sets the buffer size used by the network | + | | | software (setsockopt SO_RCVBUF). | +------------------------------------------------------------------------+ 3 Socket_Device_Examples @@ -15074,6 +15166,9 @@ This example opens a socket connection and specifies that I/O errors on the device raises error conditions. + If $LENGTH(strexpr)&("Tt"[$EXTRACT(strexpr)) then Error Trapping is + enabled; otherwise the application must check $DEVICE for errors. + 5 KEY KEY @@ -15442,7 +15537,8 @@ Overrides the default record size for a disk. - If the character set is M, RECORDSIZE specifies the initial WIDTH. + RECORDSIZE specifies an initial WIDTH. Note because RECORDSIZE is in bytes + that in UTF-8 mode it produces a WIDTH that assumes one-byte characters. The RECORDSIZE of a fixed length record for a GT.M sequential disk device is always specified in bytes, rather than characters. @@ -15911,15 +16007,14 @@ 5 ZIBFSIZE ZIBFSIZE - ZIBFSIZE Applies to: SOC(TCP) + ZIBFSIZE Applies to: SOC - ZIBFSIZE Applies to: Socket Device(TCP) + ZIBFSIZE Applies to: Socket Device - Allocates a buffer used by GT.M when reading from a socket. The ZBFSIZE - deviceparameter should be at least as big as the largest message expected. + Sets the buffer size used by the network software (setsockopt SO_RCVBUF). - By default, the size of ZBFSIZE is 1024 and the maximum it can be is - 1048576. + The default and the maximum values depend on the platform and/or system + parameters. Note that LOCAL sockets ignore the ZIBFSIZE deviceparameter. @@ -16570,6 +16665,9 @@ This example enables exception handling in socket device sock and specifies that all I/O errors on sock raise the error condition. + If $LENGTH(strexpr)&("Tt"[$EXTRACT(strexpr)) then Error Trapping is + enabled; otherwise the application must check $DEVICE for errors. + 5 KEY KEY @@ -16861,7 +16959,7 @@ Device, PIPE, and Sequential Files Sets the device's logical record size and enables WRAP. The default WIDTH - for SD and FIFO is taken from the RECORDSIZE. + for SOC, SD and FIFO is taken from the RECORDSIZE. NOWRAP and WIDTH supersede each other. When WIDTH and NOWRAP appear together on the same USE command, the final one controls the device @@ -16874,9 +16972,9 @@ For SD and SOC which support 1MB strings, you can specify WIDTH up to 1,048,576. - In UTF-8 mode and TRM, SD, and FIFO output, the WIDTH deviceparameter is - in units of display-columns and is used with $X to control truncation and - WRAPing for output and maintenance of $X and $Y for input. + In UTF-8 mode and TRM, SOC, SD, and FIFO output, the WIDTH deviceparameter + is in units of display-columns and is used with $X to control truncation + and WRAPing for output and maintenance of $X and $Y for input. In UTF-8 mode and SOC, the WIDTH deviceparameter is in units of Unicode code points and is used with $X to control truncation and wrapping for @@ -16884,8 +16982,8 @@ In M mode if WIDTH is set to 0, GT.M uses the default WIDTH of the TRM and SOC devices. USE x:WIDTH=0 is equivalent to USE - x:(WIDTH=:NOWRAP. For SD and FIFO devices in M mode, the - device default is the RECORDSIZE. + x:(WIDTH=:NOWRAP. For SOC, SD and FIFO devices in M mode, + the device default is the RECORDSIZE. GT.M format control characters, FILTER, and the device WIDTH and WRAP also have an effect on $X. @@ -17029,6 +17127,8 @@ The default and the maximum values depend on the platform and/or system parameters. + Note that LOCAL sockets ignore the ZIBFSIZE deviceparameter. + 4 Summary Summary @@ -17577,8 +17677,7 @@ Create Shareable Library The method of creating a shareable library varies by the operating system. - The following examples illustrate the commands to be used on an HP-UX - system, a Hewlett-Packard UNIX system, and an IBM pSeries (formerly + The following examples illustrate the commands on an IBM pSeries (formerly RS/6000) AIX system. Example: @@ -17596,32 +17695,6 @@ return 0; } - On HP-UX: - - Example: - - $ cc -Aa -c +z -I$gtm_dist increment.c - decrement.c - $ ld -b -o libcrement.sl increment.o - decrement.o -lc - - **Note** - - Refer to the "Programming on HP-UX" manual for information on shareable - libraries under HP-UX. - - On Hewlett-Packard Tru64 UNIX: - - Example: - - $ cc -c -xtaso -xtaso_short -I$gtm_dist increment.c decrement.c - $ ld -shared -taso -o libcrement.sl increment.o derement.o -lc - - **Note** - - Refer to the "Tru64 Programmer's Guide" for information on shareable - libraries under HP UNIX. - On IBM pSeries AIX: Example: @@ -17634,13 +17707,6 @@ Refer to the AIX V4.2 documentation of the ld(1) AIX command for information on shareable libraries under AIX V4.2. - On Sun Solaris (Solaris 2.6 & higher): - - Example: - - %/opt/SUNWspro/bin/cc -c -KPIC -I$gtm_dist increment.c decrement.c - % ld -o libcrement.so -G increment.o decrement -lc - On Linux x86: Example: @@ -17690,8 +17756,7 @@ upon returning to M. gtm_long_t : 32-bit signed integer on 32-bit platforms and 64-bit signed - integer on 64-bit platforms (except on Tru64 UNIX where GT.M remains a - 32-bit application). + integer on 64-bit platforms. gtm_ulong_t : 32-bit unsigned integer on 32-bit platforms and 64-bit signed integer on 64-bit platforms. @@ -18274,7 +18339,7 @@ **Note** .so is the recognized shared library file extension on most UNIX - platforms, except on HP-UX, wherein it is .sl. + platforms. 2. mumps - The GT.M startup program that dynamically links with libgtmshr.so. @@ -18305,8 +18370,7 @@ |--------------+---------------------------------------------------------| | | gtm_long_t has 32-bit length on 32-bit platforms and | | gtm_long_t | 64-bit length on 64-bit platforms. It is much the same | - | | as the C language long type, except on Tru64 UNIX, | - | | where GT.M remains a 32-bit application. | + | | as the C language long type. | |--------------+---------------------------------------------------------| | gtm_ulong_t | gtm_ulong_t is much the same as the C language unsigned | | | long type. | @@ -18330,9 +18394,8 @@ gtm_char_t* address; } gtm_string_t; - The pointer types defined above are 32-bit addresses on all 32-platforms - (including Tru64 UNIX where GT.M remains a 32-bit application). For other - 64-bit platforms, gtm_string_t* is a pointer is a 64-bit address. + The pointer types defined above are 32-bit addresses on all 32-bit + platforms. For 64-bit platforms, gtm_string_t* is a 64-bit address. gtmxc_types.h also provides an input-only parameter type gtm_pointertofunc_t that can be used to obtain call-back function pointers @@ -18352,7 +18415,8 @@ void gtm_hiber_start(gtm_uint_t mssleep); void gtm_hiber_start_wait_any(gtm_uint_t mssleep) - void gtm_start_timer(gtm_tid_t tid, gtm_int_t time_to_expir, void (*handler)(), gtm_int_t hdata_len, void \*hdata); + void gtm_start_timer(gtm_tid_t tid, gtm_int_t time_to_expir, void (*handler)(), gtm_int_t hdata_len, void \ + *hdata); void gtm_cancel_timer(gtm_tid_t tid); where: @@ -18408,7 +18472,7 @@ only types allowed are pointer types and void. Void cannot be specified as parameter. - : is a valid parameter type. Empty parenthese must be + : is a valid parameter type. Empty parentheses must be specified if no argument is passed to The indicates the type of operation that GT.M performs on the @@ -19878,8 +19942,14 @@ The compile-time error message format consists of three lines. The first two lines tell you the line and location where the error occurred. The - last line describes the M syntax error. If you requested a listing file, - it contains the same information and looks as follows: + last line describes the M syntax error. The positioning accuracy of the + carat pointing to the location of an issue in a source line depends on + your terminal settings, particularly in UTF-8 mode where character widths + are not uniform. If the line exceeds the terminal width as understood by + GT.M, it replaces the carat line with an ARROWNTDSP error. + + If you requested a listing file, it contains the same information and + looks as follows: . . @@ -20721,3 +20791,379 @@ region-disambiguator identifies a region which holds a trigger that is not mapped by $ZGBLDIR, these features treat the trigger as not found. +Appendix A. M Coding Standards - Do's and Don'ts + +2 M_Coding_Standards_-_Do's_and_Don'ts + M Coding Standards - Do's and Don'ts + + M coding standards help: + + o Improve quality and maintainability by producing uniform standardized + code. + o Aid in readability and comprehension of developed source code by + providing an unambiguous, easy to read standard to follow. + o Avoid common errors that would not be picked up by a compiler by using + these as a framework for good coding practices. + o Provide an objective reference point for the code authors, + maintainers, and reviewers. + +3 Do's + Do's + + Character Set + + Construct literal strings using only graphic ASCII characters . + For non-graphic characters, use the $CHAR() or $ZCHAR() functions + to build strings, use a resource file, or build them from comments + in the source code using $TEXT(). + + Use VIEW "BADCHAR" in production environments. + + Internationalization + + Use standard M functions - $ASCII(), $CHAR(), $EXTRACT(), $FIND(), + $JUSTIFY(), $LENGTH(), $PIECE(), and $TRANSLATE() - for + character-oriented operations. Use analogous byte-oriented + functions - $ZASCII(), $ZCHAR(), $ZEXTRACT() / $ZSUBSTR(), + $ZFIND(), $ZJUSTIFY(), $ZLENGTH(), $ZPIECE(), and $ZTRANSLATE() + when the logic calls for byte, rather than character operations. + Use $ZSUBSTR() to ensure the byte-oriented operation produces a + valid character result and $ZEXTRACT() when the operation is + strictly byte-oriented, with no character implications. + + Use $ZCONVERT() rather than $TRANSLATE() / $ZTRANSLATE() for case + conversion. + + Alias Variables and Containers + + Use Alias Variables and Containers where they promote modularity + and an appropriate object-like approach. + + Parameter Passing + + Use parameter passing to minimize scoping risk and to implicitly + document [sub]routine interfaces. Place variables that are + optionally passed at the end of the parameter list. Choose + pass-by-reference variable names for clarity and to avoid side + effects. Note that using the same name in the actuallist and the + formallist may have implications. + + Naked References + + Avoid naked references except when they reduce the width of the + line and materially improve readability. In such cases, ensure any + naked references follows the full reference, on the same line with + no intervening invocation of other code. + + Entryrefs + + Use the top entryref for invocation from the shell rather than + from another routine. Where there is a risk of inadvertent + execution from the shell of a routine intended only to be called + from M code, protect the top entryref with code that uses $STACK + to validate whether or not it is invoked from the shell. Existing + utility routines with interfaces documented as not requiring a + label are exempt from this requirement. + + Lines with multiple commands + + Use lines with multiple, related commands to improve readability + as long as they are not too long. Avoid lines with multiple, + unrelated commands. + + Lines Width + + Limit lines to no wider than 132 columns. + + **Note** + + The line oriented nature of M means that sometimes a single long + line can be more readable than a block of code. Such occasional + long lines are permissible where so justified. + + Error Handling + + All product code must have an error trap. Unless the intent of the + code is to invoke Direct Mode, the error handler must never use a + BREAK explicitly or implicitly to do so. The base error handler in + a program suite, and possibly some other error handlers, must + provide a way to appropriately preserve the context of + unpredictable errors. + + New code should generally use $ETRAP error handling rather than + $ZTRAP error handling. As changing error handling can be risky + (for example, indirect references in databases), retain error + handling in existing code unless you have tested and verified the + safety of the change. + + Transaction Processing + + Except for tests, code transactions as restartable, avoid + non-Isolated actions (BREAK, JOB, LOCK ZSYSTEM or I/O) within + transactions; minimize transaction size, use TRANSACTION="BATCH" + for better performance where the solution doesn't require strong + Durability or provides Durability with application logic. When + LOCKs are appropriate, place them outside the transaction. + + BREAK + + To prevent applications from inadvertently falling into direct + mode, only use the BREAK command when there is a specific + requirement for its use. When circumstances require BREAK commands + more persistent than those placed with ZBREAK, or in places within + lines, conditionalize them on a debug setting, for example + BREAK:($get(debug)&()). + + Argumentless Do + + This language construct provides a way to code an embedded + subroutine, which stacks $TEST - something extrinsic functions + ($$) also do, but DO with an entryref argument does not. It also + provides some relief from the line-oriented structure of the + language, albeit at some cost. + + When the logic calls for multiple invocations of a subroutine + avoid using multiple copies of the same argumentless DO body. + + Leave a space between the last level indicator (li) and the first + command or a comment delimiter. + + Be careful with level indicators, as any reduction in number, even + for a comment, terminates one or more levels. + + GOTO and ZGOTO + + Except for handling logic to effect an exit from nested logic and + nested function calls or where appropriate in test code, avoid the + use of GOTO and ZGOTO commands. When using these commands outside + of test code, you must include a comment explaining why such use + works better than any refactoring that would eliminate the + [Z]GOTO. + + HALT, QUIT, and HALT + + Choose QUIT, rather than HALT, to terminate a routine, unless + there is a clear requirement to the contrary. + + Account for the difference in QUIT from a FOR, which does not + change the stack level of the M virtual machine and QUIT from a + [sub]routine which does change the stack level. This may require + the use of a state flag to terminate a FOR that invokes a + subroutine. + + Choose the argumentless (which requires a following double space) + or value form of QUIT as appropriate. When a subroutine can be + invoked with either a DO or extrinsic ($$), explicitly code the + alternative exits, rather than relying on a setting of + $ZQUIT_ANYWAY. + + QUIT at the end of a [sub]routine is required unless the + [sub]routine ends in a HALT. QUIT at the end of an argumentless DO + level is optional. + + Use ZHALT to return an invocation to the shell that the + termination is abnormal. + + LOCK, ZALLOCATE, and ZDEALLOCATE + + Always specify a timeout on LOCK or LOCK+ commands. + + Use a protocol for resource name order to minimize deadlocks. Use + the standard incremental LOCK (+/-), rather than ZALLOCATE and + ZDEALLOCATE. + + NEW + + Minimize use of argumentless and exclusive NEW except to satisfy + requirements. These variants may be appropriate at the beginning + of the base routine of an application. + + READ + + Always use a timeout, except when READing from a file in NOFOLLOW + mode. Except when collecting raw or externally validated data, + READ into a local variable and validate that the value is + appropriate - check for length, range, delimiters and any value + restrictions. Always validate input before using it in ways that + assume it meets expectations; this is critical when using it in + indirection or XECUTE, or storing it durably in a global variable. + + SET + + When setting several nodes to the same value, specify a list of + names within parentheses, rather than separately, e.g., SET + (A,B,C)=0 vs. SET A=0,B=0,C=0. + + XECUTE, Indirection, $ZSYSTEM and PIPE device commands + + To minimize run-time errors and prevent out-of-design user induced + outcomes, ensure strings for use by the indirection operator, the + XECUTE command, the ZSYSTEM command and PIPE device commands are + valid, either by program design and implementation, or by + validating the value prior to use. + + Else + + Use ELSE with care. Because GT.M stacks $TEST only at the + execution of an extrinsic or an argumentless DO command, any + XECUTE or DO with an argument has the potential side effect of + altering $TEST. + + Post conditionals + + When conditionalizing a single command or transfer of control + argument, and there is no need to set $TEST, use postconditionals, + as they provide a slight performance advantage and tend to improve + readability by tying the condition closely to the action. For + example, choose SET: over IF SET. + + $ZDATA() and $DATA() + + Use $ZDATA() rather than $DATA() unless the logic needs to ignore + alias implications. + + $Increment + + You may use an IF to discard the result of INCREMENT() in order to + take advantage of the INCREMENT() side-effect. + + $Next + + Use $ORDER() rather than $NEXT(), which is deprecated. + + $Piece() + + If using a piece of data more than once, extract the data to a + local variable for reuse, rather than using repeated invocations + of $PIECE() to extract the same piece of data. + + $Random() + + $RANDOM(1) always returns 0 and so is never appropriate. Adjust + $RANDOM() results with appropriate arithmetic to achieve the + desired range. + + $ZPREVIOUS() + + Use the standard $ORDER(x,-1), rather than $ZPREVIOUS(x). + + $ETrap vs. $ZTRAP + + Use $ETRAP rather than $ZTRAP unless there are good reasons not + to. + + $KEY vs. $ZB + + Use $KEY rather than $ZB, unless code must run on old versions of + GT.M which do not maintain $KEY for the target device. + + $STack vs. $ZLEVEL + + Use $STACK rather than $ZLEVEL, unless it eliminated arithmetic or + existing uses of $ZLEVEL are so numerous as to make a change high + risk. + + $ZCMDLINE + + Validate all input from $ZCMDLINE as if it were from a READ for + user input. + + Extrinsic Functions and Special Variables ($$) + + When a subroutine needs to return a single value or an an array of + values, choose an Extrinsic invocation over a DO in order to + minimize scoping risks. + + Triggers + + While GT.M does not restrict trigger code from performing I/O + operations, avoid using OPEN, USE, READ, WRITE and CLOSE within + trigger application code. Such operations may be useful for + development and diagnostic purposes. Triggers implicitly run as TP + transactions and I/O violates the ACID property of Isolation , as + do JOB, LOCK, ZSYSTEM and external calls. ($&) . + + Use comprehensive and strong coding conventions for trigger code + or rely on user-specified names in managing the deletion and + replacement of triggers. + + Except when using triggers for debugging, use journaling any + region that uses triggers. + + Call-in/Call-outs + + Use gtm_malloc/gtm_free in the external functions for enhanced + performance and better debugging capability in case memory + management problems occur with external calls. + + Use gtm *t types defined in gtmxc_types.h be used instead of the + native types (int, float, char, etc) to avoid potential size + mismatches with the parameter types. + + Autorelink + + Either auto-relink-enable or auto-relink-disable the directory in + the $zroutines for the life of the process. + + Use the same value of $gtm_linktmpdir for all processes. All + processes that share a directory whose contents are subject to + ZRUPDATE use the same value for $gtm_linktmpdir so that all + processes see update notifications - with different values of + $gtm_linktmpdir, a ZRUPDATE by a process with one value of + $gtm_linktmpdir would not be observed by a process with a + different value of that environment variable. + +3 Don'ts + Don'ts + + Source and Object Files + + Never change the name of an object file. + + When forming routine names, the compiler truncates object + filenames to a maximum length of 31 characters. For example, for a + source file called Adatabaseenginewithscalabilityproven.m the + compiler generates an object file called + Adatabaseenginewithscalabilityp.o. Never let GT.M routines file + names exceed 31 characters. + + kill -9 + + Don't killing a process with kill -9 and it may cause database + damage. Use MUPIP STOP or MUPIP INTRPT instead. Use kill -9 as the + last resort if the process does not respond to MUPIP STOP. kill -9 + terminates the process abruptly and may leave database files + improperly closed and require a MUPIP RUNDOWN. Because kill -9 may + cause database damage, perform a MUPIP INTEG immediately after a + kill -9. + + Operate as root + + Never run a routine as root. + + Other than GT.M installation, never perform any GT.M operation as + root. + + Triggers + + Never use chained and nested triggers that potentially update the + same piece of a global variable. You should always assess the + significance of having chained triggers for a database update + especially because of the arbitrary trigger execution order. + + Never access ^#t with DSE, except with guidance from your GT.M + support channel. Manage trigger definitions with MUPIP TRIGGER and + $ZTRIGGER(). + + Local variables + + Never use exponential numeric form in the subscripts. It may lead + to ambiguities. Because numeric subscripts collate ahead of string + subscripts, the string subscript "01E5" is not the same as the + numeric subscript 01E5. + + Never SET $ZWRTACn "variables". They are used by GT.M to make + ZWRITE output more useful but are not supported for any other + purpose. They are only mentioned here because you may see them in + the output of ZWRITE and ZSHOW "V". + diff --git a/sr_port/mupfndfil.c b/sr_port/mupfndfil.c old mode 100644 new mode 100755 diff --git a/sr_port/mupint.h b/sr_port/mupint.h old mode 100644 new mode 100755 diff --git a/sr_port/mupip.hlp b/sr_port/mupip.hlp old mode 100644 new mode 100755 index 44a5b99c..56ee7b1f --- a/sr_port/mupip.hlp +++ b/sr_port/mupip.hlp @@ -147,7 +147,6 @@ -BK[UPDBJNL]={DISABLE|OFF}] -B[YTESTREAM] [-NET[TIMEOUT]] -DA[TABASE] - -DBG -[NO]NEWJNLFILES[=[NO]PREVLINK],[NO]S[YNC_IO]] -O[NLINE] -REC[ORD] @@ -693,6 +692,15 @@ criteria for your database, refer to the release notes document of your current GT.M version. + **Note** + + You must perform a GT.M database integrity check using the -noonline + parameter prior to downgrading a database. The integrity check verifies + and clears database header fields required for an orderly downgrade. If an + integrity check is not possible due to time constraints, please rely on a + rolling upgrade scheme using replication and / or take a backup prior to + upgrading the database. + 3 Examples Examples @@ -894,8 +902,14 @@ | 1-2 | Hexadecimal representation of the length of the label | | | (by default 64 - decimal 100). | |------------+-------------------------------------------------------| - | 3-28 | Fixed-length ASCII text: "GDS BINARY EXTRACT LEVEL | - | | 6". | + | | Fixed-length ASCII text containing: | + | | | + | | o "GDS BINARY EXTRACT LEVEL 6": when no region is | + | 3-28 | encrypted. | + | | o "GDS BINARY EXTRACT LEVEL 8": when one more | + | | regions are encrypted using null IVs. | + | | o "GDS BINARY EXTRACT LEVEL 9": when one or regions | + | | are encrypted using non-null IVs. | |------------+-------------------------------------------------------| | 29-41 | Fixed-length ASCII text: Date and time of extract in | | | the $ZDATE() format: "YEARMMDD2460SS". | @@ -973,6 +987,15 @@ By default, EXTRACT operates -LOG. +3 Null_iv + Null_iv + + Creates an encrypted binary extract with null IVs from a database with + non-null IVs, which can be restored to a version that does not support + non-null IVs. The format of the -NULL_IV qualifier is: + + -[N]ULL_IV + 3 Region Region @@ -1734,7 +1757,12 @@ related data occupies 20 data blocks in the current database. The sample output shows that out of 1137 data blocks, 1030 data blocks are adjacent to each other. One may be able to improve the performance of a database if - the all blocks are as adjacent as possible. + the all blocks are as adjacent as possible. "% Used" is the amount of + space occupied across the in-use blocks divided by the space available in + the in-use blocks, and thus represents the packing density for the in-use + blocks (excluding local bit maps). Higher "% Used" may actually be + undesirable from a performance perspective as they indicate a higher + likelihood of block splits with upcoming updates. Example: @@ -1878,6 +1906,7 @@ o LOAD supports user collation routines. o LOAD takes its input from the file defined by the file-name, which may be a UNIX file on any device that supports such files. + o LOAD accepts files with DOS style termination. o MUPIP LOAD command considers a sequential file as encoded in UTF-8 if the environment variable gtm_chset is set to UTF-8. Ensure that MUPIP EXTRACT commands and corresponding MUPIP LOAD commands execute with @@ -1931,6 +1960,15 @@ ZWR format file. -FORMAT=BINARY works with data in a proprietary format. -FORMAT=BINARY has one header record, therefore LOAD -FORMAT=BINARY starts active work with record number two (2). + o -FORMAT={ZWR|GO} applies to text files produced by tools such as MUPIP + EXTRACT or %GO. + o For FORMAT={ZWR|GO} UTF-8 files not produced by MUPIP EXTRACT or %GO, + the first line of the label must contain the case insensitive text + "UTF-8". + o For all -FORMAT={ZWR|GO} files not produced by MUPIP EXTRACT or %GO, + the second line should contain the case insensitive test "ZWR" for zwr + format or "GLO" for GO format and the two label lines must contain a + total of more than 10 characters. o -FORMAT=GO expects the data in record pairs. Each global node requires one record for the key and one for the data. o -FORMAT=ZWR expects the data for each global node in a single record. @@ -2008,7 +2046,7 @@ o STOP causes MUPIP LOAD to exit immediately. o PROCEED proceeds to the next record. - o PROMPTS prompts to continue or stop. + o INTERACTIVE prompts to continue or stop. By default MUPIP LOAD exits on encountering an error. @@ -2134,11 +2172,15 @@ Competing activity generally increases the time required to perform a REORG, as well as that of the competing operations. + MUPIP REORG can also encrypt a database and/or change the encryption keys + for database files "on the fly" while the database is in use. + The format of the MUPIP REORG command is: REO[RG] [ -D[OWNGRADE] + -ENCR[YPT]=key -E[XCLUDE]=global-name-list -FI[LL_FACTOR]=integer -I[NDEX_FILL_FACTOR]=integer @@ -2160,22 +2202,23 @@ on operational procedures) to eliminate file fragmentation when database files have been extended more than a dozen times. - o Using REORG concurrently with normal database access affects the - performance of normal operation. To reduce this impact, lower the - priority of the process performing the REORG. + o As REORG is IO intensive, running a REORG concurrently with normal + database access may impact the operation of normal processes. As the + GT.M database engine has a daemonless architecture, attempts to reduce + the impact by reducing the priority of REORG can (perhaps + counter-intuitively) exacerbate rather than alleviate the impact. To + reduce the impact REORG has on other processes, use the gtm_poollimit + environment variable to limit the number of global buffers used by the + REORG. o MUPIP REORG does not change the logical contents of the database, and can run on either the originating instance or replicating instance of an LMS application. In such cases, resuming REORGs in process should be part of the batch restart. See "GT.M Database Replication" chapter for more information about running REORG on a dual site application. - o If you run MUPIP STOP for an ongoing MUPIP REORG process, it may leave - the database blocks in an inconsistent state. In this situation, GT.M - converts the ongoing KILLs flag to abandoned KILLs flag. If a - subsequent MUPIP REORG encounters these abandoned KILLs flags, it - gives a message and then starts its REORG actions. - o terminates REORG. A REORG terminated abnormally by operator - action or error is incomplete but does not adversely affect the - database structure, unless terminated with a kill -9. + o Use MUPIP STOP (or for an interactive REORG) to terminate a + REORG process. Unless terminated with a kill -9, a REORG terminated by + operator action or error is incomplete but does not adversely affect + the database. **Caution** @@ -2244,6 +2287,38 @@ The optional qualifiers for MUPIP REORG are: +3 Encrypt + Encrypt + + Encrypts an unencrypted database or changes the encryption key of a + database while the database continues to be used by applications. Whether + or not the prior encryption uses non-zero initialization vectors (IVs), + database blocks encrypted with the new key use non-zero IVs The format of + the ENCRYPT qualifier is: + + -ENCR[YPT]= + + MUPIP provides to the encryption plugin. The reference + implementation of the plugin expects a key with the specified name in the + encryption configuration file identified by $gtmcrypt_config. The + configuration file must contain an entry in the database section for each + database file mapping to a region specified in that names + the specified key as its key. The -ENCRYPT flag is incompatible with all + other command line flags of MUPIP REORG except -REGION, and performs no + operation other than changing the encryption key. If the specified key is + already the encryption key of a database region, MUPIP REORG -ENCRYPT + moves on to the next region after displaying a message (on stderr, where + MUPIP operations send their output). + + As MUPIP REORG -ENCRYPT reads, re-encrypts, and writes every in-use block + in each database file, its operations take a material amount of time on + the databases of typical applications, and furthermore add an additional + IO load to the system on which it runs. You can use the environment + variable gtm_poollimit to ameliorate, but not eliminate, the impact, at + the cost of extending execution times. To minimize impact on production + instances, FIS recommends running this operation on replicating secondary + instances, rather than on originating primary instances. + 3 Exclude Exclude @@ -2440,6 +2515,54 @@ Example: + $ mupip reorg + Fill Factor:: Index blocks 100%: Data blocks 100% + + Global: CUST (region DEFAULT) + Blocks processed : 667340 + Blocks coalesced : 601487 + Blocks split : 0 + Blocks swapped : 319211 + Blocks freed : 646964 + Blocks reused : 298814 + Blocks extended : 0 + + Global: HIST (region HIST) + %GTM-I-FILERENAME, File /var/myApp/prod/journals/hist.mjl is renamed to /var/myApp/prod/journals/hist.mjl_2015289165050 + Blocks processed : 337069 + Blocks coalesced : 12888 + Blocks split : 0 + Blocks swapped : 329410 + Blocks freed : 315998 + Blocks reused : 308337 + Levels Eliminated : 1 + Blocks extended : 0 + $ + + In this output: + + o Blocks processed - the number of blocks originally used by the global + variable + o Blocks coalesced - the number of blocks that were sufficiently + compacted enough to free a block + o Blocks split - the number of blocks expanded enough to require the + allocation of a new block + o Blocks swapped - the number of blocks moved to improve adjacency; this + can exceed the number of blocks processed as a consequence of the + movement of blocks + o Blocks freed - the number of blocks formerly used that were released + by a combination of swaps and coalesces + o Blocks reused - blocks freed, and then reused + o Levels eliminated - reduction in the depth of the global variable tree + o Blocks extended - the number of blocks the database grew during the + reorg + + Note also that owing the database update activity of REORG, the hist.mjl + journal file reached its limit, requiring MUPIP to switch the journal + file. + + Example: + $ mupip reorg -exclude="^b2a,^A4gsEQ2e:^A93" This example performs a MUPIP REORG operation on all globals excluding @@ -2655,6 +2778,8 @@ -REG[ION] region-list -REP[LICATION]={ON|OFF} -RES[ERVED_BYTES]=integer] + -SLEE[P_SPIN_COUNT]=integer + -SPIN[_SLEEP_LIMIT]=nanoseconds -S[TANDALONENOT] -V[ERSION]={V4|V6} -W[AIT_DISK]=integer @@ -2749,12 +2874,8 @@ switch an existing database file so it immediately preallocates all blocks, first use MUPIP SET -NODEFER_ALLOCATE to set the switch in the database file header, followed by MUPIP EXTEND -BLOCKS=n, where n >= 0. - Failures to preallocate space produce a PREALLOCATEFAIL error. On - platforms where GT.M does not support preallocation (HP-UX and Solaris), - although GDE accepts -NODEFER_ALLOCATE, MUPIP CREATE ignores it and sets - the database file to DEFER_ALLOCATE. On those platforms, any attempt to - change this flag with MUPIP SET produces a NODFRALLOCSUPP error. The - format of the DEFER_ALLOCATE qualifier is: + Failures to preallocate space produce a PREALLOCATEFAIL error. The format + of the DEFER_ALLOCATE qualifier is: -[NO]DEFER_Allocate @@ -2764,7 +2885,7 @@ Tries to minimize epoch duration by reducing the number of buffers to flush by GT.M and the file system (via an fsync()) as the epoch (time-based or due to journal file auto-switch) approaches. The format of - the QDBRUNDOWN qualifier is: + the -EPOCHTAPER qualifier is: -[NO]EPOCHTAPER @@ -2885,10 +3006,10 @@ 3 Qdbrundown Qdbrundown - Quickens normal process shutdown where a large number of processes - accessing a database file are required to shutdown almost simultaneously, - for example, in benchmarking scenarios. The format of the QDBRUNDOWN - qualifier is: + Shortens normal process shutdown when a large number of processes + accessing a database file need to shutdown almost simultaneously, for + example, in benchmarking scenarios or emergencies. The format of the + QDBRUNDOWN qualifier is: -[NO]Q[DBRUNDOWN] @@ -2900,12 +3021,23 @@ possible impediment to process startup. By default, QDBRUNDOWN is disabled. - Note that with QDBRUNDOWN there is a possibility of race condition that - might leave the database file header and IPC resources in need of cleanup. - Although QDBRUNDOWN minimizes the probability of such a race condition, it - cannot eliminate it. When using QDBRUNDOWN, FIS recommends an explicit - MUPIP RUNDOWN of the database file after the last process exits, to ensure - the cleanup of database file header and IPC resources. + Note that with QDBRUNDOWN there is a possibility that the last process to + exit might leave the database shared memory and IPC resources in need of + cleanup. Except after the number of concurrent processes exceeds 32Ki, + QDBRUNDOWN minimizes the possibility of abandoned resources, but it cannot + eliminate it. When using QDBRUNDOWN, use an explicit MUPIP command such as + RUNDOWN or JOURNAL -RECOVER or -ROLLBACK of the database file after the + last process exits, to ensure the cleanup of database shared memory and + IPC resources; not doing so risk database damage. + + When a database has QDBRUNDOWN enabled, if the number of attached + processes ever exceeds 32Ki, GT.M stops tracking the number of attached + processes, which means that it cannot recognize when the number reaches + zero (0) and the shared resources can be released. The process that + detects this event issues a NOMORESEMCNT in the system log. This means an + orderly, safe shutdown requires a MUPIP JOURNAL -ROLLBACK -BACKWARD for + replicated databases, a MUPIP JOURNAL -RECOVER -BACKWARD for unreplicated + journaled databases and a MUPIP RUNDOWN for journal-free databases. 3 PArtial_recov_bypass PArtial_recov_bypass @@ -2941,6 +3073,48 @@ depending on your platform. Realistic determinations of this amount should leave room for at least one record of maximum size. +3 SLEEp_spin_count + SLEEp_spin_count + + Specifies the number of times a processes suspends its activity while + waiting to obtain critical sections for shared resources, principally + those involving databases. The format of the -SLEEP_SPIN_COUNT qualifier + is: + + -SLEEP_SPIN_COUNT=integer + + o integer is the number times the process yields to the OS scheduler or + sleeps (depending in the SPIN_SLEEP_LIMIT) after exhausting its hard + spin count and before enquing itself to be awakened by another process + releasing the shared resource mutex. + o The default is 128. + o Except on the advice of your GT.M support channel, FIS recommends + leaving the default values unchanged in production environments, until + and unless, you have data from testing and benchmarking that + demonstrates a benefit from a change. + +3 SPIN_spin_limit + SPIN_spin_limit + + Specifies the maximum number nanoseconds for processes to sleep while + waiting to obtain critical sections for shared resources, principally + those involving databases. The format of the -SPIN_SLEEP_LIMIT qualifier + is: + + -SPIN_SLEEP_LIMIT=nanoseconds + + o nanoseconds is the maximum number of nanoseconds (in decimal form) + rounded up to the nearest power of two. Internally, GT.M converts it + to a hexadecimal mask. + o The default is zero (0) which causes the process to return control to + the UNIX kernel to be rescheduled with no explicit delay. When the + value is non-zero, the process waits for a random value between zero + (0) and the maximum value permitted by the mask. + o Except on the advice of your GT.M support channel, FIS recommends + leaving the default values unchanged in production environments, until + and unless, you have data from testing and benchmarking that + demonstrates a benefit from a change. + 3 Version Version @@ -3302,13 +3476,16 @@ $ZTRIGGER() and save the result. Note that TRIGGER -UPGRADE assumes that the existing trigger definitions are properly defined; if the prior release has produced defective triggers delete them with a wild-card - ("*"), do the MUPIP TRIGGER -UPGRADE and redefine the triggers in the new - release. In the event of a downgrade, delete "*" all triggers before the - downgrade and insert the saved version from before the upgrade. Attempting - to perform a MUPIP TRIGGER -UPGRADE on a database without write - authorization to the database produces a TRIGMODREGNOTRW error. The - -UPGRADE qualifier is not compatible with any other MUPIP TRIGGER - qualifier. + ("*"), and redefine the triggers in the new release. In the event of a + downgrade, delete "*" all triggers before the downgrade and insert the + saved version from before the upgrade. Attempting to perform a MUPIP + TRIGGER -UPGRADE on a database without write authorization to the database + produces a TRIGMODREGNOTRW error. The -UPGRADE qualifier is not compatible + with any other MUPIP TRIGGER qualifier. Trigger upgrades from older + versions may produce journal records based on the prior format that a + MUPIP JOURNAL -RECOVER cannot process correctly, therefore, FIS recommends + you do them with journaling off, and start with a backup and fresh journal + files after the trigger upgrade. 3 Examples Examples @@ -3807,7 +3984,7 @@ cost of increased I/O load on the run-time system (due to more frequent checkpoints). A larger EPOCH_INTERVAL has the opposite effect. Therefore, set EPOCH=interval for a more efficient run-time with larger values of - interval and more efficient ROLLBACK processing with smaller values of + interval and more efficient -ROLLBACK processing with smaller values of interval. The default EPOCH_INTERVAL value is 300 seconds (5 minutes). The minimum @@ -3918,7 +4095,7 @@ generation journal file name. This indicates that this is a fresh start of journaling for the particular database. When journaling is already ON, and GT.M is implicitly (due to AUTOSWITCHLIMIT being reached) or explicitly - (due to MUPIP SET JOURNAL) required to create new journal files, GT.M + (due to MUPIP SET -JOURNAL) required to create new journal files, GT.M maintains the previous generation journal filename (after any appropriate rename), in the new journal file's header. @@ -3933,11 +4110,11 @@ **Note** In the event of a crash, FIS strongly recommends performing a MUPIP - JOURNAL ROLLBACK on a database with replication, MUPIP JOURNAL RECOVER on - a journaled database, and MUPIP RUNDOWN only if using neither journaling - nor replication. GT.M error messages provide context-specific instructions - to promote this decision-making model which helps protect and recover data - after a crash. + JOURNAL -ROLLBACK on a database with replication, MUPIP JOURNAL -RECOVER + on a journaled database, and MUPIP RUNDOWN only if using neither + journaling nor replication. GT.M error messages provide context-specific + instructions to promote this decision-making model which helps protect and + recover data after a crash. The previous generation journal filename is a back link from the current generation journal. @@ -4134,71 +4311,76 @@ appropriate combination of qualifiers by moving horizontally from the Action column extending to the Selection column: - +---------------------------------------------------------------------------------------+ - | | | | Sequence | Control | Selection | - | Action |Direction| Time (optional) | Number | (optional) | (optional) | - | | | |(optional)| | | - |---------------+---------+--------------------+----------+--------------+--------------| - |One or more |Only one |One or more |Only one |One or more |One or more | - |---------------+---------+--------------------+----------+--------------+--------------| - | | | | |-[NO]AP | | - | | | | | | | - | | | | |-BR=extract | | - | | | | |file name | | - | | | | | | | - | | | | |-[NO]CHA | | - | | | | | | | - | | | | |-[NO]CHE | | - |-EX[=file | | | | | | - |specification] | | | |-[NO]ER[= | | - | | |-A=time | |integer] |-G=global list| - |-REC | | |-FET=port | | | - | | |-BE=time |number |-FE=fence |-ID=pid list | - |-RO |-BA -FO | | |option | | - | | |-[NO]LOO= lookback |-RES=jnl | |-T=transaction| - |-SH=show option| |option list] |sequence |-FU |type | - |list] | | |number | | | - | | |-SI=time | |-[NO]IN |-U=user list | - |-[NO]V | | | | | | - | | | | |-LOST=extract | | - | | | | |file name | | - | | | | | | | - | | | | |-RED=file pair| | - | | | | |list | | - | | | | | | | - | | | | |-VERB | | - | | | | | | | - | | | | |-DE | | - +---------------------------------------------------------------------------------------+ + +----------------------------------------------------------------------------------------------------------------------------------------------------------------+ + | Action |Direction| Time (optional) |Sequence Number (optional) | Control (optional) | Selection (optional) | + |------------------------+---------+------------------------------------+---------------------------+------------------------------+-----------------------------| + |One or more |Only one |One or more |Only one |One or more |One or more | + |------------------------+---------+------------------------------------+---------------------------+------------------------------+-----------------------------| + | | | | |-[NO]APPLY_AFTER_IMAGE | | + | | | | | | | + | | | | |-BROKENTRANS=extract file name| | + | | | | | | | + | | | | |-[NO]CHAIN | | + | | | | | | | + |-EXTRACT[=file | | | |-[NO]CHECKTN | | + |specification] | |-AFTER=time | | | | + | | | | |-[NO]ERRORLIMIT[=integer] |-GLOBAL=global-list | + |-RECOVER | |-BEFORE=time | | | | + | |-BACKWARD| |-FETCH_RESYNC=port-number |-FENCES=fence option |-ID=pid-list | + |-ROLLBACK | |-[NO]LOOKBACK_TIME[=lookback option | | | | + | |-FORWARD |list] |-RESYNC=jnl sequence-number|-FULL |-TRANSACTION=transaction-type| + |-SHOW[=show-option-list]| | | | | | + | | |-SINCE=time | |-[NO]INTERACTIVE |-USER=user-list | + |-[NO]VERIFY | | | | | | + | | | | |-LOSTTRANS=extract-file-name | | + | | | | | | | + | | | | |-REDIRECT=file pair list | | + | | | | | | | + | | | | |-VERBOSE | | + | | | | | | | + | | | | |-DETAIL | | + +----------------------------------------------------------------------------------------------------------------------------------------------------------------+ Also ensure that you adhere to the following rules: - 1. -BEFORE is compatible with all other JOURNAL qualifiers except - -ROLLBACK. - 2. -AFTER is incompatible with -BACKWARD and all action qualifiers, - except -EXTRACT, -SHOW, and -VERIFY. - 3. -APPLY_AFTER_IMAGE is compatible only with -RECOVER, or -ROLLBACK. - 4. -BACKWARD is incompatible with -FORWARD, -AFTER, -CHECKTN, -NOCHAIN, + 1. -AFTER is incompatible with -RECOVER or -ROLLBACK; that is -AFTER + requires -FORWARD, and only applies to action qualifiers: -EXTRACT, + -SHOW, and -VERIFY. + 2. -APPLY_AFTER_IMAGE is compatible only with -RECOVER, or -ROLLBACK. + 3. -BACKWARD is incompatible with -FORWARD, -AFTER, -CHECKTN, -NOCHAIN, and -REDIRECT. - 5. -BROKENTRANS is compatible only with -RECOVER, -ROLLBACK, or -EXTRACT. - 6. -CHAIN is only compatible with -FORWARD. + 4. -BROKENTRANS is compatible only with -RECOVER, -ROLLBACK, or -EXTRACT. + 5. -CHAIN is only compatible with -FORWARD. + 6. -CHECKTN is incompatible with -BACKWARD. 7. -DETAIL is compatible only with -EXTRACT. - 8. -FETCHRESYNC or -RESYNC are compatible only with -ROLLBACK. - 9. -FORWARD is incompatible with -BACKWARD, -ROLLBACK, -SINCE, and - -LOOKBACK_LIMIT. + 8. -FETCHRESYNC is only compatible with the -ROLLBACK action in the + -FORWARD direction and is incompatible with RESYNC. + 9. -FORWARD is incompatible with -BACKWARD, -FETCHRESYNC, + -LOOKBACK_LIMIT, -ONLINE and -SINCE. 10. -FULL is compatible only with -EXTRACT, -SHOW, or -VERIFY. 11. -LOSTTRANS is compatible only with -RECOVER, -ROLLBACK, or -EXTRACT. - 12. -REDIRECT is compatible only with -RECOVER. - 13. -ROLLBACK is incompatible with -RECOVER, FORWARD, -CHAIN, -CHECKTN, - -REDIRECT, time qualifiers of -SHOW. - 14. -SINCE is incompatible with -FORWARD. - 15. -TRANSACTION is compatible only with -EXTRACT and -SHOW. - 16. -USER is compatible only with -EXTRACT and -SHOW. - 17. file list must not be asterisk (*) for -REDIRECT. - 18. file list must be asterisk (*) for -ROLLBACK. - 19. Journal selection qualifiers are incompatible with -RECOVER, + 12. -REDIRECT is compatible only with -BACKWARD and -RECOVER. + 13. -RESYNC is only compatible with the -ROLLBACK action and incompatible + with FETCHRESYNC. + 14. -ROLLBACK is incompatible with -RECOVER, -CHAIN, -CHECKTN, -REDIRECT, + time qualifiers of -SHOW except -BEFORE. + 15. -SINCE is incompatible with -FORWARD. + 16. -TRANSACTION is compatible only with -EXTRACT and -SHOW. + 17. -USER is compatible only with -EXTRACT and -SHOW. + 18. file list must not be asterisk (*) for -REDIRECT. + 19. file list must be asterisk (*) for -BACKWARD -ROLLBACK; -ROLLBACK + -FORWARD accepts a list of journal file names. + 20. Journal selection qualifiers are incompatible with -RECOVER, -ROLLBACK, and -VERIFY. - 20. Journal time qualifiers are incompatible with -ROLLBACK. + 21. If -BEFORE (time-based) and -FETCHRESYNC/-RESYNC + (sequence-number-based) are specified in the same MUPIP JOURNAL + -ROLLBACK command, the qualifier that corresponds to an earlier + database state or point in time prevails. For example, -BEFORE + prevails when the update corresponding to the sequence number obtained + through the -FETCHRESYNC command happened at a later time relative to + the -BEFORE qualifier and vice versa. + 22. -FETCHRESYNC, -ONLINE, and -RSYNC_STRM qualifiers are not compatible + with -ROLLBACK -FORWARD. For example, MUPIP JOURNAL -EXTRACT=gtm.mjf -FORWARD -DETAIL is a valid command which performs forward processing to extract detailed the journal @@ -4278,6 +4460,28 @@ -FENCES=NONE. FIS strongly recommended against using -FENCES=NONE if -RECOVER/-ROLLBACK is also specified. +4 Parallel + Parallel + + PARA[LLEL][=n] specifies the number of parallel threads (for backward + processing) and parallel processes (for forward processing). Parallel + threads typically increase the speed of MUPIP JOURNAL RECOVER/ROLLBACK + operations. + + Omitting the qualifier or specifying a value of one (1) defaults to a + single process with no threads. Omitting the value or specifying a value + of zero (0) specifies one thread or process per region. + + A value greater than one (1) specifies the maximum number of concurrent + threads or processes MUPIP should use, although it never uses more than + one per region. If the number of regions exceeds the specified value, + MUPIP allocates one thread or processes in an order determined by + timestamps in the journal records. + + The environment variable gtm_mupjnl_parallel provides a value when the + MUPIP JOURNAL command has no explicit -PARALLEL qualifier; when defined + with no value gtm_mupjnl_parallel acts like -PARALLEL with no value. + 4 RECover RECover @@ -4392,77 +4596,45 @@ 4 ROLLBACK ROLLBACK + -ROLLBACK -FORWARD "*" command does what a -RECOVER -FORWARD "*" would do + except that the ROLLBACK also updates sequence number related fields in + the database file header and ensures update serialization across regions. + -RECOVER can leave one database region ahead of another region. -RECOVER + cannot ensure database Consistency across regions whereas -ROLLBACK can. + + When used without time qualifiers, -ROLLBACK -FORWARD "*" applies update + records in journal files to backed up copies of database files to bring + them to the same state that -ROLLBACK -BACKWARD "*" would bring crashed + database files. Note that, in the context of -RECOVER and -ROLLBACK, the + "*" indicates the use of all the appropriate journal files in all the + replicated regions and the quotes prevent inappropriate expansion by the + OS shell. + + Databases recovered with -ROLLBACK can be used in replicated instances. + + Important + + o -ROLLBACK -FORWARD leaves the journaling state turned off in database + files (as does MUPIP JOURNAL -RECOVER -FORWARD), which in turn means + that replication is also turned off; re-enable journaling, and turn + replication on, before using database files in environments where they + can be updated, but journaling and replication may be left off if + subsequent access is read-only. + o After a -ROLLBACK -FORWARD, recreate the replication instance file as + part of turning replication on for the recovered database. + o -ROLLBACK -FORWARD can use both before-image and nobefore-image + journal files. + -ROLLBACK initiates the central JOURNAL operation for a replicated database. MUPIP JOURNAL commands may specify -ROLLBACK with other action - qualifiers but not with -RECOVER. If you do not use -FETCHRESYNC, the - database rolls back to the last consistent state. Only asterisk (*) - qualifier is allowed for the journal file selection, that is, -ROLLBACK - selects journal files by itself. - - -NOO[NLINE] + qualifiers but not with -RECOVER. With -BACKWARD, if you do not specify + -BEFORE or -FETCHRESYNC, the database rolls back to the last consistent + state. With -BACKWARD, the command allows only an asterisk (*) argument + for the journal file selection, that is, -ROLLBACK selects journal files + by itself. - Specifies that ROLLBACK requires exclusive access to the database and the - replication instance file. This means that the database and the - replication instance files are inaccessible during a -ROLLBACK -NOONLINE. - - By default, MUPIP JOURNAL -ROLLBACK is -NOONLINE. - - -ON[LINE] - - Specifies that ROLLBACK should run without requiring exclusive access to - the database and the replication instance file. - - GT.M increments ISV $ZONLNRLBK every time a process detects a concurrent - MUPIP JOURNAL -ONLINE -ROLLBACK. - - If the logical state of the database after the completion of MUPIP JOURNAL - -ONLINE -ROLLBACK matches the logical state of the database at the start - of MUPIP JOURNAL -ONLINE -ROLLBACK, that is, only removes or commits an - uncommitted TP transaction or non-TP mini-transaction, any transaction (TP - or Non-TP) incurs a restart. - - If MUPIP JOURNAL -ONLINE -ROLLBACK changes the logical state of the - database, the behavior is as follows: - - o -ONLINE -ROLLBACK increments ISV $ZONLNRLBK - o In a TP transaction including trigger code within a transaction, - -ONLINE -ROLLBACK restarts the transaction. - o In a non-TP mini-transaction, including within an implicit transaction - caused by a trigger, -ONLINE -ROLLBACK produces a DBROLLEDBACK error, - which, in turn, invokes the error trap if $ETRAP or $ZTRAP are in - effect. - - Any utility/command attempted while MUPIP JOURNAL -ONLINE -ROLLBACK - operates waits for ROLLBACK to complete; the $gtm_db_startup_max_wait - environment variable configures the wait period. - - **Note** - - Because MUPIP ROLLBACK -ONLINE can take a database backwards in state - space, please make sure that you understand what it is that you intend it - to do when you invoke it. FIS developed it as a step towards a much larger - project and anticipates that it will not be broadly useful as is. - - -ROLLBACK -BACKWARD exits with an error message for following conditions: - - 1. Any database region corresponding to a journal file processed has - replication state turned OFF. Note that, a configuration where there - are replicated regions and at least one non-replicated-but-journaled - region is not permitted by the replication source server. The source - server errors out at startup on such a configuration without having - set up the journal pool. Since all GT.M updates to replicated regions - need the source server to have set up a journal pool, no updates are - possible until the configuration is changed to have only replicated - regions or non-replicated-and-non-journaled regions. - 2. Any database region corresponding to a journal file identified by the - command argument has journaling state DISABLE'd or ENABLE'd and OFF. - 3. Any database region corresponding to a journal file has journal state - ENABLE'd and ON, but the journal file name specified in the database - file header is different than one identified by the command argument. - - If a transaction is found with incomplete fence, it is considered broken. - For the duration of the rollback, replication is turned OFF on all regions - and turned back ON at the end of the rollback. + If a transaction is found with incomplete fence, it is considered + incomplete or broken. During the forward phase of rollback, if a complete transaction (fenced or unfenced) is found after a broken transaction, it is considered as a lost @@ -4492,6 +4664,9 @@ state and attempt to automatically recover a database if there is a crash). + -ROLLBACK -BACKWARD exits with an error message if a database does not + have both journaling and replication either enabled or disabled. + **Note** If ROLLBACK (either -NOONLINE or -ONLINE) terminates abnormally (say @@ -4509,6 +4684,55 @@ However, the MUPIP and DSE actions do not ensure that the database has consistent state; check for database integrity with MUPIP INTEG. + -NOO[NLINE] + + Specifies that ROLLBACK requires exclusive access to the database and the + replication instance file, which means the database and the replication + instance files are inaccessible during a -ROLLBACK -NOONLINE. + + -ROLLBACK -FORWARD does not support the -[NO]O[NLINE] qualifier. + + -ON[LINE] + + Specifies that ROLLBACK can run without requiring exclusive access to the + database and the replication instance file. + + Any utility/command attempted while MUPIP JOURNAL -ONLINE -ROLLBACK + operates waits for ROLLBACK to complete; the $gtm_db_startup_max_wait + environment variable configures the wait period. + + **Note** + + Because MUPIP ROLLBACK -ONLINE can take a database backwards in state + space, please make sure that you understand what it is that you intend it + to do when you invoke it. FIS developed it as a step towards a much larger + project and anticipates that it will not be broadly useful in its current + form. + + By default, MUPIP JOURNAL -ROLLBACK -BACKWARD is -NOONLINE. + + GT.M increments ISV $ZONLNRLBK every time a process detects a concurrent + MUPIP JOURNAL -ONLINE -ROLLBACK. + + The logical state of the database after the completion of MUPIP JOURNAL + -ONLINE -ROLLBACK matches the logical state of the database at the start + of MUPIP JOURNAL -ONLINE -ROLLBACK, that is, the ROLLBACK only removes any + incompletely committed TP transactions or non-TP mini-transactions; any + concurrent transaction (TP or Non-TP) incurs a restart. + + If MUPIP JOURNAL -ONLINE -ROLLBACK changes the logical state of the + database, the behavior is as follows: + + o For the duration of the rollback, replication is turned OFF on all + regions and turned back ON at the end of the rollback. + o -ONLINE -ROLLBACK increments ISV $ZONLNRLBK + o In a TP transaction including trigger code within a transaction, + -ONLINE -ROLLBACK restarts the transaction. + o In a non-TP mini-transaction, including within an implicit transaction + caused by a trigger, -ONLINE -ROLLBACK produces a DBROLLEDBACK error, + which, in turn, invokes the error trap if $ETRAP or $ZTRAP are in + effect. + 4 SHow SHow @@ -4659,10 +4883,15 @@ 4 Verify Verify - Verifies a journal file for integrity. This qualifier cannot have a value. - -VERIFY scans the files and checks if it is in legal form, if not, it + Verifies journal files for integrity. This qualifier cannot have a value. + -VERIFY scans journal files and checks if they have legal form, if not, it terminates without affecting the database files. + -NOVERIFY is the default for -RECOVER -FORWARD and -ROLLBACK -FORWARD. + -VERIFY is the default for RECOVER -FORWARD -NOCHECKTN. -VERIFY is also + the default for all other MUPIP JOURNAL commands (including -RECOVER + -BACKWARD and -ROLLBACK -BACKWARD). + -VERIFY when specified along with -FORWARD verifies the entire journal file For -NOVERIFY -FORWARD, only the tail of a journal file is verified for cross region integrity. In both cases, if -RECOVER is also specified, @@ -4680,10 +4909,13 @@ This speeds up processing. But the disadvantage of this approach is that in the event of verification terminating in the middle of backward processing, there is no protection of cross-region integrity. FIS - recommends the use of -VERIFY with -RECOVER or -ROLLBACK. + recommends the use of -VERIFY (the default) when -BACKWARD is used with + -RECOVER or -ROLLBACK. For -FORWARD, unless there is reason to suspect + that the journal files have sustained structural damage, FIS suggests the + use of -NOVERIFY (the default). When used independent of -RECOVER (or -ROLLBACK), -[NO]VERIFY option does - not need database access. The default is -VERIFY. + not need database access. In this case the default is -VERIFY. 3 Direction_Qualifiers Direction Qualifiers @@ -4730,7 +4962,7 @@ back-slash (\) delimiter before both, the beginning and ending quotation marks to escape it from being processed by the UNIX shell. - Absolute format is day-mon-yyyy hh:mm:ss , where day denotes the date of + Absolute format is day-mon-yyyy hh:mm:ss, where day denotes the date of the month, mon indicates the abbreviated 3-letter month name (for example, Jan, Feb,..) and the year yyyy and hour hh are separated by a space. Absolute time may indicate today's date with "-- " before the hours. @@ -4745,7 +4977,7 @@ **Note** - All time qualifiers are incompatible with -ROLLBACK. + All time qualifiers except -BEFORE are incompatible with -ROLLBACK. The following section describes the time qualifiers in more detail: @@ -4757,7 +4989,7 @@ If -AFTER= provides a time following the last time recorded in the journal file or following any -BEFORE= time, JOURNAL processing produces no result - and a warning message is displayed. If -AFTER provides a time preceding + and MUPIP displays a warning message. If -AFTER provides a time preceding the first time recorded in the journal file specified in the command line, and, previous generation journal file(s) exists for that journal file, then previous generation journal file(s) are not included for the @@ -4773,17 +5005,28 @@ specified references time stamps in the journal files. If -BEFORE= specifies a time preceding the first time recorded in the journal file, or preceding any -AFTER= or -SINCE= time, JOURNAL processing produces no - result, and a warning message is displayed. + result, and MUPIP displays a warning message. If -BEFORE= time exceeds the last time recorded in journal files, JOURNAL processing effectively ignores the qualifier and terminates at the end of the journal file. By default, JOURNAL processing terminates at the end of the journal file. + When used with -ROLLBACK or -RECOVER, -BEFORE specifies the the time at + which MUPIP stops applying updates to the database in its forward + processing phase (i.e., no journal records with update times after the + -BEFORE time are applied to the database). + + When both -FETCHRESYNC/-RESYNC and -BEFORE are used with -ROLLBACK + -BACKWARD, the qualifier corresponding to an earlier database state or + point in time prevails. For example, -BEFORE prevails when the update + corresponding to the sequence number obtained through the -FETCHRESYNC + command happened at a later time relative -BEFORE and vice versa. + -[NO]LOO[KBACK_LIMIT][=lookback-option-list] - Specifies how far JOURNAL -BACKWARD processes past the turnaround point - (the explicit or implicit point in journal file up to which -RECOVER + Specifies how far JOURNAL -RECOVER -BACKWARD processes past the turnaround + point (the explicit or implicit point in journal file up to which -RECOVER proceeds backward before it reverses and processes database in forward direction), while attempting to resolve open transaction fences. This option is applicable only for transactions fenced with ZTSTART and @@ -4830,10 +5073,12 @@ -SI[NCE]=time - Specifies a starting (or checkpoint) time for an action qualifier with - -BACKWARD, that is, -SINCE specifies how far back in time JOURNAL - -BACKWARD should process (from the end of the journal file), before - starting the forward processing. + The -SINCE time qualifier applies to MUPIP JOURNAL -BACKWARD. The -SINCE + qualifier specifies how far back in time MUPIP JOURNAL should at least + process (from the end of the journal file), before starting the forward + processing. The actual turn-around point for -RECOVER and -ROLLBACK in + each database region is an epoch in the journal files before or at the + -SINCE time, but not after it. The time specified references time stamps in the journal files. If there are open fenced transactions when JOURNAL -BACKWARD locates the -SINCE= @@ -4869,8 +5114,8 @@ **Important** - FIS recommends you to unconditionally script the mupip journal -rollback - -fetchresync command prior to starting any Source Server on the + FIS recommends you to unconditionally script the MUPIP JOURNAL -ROLLBACK + -FETCHRESYNC command prior to starting any Source Server on the replicating instance to avoid a possible out-of-sync situation. The reference point sent by the originating instance is the RESYNC_SEQNO @@ -4927,10 +5172,10 @@ -[NO]AP[PLY_AFTER_IMAGE] Specifies that after image records (AIMG) be applied to the database as - part of forward processing of backward recovery or rollback. AIMG are - "snapshots" of the database updates captured by GTM immediately after the - change caused by a DSE update. By default, during forward phase of - backward recovery or rollback, AIMG records are applied to the database. + part of forward processing of -RECOVERY or -ROLLBACK. AIMG are "snapshots" + of the database updates captured by GT.M immediately after the change + caused by a DSE update. By default, during forward phase of backward + recovery or rollback, AIMG records are applied to the database. By default, -RECOVER -FORWARD does not apply AIMG record into the database. -APPLY_AFTER_IMAGE is compatible with -RECOVER, or -ROLLBACK @@ -4964,17 +5209,21 @@ -[NO]CHE[CKTN] -CHECKTN specifies that JOURNAL -FORWARD must verify for each region that - the begin transaction number of the earliest journal file to be processed - for that region is same as the current transaction in the database file - and that the end transaction number of every journal file is equal to the - begin transaction number of the next generation journal file for a given - region. By default, -FORWARD uses -CHECKTN. + the begining transaction number of the earliest journal file to be + processed for that region is same as the current transaction in the + database file and that the ending transaction number of every journal file + is equal to the begining transaction number of the next generation journal + file for a given region. By default, -FORWARD uses -CHECKTN. -NOCHECKTN forces forward recovery by overriding inbuilt mechanisms for - checking transaction integrity. Use -NOCHECKTN with caution because it may - lead to integrity issues in the recovered database and journal files. + checking transaction integrity. MUPIP performs -VERIFY when -NOCHECKTN is + specified. Use -NOCHECKTN with caution because it may lead to integrity + issues in the recovered database and journal files. - -CHECKTN is incompatible with -BACKWARD and -ROLLBACK. + ROLLBACK -FORWARD accepts only -CHECKTN, which is the default, but does + not accept -NOCHECKTN. + + -CHECKTN is incompatible with -BACKWARD. -[NO]ER[ROR_LIMIT][=integer] @@ -4993,13 +5242,13 @@ JOURNAL does not consider these as errors. In addition, fenced transactions that are broken are not considered as errors. - During the forward phase of recovery, if a broken transaction is found, - all the logical records processed afterwards are considered suspect. If a - complete transaction is found after any broken transactions, MUPIP JOURNAL - -RECOVER increments the error count and, if it is less than the error - limit, it is applied to the database. Otherwise, it is treated as a lost - transaction and extracted. If a complete transaction is found after any - broken transactions, MUPIP JOURNAL -ROLLBACK treats it as a lost + During the forward phase of recovery, if journal processing finds a broken + transaction, all the logical records processed afterwards are considered + suspect. If a complete transaction is found after any broken transactions, + MUPIP JOURNAL -RECOVER increments the error count and, if it is less than + the error limit, it is applied to the database. Otherwise, it is treated + as a lost transaction and extracted. If a complete transaction is found + after any broken transactions, MUPIP JOURNAL -ROLLBACK treats it as a lost transaction and extracts it irrespective of the error limit. If MUPIP JOURNAL needs to increment error count during its processing, a @@ -5017,41 +5266,39 @@ Specifies how JOURNAL processes fenced transactions. Fenced transactions are logical transactions made up of database updates preceded by a TSTART - or ZTSTART command and followed, respectively, by a TCOMMIT or ZTCOMMIT - command. All updates between a TSTART or ZTSTART and a TCOMMIT or ZTCOMMIT - are designed to occur together so that after journal recovery the database - contains either all the updates corresponding to a fenced transaction, or - none of them. + command followed by a TCOMMIT command. All updates between a TSTART and a + TCOMMIT are designed to occur together so that after journal recovery the + database contains either all the updates corresponding to a fenced + transaction, or none of them. - The argument values for -FENCES option for MUPIP -RECOVER are not - case-sensitive. + The argument values for -FENCES option for MUPIP -RECOVER/-ROLLBACK are + not case-sensitive. The fence options are: o NONE - This causes MUPIP JOURNAL to apply all individual updates as if - transaction fences did not exist. Note that, this means a SET/KILL - within a TP or ZTP transaction would be played as if it was an - unfenced SET/KILL. This may cause the database and new journals - created (if -BACKWARD is specified), to be different from the state - before the recovery took place. + This causes MUPIP JOURNAL -RECOVER to apply all individual updates as + if transaction fences did not exist. Note that, this means journal + processing treats a SET/KILL within a TP transaction as if it was an + unfenced SET/KILL. -FENCES=NONE is not permitted for MUPIP JOURNAL + -ROLLBACK. o ALWAYS - This causes MUPIP JOURNAL to treat any unfenced or improperly fenced - updates as broken transactions. + This causes MUPIP JOURNAL -RECOVER to treat any unfenced or improperly + fenced updates as broken transactions. FENCES=ALWAYS is not permitted + for MUPIP JOURNAL -ROLLBACK. o PROCESS This causes MUPIP JOURNAL to accept unfenced database updates, and also to observe fences when they appear, generating broken transaction - files in the case of a TSTART with no corresponding TCOMMIT, or a - ZTSTART with no corresponding ZTCOMMIT. It also generates broken - transactions if a multi-region transaction with TSTART and TCOMMIT - expects N regions to participate, but the number of TSTART/TCOMMIT - pairs found is less than N. The same happens for multi-region ZTSTART - and ZTCOMMIT. + files in the case of a TSTART with no corresponding TCOMMIT. It also + generates broken transactions if a multi-region transaction with + TSTART and TCOMMIT expects N regions to participate, but the number of + TSTART/TCOMMIT pairs found is less than N. -ROLLBACK accepts + -FENCES=PROCESS, which is the default. By default, MUPIP JOURNAL uses -FENCES=PROCESS. @@ -5068,10 +5315,10 @@ file (this field shows up as "End of Data" in a MUPIP JOURNAL -SHOW=HEADER output). Once a journal file's contents are rolled back, all future MUPIP JOURNAL commands (including -EXTRACT) operate on the rolled back journal - file only. But if -FULL is specified along with -EXTRACT, the entire - journal file contents (including those records that were rolled back) are - extracted. This qualifier is to be used only as a diagnostic tool and not - in normal operation. + file only. But if -FULL is specified along with -EXTRACT, MUPIP extracts + the entire journal file contents (including those records that were rolled + back). This qualifier is to be used only as a diagnostic tool and not in + normal operation. -FULL qualifier is compatible with -EXTRACT only. @@ -5085,7 +5332,7 @@ -NOINTERACTIVE terminates the journal processing as soon as the MUPIP JOURNAL command generates the number of errors specified in -ERROR_LIMIT. - This qualifier is applicable only to interactive mode or terminal mode. + This qualifier applies when the MUPIP command is entered from a terminal. The default is -INTERACTIVE. -LOST[TRANS]= @@ -5095,19 +5342,19 @@ necessary, MUPIP JOURNAL creates one using the name of the current journal file being processed with a .lost extension. - Any complete transactions after a broken transaction is considered a lost - transaction. They are written into the lost transaction file. For -RECOVER - it might be considered as good transaction and applied to the database, if - -ERROR_LIMIT qualifier allows it to do so. + Journal processing treats any complete transactions after a broken + transaction as a lost transaction, and writes such transactions into the + lost transaction file. -RECOVER might consider it as good transaction and + apply it to the database, if -ERROR_LIMIT qualifier allows it to do so. - Note that, if selection qualifiers are specified, the broken transaction - determination (and therefore lost transaction determination as well) is - done based on the journal file that is filtered by the selection - qualifiers. This means that a transaction's journal records may be - considered complete or broken or lost, depending on the nature of the + Note that, if selection qualifiers are specified, journal processing does + the broken transaction determination (and therefore lost transaction + determination as well) based on the journal file that is filtered by the + selection qualifiers. This means that a transaction's journal records may + be considered complete or broken or lost, depending on the nature of the selection qualifiers. Using -FENCES=NONE along with the selection - qualifiers will result in every journal record to be considered complete - and hence prevent broken or lost transaction processing. + qualifiers results in every journal record being considered complete and + hence preventing broken or lost transaction processing. In the case of a replicated database, lost transaction can have an additional cause. If failover occurs (that is, the originating Source @@ -5364,9 +5611,8 @@ record that has a different schema. o If the source side has triggers enabled and its receiver side either runs a pre-trigger version of GT.M or runs on a platform where - triggers are not supported (for example, AXP VMS or HPUX HPPA), - trigger definition journal records from the source side are - transformed to NULL records on the receiver side. + triggers are not supported, trigger definition journal records from + the source side are transformed to NULL records on the receiver side. **Important** @@ -5896,7 +6142,8 @@ value of 64 MB. Remember that you cannot exceed the system-provided maximum shared memory. For systems with high update rates, specify a larger buffer size to avoid the overflows and file I/O that occur when the - Source Server reads journal records from journal files. + Source Server reads journal records from journal files. The maximum value + is 4GiB - 1. -filter= @@ -5932,8 +6179,7 @@ set log=$ztrnlnm("filterlog") ; use the environment variable filterlog" (if defined) ;to specify which logfile to use if logersion="" set log="logcharout" char - if $zv["VMS" sechar EOL=$C(13)_$C(10) - else set EOL=$C(10) + set EOL=$C(10) open log:newve:sion use $principal:nowrap for do @@ -6192,16 +6438,6 @@ If a package for zlib is available with your operating system, FIS suggests that you use it rather than building your own. - Solaris/cc compiler from Sun Studio: - - ./configure --shared - make CFLAGS="-KPIC -m64" - - HP-UX(IA64)/HP C compiler: - - ./configure --shared - make CFLAGS="+DD64" - AIX/XL compiler: ./configure --shared @@ -6247,16 +6483,16 @@ /usr/local/lib in LIBPATH, the environment variable that provides a search path for processes to use when they link DLLs. - By default, GT.M searches for the libz.so shared library (libz.sl on HPUX - PA-RISC) in the standard system library directories (for example, - /usr/lib, /usr/local/lib, /usr/local/lib64). If the shared library is - installed in a non-standard location, before starting replication, you - must ensure that the environment variable $LIBPATH (AIX and z/OS) or - $LD_LIBRARY_PATH (other UNIX platforms) includes the directory containung - the library. The Source and Receiver Server link the shared library at - runtime. If this fails for any reason (such as file not found, or - insufficient authorization), the replication logic logs a DLLNOOPEN error - and continues with no compression. + By default, GT.M searches for the libz.so shared library in the standard + system library directories (for example, /usr/lib, /usr/local/lib, + /usr/local/lib64). If the shared library is installed in a non-standard + location, before starting replication, you must ensure that the + environment variable $LIBPATH (AIX and z/OS) or $LD_LIBRARY_PATH (other + UNIX platforms) includes the directory containung the library. The Source + and Receiver Server link the shared library at runtime. If this fails for + any reason (such as file not found, or insufficient authorization), the + replication logic logs a DLLNOOPEN error and continues with no + compression. -tlsid=