Thread fork führt zu falschem return code (5 answers)
Opened by TobEx at 2011-11-28 16:14

pq
 2011-11-28 16:44
#154516 #154516
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
ich denke es geht darum, dass der return-code -1 ist, während er in einem normalen programm z.b. 0 ist.

das liegt vermutlich an $SIG{CHLD}.
ich würde im child folgendes machen:
Code (perl): (dl )
1
2
3
if ( $pid == 0 ) {
    local $SIG{CHLD};
    ...
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread fork führt zu falschem return code