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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,347d22f6dce4e40 X-Google-Attributes: gid103376,public From: mabrouk BELHOUT Subject: Re: System Calls Date: 1998/12/18 Message-ID: <367A3ED2.A7C89DD5@gla.ecoledoc.lip6.fr>#1/1 X-Deja-AN: 423582609 Content-Transfer-Encoding: 7bit References: <3677F2B6.FDC20000@gla.ecoledoc.lip6.fr> <7598nc$5lg$1@nnrp1.dejanews.com> <36793CF7.6795AA80@gla.ecoledoc.lip6.fr> <75bsm6$ccl$1@nnrp1.dejanews.com> X-Accept-Language: fr,en Content-Type: text/plain; charset=us-ascii Organization: Universites Paris VI/Paris VII - France Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-12-18T00:00:00+00:00 List-Id: > Invoking another executable is not a standard function in Ada like it is in a > typical scripting language. Thus you have to use OS calls, which means the > answer depends on the OS you are using. > > We're getting there. But how do you want the executable to behave? Should it > run simultaniously with your already running Ada program? Should your Ada > program wait for the other executable to complete? Should the Ada program > terminate entirely in deference to the new executable? Does any information > need to be communicated between them, or is this a "fire and forget" > situation? ok, i know all this. I just want to run an exe and wait for him, no direct communication no different process or task... only launch and wait until the termination. I think i need to interface with 'C', isn't it ? --mouly