Add target_ops argument to to_make_corefile_notes
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_make_corefile_notes>: Add argument. (target_make_corefile_notes): Add argument. * target.c (dummy_make_corefile_notes): Add 'self' argument. * procfs.c (procfs_make_note_section): Add 'self' argument. (procfs_make_note_section): Add 'self' argument. (procfs_make_note_section): Add 'self' argument. * linux-nat.c (linux_nat_make_corefile_notes): Add 'self' argument. * fbsd-nat.h (fbsd_make_corefile_notes): Add 'self' argument. * fbsd-nat.c (fbsd_make_corefile_notes): Add 'self' argument. * exec.c (exec_make_note_section): Add 'self' argument. (exec_make_note_section): Add 'self' argument.
This commit is contained in:
parent
2e73927ca5
commit
fc6691b259
8 changed files with 31 additions and 11 deletions
|
@ -849,7 +849,7 @@ exec_find_memory_regions (struct target_ops *self,
|
|||
return exec_do_find_memory_regions (func, data);
|
||||
}
|
||||
|
||||
static char *exec_make_note_section (bfd *, int *);
|
||||
static char *exec_make_note_section (struct target_ops *self, bfd *, int *);
|
||||
|
||||
/* Fill in the exec file target vector. Very few entries need to be
|
||||
defined. */
|
||||
|
@ -921,7 +921,7 @@ Show writing into executable and core files."), NULL,
|
|||
}
|
||||
|
||||
static char *
|
||||
exec_make_note_section (bfd *obfd, int *note_size)
|
||||
exec_make_note_section (struct target_ops *self, bfd *obfd, int *note_size)
|
||||
{
|
||||
error (_("Can't create a corefile"));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue