runstate-check.c 135 B

1234567
  1. #include "qemu/osdep.h"
  2. #include "sysemu/runstate.h"
  3. bool runstate_check(RunState state)
  4. {
  5. return state == RUN_STATE_PRELAUNCH;
  6. }