diff options
Diffstat (limited to 'gdb/solib-spu.c')
-rw-r--r-- | gdb/solib-spu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/solib-spu.c b/gdb/solib-spu.c index 07b7a1b..e752544 100644 --- a/gdb/solib-spu.c +++ b/gdb/solib-spu.c @@ -371,7 +371,7 @@ spu_enable_break (struct objfile *objfile) /* Create inferior hook. */ static void -spu_solib_create_inferior_hook (void) +spu_solib_create_inferior_hook (int from_tty) { /* Remove all previously installed solib breakpoints. Both the SVR4 code and us will re-install all required breakpoints. */ @@ -402,7 +402,7 @@ spu_solib_create_inferior_hook (void) } /* Call SVR4 hook -- this will re-insert the SVR4 solib breakpoints. */ - svr4_so_ops.solib_create_inferior_hook (); + svr4_so_ops.solib_create_inferior_hook (from_tty); /* If the inferior is statically linked against libspe, we need to install our own solib breakpoint right now. Otherwise, it will be installed by |