1 --- src/3rdparty/chromium/base/linux_util.cc.orig	2025-08-15 18:30:00 UTC
2 +++ src/3rdparty/chromium/base/linux_util.cc
3 @@ -164,10 +164,14 @@ bool GetThreadsForProcess(pid_t pid, std::vector<pid_t
4  }
5 
6  bool GetThreadsForProcess(pid_t pid, std::vector<pid_t>* tids) {
7 +#if BUILDFLAG(IS_BSD)
8 +  return false;
9 +#else
10    // 25 > strlen("/proc//task") + strlen(base::NumberToString(INT_MAX)) + 1 = 22
11    char buf[25];
12    strings::SafeSPrintf(buf, "/proc/%d/task", pid);
13    return GetThreadsFromProcessDir(buf, tids);
14 +#endif
15  }
16 
17  bool GetThreadsForCurrentProcess(std::vector<pid_t>* tids) {
18