* ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for

flags.
	* solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
This commit is contained in:
Pedro Alves 2010-04-15 20:19:24 +00:00
parent fa33c3cd05
commit 7e559477b1
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2010-04-15 Pedro Alves <pedro@codesourcery.com>
* ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
flags.
* solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
2010-04-15 Doug Evans <dje@google.com>
* NEWS: Add entry for python program space support.

View File

@ -1222,7 +1222,7 @@ ppc_linux_spe_context_solib_loaded (struct so_list *so)
{
if (strstr (so->so_original_name, "/libspe") != NULL)
{
solib_read_symbols (so, so->from_tty ? SYMFILE_VERBOSE : 0);
solib_read_symbols (so, 0);
ppc_linux_spe_context_lookup (so->objfile);
}
}

View File

@ -428,7 +428,7 @@ spu_solib_loaded (struct so_list *so)
{
if (strstr (so->so_original_name, "/libspe") != NULL)
{
solib_read_symbols (so, so->from_tty ? SYMFILE_VERBOSE : 0);
solib_read_symbols (so, 0);
spu_enable_break (so->objfile);
}
}