summaryrefslogtreecommitdiff
path: root/ext/Thread
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-07-13 13:29:07 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-07-13 13:29:07 +0000
commitf7229ad31aaa72300ebf8a4e38564ad772e64958 (patch)
tree8d95601829c1585f380d7e50e5aa373f32b79827 /ext/Thread
parentc990a0aa946ece05f609eb30b27514cac41fbbe3 (diff)
downloadperl-f7229ad31aaa72300ebf8a4e38564ad772e64958.tar.gz
The installation of the 5.005threads {Queue,Semaphore}.pm
didn't quite work. p4raw-id: //depot/perl@17518
Diffstat (limited to 'ext/Thread')
-rw-r--r--ext/Thread/Queue.pmx3
-rw-r--r--ext/Thread/Semaphore.pmx3
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/Thread/Queue.pmx b/ext/Thread/Queue.pmx
index 481261043f..231ce3c154 100644
--- a/ext/Thread/Queue.pmx
+++ b/ext/Thread/Queue.pmx
@@ -1,6 +1,9 @@
package Thread::Queue;
use Thread qw(cond_wait cond_broadcast);
+use vars qw($VERSION);
+$VERSION = '1.00';
+
=head1 NAME
Thread::Queue - thread-safe queues (5.005-threads)
diff --git a/ext/Thread/Semaphore.pmx b/ext/Thread/Semaphore.pmx
index 8d69ac540a..a9fb089909 100644
--- a/ext/Thread/Semaphore.pmx
+++ b/ext/Thread/Semaphore.pmx
@@ -1,6 +1,9 @@
package Thread::Semaphore;
use Thread qw(cond_wait cond_broadcast);
+use vars qw($VERSION);
+$VERSION = '1.00';
+
=head1 NAME
Thread::Semaphore - thread-safe semaphores (5.005-threads)