[go: nahoru, domu]

Port some of the base module to FreeBSD. Extracted from
http://codereview.chromium.org/172032.

The patch is contributed by Ben Laurie of Google.
Original review URL: http://codereview.chromium.org/180037

R=wtc
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/183016

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24950 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/base/process_util.h b/base/process_util.h
index 450dbc2..f002f85 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -13,7 +13,11 @@
 #if defined(OS_WIN)
 #include <windows.h>
 #include <tlhelp32.h>
-#elif defined(OS_LINUX)
+#elif defined(OS_MACOSX)
+// kinfo_proc is defined in <sys/sysctl.h>, but this forward declaration
+// is sufficient for the vector<kinfo_proc> below.
+struct kinfo_proc;
+#elif defined(OS_POSIX)
 #include <dirent.h>
 #include <limits.h>
 #include <sys/types.h>
@@ -50,10 +54,6 @@
 #include "base/file_descriptor_shuffle.h"
 #endif
 
-#if defined(OS_MACOSX)
-struct kinfo_proc;
-#endif
-
 namespace base {
 
 // A minimalistic but hopefully cross-platform set of exit codes.
@@ -273,11 +273,11 @@
 #if defined(OS_WIN)
   HANDLE snapshot_;
   bool started_iteration_;
-#elif defined(OS_LINUX)
-  DIR *procfs_dir_;
 #elif defined(OS_MACOSX)
   std::vector<kinfo_proc> kinfo_procs_;
   size_t index_of_kinfo_proc_;
+#elif defined(OS_POSIX)
+  DIR *procfs_dir_;
 #endif
   ProcessEntry entry_;
   const ProcessFilter* filter_;