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

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

Issue 2768123002: Revert of Add process uptime metadata event in tracing (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « base/BUILD.gn ('k') | base/process/process_info_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/process/process_info.h" 5 #include "base/process/process_info.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/process/internal_linux.h" 10 #include "base/process/internal_linux.h"
11 #include "base/process/process_handle.h" 11 #include "base/process/process_handle.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 13
14 namespace base { 14 namespace base {
15 15
16 // static 16 // static
17 const Time CurrentProcessInfo::CreationTime() { 17 const Time CurrentProcessInfo::CreationTime() {
18 int64_t start_ticks = 18 int64_t start_ticks =
19 internal::ReadProcSelfStatsAndGetFieldAsInt64(internal::VM_STARTTIME); 19 internal::ReadProcSelfStatsAndGetFieldAsInt64(internal::VM_STARTTIME);
20 if (!start_ticks) 20 DCHECK(start_ticks);
21 return Time();
22 TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks); 21 TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks);
23 Time boot_time = internal::GetBootTime(); 22 Time boot_time = internal::GetBootTime();
24 if (boot_time.is_null()) 23 DCHECK(!boot_time.is_null());
25 return Time();
26 return Time(boot_time + start_offset); 24 return Time(boot_time + start_offset);
27 } 25 }
28 26
29 } // namespace base 27 } // namespace base
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/process/process_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698