From mboxrd@z Thu Jan 1 00:00:00 1970 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_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 11838 invoked from network); 17 Jan 2021 19:57:45 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 17 Jan 2021 19:57:45 -0000 Received: (qmail 1919 invoked by uid 550); 17 Jan 2021 19:57:40 -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 1889 invoked from network); 17 Jan 2021 19:57:39 -0000 X-Virus-Scanned: Debian amavisd-new at disroot.org Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1610913446; bh=hk0mVyNYSdYnzuddUcqiXevyfWekngf9kEmJ3UsOPz4=; h=Subject:From:To:Date; b=E2xp1YwvZdYDS/gzEF/SJNGuSTBD/hBZqIYanRevMKBROx2Z55PHqOXFWCcYN55jc SzGOUY0JchXHHxsdFqp1IV1RmkHrVVM/nSWQvJ/cNzJLYUwlgrx/ECjxj09KhWygNt a7Hc3s2KQ8g1KXDvbibftsHl4dZ+qF4WXayqKrMDkbHG83dDGJtTgt3wiMO3jlim0f AE7xpVxDBs0cb7O+nQBMNffh76GP5k7tVTYbr9VQ3feHUQ5stcvUsg+Ddj2Bj9JtTi nK4ZN+I2bl3Dso5PDtKbi1P6b34xdzljdCVLoXK5bv8By1EVFEnRLRbZlWOKKwFx/8 TomqK93cjId4w== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 From: =?utf-8?q?=C3=89rico_Nogueira?= To: Date: Sun, 17 Jan 2021 16:42:31 -0300 Message-Id: Subject: [musl] Some pending changes/patches Hi! Firstly, congratulations on the new release :) Secondly, I have some pending patches that I'd like to ping, plus some changes that I was asked to post about once the 1.2.2 release had been made. - add cloexec flag to open() in pthread_setname_np: https://www.openwall.com/lists/musl/2020/12/24/1 - (low-priority) add pthread_getname_np: - my version (needs to be cleaned up for the change in the patch above): https://www.openwall.com/lists/musl/2020/12/19/3 It tries to avoid duplicating the setup for the /proc/self/task/%d/com path by adding a helper function. - older version: https://inbox.vuxu.org/musl/AM0PR07MB442007DDD4FECFF99BB5EBF48BE70@AM0PR= 07MB4420.eurprd07.prod.outlook.com/ Lacks cloexec flag when opening file. - (low priority) implement gethostid() beyond a stub: https://inbox.vuxu.org/musl/20200804224230.27774-1-ericonr@disroot.org/ - fix type for __libc_start_main. In crt1.c and rcrt1.c, it is: int __libc_start_main(int (*)(), int, char **, void (*)(), void(*)(), void(*)()); but in __libc_start_main.c, it is int __libc_start_main(int (*main)(int,char **,char **), int argc, char **ar= gv) as far as I can tell the fix is simple and the signature mismatch isn't an issue. Since I don't know the context for the mismatch and therefore wouldn't be able to write an appropriate commit message, I refrained from sending a patch for it. Happy new year, =C3=89rico