From: Vincent Pit Date: Sun, 22 Feb 2009 11:35:40 +0000 (+0100) Subject: Reorder the arguments to the thread callback in t/40-threads.t so that they match... X-Git-Tag: v0.32~12 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=2078b6422b776ca13c21374d85aa15f3f274cc65 Reorder the arguments to the thread callback in t/40-threads.t so that they match those of t/41-clone.t --- diff --git a/t/40-threads.t b/t/40-threads.t index 6aade88..6fb1d36 100644 --- a/t/40-threads.t +++ b/t/40-threads.t @@ -33,7 +33,7 @@ if (VMG_THREADSAFE) { my $destroyed : shared = 0; sub try { - my ($sig, $dispell, $op_info) = @_; + my ($dispell, $sig, $op_info) = @_; my $tid = threads->tid(); my $c = 0; my $wiz = eval { @@ -83,7 +83,7 @@ sub try { for my $dispell (1, 0) { for my $sig (undef, Variable::Magic::gensig()) { $destroyed = 0; - my @t = map { threads->create(\&try, $sig, $dispell, $_) } + my @t = map { threads->create(\&try, $dispell, $sig, $_) } (VMG_OP_INFO_NAME) x 2, (VMG_OP_INFO_OBJECT) x 2; $_->join for @t; is($destroyed, (1 - $dispell) * 4, 'destructors');