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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b5a7187422c2042a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-28 04:49:55 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed1.earthlink.net!newsfeed.earthlink.net!newsmaster1.prod.itd.earthlink.net!newsread1.prod.itd.earthlink.net.POSTED!not-for-mail Message-ID: <3C04CF6F.C42B1DFC@earthlink.net> From: "Marc A. Criley" Organization: Quadrus Corporation X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.14-5.0 i686) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: reasons for segmentation faults on linux References: <9eb165bd.0111280403.3f6bc3ea@posting.google.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Wed, 28 Nov 2001 12:49:54 GMT NNTP-Posting-Host: 63.178.185.232 X-Complaints-To: abuse@earthlink.net X-Trace: newsread1.prod.itd.earthlink.net 1006951794 63.178.185.232 (Wed, 28 Nov 2001 04:49:54 PST) NNTP-Posting-Date: Wed, 28 Nov 2001 04:49:54 PST X-Received-Date: Wed, 28 Nov 2001 04:49:54 PST (newsmaster1.prod.itd.earthlink.net) Xref: archiver1.google.com comp.lang.ada:17100 Date: 2001-11-28T12:49:54+00:00 List-Id: Tony wrote: > > I'm getting a segmentation fault in linux, > > I 've wapped up the storage size and this has no effect, > > I'm using three AVL trees in a task if thats any help > > Does anyone know the common reasons for segmentation faults in > Gnat on Linux ? Misaligned data... Dereferencing dangling pointers... Stack overflows (if stack checking is disabled)... Marc