mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 09:14:14 +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>
|
||||
|
||||
* 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 \
|
||||
(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
|
||||
instruction must has a struct record_entry ("record_end") that points out this
|
||||
is the last struct record_entry of this instruction.
|
||||
instruction must have a struct record_entry ("record_end") that
|
||||
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
|
||||
{
|
||||
|
Reference in New Issue
Block a user