中断号码100

时间:2016-12-13 15:35:25

标签: c virtualization qemu

什么是中断100用于?我正在浏览Qemu翻译代码qemu/target-i386/translate.c,在那里我看到了参考文献。

static void gen_interrupt(DisasContext *s, int intno,
                      target_ulong cur_eip, target_ulong next_eip)
{
    if (intno == 100) {
        gen_helper_q_start_trace();         
        return;
    } else if (intno == 101) {
        gen_helper_q_end_trace();
        return;
    } else if (intno == 104 ) {
      gen_helper_q_hypercall_entry();    //Hypercall Entry
      return;
}

0 个答案:

没有答案