<?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 ldiv.c in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010303#M96259</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Iam getting an error regarding ldiv.c. I gave a global search and i was not able to find this ldiv.c file anywhere. While executing the program Iam getting a core as follows&lt;BR /&gt;&lt;BR /&gt;Program terminated with signal 8, Arithmetic exception.&lt;BR /&gt;FPE_INTDIV - integer divide by zero&lt;BR /&gt;#0  0x60000000c5347060:2 in _div32I () at ldiv.c:558&lt;BR /&gt;558     ldiv.c: No such file or directory.&lt;BR /&gt;        in ldiv.c&lt;BR /&gt;(gdb) bt&lt;BR /&gt;#0  0x60000000c5347060:2 in _div32I () at ldiv.c:558&lt;BR /&gt;#1  0x60000000c5288950:0 in DumpTime () at common.c:6702&lt;BR /&gt;#2  0x60000000c52e1240:0 in MontPendingNotice (mspn=1) at pendntfc.c:353&lt;BR /&gt;#3  0x400c420:0 in GetWork () at fabrptmod.c:1409&lt;BR /&gt;#4  0x4006a50:0 in main (argc=5, argv=0x7ffff060) at fabrptmod.c:707&lt;BR /&gt;&lt;BR /&gt;Please help me in this regard.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;nan</description>
    <pubDate>Thu, 31 May 2007 00:37:54 GMT</pubDate>
    <dc:creator>rajanandhini</dc:creator>
    <dc:date>2007-05-31T00:37:54Z</dc:date>
    <item>
      <title>ldiv.c</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010303#M96259</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Iam getting an error regarding ldiv.c. I gave a global search and i was not able to find this ldiv.c file anywhere. While executing the program Iam getting a core as follows&lt;BR /&gt;&lt;BR /&gt;Program terminated with signal 8, Arithmetic exception.&lt;BR /&gt;FPE_INTDIV - integer divide by zero&lt;BR /&gt;#0  0x60000000c5347060:2 in _div32I () at ldiv.c:558&lt;BR /&gt;558     ldiv.c: No such file or directory.&lt;BR /&gt;        in ldiv.c&lt;BR /&gt;(gdb) bt&lt;BR /&gt;#0  0x60000000c5347060:2 in _div32I () at ldiv.c:558&lt;BR /&gt;#1  0x60000000c5288950:0 in DumpTime () at common.c:6702&lt;BR /&gt;#2  0x60000000c52e1240:0 in MontPendingNotice (mspn=1) at pendntfc.c:353&lt;BR /&gt;#3  0x400c420:0 in GetWork () at fabrptmod.c:1409&lt;BR /&gt;#4  0x4006a50:0 in main (argc=5, argv=0x7ffff060) at fabrptmod.c:707&lt;BR /&gt;&lt;BR /&gt;Please help me in this regard.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;nan</description>
      <pubDate>Thu, 31 May 2007 00:37:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010303#M96259</guid>
      <dc:creator>rajanandhini</dc:creator>
      <dc:date>2007-05-31T00:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: ldiv.c</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010304#M96260</link>
      <description>I'd forget about ldiv.c, which sounds like&lt;BR /&gt;part of a system library, and worry about&lt;BR /&gt;line 6702 in common.c, where you appear to&lt;BR /&gt;be trying to divide something by zero.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; nan&lt;BR /&gt;&lt;BR /&gt;That's close.  Look for "nan" (not a number)&lt;BR /&gt;in /usr/include/math.h.</description>
      <pubDate>Thu, 31 May 2007 02:43:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010304#M96260</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-05-31T02:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: ldiv.c</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010305#M96261</link>
      <description>The error you are getting is a divide by zero, which is being detected in the library module _div32l, the source file for which just happens to be ldiv.c.  Since you don't have the source for the library module, gdb can't find it.  This is not an error.&lt;BR /&gt;&lt;BR /&gt;You need to look at the calling code to determine why zero is being passed.&lt;BR /&gt;&lt;BR /&gt;Andrew</description>
      <pubDate>Thu, 31 May 2007 02:44:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010305#M96261</guid>
      <dc:creator>Andrew Merritt_2</dc:creator>
      <dc:date>2007-05-31T02:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: ldiv.c</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010306#M96262</link>
      <description>&lt;P&gt;&amp;gt;Steven: &amp;gt; nan&lt;BR /&gt;&amp;gt;That's close. Look for "NaN" (not a number)&lt;BR /&gt;&lt;BR /&gt;Not quite. When you divide non-zero by 0, you get an INFINITY. :-)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Andrew: library module _div32l ...&lt;BR /&gt;&lt;BR /&gt;Yes, this is defined in /usr/lib/hpux##/milli.a.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2011 05:44:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ldiv-c/m-p/4010306#M96262</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2011-10-02T05:44:26Z</dc:date>
    </item>
  </channel>
</rss>

