replay-snapshot.c (60618e2d77691e44bb78e23b2b0cf07b5c405e56) replay-snapshot.c (3e21408b0596aa2babe1e26996a15e7ad5eee71a)
1/*
2 * replay-snapshot.c
3 *
4 * Copyright (c) 2010-2016 Institute for System Programming
5 * of the Russian Academy of Sciences.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.

--- 45 unchanged lines hidden (view full) ---

54 .fields = (VMStateField[]) {
55 VMSTATE_INT64_ARRAY(cached_clock, ReplayState, REPLAY_CLOCK_COUNT),
56 VMSTATE_UINT64(current_icount, ReplayState),
57 VMSTATE_INT32(instruction_count, ReplayState),
58 VMSTATE_UINT32(data_kind, ReplayState),
59 VMSTATE_UINT32(has_unread_data, ReplayState),
60 VMSTATE_UINT64(file_offset, ReplayState),
61 VMSTATE_UINT64(block_request_id, ReplayState),
1/*
2 * replay-snapshot.c
3 *
4 * Copyright (c) 2010-2016 Institute for System Programming
5 * of the Russian Academy of Sciences.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.

--- 45 unchanged lines hidden (view full) ---

54 .fields = (VMStateField[]) {
55 VMSTATE_INT64_ARRAY(cached_clock, ReplayState, REPLAY_CLOCK_COUNT),
56 VMSTATE_UINT64(current_icount, ReplayState),
57 VMSTATE_INT32(instruction_count, ReplayState),
58 VMSTATE_UINT32(data_kind, ReplayState),
59 VMSTATE_UINT32(has_unread_data, ReplayState),
60 VMSTATE_UINT64(file_offset, ReplayState),
61 VMSTATE_UINT64(block_request_id, ReplayState),
62 VMSTATE_INT32(read_event_kind, ReplayState),
63 VMSTATE_UINT64(read_event_id, ReplayState),
64 VMSTATE_END_OF_LIST()
65 },
66};
67
68void replay_vmstate_register(void)
69{
70 vmstate_register(NULL, 0, &vmstate_replay, &replay_state);

--- 29 unchanged lines hidden ---
62 VMSTATE_UINT64(read_event_id, ReplayState),
63 VMSTATE_END_OF_LIST()
64 },
65};
66
67void replay_vmstate_register(void)
68{
69 vmstate_register(NULL, 0, &vmstate_replay, &replay_state);

--- 29 unchanged lines hidden ---