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,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,20324ebb3709048c,start X-Google-Attributes: gid103376,public From: "Atle R�stad" Subject: Terminate program in Ada95 Date: 2000/11/27 Message-ID: <975328139.872809@edh3>#1/1 X-Deja-AN: 698214054 Cache-Post-Path: edh3!unknown@pch25 Organization: Ericsson Radar AS X-MSMail-Priority: Normal X-Priority: 3 X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Newsgroups: comp.lang.ada Date: 2000-11-27T00:00:00+00:00 List-Id: Hi How can I do an unconditionaly terminate of my program in Ada95? Why I want to do it? I have a program were some of the tasks are listning to messages received/or sending on a socket. I want to write a testprogram, and reuse the tasks that takes care of the sending/receiving of messages. But when my testprogram should end it will still have some tasks open for sending/receiving messages and it keeps waitng for those tasks to end (which they will not do). Since I'm not allowed to modify the tasks I'm reusing I want an command that terminates the whole program. (Like java.system.exit() in java). Regards Atle