in reply to Re^3: Perl/Tk problem on Windows
in thread Perl/Tk problem on Windows
while ( my $ns = $server->accept ) { ... if ( my $pid = fork ) { close $ns or die "Client socket close failed. [$!]\n"; } elsif (defined $pid) { $ns->autoflush(1); client_connect $ns,$from; } else { die "fork error. [$!]\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Perl/Tk problem on Windows
by eserte (Deacon) on Jun 03, 2004 at 11:53 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 13:13 UTC | |
|
Re^5: Perl/Tk problem on Windows
by Ven'Tatsu (Deacon) on Jun 03, 2004 at 14:28 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 15:05 UTC | |
by JamesNC (Chaplain) on Jun 04, 2004 at 04:44 UTC | |
by nr0mx (Scribe) on Jun 04, 2004 at 10:29 UTC |