http://qs321.pair.com?node_id=716494


in reply to Suppressing thread warnings

The warnings pragma has a threads category, so maybe...
use strict; use warnings; no warnings qw[threads]; use threads; my $thread1 = new threads(\&my_sub); my $thread2 = new threads(\&my_sub); sub my_sub {} exit; # needs explicit exit for reasons beyond me
It's been a while since I tangled with threads, but the above quiets the warnings with 5.10 on Win32.

Addendum: See also the "WARNINGS" section of the threads.pm documentation.