From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: tuhs-bounces@minnie.tuhs.org X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.1 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id d8690727 for ; Fri, 24 Aug 2018 18:38:29 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id BD491A1CC2; Sat, 25 Aug 2018 04:38:28 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id AFDD5A1A1A; Sat, 25 Aug 2018 04:38:20 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id AB52DA1A1A; Sat, 25 Aug 2018 04:38:19 +1000 (AEST) Received: from smtp-out-2.mxes.net (smtp-out-2.mxes.net [67.222.241.118]) by minnie.tuhs.org (Postfix) with ESMTPS id 663B0A1A19 for ; Sat, 25 Aug 2018 04:38:19 +1000 (AEST) Received: from Customer-MUA (mua.mxes.net [10.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTPSA id BEC0727502; Fri, 24 Aug 2018 14:38:17 -0400 (EDT) From: To: "'Bakul Shah'" , "'TUHS'" References: <10c401d43aef$8be34870$a3a9d950$@ronnatalie.com> <151301d43b2f$07881ed0$16985c70$@ronnatalie.com> <4130AFB4-1740-46BC-AA98-F9D01549049C@bitblocks.com> <1d5901d43ba4$7bc413b0$734c3b10$@ronnatalie.com> <98A5731F-11D3-4D55-B679-8DDF9E4EFFBC@bitblocks.com> In-Reply-To: <98A5731F-11D3-4D55-B679-8DDF9E4EFFBC@bitblocks.com> Date: Fri, 24 Aug 2018 14:38:14 -0400 Message-ID: <250601d43bd9$9ed61800$dc824800$@ronnatalie.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 16.0 Content-Language: en-us Thread-Index: AQH3zlNvMlrtv6MB59xlfwkPSkONzgIFVidhAaJlGA8BNF+B9gKEV6QSAOPRbpqkRfQ3IA== X-Sent-To: Subject: Re: [TUHS] C++ / Kernel X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" > > > > For instance: > > int x; > > daddr_t* y; > > > > u.b_un.b_words = &x; > > y = u.b_un.b_daddr; > > One would typically *not* do this. One would think not, but the BSD kernel did. That's the whole point.