public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Measuring startup-time from userspace
@ 2011-01-02 22:40 Taras Glek
  2011-01-03  1:29 ` Ben Gamari
  2011-01-03  5:12 ` Alexander Clouter
  0 siblings, 2 replies; 3+ messages in thread
From: Taras Glek @ 2011-01-02 22:40 UTC (permalink / raw)
  To: linux-kernel

Hi,
Does Linux provide a reasonable way to measure how long a process has 
existed for? The goal is to have a function that returns the number of 
milliseconds since process-creation.

We'd like to be able to have Firefox self-diagnose startup times. 
Unfortunately, it turns out that library loading time adds a lot to 
startup before application code runs, so a in-application timer would 
underestimate startup time.

It appears that the most precise solution is to read start time from 
/proc/self/stat. Unfortunately the time is in jiffies-since-startup and 
there don't seem to be any good counters to compare against (ie 
/proc/uptime doesn't provide enough resolution). So far the only 
workable solution seems to create a new thread/process. Then one can do 
(/proc/<newpid>/stat.starttime - /proc/self/stat.starttime) * 1000 / HZ
.

The question is, there way for a process to measure time-since-startup 
without horrible hacks like spawning a new processes?


Taras

ps. Perhaps /proc/timer_list contains enough info?

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-03  5:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-02 22:40 Measuring startup-time from userspace Taras Glek
2011-01-03  1:29 ` Ben Gamari
2011-01-03  5:12 ` Alexander Clouter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox