aboutsummaryrefslogtreecommitdiff
path: root/devel/electron17/files/patch-base_synchronization_lock__impl.h
blob: c371c359eafb81bcece690a2b4586947d4221e86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- base/synchronization/lock_impl.h.orig	2022-05-11 07:16:46 UTC
+++ base/synchronization/lock_impl.h
@@ -107,6 +107,10 @@ void LockImpl::Unlock() {
 }
 
 #elif defined(OS_POSIX) || defined(OS_FUCHSIA)
+#if defined(OS_FREEBSD)
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wthread-safety-analysis"
+#endif
 
 BASE_EXPORT std::string SystemErrorCodeToString(int error_code);
 
@@ -121,6 +125,9 @@ void LockImpl::Unlock() {
   int rv = pthread_mutex_unlock(&native_handle_);
   DCHECK_EQ(rv, 0) << ". " << strerror(rv);
 }
+#if defined(OS_FREEBSD)
+#pragma GCC diagnostic pop
+#endif
 #endif
 
 // This is an implementation used for AutoLock templated on the lock type.