.NET Framework Bookmark and Share   
 index > Common Language Runtime > CLR stress log documentation?
 

CLR stress log documentation?

Hi,

I'm looking for documentation on the CLR stress log.
The only thing I could find was the reference to it from the SOS !DumpLog documentation
http://msdn.microsoft.com/en-us/library/bb190764.aspx

Specifically, I want to know if there are other valid values for the configuration registry keys mentioned and if there are docs for the contents of the stress log.
I searched on MSDN and with google without luck.

Thanks!

YeeManB
There is a more thorough overview if you
!help DumpLog

but it mentions
"To make sense of this log, you would probably want the Shared Source CLI to find out exactly where
the log comes from."
YeeManB

The StressLog feature is provided by CLR itself, it is a trace of what CLR did and mostly used by CLR development group members, so it is difficult to find related documents.
For the sentence "To make sense of this log, you would probably want the Shared Source CLI to find out exactly where the log comes from.", it means that we can find out which CLR method has been executed by searching an log item in Rotor. for example, method FinishEntry() in file debug\ee\Thread.cs has its implementation like:
// Queue, possibly send this entry to the RS.
// Move to the next entry.
HRESULT FinishEntry()
{
...
STRESS_LOG0(LF_CORDB, LL_INFO1000, "RSFD::FE - 1st and 2nd pass differ.\n");
...
}
if we find "RSFD::FE - 1st and 2nd pass differ." in the StressLog file, we can make sure that this method has been executed.

Thanks,
Eric



Please remember to mark helpful replies as answers and unmark them if they provide no help.
eryang

You can use google to search for other answers

Custom Search

More Threads

• Unable to load DLL ../libmySQL.dll': Invalid access to memory location. (Exception from HRESULT: 0x800703E6)
• InfoPath FormControl on STA worker thread
• event and garbage collection?
• Can I retrieve a return value from a method started in a new thread?
• Assemblyloading into appdomain for a GAC'd assembly referenced by testproject
• Marshalling a struct that has an array
• Problem in truncating the characters after decimal point in a double variable
• Web Hosting?
• Bitwise byte operators ?
• reinitialize a managed string