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=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 84f5b8b6 for ; Wed, 27 Jun 2018 06:11:01 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 0F15CA18AA; Wed, 27 Jun 2018 16:11:00 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 3B630A181A; Wed, 27 Jun 2018 16:10:54 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id 52BF6A181A; Wed, 27 Jun 2018 16:10:52 +1000 (AEST) Received: from freefriends.org (freefriends.org [96.88.95.60]) by minnie.tuhs.org (Postfix) with ESMTP id F36F09EDF1 for ; Wed, 27 Jun 2018 16:10:51 +1000 (AEST) X-Envelope-From: arnold@skeeve.com Received: from freefriends.org (localhost [127.0.0.1]) by freefriends.org (8.14.9/8.14.9) with ESMTP id w5R6AZ7W032474; Wed, 27 Jun 2018 00:10:35 -0600 Received: (from arnold@localhost) by freefriends.org (8.14.9/8.14.9/submit) id w5R6AYl8032471; Wed, 27 Jun 2018 06:10:34 GMT From: arnold@skeeve.com Message-Id: <201806270610.w5R6AYl8032471@freefriends.org> X-Authentication-Warning: frenzy.freefriends.org: arnold set sender to arnold@skeeve.com using -f Date: Wed, 27 Jun 2018 00:10:34 -0600 To: bakul@bitblocks.com, akosela@andykosela.com References: <1f8043fd-e8d6-a5e6-5849-022d1a41f5bf@kilonet.net> <20180626215012.GE8150@mcvoy.com> <20180626215905.GH8150@mcvoy.com> <870B7FD6-B6CF-44FC-ABBD-60BD0285524E@bitblocks.com> In-Reply-To: <870B7FD6-B6CF-44FC-ABBD-60BD0285524E@bitblocks.com> User-Agent: Heirloom mailx 12.4 7/29/08 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [TUHS] PDP-11 legacy, C, and modern architectures 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: , Cc: tuhs@minnie.tuhs.org Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" Bakul Shah wrote: > I primarily write code in Go these days and like it a lot (as > a "better" C) but I am not sure it will have C's longevity. > It still uses a flat shared memory model. Digital Mars's D flips it around. Everything is thread-local storage unless you explicitly mark something as shared. This makes a ton of sense to me. Arnold