diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-07-11 07:40:24 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-07-11 08:28:25 +0000 |
commit | 45f1983a73da1a7f785d8110cce63bbf2240fc18 (patch) | |
tree | 798f997b929594f03fd22c8ef6303cf8c0b94c3a /testing/firefox/musl-pthread-setname.patch | |
parent | 79120c4cde882291dfae5eb28d5c7ecf73c00708 (diff) | |
download | aports-45f1983a73da1a7f785d8110cce63bbf2240fc18.tar.bz2 aports-45f1983a73da1a7f785d8110cce63bbf2240fc18.tar.xz |
testing/firefox: improve seccomp, use pthread_setname_np
ref #7454
Diffstat (limited to 'testing/firefox/musl-pthread-setname.patch')
-rw-r--r-- | testing/firefox/musl-pthread-setname.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/firefox/musl-pthread-setname.patch b/testing/firefox/musl-pthread-setname.patch deleted file mode 100644 index 3bf620219b..0000000000 --- a/testing/firefox/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); - } |