diff options
Diffstat (limited to 'gdb/uw-thread.c')
-rw-r--r-- | gdb/uw-thread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/uw-thread.c b/gdb/uw-thread.c index 947fb14..c37e0ff 100644 --- a/gdb/uw-thread.c +++ b/gdb/uw-thread.c @@ -797,12 +797,13 @@ uw_thread_prepare_to_store (void) This function only gets called with uw_thread_active == 0. */ static void -uw_thread_create_inferior (char *exec_file, char *allargs, char **env) +uw_thread_create_inferior (char *exec_file, char *allargs, char **env, + int from_tty) { if (uw_thread_active) deactivate_uw_thread (); - procfs_ops.to_create_inferior (exec_file, allargs, env); + procfs_ops.to_create_inferior (exec_file, allargs, env, from_tty); if (uw_thread_active) { find_main (); |