Marcello has asked for the wisdom of the Perl Monks concerning the following question:
As I see it, the newly created directory should always be removed. But sometimes the directory is mysteriously still there, without any fork() errors in my logfile.# create new directory here if (($pid = fork()) == 0) { # remove directory here } if (!defined($pid)) { # log fork() failure here # remove directory here }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: mysterious fork() failure
by dws (Chancellor) on Jan 05, 2002 at 01:11 UTC | |
by Marcello (Hermit) on Jan 05, 2002 at 02:02 UTC | |
Re: mysterious fork() failure
by Zaxo (Archbishop) on Jan 05, 2002 at 03:51 UTC | |
by fokat (Deacon) on Jan 05, 2002 at 23:23 UTC |