Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

(tye)Re: Accessing one perl sub by multiple threads..

by tye (Sage)
on Dec 07, 2000 at 22:52 UTC ( [id://45578]=note: print w/replies, xml ) Need Help??


in reply to Accessing one perl sub by multiple threads..

Perl isn't thread safe. You'll need to do one of the following:

  • Use some sort of mutex to prevent simultaneous access to the Perl interpreter, making a "critical section" that only one thread can use at a time. I believe someone has already built this so you might be able to find it.
  • Create (a pool of) separate Perl interpreters for each thread that needs to call a Perl subroutines. This won't work for you if the subroutines need to act on shared data. Note that you can use the same Perl interpreter in different threads so long as the Perl interpreter is not built with threading support and only one thread uses that interpreter at a time.
  • Try embedding a Perl interpreter built with one of the several experimental methods for supporting multiple thread per interpreter and access the interpreter as required by that method. This will cause the interpreter to use mutexes to make critical sections around smaller chunks of code. But none of these work 100% reliably so you'll have to deal with that.
There might be some other methods, but the above should give you a feel for what is required.

Please contact me at poorna@india.hp.com

Sorry, you'll have to check back here.

        - tye (but my friends call me "Tye")
  • Comment on (tye)Re: Accessing one perl sub by multiple threads..

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-20 00:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found