Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
bsd-user
/
elfcore.c
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
c
10 lines
205 Bytes
Copy permalink
Copy
Raw
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
}