This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The 'contiguous' test for argv[], envp[] was bogus
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 30 Jun 2003 08:36:38 +0000 (08:36 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 30 Jun 2003 08:36:38 +0000 (08:36 +0000)
commit3cb9023dc910d8a9abbd8d44e501f6e492155eb5
treeb6e1589a07fc36b3023e7493649f21049543cb91
parentf9cbb277dec3cb2700132dedd25b05ea72cda45a
The 'contiguous' test for argv[], envp[] was bogus
since those need not be in memory end-to-end, e.g.
in Tru64 they are aligned by eight.  Loosen the test
so that 'contiguousness' is fulfilled if the elements
are within PTRSIZE alignment.  This makes Tru64 to pass
the join.t, too.

p4raw-id: //depot/perl@19889
ext/threads/t/join.t
mg.c
perl.c