From: 7stud -- Date: 2008-03-27T12:46:12+09:00 Subject: Re: fork Joel VanderWerf wrote: > 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. Who said anyting about modifying the original? The post reads: >I want to fork a child process and *use* instantiated objects from the >parent -- Posted via http://www.ruby-forum.com/.