mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
* server.c (start_inferior): Print inferior argv if --debug.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2010-04-23 Doug Evans <dje@google.com>
|
||||||
|
|
||||||
|
* server.c (start_inferior): Print inferior argv if --debug.
|
||||||
|
|
||||||
2010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
|
2010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
|
||||||
|
|
||||||
* Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
|
* Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
|
||||||
|
@ -241,6 +241,14 @@ start_inferior (char **argv)
|
|||||||
new_argv[count] = NULL;
|
new_argv[count] = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (debug_threads)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
for (i = 0; new_argv[i]; ++i)
|
||||||
|
fprintf (stderr, "new_argv[%d] = \"%s\"\n", i, new_argv[i]);
|
||||||
|
fflush (stderr);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef SIGTTOU
|
#ifdef SIGTTOU
|
||||||
signal (SIGTTOU, SIG_DFL);
|
signal (SIGTTOU, SIG_DFL);
|
||||||
signal (SIGTTIN, SIG_DFL);
|
signal (SIGTTIN, SIG_DFL);
|
||||||
|
Reference in New Issue
Block a user