diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-07 23:51:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-07 23:51:38 +0000 |
commit | 817772988d05004281dc7172d155e44cb7f06bff (patch) | |
tree | a1148f74e4d8fbefa943043ba4db59dce978128c /pod/perldiag.pod | |
parent | 38a230cb455fb1aca316039ba1d4aed58c0c60d5 (diff) | |
download | perl-817772988d05004281dc7172d155e44cb7f06bff.tar.gz |
fix setpgrp vs getpgrp and POSIX vs BSD confusion (spotted by
Brian Mitchell <brian@chele.cais.net>)
p4raw-id: //depot/perl@4310
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index b35d260eb2..d0f1be8a76 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -2369,7 +2369,7 @@ perspective, it's probably not what you intended. =item POSIX getpgrp can't take an argument -(F) Your C compiler uses POSIX getpgrp(), which takes no argument, unlike +(F) Your system has POSIX getpgrp(), which takes no argument, unlike the BSD version, which takes a pid. =item Possible Y2K bug: %s @@ -2682,6 +2682,11 @@ think so. the seteuid() system call (or equivalent), or at least Configure didn't think so. +=item setpgrp can't take arguments + +(F) Your system has the setpgrp() from BSD 4.2, which takes no arguments, +unlike POSIX setpgid(), which takes a process ID and process group ID. + =item setrgid() not implemented (F) You tried to assign to C<$(>, and your operating system doesn't support |