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,3089024a3e433566 X-Google-Attributes: gid103376,public From: grave Subject: an error in Re: tasking Date: 1998/10/07 Message-ID: <361B3260.7475@ipnsun5.in2p3.fr>#1/1 X-Deja-AN: 398576985 Content-Transfer-Encoding: 7bit References: <361B31AA.6714@ipnsun5.in2p3.fr> Content-Type: text/plain; charset=us-ascii Organization: I.P.N Orsay Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-10-07T00:00:00+00:00 List-Id: I've deleted a little part of the previous post. Sorry. > Hi, > > I'm wanting to kill a task to let an exception propagate and kill the > process. How can I do this if the task is already excuting some part of > code like this : > > select > entry start; > Do_Some_Stuff_Here; > or > terminate; > end select; > > Here I'm wanting to kill the task when it works in Do_Some_Stuff_Here; > > Is this possible ?