diff options
Diffstat (limited to 'devel/electron33/files/patch-base_process_memory__linux.cc')
-rw-r--r-- | devel/electron33/files/patch-base_process_memory__linux.cc | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/devel/electron33/files/patch-base_process_memory__linux.cc b/devel/electron33/files/patch-base_process_memory__linux.cc deleted file mode 100644 index 5a403aba7f5b..000000000000 --- a/devel/electron33/files/patch-base_process_memory__linux.cc +++ /dev/null @@ -1,44 +0,0 @@ ---- base/process/memory_linux.cc.orig 2024-08-14 20:54:23 UTC -+++ base/process/memory_linux.cc -@@ -28,6 +28,7 @@ namespace base { - - namespace base { - -+#if !BUILDFLAG(IS_BSD) - namespace { - - void ReleaseReservationOrTerminate() { -@@ -37,12 +38,14 @@ void ReleaseReservationOrTerminate() { - } - - } // namespace -+#endif - - void EnableTerminationOnHeapCorruption() { - // On Linux, there nothing to do AFAIK. - } - - void EnableTerminationOnOutOfMemory() { -+#if !BUILDFLAG(IS_BSD) - // Set the new-out of memory handler. - std::set_new_handler(&ReleaseReservationOrTerminate); - // If we're using glibc's allocator, the above functions will override -@@ -51,8 +54,10 @@ void EnableTerminationOnOutOfMemory() { - #if PA_BUILDFLAG(USE_ALLOCATOR_SHIM) - allocator_shim::SetCallNewHandlerOnMallocFailure(true); - #endif -+#endif - } - -+#if !BUILDFLAG(IS_BSD) - // ScopedAllowBlocking() has private constructor and it can only be used in - // friend classes/functions. Declaring a class is easier in this situation to - // avoid adding more dependency to thread_restrictions.h because of the -@@ -110,6 +115,7 @@ bool AdjustOOMScore(ProcessId process, int score) { - bool AdjustOOMScore(ProcessId process, int score) { - return AdjustOOMScoreHelper::AdjustOOMScore(process, score); - } -+#endif - - bool UncheckedMalloc(size_t size, void** result) { - #if PA_BUILDFLAG(USE_ALLOCATOR_SHIM) |