OSDN Git Service

2007-06-13 Claudio Fontana <claudio.fontana@gmail.com>
authorDaniel Jacobowitz <dan@debian.org>
Wed, 13 Jun 2007 19:05:00 +0000 (19:05 +0000)
committerDaniel Jacobowitz <dan@debian.org>
Wed, 13 Jun 2007 19:05:00 +0000 (19:05 +0000)
* fork-child.c (fork_inferior): Update comment.

gdb/ChangeLog
gdb/fork-child.c

index 35a1590..493aecc 100644 (file)
@@ -1,3 +1,7 @@
+2007-06-13  Claudio Fontana <claudio.fontana@gmail.com>
+
+       * fork-child.c (fork_inferior): Update comment.
+
 2007-06-13  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * features/Makefile: Generate regformats for mips-linux and
index 37fe927..c9b3c96 100644 (file)
@@ -336,11 +336,9 @@ fork_inferior (char *exec_file_arg, char *allargs, char **env,
       environ = env;
 
       /* If we decided above to start up with a shell, we exec the
-        shell, "-c" says to interpret the next arg as a shell command
-        to execute, and this command is "exec <target-program>
-        <args>".  "-f" means "fast startup" to the c-shell, which
-        means don't do .cshrc file. Doing .cshrc may cause fork/exec
-        events which will confuse debugger start-up code.  */
+        shell, "-c" says to interpret the next arg as a shell command
+        to execute, and this command is "exec <target-program>
+        <args>".  */
       if (shell)
        {
          execlp (shell_file, shell_file, "-c", shell_command, (char *) 0);