summaryrefslogtreecommitdiff
path: root/www/ungoogled-chromium/files/patch-third__party_crashpad_crashpad_util_posix_close__multiple.cc
blob: 8533fc01858e86eae2689c9e05b6b33026498187 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- third_party/crashpad/crashpad/util/posix/close_multiple.cc.orig	2022-10-01 07:40:07 UTC
+++ third_party/crashpad/crashpad/util/posix/close_multiple.cc
@@ -72,7 +72,7 @@ void CloseNowOrOnExec(int fd, bool ebadf_ok) {
 // This is an advantage over looping over all possible file descriptors, because
 // no attempt needs to be made to close file descriptors that are not open.
 bool CloseMultipleNowOrOnExecUsingFDDir(int min_fd, int preserve_fd) {
-#if BUILDFLAG(IS_APPLE)
+#if BUILDFLAG(IS_APPLE) || BUILDFLAG(IS_BSD)
   static constexpr char kFDDir[] = "/dev/fd";
 #elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
   static constexpr char kFDDir[] = "/proc/self/fd";