<?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: gethostbyname fails with core dump in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631236#M558246</link>
    <description>PHCO_28605 (which requires PHCO_24402) fixes a buffer overflow in gethostbyname() and could easily be your problem. I would also look at libc patches (PHCO_33533).&lt;BR /&gt;&lt;BR /&gt;Of course, the thing to do is get a stack trace.</description>
    <pubDate>Wed, 21 Sep 2005 09:14:10 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2005-09-21T09:14:10Z</dc:date>
    <item>
      <title>gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631235#M558245</link>
      <description>The following program fails with a core dump in gethostbyname on a computer running HP-UX 11.11. It is compiled with aCC and linked with some shared libraries. It works fine on other computers or when not linked with the shared libraries. Has anybody an idea of what happens?&lt;BR /&gt;&lt;BR /&gt;#include &lt;NETDB.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main( int argc, char *argv[] )&lt;BR /&gt;{&lt;BR /&gt;struct hostent * toto ;&lt;BR /&gt;&lt;BR /&gt;printf( "Call gethostbyname\n" );&lt;BR /&gt;toto = gethostbyname( "tam2012" );&lt;BR /&gt;printf("gethostbyname return 0x%08x\n", toto );&lt;BR /&gt;}&lt;BR /&gt;&lt;/NETDB.H&gt;</description>
      <pubDate>Wed, 21 Sep 2005 08:15:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631235#M558245</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-21T08:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631236#M558246</link>
      <description>PHCO_28605 (which requires PHCO_24402) fixes a buffer overflow in gethostbyname() and could easily be your problem. I would also look at libc patches (PHCO_33533).&lt;BR /&gt;&lt;BR /&gt;Of course, the thing to do is get a stack trace.</description>
      <pubDate>Wed, 21 Sep 2005 09:14:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631236#M558246</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-09-21T09:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631237#M558247</link>
      <description>Thanks for your help.&lt;BR /&gt;I installed the patchs you were talking about and the result is the same.&lt;BR /&gt;&lt;BR /&gt;Here is a stack trace&lt;BR /&gt;&lt;BR /&gt;#0  0xc0137b30 in $$dyncall_external+0 () from /usr/lib/libc.2&lt;BR /&gt;(gdb) bt&lt;BR /&gt;#0  0xc0137b30 in $$dyncall_external+0 () from /usr/lib/libc.2&lt;BR /&gt;#1  0xc021f590 in __thread_once+0x78 () from /usr/lib/libc.2&lt;BR /&gt;#2  0xc00add08 in ent2result+0x3c () from /usr/lib/libnss_dns.1&lt;BR /&gt;#3  0xb9980 in nss_search+0x258 () from /opt/a1338/bin/./udpCGS&lt;BR /&gt;#4  0x71b50 in __gethostbyname_r+0x12c () from /opt/a1338/bin/./udpCGS&lt;BR /&gt;#5  0x71cac in gethostbyname+0x7c () from /opt/a1338/bin/./udpCGS&lt;BR /&gt;#6  0x20d44 in main (argc=1, argv=0x7b040454) at /a1338_mnt_dev/dubost/5.00/dev/udpCGS/src/udpCGS.c:354&lt;BR /&gt;&lt;BR /&gt;Best regards.&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Sep 2005 09:39:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631237#M558247</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-21T09:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631238#M558248</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;perhaps there is no memory allocated for the struct. Try this:&lt;BR /&gt;&lt;BR /&gt;#include &lt;NETDB.H&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main( int argc, char *argv[] )&lt;BR /&gt;{&lt;BR /&gt;struct hostent hhh;&lt;BR /&gt;struct hostent *toto = &amp;amp;hhh;&lt;BR /&gt;&lt;BR /&gt;printf( "Call gethostbyname\n" );&lt;BR /&gt;toto = gethostbyname(argv[1]);&lt;BR /&gt;printf("gethostbyname return %s\n", toto-&amp;gt;h_name);&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;/STDIO.H&gt;&lt;/NETDB.H&gt;</description>
      <pubDate>Fri, 23 Sep 2005 02:30:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631238#M558248</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2005-09-23T02:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631239#M558249</link>
      <description>gethostbyname() will return a NULL pointer if the named host cannot be found. You are then trying to print something from a structure pointed to by potentially a NULL pointer which would core dump. Check the return value of gethostbyname() first!&lt;BR /&gt;&lt;BR /&gt;toto = gethostbyname( "tam2012" );&lt;BR /&gt;&lt;BR /&gt;if (toto == (struct hostent *) NULL)&lt;BR /&gt;{&lt;BR /&gt;printf("couldn't find host!\n");&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;printf("gethostbyname return 0x%08x\n", toto );&lt;BR /&gt;}&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 03:05:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631239#M558249</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-09-23T03:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631240#M558250</link>
      <description>Thanks for your help&lt;BR /&gt;In fact, gethostbyname does not return.&lt;BR /&gt;It core dumps.&lt;BR /&gt;I suspect a problem with shared libraries.&lt;BR /&gt;The program is linked with shared libraries.&lt;BR /&gt;If I don't link with the libraries, everything goes fine.</description>
      <pubDate>Fri, 23 Sep 2005 03:11:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631240#M558250</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-23T03:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631241#M558251</link>
      <description>Sorry, wasn't clear on that point! :)&lt;BR /&gt;&lt;BR /&gt;In which case, what does &lt;BR /&gt;&lt;BR /&gt;# ldd your_exe&lt;BR /&gt;&lt;BR /&gt;give you ?&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 03:14:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631241#M558251</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-09-23T03:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631242#M558252</link>
      <description>Include stdlib.h header file, compile and run it. Are you getting it now?&lt;BR /&gt;&lt;BR /&gt;#include &lt;NETDB.H&gt;&lt;BR /&gt;#include &lt;STDLIB.H&gt;&lt;BR /&gt;&lt;BR /&gt;int main( int argc, char *argv[] )&lt;BR /&gt;{&lt;BR /&gt;struct hostent * toto ;&lt;BR /&gt;&lt;BR /&gt;printf( "Call gethostbyname\n" );&lt;BR /&gt;toto = gethostbyname( "tam2012" );&lt;BR /&gt;printf("gethostbyname return 0x%08x\n", toto );&lt;BR /&gt;return 0;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;If you get core still, paste informations for,&lt;BR /&gt;&lt;BR /&gt;# file core&lt;BR /&gt;# what core&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/STDLIB.H&gt;&lt;/NETDB.H&gt;</description>
      <pubDate>Fri, 23 Sep 2005 03:14:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631242#M558252</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-23T03:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631243#M558253</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Look at the following link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://groups.google.com/group/comp.databases.sybase/browse_thread/thread/9801f5e01bb48ea4/c1f42f7cfbb617bf?lnk=st&amp;amp;q=gethostbyname+HP-UX+core&amp;amp;rnum=9&amp;amp;hl=en#c1f42f7cfbb617bf" target="_blank"&gt;http://groups.google.com/group/comp.databases.sybase/browse_thread/thread/9801f5e01bb48ea4/c1f42f7cfbb617bf?lnk=st&amp;amp;q=gethostbyname+HP-UX+core&amp;amp;rnum=9&amp;amp;hl=en#c1f42f7cfbb617bf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It may be problem with shared libraries.</description>
      <pubDate>Fri, 23 Sep 2005 03:24:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631243#M558253</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2005-09-23T03:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631244#M558254</link>
      <description>Here is the result of "ldd udpCGS" :&lt;BR /&gt;&lt;BR /&gt;        /usr/lib/libdld.2 =&amp;gt;    /usr/lib/libdld.2&lt;BR /&gt;        /usr/lib/libc.2 =&amp;gt;      /usr/lib/libc.2&lt;BR /&gt;        /usr/lib/libdld.2 =&amp;gt;    /usr/lib/libdld.2&lt;BR /&gt;        /a1338_mnt_dev/dubost/5.00/dev/api_cxx/src/Msg_Daily/build/HPUX11-00-debug/libMsg_Daily.sl =&amp;gt;   /a1338_mnt_dev/dubost/5.00/dev/api_cxx/src/Msg_Daily/build/HPUX11-00-debug/libMsg_Daily.sl&lt;BR /&gt;        /a1338_mnt_dev/dubost/5.00/dev/adm-conf/CS_src/adminComm/build/HPUX11-00-debug/libadminComm.sl =&amp;gt;       /a1338_mnt_dev/dubost/5.00/dev/adm-conf/CS_src/adminComm/build/HPUX11-00-debug/libadminComm.sl&lt;BR /&gt;r&lt;BR /&gt;&lt;BR /&gt;Here is the result of "file core" :&lt;BR /&gt;&lt;BR /&gt;core:           core file from 'udpCGS' - received SIGBUS&lt;BR /&gt;&lt;BR /&gt;Here is the result of "what core" :&lt;BR /&gt;&lt;BR /&gt;core:&lt;BR /&gt;         $Header: /cgw_cvs/dev/udpCGS/src/udpCGS.c,v 5.000 2005/09/12 09:47:23 dupety Exp $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/include/common.h,v 5.000 2005/09/12 08:34:17 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/src/com_conf.c,v 5.000 2005/09/12 08:34:26 dupety Exp $ $Name:  $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/include/common.h,v 5.000 2005/09/12 08:34:17 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/src/com_log.c,v 4.500.2.1.4.2 2005/09/07 07:26:09 dupety Exp $ $Name:  $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $ PATCH/11.00:PHCO_28425  Mar  4 2003 07:15:43 $ &lt;BR /&gt;         $Revision: libxti.2:    STREAMS: PATCH_11.11 (PHNE_27703) Fri Sep 27 13:18:08 PDT 2002 $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/include/common.h,v 5.000 2005/09/12 08:34:17 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/adm-conf/CS_src/comm_functions.c,v 4.500.2.2 2005/07/11 14:12:58 dupety Exp $&lt;BR /&gt;         $Header: /cgw_cvs/dev/adm-conf/CS_src/comm_functions.h,v 4.500.2.2 2005/07/11 14:14:31 dupety Exp $&lt;BR /&gt;         $Header: /cgw_cvs/dev/adm-conf/common_src/adm_nmc.h,v 4.500 2005/03/29 13:34:06 dupety Exp $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/include/common.h,v 5.000 2005/09/12 08:34:17 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/api_cxx/src/Msg_Daily/Msg_Daily.cc,v 5.000 2005/09/12 08:33:15 dupety Exp $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/common/include/common.h,v 5.000 2005/09/12 08:34:17 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/api_cxx/src/Msg_Daily/api_Msg_Daily.cc,v 5.000 2005/09/12 08:33:20 dupety Exp $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $Header: /cgw_cvs/dev/api_cxx/src/ErrHandler/ErrHandler.cc,v 5.000 2005/09/12 08:33:23 dupety Exp $&lt;BR /&gt;         HPUX11_00 $Header: /cgw_cvs/dev/common/include/CDRC-portability.h,v 5.000 2005/09/12 08:34:04 dupety Exp $ $Name:  $&lt;BR /&gt;         $ PATCH_11.11/PHCO_33533  Jul 27 2005 02:12:39 $ &lt;BR /&gt;         SMART_BIND&lt;BR /&gt;        92453-07 dld dld dld.sl B.11.43 050125&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.</description>
      <pubDate>Fri, 23 Sep 2005 03:42:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631244#M558254</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-23T03:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631245#M558255</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Check the following link for the Patch:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://groups.google.com/group/comp.sys.hp.hpux/browse_thread/thread/2b5fa111c402dd1f/0101817d7e3b7b1c?lnk=st&amp;amp;q=gethostbyname+HP-UX+core&amp;amp;rnum=28&amp;amp;hl=en#0101817d7e3b7b1c" target="_blank"&gt;http://groups.google.com/group/comp.sys.hp.hpux/browse_thread/thread/2b5fa111c402dd1f/0101817d7e3b7b1c?lnk=st&amp;amp;q=gethostbyname+HP-UX+core&amp;amp;rnum=28&amp;amp;hl=en#0101817d7e3b7b1c&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 23 Sep 2005 03:50:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631245#M558255</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2005-09-23T03:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631246#M558256</link>
      <description>What is the compliation option you are using? I was experiencing same SIGBUS signal with thread programming. I hope you need to add few compiler flags. I will update on getting that.&lt;BR /&gt;&lt;BR /&gt;Before that, enable debug option -g with compiler and get gdb stack trace for core?&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 23 Sep 2005 03:53:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631246#M558256</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-23T03:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631247#M558257</link>
      <description>Compiler is aCC.&lt;BR /&gt;&lt;BR /&gt;Compilation flags are :&lt;BR /&gt;-c -g&lt;BR /&gt;&lt;BR /&gt;Compilation defines are :&lt;BR /&gt;-DHPUX11_00 -D_DEBUG_ -DHPUX -D_REENTRANT&lt;BR /&gt;&lt;BR /&gt;Link flags are:&lt;BR /&gt;-z -Z -Wl,+s,-a,shared_archive -AA -L/usr/lib -Wl,-a,archive -lpthread&lt;BR /&gt;&lt;BR /&gt;Stack trace is already given in the thread.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help</description>
      <pubDate>Fri, 23 Sep 2005 05:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631247#M558257</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-23T05:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631248#M558258</link>
      <description>You have read&lt;BR /&gt;&lt;BR /&gt;WARNINGS&lt;BR /&gt;&lt;BR /&gt;Programs that use the interfaces described in this manpage cannot be linked statically because the implementations of these functions employ dynamic loading and inking of shared objects at run time.&lt;BR /&gt;&lt;BR /&gt;In the man page?&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Sep 2005 05:48:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631248#M558258</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-09-23T05:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: gethostbyname fails with core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631249#M558259</link>
      <description>I tried to install the latest patchs for the C and C++ libraries and I have now a new error at the init of my program and before any function is called :&lt;BR /&gt;&lt;BR /&gt;#0  0xc020e5d8 in kill+0x10 () from /usr/lib/libc.2&lt;BR /&gt;#1  0xc01a71c4 in raise+0x24 () from /usr/lib/libc.2&lt;BR /&gt;#2  0xc01e9170 in abort_C+0x160 () from /usr/lib/libc.2&lt;BR /&gt;#3  0xc01e91cc in abort+0x1c () from /usr/lib/libc.2&lt;BR /&gt;#4  0xc0e3383c in std::terminate+0x38 () from /usr/lib/libCsup_v2.2&lt;BR /&gt;#5  0xc0e33cf4 in ThrowException+0x70 () from /usr/lib/libCsup_v2.2&lt;BR /&gt;#6  0xc0e34254 in __throw__FPvT1+0x14c () from /usr/lib/libCsup_v2.2&lt;BR /&gt;#7  0xc356e6cc in std::ios_base::setf+0x78 () from /usr/lib/libstd_v2.2&lt;BR /&gt;#8  0xc356e194 in std::ios_base::Init::Init+0x1df0 () from /usr/lib/libstd_v2.2&lt;BR /&gt;#9  0xc3224814 in std::__sinit_Msg_Daily_cc+0x24 () from /opt/a1338/lib/libMsg_Daily.sl&lt;BR /&gt;#10 0xc0e35ce0 in __shlInit+0x88 () from /usr/lib/libCsup_v2.2&lt;BR /&gt;#11 0xc32148b8 in _shlInit+0x20 () from /opt/a1338/lib/libMsg_Daily.sl&lt;BR /&gt;#12 0xc0e35618 in __shlinit+0xac () from /usr/lib/libCsup_v2.2&lt;BR /&gt;#13 0xc0e37b30 in _main+0xd8 () from /usr/lib/libCsup_v2.2&lt;BR /&gt;&lt;BR /&gt;What can I do with this. Thank for your help</description>
      <pubDate>Tue, 27 Sep 2005 03:55:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gethostbyname-fails-with-core-dump/m-p/3631249#M558259</guid>
      <dc:creator>Dubost_2</dc:creator>
      <dc:date>2005-09-27T03:55:14Z</dc:date>
    </item>
  </channel>
</rss>

