Sign in
qemu
/
qemu
/
2bf79222ce97156f395d3c214897d7a4f8fecc85
/
.
/
bsd-user
/
elfcore.c
blob: c49d9280e2dadc3a0c7ac20dbc26a81a6f6799f8 [
file
] [
log
] [
blame
]
/* 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
;
}