-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation error #688
Comments
From brian@chele.cais.netDocumentation for setpgrp is incorrect. From perldoc -f setpgrp: Sets the current process group for the specified PID, 0 for the current setpgrp() is not, in fact, a POSIX.1 function, it is SVID derived. Perl Info
|
From @gsarOn Thu, 07 Oct 1999 10:30:23 EDT, Brian Mitchell wrote:
Thanks. Let me know if this edit doesn't get it right. Sarathy Inline Patch-----------------------------------8<-----------------------------------
Change 4310 by gsar@auger on 1999/10/07 23:51:38
fix setpgrp vs getpgrp and POSIX vs BSD confusion (spotted by
Brian Mitchell <brian@chele.cais.net>)
Affected files ...
... //depot/perl/pod/perldiag.pod#99 edit
... //depot/perl/pod/perlfunc.pod#107 edit
... //depot/perl/pp_sys.c#118 edit
Differences ...
==== //depot/perl/pod/perldiag.pod#99 (text) ====
Index: perl/pod/perldiag.pod
--- perl/pod/perldiag.pod.~1~ Thu Oct 7 16:51:43 1999
+++ perl/pod/perldiag.pod Thu Oct 7 16:51:43 1999
@@ -2369,7 +2369,7 @@
=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
@@ -2681,6 +2681,11 @@
(F) You tried to assign to C<$E<gt>>, and your operating system doesn't support
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
==== //depot/perl/pod/perlfunc.pod#107 (text) ====
Index: perl/pod/perlfunc.pod
--- perl/pod/perlfunc.pod.~1~ Thu Oct 7 16:51:43 1999
+++ perl/pod/perlfunc.pod Thu Oct 7 16:51:43 1999
@@ -3697,9 +3697,10 @@
Sets the current process group for the specified PID, C<0> for the current
process. Will produce a fatal error if used on a machine that doesn't
-implement setpgrp(2). If the arguments are omitted, it defaults to
-C<0,0>. Note that the POSIX version of C<setpgrp> does not accept any
-arguments, so only C<setpgrp(0,0)> is portable. See also C<POSIX::setsid()>.
+implement POSIX setpgid(2) or BSD setpgrp(2). If the arguments are omitted,
+it defaults to C<0,0>. Note that the BSD 4.2 version of C<setpgrp> does not
+accept any arguments, so only C<setpgrp(0,0)> is portable. See also
+C<POSIX::setsid()>.
=item setpriority WHICH,WHO,PRIORITY
==== //depot/perl/pp_sys.c#118 (text) ====
Index: perl/pp_sys.c
--- perl/pp_sys.c.~1~ Thu Oct 7 16:51:43 1999
+++ perl/pp_sys.c Thu Oct 7 16:51:43 1999
@@ -3808,7 +3808,7 @@
SETi( BSD_SETPGRP(pid, pgrp) >= 0 );
#else
if ((pgrp != 0 && pgrp != getpid()) || (pid != 0 && pid != getpid()))
- DIE(aTHX_ "POSIX setpgrp can't take an argument");
+ DIE(aTHX_ "setpgrp can't take an argument");
SETi( setpgrp() >= 0 );
#endif /* USE_BSDPGRP */
RETURN;
End of Patch. |
From [Unknown Contact. See original ticket]Not quite. There is no setpgrp() in posix.1, afaik. s/POSIX/SVID, I setpgrp() is not, in fact, a POSIX.1 function, it is SVID derived. See comments below. On Thu, 7 Oct 1999, Gurusamy Sarathy wrote:
It's actually SVID defined; not POSIX.1 defined I believe (although I
setpgrp() with no arguments is SVID. setpgrp() with arguments is BSD.
It's the SVID version that doesnt accept arguments. The BSD version is the
|
From @gsarOn Thu, 07 Oct 1999 20:09:48 EDT, Brian Mitchell wrote:
I don't think we assert that it is POSIX anymore (after the patch).
My notes are derived from the Linux/glibc manpage for {s,g}etpg{id,rp}. NAME SYNOPSIS int setpgid(pid_t pid, pid_t pgid);
I don't have POSIX.1 documentation either; I just went by what the
The Linux manpage contradicts this (per my reading). See above.
setpgrp(void) is BSD, according to the Linux manpage. Sarathy |
From [Unknown Contact. See original ticket]On Thu, Oct 07, 1999 at 06:05:42PM -0700, Gurusamy Sarathy wrote:
I've got POSIX.1 right in front of me. There's only one mention of ``System V, without job control, groups processes into process Peace, |
Migrated from rt.perl.org#1586 (status was 'resolved')
Searchable as RT1586$
The text was updated successfully, but these errors were encountered: