vote up 1 vote down star
1

I am interested in what useful things developers put in the user stream data structure that can be embedded in minidumps. MSDN describes the parameter for MiniDumpWriteDump as such:

PMINIDUMP_USER_STREAM_INFORMATION UserStreamParam

and describes the parameter thusly:

UserStreamParam [in] Pointer to an array of MINIDUMP_USER_STREAM_INFORMATION structures. If the value of this parameter is NULL, no user-defined information is included in the minidump file.

I was considering embedding the last n log lines of my program in a user stream since testers tend not to send the properly formatted logs with all bugs all the time.

Also, I could put hardware specs (memory, CPU, video, etc) in that section.

What else have people used the user stream segment for?

flag

67% accept rate
I think this falls into less of "what can we put in this" and more of "what is actually needed to debug my program?" – Kris Kumler Nov 21 at 22:00
Then you agree that it's a forward looking question. By providing the maximum diagnostic information, you can debug cases that you encounter in the future. Hence the question. :) Keep in mind that debug dumps are generated by third parties, including customers. Understanding as much as possible about the environment of the app when it crashed can be essential to tracking an issue. – sludge Nov 22 at 23:08

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.