* [PATCH] popen.3: RETURN VALUE: describe successful case
@ 2016-04-28 14:54 Nikola Forró
[not found] ` <1461855269.3095.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Nikola Forró @ 2016-04-28 14:54 UTC (permalink / raw)
To: Michael Kerrisk (man-pages); +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA
Reference:
http://pubs.opengroup.org/onlinepubs/9699919799/functions/popen.html
http://pubs.opengroup.org/onlinepubs/9699919799/functions/pclose.html
Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
man3/popen.3 | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/man3/popen.3 b/man3/popen.3
index f075581..bafa42c 100644
--- a/man3/popen.3
+++ b/man3/popen.3
@@ -123,17 +123,18 @@ function waits for the associated process to terminate and returns the exit
status of the command as returned by
.BR wait4 (2).
.SH RETURN VALUE
-The
-.BR popen ()
-function returns NULL if the
+.BR popen ():
+on success, returns a pointer to an open stream that
+can be used to read or write to the pipe;
+if the
.BR fork (2)
or
.BR pipe (2)
-calls fail, or if it cannot allocate memory.
-.PP
-The
-.BR pclose ()
-function returns \-1 if
+calls fail, or if the function cannot allocate memory,
+NULL is returned.
+
+.BR pclose ():
+on success, returns the exit status of the command; if
.\" These conditions actually give undefined results, so I commented
.\" them out.
.\" .I stream
@@ -141,10 +142,12 @@ function returns \-1 if
.\".I stream
.\" already "pclose()d", or if
.BR wait4 (2)
-returns an error, or some other error is detected.
-In the event of an error, these functions set
+returns an error, or some other error is detected,
+\-1 is returned.
+.PP
+Both functions set
.I errno
-to indicate the cause of the error.
+to an appropriate value in the case of an error.
.SH ERRORS
The
.BR popen ()
--
2.4.11
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] popen.3: RETURN VALUE: describe successful case
[not found] ` <1461855269.3095.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2016-05-09 20:45 ` Michael Kerrisk (man-pages)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-05-09 20:45 UTC (permalink / raw)
To: nforro-H+wXaHxf7aLQT0dZR+AlfA
Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
linux-man-u79uwXL29TY76Z2rM5mHXA
On 04/28/2016 04:54 PM, Nikola Forró wrote:
> Reference:
> http://pubs.opengroup.org/onlinepubs/9699919799/functions/popen.html
> http://pubs.opengroup.org/onlinepubs/9699919799/functions/pclose.html
Thanks, Nikola. Patch applied.
Cheers,
Michael
> Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
> man3/popen.3 | 25 ++++++++++++++-----------
> 1 file changed, 14 insertions(+), 11 deletions(-)
>
> diff --git a/man3/popen.3 b/man3/popen.3
> index f075581..bafa42c 100644
> --- a/man3/popen.3
> +++ b/man3/popen.3
> @@ -123,17 +123,18 @@ function waits for the associated process to terminate and returns the exit
> status of the command as returned by
> .BR wait4 (2).
> .SH RETURN VALUE
> -The
> -.BR popen ()
> -function returns NULL if the
> +.BR popen ():
> +on success, returns a pointer to an open stream that
> +can be used to read or write to the pipe;
> +if the
> .BR fork (2)
> or
> .BR pipe (2)
> -calls fail, or if it cannot allocate memory.
> -.PP
> -The
> -.BR pclose ()
> -function returns \-1 if
> +calls fail, or if the function cannot allocate memory,
> +NULL is returned.
> +
> +.BR pclose ():
> +on success, returns the exit status of the command; if
> .\" These conditions actually give undefined results, so I commented
> .\" them out.
> .\" .I stream
> @@ -141,10 +142,12 @@ function returns \-1 if
> .\".I stream
> .\" already "pclose()d", or if
> .BR wait4 (2)
> -returns an error, or some other error is detected.
> -In the event of an error, these functions set
> +returns an error, or some other error is detected,
> +\-1 is returned.
> +.PP
> +Both functions set
> .I errno
> -to indicate the cause of the error.
> +to an appropriate value in the case of an error.
> .SH ERRORS
> The
> .BR popen ()
>
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-05-09 20:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-28 14:54 [PATCH] popen.3: RETURN VALUE: describe successful case Nikola Forró
[not found] ` <1461855269.3095.1.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-05-09 20:45 ` Michael Kerrisk (man-pages)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).