2
votes
0answers
22 views

What does “internal” mean in windbg “!heap -a” output [duplicate]

I am using windbg command "!heap -a " to check the memory status, and get the following results. what does internal mean at the end of this entry "00d168f0: 03d20 . 06b48 [101] - busy (6b40) ...
3
votes
1answer
98 views

What does it mean by “Followup: MachineOwner”?

The following message is copied from WinDBG's output window: Use !analyze -v to get detailed debugging information. BugCheck 24, {1904fb, 8f9ec9f8, 8f9ec5d0, 87c4fccc} Probably caused by : Ntfs.sys ...
1
vote
1answer
64 views

Redistributable command line utility for creating dump files

I need to be able to programmatically acquire a dump file of a running process in Windows 7. Is there a command line utility for creating dump files, that is perhaps available as part of Windows 7 ...
0
votes
2answers
123 views

dump of 32bit-process running on windows2003 enterprise x64 sp2

I try analyse this dump with Windbg. But it can't show x86 callstack. symbol path configed as: srv*D:\dev_head\win_symbols* Some command result: 0:000> !teb Wow64 TEB32 at 000000007efdd000 ...
0
votes
1answer
163 views

Creating a dump file, copying an error (taking a screenshot) and restarting after an application crash

I'm testing an application in a stress test. That's why I need it to restart if an error occurs (an error window opens) or it hangs or crashes. At the same time I need to collect all the useful ...
2
votes
1answer
776 views

Process memory dump with Windows API

Is it possible to dump the occupied memory of a process with Windows 7 API function calls instead of having to install external tools like Windbg? Taskmanager supports simple one-click memory dumps, ...
3
votes
2answers
319 views

Where can I get the current tick count in a 64-bit windows dump?

There's one symbol named KeTickCount which works in 32-bit, but when I applied that in my 64-bit dump (Windows 2008), it doesn't work anymore. Did windows change the value? The only approach I can ...
0
votes
1answer
469 views

Full Memory Dump missing stack information

I'm attempting to debug a high CPU issue from a customer. I've tried having them use procdump, however, it hangs while writing the dump without ever finishing. Instead the customer has initiated a ...
1
vote
1answer
321 views

How to import multiple dump files to mysql in windows?

I need to import multiple dump files to mysql using windows command prompt. How can I import files. mysql -hlocalhost -uroot -proot -P3306 --databases db1,db2<db1.sql,db2.sql I tried like this ...
0
votes
0answers
91 views

Crash Dump completion notification

I am forcibly crashing the process and trying to analyze the crash dump. I am facing the race condition between crash the process and crash dump generation (flush). If the crash dump is too big then ...
0
votes
2answers
299 views

Creating process dump on the fly when it crashes

Is there a way one can force the process to create dumps whenever it crashes. I have an exe running in different OS's and I would like to create a dump whenever it crashes. By different OS's, I mean ...
1
vote
2answers
565 views

Debugging “release-mode” binaries/dumps in windbg

I've yet to find a good resource for debugging RELEASE mode binaries or dumps in windbg. I understand that debugging becomes more limited with compiler optimization enabled. But sometimes I don't ...
0
votes
1answer
393 views

find base address of current procrss in kernel space

hi i will dump the other process in kernel driver and use KeStackAttachProcess to change driver current context after user-mode address changed how can find base address of current process i need ...
0
votes
1answer
237 views

DebugDiag Crash Rule Does Not Auto-Execute

I'm using DebugDiag for the first time, and I'm using it on Windows 7 x64. I've created a crash rule for (x86) myprogram.exe, which is guaranteed to crash because I've coded it intentionally to crash ...
5
votes
1answer
131 views

Windows Debugger Road-Map

It seems there are dozens of debugger and debugging tools that Microsoft produces, which creates a maze of choices and questions concerning which tool to apply, and when. For example, there is windbg ...
1
vote
2answers
297 views

Dump handles of Windows process and extra information about them

today my application throw a "no more handles" error on Windows, while allocating an image. To debug this I would love to get a list of all handles my application has aquired. If possible even with ...
1
vote
1answer
388 views

Stack dump without killing process in windows

I'm looking for a method to get a stack dump without killing the running process in win32 platform, which means that the thread dumping its stack should return to the original context after stack ...
3
votes
2answers
1k views

Is there something like var_dump of PHP in c/c++?

I'm seeking of an API that can be used to dump most data structures,is there one in c/c++?
2
votes
2answers
818 views

Java5 on Windows service app - get Full Thread Dump need clarification

I've looked through couple of articles here such as: http://stackoverflow.com/questions/2124672/java-stack-dump-on-windows ...
0
votes
1answer
226 views

How can I dump (in Windows) the memory space used by a DLL?

I can readily dump the entire memory space of a process using various tools. But is it possible to dump just the memory space used by a DLL loaded by some process? What tools should I use? Thanks, ...
1
vote
2answers
536 views

What does the “Unloaded” prefix mean in a Windows stack trace?

I've the hellish problem of a third party DLL appearing to cause a recursive stack overflow crash when it gets unloaded. I wind up with this pattern on the stack (using windbg): ...
1
vote
2answers
747 views

C++ crash dump, stack unwinding on Win32 exceptions (when catch(…) used) - VS 2003

Like in Just In Time debugging, does VS 2003 compiled apps catch Win32 (or asynchronous) exceptions in a catch (...) and unwind the stack? before the dump file is written...
0
votes
3answers
3k views

Print to log a core dump file stack, C++ over windows?

When my process crashes, how can I print to log a core dump file stack, C++ over windows? I know that in Unix there is a way to do it using some signal handlers but never did it myself. How can I do ...
0
votes
2answers
8k views

Windows Server Crash Dump Analysis

I'm not certain that this is the right venue for this question, but a programmer friend of mine said I should try this here. My company's main application is hosted on a terminal server running ...