Revision 7e5a8bb22368b3555644cb2debd3df24592f3a21 authored by Richard Henderson on 22 August 2023, 14:13:44 UTC, committed by Richard Henderson on 22 August 2023, 14:13:44 UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
1 parent 0d52116
Raw File
elfcore.c
/* 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;
}
back to top