Using setsid and exit I got extra httpd daemon at each fork.

So it doesn' seem a good solution

If I use Core::exit(0) instead of exit I got an httpd daemon in zombie state.

$pid = fork(); if( $pid == 0 ) { setsid(); # ----------------------------------------- close STDIN; close STDOUT; close STDERR; # ----------------------------------------- my $p_pid; $p_pid = getppid; ae_util::mylog( "START Child process: $$.$p_pid " ); sleep 1; ae_util::mylog( "EXIT Child process: $$.$p_pid " ); # CORE::exit(0); exit; }

I found another solution which is more simple and seems to works well:

$SIG{CHLD} = 'IGNORE';

and

$pid = fork(); if( $pid == 0 ) { # ----------------------------------------- close STDIN; close STDOUT; close STDERR; # ----------------------------------------- my $p_pid; $p_pid = getppid; ae_util::mylog( "START Child process: $$.$p_pid " ); sleep 1; ae_util::mylog( "EXIT Child process: $$.$p_pid " ); CORE::exit(0); }

Do you known if that solution ( ignore SIGCHLD signal ) have some drawback ?

Edited by planetscape - changed pre to code tags; added rudimentary formatting

( keep:1 edit:25 reap:0 )


In reply to Re^2: thread inside mod_perl handler will never been released by earlati2
in thread thread inside mod_perl handler will never been released by earlati2

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.