Skip to content

Commit

Permalink
Thread-Suspend v1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhedden committed Apr 21, 2016
1 parent 1d16542 commit fde70f4
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 6 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.12 Fri Feb 22 22:19:37 2008
- Allow installation on non-threaded Perls

1.11 Wed Feb 20 17:26:30 2008
- Build/test updates

Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Thread::Suspend version 1.11
Thread::Suspend version 1.12
============================

This module adds suspend and resume operations for threads.
Expand All @@ -24,7 +24,7 @@ This module requires these other modules:

COPYRIGHT AND LICENCE

Copyright 2006 - 2007 Jerry D. Hedden <jdhedden AT cpan DOT org>
Copyright 2006 - 2008 Jerry D. Hedden <jdhedden AT cpan DOT org>

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
Expand Down
11 changes: 7 additions & 4 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.11';
our $VERSION = '1.12';

use threads 1.39;
use threads::shared 1.01;
Expand Down Expand Up @@ -155,7 +155,7 @@ Thread::Suspend - Suspend and resume operations for threads
=head1 VERSION
This document describes Thread::Suspend version 1.11
This document describes Thread::Suspend version 1.12
=head1 SYNOPSIS
Expand Down Expand Up @@ -316,7 +316,10 @@ 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.11/lib/Thread/Suspend.pm>
L<http://annocpan.org/~JDHEDDEN/Thread-Suspend-1.12/lib/Thread/Suspend.pm>
Source repository:
L<http://code.google.com/p/thread-suspend/>
L<threads>, L<threads::shared>
Expand All @@ -326,7 +329,7 @@ Jerry D. Hedden, S<E<lt>jdhedden AT cpan DOT orgE<gt>>
=head1 COPYRIGHT AND LICENSE
Copyright 2006 - 2007 Jerry D. Hedden. All rights reserved.
Copyright 2006 - 2008 Jerry D. Hedden. All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
Expand Down
8 changes: 8 additions & 0 deletions t/00_basic.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down
8 changes: 8 additions & 0 deletions t/01_self.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down
8 changes: 8 additions & 0 deletions t/02_signal.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down
8 changes: 8 additions & 0 deletions t/03_detach.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down
8 changes: 8 additions & 0 deletions t/04_all.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down
8 changes: 8 additions & 0 deletions t/05_some.t
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use strict;
use warnings;

BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}

use threads;
use threads::shared;

Expand Down

0 comments on commit fde70f4

Please sign in to comment.