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,703c4f68db81387d X-Google-Thread: 109fba,703c4f68db81387d X-Google-Thread: 115aec,703c4f68db81387d X-Google-Thread: f43e6,703c4f68db81387d X-Google-Attributes: gid103376,gid109fba,gid115aec,gidf43e6,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!newsfeed00.sul.t-online.de!newsfeed01.sul.t-online.de!t-online.de!newsfeed.arcor.de!news.arcor.de!not-for-mail Date: Wed, 16 Mar 2005 17:03:26 +0100 From: Georg Bauhaus Organization: future apps GmbH User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20050105 Debian/1.7.5-1 X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada,comp.lang.c++,comp.realtime,comp.software-eng Subject: Re: Teaching new tricks to an old dog (C++ -->Ada) References: <1110059861.560004@athnrd02> <1110266099.441421.179290@o13g2000cwo.googlegroups.com> <1110332933.587110.260410@z14g2000cwz.googlegroups.com> <1110390097.532139.43430@f14g2000cwb.googlegroups.com> <422f3808$0$30165$ba620e4c@news.skynet.be> <1110409958.685759.249420@g14g2000cwa.googlegroups.com> <15SdnYvJ0_x3Vq3fRVn-3Q@megapath.net> <1110522060.091940.178510@l41g2000cwc.googlegroups.com> <1110556346.841594.212520@z14g2000cwz.googlegroups.com> <4952804.Myubg7stsI@linux1.krischik.com> <1462853.JgxLXPrZ7W@linux1.krischik.com> <1110831270.911813.215820@f14g2000cwb.googlegroups.com> <2484756.KTycvJxKQH@linux1.krischik.com> <1110907090.268126.101030@g14g2000cwa.googlegroups.com> <423811a9$0$26546$9b4e6d93@newsread4.arcor-online.net> <1110977781.680781@athnrd02> <1110980817.650794@athnrd02> In-Reply-To: <1110980817.650794@athnrd02> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <4238583c$0$26542$9b4e6d93@newsread4.arcor-online.net> NNTP-Posting-Date: 16 Mar 2005 17:01:00 MET NNTP-Posting-Host: 45503271.newsread4.arcor-online.net X-Trace: DXC=4lMAZme8H912j7j^L?86D8:ejgIfPPld4jW\KbG]kaM8GSi?jHD8GO0h?n0>]NnbY2UUng9_FXZ=3>:=P9Ihe`B8@Z?dZ]MOid5 X-Complaints-To: abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:9501 comp.lang.c++:46009 comp.realtime:1539 comp.software-eng:5122 Date: 2005-03-16T17:01:00+01:00 List-Id: Ioannis Vranos wrote: >> Ada subsetting definitions >(what's this?)" Use language defined pragmas to declare that your program doesn't use some parts of Ada. These are instructions to the compilation system. Then, the run-time system can be tailored to meet the restricted set of requirements. In addition, some formal properties of the program are easier to demonstrate. For example, a program might not need protected types, a program may have no nested tasks, or it may have no allocators (no "new"), or no unchecked_access. Georg