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





                   
                              
                                         
                                                                    








                                                                           
                                                                          






                                                                           
--- base/linux_util.cc.orig	2022-05-19 14:06:27 UTC
+++ base/linux_util.cc
@@ -15,6 +15,7 @@
 
 #include <iomanip>
 #include <memory>
+#include <sstream>
 
 #include "base/base_export.h"
 #include "base/files/dir_reader_posix.h"
@@ -135,6 +136,9 @@ void SetLinuxDistro(const std::string& distro) {
 }
 
 bool GetThreadsForProcess(pid_t pid, std::vector<pid_t>* tids) {
+#if defined(OS_BSD)
+  return false;
+#else
   // 25 > strlen("/proc//task") + strlen(std::to_string(INT_MAX)) + 1 = 22
   char buf[25];
   strings::SafeSPrintf(buf, "/proc/%d/task", pid);
@@ -154,6 +158,7 @@ bool GetThreadsForProcess(pid_t pid, std::vector<pid_t
   }
 
   return true;
+#endif
 }
 
 pid_t FindThreadIDWithSyscall(pid_t pid, const std::string& expected_data,