aboutsummaryrefslogblamecommitdiff
path: root/www/chromium/files/patch-base_debug_stack__trace__posix.cc
blob: f53bb3e100d409feedc07af566058bdcdfc3847e (plain) (tree)
1
2
3
4
5
6
7
8
                                                                       
                                   
                 


                                

                                                                       


                                        
                                                  


                                                             
                      

                  


                                    
                                                  
 

                            
       
    
 
                                                               
                                                                          



                                                                               
                                                                   


                                                                           
--- base/debug/stack_trace_posix.cc.orig	2022-03-25 21:59:56 UTC
+++ base/debug/stack_trace_posix.cc
@@ -38,7 +38,7 @@
 #include <AvailabilityMacros.h>
 #endif
 
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD)
 #include "base/debug/proc_maps_linux.h"
 #endif
 
@@ -695,6 +695,9 @@ class SandboxSymbolizeHelper {
   // for the modules that are loaded in the current process.
   // Returns true on success.
   bool CacheMemoryRegions() {
+#if BUILDFLAG(IS_BSD)
+    return false;
+#else
     // Reads /proc/self/maps.
     std::string contents;
     if (!ReadProcMaps(&contents)) {
@@ -712,6 +715,7 @@ class SandboxSymbolizeHelper {
 
     is_initialized_ = true;
     return true;
+#endif
   }
 
   // Opens all object files and caches their file descriptors.
@@ -868,7 +872,7 @@ size_t CollectStackTrace(void** trace, size_t count) {
   // If we do not have unwind tables, then try tracing using frame pointers.
   return base::debug::TraceStackFramePointers(const_cast<const void**>(trace),
                                               count, 0);
-#elif !defined(__UCLIBC__) && !defined(_AIX)
+#elif !defined(__UCLIBC__) && !defined(_AIX) && !BUILDFLAG(IS_BSD)
   // Though the backtrace API man page does not list any possible negative
   // return values, we take no chance.
   return base::saturated_cast<size_t>(backtrace(trace, count));