<?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: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493841#M42837</link>
    <description>&lt;!--!*#--&gt;&amp;gt; Toss in a full display [...]&lt;BR /&gt;&lt;BR /&gt;Hey.  Fingers broken?  Sold/junked your last&lt;BR /&gt;Alpha?&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;Command Line&lt;BR /&gt;------- ----&lt;BR /&gt;&lt;BR /&gt;CC badcondit.c/LIST/SHOW=(ALL,NOMESSAGE)&lt;BR /&gt;[...]&lt;BR /&gt; I1         708 int    strcmp  (const char *__s1, const char *__s2);&lt;BR /&gt;[...]&lt;BR /&gt; I1         817     int  strcasecmp(const char *, const char *);&lt;BR /&gt;[...]&lt;BR /&gt; I1         937 #      pragma __use_linkage __str_link2 (strcmp)&lt;BR /&gt;[...]&lt;BR /&gt;      1    1003     int (*cmp) (const char *, const char *)&lt;BR /&gt;      1    1004             = opt_ignore_case ? strcasecmp : strcmp;&lt;BR /&gt;                ..............1                                      &lt;BR /&gt;%CC-E-BADCONDIT, (1) In the initializer for&lt;BR /&gt;cmp, a common type could not be determined&lt;BR /&gt;for the 2nd and 3rd operands ("strcasecmp"&lt;BR /&gt;and "strcmp") of a conditional operator.&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If that's the entire C code here (and I'm&lt;BR /&gt;&amp;gt; guessing not), then that opt_ignore_case&lt;BR /&gt;&amp;gt; seems odd.&lt;BR /&gt;&lt;BR /&gt;It's not the whole original source file, just&lt;BR /&gt;the troublesome part.  In real life,&lt;BR /&gt;"opt_ignore_case" is "opt.ignore_case", and&lt;BR /&gt;it's set to something.  This is a simplified&lt;BR /&gt;test case, but the BADCONDIT complaint is&lt;BR /&gt;the same.&lt;BR /&gt;&lt;BR /&gt;On the IA64 system, I see:&lt;BR /&gt;[...]&lt;BR /&gt; I1    X    913 #if defined(__ALPHA) &amp;amp;&amp;amp; defined(__DECC)&lt;BR /&gt;[...]&lt;BR /&gt;I1    X    938 #      pragma __use_linkage __str_link2 (strcmp)&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;So, perhaps that #pragma is the&lt;BR /&gt;trouble-maker.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Or use the duct tape of C; lob some&lt;BR /&gt;&amp;gt; void-casts at the code.&lt;BR /&gt;&lt;BR /&gt;Adding the semi-realistic "(int (*)())"&lt;BR /&gt;before "strcmp" and "strcasecmp" in the "?:"&lt;BR /&gt;statement convinces the compiler that they&lt;BR /&gt;have the same type, clearing the complaint,&lt;BR /&gt;but I'd rather not try to persuade the&lt;BR /&gt;program's maintainer that he should add that,&lt;BR /&gt;when no one else has this problem.&lt;BR /&gt;&lt;BR /&gt;Casting only "strcmp" (leaving "strcasecmp"&lt;BR /&gt;unmolested) seems to fix it, too, so I'm&lt;BR /&gt;leaning toward assigning blame to that&lt;BR /&gt;mystery #pragma.</description>
    <pubDate>Tue, 08 Sep 2009 19:45:49 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2009-09-08T19:45:49Z</dc:date>
    <item>
      <title>HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493839#M42835</link>
      <description>&lt;!--!*#--&gt;alp $ cc /version&lt;BR /&gt;HP C V7.3-009 on OpenVMS Alpha V7.3-2  &lt;BR /&gt;&lt;BR /&gt;alp $ cc badcondit.c&lt;BR /&gt;&lt;BR /&gt;            = opt_ignore_case ? strcasecmp : strcmp;&lt;BR /&gt;..............^&lt;BR /&gt;%CC-E-BADCONDIT, In the initializer for cmp, a common type could not be determin&lt;BR /&gt;ed for the 2nd and 3rd operands ("strcasecmp" and "strcmp") of a conditional ope&lt;BR /&gt;rator.&lt;BR /&gt;at line number 8 in file ALP$DKA0:[SMS]BADCONDIT.C;1&lt;BR /&gt;&lt;BR /&gt;alp $ type badcondit.c&lt;BR /&gt;#include &lt;STRING.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main( void)&lt;BR /&gt;{&lt;BR /&gt;    int opt_ignore_case;&lt;BR /&gt;&lt;BR /&gt;    int (*cmp) (const char *, const char *)&lt;BR /&gt;            = opt_ignore_case ? strcasecmp : strcmp;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;There seems to me to be no significant&lt;BR /&gt;difference between the declarations (in&lt;BR /&gt;&lt;STRING.H&gt;) of srtcmp() and strcasecmp():&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;int    strcmp  (const char *__s1, const char *__s2);&lt;BR /&gt;[...]&lt;BR /&gt;    int  strcasecmp(const char *, const char *);&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;No such problem was seen in a different&lt;BR /&gt;(newer?) environment:&lt;BR /&gt;&lt;BR /&gt;it $ cc /version&lt;BR /&gt;HP C V7.3-018 on OpenVMS IA64 V8.3-1H1&lt;BR /&gt;it $ cc badcondit.c&lt;BR /&gt;it $ &lt;BR /&gt;&lt;BR /&gt;Known problem or not?&lt;BR /&gt;&lt;BR /&gt;Any patch/product kit available to a&lt;BR /&gt;non-paying peon?&lt;BR /&gt;&lt;BR /&gt;An annoying type cast seems to work around the&lt;BR /&gt;problem, but it's not my code, so adding code&lt;BR /&gt;clutter is not the ideal solution.&lt;/STRING.H&gt;&lt;/STRING.H&gt;</description>
      <pubDate>Tue, 08 Sep 2009 18:01:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493839#M42835</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-08T18:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493840#M42836</link>
      <description>Toss in a full display of the macro expansions in the listing output here; these calls are among those that can get an extra layer or three of expansions behind the scenes.&lt;BR /&gt;&lt;BR /&gt;If that's the entire C code here (and I'm guessing not), then that  opt_ignore_case seems odd.&lt;BR /&gt;&lt;BR /&gt;Or use the duct tape of C; lob some void-casts at the code.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Sep 2009 18:57:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493840#M42836</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-09-08T18:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493841#M42837</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Toss in a full display [...]&lt;BR /&gt;&lt;BR /&gt;Hey.  Fingers broken?  Sold/junked your last&lt;BR /&gt;Alpha?&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;Command Line&lt;BR /&gt;------- ----&lt;BR /&gt;&lt;BR /&gt;CC badcondit.c/LIST/SHOW=(ALL,NOMESSAGE)&lt;BR /&gt;[...]&lt;BR /&gt; I1         708 int    strcmp  (const char *__s1, const char *__s2);&lt;BR /&gt;[...]&lt;BR /&gt; I1         817     int  strcasecmp(const char *, const char *);&lt;BR /&gt;[...]&lt;BR /&gt; I1         937 #      pragma __use_linkage __str_link2 (strcmp)&lt;BR /&gt;[...]&lt;BR /&gt;      1    1003     int (*cmp) (const char *, const char *)&lt;BR /&gt;      1    1004             = opt_ignore_case ? strcasecmp : strcmp;&lt;BR /&gt;                ..............1                                      &lt;BR /&gt;%CC-E-BADCONDIT, (1) In the initializer for&lt;BR /&gt;cmp, a common type could not be determined&lt;BR /&gt;for the 2nd and 3rd operands ("strcasecmp"&lt;BR /&gt;and "strcmp") of a conditional operator.&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If that's the entire C code here (and I'm&lt;BR /&gt;&amp;gt; guessing not), then that opt_ignore_case&lt;BR /&gt;&amp;gt; seems odd.&lt;BR /&gt;&lt;BR /&gt;It's not the whole original source file, just&lt;BR /&gt;the troublesome part.  In real life,&lt;BR /&gt;"opt_ignore_case" is "opt.ignore_case", and&lt;BR /&gt;it's set to something.  This is a simplified&lt;BR /&gt;test case, but the BADCONDIT complaint is&lt;BR /&gt;the same.&lt;BR /&gt;&lt;BR /&gt;On the IA64 system, I see:&lt;BR /&gt;[...]&lt;BR /&gt; I1    X    913 #if defined(__ALPHA) &amp;amp;&amp;amp; defined(__DECC)&lt;BR /&gt;[...]&lt;BR /&gt;I1    X    938 #      pragma __use_linkage __str_link2 (strcmp)&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;So, perhaps that #pragma is the&lt;BR /&gt;trouble-maker.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Or use the duct tape of C; lob some&lt;BR /&gt;&amp;gt; void-casts at the code.&lt;BR /&gt;&lt;BR /&gt;Adding the semi-realistic "(int (*)())"&lt;BR /&gt;before "strcmp" and "strcasecmp" in the "?:"&lt;BR /&gt;statement convinces the compiler that they&lt;BR /&gt;have the same type, clearing the complaint,&lt;BR /&gt;but I'd rather not try to persuade the&lt;BR /&gt;program's maintainer that he should add that,&lt;BR /&gt;when no one else has this problem.&lt;BR /&gt;&lt;BR /&gt;Casting only "strcmp" (leaving "strcasecmp"&lt;BR /&gt;unmolested) seems to fix it, too, so I'm&lt;BR /&gt;leaning toward assigning blame to that&lt;BR /&gt;mystery #pragma.</description>
      <pubDate>Tue, 08 Sep 2009 19:45:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493841#M42837</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-08T19:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493842#M42838</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Casting only "strcmp" (leaving "strcasecmp"&lt;BR /&gt;&amp;gt;unmolested) seems to fix it, too, so I'm&lt;BR /&gt;&amp;gt;leaning toward assigning blame to that&lt;BR /&gt;&amp;gt;mystery #pragma.&lt;BR /&gt;&lt;BR /&gt;just for laughs, what happens if you add&lt;BR /&gt;&lt;BR /&gt; #pragma __use_linkage __str_link2 (strcasecmp)&lt;BR /&gt;&lt;BR /&gt;?&lt;BR /&gt;sure it's still code clutter, but it could be hidden in a header.&lt;BR /&gt;&lt;BR /&gt;(sorry, I don't have a compiler handy to test it myself).</description>
      <pubDate>Wed, 09 Sep 2009 02:33:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493842#M42838</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2009-09-09T02:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493843#M42839</link>
      <description>&lt;!--!*#--&gt;&amp;gt; #pragma __use_linkage __str_link2 (strcasecmp)&lt;BR /&gt;&lt;BR /&gt;I live to serve.&lt;BR /&gt;&lt;BR /&gt;alp $ gdiff badcondit.c badcondit_2.c&lt;BR /&gt;2a3,4&lt;BR /&gt;&amp;gt; #pragma __use_linkage __str_link2 (strcasecmp)&lt;BR /&gt;&amp;gt; &lt;BR /&gt;alp $ &lt;BR /&gt;&lt;BR /&gt;alp $ cc badcondit_2.c&lt;BR /&gt;&lt;BR /&gt;            = opt_ignore_case ? strcasecmp : strcmp;&lt;BR /&gt;..............^&lt;BR /&gt;%CC-W-PTRMISMATCH, In the initializer for cmp, the referenced type of the pointe&lt;BR /&gt;r value "opt_ignore_case?strcasecmp:strcmp" is "function (pointer to const char,&lt;BR /&gt; pointer to const char) returning int [with linkage __str_link2]", which is not &lt;BR /&gt;compatible with&lt;BR /&gt; "function (pointer to const char, pointer to const char) returning int".&lt;BR /&gt;at line number 10 in file ALP$DKA0:[SMS]BADCONDIT_2.C;1&lt;BR /&gt;&lt;BR /&gt;I don't know what this stuff means, but I may&lt;BR /&gt;be little more confused than the compiler.&lt;BR /&gt;&lt;BR /&gt;Looking at &lt;STRING.H&gt;, it seems that these&lt;BR /&gt;"#pragma __linkage" things have to do with&lt;BR /&gt;exotic register usage:&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;/*&lt;BR /&gt;**  DEC C RTL Performance (Linkages)&lt;BR /&gt;**&lt;BR /&gt;**  Certain DEC C RTL functions are defined with linkages declared&lt;BR /&gt;**  which gives the compiler more information as to register usage in&lt;BR /&gt;**  the implementation.&lt;BR /&gt;*/&lt;BR /&gt;#if defined(__ALPHA) &amp;amp;&amp;amp; defined(__DECC)&lt;BR /&gt;#   pragma __linkage __str_link1 = (\&lt;BR /&gt;        __notused(__r1,__r2,__r3,__r4,__r5,__r6,__r7,__r8,__r9,__r10,__r11,\&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;So applying one of them to some unsuspecting&lt;BR /&gt;function might be unwise in any case.&lt;BR /&gt;&lt;BR /&gt;[...]&lt;BR /&gt;#elif defined(__ia64) &amp;amp;&amp;amp; defined(__DECC)&lt;BR /&gt;/*&lt;BR /&gt;**  Should define "similar" linkages for ia64, but they cannot be exactly&lt;BR /&gt;**  the same because the register conventions are different.&lt;BR /&gt;**   ***TBD for ia64***&lt;BR /&gt;*/&lt;BR /&gt;#endif&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;Might not be such a clever idea after all.&lt;BR /&gt;&lt;BR /&gt;If this stuff makes compatible-looking&lt;BR /&gt;functions incompatible, then it might be nice&lt;BR /&gt;to get rid of it, or else make it easy for&lt;BR /&gt;the user to get rid of it.  I hope that that&lt;BR /&gt;"Performance" gain was a big one.&lt;/STRING.H&gt;</description>
      <pubDate>Wed, 09 Sep 2009 03:16:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493843#M42839</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-09T03:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493844#M42840</link>
      <description>It does look to be the linkage stuff at the core of the problem here, and it looks that the linkage stuff is subtly busted. &lt;BR /&gt;&lt;BR /&gt;I've verified this by ifdef-ing the linkage stuff into oblivion in string.h.&lt;BR /&gt;&lt;BR /&gt;I don't find a way to disable this stuff, either.&lt;BR /&gt;&lt;BR /&gt;HP C V7.3-009 on OpenVMS Alpha V8.3</description>
      <pubDate>Wed, 09 Sep 2009 13:25:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493844#M42840</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-09-09T13:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493845#M42841</link>
      <description>&lt;!--!*#--&gt;On the bright side, if you don't like&lt;BR /&gt;%CC-E-BADCONDIT, with a little code&lt;BR /&gt;restructuring, you can drop it down to a mere&lt;BR /&gt;%CC-W-PTRMISMATCH.&lt;BR /&gt;&lt;BR /&gt;alp $ type badcondit_4.c&lt;BR /&gt;#include &lt;STRING.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main( void)&lt;BR /&gt;{&lt;BR /&gt;    int opt_ignore_case;&lt;BR /&gt;&lt;BR /&gt;    int (*cmp) (const char *, const char *);&lt;BR /&gt;&lt;BR /&gt;    if (opt_ignore_case)&lt;BR /&gt;        cmp = strcasecmp;&lt;BR /&gt;    else&lt;BR /&gt;        cmp = strcmp;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;alp $ cc badcondit_4.c&lt;BR /&gt;&lt;BR /&gt;        cmp = strcmp;&lt;BR /&gt;........^&lt;BR /&gt;%CC-W-PTRMISMATCH, In this statement, the referenced type of the pointer value "&lt;BR /&gt;strcmp" is "function (pointer to const char, pointer to const char) returning in&lt;BR /&gt;t [with linkage __str_link2]", which is not compatible with "function (pointer t&lt;BR /&gt;o const char, p&lt;BR /&gt;ointer to const char) returning int".&lt;BR /&gt;at line number 12 in file ALP$DKA0:[SMS]BADCONDIT_4.C;1&lt;BR /&gt;&lt;BR /&gt;Again, slapping the senseless type cast onto&lt;BR /&gt;"strcmp" clears this (milder) complaint.&lt;/STRING.H&gt;</description>
      <pubDate>Wed, 09 Sep 2009 14:45:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493845#M42841</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-09T14:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493846#M42842</link>
      <description>If the pragmas are just _notused() register sets, then the people who wrote them got a little carried away.  For the R1 thru R11 one that you listed, R2 thru R15 are already in the preserved register set on Alpha.  The compiler would have assumed those anyway.  Adding R1 tells the compiler that it is OK to leave something in R1 across the call to strcmp() (or whatever it actually gets mapped onto).  I don't know if you can make the same assumption about strcasecmp().  Does it save or not save R1?  (From the calling routine's point of view, it can't tell if the called routine really doesn't use R1 or if it save/restores R1.  Only the called routine and the unwind information really cares.)  My rule is never to over specify.  &lt;BR /&gt;&lt;BR /&gt;For I64, telling the compiler that the called routine doesn't use certain registers in the low 32 register set is interesting, but not very helpful in the longrun as there are ample registers above 32 that will be preserved across the call to strcmp() or strcasecmp().&lt;BR /&gt;&lt;BR /&gt;For indirect routine calls, what should the compiler assume about the target routine's calling conventions?  I think the compiler is just trying to avoid getting into trouble.  Certainly for these "simple" cases you could make an argument that it could figure it out.  You could submit a bug report or enhancement request to see if it could be improved.</description>
      <pubDate>Thu, 10 Sep 2009 18:53:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493846#M42842</guid>
      <dc:creator>John Reagan</dc:creator>
      <dc:date>2009-09-10T18:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493847#M42843</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] then the people who wrote them got a&lt;BR /&gt;&amp;gt; little carried away.&lt;BR /&gt;&lt;BR /&gt;That was certainly my impression.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; You could submit a bug report or&lt;BR /&gt;&amp;gt; enhancement request to see if it could be&lt;BR /&gt;&amp;gt; improved.&lt;BR /&gt;&lt;BR /&gt;I (just now) submitted a pointer to this&lt;BR /&gt;thread to the "OpenVMS C Product feedback"&lt;BR /&gt;Web form, which is about all I can do as a&lt;BR /&gt;non-paying peon.  My message is important to&lt;BR /&gt;them, and, like all such messages, it will be&lt;BR /&gt;read.  Or so I've been told.</description>
      <pubDate>Thu, 10 Sep 2009 19:21:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493847#M42843</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-10T19:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493848#M42844</link>
      <description>The header file TODO comments around the OpenVMS I64 path implied that someone was thinking about making further changes, too.  :-)&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Sep 2009 19:41:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493848#M42844</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-09-10T19:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: HP C V7.3-009 on OpenVMS Alpha V7.3-2, spurious %CC-E-BADCONDIT?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493849#M42845</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] My message is important [...]&lt;BR /&gt;&lt;BR /&gt;Not obviously true.  Submissions from the&lt;BR /&gt;"OpenVMS C Product feedback" page:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/commercial/c/c_feedback.html" target="_blank"&gt;http://h71000.www7.hp.com/commercial/c/c_feedback.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;seem to vanish without a trace (not even an&lt;BR /&gt;auto-acknowledgement).&lt;BR /&gt;&lt;BR /&gt;A complaint about _that_ from the "Contact HP&lt;BR /&gt;OpenVMS Systems" page:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/fb_business_thanks.html" target="_blank"&gt;http://h71000.www7.hp.com/fb_business_thanks.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;did get a prompt auto-ack.  No sign of an&lt;BR /&gt;actual response, however.  Perhaps the&lt;BR /&gt;optical fiber to the other side of the world&lt;BR /&gt;got damaged.</description>
      <pubDate>Mon, 14 Sep 2009 21:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/hp-c-v7-3-009-on-openvms-alpha-v7-3-2-spurious-cc-e-badcondit/m-p/4493849#M42845</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-09-14T21:19:29Z</dc:date>
    </item>
  </channel>
</rss>

