summaryrefslogblamecommitdiffstats
path: root/bsd-user/elfcore.c
blob: c49d9280e2dadc3a0c7ac20dbc26a81a6f6799f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                           
/* Stubbed out version of core dump support, explicitly in public domain */

static int elf_core_dump(int signr, CPUArchState *env)
{
    struct elf_note en = { 0 };

    bswap_note(&en);

    return 0;
}