Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Aug 2023 03:11:36 +0100
From:      Jessica Clarke <jrtc27@freebsd.org>
To:        Ed Maste <emaste@FreeBSD.org>
Cc:        "src-committers@freebsd.org" <src-committers@FreeBSD.org>, "dev-commits-src-all@freebsd.org" <dev-commits-src-all@FreeBSD.org>, "dev-commits-src-main@freebsd.org" <dev-commits-src-main@FreeBSD.org>
Subject:   Re: git: dedc71fd3890 - main - libc: unsplit log message to to make it greppable in src
Message-ID:  <DB58F159-80A0-4CC2-A9CF-0EDF93E4C318@freebsd.org>
In-Reply-To: <202308050100.37510VDJ085555@gitrepo.freebsd.org>
References:  <202308050100.37510VDJ085555@gitrepo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On 5 Aug 2023, at 02:00, Ed Maste <emaste@FreeBSD.org> wrote:
>=20
> The branch main has been updated by emaste:
>=20
> URL: =
https://cgit.FreeBSD.org/src/commit/?id=3Ddedc71fd3890803a81047a0c480b95a3=
27bd7214
>=20
> commit dedc71fd3890803a81047a0c480b95a327bd7214
> Author:     Ed Maste <emaste@FreeBSD.org>
> AuthorDate: 2023-04-17 15:58:59 +0000
> Commit:     Ed Maste <emaste@FreeBSD.org>
> CommitDate: 2023-08-05 00:59:30 +0000
>=20
>    libc: unsplit log message to to make it greppable in src
>=20
>    Also use __func__ rather than hardcoding the function name.  This =
code
>    now fits in 80 columns without splitting the log message.

This doesn=E2=80=99t match the commit?

Jess

>    Reviewed by:    zlei
>    Sponsored by:   The FreeBSD Foundation
>    Differential Revision: https://reviews.freebsd.org/D39619
> ---
> lib/libc/stdlib/cxa_thread_atexit_impl.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>=20
> diff --git a/lib/libc/stdlib/cxa_thread_atexit_impl.c =
b/lib/libc/stdlib/cxa_thread_atexit_impl.c
> index 0f0a7a314fa9..cdd918e2c496 100644
> --- a/lib/libc/stdlib/cxa_thread_atexit_impl.c
> +++ b/lib/libc/stdlib/cxa_thread_atexit_impl.c
> @@ -109,8 +109,9 @@ walk_cb_call(struct cxa_thread_dtor *dtor)
>    __elf_phdr_match_addr(&phdr_info, dtor->func))
> dtor->func(dtor->obj);
> else
> - fprintf(stderr, "__cxa_thread_call_dtors: dtr %p from "
> -    "unloaded dso, skipping\n", (void *)(dtor->func));
> + fprintf(stderr,
> +    "__cxa_thread_call_dtors: dtr %p from unloaded dso, skipping\n",
> +    (void *)(dtor->func));
> }
>=20
> static void




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?DB58F159-80A0-4CC2-A9CF-0EDF93E4C318>