From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: from second.openwall.net (second.openwall.net [193.110.157.125]) by inbox.vuxu.org (Postfix) with SMTP id 8D31426A10 for ; Fri, 2 Aug 2024 15:54:19 +0200 (CEST) Received: (qmail 23881 invoked by uid 550); 2 Aug 2024 13:54:14 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 23846 invoked from network); 2 Aug 2024 13:54:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1722606846; x=1723211646; darn=lists.openwall.com; h=mime-version:user-agent:content-transfer-encoding:date:to:reply-to :from:subject:message-id:from:to:cc:subject:date:message-id:reply-to; bh=eHllJu+x2bUdqcrzzxuPXXmY86MxW/DcDifuJKn/R+s=; b=WcJL/ykKJE47KY9fXhLKVbLPFRuliPRF9W4jzWayNDqS4WZTdQFxMJwAR+utMNeOI1 zh/9ZBXy3fR8t0CkdeurbG0on2/i0rO96yrckl9CSuX/0UaFPCbDe9sEKY4vVpEiJuW6 xdx+J6TDNUEmIcXL94+OB/4IEtN9jG1rYTRgPBQ0U9r1itiCRudVxtdf++BDYPUdkzre rmk2qewAKfQ4GSXxclvvfzFFYFUoeGtMMOgS9HgWKU8gp697/bjhIuUfmy9dl2VnKFvG jk08GVF50+eRzvT7OQxP3gv435jI0D0dIjcV176ZzM9jDe0pFXo6+klPDiJ1Z+5Id7Vr pYHg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1722606846; x=1723211646; h=mime-version:user-agent:content-transfer-encoding:date:to:reply-to :from:subject:message-id:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=eHllJu+x2bUdqcrzzxuPXXmY86MxW/DcDifuJKn/R+s=; b=O375iJ7ZF+FVMIuZZzo2u8KeP5ZcV8IYjabwFSWgte2XUhy3zql/UP5yIEzhGG1wrV RnkfiyPOXFUVJdihYBqwLVIPdq20Rh+Tr0LFgj4YczQzHHr9EQTzCfCaMD+nCnODs2x5 RJAJR8wtu4gnmMNbkJRzXsp3t3mcNzBVZI4RoKc5P/pVVJ+4cBfGNFx+5T99nbBrrH3+ afCdEac/eEyDSk+XHQ8raKrCcTNag1+wAazONXuXaplIN875cfzGB4v/A2529nTqDXWp lYc6r5NeJ/GjEPyLjUaFSYl2XGnvRuCs71CI41wFXE3lN46ghtsbZbRmUo4JhjuMg4gy G1wQ== X-Gm-Message-State: AOJu0YyFr05xcPH//33qVh/tqSuNmnZTa+1BK5gQ9/NbqZyfYMAGdqV1 AhovHA1wvWW/5sGGAtM83RXAgWMxSxL24Q5RO7yjCb1/2Mbz0i8Z3CYU/A== X-Google-Smtp-Source: AGHT+IFNdHcabDS/ybDN/iCPgFewDlGLD01TiUBQIFZnYdE4kRHCblmz6q0Wk7Lf8iUGJ5ncKkcZ8Q== X-Received: by 2002:a17:907:3e1c:b0:a77:c6c4:2bb7 with SMTP id a640c23a62f3a-a7dc4dca6c0mr289320066b.1.1722606845244; Fri, 02 Aug 2024 06:54:05 -0700 (PDT) Message-ID: From: Daniele GMail To: musl@lists.openwall.com Date: Fri, 02 Aug 2024 15:54:02 +0200 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.44.4-0ubuntu2 MIME-Version: 1.0 Subject: [musl] pthread_sigqueue implementation Hi, don't know if this is the right place to ask the question, if it's not, I'd hope someone points me out to the right list. I'm working on the porting of a C multithreaded application which, up to now, was running on GLibC based Linux distros. Such application is using the method pthread_sigqueue in order to deliver signals to certain threads and AFAICS, it is not present in 1.2.5 release. I see a discussion about the implementation dated back to 2020: see https://www.openwall.com/lists/musl/2020/02/05/5 Would it be possible to reconsider the decision to drop the method? If not, do you have suggestions about what could be used in place of it? Thanks in advance, Daniele.