Add target_ops argument to to_save_record

2014-02-19  Tom Tromey  <tromey@redhat.com>

	* target.h (struct target_ops) <to_save_record>: Add argument.
	* target.c (target_save_record): Add argument.
	* record-full.c (record_full_save): Add 'self' argument.
	(record_full_save): Add 'self' argument.
This commit is contained in:
Tom Tromey
2013-12-17 21:46:50 -07:00
parent 630d6a4ad3
commit 1390f5296f
4 changed files with 12 additions and 4 deletions

View File

@ -933,7 +933,7 @@ struct target_ops
void (*to_info_record) (struct target_ops *);
/* Save the recorded execution trace into a file. */
void (*to_save_record) (const char *filename);
void (*to_save_record) (struct target_ops *, const char *filename);
/* Delete the recorded execution trace from the current position onwards. */
void (*to_delete_record) (void);