summaryrefslogtreecommitdiff
path: root/user/firefox-esr/musl-pthread-setname.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/firefox-esr/musl-pthread-setname.patch')
-rw-r--r--user/firefox-esr/musl-pthread-setname.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/user/firefox-esr/musl-pthread-setname.patch b/user/firefox-esr/musl-pthread-setname.patch
deleted file mode 100644
index 3bf620219..000000000
--- a/user/firefox-esr/musl-pthread-setname.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/js/src/threading/posix/Thread.cpp.orig 2016-09-20 22:19:46.368622126 +0200
-+++ b/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);
-+#else
-+ rv = 0;
- #endif
- MOZ_RELEASE_ASSERT(!rv);
- }