elfcore.c 205 B

12345678910
  1. /* Stubbed out version of core dump support, explicitly in public domain */
  2. static int elf_core_dump(int signr, CPUArchState *env)
  3. {
  4. struct elf_note en = { 0 };
  5. bswap_note(&en);
  6. return 0;
  7. }