From: Joel VanderWerf Date: 2008-03-27T08:39:13+09:00 Subject: Re: fork Joey Marino wrote: > I want to fork a child process and use instantiated objects from the parent > process. Is this possible? > > obj = Object.new > > fork do > doSomething(obj) > end Yes, but it is a _copy_ of the original, so modifications in the child don't affect the parent. -- vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407