mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 22:03:57 +08:00
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.
This commit is contained in:
@ -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>
|
2006-03-24 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* linux-nat.c (linux_ops_saved): New.
|
* linux-nat.c (linux_ops_saved): New.
|
||||||
|
@ -520,7 +520,7 @@ link_map_start (void)
|
|||||||
read_memory (addr, buf, 4);
|
read_memory (addr, buf, 4);
|
||||||
addr = extract_unsigned_integer (buf, 4);
|
addr = extract_unsigned_integer (buf, 4);
|
||||||
if (addr == 0)
|
if (addr == 0)
|
||||||
error (_("Debugging dynamic executables loaded via the hpux8 dld.sl is not supported."));
|
return 0;
|
||||||
|
|
||||||
read_memory (addr, buf, 4);
|
read_memory (addr, buf, 4);
|
||||||
return extract_unsigned_integer (buf, 4);
|
return extract_unsigned_integer (buf, 4);
|
||||||
|
Reference in New Issue
Block a user