summaryrefslogtreecommitdiff
path: root/www/iridium/files/patch-base_process_kill__posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/iridium/files/patch-base_process_kill__posix.cc')
-rw-r--r--www/iridium/files/patch-base_process_kill__posix.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/iridium/files/patch-base_process_kill__posix.cc b/www/iridium/files/patch-base_process_kill__posix.cc
deleted file mode 100644
index 69e4dbc6c05e..000000000000
--- a/www/iridium/files/patch-base_process_kill__posix.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- base/process/kill_posix.cc.orig 2019-06-04 18:55:15 UTC
-+++ base/process/kill_posix.cc
-@@ -168,7 +168,7 @@ void EnsureProcessTerminated(Process process) {
- 0, new BackgroundReaper(std::move(process), TimeDelta::FromSeconds(2)));
- }
-
--#if defined(OS_LINUX)
-+#if defined(OS_LINUX) || defined(OS_BSD)
- void EnsureProcessGetsReaped(Process process) {
- DCHECK(!process.is_current());
-
-@@ -179,7 +179,7 @@ void EnsureProcessGetsReaped(Process process) {
- PlatformThread::CreateNonJoinable(
- 0, new BackgroundReaper(std::move(process), TimeDelta()));
- }
--#endif // defined(OS_LINUX)
-+#endif // defined(OS_LINUX) || defined(OS_BSD)
-
- #endif // !defined(OS_MACOSX)
- #endif // !defined(OS_NACL_NONSFI)