From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id delyNW2XZWobCC4AWB0awg (envelope-from ) for ; Sun, 26 Jul 2026 01:13:17 -0400 Received: by simark.ca (Postfix, from userid 112) id C973D1E099; Sun, 26 Jul 2026 01:13:17 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED autolearn=ham autolearn_force=no version=4.0.1 Received: from vm01.sourceware.org (vm01.sourceware.org [IPv6:2620:52:6:3111::32]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id BDCCC1E099 for ; Sun, 26 Jul 2026 01:13:15 -0400 (EDT) Received: from vm01.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id BB7A14BA2E2C for ; Sun, 26 Jul 2026 05:13:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BB7A14BA2E2C Received: from angie.orcam.me.uk (angie.orcam.me.uk [78.133.224.34]) by sourceware.org (Postfix) with ESMTP id 943D44BA2E14 for ; Sun, 26 Jul 2026 05:12:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 943D44BA2E14 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=orcam.me.uk Authentication-Results: sourceware.org; spf=none smtp.mailfrom=orcam.me.uk ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 943D44BA2E14 Authentication-Results: sourceware.org; arc=none smtp.remote-ip=78.133.224.34 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1785042765; cv=none; b=gJPZ2oQRDBTQxFdYOGxPmzYRfhmR5T4eAKTAdVNhfbmgwFHrJul6uuMfVqjra56eGAnHdZxUJBwfEMlbmRJMTGuz8xFhxHY7DhFUK/RZvvfAVHwYZHFO51Z7KRGyTcnWuKZgslVAMZPnkklj05OPXwARlZWtqRZLtePtu//JDjM= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1785042765; c=relaxed/simple; bh=V7CcazLvfTrMuaFQTx8Jo7twVFaQTm/IENv6FoA5QMs=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=KYRV0rTcTWtfTmyAhfIxndjnMGO55WiE1F5tBvI+6PtVLgE64+WfaOw/oAR38lXHTmVFASoR0CgGc/EQDOAAOxJPihCK07danftBcFtPJEeTonztZdLziTw3eNrJDAgZlKqJVBVVeQgMkPxBAdLuQlVVJuVTJ1BekEO0Ml/rY4w= ARC-Authentication-Results: i=1; sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 943D44BA2E14 Received: by angie.orcam.me.uk (Postfix, from userid 500) id D9F4D92009C; Sun, 26 Jul 2026 07:12:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by angie.orcam.me.uk (Postfix) with ESMTP id CB91392009B; Sun, 26 Jul 2026 06:12:44 +0100 (BST) Date: Sun, 26 Jul 2026 06:12:44 +0100 (BST) From: "Maciej W. Rozycki" To: Luis cc: Matthieu Longo , gdb-patches@sourceware.org, Thiago Jung Bauermann , Luis Machado , Tom Tromey , Andrew Burgess , Srinath Parvathaneni Subject: Re: [PATCH v3] gdb: align siginfo_t with the Linux kernel definition In-Reply-To: Message-ID: References: <20260702165231.331169-1-matthieu.longo@arm.com> <82f5d130-cfa5-46e1-b640-f575f6ab00b9@gmail.com> <8cb28dc2-6e51-4ce8-b785-fd66470e2e40@arm.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces~public-inbox=simark.ca@sourceware.org On Sat, 25 Jul 2026, Luis wrote: > > > Naming is hard. Given it is an anonymous union, should it have something > > > anonymous in the name? > > > > > > > I understand your point, but the name is going to start getting very > > lengthy. > > What about "_anon_union" ? > > > > That reads fine to me. Hmm, if this union is anonymous, then why does it have to be named on the GDB side in the first place? Maciej