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, LOTS_OF_MONEY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,790d824907970cc3 X-Google-Attributes: gid103376,public From: dennison@telepath.com Subject: Re: Exception Propagation Date: 1999/06/07 Message-ID: <7jh857$ej$1@nnrp1.deja.com>#1/1 X-Deja-AN: 486757601 References: X-Http-Proxy: 1.0 x30.deja.com:80 (Squid/1.1.22) for client 204.48.27.130 Organization: Deja.com - Share what you know. Learn what you don't. X-Article-Creation-Date: Mon Jun 07 19:56:27 1999 GMT Newsgroups: comp.lang.ada X-Http-User-Agent: Mozilla/4.6 [en] (WinNT; I) Date: 1999-06-07T00:00:00+00:00 List-Id: In article , cdecker@snet.net (Decker, Christian R) wrote: > I have some Ada code that is apparently raising an exception, but the > program just seems to hang and does not > report the exception as i have seen before. It looks like the code just > hangs, but when i put an exception handler > around the suspect code the handler gets executed. > Am i missing some arguments to the gnatmake command to cause the propagation > of exceptions or do i have > arguments that is disabling the propagation? > > my current arguments are: > gnatmake -gnatp -g -O4 -n32 -bargs -f > > i tried taking out the -gnatp ( which i believe disables run-time checking > ), but that doesn't help.... That's the behavior I'd expect to see if the exception is occuring in a task. The whole program doesn't terminate just because one task dies. -- T.E.D. Sent via Deja.com http://www.deja.com/ Share what you know. Learn what you don't.