mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
Don't mention "Unix" in native target name.
I find the mention of "Unix" unnecessary (and really slightly a lie) on GNU/Linux in a couple of places: (gdb) maint print target-stack The current target stack is: - multi-thread (multi-threaded child process.) - child (Unix child process) - exec (Local exec file) - None (None) (gdb) help target child Unix child process (started by the "run" command). (gdb) target child Use the "run" command to start a Unix child process. It's also odd that e.g., the Windows port says "Unix" in reaction to "target child" (it was already that way before Windows used inf-child.c): (gdb) target child Use the "run" command to start a Unix child process. (gdb) So drop "Unix", going in the direction of saying mostly the same on all native targets: (gdb) maint print target-stack The current target stack is: - multi-thread (multi-threaded child process.) - - child (Unix child process) + - child (Child process) - exec (Local exec file) - None (None) (gdb) help target child - Unix child process (started by the "run" command). + Child process (started by the "run" command). (gdb) target child -Use the "run" command to start a Unix child process. +Use the "run" command to start a child process. gdb/ 2014-03-13 Pedro Alves <palves@redhat.com> * inf-child.c (inf_child_open, inf_child_target): Don't mention Unix in user visible strings. gdb/testsuite/ 2014-03-13 Pedro Alves <palves@redhat.com> * gdb.base/default.exp: Update "target child" and "target procfs" tests to not expect "Unix".
This commit is contained in:
@ -112,7 +112,7 @@ inf_child_prepare_to_store (struct target_ops *self,
|
||||
static void
|
||||
inf_child_open (char *arg, int from_tty)
|
||||
{
|
||||
error (_("Use the \"run\" command to start a Unix child process."));
|
||||
error (_("Use the \"run\" command to start a child process."));
|
||||
}
|
||||
|
||||
static void
|
||||
@ -407,8 +407,8 @@ inf_child_target (void)
|
||||
struct target_ops *t = XCNEW (struct target_ops);
|
||||
|
||||
t->to_shortname = "child";
|
||||
t->to_longname = "Unix child process";
|
||||
t->to_doc = "Unix child process (started by the \"run\" command).";
|
||||
t->to_longname = "Child process";
|
||||
t->to_doc = "Child process (started by the \"run\" command).";
|
||||
t->to_open = inf_child_open;
|
||||
t->to_post_attach = inf_child_post_attach;
|
||||
t->to_fetch_registers = inf_child_fetch_inferior_registers;
|
||||
|
Reference in New Issue
Block a user