From dea2a1fa20fc8e843cd85e5920a67b9054d00b2e Mon Sep 17 00:00:00 2001 From: Woodpecker CI Date: Sun, 24 May 2026 15:40:32 +0000 Subject: Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI] --- repos/extra/librewolf/musl-pthread-name.patch | 29 --------------------------- 1 file changed, 29 deletions(-) delete mode 100644 repos/extra/librewolf/musl-pthread-name.patch (limited to 'repos/extra/librewolf/musl-pthread-name.patch') diff --git a/repos/extra/librewolf/musl-pthread-name.patch b/repos/extra/librewolf/musl-pthread-name.patch deleted file mode 100644 index fe74bb1b..00000000 --- a/repos/extra/librewolf/musl-pthread-name.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 70d47d18420fe9e3de8f896c08f97ef2596c9c84 Mon Sep 17 00:00:00 2001 -From: "Jory A. Pratt" -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 ---- - 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 - -- cgit v1.2.3