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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,def01441310021b3 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-29 06:58:38 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news.tele.dk!151.189.0.75!newsfeed.germany.net!newsfeed2.easynews.net!easynews.net!news.cid.net!news.enyo.de!news1.enyo.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: Will (abstract) Ada code improve over time ? Date: Sun, 29 Jul 2001 16:08:53 +0200 Organization: Enyo's not your organization Message-ID: <87ae1n3k0a.fsf@deneb.enyo.de> References: <3B557455.B3ADFEE@ffi.no> <3B57DF48.E1C23D42@ffi.no> <3B57EFCB.C5EC2F12@nbi.dk> <9k03ot$2me$3@news.tpi.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Xref: archiver1.google.com comp.lang.ada:10690 Date: 2001-07-29T16:08:53+02:00 List-Id: taw@pb220.legnica.sdi.tpnet.pl (Tomasz Wegrzanowski) writes: > Not true, because C uses hardware/OS threading model, The C standard doesn't specify any threading model at all. As a result, many C programmers rely on unspecified and undocumented compiler behavior, and their program works correctly only with some specific versions of one compiler. In addition, large parts of the C run-time library are complicated to implement efficiently in a multi-threading environment, at least on some architectures. With Ada, you don't have to use the tasking features of the language. I think quite a few projects use their own tasking implementation. Of course, and certainly for non-embedded applications, there is hardly a need to do this nowadays.