aboutsummaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2014-05-21 18:30:45 +0100
committerPedro Alves <palves@redhat.com>2014-05-21 18:30:45 +0100
commit03c136c31c777605cb4f13cfc1286d21b4ffa3b0 (patch)
tree3a8ddf86945d982708146c9564d3c15d5da3285b /gdb/windows-nat.c
parenta635d0f3d5a1e9a53cb9a7a61fc21b819f0db0d5 (diff)
downloadgdb-03c136c31c777605cb4f13cfc1286d21b4ffa3b0.zip
gdb-03c136c31c777605cb4f13cfc1286d21b4ffa3b0.tar.gz
gdb-03c136c31c777605cb4f13cfc1286d21b4ffa3b0.tar.bz2
Windows: Rename "target child" -> "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> * windows-nat.c (windows_target): Don't override to_shortname, to_longname or to_doc.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index bad7408..d026a36 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -2556,9 +2556,6 @@ windows_target (void)
{
struct target_ops *t = inf_child_target ();
- t->to_shortname = "child";
- t->to_longname = "Win32 child process";
- t->to_doc = "Win32 child process (started by the \"run\" command).";
t->to_close = windows_close;
t->to_attach = windows_attach;
t->to_attach_no_wait = 1;