void-packages/srcpkgs/firefox/patches/musl-pthread-setname.patch

15 lines
415 B
Diff
Raw Normal View History

2016-09-20 19:18:28 +00:00
--- js/src/threading/posix/Thread.cpp.orig 2016-09-20 22:19:46.368622126 +0200
+++ js/src/threading/posix/Thread.cpp 2016-09-20 22:23:35.495823534 +0200
@@ -153,8 +153,10 @@
rv = 0;
#elif defined(__NetBSD__)
rv = pthread_setname_np(pthread_self(), "%s", (void*)name);
-#else
+#elif defined(__GLIBC__)
rv = pthread_setname_np(pthread_self(), name);
2016-09-20 21:47:53 +00:00
+#else
2016-09-20 19:18:28 +00:00
+ rv = 0;
#endif
MOZ_RELEASE_ASSERT(!rv);
}