in reply to perl 5.8.4 threads

Enter on your command prompt/shell
# perl -V
The V is capital.
The results will be how your perl was compiled
If you see something like this
usethreads=undef use5005threads=undef useithreads=undef usemultiplicit +y=undef
Then you have to recompile your perl with threads enable.

``The wise man doesn't give the right answers, he poses the right questions.'' TIMTOWTDI

Replies are listed 'Best First'.
Re^2: perl 5.8.4 threads
by whatluo (Novice) on Jun 02, 2005 at 06:20 UTC
    Yes ,
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
    my perl is not compiled with thread, so I need re-compile it to make it usable,

    thanks everyone,

    whatluo