S
Steve
As it clearly states on oreilly's site:
"The fork command actually creates a child process, and returns the
PID of the process to the parent, and a value of zero to the child"
My brain is having an implosion trying to understand code such as
this:
1. unless(fork)
2. if ($pid = fork)
that's like saying "unless 6124" where 6124 is a PID. or if 6124, do
this, else to this.
"The fork command actually creates a child process, and returns the
PID of the process to the parent, and a value of zero to the child"
My brain is having an implosion trying to understand code such as
this:
1. unless(fork)
2. if ($pid = fork)
that's like saying "unless 6124" where 6124 is a PID. or if 6124, do
this, else to this.