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,3b04690e4e73c646 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-02-15 12:37:23 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!news.glorb.com!news-xfer.cox.net!peer01.cox.net!cox.net!bigfeed.bellsouth.net!bignumb.bellsouth.net!news.bellsouth.net!bignews5.bellsouth.net.POSTED!not-for-mail From: "David C. Hoos" Newsgroups: comp.lang.ada References: <5f59677c.0402141500.7032553e@posting.google.com> Subject: Re: creating processes MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: X-Trace: ldjgbllpbapjglppdbdpiflmbcekedmfhojhikkbagflhcboibfgkjnkehmbflkhkdeoaaijpkihpkoodkjpckhbapomfihmheppanpfbnfdccmcpnaffidobadcejjoelggpmehpekbjilimbeclpggheoapega NNTP-Posting-Date: Sun, 15 Feb 2004 15:32:43 EST Date: Sun, 15 Feb 2004 14:37:15 -0600 Xref: archiver1.google.com comp.lang.ada:5581 Date: 2004-02-15T14:37:15-06:00 List-Id: Since Spawn blocks until the process completes execution, and does not return a Process_ID, it makes no sense to provide a mechanism to kill such a process. Instead, you should use the Non_Blocking_Spawn function, and then use a Pragma_Import of kill to send whatever signal to the Process_ID returned by the Non_Blocking_Spawn call. "Evangelista Sami" wrote in message news:5f59677c.0402141500.7032553e@posting.google.com... > Hello all > > i have gnat 3.15p. > i have seen there are procedures and functions in gnat.os_lib to spawn > processes, wait for processes... is there a way to kill a process > previously created by a spawn call? > > Sami Evangelista > _______________________________________________ > comp.lang.ada mailing list > comp.lang.ada@ada-france.org > http://www.ada-france.org/mailman/listinfo/comp.lang.ada > >