Thread Lock zwischen n Prozessen (6 answers)
Opened by esskar at 2005-03-09 22:26

pq
 2005-03-09 23:29
#52485 #52485
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
my $fh;
if(open($fh, ">".$self->handle())) {

==>
if(open my $fh, ">", $self->handle) {

wir schreiben ja schließlich perl =)\n\n

<!--EDIT|pq|1110403841-->
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 Lock zwischen n Prozessen