Files
pkgsrc-ng/devel/xulrunner10/patches/patch-ipc_chromium_src_base_process__util.h
2013-09-26 17:14:40 +02:00

38 lines
1.1 KiB
C++

$NetBSD: patch-ipc_chromium_src_base_process__util.h,v 1.2 2013/03/26 09:37:22 sbd Exp $
--- ipc/chromium/src/base/process_util.h.orig 2012-03-09 22:20:16.000000000 +0000
+++ ipc/chromium/src/base/process_util.h
@@ -280,6 +279,7 @@ class NamedProcessIterator {
const ProcessEntry* NextProcessEntry();
private:
+#if !defined(OS_BSD)
// Determines whether there's another process (regardless of executable)
// left in the list of all processes. Returns true and sets entry_ to
// that process's info if there is one, false otherwise.
@@ -292,18 +292,24 @@ class NamedProcessIterator {
void InitProcessEntry(ProcessEntry* entry);
std::wstring executable_name_;
+#endif
#if defined(OS_WIN)
HANDLE snapshot_;
bool started_iteration_;
#elif defined(OS_LINUX)
DIR *procfs_dir_;
+#elif defined(OS_BSD)
+ std::vector<ProcessEntry> content;
+ size_t nextEntry;
#elif defined(OS_MACOSX)
std::vector<kinfo_proc> kinfo_procs_;
size_t index_of_kinfo_proc_;
#endif
+#if !defined(OS_BSD)
ProcessEntry entry_;
const ProcessFilter* filter_;
+#endif
DISALLOW_EVIL_CONSTRUCTORS(NamedProcessIterator);
};