From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00,FAKE_REPLY_C autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,29f36805b9a20fe8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-05 20:01:32 PST Path: supernews.google.com!sn-xit-02!sn-xit-03!supernews.com!cyclone-sjo1.usenetserver.com!news-out-sjo.usenetserver.com!news3.bellglobal.com!nntp.giganews.com!nntp2.aus1.giganews.com!NetNews1!attws2!attws1!ip.att.net!10.6.2.101!not-for-mail From: Brian Gaffney Newsgroups: comp.lang.ada Subject: Re: Streams in Ada Date: Thu, 05 Apr 2001 10:24:11 -0400 Organization: Pennsylvania College of Technology Message-ID: <3ACC800B.C24CEB17@deja.com> NNTP-Posting-Host: 4.16.153.173 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.51 [en] (Win95; I) X-Accept-Language: en Xref: supernews.google.com comp.lang.ada:6545 Date: 2001-04-05T10:24:11-04:00 List-Id: Robert A Duff wrote: > > Florian Weimer writes: > > > Ted Dennison writes: > > > > > I think you meant, "all possible Ada implementations", which I would > > > disagree with. > > > > Do impossible Ada implementations exist? ;-) > > No, but some possible Ada implementations don't exist. ;-) > Are you sure? Isn't there a current _very_ long thread about a current 'impossible' Ada implementation :-)? Oops, that's an Ada compiler/tool set, sorry. Seriously, shouldn't the Storage_Unit refer to the addressable unit on the machine? For example, on a machine with 32-bit addressing, does the potential address space cover 2**32 8-bit bytes, 32-bit words, or 256-bit cache-words? I would think most machines are byte-addressable, therefore Storage_Unit should be 8. On machines we use, we have a 16-bit address space and can reference 2**16 16-bit half-words. Therefore Storage_Unit would be 16 (assuming an Ada compiler existed, HA!), even though 8-bit bytes and 32-bit words can be referenced. Just my thoughts. --Brian