Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1005)

Side by Side Diff: base/process/process_info_linux.cc

Issue 21302005: Add CurrentProcessInfo::CreationTime() for Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Read from stat files Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/process/internal_linux.cc ('k') | base/process/process_metrics_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/process/process_info.h"
6
7 #include "base/basictypes.h"
8 #include "base/logging.h"
9 #include "base/process/internal_linux.h"
10 #include "base/process/process_handle.h"
11 #include "base/time/time.h"
12
13 namespace base {
14 namespace {
15
16 using base::Time;
17
18 Time* ProcessCreationTimeInternal() {
19 ProcessHandle pid = GetCurrentProcessHandle();
20 int start_ticks = internal::ReadProcStatsAndGetFieldAsInt(
21 pid, internal::VM_STARTTIME);
22 DCHECK(start_ticks);
23 TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks);
24 Time boot_time = internal::GetBootTime();
25 DCHECK(!boot_time.is_null());
26 return new Time(boot_time + start_offset);
27 }
28
29 } // namespace
30
31 //static
32 const Time* CurrentProcessInfo::CreationTime() {
33 static Time* process_creation_time = ProcessCreationTimeInternal();
jln (very slow on Chromium) 2013/08/06 18:57:29 This caching seems a bit dangerous on Linux. We u
James Simonsen 2013/08/06 19:09:08 I'll just remove it. It's done this way because th
34 return process_creation_time;
35 }
36
37 } // namespace base
OLDNEW
« no previous file with comments | « base/process/internal_linux.cc ('k') | base/process/process_metrics_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698