From 191050aabed3fc5bae80e1ecea4ad2af8a96bfc7 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Sat, 25 May 2013 15:23:54 +0200 Subject: [PATCH] Correction recommended by Brad Gilbert++. Bump $VERSION. For: RT #118085 --- lib/Thread.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Thread.pm b/lib/Thread.pm index 395b7eb..dbe0719 100644 --- a/lib/Thread.pm +++ b/lib/Thread.pm @@ -4,7 +4,7 @@ use strict; use warnings; no warnings 'redefine'; -our $VERSION = '3.03'; +our $VERSION = '3.04'; $VERSION = eval $VERSION; BEGIN { @@ -168,7 +168,7 @@ does a C or C for that same locked variable. The variable that C blocked on is relocked after the C is satisfied. If there are multiple threads Cing on the same variable, all but one will reblock waiting -to require the lock on the variable. (So if you're only using +to re-acquire the lock on the variable. (So if you're only using C for synchronization, give up the lock as soon as possible.) -- 1.8.3.1