forked from Imagelibrary/binutils-gdb
gdb: remove other parameter in read_core_file_mappings parameter
The `void *other` parameter in read_core_file_mappings' loop_cb parameter is never used, remove it. gdb/ChangeLog: * gdbarch.sh (read_core_file_mappings): Remove `other` parameter in `loop_cb` parameter. * gdbarch.c: Re-generate. * gdbarch.h: Re-generate. * arch-utils.c (default_read_core_file_mappings): Remove `other` parameter. * arch-utils.h (default_read_core_file_mappings): Likewise. * corelow.c (core_target::build_file_mappings): Likewise. * linux-tdep.c (linux_read_core_file_mappings): Likewise. (linux_core_info_proc_mappings): Likewise. Change-Id: I6f408b4962b61b8a603642a844772b3026625523
This commit is contained in:
@@ -1072,8 +1072,7 @@ linux_read_core_file_mappings (struct gdbarch *gdbarch,
|
||||
ULONGEST start,
|
||||
ULONGEST end,
|
||||
ULONGEST file_ofs,
|
||||
const char *filename,
|
||||
const void *other)>
|
||||
const char *filename)>
|
||||
loop_cb)
|
||||
{
|
||||
/* Ensure that ULONGEST is big enough for reading 64-bit core files. */
|
||||
@@ -1157,7 +1156,7 @@ linux_read_core_file_mappings (struct gdbarch *gdbarch,
|
||||
char * filename = filenames;
|
||||
filenames += strlen ((char *) filenames) + 1;
|
||||
|
||||
loop_cb (i, start, end, file_ofs, filename, nullptr);
|
||||
loop_cb (i, start, end, file_ofs, filename);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1186,7 +1185,7 @@ linux_core_info_proc_mappings (struct gdbarch *gdbarch, const char *args)
|
||||
}
|
||||
},
|
||||
[=] (int num, ULONGEST start, ULONGEST end, ULONGEST file_ofs,
|
||||
const char *filename, const void *other)
|
||||
const char *filename)
|
||||
{
|
||||
if (gdbarch_addr_bit (gdbarch) == 32)
|
||||
printf_filtered ("\t%10s %10s %10s %10s %s\n",
|
||||
|
||||
Reference in New Issue
Block a user