in reply to communication between forked processes

You need to use shared memory or disk. Try IPC::MM or IPC::Shareable.
  • Comment on Re: communication between forked processes

Replies are listed 'Best First'.
Re: Re: communication between forked processes
by gnu@perl (Pilgrim) on Feb 24, 2003 at 18:00 UTC
    Thank you, I thought it would be something like that since the forked programs are wholly seperate copies of the main program, they get their own everything (with a few exclusions). I was just hoping there was another way. I might still do it like this but use the main program for the bulk of the work and the child processes for working on the data units. Thanks.