aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h')
-rw-r--r--www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h b/www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h
deleted file mode 100644
index a5899e29e5c8..000000000000
--- a/www/chromium/files/patch-base_allocator_partition__allocator_spinning__mutex.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- base/allocator/partition_allocator/spinning_mutex.h.orig 2021-12-14 11:44:55 UTC
-+++ base/allocator/partition_allocator/spinning_mutex.h
-@@ -106,7 +106,7 @@ class LOCKABLE BASE_EXPORT SpinningMutex {
-
- #if defined(PA_HAS_FAST_MUTEX)
-
--#if defined(PA_HAS_LINUX_KERNEL)
-+#if defined(PA_HAS_LINUX_KERNEL) || defined(PA_HAS_FREEBSD_KERNEL)
- void FutexWait();
- void FutexWake();
-
-@@ -176,7 +176,7 @@ inline constexpr SpinningMutex::SpinningMutex() = defa
-
- #if defined(PA_HAS_FAST_MUTEX)
-
--#if defined(PA_HAS_LINUX_KERNEL)
-+#if defined(PA_HAS_LINUX_KERNEL) || defined(PA_HAS_FREEBSD_KERNEL)
-
- ALWAYS_INLINE bool SpinningMutex::Try() {
- // Using the weak variant of compare_exchange(), which may fail spuriously. On