mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
2009-09-07 Michael Snyder <msnyder@vmware.com>
* record.c: Minor comment and white space fix-ups.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2009-09-07 Michael Snyder <msnyder@vmware.com>
|
||||||
|
|
||||||
|
* record.c: Minor comment and white space fix-ups.
|
||||||
|
|
||||||
2009-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2009-09-07 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* m68k-tdep.c (m68k_gdbarch_init): Allocate TDEP as cleared.
|
* m68k-tdep.c (m68k_gdbarch_init): Allocate TDEP as cleared.
|
||||||
|
12
gdb/record.c
12
gdb/record.c
@ -32,14 +32,16 @@
|
|||||||
#define RECORD_IS_REPLAY \
|
#define RECORD_IS_REPLAY \
|
||||||
(record_list->next || execution_direction == EXEC_REVERSE)
|
(record_list->next || execution_direction == EXEC_REVERSE)
|
||||||
|
|
||||||
/* These are the core struct of record function.
|
/* These are the core structs of the process record functionality.
|
||||||
|
|
||||||
An record_entry is a record of the value change of a register
|
A record_entry is a record of the value change of a register
|
||||||
("record_reg") or a part of memory ("record_mem"). And each
|
("record_reg") or a part of memory ("record_mem"). And each
|
||||||
instruction must has a struct record_entry ("record_end") that points out this
|
instruction must have a struct record_entry ("record_end") that
|
||||||
is the last struct record_entry of this instruction.
|
indicates that this is the last struct record_entry of this
|
||||||
|
instruction.
|
||||||
|
|
||||||
Each struct record_entry is linked to "record_list" by "prev" and "next". */
|
Each struct record_entry is linked to "record_list" by "prev" and
|
||||||
|
"next" pointers. */
|
||||||
|
|
||||||
struct record_reg_entry
|
struct record_reg_entry
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user