The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
137 views

VS2010 Remote debugger stopping where is no breakpoint

I am remotely debugging a dll (C++, unmanaged) for Microsoft FSX (I do not know whether this matters). The dll is compiled as "Multi-threaded-dll", since it does not work as "Multi-threaded-dll ...
0
votes
0answers
483 views

cant debug using __asm int 3 or DebugBreak or __debugbreak() on win7 64 bit

i cant launch the visual studio 2008 debugger by using _asm int 3, or _debugbreak(), or DebugBreak(). I am trying to debug a C++ DLL by embedding "__asm int 3;" in it, build the project and replace ...
1
vote
2answers
488 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.
1
vote
2answers
386 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
574 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 ...
1
vote
2answers
305 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
433 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
112 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 ...
5
votes
6answers
1k 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 ...
11
votes
9answers
9k 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 ...
14
votes
5answers
9k 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 ...
9
votes
2answers
4k 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 ...
14
votes
4answers
9k 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.
7
votes
7answers
7k 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"). ...