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,433c912965d35788 X-Google-Attributes: gid103376,public From: Pascal Ledru Subject: Re: Tasking with Linux-Gnat ? Date: 1996/05/20 Message-ID: <4nqgro$dhj@hacgate2.hac.com>#1/1 X-Deja-AN: 155791910 references: <4msmmt$2cc0@info4.rus.uni-stuttgart.de> content-type: text/plain; charset=us-ascii organization: Hughes Aircraft Company x-url: news:DrJILv.1rv@UQuebec.CA mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 1.12IS (X11; I; IRIX 5.3 IP22) Date: 1996-05-20T00:00:00+00:00 List-Id: You should clarify if you have a timed_entry_call or a selective_accept. The timed_entry_call does not have guard before its delay alternative. On the other hand, the selective_accept does. The following code is legal: select accept A; or when condition => delay 1.0; end select; but the following is not: select T.A; or when condition => delay 1.0; end select; you can achieve what you want with an extra variable: X := Boolean'Pos(Condition) * minutes; select T.A; or delay 10 * X; end select;