summaryrefslogtreecommitdiff
path: root/mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h
diff options
context:
space:
mode:
Diffstat (limited to 'mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h')
-rw-r--r--mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h b/mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h
deleted file mode 100644
index 4ca345f91db..00000000000
--- a/mail/thunderbird17/patches/patch-mozilla_ipc_chromium_src_base_process__util.h
+++ /dev/null
@@ -1,37 +0,0 @@
-$NetBSD: patch-mozilla_ipc_chromium_src_base_process__util.h,v 1.1 2013/11/13 13:27:45 ryoon Exp $
-
---- mozilla/ipc/chromium/src/base/process_util.h.orig 2012-08-25 00:31:11.000000000 +0000
-+++ mozilla/ipc/chromium/src/base/process_util.h
-@@ -280,6 +280,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 +293,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);
- };