How to read error codes which appear in the console?
<Warning>: ....... -exited abnormally with signal 9: Killed: 9
<Warning>: ....... -1 err = Bad file descriptor (0x00000009)
Here what does signal 9 mean, are there any more signals apart from it. Any documentation available for it.
I get this kind of error, when a App. launched from Xcode is terminated by "Stop" button in Xcode toolbar.
(Another way to get this error is , to press home button, then double tap home button and close the app.)
Things even get worse when I launch the App. again, by tapping on App. icon on iPad Screen, App crashes and throws "libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary"
From finding on stack overflow , I see that this error is found in iOS 6 devices.
This url states that it's a SIGKILL error and it happens when "application is being terminated immediately, without any chance to clean up or catch and handle the signal"
So, I think releasing objets in -(void) didReceiveMemoryWarning
would not help to solve it, then what could be a definite solution?
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Release objects.
obj1 = nil;
[view1 removeFromSuperView];
view1 = nil;
...
}