Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Atomic operations in perl and Tk::IO

by pg (Canon)
on Apr 01, 2003 at 15:49 UTC ( [id://247263]=note: print w/replies, xml ) Need Help??


in reply to Atomic operations in perl and Tk::IO

It is quite “normal” to see a Perl module is not thread-safe. Considering the factors:
  1. To support multi-thread by default might increase load unnecessary, so usually, the threading part would be left to the users’ hands
  2. Most of those modules are older than threading support in Perl
Said that, now it would be your responsibility to lock shared variables, in this case, your tail buffer.

Better to have a buffer, which is fully under your control (you are almost on the right track with this), so you can lock/unlock at the right timing (locking is what missing here, do it yourself, don’t expect Tk to do it for you.).

Be careful not try to share Tk component/widget over threads, as far as Perl 5.8 goes, this is not supported (as bless is not thread-safe). Expect this to be straightened in future versions.

  • Comment on Re: Atomic operations in perl and Tk::IO

Replies are listed 'Best First'.
Re: Re: Atomic operations in perl and Tk::IO
by rinceWind (Monsignor) on Apr 02, 2003 at 12:09 UTC
    I feel a new module coming on, as in Tie::Atomic.

    Please let me know if this wheel has already been invented.

    --rW

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (9)
As of 2024-04-19 09:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found