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,8893269a4640c798 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-22 05:26:32 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!lnewspeer00.lnd.ops.eu.uu.net!bnewsoutpeer00.bru.ops.eu.uu.net!bnewsinpeer00.bru.ops.eu.uu.net!bnewspost00.bru.ops.eu.uu.net!emea.uu.net!read.news.fr.uu.net!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 22 Jul 2003 14:26:50 +0200 From: Arnaud Charlet X-X-Sender: charlet@localhost.localdomain Subject: Re: terminate applications In-Reply-To: <3F1D29E8.60107@noplace.com> Message-ID: References: <3F17DF3C.4080204@noplace.com> <3F196773.2060809@noplace.com> <3F19F86C.9050808@attbi.com> <3F1A772F.9060708@noplace.com> <3F1AD6FB.8080806@attbi.com> <3F1BD666.6040506@noplace.com> <3F1C4DA6.3070405@attbi.com> <3F1D29E8.60107@noplace.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII NNTP-Posting-Host: aix.act-europe.fr X-Trace: 1058876790 read.news.fr.uu.net 239 212.157.227.143 X-Complaints-To: abuse@fr.uu.net Xref: archiver1.google.com comp.lang.ada:40633 Date: 2003-07-22T14:26:50+02:00 List-Id: > I could probably go search through the Win32api and find a "Kill this > process and I really, really mean it" system call, but a) it would be If that's what you're looking for (and it seems indeed pretty clear from your previous messages), then I'd suggest you ignore the other messages on this thread, and you do the same as with any other programming language: procedure Halt; pragma Import (C, Halt, "exit"); ... Halt; and be done with it. Starting to discuss about task abortion, synchronization, etc... when all you need is a brutal program shutdown is not very productive, in particlar since this issue comes up regularly on this newsgroup, with almost always the same answers, which make Ada look like a beautiful but useless language :-) Arno