http://www.perlmonks.org?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.

Replies are listed 'Best First'.
Re^2: Suppressing thread warnings
by AnomalousMonk (Archbishop) on Oct 10, 2008 at 17:40 UTC
Re^2: Suppressing thread warnings
by lennysan (Novice) on Oct 10, 2008 at 20:21 UTC
    This didn't suppress this specific warning :(