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,ce1b033d346829fc X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-12-05 00:17:42 PST From: Lars Troppen Newsgroups: comp.lang.ada Subject: Re: Strange error in ADA program Date: 05 Dec 2001 08:25:14 +0100 Organization: Kongsberg Gruppen ASA Message-ID: References: <2a5P7.6268$yB2.127086@news1.oke.nextra.no> NNTP-Posting-Host: 150.1.70.29 Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Cuyahoga Valley) Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!129.240.148.23!uio.no!Norway.EU.net!193.71.169.73!spiten.kongsberg.com!kongsberg!not-for-mail Xref: archiver1.google.com comp.lang.ada:17431 Date: 2001-12-05T08:25:14+01:00 List-Id: "Stian Kaasa" writes: > I have an ADA program with a strange problem. > The program builds fine ( Solaris 2.5.1, VADS ADA 6.2.3 ), but during > execution it stops with the following error: > > Error in kernel:: exception_handler: unexpectet SIGILL code 0 > > I expected control to be sent to my Exception handler, but this is not > happending. > > Anyone who has experienced this error-message ? Yes I have seen this error message from time to time when the Ada program causes a signal (sigill,sigbus) and so on. I have no experience with VADS ADA 6.2.3 , but we have been using SunAda 2.1.1 which is a VADS 6.2 something sold by Sun. I found that this error only exist when you run on an UltraSparc platform, running the same program on older sparcs (5/10/20) gives your exception handler the control. However running the program in the debugger normally gives you a clue about what is causing the error. Lars Troppen, Dept DC4S, Kongsberg Defence & Aerospace PO 1003, N3601 Kongsberg, Norway Tel: (+47) 32288722 Mail: lars.g.troppen@kongsberg.com > > SK