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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8f9cc94bb8558c0a X-Google-Attributes: gid103376,public From: Stephen Leake Subject: Re: Storage error Date: 1998/07/20 Message-ID: #1/1 X-Deja-AN: 373272145 References: <35B38CFB.5717@lmtas.lmco.com> Organization: NASA Goddard Space Flight Center -- Greenbelt, Maryland USA Newsgroups: comp.lang.ada Date: 1998-07-20T00:00:00+00:00 List-Id: Scott Sheffield writes: > I have a program that is compiling and building fine but draws a storage > error when it is run. I tried pragma suppress(storage_check) to try to > force it to run but it still raised a storage error. I'm not entirly > clear on what this is telling me and I have no idea how to resolve this > issue. Any help would be appreciated. > > Scott Storage_Error means something is running out of memory; either heap or stack. You may be declaring an unconstrained object with a huge index (see the recent series of messages). You may have your stack size too small. Or you may be doing something else. You'll have to post code to get more help. Please include compiler brand and version, and OS brand and version. -- Stephe