Help for this page

Select Code to Download


  1. or download this
    my %hash : shared;
    ...
    $x = $hash{foo};
    
  2. or download this
    sub threads::shared::FETCH {
        lock $Some:Global:lock_var;
    ...
    my %hash;
    tie %hash, 'threads::shared';
    ...