[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 0/2][v3] correct core dump format
From: |
Laurent Vivier |
Subject: |
[Qemu-devel] [PATCH 0/2][v3] correct core dump format |
Date: |
Sun, 13 Feb 2011 03:22:39 +0100 |
This is the v3 of my patch correcting the core dump format.
It introduces a new parameter of the target: the datatype alignment size.
Targets like i386, mips or ppc align (short, int, long, long long) on
(2, 4, 4, 8), target like x86_64 aligns on (2, 4, 8, 8)
but arm aligns on (2, 4, 4, 4) and m68k (680x0) on (2, 2, 2, 2).
And this knowledge is needed to correctly generate a core dump.
For other targets, please update the patch with your favorite one.
[PATCH 1/2] linux-user: Define target alignment size
[PATCH 2/2] linux-user: correct core dump format
- [Qemu-devel] [PATCH 0/2][v3] correct core dump format,
Laurent Vivier <=