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=-2.4 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,126b9ecb088e6bfd X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-12 05:34:47 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!newsfeed.stueberl.de!proxad.net!usenet-fr.net!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Duncan Sands Newsgroups: comp.lang.ada Subject: Re: using 'storage_size ? Date: Sun, 12 Oct 2003 14:34:45 +0200 Organization: Cuivre, Argent, Or Message-ID: References: <3f8904a1$0$10406$626a54ce@news.free.fr> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1065961988 99199 80.67.180.195 (12 Oct 2003 12:33:08 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Sun, 12 Oct 2003 12:33:08 +0000 (UTC) To: "Alex Xela" , comp.lang.ada@ada-france.org Return-Path: User-Agent: KMail/1.5.1 In-Reply-To: <3f8904a1$0$10406$626a54ce@news.free.fr> Content-Disposition: inline X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Gateway to the comp.lang.ada Usenet newsgroup List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:728 Date: 2003-10-12T14:34:45+02:00 On Sunday 12 October 2003 09:37, Alex Xela wrote: > When the line 20 of the following code is uncommented the program raises a > Storage_Error with GNAT3.15p under W2k. > > If I did not make a mistake, I reclaim for 5Mo at line 23. This is > confusing me????? It looks like the memory is being allocated on the stack. On some machines the stack is not allowed to be very big (or even if it is allowed to be big, you are not allowed to increase its size too fast - this catches infinite recursive loops and that kind of thing). Duncan.