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

Unified Diff: base/process/process_iterator.h

Issue 185713005: Add support for FreeBSD in base/ , base/process/ , and base/threading so that the bootstrap binary … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove superfluous newline. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/process/process_handle_freebsd.cc ('k') | base/process/process_iterator_freebsd.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process/process_iterator.h
diff --git a/base/process/process_iterator.h b/base/process/process_iterator.h
index aa8ba74aba08dc91f002d265cf9d4e50081cd8ef..aa2fc4148ad55ff3ce11a3dd338491fca353b85d 100644
--- a/base/process/process_iterator.h
+++ b/base/process/process_iterator.h
@@ -20,8 +20,10 @@
#if defined(OS_WIN)
#include <windows.h>
#include <tlhelp32.h>
-#elif defined(OS_MACOSX) || defined(OS_BSD)
+#elif defined(OS_MACOSX) || defined(OS_OPENBSD)
#include <sys/sysctl.h>
+#elif defined(OS_FREEBSD)
+#include <sys/user.h>
#elif defined(OS_POSIX)
#include <dirent.h>
#endif
« no previous file with comments | « base/process/process_handle_freebsd.cc ('k') | base/process/process_iterator_freebsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698