<?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: Regarding Control+D &amp;amp; Control+C in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114656#M313784</link>
    <description>Control-D sets EOF.  This is the end of your application's data.&lt;BR /&gt;You can get your shell to ignore: set -o ignoreeof&lt;BR /&gt;(You will have to use exit to logout.)</description>
    <pubDate>Tue, 11 Dec 2007 10:52:48 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2007-12-11T10:52:48Z</dc:date>
    <item>
      <title>Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114654#M313782</link>
      <description>I need small help to understand how it will works Control-D and Control-C for terminating remote session or any application.&lt;BR /&gt;&lt;BR /&gt;When i press ControlD or ControC which process it will stopor  which are the steps will run backend.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards - Praveen</description>
      <pubDate>Tue, 11 Dec 2007 05:27:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114654#M313782</guid>
      <dc:creator>Praveen Motupalle</dc:creator>
      <dc:date>2007-12-11T05:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114655#M313783</link>
      <description>Do you know about signals?&lt;BR /&gt;&lt;BR /&gt;CTRL C = SIGINT&lt;BR /&gt;&lt;BR /&gt;start to read here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://en.wikipedia.org/wiki/Signal_%28computing%29" target="_blank"&gt;http://en.wikipedia.org/wiki/Signal_%28computing%29&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or here&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-60105/kill.1.html" target="_blank"&gt;http://docs.hp.com/en/B2355-60105/kill.1.html&lt;/A&gt;</description>
      <pubDate>Tue, 11 Dec 2007 07:00:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114655#M313783</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-12-11T07:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114656#M313784</link>
      <description>Control-D sets EOF.  This is the end of your application's data.&lt;BR /&gt;You can get your shell to ignore: set -o ignoreeof&lt;BR /&gt;(You will have to use exit to logout.)</description>
      <pubDate>Tue, 11 Dec 2007 10:52:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114656#M313784</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-12-11T10:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114657#M313785</link>
      <description>In fact it is processed by your tty.&lt;BR /&gt;&lt;BR /&gt;When you press ^C, and if your tty is configured with ^C set for intr, then it will send a SIGINTR to the forground process.&lt;BR /&gt;&lt;BR /&gt;The mapping of such controls are set via stty&lt;BR /&gt;&lt;BR /&gt;stty -a&lt;BR /&gt;# stty -a&lt;BR /&gt;speed 9600 baud; line = 0; &lt;BR /&gt;rows = 24; columns = 80&lt;BR /&gt;min = 4; time = 0; &lt;BR /&gt;intr = ^C; quit = ^\; erase = ^H; kill = ^U&lt;BR /&gt;eof = ^D; eol = ^@; eol2 &lt;UNDEF&gt;; swtch &lt;UNDEF&gt;&lt;BR /&gt;stop = ^S; start = ^Q; susp &lt;UNDEF&gt;; dsusp &lt;UNDEF&gt;&lt;BR /&gt;werase &lt;UNDEF&gt;; lnext &lt;UNDEF&gt;&lt;BR /&gt;parenb -parodd cs7 -cstopb hupcl -cread -clocal -loblk -crts &lt;BR /&gt;-ignbrk brkint ignpar -parmrk -inpck istrip -inlcr -igncr icrnl -iuclc &lt;BR /&gt;ixon -ixany ixoff -imaxbel -rtsxoff -ctsxon -ienqak &lt;BR /&gt;isig icanon -iexten -xcase echo echoe echok -echonl -noflsh &lt;BR /&gt;-echoctl -echoprt -echoke -flusho -pendin &lt;BR /&gt;opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel -tostop tab3 &lt;BR /&gt;&lt;BR /&gt;If I want that ^X as kill I just type&lt;BR /&gt;stty kill ^X&lt;BR /&gt;&lt;BR /&gt;Then if ^X is pressed it will send a sigkill to the foreground process.&lt;/UNDEF&gt;&lt;/UNDEF&gt;&lt;/UNDEF&gt;&lt;/UNDEF&gt;&lt;/UNDEF&gt;&lt;/UNDEF&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:28:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114657#M313785</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2007-12-11T14:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114658#M313786</link>
      <description>The most important aspect of this question is that the answer can only be "it depends". How a given process responds to a given signal is entirely up to the process. In fact, (assuming that Cntl-C generates a SIGINT) a Ctrl-C might cause the process to do one behavior at one point and another behavior at another point because the signal handler can be changed while the process is running. The signal handler may be null, in which case the signal is ignored.</description>
      <pubDate>Tue, 11 Dec 2007 16:32:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114658#M313786</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-12-11T16:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Control+D &amp; Control+C</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114659#M313787</link>
      <description>&amp;gt;Clay: The signal handler may be null, in which case the signal is ignored.&lt;BR /&gt;&lt;BR /&gt;Actually you have to use SIG_IGN.  SIG_DFL just randomly happens to be 0.  :-)</description>
      <pubDate>Tue, 11 Dec 2007 22:56:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/regarding-control-d-amp-control-c/m-p/4114659#M313787</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-12-11T22:56:18Z</dc:date>
    </item>
  </channel>
</rss>

