comparison DOCS/xml/en/bugreports.xml @ 35125:556d87f557ed

Fix arguments of disassemble command specifying a range of addresses to dump.
author ib
date Thu, 27 Sep 2012 20:59:24 +0000
parents 183cab72ca08
children 13a97c60f6d8
comparison
equal deleted inserted replaced
35124:488948c565b9 35125:556d87f557ed
444 </screen> 444 </screen>
445 and reproduce your crash. As soon as you did it, gdb will return you to the 445 and reproduce your crash. As soon as you did it, gdb will return you to the
446 command line prompt where you have to enter 446 command line prompt where you have to enter
447 <screen> 447 <screen>
448 bt 448 bt
449 disass $pc-32 $pc+32 449 disass $pc-32,$pc+32
450 info all-registers 450 info all-registers
451 </screen> 451 </screen>
452 </para> 452 </para>
453 </sect3> 453 </sect3>
454 454
458 458
459 <para> 459 <para>
460 Create the following command file: 460 Create the following command file:
461 <screen> 461 <screen>
462 bt 462 bt
463 disass $pc-32 $pc+32 463 disass $pc-32,$pc+32
464 info all-registers 464 info all-registers
465 </screen> 465 </screen>
466 Then simply execute this command: 466 Then simply execute this command:
467 <screen> 467 <screen>
468 gdb mplayer --core=core -batch --command=command_file &gt; mplayer.bug 468 gdb mplayer --core=core -batch --command=command_file &gt; mplayer.bug