in reply to Re: How to put Hash's on Thread::Queue
in thread How to put Hash's on Thread::Queue

Confirmed, it works with
C:\>pmvers threads threads::shared Thread::Queue threads: 1.72 threads::shared: 1.28 Thread::Queue: 2.11
ActivePerl-5.8.9.825-MSWin32-x86-288577

Replies are listed 'Best First'.
Re^3: How to put Hash's on Thread::Queue
by gulden (Monk) on May 13, 2009 at 14:01 UTC
    It doesn't work for me.
    -bash-3.00$ perl -MThread::Queue -e 'print $Thread::Queue::VERSION . " +\n"' 2.00 -bash-3.00$ perl -Mthreads::shared -e 'print $threads::shared::VERSION + . "\n"' 1.27 -bash-3.00$ perl -Mthreads -e 'print $threads::VERSION . "\n"' 1.71

    The problem was with the old version of Thread::Queue.

    Tks