diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-03-02 00:08:14 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-03-02 00:08:14 +0000 |
| commit | 8ca72161f4af1c51192f5878cfc0e39a0ee84a03 (patch) | |
| tree | 6a745cb23a39b8c63a9dd9d293bbc53f384014e8 /repos/extra/librewolf/musl-pthread-name.patch | |
| parent | 020d4bcb24c405908e274f62074f7bc23663454a (diff) | |
| download | alicelinux-8ca72161f4af1c51192f5878cfc0e39a0ee84a03.tar.gz alicelinux-8ca72161f4af1c51192f5878cfc0e39a0ee84a03.zip | |
librewolf: updated to 148.0.1
Diffstat (limited to 'repos/extra/librewolf/musl-pthread-name.patch')
| -rw-r--r-- | repos/extra/librewolf/musl-pthread-name.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/repos/extra/librewolf/musl-pthread-name.patch b/repos/extra/librewolf/musl-pthread-name.patch new file mode 100644 index 00000000..fe74bb1b --- /dev/null +++ b/repos/extra/librewolf/musl-pthread-name.patch @@ -0,0 +1,29 @@ +From 70d47d18420fe9e3de8f896c08f97ef2596c9c84 Mon Sep 17 00:00:00 2001 +From: "Jory A. Pratt" <anarchy@gentoo.org> +Date: Mon, 6 Apr 2020 20:10:03 +0200 +Subject: [PATCH 13/30] musl: Set pthread name for non glibc systems + +Signed-off-by: Thomas Deutschmann <whissi@gentoo.org> +--- + js/src/threading/posix/PosixThread.cpp | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/js/src/threading/posix/PosixThread.cpp b/js/src/threading/posix/PosixThread.cpp +index 35532e375b..983da45326 100644 +--- a/js/src/threading/posix/PosixThread.cpp ++++ b/js/src/threading/posix/PosixThread.cpp +@@ -115,8 +115,10 @@ void ThisThread::SetName(const char* name) { + 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); + } +-- +2.34.1 + |