diff options
author | Pedro Alves <palves@redhat.com> | 2014-05-21 18:30:43 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-05-21 18:30:43 +0100 |
commit | bc85afdef59fc5f12765c829bbec7b6dedec62e6 (patch) | |
tree | 0d4119b341919eef3f015431dc227a6cc2396dd7 /gdb | |
parent | 4ebfc96eba45f869ad109fdb7d1149bb4af3b3a2 (diff) | |
download | gdb-bc85afdef59fc5f12765c829bbec7b6dedec62e6.zip gdb-bc85afdef59fc5f12765c829bbec7b6dedec62e6.tar.gz gdb-bc85afdef59fc5f12765c829bbec7b6dedec62e6.tar.bz2 |
Rename "target djgpp" -> "target native"
To be like other native targets.
Leave to_shortname, to_longname, to_doc as inf-child.c sets them:
t->to_shortname = "native";
t->to_longname = "Native process";
t->to_doc = "Native process (started by the \"run\" command).";
gdb/
2014-05-21 Pedro Alves <palves@redhat.com>
* go32-nat.c (go32_target): Don't override to_shortname,
to_longname or to_doc.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/go32-nat.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3775095..3a94db8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-05-21 Pedro Alves <palves@redhat.com> + * go32-nat.c (go32_target): Don't override to_shortname, + to_longname or to_doc. + +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". diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index 08d803c..ef5278a 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -960,10 +960,6 @@ go32_target (void) { struct target_ops *t = inf_child_target (); - t->to_shortname = "djgpp"; - t->to_longname = "djgpp target process"; - t->to_doc - = "Program loaded by djgpp, when gdb is used as an external debugger"; t->to_open = go32_open; t->to_attach = go32_attach; t->to_resume = go32_resume; |