<?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: SIGKILL failures in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429433#M2458</link>
    <description>If a process is hung awaiting the completion of I/O, it may not receive the signal and hence die.</description>
    <pubDate>Thu, 06 Jul 2000 14:44:18 GMT</pubDate>
    <dc:creator>Patrick Wessel</dc:creator>
    <dc:date>2000-07-06T14:44:18Z</dc:date>
    <item>
      <title>SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429431#M2456</link>
      <description>Here I am, with a process failing to exit on its own, so after trying a SIGTERM, I use a SIGKILL. Now, I know that the process can't catch a SIGKILL, because it's handled by the OS, and the OS is God with respect to system resources. &lt;BR /&gt;&lt;BR /&gt;To my astonishment, the process casually ignores the SIGKILL. &lt;BR /&gt;&lt;BR /&gt;This should never, ever happen, and it has only happened to me on HPUX. Not Solaris, not Linux, just HPUX. I'm very curious as to why this is, and what is being done to fix it. I use HPUX 10.20 all day, so this is rather important. &lt;BR /&gt;&lt;BR /&gt;Thanks people,&lt;BR /&gt;&lt;BR /&gt;Mike</description>
      <pubDate>Thu, 06 Jul 2000 14:19:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429431#M2456</guid>
      <dc:creator>Michael Soulier</dc:creator>
      <dc:date>2000-07-06T14:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429432#M2457</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;in my knowledge one thing that could prevent a kill -9 is an open to an I/O device by the proccess for e. g. a tar command exits after I/O has been satisfied.</description>
      <pubDate>Thu, 06 Jul 2000 14:41:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429432#M2457</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-07-06T14:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429433#M2458</link>
      <description>If a process is hung awaiting the completion of I/O, it may not receive the signal and hence die.</description>
      <pubDate>Thu, 06 Jul 2000 14:44:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429433#M2458</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-07-06T14:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429434#M2459</link>
      <description>Well, both of the cases where this keeps plaguing me is with regards to networking. Either a server bound to a port that refuses to die, or a client connecting to a port that refuses to. &lt;BR /&gt;&lt;BR /&gt;This shouldn't happen to my knowledge. This feels like a bug.</description>
      <pubDate>Thu, 06 Jul 2000 14:44:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429434#M2459</guid>
      <dc:creator>Michael Soulier</dc:creator>
      <dc:date>2000-07-06T14:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429435#M2460</link>
      <description>On every other Unix I've been on, the OS interrupts the waiting I/O and kills it. Why not on HPUX?</description>
      <pubDate>Thu, 06 Jul 2000 14:45:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429435#M2460</guid>
      <dc:creator>Michael Soulier</dc:creator>
      <dc:date>2000-07-06T14:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429436#M2461</link>
      <description>Is the process you're trying to kill listed as &lt;DEFUNCT&gt; ? If so, it's a zombie. Zombies cannot be killed (unless you kill their parent). If init (process 1) is the parent, all you can do is reboot.&lt;/DEFUNCT&gt;</description>
      <pubDate>Fri, 07 Jul 2000 06:35:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429436#M2461</guid>
      <dc:creator>Ralf Hildebrandt</dc:creator>
      <dc:date>2000-07-07T06:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429437#M2462</link>
      <description>No, the processes weren't zombies, and yes, they were inherited by init. &lt;BR /&gt;&lt;BR /&gt;Why does that matter? I kill processes under init owned by myself in a standard account in Linux all the time. This really feels like a bug to me. &lt;BR /&gt;</description>
      <pubDate>Mon, 10 Jul 2000 17:32:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429437#M2462</guid>
      <dc:creator>Michael Soulier</dc:creator>
      <dc:date>2000-07-10T17:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: SIGKILL failures</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429438#M2463</link>
      <description>Each case that I've seen like this seems to be associated with memory management.  Something like a runaway has gobbled up 500 Meg of memory and the system seems to keep the process alive until it's given back to the system.  Not that this is correct, but it's what I've seen.</description>
      <pubDate>Mon, 10 Jul 2000 17:49:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sigkill-failures/m-p/2429438#M2463</guid>
      <dc:creator>Tim Malnati</dc:creator>
      <dc:date>2000-07-10T17:49:14Z</dc:date>
    </item>
  </channel>
</rss>

