



Consider the following package declaration,package PrivateType istype MyInteger is private;procedure Read( : out myInteger);procedure Write(I : in MyInteger);privatetype MyInteger is range 1 2**31 - 1;end;Why does Ada allow MyInteger to be made visible outside thescope of PrivateType ? Doesnt it...
I'm seeing a strange exception raised by,in this code:if Ceiling_Violation then-- Failed ceiling checkInitialization.Undefer_Abort (Self_ID);raise Program_Error;end if;The exception is apparently triggered by a simple conditional entrycall which is cancelled. So far, I've only seen thi...
Given,subtype Positive is Integer range 1 Integer'Last;type String is (Positive range <>) of Character;the following should be illegal,subtype Count_To_Ten is Integer range 1 10;subtype Ten_Characters is String (Count_to_Ten);and the following should be legal, insteadsubtype Count_To_...
All presentations at the Ada "Developers Room", held at FSDEM 2006in Brussels on Sunday February 26, 2006, are available online on theAda-Belgium web-site.Each presentation is available both in the original format (DP or PPT)and in PDF:- "Introduction to Ada", Jean-Pierre Rosen, Adalog- "AdaCont...
Hello,The GNU Ada Project [1] is pleased to announce a new GNAT release based onGCC 4.1.0. The Release is currently available for "SuSE 10.0 x86_64" and"Solaris 10 UltraSparc" - others are to follow.The SuSE release consist of all GCC core languages (Ada, C, C++, Fortran,Java, C, C++) and all cu...
I was wondering iof anyone could enlighten me on this gnatmake call.i found it on a Mac S/X site.i've searched else for setting the stack_size for a main rather thanfor individual tasks.any advice appreciated.Stuart Clark...
Some suggestions made regarding the DB and file system extensions to the AS project. I'd beinterested to know if there is any support in this forum for the idea of open relational databaseand file system projects as described below:I think it would be wise to start a separate project for ...
hello how would I create an Ada program to take an encrypted stringfrom a txt file and decrypt it. i have a so so program but it doesntwork i cant get the algorithm right.an example is thisMother would be Mtoehr encryptedso its just like cutting the string in half and rearranging thechaacters to...
SQL is a popular dead-end. People chose databases for reliability, ultimately. The following URLleads you to a discussion about what is required for a genuinely relational database:#ArchitectureWhy not translate this genuine relational database into Ada and throw out SQL?The basic structure of a...
Thanks go to Jean-Pierre Rosen for taking the time to write a letter,"Lack of Ada Reflects Software Immaturity", to the editors of"Communications of the ACM" that they published in the March '06 issue.It was in a response to an article titled "Detection and Prevention ofStack Buffer Attacks...
I need to implement something that has probably already been donehundreds of times. I have to implement some distributed calls (i.e.,across sockets, arinc ports, separate memory partitions, etc.). I needto trap any exception that may occur, and re-raise it for the caller,like CRBA does (though I...
Hi,I have a compilation error that i not understand. This is my example :## Vec package ##generictype T_Real is digits <>;package Vec isend Vec;## Mat package ##with Vec;genericwith package Vector is new Vec (<>);package Mat isend Mat;## Mat.Child package ##generictype T_Tab is array...
