diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-12 05:10:50 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-12 05:10:50 +0000 |
commit | 5c0ca7990f0d90291b9a3d0b6c57bae560b23b52 (patch) | |
tree | 26fb0eee534215ebaa9caa2327d1ee6ac37d3bb7 /t/lib | |
parent | 8b49bb9af6b73f5b844abedd87486b1c41fc6b01 (diff) | |
download | perl-5c0ca7990f0d90291b9a3d0b6c57bae560b23b52.tar.gz |
make RE engine threadsafe; -Dusethreads builds, tests on Solaris,
and runs regexes in 1000s of threads without crashing; also fixed
statcache not being thread-local
p4raw-id: //depot/perl@1448
Diffstat (limited to 't/lib')
-rwxr-xr-x | t/lib/thread.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/thread.t b/t/lib/thread.t index b8e1b387ba..6d3fdde6ab 100755 --- a/t/lib/thread.t +++ b/t/lib/thread.t @@ -50,5 +50,5 @@ join $t; # test that sleep lets other thread run $t = new Thread \&islocked,"ok 8\n"; sleep 6; -print "ok 9"; +print "ok 9\n"; join $t; |