summaryrefslogtreecommitdiff
path: root/ext/Thread
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-16 00:38:41 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-16 00:38:41 +0000
commit28b605d8910b6ca7063fcd3cd10e0b471b6b8c9b (patch)
tree43a26d0e536e10ff2c57959c145a04d3087fe56e /ext/Thread
parentb972f109af5890881e3a2c54b8e1d4ff84ca62eb (diff)
downloadperl-28b605d8910b6ca7063fcd3cd10e0b471b6b8c9b.tar.gz
Add the fruits of Larry Shatzer's version verifying script.
(There are some straddlers, but they will be fixed in the upcoming releases of the modules.) p4raw-id: //depot/perl@13034
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