When ddd encounters a scanf statement, it displays "Waiting until GDB gets ready" message. The debugging activity stops here. Please guide me of overcoming this bug.

I'm using an amd64 athlon processor.

link|improve this question

0% accept rate
feedback

2 Answers

I am surprised that so much time has elapsed on this, so although I know little about ddd, it seems very likely that the problem is simply that gdb is waiting for the program which is blocked on a read waiting for input on stdin. If you were running gdb directly, you could direct input to the program by using:

run < input-file

You need to give your program some input.

link|improve this answer
still the same problem persists dear friend. The debugger still displays "Waiting until GDB gets ready" message. this happens while using graphical ddd, not command line gdb. – Joshi Aug 28 '09 at 17:58
feedback

It's just like in gdb. You can input your values at the bottom pane of ddd. It's just that ddd is not very good at drawing the cursor to indicate that that's possible.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.