mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target/ppc: Fix size of struct PPCElfPrstatus
gdb refuses to parse QEMU memory dumps because struct PPCElfPrstatus
is the wrong size. Fix it.
Signed-off-by: Anton Blanchard <anton@samba.org>
Fixes: e62fbc54d4
("target-ppc: dump-guest-memory support")
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
cd60d85ef6
commit
b88290cd9e
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ struct PPCUserRegStruct {
|
|||
struct PPCElfPrstatus {
|
||||
char pad1[112];
|
||||
struct PPCUserRegStruct pr_reg;
|
||||
reg_t pad2[4];
|
||||
char pad2[40];
|
||||
} QEMU_PACKED;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue