From: Thomas Gleixner <tglx@linutronix.de>
To: Chris Friesen <cfriesen@nortel.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
Ulrich Drepper <drepper@redhat.com>,
Roland McGrath <roland@redhat.com>
Subject: Re: linux missing support for _POSIX_THREAD_CPUTIME?
Date: Wed, 27 May 2009 19:36:32 +0200 (CEST) [thread overview]
Message-ID: <alpine.LFD.2.00.0905271922470.3397@localhost.localdomain> (raw)
In-Reply-To: <4A1D7512.9080604@nortel.com>
On Wed, 27 May 2009, Chris Friesen wrote:
> Thomas Gleixner wrote:
> > On Wed, 27 May 2009, Chris Friesen wrote:
> >
> > That's more a question for the glibc folks. CC'ed.
>
> Actually, I'm looking at the kernel code here. It looks like
> posix_cpu_clock_get() should be able to handle a per-task cpu clock for
> another thread within the same process. However, it's only ever called
> by thread_cpu_clock_get(), which hardcodes a clock_id of THREAD_CLOCK,
> which corresponds to the current thread.
No, it's also called via the CLOCK_DISPATCH magic in posix_timers.c
> Similarly, invalid_clockid() will say that the clock_id is invalid if
> it's positive but greater than 15. If my math is right, this means that
> any pid > 2 will result in invalid_clockid() failing.
posix_cpu_clock_get() does:
const pid_t pid = CPUCLOCK_PID(which_clock);
CPUCLOCK_PID is defined as:
#define CPUCLOCK_PID(clock) ((pid_t) ~((clock) >> 3))
include/linux/posix-timers.h has the helper macros to build the
clock_id value for posix_cpu_clock_get()
#define MAKE_PROCESS_CPUCLOCK(pid, clock) \
((~(clockid_t) (pid) << 3) | (clockid_t) (clock))
#define MAKE_THREAD_CPUCLOCK(tid, clock) \
MAKE_PROCESS_CPUCLOCK((tid), (clock) | CPUCLOCK_PERTHREAD_MASK)
Hope that helps,
tglx
next prev parent reply other threads:[~2009-05-27 17:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-27 16:46 Chris Friesen
2009-05-27 16:56 ` Thomas Gleixner
2009-05-27 17:14 ` Chris Friesen
2009-05-27 17:36 ` Thomas Gleixner [this message]
2009-05-27 20:00 ` Chris Friesen
2009-05-27 17:49 ` Roland McGrath
2009-05-27 17:00 ` linux missing support for _POSIX_THREAD_CPUTIME ? Chris Friesen
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=alpine.LFD.2.00.0905271922470.3397@localhost.localdomain \
--to=tglx@linutronix.de \
--cc=cfriesen@nortel.com \
--cc=drepper@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=roland@redhat.com \
/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
all inboxes | Powered by JetHome®