Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing my first OS X (10.6) Application with Xcode 4 and encounter this message:

malloc: reference count underflow for 0x2000b9540, break on auto_refcount_underflow_error to debug

I understand that I have a problem with my memory management, but I would like to narrow the point. So I hope that I can tell the debugger to break at the line of code where this error occurs. But I do not see any option to tell the debugger "break on auto_refcount_underflow_error". But I hope it is possible. Can you please tell me how? Just in case that it is important for this: The error occurs in a GCD thread.

Best regards & thank you very much Arno

share|improve this question

1 Answer

Use the comand line of GDB. In Xcode 4, in the console window next to the (gdb) prompt, type

br auto_refcount_underflow_error

br is the break command and it sets a breakpoint.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.