Test splitting and joining of inferior arguments ARGS as they would
be split and joined when being passed to a remote target.
+* Changed commands
+
+maintenance info program-spaces
+ This command no longer displays the core file name.
+
* Changed remote packets
single-inf-arg in qSupported
the name of the executable loaded into the program space, with e.g.,
the @code{file} command.
-@item
-the name of the core file loaded into the program space, with e.g.,
-the @code{core-file} command.
-
@end enumerate
@noindent
@smallexample
(@value{GDBP}) maint info program-spaces
- Id Executable Core File
+ Id Executable
* 1 hello
2 goodbye
Bound inferiors: ID 1 (process 21561)
@smallexample
(@value{GDBP}) maint info program-spaces
- Id Executable Core File
+ Id Executable
* 1 vfork-test
Bound inferiors: ID 2 (process 18050), ID 1 (process 18045)
@end smallexample
/* There should always be at least one. */
gdb_assert (count > 0);
- ui_out_emit_table table_emitter (uiout, 4, count, "pspaces");
+ ui_out_emit_table table_emitter (uiout, 3, count, "pspaces");
uiout->table_header (1, ui_left, "current", "");
uiout->table_header (4, ui_left, "id", "Id");
uiout->table_header (longest_exec_name, ui_left, "exec", "Executable");
- uiout->table_header (17, ui_left, "core", "Core File");
uiout->table_body ();
for (struct program_space *pspace : program_spaces)
else
uiout->field_skip ("exec");
- if (pspace->cbfd != nullptr)
- uiout->field_string ("core", bfd_get_filename (pspace->cbfd.get ()),
- file_name_style.style ());
- else
- uiout->field_skip ("core");
-
/* Print extra info that doesn't really fit in tabular form.
Currently, we print the list of inferiors bound to a pspace.
There can be more than one inferior bound to the same pspace,