diff options
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h index 6ab7dfb1b9..8b69a9eea5 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -250,6 +250,13 @@ typedef struct QEMUSGList QEMUSGList; typedef uint64_t pcibus_t; +typedef enum LostTickPolicy { + LOST_TICK_DISCARD, + LOST_TICK_DELAY, + LOST_TICK_MERGE, + LOST_TICK_SLEW, +} LostTickPolicy; + void tcg_exec_init(unsigned long tb_size); bool tcg_enabled(void); |