in reply to Re^5: Monitor list of threads running
in thread Monitor list of threads running

usethreads=define use5005threads=undef useithreads=define

Replies are listed 'Best First'.
Re^7: Monitor list of threads running
by Corion (Patriarch) on Apr 08, 2010 at 20:09 UTC

    That's not the version of the threads module. You can find that version number by typing at the command prompt:

    perl -Mthreads -e "die $threads::VERSION"

    On my machine, this outputs:

    1.73 at -e line 1.

    ... which means that I have version 1.73 of threads installed.

      This is what I get.
      gambit$ perl -Mthreads -e "die $threads::VERSION" ::VERSION at -e line 1. gambit$

        Sorry - as you were using threads, I presumed you were on Windows. On unixish systems, you need to use single quotes instead of double quotes:

        perl -Mthreads -e 'die $threads::VERSION'