2009-09-07 Michael Snyder <msnyder@vmware.com>

* record.c: Minor comment and white space fix-ups.
This commit is contained in:
Michael Snyder
2009-09-08 00:50:42 +00:00
parent 056f03e412
commit fda458eeb1
2 changed files with 16 additions and 10 deletions

View File

@ -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.

View File

@ -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
{