Program received signal SIGKILL exception comes up when I quit in the multitasking bar (iPhone)

Greg picture Greg · Jul 4, 2011 · Viewed 15.2k times · Source

When I double tap the home button and quit out of my app from the multitasking bar and open the app again, Xcode reads: "Thread 1: program received signal: SIGKILL" and freezes my iPod. The app has 1500+ lines so I can't really put any code up, sorry. What could I be doing wrong?

Answer

EmptyStack picture EmptyStack · Jul 4, 2011

Your 1500+ lines of code is really innocent of this crash.

It happens when you run the app from Xcode, and terminate it from the iPod, without stopping the execution from Xcode. Closing the app from multitasking bar doesn't stop its execution in Xcode(but, I always expect it to do). So, when you open it again, the Xcode throws that SIGKILL exception. And, it doesn't do any harm to your app. No need to worry about it.

And, ofcourse, I don't know any technical explanation for this behavior. I am not that genious ;-)