Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_handle.h" | 5 #include "base/process/process_handle.h" |
| 6 | 6 |
| 7 #include <errno.h> | |
|
tapted
2014/04/08 17:56:44
nit: I don't think you need all these - maybe just
jackhou1
2014/04/14 04:12:10
Done.
| |
| 8 #include <libproc.h> | |
| 9 #include <stdio.h> | |
| 10 #include <stdlib.h> | |
| 11 #include <string.h> | |
| 7 #include <sys/sysctl.h> | 12 #include <sys/sysctl.h> |
| 8 #include <sys/types.h> | 13 #include <sys/types.h> |
| 9 | 14 |
| 10 #include "base/logging.h" | 15 #include "base/logging.h" |
| 11 | 16 |
| 12 namespace base { | 17 namespace base { |
| 13 | 18 |
| 14 ProcessId GetParentProcessId(ProcessHandle process) { | 19 ProcessId GetParentProcessId(ProcessHandle process) { |
| 15 struct kinfo_proc info; | 20 struct kinfo_proc info; |
| 16 size_t length = sizeof(struct kinfo_proc); | 21 size_t length = sizeof(struct kinfo_proc); |
| 17 int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process }; | 22 int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process }; |
| 18 if (sysctl(mib, 4, &info, &length, NULL, 0) < 0) { | 23 if (sysctl(mib, 4, &info, &length, NULL, 0) < 0) { |
| 19 DPLOG(ERROR) << "sysctl"; | 24 DPLOG(ERROR) << "sysctl"; |
| 20 return -1; | 25 return -1; |
| 21 } | 26 } |
| 22 if (length == 0) | 27 if (length == 0) |
| 23 return -1; | 28 return -1; |
| 24 return info.kp_eproc.e_ppid; | 29 return info.kp_eproc.e_ppid; |
| 25 } | 30 } |
| 26 | 31 |
| 32 | |
| 33 FilePath GetProcessExecutablePath(ProcessHandle process) { | |
| 34 char pathbuf[PROC_PIDPATHINFO_MAXSIZE]; | |
| 35 if (proc_pidpath(process, pathbuf, sizeof(pathbuf))) | |
|
tapted
2014/04/08 17:56:44
http://www.opensource.apple.com/source/Libc/Libc-5
jackhou1
2014/04/14 04:12:10
You're right. I've inverted the logic and manually
| |
| 36 return FilePath(); | |
| 37 | |
| 38 return FilePath(pathbuf); | |
| 39 } | |
| 40 | |
| 27 } // namespace base | 41 } // namespace base |
| OLD | NEW |