linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Michael Kerrisk (man-pages)" <mtk.manpages@gmail.com>
To: Jonny Grant <jg@jguk.org>, linux-man <linux-man@vger.kernel.org>
Cc: mtk.manpages@gmail.com
Subject: Re: syscall man page
Date: Mon, 8 Jun 2020 23:02:10 +0200	[thread overview]
Message-ID: <9020118c-1d62-a4a2-a3ba-d8dbf01df550@gmail.com> (raw)
In-Reply-To: <60a31e2e-d0a5-95f9-54bf-be1d8455fb77@jguk.org>

Hello Jonny,

On 5/30/20 12:16 AM, Jonny Grant wrote:
> Good evening
> 
> Quoting part of the syscall man page:
> 
> RETURN VALUE
>         The  return value is defined by the system call being invoked.  In gen‐
>         eral, a 0 return value indicates success.  A -1 return value  indicates
>         an error, and an error code is stored in errno.
> 
> 
> The last sentence doesn't quite sound right in English, and
> different from other man pages eg closedir. I would propose 
> updating it to be :-
> 
> "On error, -1 is returned, and errno is set appropriately"

The thing is, syscall() different from your average system call
or library function, so I think it's not unreasonable that the
wording is somewhat different. That said, I applied the patch 
below.

Cheers,

Michael

diff --git a/man2/syscall.2 b/man2/syscall.2
index 2fd94db53..382c40b22 100644
--- a/man2/syscall.2
+++ b/man2/syscall.2
@@ -82,9 +82,8 @@ when invoking a system call that has no wrapper function in the C library.
 .BR syscall ()
 saves CPU registers before making the system call,
 restores the registers upon return from the system call,
-and stores any error code returned by the system call in
-.BR errno (3)
-if an error occurs.
+and stores any error returned by the system call in
+.BR errno (3).
 .PP
 Symbolic constants for system call numbers can be found in the header file
 .IR <sys/syscall.h> .
@@ -92,7 +91,7 @@ Symbolic constants for system call numbers can be found in the header file
 The return value is defined by the system call being invoked.
 In general, a 0 return value indicates success.
 A \-1 return value indicates an error,
-and an error code is stored in
+and an error number is stored in
 .IR errno .
 .SH NOTES
 .BR syscall ()



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

      reply	other threads:[~2020-06-08 21:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-29 22:16 syscall man page Jonny Grant
2020-06-08 21:02 ` Michael Kerrisk (man-pages) [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9020118c-1d62-a4a2-a3ba-d8dbf01df550@gmail.com \
    --to=mtk.manpages@gmail.com \
    --cc=jg@jguk.org \
    --cc=linux-man@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).