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,92640d662fc31a03 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-05-10 00:19:52 PST Path: newsfeed.google.com!newsfeed.stanford.edu!news.tele.dk!212.54.64.131!news100.image.dk!cass.news.pipex.net!pipex!warm.news.pipex.net!pipex!news.kvaerner.com!news@kvaerner.com From: "Tarjei T. Jensen" Newsgroups: comp.lang.ada Subject: Re: howto make system calls (newbie question) Date: Thu, 10 May 2001 09:17:44 +0200 Organization: Kvaerner Group IT Message-ID: <9ddfas$8tt10@news.kvaerner.com> References: <9d6c89$1nd$1@nh.pace.co.uk> <9d87id$oll15@news.kvaerner.com> <9d8ute$8tt9@news.kvaerner.com> <9dauu7$8m913@news.kvaerner.com> <2ecbjJt$+0y8@eisner.encompasserve.org> NNTP-Posting-Host: 155.209.159.211 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express 4.72.2120.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2120.0 Xref: newsfeed.google.com comp.lang.ada:7435 Date: 2001-05-10T09:17:44+02:00 List-Id: Larry Kilgallen wrote >I certainly agree, but I was responding to a thread with entries >espousing codification of all "standard datatypes" that might be >used in system calls. I consider that unworkable, because what >constitutes a "standard datatype" varies so much between various >operating systems. Basically, I do not feel there is progress >to be made in that direction. As long as that bit is system specific, it will work as intended. VMSers do not have this problem as most if not all of the stuff needed to interact with the system is already present. For Unix, windows nt, etc this is not the case. If a program uses sockets which are common to quite a lot of operating systems, it will work on all if it uses the definitions from a platform specific source. Granted that sockets and related routines are not neccessarily a system resource in a given operating system, but they are pervasive enough to be included if they are supported on the platform. Greetings,