Thread Kill von Threads
(4 answers)
Opened by wenze at 2007-03-09 16:09
Ich habe den Code so angepasst, daß er ungefähr das macht was deiner machen soll. :-)
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 #!/usr/bin/perl use strict; use warnings; use POSIX ':sys_wait_h'; my $anzahl=5; my @kinder=map{$_=0}(0..$anzahl); my @cmds=("sleep 20", "sleep 10", "sleep 30", "sleep 10", "sleep 20", "sleep 30", "sleep 20", "sleep 10", "sleep 30", "sleep 10", "sleep 20", "sleep 30", "sleep 20", "sleep 10", "sleep 30"); sub ende() { $SIG{CHLD}='IGNORE'; kill(9,grep{$_>0}@kinder); exit; } $SIG{INT}=\&ende; $SIG{HUP}=\&ende; $SIG{QUIT}=\&ende; sub watch_childs() { for my $pid (grep{$_>0}@kinder) { if(waitpid( $pid, WNOHANG )==$pid) { print "Prozess $pid beendet"; my $status=$?/256; if($status!=0) { print " aber ein Fehler ist aufgetreten! ($?)\n"; $SIG{CHLD}='IGNORE'; kill(9,grep{$_>0}@kinder); die "Beende mich wegen Fehler in einem Kindprozess ($pid)!\n"; } else { print " und kein Fehler ist aufgetreten.\n"; } # nächsten Befehl staren $pid=0; if(@cmds) { my $cmd=shift(@cmds); $pid=fork(); exec($cmd) unless($pid); } } } } $SIG{CHLD}=\&watch_childs; for my $pid (@kinder) { my $cmd=shift(@cmds); $pid=fork(); exec($cmd) unless($pid); } # mach was anderes... my $ex=1; while($ex) { sleep(3); $ex=0; for my $pid (grep{$_>0}@kinder) { if(kill(0,$pid)) { print "Prozess $pid läuft noch. \n"; $ex=1; } } print "Es warten noch ".@cmds." Befehle auf Ausführung.\n"; } <!--EDIT|topeg|1173468732--> |