How should I fix my problem? lock( $contacts{$user_id} );

I receive the following error lock can only be used on shared values at get_contacts_pool_photos.pl line 170.

Some thoughts, as I see a similar problem when seting up hashes for Tk programs.

My guess is that since you already declared second level hash elements, the first key to the hash gets a value that is another subhash. Its a common error in setting up deep hashes that gives a common error "Can't use string ("1") as a HASH ref while "strict refs"" in conventional programs.

When you have

$contacts{$contact} = &share( {} ); share( $contacts{$contact}{'a'} ); share( $contacts{$contact}{'inc_dnd'} ); share( $contacts{$contact}{'lock'} ); $contacts{$contact}{'a'} = 1; $contacts{$contact}{'inc_dnd'} = &share( {} ); $contacts{$contact}{'lock'} = 0; [download] In a thread, I try to execute lock( $contacts{$user_id} );
Because of the way you have the hash's first key setup, $contacts{$user_id} evaluates to a hashref, not a scalar.

You might try

share( $contacts{$contact}{'user_id'} );
or you can verify in your code by the threads:shared method
is_shared ( $contacts{$user_id} )

I run into this problem all the time with hashes in Tk, and that is what I do, but there may be better solutions.


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

In reply to Re: thread::shared - shared but not shared? by zentara
in thread thread::shared - shared but not shared? by learnedbyerror

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.