From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-3.2 required=3.0 tests=BAYES_00,NICE_REPLY_A, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 Path: eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: "Jeffrey R.Carter" Newsgroups: comp.lang.ada Subject: Re: Sockets, Streams, and Element_Arrays: Much confusion Date: Sat, 31 Dec 2022 16:18:50 +0100 Organization: A noiseless patient Spider Message-ID: References: <2c8f31a2-a39a-cb31-a764-28e0ac84ea1a@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Sat, 31 Dec 2022 15:18:51 -0000 (UTC) Injection-Info: reader01.eternal-september.org; posting-host="382d482095c3cfbb469092ceacb6d66d"; logging-data="1054542"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18COYE2n9qHFv28UJQ3IWu3ZvDy9Z0Armw=" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Cancel-Lock: sha1:crorlJYg3T9qkq72mCGU/87Xkfc= In-Reply-To: <2c8f31a2-a39a-cb31-a764-28e0ac84ea1a@gmail.com> Content-Language: en-US Xref: reader01.eternal-september.org comp.lang.ada:64752 List-Id: On 2022-12-31 14:50, Mark Gardner wrote: > > According to RM 13.13.1, "Stream_Element is mod implementation-defined" which to > me says there is no guarantee that they will be octets, unless this is specified > elsewhere? The ARM has always tried to ensure that the language could be implemented on any kind of processor. Thus you have implementation-defined separate definitions of Storage_Element and Stream_Element, which need not be the same, and no guarantee that Interfaces contains declarations of Integer_8 or Unsigned_8. But these days almost everything is byte oriented, so unless you need what you're writing to work on some unusual H/W, you can presume that both of these are bytes, and that Interfaces contains those declarations. -- Jeff Carter "My legs are gray, my ears are gnarled, my eyes are old and bent." Monty Python's Life of Brian 81