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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5fe352a7b58a0dd6 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!newsread.com!news-xfer.newsread.com!news-feed01.roc.ny.frontiernet.net!nntp.frontiernet.net!nntp.giganews.com.MISMATCH!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Sat, 05 Feb 2005 13:50:12 -0600 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Bye, bye? References: <1360923.fGEqWSjcJk@linux1.krischik.com> X-Newsreader: Tom's custom newsreader Message-ID: Date: Sat, 05 Feb 2005 13:50:12 -0600 NNTP-Posting-Host: 67.161.24.234 X-Trace: sv3-Up86LWHwu7IKHVBfC0tf/h+4ykLJ9ROvRPtI7G5f+7lws4x3+LCbhXftFFZfDcwp/i/qF4kUcp970v1!TG1jMK6a5BK9poLshH9zfsVO8tpAv/B78TUCbQpGbKudqd0wmGTqZriZarC6Uw== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.22 Xref: g2news1.google.com comp.lang.ada:8172 Date: 2005-02-05T13:50:12-06:00 List-Id: > > infinite loop without a faked up condition. The idea being that in Ada > > the typical infinite loop would normally be terminated by detonation. > > Maybe he found out how to do it in C/C++: > > for (;;) > { > } They aren't the same. Within the C language, that program's single task would indeed only be terminated by detonation. But an Ada program could well have other tasks doing useful things at the same time as the one task was in an infinite loop.