2006-03-24 Randolph Chung <tausq@debian.org>
authorRandolph Chung <tausq@debian.org>
Fri, 24 Mar 2006 23:49:56 +0000 (23:49 +0000)
committerRandolph Chung <tausq@debian.org>
Fri, 24 Mar 2006 23:49:56 +0000 (23:49 +0000)
* solib-som.c (link_map_start): Don't error out if there is
not yet a link map.

gdb/ChangeLog
gdb/solib-som.c

index d982e29246e056e4029d7873a953b5ba3982f49c..68a9181718d99a84726021a12ec26f044422e397 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-24  Randolph Chung  <tausq@debian.org>
+
+       * solib-som.c (link_map_start): Don't error out if there is
+       not yet a link map.
+
 2006-03-24  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * linux-nat.c (linux_ops_saved): New.
index 3d027ccf70cbb04f80a4c4f1fd382648cfddcb36..52c7367c47becbcdaab307993c0cae133999a68d 100644 (file)
@@ -520,7 +520,7 @@ link_map_start (void)
   read_memory (addr, buf, 4);
   addr = extract_unsigned_integer (buf, 4);
   if (addr == 0)
-    error (_("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported."));
+    return 0;
 
   read_memory (addr, buf, 4);
   return extract_unsigned_integer (buf, 4);