Sign in
qemu
/
qemu
/
ec7ee95db90984509bb0824d62d1272f53cbec19
/
.
/
bsd-user
/
elfcore.c
blob: c49d9280e2dadc3a0c7ac20dbc26a81a6f6799f8 [
file
] [
log
] [
blame
]
Warner Losh
0475f8f
2021-08-06 14:20:16 -0600
[
diff
] [
blame
]
1
/* Stubbed out version of core dump support, explicitly in public domain */
2
3
static
int
elf_core_dump
(
int
signr
,
CPUArchState
*
env
)
4
{
5
struct
elf_note en
=
{
0
};
6
7
bswap_note
(&
en
);
8
9
return
0
;
10
}