xref: /qemu/bsd-user/elfcore.c (revision 74fb2f4f4c47c966ab54687392e6561b4de4bb8a)
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 }
11