<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LINK /DSF and traceback. in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899845#M32113</link>
    <description>Hi Bruce,&lt;BR /&gt;&lt;BR /&gt;Sorry for disappointing you ;-)&lt;BR /&gt;I spent a lot of cycles trying to fix&lt;BR /&gt;it but so far nothing....I promise to &lt;BR /&gt;try again but I can't give you an ETA....&lt;BR /&gt;&lt;BR /&gt;IA64 uses an industry standard image &amp;amp; &lt;BR /&gt;debug format (ELF/DWARF from Intel), &lt;BR /&gt;that required a completely new linker. &lt;BR /&gt;&lt;BR /&gt;While on the subject of Linker/Traceback, &lt;BR /&gt;until recently, if you installed an image&lt;BR /&gt;resident, you lost traceback. We modified the linker and the TRACE facility to &lt;BR /&gt;provide traceback for images installed &lt;BR /&gt;resident. There was also a limit on the size&lt;BR /&gt;of the code section - 32MB, we removed this&lt;BR /&gt;limitation as well. This is all available &lt;BR /&gt;with the latest LINKER and TRACE kits for&lt;BR /&gt;V7.3-1.&lt;BR /&gt;&lt;BR /&gt;Guy</description>
    <pubDate>Thu, 05 May 2005 10:14:47 GMT</pubDate>
    <dc:creator>Guy Peleg</dc:creator>
    <dc:date>2005-05-05T10:14:47Z</dc:date>
    <item>
      <title>LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899837#M32105</link>
      <description>I have always been a little confused about the&lt;BR /&gt;affect that the LINK /DSF qualifier has on traceback.  Specifically, is it not possible to still get module, routine,  and line number information in a %TRACE-F-TRACEBACK display if /DSF is used?&lt;BR /&gt;&lt;BR /&gt;Here is an example.  Just for fun, I mix languages.&lt;BR /&gt;&lt;BR /&gt;------------------------------- foo.for --------------------------------&lt;BR /&gt;        PROGRAM FOO&lt;BR /&gt;* This isn't a quote it is an apostrophe.&lt;BR /&gt;        INTEGER BAR&lt;BR /&gt;        CALL CRASHME&lt;BR /&gt;        END&lt;BR /&gt;------------------------------- foo.for --------------------------------&lt;BR /&gt;----------------------------- crashme.cxx ------------------------------&lt;BR /&gt;//  $Workfile$&lt;BR /&gt;//&lt;BR /&gt;//  $Log$&lt;BR /&gt;&lt;BR /&gt;#ifdef __VMS&lt;BR /&gt;#pragma module CRASHME&lt;BR /&gt;#endif&lt;BR /&gt;&lt;BR /&gt;extern "C" void CRASHME() {&lt;BR /&gt;    throw *(int*)0;&lt;BR /&gt;}&lt;BR /&gt;----------------------------- crashme.cxx ------------------------------&lt;BR /&gt;$ fortran/version&lt;BR /&gt;HP Fortran V7.6-4120-48DA2&lt;BR /&gt;$ cxx/version&lt;BR /&gt;Compaq C++ V6.5-021 for OpenVMS Alpha V7.3-1&lt;BR /&gt;$ fortran foo/debug=all/noopt&lt;BR /&gt;$ cxx crashme/debug=all/noopt&lt;BR /&gt;$ cxxlink/traceback foo,crashme&lt;BR /&gt;$ run foo&lt;BR /&gt;%SYSTEM-F-ACCVIO, access violation, reason mask=00, virtual address=000000000000&lt;BR /&gt;0000, PC=0000000000030084, PS=0000001B&lt;BR /&gt;%TRACE-F-TRACEBACK, symbolic stack dump follows&lt;BR /&gt;  image    module    routine             line      rel PC           abs PC&lt;BR /&gt; foo  CRASHME  CRASHME                     10 0000000000000014 0000000000030084&lt;BR /&gt; foo  FOO  FOO                              4 0000000000000044 0000000000030044&lt;BR /&gt; foo                                        0 00000000000238EC 00000000000338EC&lt;BR /&gt;                                            0 FFFFFFFF802874D4 FFFFFFFF802874D4&lt;BR /&gt;$ cxxlink/traceback/dsf foo,crashme&lt;BR /&gt;$ run foo&lt;BR /&gt;%SYSTEM-F-ACCVIO, access violation, reason mask=00, virtual address=000000000000&lt;BR /&gt;0000, PC=0000000000030084, PS=0000001B&lt;BR /&gt;%TRACE-F-TRACEBACK, symbolic stack dump follows&lt;BR /&gt;  image    module    routine             line      rel PC           abs PC&lt;BR /&gt; foo                                        0 0000000000020084 0000000000030084&lt;BR /&gt; foo                                        0 0000000000020044 0000000000030044&lt;BR /&gt; foo                                        0 00000000000238EC 00000000000338EC&lt;BR /&gt;                                            0 FFFFFFFF802874D4 FFFFFFFF802874D4&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Personally, I think the /DSF qualifier is a great idea, but not if I loose traceback information in production.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 May 2005 10:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899837#M32105</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-04T10:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899838#M32106</link>
      <description>&lt;A href="http://h71000.www7.hp.com/doc/73final/4548/4548pro_011.html#index_x_368" target="_blank"&gt;http://h71000.www7.hp.com/doc/73final/4548/4548pro_011.html#index_x_368&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Can you post the result of ANAL/IMAGE&lt;BR /&gt;(the first few pages see the flags)</description>
      <pubDate>Wed, 04 May 2005 10:57:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899838#M32106</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-05-04T10:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899839#M32107</link>
      <description>The first 3 pages of the anal/image report follows.  I also tried setting the DBG$IMAGE_DSF_PATH logical name to no avail.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;Analyze Image                                 4-MAY-2005 12:05:06.48   Page 1&lt;BR /&gt;$1$DGA1610:[fake.directory.name]foo.EXE;13&lt;BR /&gt;ANALYZ A07-04&lt;BR /&gt;&lt;BR /&gt;This is an OpenVMS Alpha image file&lt;BR /&gt;&lt;BR /&gt;IMAGE HEADER&lt;BR /&gt;&lt;BR /&gt; Fixed Header Information&lt;BR /&gt;&lt;BR /&gt;  image format major id: 3, minor id: 0&lt;BR /&gt;  header block count: 2&lt;BR /&gt;  image type: executable (EIHD$K_EXE)&lt;BR /&gt;  I/O channel count: default&lt;BR /&gt;  I/O pagelet count: default&lt;BR /&gt;  Symbol Vector Virtual Address: %X'00000000'&lt;BR /&gt;  Symbol Vector Size: 0 bytes&lt;BR /&gt;  Virtual Memory Block Size: 65536 (BPAGE = 16)&lt;BR /&gt;  Fixup Section Virtual Address: %X'00060000'&lt;BR /&gt;  linker flags:&lt;BR /&gt;   (0)  EIHD$V_LNKDEBUG      0&lt;BR /&gt;   (1)  EIHD$V_LNKNOTFR      0&lt;BR /&gt;   (2)  EIHD$V_NOP0BUFS      0&lt;BR /&gt;   (3)  EIHD$V_PICIMG        1&lt;BR /&gt;   (4)  EIHD$V_P0IMAGE       0&lt;BR /&gt;   (5)  EIHD$V_DBGDMT        1&lt;BR /&gt;   (6)  EIHD$V_INISHR        0&lt;BR /&gt;   (7)  EIHD$V_XLATED        0&lt;BR /&gt;   (8)  EIHD$V_BIND_CODE_SEC 0&lt;BR /&gt;   (9)  EIHD$V_BIND_DATA_SEC 0&lt;BR /&gt;   (10) EIHD$V_MKTHREADS     0&lt;BR /&gt;   (11) EIHD$V_UPCALLS       0&lt;BR /&gt;   (12) EIHD$V_OMV_READY     0&lt;BR /&gt;   (13) EIHD$V_EXT_BIND_SECT 0&lt;BR /&gt;&lt;BR /&gt; Image Activation Information&lt;BR /&gt;&lt;BR /&gt;  first transfer address:  %X'00000340'&lt;BR /&gt;  second transfer address: %X'000108D0'&lt;BR /&gt;  third transfer address:  %X'00010000'&lt;BR /&gt;&lt;BR /&gt; Global Symbol Table &amp;amp; Debug Symbol Table Information&lt;BR /&gt;&lt;BR /&gt;  debug symbol table VBN:  0, byte count: 0&lt;BR /&gt;  global symbol table VBN: 0, record count: 0&lt;BR /&gt;  debug module/psect table VBN: 0, byte count: 0&lt;BR /&gt;&lt;BR /&gt; Image Identification Information&lt;BR /&gt;&lt;BR /&gt;  image name: "FOO"&lt;BR /&gt;  image file identification: " "&lt;BR /&gt;  image file build identification: ""&lt;BR /&gt;  link date/time:  4-MAY-2005 12:01:00.36&lt;BR /&gt;  linker identification: "A13-01"&lt;BR /&gt;&lt;BR /&gt; Patch Information&lt;BR /&gt;&lt;BR /&gt;  There are no patches at this time.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;Analyze Image                                 4-MAY-2005 12:05:06.48   Page 2&lt;BR /&gt;$1$DGA1610:[fake.directory.name]foo.EXE;13&lt;BR /&gt;ANALYZ A07-04&lt;BR /&gt;&lt;BR /&gt; Image Section Descriptors (ISD)&lt;BR /&gt;&lt;BR /&gt;  1)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 4096&lt;BR /&gt;   base virtual address: %X'00010000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;   ISD flags:&lt;BR /&gt;    (0)  EISD$V_GBL           0&lt;BR /&gt;    (1)  EISD$V_CRF           1&lt;BR /&gt;    (2)  EISD$V_DZRO          0&lt;BR /&gt;    (3)  EISD$V_WRT           1&lt;BR /&gt;    (4)  EISD$V_INITALCODE    0&lt;BR /&gt;    (5)  EISD$V_BASED         0&lt;BR /&gt;    (6)  EISD$V_FIXUPVEC      0&lt;BR /&gt;    (7)  EISD$V_RESIDENT      0&lt;BR /&gt;    (8)  EISD$V_VECTOR        0&lt;BR /&gt;    (9)  EISD$V_PROTECT       0&lt;BR /&gt;    (10) EISD$V_LASTCLU       1&lt;BR /&gt;    (11) EISD$V_EXE           0&lt;BR /&gt;    (12) EISD$V_NONSHRADR     1&lt;BR /&gt;   section type: EISD$K_NORMAL&lt;BR /&gt;   base VBN: 3&lt;BR /&gt;&lt;BR /&gt;  2)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 512&lt;BR /&gt;   base virtual address: %X'00020000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;   ISD flags:&lt;BR /&gt;    (0)  EISD$V_GBL           0&lt;BR /&gt;    (1)  EISD$V_CRF           1&lt;BR /&gt;    (2)  EISD$V_DZRO          0&lt;BR /&gt;    (3)  EISD$V_WRT           1&lt;BR /&gt;    (4)  EISD$V_INITALCODE    0&lt;BR /&gt;    (5)  EISD$V_BASED         0&lt;BR /&gt;    (6)  EISD$V_FIXUPVEC      0&lt;BR /&gt;    (7)  EISD$V_RESIDENT      0&lt;BR /&gt;    (8)  EISD$V_VECTOR        0&lt;BR /&gt;    (9)  EISD$V_PROTECT       0&lt;BR /&gt;    (10) EISD$V_LASTCLU       1&lt;BR /&gt;    (11) EISD$V_EXE           0&lt;BR /&gt;    (12) EISD$V_NONSHRADR     0&lt;BR /&gt;   section type: EISD$K_NORMAL&lt;BR /&gt;   base VBN: 11&lt;BR /&gt;&lt;BR /&gt;  3)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 15872&lt;BR /&gt;   base virtual address: %X'00030000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;   ISD flags:&lt;BR /&gt;    (0)  EISD$V_GBL           0&lt;BR /&gt;    (1)  EISD$V_CRF           0&lt;BR /&gt;    (2)  EISD$V_DZRO          0&lt;BR /&gt;    (3)  EISD$V_WRT           0&lt;BR /&gt;    (4)  EISD$V_INITALCODE    0&lt;BR /&gt;    (5)  EISD$V_BASED         0&lt;BR /&gt; &lt;BR /&gt;Analyze Image                                 4-MAY-2005 12:05:06.48   Page 3&lt;BR /&gt;$1$DGA1610:[fake.directory.name]foo.EXE;13&lt;BR /&gt;ANALYZ A07-04&lt;BR /&gt;&lt;BR /&gt;    (6)  EISD$V_FIXUPVEC      0&lt;BR /&gt;    (7)  EISD$V_RESIDENT      0&lt;BR /&gt;    (8)  EISD$V_VECTOR        0&lt;BR /&gt;    (9)  EISD$V_PROTECT       0&lt;BR /&gt;    (10) EISD$V_LASTCLU       1&lt;BR /&gt;    (11) EISD$V_EXE           1&lt;BR /&gt;    (12) EISD$V_NONSHRADR     0&lt;BR /&gt;   section type: EISD$K_NORMAL&lt;BR /&gt;   base VBN: 12&lt;BR /&gt;&lt;BR /&gt;  4)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 5120&lt;BR /&gt;   base virtual address: %X'00040000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;   ISD flags:&lt;BR /&gt;    (0)  EISD$V_GBL           0&lt;BR /&gt;    (1)  EISD$V_CRF           0&lt;BR /&gt;    (2)  EISD$V_DZRO          0&lt;BR /&gt;    (3)  EISD$V_WRT           0&lt;BR /&gt;    (4)  EISD$V_INITALCODE    0&lt;BR /&gt;    (5)  EISD$V_BASED         0&lt;BR /&gt;    (6)  EISD$V_FIXUPVEC      0&lt;BR /&gt;    (7)  EISD$V_RESIDENT      0&lt;BR /&gt;    (8)  EISD$V_VECTOR        1&lt;BR /&gt;    (9)  EISD$V_PROTECT       1&lt;BR /&gt;    (10) EISD$V_LASTCLU       1&lt;BR /&gt;    (11) EISD$V_EXE           0&lt;BR /&gt;    (12) EISD$V_NONSHRADR     0&lt;BR /&gt;   section type: EISD$K_NORMAL&lt;BR /&gt;   base VBN: 43&lt;BR /&gt;&lt;BR /&gt;  5)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 512&lt;BR /&gt;   base virtual address: %X'00050000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;   ISD flags:&lt;BR /&gt;    (0)  EISD$V_GBL           0&lt;BR /&gt;    (1)  EISD$V_CRF           0&lt;BR /&gt;    (2)  EISD$V_DZRO          1&lt;BR /&gt;    (3)  EISD$V_WRT           1&lt;BR /&gt;    (4)  EISD$V_INITALCODE    0&lt;BR /&gt;    (5)  EISD$V_BASED         0&lt;BR /&gt;    (6)  EISD$V_FIXUPVEC      0&lt;BR /&gt;    (7)  EISD$V_RESIDENT      0&lt;BR /&gt;    (8)  EISD$V_VECTOR        0&lt;BR /&gt;    (9)  EISD$V_PROTECT       0&lt;BR /&gt;    (10) EISD$V_LASTCLU       1&lt;BR /&gt;    (11) EISD$V_EXE           0&lt;BR /&gt;    (12) EISD$V_NONSHRADR     0&lt;BR /&gt;   section type: EISD$K_NORMAL&lt;BR /&gt;&lt;BR /&gt;  6)  image section descriptor (36 bytes)&lt;BR /&gt;   byte count: 1024&lt;BR /&gt;   base virtual address: %X'00060000' (P0 space)&lt;BR /&gt;   page fault cluster size: default&lt;BR /&gt;</description>
      <pubDate>Wed, 04 May 2005 12:11:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899839#M32107</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-04T12:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899840#M32108</link>
      <description>Posting the (entire) ANAL/IMAGE output as an attachment instead.  I didn't care for the way it looked in the post.</description>
      <pubDate>Wed, 04 May 2005 12:56:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899840#M32108</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-04T12:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899841#M32109</link>
      <description>Perhaps more instructive (or not) is running diff against the analyze/image output after CXXLINK'ing with and without /DSF (but with traceback in both cases).  Ingoring dates and executable file versions, the only difference is this "hunk".&lt;BR /&gt;&lt;BR /&gt;-------------------------------- 45 -------------------------------------------------------------- 45 -----------------------------&lt;BR /&gt;                debug symbol table VBN:  0, byte count: 0        |                  debug symbol table VBN:  55, byte count: 1024&lt;BR /&gt;                global symbol table VBN: 0, record count: 0      |                  global symbol table VBN: 0, record count: 0&lt;BR /&gt;                debug module/psect table VBN: 0, byte count: 0   |                  debug module/psect table VBN: 57, byte count: 1&lt;BR /&gt;&lt;BR /&gt;Well, yes, that looks awful too, so I'll attach it as well.</description>
      <pubDate>Wed, 04 May 2005 13:06:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899841#M32109</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-04T13:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899842#M32110</link>
      <description>This is a design limitation.&lt;BR /&gt;&lt;BR /&gt;The linker is not distinguishing between&lt;BR /&gt;debug records and tbt (traceback) records.&lt;BR /&gt;When /DSF is used, debug and tbt records are&lt;BR /&gt;being moved to the DSF file hence you get&lt;BR /&gt;no traceback in the image.&lt;BR /&gt;&lt;BR /&gt;The work around we use in VMS engineering is&lt;BR /&gt;to link the program twice. Once with &lt;BR /&gt;traceback and once for the DSF creation.&lt;BR /&gt;&lt;BR /&gt;This problem has been fixed on IA64.&lt;BR /&gt;&lt;BR /&gt;Guy Peleg&lt;BR /&gt;Alpha Linker team</description>
      <pubDate>Wed, 04 May 2005 22:22:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899842#M32110</guid>
      <dc:creator>Guy Peleg</dc:creator>
      <dc:date>2005-05-04T22:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899843#M32111</link>
      <description>Off topic but - is it just my impression but is Guy Peleg involved in every part of VMS? :-)&lt;BR /&gt;&lt;BR /&gt;(DCL, LMF, Linker, ... and so on)</description>
      <pubDate>Thu, 05 May 2005 04:27:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899843#M32111</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-05-05T04:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899844#M32112</link>
      <description>&amp;gt; This is a design limitation.&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; The linker is not distinguishing between&lt;BR /&gt;&amp;gt; debug records and tbt (traceback) records.&lt;BR /&gt;&amp;gt; When /DSF is used, debug and tbt records are&lt;BR /&gt;&amp;gt; being moved to the DSF file hence you get&lt;BR /&gt;&amp;gt; no traceback in the image.&lt;BR /&gt;&lt;BR /&gt;Thanks for the explanation.  I guess I was hoping that the traceback&lt;BR /&gt;mechanism would try to find the DSF file at run time.  Kind of a long&lt;BR /&gt;shot I'll admit.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; The work around we use in VMS engineering is&lt;BR /&gt;&amp;gt; to link the program twice. Once with&lt;BR /&gt;&amp;gt; traceback and once for the DSF creation.&lt;BR /&gt;&lt;BR /&gt;Unfortunately, for me, that almost defeats the purpose of the /DSF qualifier.  I was linking twice before, I was hoping to eliminate that by using /DSF.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; This problem has been fixed on IA64.&lt;BR /&gt;&lt;BR /&gt;Now I am curious what the solution is on IA64.  [I'll leave this open for a bit in&lt;BR /&gt;case Guy wants to answer.]&lt;BR /&gt;</description>
      <pubDate>Thu, 05 May 2005 10:02:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899844#M32112</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-05T10:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899845#M32113</link>
      <description>Hi Bruce,&lt;BR /&gt;&lt;BR /&gt;Sorry for disappointing you ;-)&lt;BR /&gt;I spent a lot of cycles trying to fix&lt;BR /&gt;it but so far nothing....I promise to &lt;BR /&gt;try again but I can't give you an ETA....&lt;BR /&gt;&lt;BR /&gt;IA64 uses an industry standard image &amp;amp; &lt;BR /&gt;debug format (ELF/DWARF from Intel), &lt;BR /&gt;that required a completely new linker. &lt;BR /&gt;&lt;BR /&gt;While on the subject of Linker/Traceback, &lt;BR /&gt;until recently, if you installed an image&lt;BR /&gt;resident, you lost traceback. We modified the linker and the TRACE facility to &lt;BR /&gt;provide traceback for images installed &lt;BR /&gt;resident. There was also a limit on the size&lt;BR /&gt;of the code section - 32MB, we removed this&lt;BR /&gt;limitation as well. This is all available &lt;BR /&gt;with the latest LINKER and TRACE kits for&lt;BR /&gt;V7.3-1.&lt;BR /&gt;&lt;BR /&gt;Guy</description>
      <pubDate>Thu, 05 May 2005 10:14:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899845#M32113</guid>
      <dc:creator>Guy Peleg</dc:creator>
      <dc:date>2005-05-05T10:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: LINK /DSF and traceback.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899846#M32114</link>
      <description>Thanks again, Guy.&lt;BR /&gt;&lt;BR /&gt;To answer my refute my own remark about the usefulness of /DSF, of course it still can be useful for analyzing crash dumps, so "Once with traceback and once for the DSF creation" does indeed make sense.&lt;BR /&gt;</description>
      <pubDate>Thu, 05 May 2005 11:57:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/link-dsf-and-traceback/m-p/4899846#M32114</guid>
      <dc:creator>Bruce Visscher_1</dc:creator>
      <dc:date>2005-05-05T11:57:36Z</dc:date>
    </item>
  </channel>
</rss>

