aboutsummaryrefslogblamecommitdiff
path: root/www/chromium/files/patch-third__party_ipcz_src_standalone_base_logging.cc
blob: e78ffde6fb39d3586f36251a0dcda1cd810b3609 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                       
--- third_party/ipcz/src/standalone/base/logging.cc.orig	2022-05-19 14:06:27 UTC
+++ third_party/ipcz/src/standalone/base/logging.cc
@@ -50,6 +50,9 @@ LogMessage::LogMessage(const char* file, int line, Lev
 #elif BUILDFLAG(IS_ANDROID)
   stream_ << getpid() << ":" << gettid() << ":";
   const char* trimmed_file = strrchr(file, '/') + 1;
+#elif BUILDFLAG(IS_BSD)
+  stream_ << getpid() << ":" << pthread_self() << ":";
+  const char* trimmed_file = strrchr(file, '/') + 1;
 #elif BUILDFLAG(IS_WIN)
   const char* trimmed_file = file;
   stream_ << (::GetCurrentProcessId()) << ":" << ::GetCurrentThreadId() << ":";