I found indeed 1 case where SIGHUP seems to be generated.

I've never heard of SIGHUP ever being generated on windows, nor can I reproduce it.

#! perl -slw use strict; use Data::Dump qw[ pp ]; use Config; $|++; my @signames = split ' ', $Config{ sig_name }; eval qq[ \$SIG{ $signames[ $_ ] } = sub{ warn qq[SIG $_ received\n] }; + ] for 1 .. 21; pp \%SIG; 1 while sleep 1; __END__ c:\test>sigtest 2>log ## typed ^C and then ^break and then closed the console C:\test>type ..\log do { my $a = { ABRT => undef, ALRM => sub { ... }, BREAK => sub { ... }, CHLD => sub { ... }, CLD => 'fix', CONT => undef, FPE => sub { ... }, HUP => sub { ... }, ILL => sub { ... }, INT => sub { ... }, KILL => sub { ... }, NUM05 => sub { ... }, NUM06 => sub { ... }, NUM07 => sub { ... }, NUM10 => sub { ... }, NUM12 => sub { ... }, NUM16 => sub { ... }, NUM17 => sub { ... }, NUM18 => sub { ... }, NUM19 => sub { ... }, NUM24 => undef, PIPE => sub { ... }, QUIT => 'fix', SEGV => sub { ... }, STOP => undef, TERM => sub { ... }, }; $a->{CLD} = $a->{CHLD}; $a->{QUIT} = $a->{BREAK}; $a; } SIG 2 received SIG 21 received ^C

And if you trace the guts snippet you posted through, you'll find that do_raise() effectively return false for SIGCLD & SIGCHLD and true otherwise; and when it returns true, (as it will for the CTRL_CLOSE_EVENT|), sig_terminate() simple calls exit(sig) with sig == 1.

Basically, I don't think that there is any way perl on windows will ever receive or trap a SIGHUP, so any message you get to that effect must be a mistaken user message.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re: SIGHUP delivered on Windows by BrowserUk
in thread SIGHUP delivered on Windows by rovf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.