Re: SIGBUS
Re: SIGBUS
- Subject: Re: SIGBUS
- From: Christophe Dore <email@hidden>
- Date: Mon, 21 Jan 2002 12:30:41 +0100
launching the app with gdb, then backtracing (using bt) when it has
crashed often provides good hints about what goes wrong.
Maybe some aliens attack ?? :-)
Nathan Day wrote:
Open up the terminal and type man signal, it gives you a list of all
the signals in the case SIGBUS means bus error which means you are
accessing some address you should not have, in Objective-C that usual
means you have tried to access some object you have already released
or maybe has not been allocated yet.
On Thursday, January 1, 1970, at 05:40 PM, Riccardo Santato wrote:
Hi everybody.
For the first time in my life...my application crashed badly !!
It crashes after having opened an alert panel (which I made with IB).
When I do my selection ("Yes" or "No") the program crashes giving me
this
error:
XFiles.app has exited due to signal 10 (SIGBUS)
What does it mean ? Just for being a little more exhaustive, I'll tell
you that the panel runs within a MODAL call which I stop later on with a
[NSApp stopModal].
What can I do ? Where am I doing wrong ?
--
Riccardo Santato
www.riccardosantato.com
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
References: | |
| >Re: SIGBUS (From: Nathan Day <email@hidden>) |