summaryrefslogtreecommitdiff
path: root/ext/Thread
diff options
context:
space:
mode:
Diffstat (limited to 'ext/Thread')
-rw-r--r--ext/Thread/Thread/Queue.pm3
-rw-r--r--ext/Thread/Thread/Semaphore.pm2
-rw-r--r--ext/Thread/Thread/Signal.pm2
-rw-r--r--ext/Thread/Thread/Specific.pm2
4 files changed, 9 insertions, 0 deletions
diff --git a/ext/Thread/Thread/Queue.pm b/ext/Thread/Thread/Queue.pm
index 8ace16d48b..272a2a3952 100644
--- a/ext/Thread/Thread/Queue.pm
+++ b/ext/Thread/Thread/Queue.pm
@@ -1,4 +1,7 @@
package Thread::Queue;
+
+our $VERSION = '1.00';
+
use Thread qw(cond_wait cond_broadcast);
=head1 NAME
diff --git a/ext/Thread/Thread/Semaphore.pm b/ext/Thread/Thread/Semaphore.pm
index 3cd6338d4d..2a8ec25b65 100644
--- a/ext/Thread/Thread/Semaphore.pm
+++ b/ext/Thread/Thread/Semaphore.pm
@@ -1,6 +1,8 @@
package Thread::Semaphore;
use Thread qw(cond_wait cond_broadcast);
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Semaphore - thread-safe semaphores
diff --git a/ext/Thread/Thread/Signal.pm b/ext/Thread/Thread/Signal.pm
index f5f03db8a8..d8f3627470 100644
--- a/ext/Thread/Thread/Signal.pm
+++ b/ext/Thread/Thread/Signal.pm
@@ -1,6 +1,8 @@
package Thread::Signal;
use Thread qw(async);
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Signal - Start a thread which runs signal handlers reliably
diff --git a/ext/Thread/Thread/Specific.pm b/ext/Thread/Thread/Specific.pm
index a6271a4ae4..ed7cbf893c 100644
--- a/ext/Thread/Thread/Specific.pm
+++ b/ext/Thread/Thread/Specific.pm
@@ -1,5 +1,7 @@
package Thread::Specific;
+our $VERSION = '1.00';
+
=head1 NAME
Thread::Specific - thread-specific keys