Re: Global variables and a forked process

2003-08-14 Thread Paul Archer
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

Re: Global variables and a forked process

2003-08-14 Thread wiggins
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

Global variables and a forked process

2003-08-14 Thread Ahmed Moustafa
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]

Re: Global variables and a forked process

2003-08-14 Thread Ahmed Moustafa
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

Re: Global variables and a forked process

2003-08-11 Thread Steve Grazzini
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

Re: Global variables and a forked process

2003-08-11 Thread Wiggins d'Anconia
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

Re: Global variables and a forked process

2003-08-10 Thread Ahmed Moustafa
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

Re: Global variables and a forked process

2003-08-10 Thread Steve Grazzini
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