aboutsummaryrefslogtreecommitdiff
path: root/www/qt6-webengine/files/patch-src_3rdparty_chromium_base_test_test__file__util__linux.cc
blob: 0a61f568e7e704a6927edf85442fa68531a8a1f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- src/3rdparty/chromium/base/test/test_file_util_linux.cc.orig	2023-09-13 12:11:42 UTC
+++ src/3rdparty/chromium/base/test/test_file_util_linux.cc
@@ -54,8 +54,10 @@ bool EvictFileFromSystemCache(const FilePath& file) {
     return false;
   if (fdatasync(fd.get()) != 0)
     return false;
+#if !BUILDFLAG(IS_BSD)
   if (posix_fadvise(fd.get(), 0, 0, POSIX_FADV_DONTNEED) != 0)
     return false;
+#endif
   return true;
 }