Skip to content

Commit

Permalink
Thread-Suspend v1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhedden committed Apr 21, 2016
1 parent 8e87dcb commit ec86277
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension Thread::Suspend.

1.19 Thu Jun 12 13:46:30 2008
- Fix SKIPs in tests

1.18 Tue Jun 10 16:58:13 2008
- End all tests with exit(0)

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Thread::Suspend version 1.18
Thread::Suspend version 1.19
============================

This module adds suspend and resume operations for threads.
Expand Down
6 changes: 3 additions & 3 deletions lib/Thread/Suspend.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Thread::Suspend; {
use strict;
use warnings;

our $VERSION = '1.18';
our $VERSION = '1.19';

use threads 1.39;
use threads::shared 1.01;
Expand Down Expand Up @@ -154,7 +154,7 @@ Thread::Suspend - Suspend and resume operations for threads
=head1 VERSION
This document describes Thread::Suspend version 1.18
This document describes Thread::Suspend version 1.19
=head1 SYNOPSIS
Expand Down Expand Up @@ -315,7 +315,7 @@ Thread::Suspend Discussion Forum on CPAN:
L<http://www.cpanforum.com/dist/Thread-Suspend>
Annotated POD for Thread::Suspend:
L<http://annocpan.org/~JDHEDDEN/Thread-Suspend-1.18/lib/Thread/Suspend.pm>
L<http://annocpan.org/~JDHEDDEN/Thread-Suspend-1.19/lib/Thread/Suspend.pm>
Source repository:
L<http://code.google.com/p/thread-suspend/>
Expand Down
2 changes: 1 addition & 1 deletion t/00_basic.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/01_self.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/02_signal.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/03_detach.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/04_all.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/05_some.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
exit(0);
}
}
Expand Down

0 comments on commit ec86277

Please sign in to comment.