summaryrefslogtreecommitdiffstats
path: root/base/process_info_mac.cc
blob: 247a144b47850ae04e420f54ac8260a72687096d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/process_info.h"

#include <sys/sysctl.h>
#include <sys/time.h>
#include <unistd.h>

#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/time.h"

namespace {

using base::Time;

// Returns the process creation time, or NULL if an error occurred.
Time* ProcessCreationTimeInternal() {
  int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid() };
  size_t len = 0;
  if (sysctl(mib, arraysize(mib), NULL, &len, NULL, 0) < 0)
    return NULL;

  scoped_ptr_malloc<struct kinfo_proc>
      proc(static_cast<struct kinfo_proc*>(malloc(len)));
  if (sysctl(mib, arraysize(mib), proc.get(), &len, NULL, 0) < 0)
    return NULL;
  return new Time(Time::FromTimeVal(proc->kp_proc.p_un.__p_starttime));
}

}  // namespace

namespace base {

//static
const Time* CurrentProcessInfo::CreationTime() {
  static Time* process_creation_time = ProcessCreationTimeInternal();
  return process_creation_time;
}

}  // namespace base