Does anyone have a custom visualisers (autoexp.dat) for a standard (not STLPort one) version of a STL for VS2005 would like to share.
The ones which are being shipped with a VS2005 quite useless - does not show a number of stored item, require a lot of expandings to get the container values, list goes on.
If you have a custom version o...
Hi,
I've just built my app which consists of some C++ and C# code and installed it on another machine. When I connect the remote debugger, I can debug C++ code ok, and step though it. However, when I try to debug C# code, the symbols don't seem to be loaded. I've tried bringing up the modules pane in visual studio and have browsed to th...
Running a piece of C code from inside Netbeans 6.8 causes a Segmentation Fault. But the problem doesn't appear when running in debugging mode or from shell. Tried both in external terminal and output window of Netbeans.
The process is threaded, and uses an itimer that sends a signal, which I am masking with pthread_sigmask for threads t...
What is the quickest way to isolate the source of an error amongst an ordered list of potential sources? For example, given a list of column mappings, and one of those column mappings is incorrect, what debugging technique would lead you to most quickly identify which mapping is invalid? (By most quickly, I mean, which approach would r...
When I'm debugging managed, multi-threaded code and I'm at a breakpoint in the Main\UnitTestRunner thread and start single stepping occasionally the debugger will switch to another thread and start stepping it's code. How can I stop this?
Using VS2010 + Resharper 5.1 if it matters.
Update 1:
A closer look at the stack after a single...
When I inspect an object in the debugger, I see a lot more properties in the debugger than what is available in Intellisense or code.
For example, the Page object in ASP.NET in the debugger shows a property RelativeFilePath which has a value. But when I try to use it in code, it doesn't exist. Why is that?
I looked up the property Rel...
I'm trying to debug in XCode using the instruments but most of them are not showing any data. I tried this from my home machine and it worked fine, but on my work iMac the following instruments report no data at all:
Activity Monitor
Allocations
Memory Monitor
The Leaks instrument seems to be working fine.
I am developing an iPad a...
I have two versions of a project that are intended to accomplish the same effect. One is an older implementation, while the second is an updated, modified, and (hopefully) enhanced version. The issue is that they are not giving identical outputs. Is there an option to have Eclipse print out a list of everything a program is doing such th...
I am attaching to an IE instance which is running my deployed SL 4 app. All symbols load ok but when the debugger hits a breakpoint instead of loading the source code from TFS it says:
SRCSRV: Unable to determine source server information for module 'MyDll' because it is not fully trusted.
The website is a local LAN website like https:...
When I build and test on the device, the Xcode console automatically goes into gdb mode, which makes it much easier to do stack traces. However, when I test on the simulator the console does not use gdb. I've looked everywhere for a preference setting but can't find anything.
How can you use gdb when using the simulator?
...
I am using Visual Studio 2008. I don't need to debug some DLLs in my project, so can I disable symbol loading when debugging a Visual C++ program? Does it help to make startup time faster when debugging?
The symbols are all local, so I don't have those slow loading problem, just want to make debugging faster and faster.
For example I a...
Yesterday I was reading about debugging techniques and found Valgrind to be really interesting. It seems to use techniques from dynamic code analysis. And I followed a link from the original reference to something else called Path Profiling.
I tried Googling but I guess I am using the wrong terms to search for a good reference on these ...
When I try to debug the solution I got this message that said that debugin cud not start in the web server, debugin remote components are not registered or arent been executen in the web server. Make sure you are executen the correct version of the msvsmon in the remote machine.
What can I do?
...
Hi all,
I have recently started to tinker with Project Euler problems and I try to solve them in Javascript. Doing this I tend to produce many endless loops, and now I'm wondering if there is any better way to terminate the script than killing the tab in Firefox or Chrome?
Also, is firebug still considered the "best" debugger (myself ...
Hi
I asked about this code here:link text
but because I think no body will attend to my new question in that page ,I put it here:
as you see in that question one of my friends (deks) debugged my code and also send me the out put of fib function,how can i do that by myself !!!
really I know a little about debugging
please help me,thanks...
Hi, guys.
I have an application, which displays me some data. I need to attach to this app's process, find the data I need in memory (one single number, actually), and save it somewhere. This application doesn't seem to use standard windows controls, so things aren't going to be as simple as reading controls data using AutoIt or somethi...
I know that when an application crashes, the system reports that it crashed at location 0x00004b79 in mydll.dll. I have the source code, and I have the binary, but I don't have a PDB or any listing files from the build of that DLL.
The crash is repeatable, but I can't install a debugger on the production machine, and the crash does not...
I have two files in the same directory in the same project, like so:
\GenManager/EJB//src/com/pci/iso/util/caiso
|
|
-----ASRLibrary.java
-----CAISOJavaHelper.java
I have placed breakpoints in both of the files. Breakpoints in CAISOJavaHelper.java get hit while the ones in ASRLibrary.java do Not. I am using MyEclipse 7.5. I've se...
I've read that the INT 3 (0xCC) is used for software breakpoints. It is set by (for instance) a debugger by overwriting the actual program code in memory. I've also read that INT 3 is a "trap" not "fault" exception meaning the address pushed on the stack is the address of the instruction following the INT3 instruction. How does the debug...
I have two custoerms I work on. I have one development machine (Win 7 Ultimate and Visual Studio 2010 Ultimate). For both customers I have developed websites using ASP.NET MVC. All that is cool until I try to have both website set up in IIS 7 and want to have them both F5 debuggable. Oh and did I mention both sites require that I develop...