I’m embedding MonoTouch in an Xcode project, and want to stop LLDB debugger from handling SIGBUS signals, since they are used by the mono runtime. How can I do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can control how lldb intercepts/passes signals with the “process handle” command. For your case, you’d want to do
now the signals will be passed to your process without lldb getting in the way. The “NOTIFY” field indicates whether lldb should print that the signal was received – the default is that it will be printed in the debugger console but that doesn’t seem to be happening right now. But the signal is correctly passed along, which is the important bit.