Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
I'm trying to debug a 32-bit managed executable (msbuild.exe) , I've tried 2 scenarios
can‘t load the sos.dll
0:000>bp clr!RunMain 0:000:x86> .cordll -l CLR DLL status: No load attempts
can load the sos.dll, but the dumpmd does not work
0:000>bp clr!RunMain 0:000> .cordll -l CLR DLL status: Loaded DLL C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscordacwks.dll 0:000> dd @esp+4 l1 00aff4f0 00aff52c 0:000> !dumpmd 00aff52c 00aff52c is not a MethodDesc
how does this happen? Many thanks!!!
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Writing WDF Drivers | 7 Dec 2020 | LIVE ONLINE |
Internals & Software Drivers | 25 Jan 2021 | LIVE ONLINE |
Developing Minifilters | 8 March 2021 | LIVE ONLINE |
Comments
Looks like RunMain is fastcall and so the method descriptor is in ECX:
-scott
OSR