Questions tagged [windb]

11 questions
7
votes
1 answer

No matching binary found error

I am trying to debug a crash minidump. have the release debug symbols and release binaries same as crash. While debugging that crash and pointing to symbols still I am getting "No matching binary found" error . I am using the right symbols,…
anand
  • 11,071
  • 28
  • 101
  • 159
4
votes
1 answer

How to determine GC workstation vs server mode from dump file

From a dump file, is it possible to determine that Garbage collection mode used server vs workstation)? If so, what command?
crazy novice
  • 1,757
  • 3
  • 14
  • 36
3
votes
1 answer

Static objects are pinned and cannot be reallocated by GC?

I have a static variable in my class, when I look at this object via windbg/sos, it shows this object as Pinned. I assume that this mean GC cannot allocate this object anywhere else. Any ideas why static variables are treated as pinned? Here is the…
Silverlight Student
  • 3,968
  • 10
  • 37
  • 53
3
votes
3 answers

C# Winforms: Debug strategies to find cause for System.AccessViolationException

In my winforms application I get the following exception at random occasions: Application: My.Shell.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info:…
schoetbi
  • 12,009
  • 10
  • 54
  • 72
3
votes
1 answer

ASP.Net State Service out of memory,no large session found in windbg

The environment is windows2008 X64 When i use asp.net state service to hold sessions,i found that the aspnet_state.exe's memory is slow growing and never drop.and after several days, the process is run out of memory. So i use windbg to check the…
RogerHe
  • 39
  • 2
2
votes
1 answer

How to interpret mwaits output

I am trying to understand how can I use mwaits command things like type of lock, lock owner etc. I know that some of this could be done via sos commands but how can I use information below that I am getting with sosex mwaits command. 0:006>…
whoami
  • 1,689
  • 3
  • 22
  • 45
2
votes
1 answer

mismatch between sos and clr versions - how to resolve

After loading dump file in windbg, I ran following command .loadby sos clr Bu then I got following message when running ThreadPool command > 0:000> !ThreadPool The version of SOS does not match the version of > CLR you are debugging. Please load…
crazy novice
  • 1,757
  • 3
  • 14
  • 36
2
votes
1 answer

WinDBG not able to read symbol path string set with the _NT_SYMBOL_PATH environment variable

I have set the environment variable _NT_SYMBOL_PATH to the below value SRV*C:\My\Sym*http://msdl.microsoft.com/download/symbols I have also made sure that the directory C:\My\Sym actually does exists. However when I start up WinDBG it does not…
Tushar Jadhav
  • 335
  • 4
  • 14
1
vote
3 answers

Information about object that thread is waiting for

If I have following stack trace where I see that a thread is waiting on certain lock. How can I get information about the object this thread is waiting for? I was thinking that I should be able to SyncBlk command but seem like it can only give…
imak
  • 6,489
  • 7
  • 50
  • 73
1
vote
2 answers

convert .NET System.Int64 to an IP Address

I have the following System.Net.IPAddress object in Windbg and would like to convert the m_address (4294967295 m_Address) field to the corresponding dotted-quad notation. How can I accomplish this? I see that the m_ToString has a value of 00000000.…
dcrearer
  • 1,972
  • 4
  • 24
  • 48
0
votes
1 answer

Make windbg or kd attached to local kernel behave like system wide strace

I am running Windows 7 on which I want to do kernel debugging and I do not want to mess with boot loader. So I've downloaded LiveKd as suggested here and make it run and seems it is working. If I understand correct it is some kind of read only…
Wakan Tanka
  • 7,542
  • 16
  • 69
  • 122