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.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,92640d662fc31a03 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-05-09 06:39:43 PST Path: newsfeed.google.com!newsfeed.stanford.edu!news.tele.dk!195.158.233.21!news1.ebone.net!news.ebone.net!newsfeed2.news.nl.uu.net!sun4nl!reader1.news.nl.uu.net!not-for-mail From: serious@clerk.com (Noam Kloos) Newsgroups: comp.lang.ada Subject: Re: howto make system calls (newbie question) Date: Wed, 09 May 2001 13:41:37 GMT Organization: Interspective Internet Services Message-ID: <3af9470c.18806277@news.nl.uu.net> References: <9d6cip$1rf$1@nh.pace.co.uk> Reply-To: serious@clerk.com NNTP-Posting-Host: lando.interspective.nl X-Trace: porthos.nl.uu.net 989415582 4790 193.78.225.114 (9 May 2001 13:39:42 GMT) X-Complaints-To: abuse@nl.uu.net NNTP-Posting-Date: 9 May 2001 13:39:42 GMT X-Newsreader: Forte Free Agent 1.21/32.243 Xref: newsfeed.google.com comp.lang.ada:7363 Date: 2001-05-09T13:39:42+00:00 List-Id: On Mon, 7 May 2001 10:47:51 -0400, "Marin David Condic" wrote: >Now that Ada is much more general purpose in nature, it may be time to break >out of the "embedded system" thinking. This might lead to language changes >that make it more useful for development on PC's & workstations. However, >the risk of doing so is that one might then invent a language that is no >longer suited for embedded systems - and this would hurt the feelings of >those of us who do that kind of work. That might be A Bad Thing. > After trying to add os_calls and found it was not portable between Linux and Windows, I decided to try and forget about OS calls. And ada program is an entity on its own and I was thinking how to interact with other programs when not using os_calls or ada.command_line. All ada systems have the package Text_IO in common. So the only way a program can comunicate to other programs is about reading and writing each others files. Just to see if the concept is usable I wrote http://www.noam.nl/download/ada95/my_os.zip and this makes me confident there is a way to have simultanious programs running and interfacing without the need of being os specific. Noam.