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.1 required=5.0 tests=BAYES_00, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!aioe.org!news.ecp.fr!news.jacob-sparre.dk!loke.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: GNAT and Tasklets Date: Fri, 19 Dec 2014 18:02:21 -0600 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <455d0987-734a-4505-bb39-37bfd1a2cc6b@googlegroups.com> NNTP-Posting-Host: rrsoftware.com X-Trace: loke.gir.dk 1419033741 32169 24.196.82.226 (20 Dec 2014 00:02:21 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Sat, 20 Dec 2014 00:02:21 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Xref: news.eternal-september.org comp.lang.ada:24167 Date: 2014-12-19T18:02:21-06:00 List-Id: "Björn Lundin" wrote in message news:m713pl$l7a$1@dont-email.me... > On 2014-12-19 00:01, Randy Brukardt wrote: ... >> Right. And even on the systems where it worked, you're dependent that >> your >> sockets library doesn't do any buffering (NC_Sockets can), doesn't have >> any >> local data other than a sockets handle, and the like. A updated sockets >> library might change that behavior. > > correct, but homebrew (yuck) also means full control. No buffering. True enough. But I would expect approximately 1% of programmers would be using a homebrew sockets library, as that's a lot of work to maintain. If you're using some library from your compiler vendor or some other source, than change is always a potential problem. (Can be mitigated by staying with ancient versions of software, but that doesn't work in the long haul.) Randy.