git://git.qemu.org
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge tag 'pull-request-2022-08-16' of https://gitlab.com/thuth/qemu into staging
[qemu.git]
/
bsd-user
/
elfcore.c
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
}