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,e8e46d5e07d7fa11 X-Google-Attributes: gid103376,public From: matthew_heaney@acm.org (Matthew Heaney) Subject: Re: task finished? Date: 1998/05/16 Message-ID: #1/1 X-Deja-AN: 353922252 Content-Transfer-Encoding: 8bit References: <01bc620a$7efdf9a0$LocalHost@default> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Organization: Network Intensive Newsgroups: comp.lang.ada Date: 1998-05-16T00:00:00+00:00 List-Id: In article <01bc620a$7efdf9a0$LocalHost@default>, "Markus Falsinger" wrote: (start of quote) I have created a number of tasks, but to continue with a procedure I have to wait until they all have terminated. How can I check whether they all have terminated or not? (They all have the same name, created in a loop) (end of quote) There is an attribute, T'Terminated. Normally, however, you don't create tasks in a dynamic scope as a subprogram. What are you trying to do?