![]() |
Threads and shared blessed references
Quote from threads::shared (Perl 5.8.3):
"bless" is not supported on shared references. In the current version, "bless" will only bless the thread local reference and the blessing will not propagate to the other threads. In other words, it's not possible to share references to objects. I.e. the following shouldn't work: package Foo::Bar; use threads; use threads::shared; sub new { my $self = &share( {} ); bless $self, shift; } sub zot { print "zot\n"; } my $foo = Foo::Bar->new; threads->create( sub { $foo->zot; } )->join; Is that a correct interpretation? Because the code example does actually work without any problems. I also found a mail that indicates that blessing of sharede references should indeed work: <URL:http://groups.google.com/groups?selm=200306091100.h59B05PA018110%40smtp3.Ac tiveState.com&output=gplain> Umm... So I guess my question is: is it safe to share blessed references among threads? :) -- Touch eyeballs to screen for cheap laser surgery! |
| All times are GMT. The time now is 02:34 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.