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




                                          
                      




                          
                                 
                             
                                                                         


                             
                      








                                           
--- base/message_loop/message_pump_glib.cc.orig	2022-08-31 12:19:35 UTC
+++ base/message_loop/message_pump_glib.cc
@@ -8,6 +8,11 @@
 #include <glib.h>
 #include <math.h>
 
+#if BUILDFLAG(IS_BSD)
+#include <pthread.h>
+#include <pthread_np.h>
+#endif
+
 #include "base/logging.h"
 #include "base/memory/raw_ptr.h"
 #include "base/notreached.h"
@@ -51,9 +56,13 @@ int GetTimeIntervalMilliseconds(TimeTicks next_task_ti
 }
 
 bool RunningOnMainThread() {
+#if BUILDFLAG(IS_BSD)
+  return pthread_main_np();
+#else
   auto pid = getpid();
   auto tid = PlatformThread::CurrentId();
   return pid > 0 && tid > 0 && pid == tid;
+#endif
 }
 
 // A brief refresher on GLib: