public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Robert Love <rml@tech9.net>
To: Shaya Potter <spotter@cs.columbia.edu>,
	Commander Marcelo <marcelo@conectiva.com.br>
Cc: linux-kernel@vger.kernel.org
Subject: Re: bug in sys_getpid() comment?
Date: 26 Sep 2002 23:45:10 -0400	[thread overview]
Message-ID: <1033098309.17641.237.camel@phantasy> (raw)
In-Reply-To: <1033096884.5495.8.camel@zaphod>

[-- Attachment #1: Type: text/plain, Size: 873 bytes --]

On Thu, 2002-09-26 at 23:21, Shaya Potter wrote:

> asmlinkage long sys_getpid(void)
> {
>         /* This is SMP safe - current->pid doesn't change */
>         return current->tgid;
> }
> 
> I assume we are returning tgid so that no matter what thread of a
> multithreaded program calls getpid we return the same value, and that
> the comment with pid is old and should have been updated when it was
> changed to return tgid.  A student in my Operating Systems class pointed
> this out, so I figured no harm in pointing the possible bug out.

Yes, you are correct, the comment is wrong.  We switched to returning
the tgid in early 2.4 when CLONE_THREAD was introduced.  The tgid and
pid are identical unless CLONE_THREAD was used.

Attached patch fixes the typo and adds some comments explaining this. 
Marcelo, patch is against 2.4.20-pre8, please apply.

	Robert Love


[-- Attachment #2: getpid-typo-rml-2.4.20-pre8-1.patch --]
[-- Type: text/plain, Size: 740 bytes --]

--- linux-2.4.20-pre8/kernel/timer.c	Thu Sep 26 23:37:02 2002
+++ linux/kernel/timer.c	Thu Sep 26 23:39:25 2002
@@ -740,10 +740,18 @@
  * The Alpha uses getxpid, getxuid, and getxgid instead.  Maybe this
  * should be moved into arch/i386 instead?
  */
- 
+
+/**
+ * sys_getpid - return the thread group id of the current process
+ *
+ * Note, despite the name, this returns the tgid not the pid.  The tgid and
+ * the pid are identical unless CLONE_THREAD was specified on clone() in
+ * which case the tgid is the same in all threads of the same group.
+ *
+ * This is SMP safe as current->tgid does not change.
+ */
 asmlinkage long sys_getpid(void)
 {
-	/* This is SMP safe - current->pid doesn't change */
 	return current->tgid;
 }
 

      reply	other threads:[~2002-09-27  3:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-27  3:21 bug in sys_getpid() comment? Shaya Potter
2002-09-27  3:45 ` Robert Love [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=1033098309.17641.237.camel@phantasy \
    --to=rml@tech9.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo@conectiva.com.br \
    --cc=spotter@cs.columbia.edu \
    /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