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: a07f3367d7,468faeb0abcd305e X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit X-Received: by 10.66.119.67 with SMTP id ks3mr46292pab.20.1364958186575; Tue, 02 Apr 2013 20:03:06 -0700 (PDT) Path: q9ni26240pba.1!nntp.google.com!npeer01.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!news.astraweb.com!border5.newsrouter.astraweb.com!newspeer1.nac.net!border4.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!nrc-news.nrc.ca!newsfeed.news.ucla.edu!news.snarked.org!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!news.mixmin.net!aioe.org!.POSTED!not-for-mail From: Luke A. Guest Newsgroups: comp.lang.ada Subject: Re: Extended Exceptions and other tweaks. Date: Sun, 31 Mar 2013 13:55:35 +0000 (UTC) Organization: Aioe.org NNTP Server Message-ID: <623079799386426113.045169laguest-archeia.com@nntp.aioe.org> References: NNTP-Posting-Host: Fc9zjvzwdSNfUpyrAwauUQ.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: NewsTap/4.0.1 (iPhone/iPod Touch) X-Notice: Filtered by postfilter v. 0.8.2 X-Received-Bytes: 2219 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Date: 2013-03-31T13:55:35+00:00 List-Id: Brian Drummond wrote: > On Sat, 30 Mar 2013 13:01:51 -0700, Diogenes wrote: > >> First of all...thanks to everyone who have given me pointers on my >> initial runtime hacking experiments. I'm really trucking now. >> >> Currently, just to gain some experience in this area, I building my own >> runtime targeted to the Native platform, but using a much more rigorous >> process. Using the Spark tools, unit testing everything, etc... >> >> Since I'm working on the Ada Exceptions mechanism, I began to wonder if >> it might not make sense to add security related exceptions as a possible >> extension. I have ACLs going on one machine here, and of course Caps >> going on others. > > I can't comment on extended exceptions. > > However, when supporting exceptions in his RTS, Luke apparently ran into > difficulties. If you have had more success - either using a different > approach, or following his but overcoming his difficulties, then that The problem I had was defining my own exceptions and raising them, i.e. I could define but not raise, even though the bare machine runtime is supposed to allow it, it doesn't and you need more mechanisms todo it. Luke