This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project. See the Cygwin home page for more information.
Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: STDIN redirection under GDB


On Wed, 21 Apr 1999, Stefano Federici wrote:

> I found a similar question in a letter to the list on 1995, but I did
> not find any answer.
> I'm having problems using GDB with a program that uses standard-input.
> I uses gdb 4.17.1 delivered with cygwinb20.1 (I also installed
> egcs.1.1.2, but I don't know if it can influence in any way this
> behaviour).
> All is well when running (other) programs that do not use stdin.  I use
> this form of the run command:
> 
>     run < input
> 
> Where 'input' is my input file, in the current directory.  GDB just sits
> 
> there, forever. I can only break the loop by typing CTRL-C and obtain
> the debugger prompt.
> I also tried to use the argument setting options:
> 
>    set args < input
> 
> but the result is exactly the same.
> 
> Has anyone seen this type of behavior?
> Can it depend on the binary/text mode of cygwin?
> 

It's a bug in all Win32 ports of gdb.

This has to do with how GDB starts a "inferior" subprocess that it
wants to debug; on Unix, it uses the shell to do the redirection, but
on win32, gdb uses CreateProcess. Currently, the cmd arg parser in
win32/gdb doesn't look for redirection symbols, and so it doesn't do
what you'd expect.  Also, someone has to write the small piece of code
that does the redirection by passing the descriptor to CreateProcess
etc.

See target.c (child_create_inferior) for how it's done on Unix boxes and
win32-nat.c (child_create_inferior) for how it's done on win32. 

It can be fixed without too much trouble, but someone needs to do it.

Regards,
Mumit



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com