From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.1 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 2997C1F453 for ; Thu, 21 Feb 2019 20:57:19 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=b7QWuj7YUfv8FYYTQUNO0/ryybJeh IVz7rYO79gKuN70pmHcLV9kFdOijHKOPgHZ5Q2Zg4if31tQl2riIJM/j0Kqs5Evh XcKxz8zy7YzG6L9oeuF3OUjjlDzHilHqnyenANz7geYUOeagbU3zyAdU5hQUEaz3 1M/QQVUJJxRe1g= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=nEWU8I11nx+oaWtYvdM3VrPSYR4=; b=tAu bMG7c8zg8KkaVxWD+uFRuEgOSqCTuO4fWYwz0dsNwSOcs+9FnhwLfxGqaWhnOaWj bslTTrVcPy3gM0K63VBrOGDpmZBBsreJl1pMey3Gv5y7me64PP2iYkvJU1ph63/3 5l2FL6MYYrtH/iIUEp+Bo6Le0GNnO1SZ01U2gw7k= Received: (qmail 51627 invoked by alias); 21 Feb 2019 20:57:15 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 51613 invoked by uid 89); 21 Feb 2019 20:57:15 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: smtpout1.mo528.mail-out.ovh.net From: "Gabriel F. T. Gomes" To: Subject: [PATCH v4 0/5] Add missing nldbl functions to libc Date: Thu, 21 Feb 2019 17:57:01 -0300 Message-ID: <20190221205706.12225-1-gabriel@inconstante.eti.br> MIME-Version: 1.0 Content-Type: text/plain X-Ovh-Tracer-Id: 1199927826517118659 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedutddrtdekgddugeeiucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfdpvefjgfevmfevgfenuceurghilhhouhhtmecuhedttdenuc Since v3, I updated the ABI version to GLIBC 2.30 and the copyright years. Gabriel F. T. Gomes (5): ldbl-opt: Add arpg_error and argp_failure (bug 23983) ldbl-opt: Reuse argp tests that print long double ldbl-opt: Add err, errx, verr, verrx, warn, warnx, vwarn, and vwarnx (bug 23984) ldbl-opt: Add error and error_at_line (bug 23984) ldbl-opt: Reuse test cases from misc/ that check long double argp/Makefile | 2 +- argp/argp.h | 4 + argp/bits/argp-ldbl.h | 24 +++++ include/argp.h | 11 +++ include/bits/argp-ldbl.h | 1 + include/bits/err-ldbl.h | 1 + include/bits/error-ldbl.h | 1 + include/err.h | 9 ++ include/error.h | 14 +++ misc/Makefile | 3 +- misc/bits/err-ldbl.h | 30 ++++++ misc/bits/error-ldbl.h | 24 +++++ misc/err.h | 4 + misc/error.h | 12 ++- misc/tst-ldbl-error.c | 25 ++--- misc/tst-ldbl-warn.c | 20 ++-- sysdeps/ieee754/ldbl-opt/Makefile | 26 ++++++ sysdeps/ieee754/ldbl-opt/Versions | 6 ++ sysdeps/ieee754/ldbl-opt/nldbl-compat.c | 104 +++++++++++++++++++++ sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 15 +++ sysdeps/unix/sysv/linux/alpha/libc.abilist | 12 +++ .../sysv/linux/powerpc/powerpc32/fpu/libc.abilist | 12 +++ .../linux/powerpc/powerpc32/nofpu/libc.abilist | 12 +++ .../sysv/linux/powerpc/powerpc64/be/libc.abilist | 12 +++ .../sysv/linux/powerpc/powerpc64/le/libc.abilist | 12 +++ sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist | 12 +++ sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist | 12 +++ sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist | 12 +++ 28 files changed, 409 insertions(+), 23 deletions(-) create mode 100644 argp/bits/argp-ldbl.h create mode 100644 include/bits/argp-ldbl.h create mode 100644 include/bits/err-ldbl.h create mode 100644 include/bits/error-ldbl.h create mode 100644 misc/bits/err-ldbl.h create mode 100644 misc/bits/error-ldbl.h -- 2.14.5