debugger

Debugging using RealView Debug(RVDebug)

Hello, I dont know if this is a very specific question, but still posting in hope that there might be few who have this prior experience/background and can point something to me in my problem. I am havign a C code for ARM926 target. I am trying to debug it using Arm Xtended Debugger(AXD). The main( ) of this code, takes say 14 command ...

Does ruby have a stepwise debugger, similar to perl's "perl -d"?

Does ruby have a stepwise debugger, similar to perl's "perl -d"? ...

Generate dump with unmanaged code crash?

Is there a way that I can get a full crash dump when my application crashes suddenly? The problem is that I suspect that it's due to unmanaged code that kills the .net framework itself, and because of that, unless there's a debugger attached to the application at the moment of the crash, the application doesn't even gets a chance to ha...

How to break when an event occurs, or determine associated handlers?

I'm using a large open-source control and I can't seem to find the code that handles a double-click event. Could I perhaps have the debugger break when a double-click occurs or otherwise learn what code is associated with that event? ...

How can I force VB6 to enter the debugger from the execution of a program without a break point?

I'm trying to watch the execution of a VB6 app and I'm running into an issue because once I enter the debugger and then hit Continue, it no longer lets me step through the code until I hit another break point. I want to be able to execute a program without stepping through something until I hit a point where I want to watch it execute....

Using the eclipse remote debugger and getting com.sun.jdi.InternalException: Got error code in reply:35 occurred while retrieving value. for all expressions

I am getting this error for all expressions and cant find anything on it. My guess is that the debugger isn't correctly connecting to the remote version, but I am not sure. ...

How to debug code that uses boost w/o losing sanity?

Boost is a great set of libraries and it really boosts productivity. But debugging code that uses it is a total nightmare. Sure, stepping through twenty thousand header files can be a valuable intellectual exercise, but what if you need to do it over and over again? Is there a developer-friendly way of just skipping the boost portion an...

Break points aspx pages

How do you set a break points in server tags in .aspx pages. e.g. <% dim breakhere =new object() %> The web application is running in debug mode with the <compilation debug="true" ... in the web.config. But the page says: The break point will not currently be hit. No symbols have been loaded for this document. Is there any...

Automate "Attach to Process" in VS2005/2008

I was wondering if anyone knew of a macro or keyboard shortcut or anything really that would automate Attaching to a Process within visual studio? ...

Why does Microsoft Visual C# 2008 Express Edition debugger randomly exit?

I am writing a multi-threaded Windows application in Microsoft Visual C# 2008 Express Edition. Recently, the debugger has been acting strangely. While I am Stepping Over lines of code using the F10, sometimes it will interpret my Step Over (F10) command just like a Continue command (F5) and then the program will resume running and the ...

Anyone encountered a INT 3 debugger break in mscorwks.dll?

We host the .NET runtime as part of a Win32 program, and lately it has begun to consistently break at a specific address, in mscorwks.dll. At the specified address, there is a 0xCC byte, which is a INT 3 instruction, which fires the debugger. Has anyone else seen this? I can't see enough information in the dll to know specifically whe...

Which are your favorite GDB tricks?

Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful? ...

How do I change IE script debugger from MS Script Debugger to VS 2005

I have Microsoft Script debugger installed and selected (somwhere) as the script debugger of IE. I want to make VS the default script debugger. When I uninstall MS Script debugger IE just wouldn't start any debugger on a javascript error. So how do I go back to VS as my default IE script debugger? ...

Can breakpoints be used in in ISRs?

Can breakpoints be used in interrupt service routines (ISRs)? ...

C#/CLR Remote debugger: how to wait until attached

Today I ran into a problem were I needed to remote-debug a program. The program was launched from another system, so I really don't have an opportunity to interact with it on the command line. I could change its source easily though. What I needed to happen was for the program to start normally, and then wait for me to attach to it wi...

Recomend a (standalone) java debugger

As the title suggests what is a good debugger for Java? I've come from a C/C++/Ada background so I've become very accustomed to gdb :). On the java side I've only used jdb and jswat but I would like to ask what java debugger do you recomend and why. Some background: I'll be using the debugger to debug a Swing Applications running on ( a...

Is there a way to debug an already running application compiled in release mode?

I have a dotnet windows service that's currently hung, but running. Is there anyway to attach a debugger to it, despite the lack of symbols; and that it's already running? ...

Breakpoint not hit when remote debugging on Internet for ASP.NET

I have sit up remote debugging on a Window 2003 server accessed through the Internet. I have VS 2008 SP1 installed on my XP dev box. I launched the site on the remote server and attached to all the w3wp.exe processes on the remote server. I noticed that the .dll did not load the symbols file. When I try to load the corresponding .pdb fi...

Is there an IDE for D with integrated debugger?

Is there an IDE for D with integrated debugger? ...

Is it possible to compile perl with -DDEBUGGER option on Windows using ActivePerl?

There are many debugging option available, but it says you need to compile Perl with -DDEBUGGER option. How do we do that on Windows with ActivePerl. Also, I had this problem of out of memory with Perl. I was reading a XML file with 5 lines but the second line was way way too big, (the file size was 4.3Mb) for 5 lines. It does not pars...