windows 10 - windbg 10.0 do not show line numbers -
when switched windows 7 windows 10 (new sdk of course) faced different behavior in windbg when showing callstack command "kc": windows 7:
kernelbase!raiseexception msvcr120!_cxxthrowexception msvcp120!std::_xout_of_range
windows 10:
00 kernelbase!raiseexception 01 msvcr120!_cxxthrowexception 02 msvcp120!std::_xout_of_range
how rid of line numbers?
00 01 02
which links ".frame 0n0;dv /t /v"
turn off dml
kd> .prefer_dml 0 dml versions of commands off default kd> kc warning: stack unwind information not available. following frames may wrong. livekdd nt!kiinitialpcr nt!kewaitforsingleobject nt!ntwaitforsingleobject nt!kifastcallentry ntdll!kifastsystemcallret kd> .prefer_dml 1 dml versions of commands on default kd> kc # warning: stack unwind information not available. following frames may wrong. 00 livekdd 01 nt!kiinitialpcr 02 nt!kewaitforsingleobject 03 nt!ntwaitforsingleobject 04 nt!kifastcallentry 05 ntdll!kifastsystemcallret
Comments
Post a Comment