vote up -3 vote down star

My issue is related to using fork() within Perl code. I wish to fork a new process and capture its PID and return it back to the callee program. Is there some command in Perl which would make this possible?

flag

3  
-1 - you relate to fork command, yet you clearly didn't even look at its perldoc. – depesz Sep 17 at 13:39
Try reading the documentation for fork. :) – brian d foy Sep 17 at 13:54

4 Answers

vote up 1 vote down check
my $pid = fork();
if ($pid == 0)
{
    # We are the child.
}
elsif defined($pid)
{
    # We are the parent of child with PID=pid
}
else
{
    # The fork failed
}
link|flag
3  
'We are the proud parent ...' unless the child was stillborn...there's a third path - if $pid is undef. – Jonathan Leffler Sep 17 at 14:03
Updated, thanks – David Sykes Sep 18 at 7:16
vote up 13 vote down

yes, fork

Quoting from that page:

It returns the child pid to the parent process, 0 to the child process, or undef if the fork is unsuccessful.

link|flag
vote up 4 vote down

Well, Perl's fork function returns PID of child to parent and 0 to child, isn't that what you want?

link|flag
vote up 6 vote down

fork returns child pid to the parent and 0 to the child.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.