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,2a0aa2b1c348fd6a X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Thu, 26 May 2005 13:42:48 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Gnat STORAGE_ERROR References: X-Newsreader: Tom's custom newsreader Message-ID: Date: Thu, 26 May 2005 13:42:48 -0500 NNTP-Posting-Host: 24.6.127.15 X-Trace: sv3-rohU5WKbpCPi3bcFU3+GokASSvj9VB5tWzFr7Lpg3wvETVOc8XX7G68O3o5XRw3E1x6gY3INEU8hQVu!EqoMmj8qqOHBG+PSJEzFYcwf57o3e1LvCxcnC2hjnd//pTnHMVHk4jSSehQ= X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:11169 Date: 2005-05-26T13:42:48-05:00 List-Id: > How big is your page file(s) allowed to grow? C:pagefile.sys is 1.1GB and H:pagefile.sys is 1.5GB, total RAM is 1GB, the program in question needs about 16MB (I compiled it with another Ada compiler and Task Manager said it was using 15,790KB) and the stack=2000000 should, I think, allow 32MB. Perhaps I should have mentioned I have the stack checking turned on. Perhaps if I turn that off I won't get the STORAGE_ERROR? ;) > Remember that if the stack is owned by a task, > the stack size is limited to the default task size, > unless you've specified a greater stack size with > pragma Storage_Size. This is a vanilla single task numerical computation program.