Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Test::More and semaphore handles on Windows

by blm (Hermit)
on Aug 25, 2004 at 05:27 UTC ( [id://385593]=note: print w/replies, xml ) Need Help??


in reply to Re: Test::More and semaphore handles on Windows
in thread Test::More and semaphore handles on Windows

As I understand it, the problem related to Test::Builder will affect 5.8 and later because the current version of Test::Builder checks that perl version is greater then 5.008 before it enables this thread safety. From Test::Builder:
BEGIN { use Config; if( $] >= 5.008 && $Config{useithreads} ) { require threads; require threads::shared; threads::shared->import; } else { *share = sub { 0 }; *lock = sub { 0 }; } }
Is this correct?

Replies are listed 'Best First'.
Re^3: Test::More and semaphore handles on Windows
by chromatic (Archbishop) on Aug 25, 2004 at 17:03 UTC

    Yes, that's correct, because Perl 5.7.x switched to a different threading model.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (4)
As of 2024-04-19 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found