Search Results

3
votes

Logging/monitoring all function calls from an application

Hi, Logging function entries/exits is a low-level approach to your problem. I would suggest using automatic debugger instrumentation (using Debugger key under Image File Execution Options with …
0
votes

How to get a full call stack in Visual Studio 2005?

Or, optionally (assuming that Visual Studio is not installed), grab a copy of Windows Debugging Tools, ins …
4
votes

What is your favourite Windbg tip/trick?

Following command: dpp esp Range comes very handy when looking on stack for C++ objects with vtables, especially when working with release builds when qui …
2
votes

Program only crashes as release build — how to debug?

Once i had a problem when app behaved similarily to yours. It turned out to be a nasty buffer overrun in sprintf. Naturally, it worked when run with a debugger attached. What i did, was to insta …
1
vote

Debugging C++ STL containers in Windbg

You might also want to give this debugger extension a try. It is a library called SDbgExt, developed by …
-2
votes

Multithreaded image processing in C++

There's another option of using assembly for optimization. Now, one exciting project for dynamic code generation is softwire (which …
1
vote

VC++ 6.0 access violation when run in debugger

The easiest of approaches (provided that your application is not using memory too extensively) is to enable full page heap check (which will place so called guard page after the memory page your al …
1
vote

How to detect possible / potential stack overflow problems in a c / c++ program?

On windows, the stack (for specific thread) grows on-demand until the stack size specified for this thread prior to its creation has been reached. On-demand growing is impelmented using guard p …
3
votes

How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?

Everything prior to windows xp would not (or would be harder) generally be able to trap stack overflows. With the advent of xp, you can set …
1
vote

Cannot execute program if using boost (C++) libraries in debug-version on WinXP

This might turn out to have nothing to do with SxS. I suggest checking the Event Log for SxS error messages and using dependency walker to check for most probable DLL dependency issue, or one of th …
0
votes

Debugging a crash after exiting? (After main returned)

what does the stack trace look like? can you provide an example (just strip everything sensitive w/o sacrifying the vital information)? …
0
votes

Visaul C++ 2005 hangs during qt builds

In my experience, some of these tools are capable of looping forever (qt4: lupdate/lrelease for sure). …
0
votes

What is the normal way to send crash reports, product registrations, etc in C++?

As far as crash reporting is concerned, there's WER for starters. It has its drawbacks (the biggest being you have …
0
votes

Use of GetGuiResources

On google code, there's a GDI/USER tracking library that can help you track handle usage. It is not user-friendly - rather quickly put …
0
votes

WSACleanUp causes an exception

I'd be interested to know what you'd find if you used the wt "trace and watch data" command in windows debugger: Set a break point at the beginning of the WSACleanup: bp ws2_32! …

1 2 next
15 30 50 per page