mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
0475f8fac5
Add a stubbed-out version of the bsd-user fork's core dump support. This allows elfload.c to be almost the same between what's upstream and what's in qemu-project upstream w/o the burden of reviewing the core dump support. Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
10 lines
205 B
C
10 lines
205 B
C
/* Stubbed out version of core dump support, explicitly in public domain */
|
|
|
|
static int elf_core_dump(int signr, CPUArchState *env)
|
|
{
|
|
struct elf_note en = { 0 };
|
|
|
|
bswap_note(&en);
|
|
|
|
return 0;
|
|
}
|