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,59dddae4a1f01e1a X-Google-Attributes: gid103376,public From: eachus@spectre.mitre.org (Robert I. Eachus) Subject: Re: Need help with PowerPC/Ada and realtime tasking Date: 1996/05/20 Message-ID: #1/1 X-Deja-AN: 155816656 references: <1026696wnr@diphi.demon.co.uk> organization: The Mitre Corp., Bedford, MA. newsgroups: comp.lang.ada Date: 1996-05-20T00:00:00+00:00 List-Id: In article <1026696wnr@diphi.demon.co.uk> JP Thornley writes: > My first response is that safety-critical software does not go well > with interrupts and the use of tasking. The main requirement of > safety-critical code is predictability, which is made impossible if > you are coping with unpredictable interrupts and with hard-to-analyse > tasking syncronisations. Your second sentence is correct, but the first doesn't follow... If you want to use tasking in a safety-critical system look at the work on hard deadline scheduling by Liu and Goodenough at the SEI. It works, it can be a pain to work through unless you have good tools, but it works reliably. If there are only a few tasks, and the timing is not too tight, a cyclic executive is a reasonable alternative. -- Robert I. Eachus with Standard_Disclaimer; use Standard_Disclaimer; function Message (Text: in Clever_Ideas) return Better_Ideas is...