UPDATE: Never mind, I upgraded to the latest XML::Simple-2.14, and it solved the problem. Sorry everyone, that's 2 module updates I screwed up on this week. :-)

Hi, I have a sub that uses XML::Simple to parse an xml file. I tried to put it into a thread, and it would fail with

thread failed to start: lock can only be used on shared values at /usr +/lib/perl5/site_perl/5.8.6/XML/Simple.pm line 479.
So I checked out line 479 and it's just
lock($DefaultValues); #where $DefaultValues = 1
So I copied XML/Simple.pm to my local directory and ran it with line 479 commented out, and everything works fine.

So I have a couple of questions:

1. Will I terribly break something without "lock(1)"?

2. Is it possible to make a custom inherited widget of XML/Simple that I can turn locking off, without having to use a customized version?


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

In reply to XML::Simple in threads by zentara

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.