diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-26 22:01:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-26 22:01:01 +0000 |
commit | 3d7e8424cfac272bdb0b574fd551427fdfd63d10 (patch) | |
tree | 3fef721bf6f23993658cd0a21a5b3550cad5a966 /pod | |
parent | 787c6ccf83b5ca15afe1c9a950fced03aa607d0b (diff) | |
download | perl-3d7e8424cfac272bdb0b574fd551427fdfd63d10.tar.gz |
Avoid and document a weird bug in UNICOS/mk.
p4raw-id: //depot/perl@15527
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 7589276c57..bb938cfae8 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2688,13 +2688,17 @@ threads are considered fundamentally broken. =head2 UNICOS and UNICOS/mk -The io/fs test #31 is failing because in UNICOS and UNICOS/mk -truncate() cannot be used to grow the size of filehandles, only -to reduce the size. The workaround is to truncate files instead -of filehandles. +The io/fs test #31 is failing because in UNICOS and UNICOS/mk the Perl +truncate() cannot be used to grow the size of filehandles, only to +reduce the size. The workaround is to truncate files instead of +filehandles. =head2 UNICOS/mk +=over 4 + +=item * + During Configure the test Guessing which symbols your C compiler and preprocessor define... @@ -2718,6 +2722,16 @@ from Perl the constants defined using C preprocessor, cpp. Because of the above error parts of the converted headers will be invisible. Luckily, these days the need for h2ph is rare. +=item * + +If building Perl with the interpreter threads (ithreads), the +getgrent(), getgrnam(), and getgrgid() functions cannot return the +list of the group members due to a bug in the multithreaded support of +UNICOS/mk. What this means that in list context the functions will +return only three values, not four. + +=back + =head2 UTS There are a few known test failures, see L<perluts>. |