Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
5k views

How can I use debugbreak() in C#?

What is the syntax and which namespace/class needs to be imported? Give me sample code if possible. It would be of great help.
8
votes
9answers
5k views

What is the best way of implementing assertion checking in C++?

By that I mean, what do I need to do to have useful assertions in my code? MFC is quite easy, i just use ASSERT(something). What's the non-MFC way? Edit: Is it possible to stop assert breaking in ...
7
votes
5answers
5k views

Is there a portable equivalent to DebugBreak()/__debugbreak?

In MSVC, DebugBreak() or __debugbreak cause a debugger to break. On x86 it is equivalent to writing "_asm int 3", on x64 it is something different. When compiling with gcc (or any other standard ...
7
votes
2answers
2k views

How to disable a programmatical breakpoint / assert?

I am using Visual Studio, developing a native application, I have a programmatical breakpoint (assert) in my code placed using __asm int 3 or __debugbreak. Sometimes when I hit it, I would like to ...
4
votes
6answers
713 views

What is the best way to attach a debugger to a process in VC++ at just the right point in time?

When debugging, sometimes you need to attach an already running process instead of just starting the application in a debugger. It's common for myself to put in a Sleep() or MessageBox call, so that ...
2
votes
6answers
5k views

Xcode equivalent of ' __asm int 3 / DebugBreak() / Halt?

What's the instruction to cause a hard-break in Xcode? For example under Visual Studio I could do '_asm int 3' or 'DebugBreak()'. Under some GCC implementations it's asm("break 0") or asm("trap"). ...
1
vote
1answer
81 views

__debugbreak statement not triggering breakpoint

In my visual C++ code I have introduced a __debugbreak statement for triggering a breakpoint. I have compiled the project with /CLR option. But it does not trigger a breakpoint during execution. Why ...
0
votes
1answer
82 views

DebugBreak in Unix/ Linux?

Do we have similar windows API of DebugBreak in Unix/ Linux. I want to debug a daemon process which should open NetBeans when DebugBreak statement is executed. Thanks in advance.
0
votes
1answer
304 views

Behavior of DebugBreak differs between unmanaged and mixed (unmanaged+managed) application?

Take the following simple source (name it test.cpp): #include <windows.h> void main() { DebugBreak(); } Compile and link this using the following commands: cl /MD /c test.cpp link /debug ...
0
votes
2answers
129 views

Cleanest way to explicitly crash an application?

My application has custom crash-handling built-in (see John Robbins' excellent book about "Debugging Windows Applications"). To test this functionality, I always used the Windows function ...
0
votes
1answer
292 views

DebugBreak for iPad

I want to make DebugBreak for iPad and found that asm{trap} should work, but there is a problem: if I use asm{trap} I have error: asm blocks not enabled, use `-fasm-blocks'. If I enable -fasm-blocks I ...
0
votes
1answer
87 views

Getting DebugBreak to work in Fortran

I found the following article: http://software.intel.com/en-us/articles/intel-fortran-compiler-microsoft-debugging-function-debugbreak/ Unfortunately when I tried to implement this code and compiled ...