OSDN Git Service

2000-10-13 Fernando Nasser <fnasser@totem.to.cygnus.com>
authorFernando Nasser <fnasser@redhat.com>
Fri, 13 Oct 2000 20:50:44 +0000 (20:50 +0000)
committerFernando Nasser <fnasser@redhat.com>
Fri, 13 Oct 2000 20:50:44 +0000 (20:50 +0000)
* gdbtk.c (target_is_native): The "multi-thread" target is native.

gdb/gdbtk/generic/ChangeLog
gdb/gdbtk/generic/gdbtk.c

index febe0fd..81b68aa 100644 (file)
@@ -1,3 +1,7 @@
+2000-10-13  Fernando Nasser  <fnasser@totem.to.cygnus.com>
+
+       * gdbtk.c (target_is_native): The "multi-thread" target is native.
+
 2000-09-15  Fernando Nasser  <fnasser@totem.to.cygnus.com>
 
        * gdbtk-varobj.c (variable_value): Send back the error text issued
index 5928e6b..829118d 100644 (file)
@@ -329,7 +329,8 @@ target_is_native (t)
 
   if (STREQ (name, "exec") || STREQ (name, "hpux-threads")
       || STREQ (name, "child") || STREQ (name, "procfs")
-      || STREQ (name, "solaris-threads") || STREQ (name, "linuxthreads"))
+      || STREQ (name, "solaris-threads") || STREQ (name, "linuxthreads")
+      || STREQ (name, "multi-thread"))
     return 1;
 
   return 0;