]> Git Repo - qemu.git/blob - qapi/replay.json
qapi: introduce replay.json for record/replay-related stuff
[qemu.git] / qapi / replay.json
1 # -*- Mode: Python -*-
2 #
3
4 ##
5 # = Record/replay
6 ##
7
8 { 'include': 'common.json' }
9
10 ##
11 # @ReplayMode:
12 #
13 # Mode of the replay subsystem.
14 #
15 # @none: normal execution mode. Replay or record are not enabled.
16 #
17 # @record: record mode. All non-deterministic data is written into the
18 #          replay log.
19 #
20 # @play: replay mode. Non-deterministic data required for system execution
21 #        is read from the log.
22 #
23 # Since: 2.5
24 ##
25 { 'enum': 'ReplayMode',
26   'data': [ 'none', 'record', 'play' ] }
This page took 0.024499 seconds and 4 git commands to generate.