![]() |
|
Perl Monk, Perl Meditation | |
PerlMonks |
Re: Re: Things you need to know before programming Perl ithreadsby liz (Monsignor) |
on Apr 08, 2004 at 21:08 UTC ( #343759=note: print w/replies, xml ) | Need Help?? |
Actually, it would have been more correct to remove "shared" in this context. A non-shared variable is cloned when a thread is started. However, a shared variable is also cloned.
Remember, a shared variable is nothing other than an ordinary tied variable, and cloned as any other variable when a thread is started. Whenever a thread accesses the value of a shared variable, its value is copied from the hidden shared variables thread into the thread local copy, and then presented to the outside world as a "normal" variable. Whenever a thread updates a shared variable, the value is updated in the thread local version, as well as in the hidden shared variables thread. All of these copy actions should be COWed, ideally. Hope this made sense. Liz
In Section
Meditations
|
|