Browse Source
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>pull/197/head
committed by
Warner Losh
3 changed files with 36 additions and 2 deletions
@ -0,0 +1,10 @@ |
|||
/* 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; |
|||
} |
|||
Loading…
Reference in new issue