diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/inf-child.c | 8 | ||||
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/default.exp | 4 |
4 files changed, 16 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0291b2c..3775095 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-05-21 Pedro Alves <palves@redhat.com> + + * inf-child.c (inf_child_open): Remove mention of "child". + (inf_child_target): Rename target to "native" instead of "child". + 2014-05-21 Andreas Arnez <arnez@linux.vnet.ibm.com> * Makefile.in (SFILES): Delete "regset.c". diff --git a/gdb/inf-child.c b/gdb/inf-child.c index 282467b..8a99adc 100644 --- a/gdb/inf-child.c +++ b/gdb/inf-child.c @@ -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 child process.")); + error (_("Use the \"run\" command to start a process.")); } static void @@ -406,9 +406,9 @@ inf_child_target (void) { struct target_ops *t = XCNEW (struct target_ops); - t->to_shortname = "child"; - t->to_longname = "Child process"; - t->to_doc = "Child process (started by the \"run\" command)."; + t->to_shortname = "native"; + t->to_longname = "Native process"; + t->to_doc = "Native 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; diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index c285612..790a82a 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-05-21 Pedro Alves <palves@redhat.com> + + * gdb.base/default.exp: Test "target native" instead of "target + child". + 2014-05-21 Mark Wielaard <mjw@redhat.com> * gdb.cp/var-tag.exp (do_global_tests): Handle underlying type. diff --git a/gdb/testsuite/gdb.base/default.exp b/gdb/testsuite/gdb.base/default.exp index a39ffcf..3636fa3 100644 --- a/gdb/testsuite/gdb.base/default.exp +++ b/gdb/testsuite/gdb.base/default.exp @@ -746,8 +746,8 @@ gdb_test "step" "The program is not being run." "step #2" #test symbol-file gdb_test "symbol-file" ".*" "symbol-file" -#test target child -gdb_test "target child" "Use the \"run\" command to start a child process.*|Undefined target command: \"child\". *Try \"help target\".*" "target child" +#test target native +gdb_test "target native" "Use the \"run\" command to start a process.*|Undefined target command: \"child\". *Try \"help target\".*" "target native" #test target core send_gdb "target core\n" |