<?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: difference between core dumps file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596315#M828816</link>
    <description>Shiv --&lt;BR /&gt;&lt;BR /&gt;In the RC, we refer to the OS core dump as a "core dump" or "system dump" because it dumps the entire memory for the system when it occurs (either when the OS panics or when someone generates a Transfer of Control).  There are certain tools written to read this type of dump file:  adb, q4, and some additional tools that are internal to HP.&lt;BR /&gt;&lt;BR /&gt;We refer to a core file from an application or command as a "core file" or "application core file" (i.e. core FILE vs core DUMP since the Dump is made up of multiple files).  A (generally) different set of tools is used for debugging core FILES: adb, gdb, etc.  q4 (for instance) does NOT work on application core files.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Oz&lt;BR /&gt;</description>
    <pubDate>Thu, 04 Aug 2005 07:31:01 GMT</pubDate>
    <dc:creator>Kent Ostby</dc:creator>
    <dc:date>2005-08-04T07:31:01Z</dc:date>
    <item>
      <title>difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596309#M828810</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;I have heard that in case we want to take core dump of weblogic server on hpux 11i, we need to execute kill -3 pid (of wls managed server process id).&lt;BR /&gt;&lt;BR /&gt;Someone had suggested to take core dump; we need to execute kill -6 pid command. ( i didn't find  kill -6 option on hpux with man command).&lt;BR /&gt;&lt;BR /&gt;It seems java core dump and os core dumps are different ??&lt;BR /&gt;&lt;BR /&gt;Can someone shed some light on this ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Shiv&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Aug 2005 02:17:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596309#M828810</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-08-04T02:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596310#M828811</link>
      <description>kill -6&lt;BR /&gt;&lt;BR /&gt;send the SIGIOT or SIGABRT, abort signal to process.&lt;BR /&gt;&lt;BR /&gt;The default response to this signal is the process dumping a core file and terminating.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Aug 2005 02:25:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596310#M828811</guid>
      <dc:creator>Warren_9</dc:creator>
      <dc:date>2005-08-04T02:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596311#M828812</link>
      <description>hi shiv,&lt;BR /&gt;&lt;BR /&gt;read this doc about kill -3:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000079997107" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000079997107&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Thu, 04 Aug 2005 02:32:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596311#M828812</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-08-04T02:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596312#M828813</link>
      <description>Have a look at "man 5 signal"&lt;BR /&gt;There you'll find a table with short explanations and default actions of processes catching the signal.&lt;BR /&gt;Those marked with Roman ii are considered to dump their core (if so implemented).&lt;BR /&gt;Not being a Java developer and thus not knowing much about Java, I guess that a Java "core" dump is rather a stack trace that is being written when a method catches an exception it doesn't know how to handle because its class didn't implement an  exception handler for it.&lt;BR /&gt;It then would pass the exception up the stack, hoping that a parent class knows how to handle the exception.&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Aug 2005 02:56:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596312#M828813</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2005-08-04T02:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596313#M828814</link>
      <description>Refer signal 5 man page.&lt;BR /&gt;&lt;BR /&gt;Signals with Default type 2,&lt;BR /&gt;&lt;BR /&gt;======================================================&lt;BR /&gt;ii        Abnormal termination of the process. Additionally,&lt;BR /&gt;                     implementation-dependent abnormal termination actions,&lt;BR /&gt;                     such as creation of a core file, may occur.&lt;BR /&gt;======================================================&lt;BR /&gt;will generate core files such as,&lt;BR /&gt;&lt;BR /&gt;SIGABRT     ii        Process abort signal.&lt;BR /&gt;SIGSEGV     ii        Invalid memory reference.&lt;BR /&gt;&lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;You can know the type of signal which passed to the file as,&lt;BR /&gt;&lt;BR /&gt; # what core&lt;BR /&gt; # file core&lt;BR /&gt; # gdb core &lt;APPLICATION-BINARY&gt;&lt;BR /&gt;&lt;BR /&gt;hth.&lt;/APPLICATION-BINARY&gt;</description>
      <pubDate>Thu, 04 Aug 2005 03:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596313#M828814</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-08-04T03:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596314#M828815</link>
      <description>Shiv, what you call a "java core dump" is more properly a "java thread dump". The "OS core dump" is usually named just a "core dump".&lt;BR /&gt;&lt;BR /&gt;You won't find much information on manual pages: the thread dump is produced by the JVM, not by the OS. &lt;BR /&gt;&lt;BR /&gt;Sun's JVM (which is ported to HP-UX by HP) is programmed to catch the OS-level signal SIGQUIT and produce a thread dump when the signal is received. This information is available in the Java SDK documentation.&lt;BR /&gt;&lt;BR /&gt;On HP-UX, SIGQUIT is the signal number 3, hence "kill -3 pid_of_JVM".&lt;BR /&gt;&lt;BR /&gt;(Use "kill -l" to get a table listing the signal names and numbers, if you're interested.)&lt;BR /&gt;&lt;BR /&gt;The thread dump is a human-readable (or at least programmer-readable) listing of threads within the JVM and information on what Java code each thread is currently executing. This is very useful for Java application debugging. The JVM does not usually stop when it receives SIGQUIT: instead, it just prints the thread dump on the standard output of the JVM process and keeps running.&lt;BR /&gt;&lt;BR /&gt;The core dump, on the other hand, is a binary dump of the entire workspace of the process. If the core dump is taken from a Weblogic/Java process, it is often rather big. Taking a core dump from a process usually means that the process gets killed.&lt;BR /&gt;&lt;BR /&gt;To get useful information about a core dump of a Java process, one must first map out the JVM's internal state from the core dump. Only after that you can start finding out things about the Java application that was running inside the JVM. This requires deep knowledge about the inner workings of the JVM, so it is not that useful for an average Java programmer.&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Aug 2005 06:27:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596314#M828815</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2005-08-04T06:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: difference between core dumps file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596315#M828816</link>
      <description>Shiv --&lt;BR /&gt;&lt;BR /&gt;In the RC, we refer to the OS core dump as a "core dump" or "system dump" because it dumps the entire memory for the system when it occurs (either when the OS panics or when someone generates a Transfer of Control).  There are certain tools written to read this type of dump file:  adb, q4, and some additional tools that are internal to HP.&lt;BR /&gt;&lt;BR /&gt;We refer to a core file from an application or command as a "core file" or "application core file" (i.e. core FILE vs core DUMP since the Dump is made up of multiple files).  A (generally) different set of tools is used for debugging core FILES: adb, gdb, etc.  q4 (for instance) does NOT work on application core files.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Oz&lt;BR /&gt;</description>
      <pubDate>Thu, 04 Aug 2005 07:31:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-core-dumps-file/m-p/3596315#M828816</guid>
      <dc:creator>Kent Ostby</dc:creator>
      <dc:date>2005-08-04T07:31:01Z</dc:date>
    </item>
  </channel>
</rss>

