From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/13635 Path: news.gmane.org!.POSTED.ciao.gmane.org!not-for-mail From: Khem Raj Newsgroups: gmane.linux.lib.musl.general Subject: Re: musl 1.1.21 released Date: Mon, 21 Jan 2019 10:37:08 -0800 Message-ID: References: <20190121181830.GR23599@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Injection-Info: ciao.gmane.org; posting-host="ciao.gmane.org:195.159.176.228"; logging-data="92742"; mail-complaints-to="usenet@ciao.gmane.org" To: musl@lists.openwall.com Original-X-From: musl-return-13651-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jan 21 19:44:30 2019 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by ciao.gmane.org with smtp (Exim 4.89) (envelope-from ) id 1gleYg-000O4T-1v for gllmg-musl@m.gmane.org; Mon, 21 Jan 2019 19:44:30 +0100 Original-Received: (qmail 11755 invoked by uid 550); 21 Jan 2019 18:37:48 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 11716 invoked from network); 21 Jan 2019 18:37:47 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=OjxNDnhd+9ebbNPqOLrMCcu56teE9mb0YzBOyA+H8L4=; b=vKFpiC+6y0GX1gSccuUfEUHxBUZEgUBQ4gfP4+3QEzBqMYpchpe9SbiZRwJSniiNqB IKNzapMI4gSeKGzmpPxhniJcVDSWS2pKU04qtvvvzOy7fupkw/+hen5RSVGY/iUbq5ht yq3wGoX+BWf0+KgwSAXJLVZhklbbByHcrZlNLoC4Xrdz92/MoSqFGEwBzAN6viwkPrmG ghFLSdipa9lH0oVnPk/Cq44vAuUOwIT8u6wRfZZ22Iqoa5Tl6UcZlg5jyv5FmO+EdKrd zdzI5jVFB0hmEIz/cXwPSw8h2D8nss9XleE/mvt8jgWSaSrhNO9Em5Fkgnfkv9paNl20 y26A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=OjxNDnhd+9ebbNPqOLrMCcu56teE9mb0YzBOyA+H8L4=; b=oEOBTz8Bkop+p+oUb8SdSqj84/xMaBGGKvPO+vWkgyGzIJr6Z/KXARF19PY09+yvsE TDJ5T/ZWj5t916lM00x6RH+WCNQglR387V/WhDtVqzqSXSsGN0avxu67KUDZRE8ueFsv GSGDwnABGOYOs7MqxxwjGnWbPMUiv/IrvH15Gj2U2gJGimFqBWGWzCUHpzg/QhudcTzK Mmyty2mFvyxLWX4M4pB+71Kraqib33JLBwD3A0HO5QKr2mYTLqag7KGOV+wXC2FtidQP YPJe1p8Ofr9YyqM2XUrW/f67CugXTGyTFZucclkPxpvMc44NrfzH1jhhH+9zihhA3jAm EQyg== X-Gm-Message-State: AJcUukfUMWi2FmyJAbIat+OseI6Q0vwvhFgmyEyPIGTj8uDEJ/UjpjGE q47XhqxYxAimxFbRcpWERHI7kW+h9YkTLQCjygRhn2dxjpg= X-Google-Smtp-Source: ALg8bN5LdRtiMCMQybgiZQSVFuGgWdgSESDNW2eTNgKVz5lSC2cVGhSdBx/CM8fqmxIYCjzbF5nRJgyrv9rviQ3nscU= X-Received: by 2002:aed:3a22:: with SMTP id n31mr28036382qte.29.1548095854832; Mon, 21 Jan 2019 10:37:34 -0800 (PST) In-Reply-To: <20190121181830.GR23599@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:13635 Archived-At: Hi Rich Great news ! will you also create a git tag for it ? I dont see it here https://git.musl-libc.org/cgit/musl On Mon, Jan 21, 2019 at 10:18 AM Rich Felker wrote: > > This release makes improvements with respect to default thread stack > size, including increasing the default from 80k to 128k, increasing > the default guard size from 4k to 8k, and allowing the default to be > increased via ELF headers so that programs that need larger stacks can > be build without source-level changes, using just LDFLAGS. > Insufficient stack size for AIO threads on kernels that don't honor > the constant MINSIGSTKSZ is also fixed. > > The glob core has been rewritten to fix inability to see past > searchable-but-unreadable path components, and to avoid excessive > stack usage and unnecessary syscalls. The tsearch AVL tree > implementation has also been rewritten for better size and > performance. The math library adds more native single-instruction > implementations for arm, s390x, powerpc, and x86_64. > > Various bugs are fixed, including several possible deadlocks, one of > which was a new regression in 1.1.20. > > > https://www.musl-libc.org/releases/musl-1.1.21.tar.gz > https://www.musl-libc.org/releases/musl-1.1.21.tar.gz.asc > > > > > Special thanks to musl's release sponsors (patreon.com/musl): > > * Justin Cormack > * Laurent Bercot > * Les Aker > * Neal Gompa > * Hurricane Labs (hurricanelabs.com) > * The Midipix Project (midipix.org)