]> Git Repo - qemu.git/blame - bsd-user/elfcore.c
Merge remote-tracking branch 'remotes/lvivier-gitlab/tags/trivial-branch-for-7.0...
[qemu.git] / bsd-user / elfcore.c
CommitLineData
0475f8fa
WL
1/* Stubbed out version of core dump support, explicitly in public domain */
2
3static 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}
This page took 0.045773 seconds and 4 git commands to generate.