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,643d8fa593a5626c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-18 12:15:52 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!t-online.de!news-lei1.dfn.de!news-han1.dfn.de!news.fh-hannover.de!news.cid.net!news.enyo.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: uNIX Operating system call Date: Mon, 18 Mar 2002 21:14:34 +0100 Organization: Enyo -- not your organization Message-ID: <87zo154or9.fsf@deneb.enyo.de> References: NNTP-Posting-Host: deneb.enyo.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: cygnus.enyo.de 1016482427 14024 212.9.189.171 (18 Mar 2002 20:13:47 GMT) X-Complaints-To: abuse@enyo.de NNTP-Posting-Date: 18 Mar 2002 20:13:47 GMT Cancel-Lock: sha1:FzDVvBdjXyrm2ULX092T8KeJEZ8= Xref: archiver1.google.com comp.lang.ada:21423 Date: 2002-03-18T20:13:47+00:00 List-Id: Parker Nathan R A1C 82 CSS/SCQM writes: > I am running Solaris 2.5 on a SPARC 20 workstation and would like to know > how I can make a system call (i.e. ls > /tmp/somefile.tmp) within my Ada 95 > code? This is not what people usually call a "system call" in the UNIX context. You can use Interfaces.C to call the C system() routine, for example. Or you can use POSIX.5 or a vendor-supplied package.