Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
P is for Practical
 
PerlMonks  

Re: Threads that return hash

by BrowserUk (Pope)
on Apr 24, 2012 at 10:55 UTC ( #966789=note: print w/ replies, xml ) Need Help??


in reply to Threads that return hash

Your problem is that the return context (scalar/array/void) of the thread subroutine, is defined by the context in which that thread is created.

In your example, that means here:

my $thr = threads->new(\&sub_returning_hash, $argument);

Which is a scalar context. Hence, when the return is invoked here:

return %output_record;

It is the equivalent of

return scalar %output_record;

Which returns:

%h = qw[ a 11 b 12 c 13 ];; print scalar %h;; 3/8

And when that string is returned from the join and assigned to the hash in the calling code:

%r = scalar %h;; Odd number of elements in hash assignment

A complicated explanation, but thankfully, the solution is simple. Change the thread creation line to:

my( $thr ) = threads->new(\&sub_returning_hash, $argument);

Which puts the creation of the thread into an array (list) context.

Now the code will run warnings free and produce the desired result:

[11:51:36.25]C:\test>junk a = 11 b = 12 c = 13

Alternatively, you can mark the return context of the thread sub explicitly at creation time:

my $thr = threads->new( {'context' => 'list'}, \&sub_returning_hash, $ +argument );

which will achieve the same result. See the section labelled "THREAD CONTEXT" in the threads pod for details.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?


Comment on Re: Threads that return hash
Select or Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Node Status?
node history
Node Type: note [id://966789]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2013-05-23 23:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    The best material for plates (tableware) is:









    Results (493 votes), past polls