User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T21:22:59Zhttp://stackoverflow.com/feeds/user/23713http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848479/in-windbg-how-to-set-breakpoint-on-all-functions-in-kernel32-dll/1849327#18493270Answer by deemok for In windbg, How to set breakpoint on all functions in kernel32.dll ?deemok2009-12-04T20:03:48Z2009-12-04T20:03:48Z<p>I would not do just as stated. Of course it is possible, but if done with <code>bm /a kernel32!*</code> you inadvertently set bps also on data symbols (as opposed to actual functions). In your case <code>wt</code> - trace and watch data (you can look it up in the debugger.chm provided with your windbg package) might be what you're after.</p>
http://stackoverflow.com/questions/1749735/windbg-for-loop/1751168#17511680Answer by deemok for WinDbg .for loopdeemok2009-11-17T19:25:57Z2009-11-17T19:25:57Z<p>I guess the masm evaluator is missing some data on your <code>gpTranData->miApplCodeCount</code> input. Wrap your expression with either @@c++() or @@().</p>
http://stackoverflow.com/questions/1712411/qtscript-script-side-callback-through-c-side-implementation/1714063#17140631Answer by deemok for QtScript -- script-side callback through C++-side implementationdeemok2009-11-11T09:28:55Z2009-11-11T09:28:55Z<p>I'm afraid it won't work the way you've set it up.</p>
<p>If you want to be able to create the callback in javascript, you need a QObject with an accessible GetVersion(QScriptValue) which the script will the use to pass a script-based implementation of the callback. Note, though, that the callback will not be able to work with untyped (void*) data - you need to pass either a valid QtScript object or QObject with a proper interface (like the Packet one in your example!)</p>
<p>You could then wrap it up like this:</p>
<p>QtScript:</p>
<pre><code>function mycb(packet) {
var pkt_data = packet.getData(); // pkt_data is probably a String or custom object with proper interface so to simplify things get the version as string
var version = pkt_data.toString();
pkt_data.release(); // to simulate delete [] pkt_data; this is part of custom interface
// proceed further with the regex checks
}
GetVersion(mycb); // implies that you define the GetVersion() as a property of the global object
</code></pre>
<p>C++:</p>
<pre><code>QScriptValue getVersion(QScriptContext *ctx, QScriptEngine *engine)
{
void *data = ...;
Packet pkt_data = wrapPacketData(data);
// Packet is interface registered with QtScript or inherits QObject
// it has methods getData(), toString() and release()
QScriptValueList args;
QScriptValue pkt_data_param = engine->newQObject(&pkt_data);
args << pkt_data_param;
QScriptValue cb = ctx->argument(0);
Q_ASSERT(cb.isFunction()); // we expect a function object!
cb.call(QScriptValue(), args);
}
QScriptValue getVersionFun = engine->newFunction(getVersion);
engine->globalObject().setProperty(QLatin1String("GetVersion"), getVersionFun);
</code></pre>
http://stackoverflow.com/questions/1649384/c-debugging-exception-c0000139/1649986#16499860Answer by deemok for c++ Debugging Exception c0000139deemok2009-10-30T14:01:34Z2009-10-30T14:01:34Z<p>Enable loader snaps (gflags -i yourapp.exe +sls) and have it pinpoint the library its failing to find/load (starting the program under the debugger will spew all the loader diagnostics).</p>
<p>Alternatively, get the name of the library from the crash dump by examining parameters of LoadLibraryExW call.</p>
http://stackoverflow.com/questions/1643915/how-can-i-extract-dll-file-from-memory-dump/1644723#16447231Answer by deemok for How can I extract DLL file from memory dump?deemok2009-10-29T15:55:23Z2009-10-29T15:55:23Z<p>use .writemem extension: detailed <a href="http://blogs.msdn.com/debuggingtoolbox/archive/2009/09/23/special-command-saving-modules-using-writemem.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1626941/windbg-command-to-get-all-gdi-handle-count-from-a-crash-dump/1631017#16310171Answer by deemok for Windbg command to get all gdi handle count from a crash dumpdeemok2009-10-27T14:01:29Z2009-10-27T14:01:29Z<p>It is unlikely since the only debugger extension gdikdx.dll tailored at gdi tasks is not actively maintained since the w2k version and i believe they stopped shipping it since not that many folks are into hacking into gdi internals - according to someone's statement i stumbled upon in a newsgroup - therefore it is no longer invested into.
You're left with only a few options all of which are unfortunately about runtime troubleshooting.</p>
<p>You could start with a tool like nirsoft's <a href="http://www.nirsoft.net/utils/gdi_handles.html" rel="nofollow">GDIView</a> to monitor the use of GDI resources from your app and then progress to any of the runtime instrumentation options:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/magazine/cc188782.aspx" rel="nofollow">gdi leaks detector tool</a> described on msdn</li>
<li><a href="http://www.bugbrowser.com" rel="nofollow">bug browser</a></li>
<li><a href="http://code.google.com/p/leaktrap" rel="nofollow">leaktrap</a></li>
</ul>
<p>P.S. could you be more specific on the actual reason of your particular crash?</p>
http://stackoverflow.com/questions/1366051/windbg-setting-conditional-breakpoint/1366716#13667160Answer by deemok for windbg setting conditional breakpointdeemok2009-09-02T09:38:15Z2009-09-02T09:38:15Z<p><p>you can not set a conditional breakpoint on a user32.dll since it's being mapped into the address space relatively early and the initial debugger's breakpoint triggers after that (as far as i know).
<p>provided you can track the moment user32.dll is loaded, you can override a module break like this:</p>
<pre><code>sxe ld user32.dll
</code></pre>
<p><p>what you could do is have your app get started by a boostrapper application and then have windows debugger break on user32.dll load. just use -o command-line option or <code>.childdbg 1</code> extension call to initiate debugging of child processes and have it started with cmd.exe, for instance:</p>
<pre><code>windbg -c "sxe ld user32.dll;g" -o cmd.exe /C yourapp.exe
</code></pre>
http://stackoverflow.com/questions/1213924/windbg-not-showing-useful-information/1215028#12150282Answer by deemok for WinDbg not showing useful informationdeemok2009-07-31T21:41:15Z2009-07-31T21:41:15Z<p>When you set the path for symbols, did you reload them?</p>
<pre>.reload</pre>
I'm not sure your adding
<pre>srv*c:\symcache*C:\dev\Customer\MyAppSln\MyApp\Debug</pre>
to the symbol path has the desired effect.
I usually list all local paths in the .sympath first, and as the last step, I do .symfix+ to configure the public symbols using the microsoft symbol server:
<pre>
.sympath C:\dev\Customer\MyAppSln\MyApp\Debug
.symfix+ c:\symcache
</pre>
<p>the rationale behind listing local paths first being that the debugger would not have to check the remote server for pdbs (that are not there anyways) as opposed to simply retrieving them locally.</p>
<p>Anyways, your problem is that the symbols for MyApp are not loaded therefore stack walking does not quite work.
Debugger walks the stack backwards, starting from the top, that's why you're seeing MyApp - this is where the access violation occurred.
Now, since debugger does not have the symbols at this point, it can only guess what invocation chain has led to the function on top.
And it guesses wrong by following a misleading path.</p>
http://stackoverflow.com/questions/1187692/how-to-detect-when-an-exception-is-in-flight/1188131#11881310Answer by deemok for How to detect when an exception is in flight?deemok2009-07-27T13:21:14Z2009-07-27T13:21:14Z<p>one way would to replace the exception handling machinery with your <a href="http://www.codeproject.com/KB/cpp/exceptionhandler.aspx?display=Print" rel="nofollow">own</a>.
<p>on the other hand, it always begs for the question - why would one want to do that?..
<p>a few more links on the subj: <a href="http://www.openrce.org/articles/full_view/21" rel="nofollow">Reversing Microsoft Visual C++ Part I: Exception Handling</a> and <a href="http://blogs.msdn.com/cbrumme/archive/2003/10/01/51524.aspx" rel="nofollow">The exception model</a></p>
http://stackoverflow.com/questions/974964/best-practice-when-returning-smart-pointers/975005#9750050Answer by deemok for best practice when returning smart pointersdeemok2009-06-10T11:22:21Z2009-06-10T11:23:29Z<p>depends on your goals.
<p>blindly returning smart ptr to internal data might not be a good idea (which is very sensitive to the task you're trying to solve) - you might be better off just offering some doX() and doY() that use the pointer internally instead.
<p>on the other hand, if returning the smart ptr, you should also consider that you'll create no mutual circular references when objects end up unable to destroy each other (weak_ptr might be a better option in that case).</p>
<p><p>otherwise, like already mentioned above, performance/legacy code/lifetime considerations should all be taken into account.</p>
http://stackoverflow.com/questions/949920/how-to-attach-to-a-already-running-process-noninvasively/950484#9504842Answer by deemok for How to attach to a already running process noninvasivelydeemok2009-06-04T13:10:16Z2009-06-04T13:10:16Z<p>I believe there's nothing wrong with </p>
<pre>
DEBUG_ATTACH_NONINVASIVE|DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND
</pre>
<p>combination - it is perfectly permissible and is even featured in assert sample.
Otherwise, as far as documentation goes - it is not that detailed. I would suggest debugging your extension with the help of <b>wt</b> (trace and watch data) - it is particularly useful when you need to locate the exact subroutine that is returning an error which might provide you with better insight on the problem.
<p>As for remotely accessing typed data in your apps from an extension, I've found ExtRemoteTyped class (available in engextcpp.hpp in the sdk subfolder) to be very helpful and intuitive to use.</p>
http://stackoverflow.com/questions/905929/windbg-disassemble-function-command-uf-need-some-formatting/907012#9070120Answer by deemok for windbg disassemble function command (uf) need some formattingdeemok2009-05-25T14:48:47Z2009-05-25T19:41:31Z<p>because function code is potentially dispersed all over your code section (up to the linker to decide where to put what and, generally, it ends up moving parts that are executed most to the top)
<p>now, <b>u</b> does not care if you're interested in a particular function - it will simply dump the instructions sequentially, while <b>uf</b> has to look up all relevant code blocks and formats them together to make it look a whole function.
<p>edit: unfortunately (as far as i know) there's no immediate setting for windbg to tailor for your needs - here you'll probably have to resort to some sort of post-processing (pretty-print script to remove blank lines and whatever else you need).</p>
http://stackoverflow.com/questions/831499/help-catching-stackoverflowexception-with-windbg-and-adplus/833341#8333412Answer by deemok for Help catching StackOverflowException with WinDbg and ADPlusdeemok2009-05-07T07:40:54Z2009-05-20T13:28:22Z<pre>
<ADPlus>
<!-- Add log entry, log faulting thread stack and dump full on first chance StackOverflow -->
<Exceptions>
<Config>
<!-- This is for the stack buffer overflow exception -->
<!-- Use sov for stack overflow exception -->
<Code> sbo </Code>
<Actions1> Log;Stack;FullDump </Actions1>
<!-- Depending on what you intend - either stop the debugger (Q or QQ) or continue unhandled (GN) -->
<ReturnAction1> GN </ReturnAction1>
< Config>
</Exceptions>
</ADPlus>
</pre>
<p>Save that in stackoverflow.cfg<br />
Then you can go:</p>
<p>adplus -c stackoverflow.cfg</p>
<p>Edit: both <b>sov</b> and <b>sbo</b> are stack overflow exceptions. I guess one needs to experiment with both since it is not quite clear to me what the difference between the two is. (might <b>sbo</b> denote an invalid alloca() call?)</p>
http://stackoverflow.com/questions/876803/watch-a-class-object-at-memory-addresss-on-visual-studio/877287#8772871Answer by deemok for watch a class object at memory addresss on Visual Studiodeemok2009-05-18T11:35:19Z2009-05-18T11:35:19Z<p>just a blind guess: try (myDLL!myClass*)(0x0012ECE0)
<p>another question, how can you be sure it is your object's address?
<p>as a side note, try the windbg - it is way simpler to look for objects around your memory/stack.</p>
http://stackoverflow.com/questions/838947/how-to-get-a-stack-trace-from-dump-file-programatically-on-windows/839421#8394210Answer by deemok for how to get a stack trace from dump file programatically on Windows.deemok2009-05-08T11:33:43Z2009-05-08T11:33:43Z<p>you should check the <a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">windbg</a> sdk subfolder with examples on how dbgeng.dll can be used programmatically.<br />
code sample:</p>
<pre><code> PSTR g_DumpFile;
PSTR g_ImagePath;
PSTR g_SymbolPath;
ULONG64 g_TraceFrom[3];
IDebugClient* g_Client;
IDebugControl* g_Control;
IDebugSymbols* g_Symbols;
void CreateInterfaces(void)
{
HRESULT Status;
// Start things off by getting an initial interface from
// the engine. This can be any engine interface but is
// generally IDebugClient as the client interface is
// where sessions are started.
if ((Status = DebugCreate(__uuidof(IDebugClient),
(void**)&g_Client)) != S_OK)
{
Exit(1, "DebugCreate failed, 0x%X\n", Status);
}
// Query for some other interfaces that we'll need.
if ((Status = g_Client->QueryInterface(__uuidof(IDebugControl),
(void**)&g_Control)) != S_OK ||
(Status = g_Client->QueryInterface(__uuidof(IDebugSymbols),
(void**)&g_Symbols)) != S_OK)
{
Exit(1, "QueryInterface failed, 0x%X\n", Status);
}
}
void
DumpStack(void)
{
HRESULT Status;
PDEBUG_STACK_FRAME Frames = NULL;
int Count = 50;
printf("\nFirst %d frames of the call stack:\n", Count);
if (g_TraceFrom[0] || g_TraceFrom[1] || g_TraceFrom[2])
{
ULONG Filled;
Frames = new DEBUG_STACK_FRAME[Count];
if (Frames == NULL)
{
Exit(1, "Unable to allocate stack frames\n");
}
if ((Status = g_Control->
GetStackTrace(g_TraceFrom[0], g_TraceFrom[1], g_TraceFrom[2],
Frames, Count, &Filled)) != S_OK)
{
Exit(1, "GetStackTrace failed, 0x%X\n", Status);
}
Count = Filled;
}
// Print the call stack.
if ((Status = g_Control->
OutputStackTrace(DEBUG_OUTCTL_ALL_CLIENTS, Frames,
Count, DEBUG_STACK_SOURCE_LINE |
DEBUG_STACK_FRAME_ADDRESSES |
DEBUG_STACK_COLUMN_NAMES |
DEBUG_STACK_FRAME_NUMBERS)) != S_OK)
{
Exit(1, "OutputStackTrace failed, 0x%X\n", Status);
}
delete[] Frames;
}
void __cdecl main(int Argc, __in_ecount(Argc) char** Argv)
{
CreateInterfaces();
ParseCommandLine(Argc, Argv);
ApplyCommandLineArguments();
DumpStack();
Exit(0, NULL);
}
</code></pre>
http://stackoverflow.com/questions/744870/how-can-you-change-an-age-mismatched-pdb-to-match-properly/746965#7469654Answer by deemok for How can you change an age-mismatched PDB to match properly?deemok2009-04-14T10:05:53Z2009-04-14T10:05:53Z<p>the windbg will not modify pdb's age - it only looks it up to match that of executable - the compiler does when it (re)generates executable and debug files.
<p>now, based on the debuginfo.com article, it is not too difficult to arrive at the proper debug directory (of type codeview), match it against PDB7 signature and make modifications to either age or GUID inside an executable. why is that not an option?
<p>i guess, you want to update pdb instead? i'm afraid, pdb is a proprietary format. there're multiple read-only APIs (dbghelp.dll and dia sdk), but as far as modifications go, you need to guess the details to be able to modify.</p>
http://stackoverflow.com/questions/733948/help-postmorten-debugging-of-a-mixed-mode-win32-application/735266#7352661Answer by deemok for Help postmorten debugging of a mixed mode Win32 applicationdeemok2009-04-09T17:56:24Z2009-04-09T17:56:24Z<p>could you post the stack of the faulting thread once you've grabbed and installed a copy of windbg and opened the dump file there?
we could start from there.</p>
http://stackoverflow.com/questions/552948/wsacleanup-causes-an-exception/558374#5583740Answer by deemok for WSACleanUp causes an exceptiondeemok2009-02-17T19:26:56Z2009-02-17T19:26:56Z<p>I'd be interested to know what you'd find if you used the wt
"trace and watch data" command in windows debugger:</p>
<p>Set a break point at the beginning of the WSACleanup:</p>
<pre>
bp ws2_32!wsacleanup
</pre>
<p>Once hit, issue the trace command:</p>
<pre>
wt -oa -oR @$ra
</pre>
<p>and watch out for calls to ntdll!RtlSetLastWin32Error
<p>You could also post the findings here, it'd interesting to look at them.</p>
http://stackoverflow.com/questions/557484/adding-windbg-to-the-open-with-menu-for-dmp-files/557913#5579130Answer by deemok for Adding WinDbg to the "Open With" menu for .DMP files?deemok2009-02-17T17:40:16Z2009-02-17T17:40:16Z<p>i have a simple batch file associated with .dmp extension. it's defined roughly as following:</p>
<pre>
@echo off
title windbg -z %1
start d:\programs\windbg\windbg.exe -W my_fav_workspace -z %1
</pre>
<p>works like a charm.
<p>of course you don't get a fancy "Open With..." menu item in explorer, but double-clicking it is hardly a disadvantage.</p>
http://stackoverflow.com/questions/485130/windbg-tracelistener-and-saturated-threadpool/485389#4853890Answer by deemok for WinDbg -- TraceListener and Saturated ThreadPooldeemok2009-01-27T21:37:35Z2009-01-27T21:37:35Z<p>The fact that offset into these functions seem way to big (mscorwks!ReOpenMetaDataWithMemory+0x1ff59), I'll say you don't have symbols for mscorwks.
<p>Set a local symbol store using:
<blockquote>
.symfix+ c:\websymbols <br />
.reload mscorwks.dll
</blockquote> where c:\websymbols is a path of your choice for system symbols. That should give you reasonable function names where kernel32!Sleep is invoked from.
<p>As for the rest, what does a stack for all the other hung up threads look like? Also, could you post a native stack (kb) as well?</p>
http://stackoverflow.com/questions/472630/use-of-getguiresources/479340#4793400Answer by deemok for Use of GetGuiResourcesdeemok2009-01-26T10:23:16Z2009-01-26T10:23:16Z<p>On google code, there's a GDI/USER <a href="http://code.google.com/p/leaktrap" rel="nofollow">tracking library</a> that can help you track handle usage. It is not user-friendly - rather quickly put together and is dependent on <a href="http://www.microsoft.com/whdc/devtools/debugging/installx86.Mspx" rel="nofollow">windows debugger</a> but served a good job for me.</p>
http://stackoverflow.com/questions/473389/idebugsymbolsgetnamebyoffset-and-overloaded-functions/474363#4743632Answer by deemok for IDebugSymbols::GetNameByOffset and overloaded functionsdeemok2009-01-23T20:21:07Z2009-01-23T20:38:35Z<p>Quote from dbgeng.h:</p>
<pre>
// A symbol name may not be unique, particularly
// when overloaded functions exist which all
// have the same name. If GetOffsetByName
// finds multiple matches for the name it
// can return any one of them. In that
// case it will return S_FALSE to indicate
// that ambiguity was arbitrarily resolved.
// A caller can then use SearchSymbols to
// find all of the matches if it wishes to
// perform different disambiguation.
STDMETHOD(GetOffsetByName)(
THIS_
__in PCSTR Symbol,
__out PULONG64 Offset
) PURE;
</pre>
<p>So, I would get the name with IDebugSymbols::GetNameByOffset() (it comes back like "module!name" I believe), make sure it is an overload (if you're not sure) using IDebugSymbols::GetOffsetByName() (which is supposed to return S_FALSE for multiple overloads), and look up all possibilities with this name using StartSymbolMatch()/EndSymbolMatch(). Not a one liner though (and not really helpful for that matter...)</p>
<p><p>Another option would be to go with
<pre>
HRESULT
IDebugSymbols3::GetFunctionEntryByOffset(
IN ULONG64 Offset,
IN ULONG Flags,
OUT OPTIONAL PVOID Buffer,
IN ULONG BufferSize,
OUT OPTIONAL PULONG BufferNeeded
);
// It can be used to retrieve FPO data on a particular function:
FPO_DATA fpo;
HRESULT hres=m_Symbols3->GetFunctionEntryByOffset(
addr, // Offset
0, // Flags
&fpo, // Buffer
sizeof(fpo), // BufferSize
0 // BufferNeeded
));
</pre> and then use fpo.cdwParams for basic parameter size discrimination (cdwParams=size of parameters)</p>
http://stackoverflow.com/questions/138334/starting-to-learn-windbg/159216#1592169Answer by deemok for Starting to learn Windbgdeemok2008-10-01T19:10:07Z2009-01-23T18:53:28Z<p>There's a few excellent blogs out there that help to gain windbg proficiency on an everyday basis:</p>
<ul>
<li><a href="http://www.dumpanalysis.com/blog" rel="nofollow">Dr. Debugalov</a></li>
<li><a href="http://www.nynaeve.net" rel="nofollow">Nynaeve</a></li>
<li><a href="http://blogs.msdn.com/ntdebugging" rel="nofollow">Advanced Windows Debugging</a></li>
<li><a href="http://blogs.msdn.com/debuggingtoolbox" rel="nofollow">Debugging Toolbox</a></li>
<li><a href="http://www.debugtricks.com" rel="nofollow">Debugging Tricks</a></li>
<li><a href="http://www.debuginfo.com" rel="nofollow">Oleg Starodumov</a></li>
<li><a href="http://groups.google.com/groups/search?q=ivan+brugiolo+windbg&qt_s=Search+Groups" rel="nofollow">List of posts from/to Ivan Brugiolo</a></li>
<li><a href="http://voneinem-windbg.blogspot.com/" rel="nofollow">Windbg by Volker von Einem</a></li>
</ul>
<p><br>
I, personally, just started using windbg for <strong>all</strong> my debugging tasks and soon enough there were very questions I could not answer and very few problems I could not solve. Powerful and exciting tool.</p>
http://stackoverflow.com/questions/472476/why-does-my-service-crash-at-debugbreak-on-vista/472521#4725214Answer by deemok for Why does my Service crash at DebugBreak() on Vista?deemok2009-01-23T10:52:50Z2009-01-23T10:52:50Z<p>It is crashing because it is a breakpoint <b>exception</b>.
To be on the safe side you need to either check if a debugger is attached:</p>
<blockquote>
if(::IsDebuggerPresent()) ::DebugBreak();
</blockquote>
<p>or use try/except and return 1 (exceptionexecutehandler with an empty handler) for your breakpoint exception from the filter.</p>
http://stackoverflow.com/questions/471733/windbg-symbol-resolution/472400#4724001Answer by deemok for WinDbg symbol resolutiondeemok2009-01-23T09:55:06Z2009-01-23T09:55:06Z<p>It does not matter where you put private symbol files as long as you're able to tell the debugger where they're.
<p>The warning you're seeing <b>does not</b> have any effect on the stack trace, but the fact you're missing symbols for caller.DLL and app.EXE <b>does</b>.
<p>Configuring symbols in windbg (locally) is as simple as using:</p>
<blockquote>
.sympath[+] path_to_pdbs<br />
*and<br />
.symfix+ path_to_system_pdb_store
</blockquote>
<p>Your seeing
<blockquote>
MyDll!AClass::AFunction+SomeHexAddress
</blockquote> actually means nothing as long as SomeHexAddress is reasonable (and provided that MyDll.pdb has been found and loaded!) - it looks like a proper call stack entry.
<p>Now, my question would be, what is the problem that you're stuck with?
<p>P.S. you don't need .map file with windbg.</p>
http://stackoverflow.com/questions/469993/how-do-i-find-the-handle-owner-from-a-hang-dump-using-windbg/470148#4701480Answer by deemok for How do I find the handle owner from a hang dump using windbg?deemok2009-01-22T17:43:48Z2009-01-22T17:43:48Z<p>You can dig that out of a kernel dump.
<p>Now, as far as kernel debugging goes, livekd from sysinternals should be sufficient but unfortunately it is only usable on a running system.
<p>There's also a kernel mode <a href="http://win32dd.msuiche.net" rel="nofollow">memory acquisition tool</a> which might be of use to take a dump with (in windbg's stead) for later inspection.
<p>Otherwise, enabling handle tracing (!htrace -enable) and (if code unique to particular thread), the handle ownership could be concluded from a stack trace.</p>
http://stackoverflow.com/questions/457419/what-is-the-normal-way-to-send-crash-reports-product-registrations-etc-in-c/457489#4574890Answer by deemok for What is the normal way to send crash reports, product registrations, etc in C++?deemok2009-01-19T12:54:13Z2009-01-19T12:54:13Z<p>As far as crash reporting is concerned, there's <a href="http://en.wikipedia.org/wiki/Windows_Error_Reporting" rel="nofollow">WER</a> for starters. It has its drawbacks (the biggest being you have to sign up for it at microsoft and all reports are sent to a central microsoft server) and is best for driver software.
<p>If you need anything else (add your own wishes here), you can either roll your own solution (codeproject.com search provides a few alternatives - just go "crash report").
<p>Regarding product registration - there must be 3rd party solution available as well. I have not heard of anything "built-in" for that, but it is a vast topic - you have to be more specific on features you're after.</p>
http://stackoverflow.com/questions/453306/qprocess-setenvironment-has-no-effect/457392#4573922Answer by deemok for QProcess setEnvironment has no effect?deemok2009-01-19T12:05:55Z2009-01-19T12:05:55Z<p>QProcess::setEnvironment() only affects the environment of the process being spawned, not the context in which the spawning is handled. You need to alter the current environment so that the app you're spawning can be found (using ::SetEnvironmentVariable() for starters).
<p>Application file lookup is outlined in the documentation of <a href="http://msdn.microsoft.com/en-us/library/ms682425.aspx" rel="nofollow">CreateProcess</a> API.
<p>Check <a href="http://msdn.microsoft.com/en-us/library/ms682009(VS.85).aspx" rel="nofollow">this pointer</a> for an example scenario.</p>
http://stackoverflow.com/questions/450630/visaul-c-2005-hangs-during-qt-builds/450785#4507850Answer by deemok for Visaul C++ 2005 hangs during qt buildsdeemok2009-01-16T15:39:03Z2009-01-16T15:39:03Z<p>In my experience, some of these tools are capable of looping forever (qt4: lupdate/lrelease for sure).</p>
http://stackoverflow.com/questions/450585/debugging-a-crash-after-exiting-after-main-returned/450705#4507050Answer by deemok for Debugging a crash after exiting? (After main returned)deemok2009-01-16T15:18:15Z2009-01-16T15:18:15Z<p>what does the stack trace look like? can you provide an example (just strip everything sensitive w/o sacrifying the vital information)?</p>
http://stackoverflow.com/questions/1643915/how-can-i-extract-dll-file-from-memory-dump/1644723#1644723Comment by on How can I extract DLL file from memory dump?2009-11-05T17:07:56Z2009-11-05T17:07:56ZI guess that's due to discrepancies in alignment - pe32 files take more space in memory than on disk due to larger memory alignment requirements. You need to properly rebuild the executable after it is dumped to meet these rules. Besides, the debug section is not dumped (as it is not mapped, i guess). Import tables also need reconstruction.http://stackoverflow.com/questions/1366051/windbg-setting-conditional-breakpoint/1366716#1366716Comment by on windbg setting conditional breakpoint2009-09-02T18:25:14Z2009-09-02T18:25:14Zjust make debugger halt at its initial breakpoint (do not use -g command line option) and set module break condition like shown above, substituting user32 with a dll name of your choice or do not specify any names to make it break on load of every module (courtesy of debugger.chm).http://stackoverflow.com/questions/966605/program-deployment-failing/966680#966680Comment by on Program Deployment Failing2009-06-09T07:18:19Z2009-06-09T07:18:19Zof course there're options for debugging! windows debugger is lightweight and can practically be deployed w/o installation.
now, as already suggested, take a snapshot of the busy thread (that'd be the main thread) with process explorer and post it here.http://stackoverflow.com/questions/759365/understanding-windbg-output/759442#759442Comment by on understanding WinDbg output2009-04-17T14:20:05Z2009-04-17T14:20:05ZAnya, you need to fix the system symbols! otherwise the stack information is misleading! run '.symfix+ c:\websymbols;.reload' and then rerun the analysishttp://stackoverflow.com/questions/759365/understanding-windbg-output/760027#760027Comment by on understanding WinDbg output2009-04-17T14:18:23Z2009-04-17T14:18:23Zfree library breakpoint is simpler with the following command: sxe ud ure.dllhttp://stackoverflow.com/questions/744870/how-can-you-change-an-age-mismatched-pdb-to-match-properly/746965#746965Comment by on How can you change an age-mismatched PDB to match properly?2009-04-14T21:23:54Z2009-04-14T21:23:54Zglad i could help ;o)http://stackoverflow.com/questions/744870/how-can-you-change-an-age-mismatched-pdb-to-match-properly/746965#746965Comment by on How can you change an age-mismatched PDB to match properly?2009-04-14T13:24:15Z2009-04-14T13:24:15Zin that case, <a href="http://undocumented.rawol.com" rel="nofollow">undocumented.rawol.com</a> might be worth a lookhttp://stackoverflow.com/questions/733948/help-postmorten-debugging-of-a-mixed-mode-win32-application/735266#735266Comment by on Help postmorten debugging of a mixed mode Win32 application2009-04-14T07:48:36Z2009-04-14T07:48:36Zwell, not much from the stack. have you fixed up the symbols (both your private and public system)? what is the state of registers ('r' in windbg)? does eip point to valid code? ('u eip' in windbg)?http://stackoverflow.com/questions/733948/help-postmorten-debugging-of-a-mixed-mode-win32-application/733978#733978Comment by on Help postmorten debugging of a mixed mode Win32 application2009-04-09T17:57:49Z2009-04-09T17:57:49Zwell, minidump could also be a full dump in a sense - depends on which options it was created with.
besides, using the windbg is always a good idea ;o)http://stackoverflow.com/questions/667616/cast-to-lpcwstrComment by on Cast to LPCWSTR???2009-03-20T19:48:25Z2009-03-20T19:48:25Zor, simply invoke MessageBoxA(NULL, "Hello", "Note", MB_OK);http://stackoverflow.com/questions/552948/wsacleanup-causes-an-exception/558374#558374Comment by on WSACleanUp causes an exception2009-02-18T10:34:48Z2009-02-18T10:34:48Zit could pinpoint your problem right away though. not knowing the architecture of your software it is hard to judge, but knowing which internal call (invoked by WSACleanup) fails would be a definite step forward.http://stackoverflow.com/questions/535779/why-does-conditional-breakpoint-decrease-the-application-execution-speed-at-debug/535994#535994Comment by on Why does Conditional breakpoint decrease the application execution speed at debug time?2009-02-11T12:29:31Z2009-02-11T12:29:31Zthat's exactly the point - if i were writing a debugger, i would find a way to compile a breakpoint condition in-place using some sort of jit technique (change the executable directly) - which is not impossible.http://stackoverflow.com/questions/485130/windbg-tracelistener-and-saturated-threadpool/485752#485752Comment by on WinDbg -- TraceListener and Saturated ThreadPool2009-01-28T10:01:36Z2009-01-28T10:01:36ZGlad you figured it out. As to your question on locals, [!DumpStackObjects] with [!CLRStack -a] will do a pretty good job of describing the locals in corresponding stack frames.http://stackoverflow.com/questions/469993/how-do-i-find-the-handle-owner-from-a-hang-dump-using-windbgComment by on How do I find the handle owner from a hang dump using windbg?2009-01-23T14:18:21Z2009-01-23T14:18:21Zwould you describe what your app is doing (i take it's .net but i'm not sure how you develop - c# or using managed c++ extensions?) and also, please provide stack with the first 3 args (kb) and probably provide insight as to what exactly the thread is (supposed to be) doing?http://stackoverflow.com/questions/36077/finding-out-the-source-of-an-exception-in-c-after-it-is-caught/36102#36102Comment by on Finding out the source of an exception in C++ after it is caught?2009-01-21T08:35:23Z2009-01-21T08:35:23Zactually stack is not unwound until all catch handlers have been invoked. (c++ exception model, implemented atop window SEH, makes a few passes through the SEH exception chain). and it's perfectly possible to get at the source of exception (in debugger for instance) being inside this catch.