qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

hmp.c (371B)


      1 #include "qemu/osdep.h"
      2 #include "qemu/error-report.h"
      3 #include "qapi/error.h"
      4 #include "qapi/qapi-commands-machine.h"
      5 #include "exec/exec-all.h"
      6 #include "monitor/monitor.h"
      7 
      8 static void hmp_tcg_register(void)
      9 {
     10     monitor_register_hmp_info_hrt("jit", qmp_x_query_jit);
     11     monitor_register_hmp_info_hrt("opcount", qmp_x_query_opcount);
     12 }
     13 
     14 type_init(hmp_tcg_register);