Re: No crashlog & my application is leaving me :-(
Re: No crashlog & my application is leaving me :-(
- Subject: Re: No crashlog & my application is leaving me :-(
- From: Bill Bumgarner <email@hidden>
- Date: Tue, 13 Jun 2006 15:10:21 -0700
On Jun 13, 2006, at 2:58 PM, Buddy Kurz wrote:
My application is a server that accepts connections from network
clients and handles each with a separate thread. It seems to
function perfectly but periodically just drops everybody and goes
away. I have an NSLog(...) in applicationShouldTerminate: that is
not recording anything and there is nothing in the console log. It
just goes away. (aarrrrrrggghhh!!) It doesn't appear to be leaking
memory. If I quit the application, it politely shuts down it's
connections and records properly in the console log.
What I need is some hint on how to track down the cause.
Is there something I don't understand here? Can an application go
down without creating a crashlog or calling
applicationShouldTerminate:?
Sounds like your app is getting taken out by a signal. SIGPIPE, most
likely.
Run it at the command line and then reproduce the crash, if possible.
The app will likely terminate with a "broken pipe" message.
This happens when you try to read from or write to a socket when the
other side has closed the connection.
See 'man signal' for more info.
And, of course, it may be something completely different.
b.bum
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden