aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc')
-rw-r--r--www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc b/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc
new file mode 100644
index 000000000000..4dec0072f348
--- /dev/null
+++ b/www/chromium/files/patch-third__party_webrtc_base_platform__thread.cc
@@ -0,0 +1,42 @@
+--- third_party/webrtc/base/platform_thread.cc.orig 2016-05-11 19:04:03 UTC
++++ third_party/webrtc/base/platform_thread.cc
+@@ -12,11 +12,18 @@
+
+ #include "webrtc/base/checks.h"
+
+-#if defined(WEBRTC_LINUX)
++#if defined(WEBRTC_LINUX) && !defined(__FreeBSD__)
+ #include <sys/prctl.h>
+ #include <sys/syscall.h>
+ #endif
+
++#if defined(WEBRTC_BSD)
++#include <pthread.h>
++#include <pthread_np.h>
++#include <sys/syscall.h>
++#include <sys/thr.h>
++#endif
++
+ namespace rtc {
+
+ PlatformThreadId CurrentThreadId() {
+@@ -26,6 +33,8 @@ PlatformThreadId CurrentThreadId() {
+ #elif defined(WEBRTC_POSIX)
+ #if defined(WEBRTC_MAC) || defined(WEBRTC_IOS)
+ ret = pthread_mach_thread_np(pthread_self());
++#elif defined(WEBRTC_BSD)
++ ret = static_cast<int>(pthread_getthreadid_np());
+ #elif defined(WEBRTC_LINUX)
+ ret = syscall(__NR_gettid);
+ #elif defined(WEBRTC_ANDROID)
+@@ -69,7 +78,9 @@ void SetCurrentThreadName(const char* na
+ reinterpret_cast<ULONG_PTR*>(&threadname_info));
+ } __except (EXCEPTION_EXECUTE_HANDLER) {
+ }
+-#elif defined(WEBRTC_LINUX) || defined(WEBRTC_ANDROID)
++#elif defined(WEBRTC_BSD)
++ pthread_set_name_np(pthread_self(), name);
++#elif (defined(WEBRTC_LINUX) || defined(WEBRTC_ANDROID)) && !defined(WEBRTC_BSD)
+ prctl(PR_SET_NAME, reinterpret_cast<unsigned long>(name));
+ #elif defined(WEBRTC_MAC) || defined(WEBRTC_IOS)
+ pthread_setname_np(name);