Sign In
greggm's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
June 2010
(1)
October 2009
(1)
July 2009
(1)
May 2009
(1)
April 2009
(2)
December 2008
(1)
September 2008
(1)
June 2008
(1)
May 2008
(3)
April 2008
(1)
March 2008
(4)
July 2007
(1)
May 2007
(2)
January 2007
(2)
October 2006
(1)
September 2006
(1)
April 2006
(2)
March 2006
(3)
January 2006
(3)
December 2005
(2)
November 2005
(2)
October 2005
(1)
September 2005
(3)
August 2005
(2)
July 2005
(1)
June 2005
(1)
May 2005
(2)
February 2005
(3)
January 2005
(3)
December 2004
(2)
November 2004
(1)
October 2004
(1)
September 2004
(4)
August 2004
(9)
July 2004
(9)
June 2004
(4)
May 2004
(4)
April 2004
(7)
March 2004
(7)
February 2004
(6)
January 2004
(8)
February, 2004
MSDN Blogs
>
greggm's WebLog
>
February, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
greggm's WebLog
Hints for the native debugger’s expression evaluator
Posted
over 8 years ago
by
greggm
4
Comments
This is a list of a few hints for using the native debugger's expression evaluator. These are documented elsewhere, but I have run into a fair number of people that don't know about them. Format specifiers. These are expression suffixes that alter the...
greggm's WebLog
Debugging virtual memory problems
Posted
over 8 years ago
by
greggm
4
Comments
Today I looked at a virtual memory usage bug. I determined that the function to set a breakpoint on is {,,ntdll}_ZwAllocateVirtualMemory@24. This function is called by the heap APIs, and by the VirtualAlloc APIs.
greggm's WebLog
Bad Native Callstacks
Posted
over 8 years ago
by
greggm
1
Comments
On Friday, a coworker emailed me a callstack that looked wrong. I sat down and looked at it. It turned out that the callstack was actually correct. Afterwards, I decided that it was time for a blog about bad native callstacks. Times when the debugger...
greggm's WebLog
Programs and the Visual Studio.NET Debugger
Posted
over 8 years ago
by
greggm
2
Comments
The Visual Studio .NET debugger supports debugging multiple types of code running in the same process. This is an important feature, and implementing it required huge changes in how the debugger works. Unfortunately, a bit too much of the implementation...
greggm's WebLog
How to find the owner of a critical section
Posted
over 8 years ago
by
greggm
4
Comments
Many times in my life I have needed to debug a deadlock. You have one thread trying to acquire a critical section, and it can be a pain to determine which thread has it. Setup: Go get OS Symbols. Having OS symbols is a must, and will make your life...
greggm's WebLog
Properties and debugging
Posted
over 8 years ago
by
greggm
9
Comments
As I am sure everyone reading this article knows, the CLR support 'properties', which is a way of making function calls look like a variable read or write. These have some problems for debuggers, mostly because in order to evaluate a property, the debugger...
Page 1 of 1 (6 items)