mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
* somsolib.c (som_solib_create_inferior_hook): Don't
warn if __d_pid can't be found.
This commit is contained in:
parent
86bc0974cb
commit
6f35989529
@ -1,3 +1,8 @@
|
||||
Mon Jul 29 18:12:27 1996 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* somsolib.c (som_solib_create_inferior_hook): Don't
|
||||
warn if __d_pid can't be found.
|
||||
|
||||
Sun Jul 28 10:46:39 1996 Fred Fish <fnf@cygnus.com>
|
||||
|
||||
* config/mips/tm-mips.h (struct frame_info): Forward decl.
|
||||
|
@ -523,13 +523,11 @@ som_solib_create_inferior_hook()
|
||||
have_endo = 0;
|
||||
/* If __d_pid is present, then put the inferior's pid into __d_pid. hpux9
|
||||
requires __d_pid to be set. hpux10 doesn't require __d_pid to be set
|
||||
and the symbol may not be available. */
|
||||
and the symbol may not be available.
|
||||
|
||||
Never warn about __d_pid. */
|
||||
msymbol = lookup_minimal_symbol ("__d_pid", NULL, symfile_objfile);
|
||||
if (msymbol == NULL)
|
||||
{
|
||||
warning ("Unable to find __d_pid symbol in object file.");
|
||||
}
|
||||
else
|
||||
if (msymbol != NULL)
|
||||
{
|
||||
anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
|
||||
store_unsigned_integer (buf, 4, inferior_pid);
|
||||
|
Loading…
Reference in New Issue
Block a user