diff options
Diffstat (limited to 'ext/Thread')
-rw-r--r-- | ext/Thread/Queue.pmx | 3 | ||||
-rw-r--r-- | ext/Thread/Semaphore.pmx | 3 |
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) |