From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-3.2 required=3.0 tests=BAYES_00,NICE_REPLY_A, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 Path: eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: "Jeffrey R.Carter" Newsgroups: comp.lang.ada Subject: Re: Looking for Ada source code Date: Wed, 25 Jan 2023 16:58:29 +0100 Organization: A noiseless patient Spider Message-ID: References: <97104b86-c0c3-4a4f-8efd-4e549053974fn@googlegroups.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Wed, 25 Jan 2023 15:58:29 -0000 (UTC) Injection-Info: reader01.eternal-september.org; posting-host="49c92bd5185717942afc5eb5b0d958c0"; logging-data="720196"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX194yiO19IPT/+dK/bkOSxJE1LjmNd3mM4k=" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Cancel-Lock: sha1:urud1sMzj3nx1uj09ILMl5u693M= Content-Language: en-US In-Reply-To: <97104b86-c0c3-4a4f-8efd-4e549053974fn@googlegroups.com> Xref: reader01.eternal-september.org comp.lang.ada:64885 List-Id: On 2023-01-25 15:00, Christophe Meudec wrote: > > The source code should not contain pointers and be self-contained (no OS calls, no external libraries). Ada for existing embedded system would be best. Do you include anonymous access-to-subprogram parameters among pointers? At https://github.com/jrcarter/PragmARC you can find a collection of Ada components that are compiler and OS independent. You will want to exclude * PragmARC.Data_Structures.Skip_Lists.Unbounded * PragmARC.Job_Pools * PragmARC.REM_NN_Wrapper * PragmARC.Safety.Pointers * PragmARC.Safety.Semaphores * PragmARC.Safety.Suspension_Objects as they declare access-to-object types. Some of the remaining use anonymous access-to-subprogram parameters, if that is a problem, but there should still be about 140 source files. There is additional Ada code in other https://github.com/jrcarter repositories. -- Jeff Carter “Bug rates in C++ are running higher even than C ...” Stephen F. Zeigler 216