summaryrefslogtreecommitdiff
path: root/ext/Thread/lock.tx
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-16 04:37:52 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-16 04:37:52 +0000
commit43d3ddbe925b286b82a05bbdbe845c119bb8b987 (patch)
tree562b71e31a481a18e022cb1afc6663e22835b57c /ext/Thread/lock.tx
parent212c535a5149b8e2f51db0bc56d121117c0911aa (diff)
downloadperl-43d3ddbe925b286b82a05bbdbe845c119bb8b987.tar.gz
Make Thread a wrapper for both ithreads and 5005threads.
Needs a lot of work and Arthur's eyeballing (and finishing few missing odds and ends of threads.pm). Now Thread is an extension without its own .pm. If there are people who have experience working with either the 5005threads or the ithreads: cleaning up the documentation (Thread.pm, threads.pm, and perl*thrtut.pod), and porting the various Thread::* modules, like Thread::Queue, to work also with ithreads, is needed. Removed the 5005threads requirement from the 5005 tests for easier testing (not all of them work yet since they use the Thread::* modules that have not been made to work with ithreads). Leave the 5005 tests named as *.tx so that they are not run by "make test". p4raw-id: //depot/perl@13036
Diffstat (limited to 'ext/Thread/lock.tx')
-rw-r--r--ext/Thread/lock.tx4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/Thread/lock.tx b/ext/Thread/lock.tx
index b8887878a0..d8199b59d8 100644
--- a/ext/Thread/lock.tx
+++ b/ext/Thread/lock.tx
@@ -4,10 +4,6 @@ BEGIN {
print "1..0 # Skip: no Config\n";
exit(0);
}
- if ($Config{extensions} !~ /\bThread\b/) {
- print "1..0 # Skip: no use5005threads\n";
- exit(0);
- }
}
use Thread;