Yesterday, Wiggins d'Anconia wrote:
> Yes and no. There are multiple different implementations of threads all
> of which have some good and bad points. You will need to look more into
> them depending on your version of Perl and how complex the task is that
> you wish to accomplish. (There is also
On Mon, 11 Aug 2003 08:11:07 -0500 (CDT), Paul Archer <[EMAIL PROTECTED]> wrote:
> Yesterday, Wiggins d'Anconia wrote:
>
> > Yes and no. There are multiple different implementations of threads all
> > of which have some good and bad points. You wi
Does a forked process share the memory locations of the global variables
from the parent process?
Thanks in advance!
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Steve Grazzini wrote:
On Sat, Aug 09, 2003 at 01:04:26PM -0700, Ahmed Moustafa wrote:
Does a forked process share the memory locations of the global
variables from the parent process?
Changes made after the fork() won't be visible in the other
process, if that's what you're wondering.
Yes, that
On Sat, Aug 09, 2003 at 01:04:26PM -0700, Ahmed Moustafa wrote:
> Does a forked process share the memory locations of the global
> variables from the parent process?
Changes made after the fork() won't be visible in the other
process, if that's what you're wondering.
--
Steve
--
To unsubscrib
Ahmed Moustafa wrote:
Steve Grazzini wrote:
On Sat, Aug 09, 2003 at 05:14:34PM -0700, Ahmed Moustafa wrote:
Steve Grazzini wrote:
Changes made after the fork() won't be visible in the other
process, if that's what you're wondering.
Yes, that's exactly what I am wondering. So, is there a way to
Steve Grazzini wrote:
On Sat, Aug 09, 2003 at 05:14:34PM -0700, Ahmed Moustafa wrote:
Steve Grazzini wrote:
Changes made after the fork() won't be visible in the other
process, if that's what you're wondering.
Yes, that's exactly what I am wondering. So, is there a way to
assign values to the glo
On Sat, Aug 09, 2003 at 05:14:34PM -0700, Ahmed Moustafa wrote:
> Steve Grazzini wrote:
>> Changes made after the fork() won't be visible in the other
>> process, if that's what you're wondering.
>
> Yes, that's exactly what I am wondering. So, is there a way to
> assign values to the global varia