/[qemu]/qemu/exec.c
ViewVC logotype

Diff of /qemu/exec.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by bellard, Sun Jun 15 20:05:50 2003 UTC revision 1.8 by bellard, Sat Jun 21 13:11:07 2003 UTC
# Line 563  TranslationBlock *tb_find_pc(unsigned lo Line 563  TranslationBlock *tb_find_pc(unsigned lo
563      }      }
564      return &tbs[m_max];      return &tbs[m_max];
565  }  }
566    
567    void cpu_abort(CPUState *env, const char *fmt, ...)
568    {
569        va_list ap;
570    
571        va_start(ap, fmt);
572        fprintf(stderr, "qemu: fatal: ");
573        vfprintf(stderr, fmt, ap);
574        fprintf(stderr, "\n");
575    #ifdef TARGET_I386
576        cpu_x86_dump_state(env, stderr, X86_DUMP_FPU | X86_DUMP_CCOP);
577    #endif
578        va_end(ap);
579        abort();
580    }
581    

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26