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=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9c86eb13dd395066 X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: CRC in Ada? Date: 1997/03/11 Message-ID: #1/1 X-Deja-AN: 224859514 References: <1997Mar2.220652@nova.wright.edu> <331d3cf9.1190126@news.logica.co.uk> <1997Mar5.083233.1@eisner> <1997Mar5.131846.1@eisner> <5fmo1k$adm@mulga.cs.mu.OZ.AU> <3324A613.812@netcom.com> <3325DF35.3BDF@netcom.com> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-03-11T00:00:00+00:00 List-Id: Jim Balter said <> Just so this is crystal clear at this stage, at least to other readers than Jim, I definitely did NOT imply that there are multiple system calls. It maybe that Jim does not know Ada 95 very well, and that is how he got confused. What I did say was that if you use String'Output and String'Input, the RM strongly implies character by character reads, since stream I/O is defined as being component wise. But of course this does not result in a system call per character, at least not in a reasonable implementation. For example in GNAT, this translates eventually into a normal C stream operation, which will typically be buffered.