Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Someone sent me an email asking how to tell if your Perl is compiled with threads. I replied:
ovid $ perl -V|grep -i thread
usethreads=undef use5005threads=undef useithreads=undef
That's when I noticed I forgot to enable thread support the last time I recompiled Perl. Crap.
another faster way sans grep (Score:2)
Re:another faster way sans grep (Score:2)
Sweet! A new tip. Thanks.
Re:another faster way sans grep (Score:2)
perl -V:use.*threads
better off without them (Score:1)
Re:better off without them (Score:2)
I need it for some of my side projects. Specifically, Language::Prolog::Yaswi requires a threaded Perl if my SWI-Prolog is threaded (which it is).