diff options
author | Michael Snyder <msnyder@specifix.com> | 2009-09-08 00:50:42 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2009-09-08 00:50:42 +0000 |
commit | 675e70182335f594750b3e174f8d5b5c9639d12c (patch) | |
tree | 3ed59d8e74723e690f462a17c180794f67a6e577 | |
parent | e89479c9b5a9121eca27e5c0816e90ff1b59c3cc (diff) | |
download | gdb-675e70182335f594750b3e174f8d5b5c9639d12c.tar.gz |
2009-09-07 Michael Snyder <msnyder@vmware.com>
* record.c: Minor comment and white space fix-ups.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/record.c | 22 |
2 files changed, 16 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e2509c6423e..94cfea7f035 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/record.c b/gdb/record.c index 650f2a1399e..fbf00031db3 100644 --- a/gdb/record.c +++ b/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 { @@ -1288,15 +1290,15 @@ _initialize_record (void) /* Record instructions number limit command. */ add_setshow_boolean_cmd ("stop-at-limit", no_class, - &record_stop_at_limit, _("\ + &record_stop_at_limit, _("\ Set whether record/replay stops when record/replay buffer becomes full."), _("\ Show whether record/replay stops when record/replay buffer becomes full."), _("\ Default is ON.\n\ When ON, if the record/replay buffer becomes full, ask user what to do.\n\ When OFF, if the record/replay buffer becomes full,\n\ delete the oldest recorded instruction to make room for each new one."), - NULL, NULL, - &set_record_cmdlist, &show_record_cmdlist); + NULL, NULL, + &set_record_cmdlist, &show_record_cmdlist); add_setshow_zinteger_cmd ("insn-number-max", no_class, &record_insn_max_num, _("Set record/replay buffer limit."), @@ -1306,6 +1308,6 @@ record/replay buffer. Zero means unlimited. Default is 200000."), set_record_insn_max_num, NULL, &set_record_cmdlist, &show_record_cmdlist); add_cmd ("insn-number", class_obscure, show_record_insn_number, - _("Show the current number of instructions in the " - "record/replay buffer."), &info_record_cmdlist); + _("Show the current number of instructions in the " + "record/replay buffer."), &info_record_cmdlist); } |