¡@

Home 

c# Programming Glossary: sigsegv

How to prevent iOS crash reporters from crashing MonoTouch apps?

http://stackoverflow.com/questions/14499334/how-to-prevent-ios-crash-reporters-from-crashing-monotouch-apps

Xamarin developer A null reference exception is actually a SIGSEGV signal at first. Usually the mono runtime handles this and translates.. allowing the execution to continue. The problem is that SIGSEGV signals are a very bad thing in ObjC apps and when it occurs.. this happens before MonoTouch gets a chance to handle the SIGSEGV so there is nothing MonoTouch can do about this. I'm sure many..