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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,8295d69277f1696c X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.195.131 with SMTP id ie3mr392592pbc.8.1337020483439; Mon, 14 May 2012 11:34:43 -0700 (PDT) Path: pr3ni25821pbb.0!nntp.google.com!news2.google.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Shark8 Newsgroups: comp.lang.ada Subject: Re: understanding runtime support Date: Mon, 14 May 2012 11:34:42 -0700 (PDT) Organization: http://groups.google.com Message-ID: <8547012.586.1337020482714.JavaMail.geo-discussion-forums@ynlq12> References: <28695516.0.1336708147839.JavaMail.geo-discussion-forums@pbcqw9> <28843126.1576.1336884548623.JavaMail.geo-discussion-forums@ynff7> <31100317.2013.1336922789420.JavaMail.geo-discussion-forums@ynmb39> <7948724.2.1336983886678.JavaMail.geo-discussion-forums@yneo6> <32791890.97.1336995087800.JavaMail.geo-discussion-forums@yneo6> NNTP-Posting-Host: 96.2.54.122 Mime-Version: 1.0 X-Trace: posting.google.com 1337020483 28601 127.0.0.1 (14 May 2012 18:34:43 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 14 May 2012 18:34:43 +0000 (UTC) In-Reply-To: <32791890.97.1336995087800.JavaMail.geo-discussion-forums@yneo6> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=96.2.54.122; posting-account=lJ3JNwoAAAAQfH3VV9vttJLkThaxtTfC User-Agent: G2/1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-05-14T11:34:42-07:00 List-Id: On Monday, May 14, 2012 6:31:27 AM UTC-5, Patrick wrote: > Hi Shark8, Hi Ludovic >=20 > Thank you both for your answers. I understand the situation now. I am goi= ng to stick to some sort of OS. >=20 > Have a great day-Pat That _might_ be the worst option available. For one thing, it ties you to that specific OS; another is that the the Ada= runtime _can_ take care of a lot of things in a higher-level manner (e.g. = tasking) than relying on the OS & libraries (like how C++ uses Boost to do = parallelism)... as you can see that option might require compiling the runt= ime itself for that target (with attendant fiddling to suit the architectur= e). A third, and more hybrid approach would be to define the operations/functio= nality you need in a package and put all your low-level stuff into the body= thereof. This however presents [or tends to] more of the weaknesses of bot= h methods than the strengths of either.