aboutsummaryrefslogtreecommitdiff
path: root/devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h')
-rw-r--r--devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h b/devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h
deleted file mode 100644
index 34c410661121..000000000000
--- a/devel/electron12/files/patch-base_allocator_partition__allocator_spinning__mutex.h
+++ /dev/null
@@ -1,33 +0,0 @@
---- base/allocator/partition_allocator/spinning_mutex.h.orig 2021-04-14 01:08:36 UTC
-+++ base/allocator/partition_allocator/spinning_mutex.h
-@@ -22,7 +22,11 @@
- #define PA_HAS_LINUX_KERNEL
- #endif
-
--#if defined(PA_HAS_LINUX_KERNEL) || defined(OS_WIN)
-+#if defined(OS_FREEBSD)
-+#define PA_HAS_FREEBSD_KERNEL
-+#endif
-+
-+#if defined(PA_HAS_LINUX_KERNEL) || defined(PA_HAS_FREEBSD_KERNEL) || defined(OS_WIN)
- #define PA_HAS_SPINNING_MUTEX
- #endif
-
-@@ -66,7 +70,7 @@ class LOCKABLE BASE_EXPORT SpinningMutex {
- // as the slow path has better characteristics than SpinLocks's.
- static constexpr int kSpinCount = 1000;
-
--#if defined(PA_HAS_LINUX_KERNEL)
-+#if defined(PA_HAS_LINUX_KERNEL) || defined(PA_HAS_FREEBSD_KERNEL)
- void FutexWait();
- void FutexWake();
-
-@@ -111,7 +115,7 @@ ALWAYS_INLINE void SpinningMutex::Acquire() {
-
- inline constexpr SpinningMutex::SpinningMutex() = default;
-
--#if defined(PA_HAS_LINUX_KERNEL)
-+#if defined(PA_HAS_LINUX_KERNEL) || defined(PA_HAS_FREEBSD_KERNEL)
-
- ALWAYS_INLINE bool SpinningMutex::Try() {
- int expected = kUnlocked;